]> git.mxchange.org Git - friendica.git/commitdiff
merge
authorfriendica <info@friendica.com>
Sat, 2 Mar 2013 23:46:54 +0000 (15:46 -0800)
committerfriendica <info@friendica.com>
Sat, 2 Mar 2013 23:46:54 +0000 (15:46 -0800)
45 files changed:
include/bbcode.php
include/pgettext.php
index.php
mod/admin.php
mod/apps.php
mods/sample-Lighttpd.config [new file with mode: 0644]
util/messages.po
util/po2php.php
util/run_xgettext.sh
view/admin_site.tpl
view/ca/strings.php
view/cs/strings.php
view/de/messages.po
view/de/strings.php
view/eo/strings.php
view/es/strings.php
view/fr/strings.php
view/is/strings.php
view/it/messages.po
view/it/strings.php
view/nb-no/strings.php
view/pl/messages.po
view/pl/strings.php
view/pt-br/strings.php
view/ru/strings.php
view/smarty3/admin_site.tpl
view/smarty3/admin_users.tpl
view/theme/decaf-mobile/admin_users.tpl
view/theme/decaf-mobile/smarty3/admin_users.tpl
view/theme/diabook/admin_users.tpl
view/theme/diabook/smarty3/admin_users.tpl
view/theme/frost-mobile/admin_users.tpl
view/theme/frost-mobile/smarty3/admin_users.tpl
view/theme/frost/admin_users.tpl
view/theme/frost/smarty3/admin_users.tpl
view/theme/smoothly/images/larrow.gif [new file with mode: 0644]
view/theme/smoothly/images/rarrow.gif [new file with mode: 0644]
view/theme/smoothly/login.tpl
view/theme/smoothly/smarty3/login.tpl
view/theme/smoothly/smarty3/wall_thread.tpl
view/theme/smoothly/style.css
view/theme/smoothly/theme.php
view/theme/smoothly/wall_thread.tpl
view/zh-cn/messages.po
view/zh-cn/strings.php

index d9a1192d67bede8a2bb551020142b47115b61ed8..ebed0dbb255b60da06dd387f907de0c693193736 100644 (file)
@@ -642,8 +642,8 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal
        $Text = preg_replace('/\&quot\;/','"',$Text);
 
        // fix any escaped ampersands that may have been converted into links
-       $Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
-       $Text = preg_replace("/\<(.*?)(src|href)=\"[^hfm](.*?)\>/ism",'<$1$2="">',$Text);
+       $Text = preg_replace("/\<([^>]*?)(src|href)=(.*?)\&amp\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text);
+       $Text = preg_replace("/\<([^>]*?)(src|href)=\"[^hfm](.*?)\>/ism",'<$1$2="">',$Text);
 
        if($saved_image)
                $Text = bb_replace_images($Text, $saved_image);
index 5a0eab0b01078267a424c65ce47e22ab32879aa5..525b64a1867ea51feb2708b086106936c1515f37 100644 (file)
@@ -90,12 +90,21 @@ function pop_lang() {
 if(! function_exists('load_translation_table')) {
 function load_translation_table($lang) {
        global $a;
-
+        
+       $a->strings = array();
        if(file_exists("view/$lang/strings.php")) {
                include("view/$lang/strings.php");
        }
-       else
-               $a->strings = array();
+       // load enabled plugins strings
+       $plugins = q("SELECT name FROM addon WHERE installed=1;");
+       if ($plugins!==false) {
+               foreach($plugins as $p) {
+                       $name = $p['name'];
+                       if(file_exists("addon/$name/lang/$lang/strings.php")) {
+                               include("addon/$name/lang/$lang/strings.php");
+                       }
+               }
+       }
 }}
 
 // translate string if translation exists
index 3ccdc725f60ab955e42d478a19e5403c1818d665..40551f3881cf22860f0fd89b797c15513e88c345 100644 (file)
--- a/index.php
+++ b/index.php
@@ -32,9 +32,7 @@ $install = ((file_exists('.htconfig.php') && filesize('.htconfig.php')) ? false
 
 
 
-$lang = get_browser_language();
 
-load_translation_table($lang);
 
 /**
  *
@@ -62,6 +60,9 @@ if(!$install) {
        $maintenance = get_config('system', 'maintenance');
 }
 
+$lang = get_browser_language();
+
+load_translation_table($lang);
 
 /**
  *
index ecca0b8be3bf5cec455945d7ef98d2b4fcf7452f..48cc4b1510afc9c54e4e2741574a83c202473f03 100644 (file)
@@ -256,7 +256,8 @@ function admin_page_site_post(&$a){
        $thread_allow           =       ((x($_POST,'thread_allow'))             ? True                                          : False);
        $newuser_private                =       ((x($_POST,'newuser_private'))          ? True                                          : False);
        $enotify_no_content             =       ((x($_POST,'enotify_no_content'))       ? True                                          : False);
-
+       $private_addons         =       ((x($_POST,'private_addons'))           ? True                                          : False);
+       
        $no_multi_reg           =       ((x($_POST,'no_multi_reg'))             ? True                                          : False);
        $no_openid              =       !((x($_POST,'no_openid'))               ? True                                          : False);
        $no_regfullname         =       !((x($_POST,'no_regfullname'))          ? True                                          : False);
@@ -283,7 +284,6 @@ function admin_page_site_post(&$a){
        $temppath               =       ((x($_POST,'temppath'))                 ? notags(trim($_POST['temppath']))              : '');
        $basepath               =       ((x($_POST,'basepath'))                 ? notags(trim($_POST['basepath']))              : '');
        $singleuser             =       ((x($_POST,'singleuser'))               ? notags(trim($_POST['singleuser']))            : '');
-
        if($ssl_policy != intval(get_config('system','ssl_policy'))) {
                if($ssl_policy == SSL_POLICY_FULL) {
                        q("update `contact` set 
@@ -387,7 +387,8 @@ function admin_page_site_post(&$a){
        set_config('system','dfrn_only', $dfrn_only);
        set_config('system','ostatus_disabled', $ostatus_disabled);
        set_config('system','diaspora_enabled', $diaspora_enabled);
-
+       set_config('config','private_addons', $private_addons);
+       
        set_config('system','new_share', $new_share);
        set_config('system','hide_help', $hide_help);
        set_config('system','use_fulltext_engine', $use_fulltext_engine);
@@ -396,8 +397,7 @@ function admin_page_site_post(&$a){
        set_config('system','lockpath', $lockpath);
        set_config('system','temppath', $temppath);
        set_config('system','basepath', $basepath);
-
-
+       
        info( t('Site settings updated.') . EOL);
        goaway($a->get_baseurl(true) . '/admin/site' );
        return; // NOTREACHED
@@ -509,7 +509,8 @@ function admin_page_site(&$a) {
                '$thread_allow'         => array('thread_allow', t("Allow threaded items"), get_config('system','thread_allow'), t("Allow infinite level threading for items on this site.")),
                '$newuser_private'      => array('newuser_private', t("Private posts by default for new users"), get_config('system','newuser_private'), t("Set default post permissions for all new members to the default privacy group rather than public.")),
                '$enotify_no_content'   => array('enotify_no_content', t("Don't include post content in email notifications"), get_config('system','enotify_no_content'), t("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.")),
-
+               '$private_addons'       => array('private_addons', t("Disallow public access to addons listed in the apps menu."), get_config('config','private_addons'), t("Checking this box will restrict addons listed in the apps menu to members only.")),
+               
                '$no_multi_reg'         => array('no_multi_reg', t("Block multiple registrations"),  get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")),
                '$no_openid'            => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")),
                '$no_regfullname'       => array('no_regfullname', t("Fullname check"), !get_config('system','no_regfullname'), t("Force users to register with a space between firstname and lastname in Full name, as an antispam measure")),
@@ -532,7 +533,6 @@ function admin_page_site(&$a) {
                '$lockpath'             => array('lockpath', t("Path for lock file"), get_config('system','lockpath'), "The lock file is used to avoid multiple pollers at one time. Only define a folder here."),
                '$temppath'             => array('temppath', t("Temp path"), get_config('system','temppath'), "If you have a restricted system where the webserver can't access the system temp path, enter another path here."),
                '$basepath'             => array('basepath', t("Base path to installation"), get_config('system','basepath'), "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."),
-
         '$form_security_token' => get_form_security_token("admin_site"),
 
        ));
index 8049b45fb3e846162b8a06ab41bfa2763b61b84a..a821ef5d5b89192b5534df7e8b78cd074e9a7964 100644 (file)
@@ -1,7 +1,14 @@
 <?php
 
 function apps_content(&$a) {
-       $title = t('Applications');
+    $privateaddons = get_config('config','private_addons');
+      if ($privateaddons === "1") {
+       if((! (local_user())))  {
+       info( t("You must be logged in to use addons. "));
+      return;};
+}
+
+      $title = t('Applications');
 
        if(count($a->apps)==0)
                notice( t('No installed applications.') . EOL);
diff --git a/mods/sample-Lighttpd.config b/mods/sample-Lighttpd.config
new file mode 100644 (file)
index 0000000..66d0058
--- /dev/null
@@ -0,0 +1,134 @@
+Below is a sample config for Lighttpd that
+seems to work well on Debian Squeeze, with "lighttpd/1.4.28 (ssl)"
+
+The idea is: if someone enters the bare URL for my site, 'example.com',
+they get redirected to https://example.com/index.html, which is simply a
+page with two links on it: https://wordpress.example.com and
+https://friendica.example.com.
+
+If someone enters https://example.com, they get redirected to
+https://wordpress.example.com/main/, which is the 'main' blog in a Word
+Press 'network install' of the 'subdirectory' variety.
+
+I thought it might be nice to offer people who join my Friendica
+instance their own blogs, if they like.
+
+One can obtain free, signed, single subdomain SSL certificates from
+StartCom CA, which upon checking I noticed was already installed in both
+Firefox and Google Chromium.  Info at http://cert.startcom.org/ .  So I
+got one for each site, and have Lighty use the appropriate cert based on
+the requested URL.
+
+Enjoy!
+
+---------------( config starts )-----------------
+
+debug.log-request-handling = "disable"
+debug.log-condition-handling = "disable"
+
+server.modules = (
+        "mod_access",
+        "mod_alias",
+        "mod_compress",
+        "mod_redirect",
+        "mod_fastcgi",
+        "mod_rewrite"
+)
+
+server.document-root        = "/var/www"
+server.upload-dirs          = ( "/var/cache/lighttpd/uploads" )
+server.errorlog             = "/var/log/lighttpd/error.log"
+server.pid-file             = "/var/run/lighttpd.pid"
+server.username             = "www-data"
+server.groupname            = "www-data"
+
+ssl.engine = "enable"
+ssl.pemfile = "/etc/lighttpd/ssl/wordpress.pem"
+ssl.ca-file = "/etc/lighttpd/ssl/ca.pem"
+
+# Send everybody to landing
+page:                                                            
+$SERVER["socket"] == ":80" {
+
+$HTTP["scheme"] == "http" {
+    $HTTP["host"] =~ ".*" {
+        # This next redirect doesn't appear to ever execute in
+Firefox                       
+        # (sometimes, anyway -- caching issue?), but it does seem
+to                         
+        # reliably in Google's Chromium browser. If I change it
+here                         
+        # and restart Lighty, Firefox still goes to the URL in
+the                           
+        # last 'else' below. Or something. 
+Sometimes.                                       
+        server.document-root = "/var/www"
+        url.redirect = (".*" => "https://example.com")
+    }
+}
+
+}
+else $SERVER["socket"] == ":443" {
+
+$HTTP["scheme"] == "https" {
+
+    $HTTP["host"] == "wordpress.example.com" {
+        server.document-root = "/var/www/wordpress"
+        ssl.pemfile = "/etc/lighttpd/ssl/wordpress.pem"
+        # include
+"wpmu-rewrites.conf"                                                       
+        url.rewrite-if-not-file = (
+            "^/(.*/)?files/$" => "/index.php",
+             "^/(.*/)?files/(.*)" => "/wp-includes/ms-files.php?file=$2",
+             "^(/wp-admin/.*)" => "$1",
+             "^/([_0-9a-zA-Z-]+/)?(wp-.*)" => "/$2",
+             "^/([_0-9a-zA-Z-]+/)?(.*\.php)" => "/$2",
+             "^/(.*)/?$" => "/index.php/$1"
+        )
+    }
+    else $HTTP["host"] == "friendica.example.com" {
+        server.document-root = "/var/www/friendica"
+        ssl.pemfile = "/etc/lighttpd/ssl/friendica.pem"
+        # Got the following 'Drupal Clean URL'after Mike suggested
+trying                    
+        # something along those lines, from
+http://drupal.org/node/1414950                   
+        url.rewrite-if-not-file = (
+            "^\/([^\?]*)\?(.*)$" => "/index.php?q=$1&$2",
+            "^\/(.*)$" => "/index.php?q=$1"
+        )
+    }
+    else $HTTP["host"] !~ "(friendica.example.com|wordpress.example.com)" {
+        server.document-root = "/var/www/wordpress"
+        ssl.pemfile = "/etc/lighttpd/ssl/wordpress.pem"
+        url.redirect = (".*" => "https://wordpress.example.com/main/")
+    }
+}
+
+}
+
+index-file.names            = ( "index.php", "index.html",
+                                "index.htm", "default.htm",
+                               "index.lighttpd.html" )
+
+url.access-deny             = ( "~", ".inc" )
+
+static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
+
+include_shell "/usr/share/lighttpd/use-ipv6.pl"
+
+dir-listing.encoding        = "utf-8"
+server.dir-listing          = "disable"
+
+#compress.cache-dir          =
+"/var/cache/lighttpd/compress/"                               
+#compress.filetype           = ( "application/x-javascript", "text/css",
+"text/html", "text/p\
+lain"
+)                                                                               
+
+
+include_shell "/usr/share/lighttpd/create-mime.assign.pl"
+include_shell "/usr/share/lighttpd/include-conf-enabled.pl"
+
+---------------( config ends )-----------------
\ No newline at end of file
index e10b053adae13596965c20d0a97ed4096b0829dc..da69e320b6aebe8b1694746607d1cd77e42af93d 100644 (file)
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: 3.1.1627\n"
+"Project-Id-Version: 3.1.1623\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-03-02 00:00-0800\n"
+"POT-Creation-Date: 2013-02-26 00:00-0800\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"
@@ -116,8 +116,8 @@ msgstr ""
 #: ../../addon/twitter/twitter.php:556
 #: ../../addon/uhremotestorage/uhremotestorage.php:89
 #: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
-#: ../../mod/profiles.php:626 ../../mod/admin.php:478 ../../mod/admin.php:748
-#: ../../mod/admin.php:887 ../../mod/admin.php:1087 ../../mod/admin.php:1174
+#: ../../mod/profiles.php:626 ../../mod/admin.php:475 ../../mod/admin.php:744
+#: ../../mod/admin.php:882 ../../mod/admin.php:1082 ../../mod/admin.php:1169
 #: ../../mod/contacts.php:386 ../../mod/settings.php:560
 #: ../../mod/settings.php:670 ../../mod/settings.php:739
 #: ../../mod/settings.php:811 ../../mod/settings.php:1037
@@ -822,7 +822,7 @@ msgstr ""
 #: ../../addon.old/mathjax/mathjax.php:36
 #: ../../addon/dav/friendica/layout.fnk.php:225
 #: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
-#: ../../mod/admin.php:846 ../../mod/admin.php:1054 ../../mod/settings.php:74
+#: ../../mod/admin.php:841 ../../mod/admin.php:1049 ../../mod/settings.php:74
 #: ../../mod/uexport.php:48 ../../mod/newmember.php:22
 #: ../../view/theme/diabook/theme.php:537
 #: ../../view/theme/diabook/theme.php:658
@@ -2774,7 +2774,7 @@ msgid "Clear OAuth configuration"
 msgstr ""
 
 #: ../../addon.old/statusnet/statusnet.php:567
-#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:487
+#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484
 msgid "Site name"
 msgstr ""
 
@@ -4177,8 +4177,8 @@ msgid "RSS/Atom"
 msgstr ""
 
 #: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:751
-#: ../../mod/admin.php:762
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747
+#: ../../mod/admin.php:757
 msgid "Email"
 msgstr ""
 
@@ -4394,7 +4394,7 @@ msgid "You have a new follower at "
 msgstr ""
 
 #: ../../include/items.php:3926 ../../mod/admin.php:158
-#: ../../mod/admin.php:794 ../../mod/admin.php:994 ../../mod/display.php:51
+#: ../../mod/admin.php:789 ../../mod/admin.php:989 ../../mod/display.php:51
 #: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
 msgid "Item not found."
 msgstr ""
@@ -4450,6 +4450,191 @@ msgstr ""
 msgid "Attachments:"
 msgstr ""
 
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr ""
+
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr ""
+
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr ""
+
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr ""
+
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr ""
+
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr ""
+
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr ""
+
+#: ../../include/enotify.php:90
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:116
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr ""
+
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr ""
+
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr ""
+
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr ""
+
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr ""
+
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr ""
+
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr ""
+
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr ""
+
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr ""
+
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr ""
+
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr ""
+
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr ""
+
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr ""
+
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr ""
+
+#: ../../include/enotify.php:201
+#, php-format
+msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
+
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr ""
+
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr ""
+
+#: ../../include/enotify.php:210
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr ""
+
 #: ../../include/features.php:23
 msgid "General Features"
 msgstr ""
@@ -4681,7 +4866,7 @@ msgstr ""
 msgid "Select"
 msgstr ""
 
-#: ../../include/conversation.php:588 ../../mod/admin.php:755
+#: ../../include/conversation.php:588 ../../mod/admin.php:751
 #: ../../mod/settings.php:623 ../../mod/group.php:171
 #: ../../mod/photos.php:1637 ../../mod/content.php:462
 #: ../../mod/content.php:764 ../../object/Item.php:120
@@ -4923,246 +5108,61 @@ msgstr ""
 msgid "Private post"
 msgstr ""
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
 msgstr ""
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
+#: ../../include/message.php:144 ../../mod/item.php:443
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151
+msgid "Wall Photos"
 msgstr ""
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
 msgstr ""
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
 msgstr ""
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
+#: ../../include/nav.php:73 ../../boot.php:1057
+msgid "Logout"
 msgstr ""
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: ../../include/nav.php:73
+msgid "End this session"
 msgstr ""
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
+#: ../../include/nav.php:76 ../../boot.php:1861
+msgid "Status"
 msgstr ""
 
-#: ../../include/enotify.php:47
-msgid "a private message"
+#: ../../include/nav.php:76 ../../include/nav.php:143
+#: ../../view/theme/diabook/theme.php:87
+msgid "Your posts and conversations"
 msgstr ""
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
+msgid "Your profile page"
 msgstr ""
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
+msgid "Photos"
 msgstr ""
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
+msgid "Your photos"
 msgstr ""
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+#: ../../include/nav.php:79 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
+msgid "Events"
 msgstr ""
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr ""
-
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr ""
-
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr ""
-
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr ""
-
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr ""
-
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr ""
-
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr ""
-
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
-
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr ""
-
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr ""
-
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr ""
-
-#: ../../include/enotify.php:186
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:187
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr ""
-
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr ""
-
-#: ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr ""
-
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
-
-#: ../../include/enotify.php:200
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
-
-#: ../../include/enotify.php:201
-#, php-format
-msgid "You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
-
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr ""
-
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr ""
-
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
-
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr ""
-
-#: ../../include/message.php:144 ../../mod/item.php:443
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151
-msgid "Wall Photos"
-msgstr ""
-
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr ""
-
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
-msgstr ""
-
-#: ../../include/nav.php:73 ../../boot.php:1057
-msgid "Logout"
-msgstr ""
-
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr ""
-
-#: ../../include/nav.php:76 ../../boot.php:1861
-msgid "Status"
-msgstr ""
-
-#: ../../include/nav.php:76 ../../include/nav.php:143
-#: ../../view/theme/diabook/theme.php:87
-msgid "Your posts and conversations"
-msgstr ""
-
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
-msgid "Your profile page"
-msgstr ""
-
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
-msgid "Photos"
-msgstr ""
-
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
-msgid "Your photos"
-msgstr ""
-
-#: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
-msgid "Events"
-msgstr ""
-
-#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
-msgid "Your events"
+#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
+msgid "Your events"
 msgstr ""
 
 #: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
@@ -5749,1011 +5749,997 @@ msgstr ""
 msgid "{0} mentioned you in a post"
 msgstr ""
 
-#: ../../mod/item.php:105
-msgid "Unable to locate original post."
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
 msgstr ""
 
-#: ../../mod/item.php:307
-msgid "Empty post discarded."
+#: ../../mod/admin.php:96 ../../mod/admin.php:474
+msgid "Site"
 msgstr ""
 
-#: ../../mod/item.php:869
-msgid "System error. Post not saved."
+#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756
+msgid "Users"
 msgstr ""
 
-#: ../../mod/item.php:894
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social network."
+#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881
+msgid "Plugins"
 msgstr ""
 
-#: ../../mod/item.php:896
-#, php-format
-msgid "You may visit them online at %s"
+#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081
+msgid "Themes"
 msgstr ""
 
-#: ../../mod/item.php:897
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+#: ../../mod/admin.php:100
+msgid "DB updates"
 msgstr ""
 
-#: ../../mod/item.php:901
-#, php-format
-msgid "%s posted an update."
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168
+msgid "Logs"
 msgstr ""
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
 msgstr ""
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
 msgstr ""
 
-#: ../../mod/search.php:21 ../../mod/network.php:224
-msgid "Remove term"
+#: ../../mod/admin.php:182 ../../mod/admin.php:714
+msgid "Normal Account"
 msgstr ""
 
-#: ../../mod/search.php:180 ../../mod/search.php:206
-#: ../../mod/community.php:61 ../../mod/community.php:88
-msgid "No results."
+#: ../../mod/admin.php:183 ../../mod/admin.php:715
+msgid "Soapbox Account"
 msgstr ""
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
+#: ../../mod/admin.php:184 ../../mod/admin.php:716
+msgid "Community/Celebrity Account"
 msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
+#: ../../mod/admin.php:185 ../../mod/admin.php:717
+msgid "Automatic Friend Account"
 msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
+#: ../../mod/admin.php:186
+msgid "Blog Account"
 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?"
+#: ../../mod/admin.php:187
+msgid "Private Forum"
 msgstr ""
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
+#: ../../mod/admin.php:206
+msgid "Message queues"
 msgstr ""
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
+#: ../../mod/admin.php:211 ../../mod/admin.php:473 ../../mod/admin.php:742
+#: ../../mod/admin.php:838 ../../mod/admin.php:880 ../../mod/admin.php:1046
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1167
+msgid "Administration"
 msgstr ""
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
+#: ../../mod/admin.php:212
+msgid "Summary"
 msgstr ""
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
+#: ../../mod/admin.php:214
+msgid "Registered users"
 msgstr ""
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
 msgstr ""
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/admin.php:217
+msgid "Version"
 msgstr ""
 
-#: ../../mod/register.php:192 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
+#: ../../mod/admin.php:219
+msgid "Active plugins"
 msgstr ""
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: ../../mod/admin.php:398
+msgid "Site settings updated."
 msgstr ""
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
+#: ../../mod/admin.php:427 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
+#: ../../mod/admin.php:444
+msgid "Multi user instance"
 msgstr ""
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
+#: ../../mod/admin.php:460
+msgid "Closed"
 msgstr ""
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
+#: ../../mod/admin.php:461
+msgid "Requires approval"
 msgstr ""
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
+#: ../../mod/admin.php:462
+msgid "Open"
 msgstr ""
 
-#: ../../mod/register.php:261 ../../mod/admin.php:479
-msgid "Registration"
+#: ../../mod/admin.php:466
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
+#: ../../mod/admin.php:467
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
+#: ../../mod/admin.php:468
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../mod/register.php:271
-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:476 ../../mod/register.php:261
+msgid "Registration"
 msgstr ""
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
+#: ../../mod/admin.php:477
+msgid "File upload"
 msgstr ""
 
-#: ../../mod/apps.php:4
-msgid "Applications"
+#: ../../mod/admin.php:478
+msgid "Policies"
 msgstr ""
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
+#: ../../mod/admin.php:479
+msgid "Advanced"
 msgstr ""
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
+#: ../../mod/admin.php:480
+msgid "Performance"
 msgstr ""
 
-#: ../../mod/regmod.php:100
-#, php-format
-msgid "Registration revoked for %s"
+#: ../../mod/admin.php:485
+msgid "Banner/Logo"
 msgstr ""
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
+#: ../../mod/admin.php:486
+msgid "System language"
 msgstr ""
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
+#: ../../mod/admin.php:487
+msgid "System theme"
 msgstr ""
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
+#: ../../mod/admin.php:487
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
+#: ../../mod/admin.php:488
+msgid "Mobile system theme"
 msgstr ""
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+#: ../../mod/admin.php:488
+msgid "Theme for mobile devices"
 msgstr ""
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
+#: ../../mod/admin.php:489
+msgid "SSL link policy"
 msgstr ""
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
+#: ../../mod/admin.php:489
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
+#: ../../mod/admin.php:490
+msgid "'Share' element"
 msgstr ""
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
+#: ../../mod/admin.php:490
+msgid "Activates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
+#: ../../mod/admin.php:491
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
+#: ../../mod/admin.php:491
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
+#: ../../mod/admin.php:492
+msgid "Single user instance"
 msgstr ""
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
+#: ../../mod/admin.php:492
+msgid "Make this instance multi-user or single-user for the named user"
 msgstr ""
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
+#: ../../mod/admin.php:493
+msgid "Maximum image size"
 msgstr ""
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
+#: ../../mod/admin.php:493
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
+#: ../../mod/admin.php:494
+msgid "Maximum image length"
 msgstr ""
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
+#: ../../mod/admin.php:494
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
 msgstr ""
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
+#: ../../mod/admin.php:495
+msgid "JPEG image quality"
 msgstr ""
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
+#: ../../mod/admin.php:495
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../mod/admin.php:497
+msgid "Register policy"
 msgstr ""
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
+#: ../../mod/admin.php:498
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:477
-msgid "Site"
+#: ../../mod/admin.php:498
+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/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761
-msgid "Users"
+#: ../../mod/admin.php:499
+msgid "Register text"
 msgstr ""
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886
-msgid "Plugins"
+#: ../../mod/admin.php:499
+msgid "Will be displayed prominently on the registration page."
 msgstr ""
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086
-msgid "Themes"
+#: ../../mod/admin.php:500
+msgid "Accounts abandoned after x days"
 msgstr ""
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
+#: ../../mod/admin.php:500
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
 msgstr ""
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173
-msgid "Logs"
+#: ../../mod/admin.php:501
+msgid "Allowed friend domains"
 msgstr ""
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
+#: ../../mod/admin.php:501
+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/admin.php:123
-msgid "User registrations waiting for confirmation"
+#: ../../mod/admin.php:502
+msgid "Allowed email domains"
 msgstr ""
 
-#: ../../mod/admin.php:182 ../../mod/admin.php:718
-msgid "Normal Account"
+#: ../../mod/admin.php:502
+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 ""
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:719
-msgid "Soapbox Account"
+#: ../../mod/admin.php:503
+msgid "Block public"
 msgstr ""
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:720
-msgid "Community/Celebrity Account"
+#: ../../mod/admin.php:503
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:721
-msgid "Automatic Friend Account"
+#: ../../mod/admin.php:504
+msgid "Force publish"
 msgstr ""
 
-#: ../../mod/admin.php:186
-msgid "Blog Account"
+#: ../../mod/admin.php:504
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
 msgstr ""
 
-#: ../../mod/admin.php:187
-msgid "Private Forum"
+#: ../../mod/admin.php:505
+msgid "Global directory update URL"
 msgstr ""
 
-#: ../../mod/admin.php:206
-msgid "Message queues"
+#: ../../mod/admin.php:505
+msgid ""
+"URL to update the global directory. If this is not set, the global directory "
+"is completely unavailable to the application."
 msgstr ""
 
-#: ../../mod/admin.php:211 ../../mod/admin.php:476 ../../mod/admin.php:746
-#: ../../mod/admin.php:843 ../../mod/admin.php:885 ../../mod/admin.php:1051
-#: ../../mod/admin.php:1085 ../../mod/admin.php:1172
-msgid "Administration"
+#: ../../mod/admin.php:506
+msgid "Allow threaded items"
 msgstr ""
 
-#: ../../mod/admin.php:212
-msgid "Summary"
+#: ../../mod/admin.php:506
+msgid "Allow infinite level threading for items on this site."
 msgstr ""
 
-#: ../../mod/admin.php:214
-msgid "Registered users"
+#: ../../mod/admin.php:507
+msgid "Private posts by default for new users"
 msgstr ""
 
-#: ../../mod/admin.php:216
-msgid "Pending registrations"
+#: ../../mod/admin.php:507
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: ../../mod/admin.php:217
-msgid "Version"
+#: ../../mod/admin.php:509
+msgid "Block multiple registrations"
 msgstr ""
 
-#: ../../mod/admin.php:219
-msgid "Active plugins"
+#: ../../mod/admin.php:509
+msgid "Disallow users to register additional accounts for use as pages."
 msgstr ""
 
-#: ../../mod/admin.php:401
-msgid "Site settings updated."
+#: ../../mod/admin.php:510
+msgid "OpenID support"
 msgstr ""
 
-#: ../../mod/admin.php:430 ../../mod/settings.php:769
-msgid "No special theme for mobile devices"
+#: ../../mod/admin.php:510
+msgid "OpenID support for registration and logins."
 msgstr ""
 
-#: ../../mod/admin.php:447
-msgid "Multi user instance"
-msgstr ""
-
-#: ../../mod/admin.php:463
-msgid "Closed"
+#: ../../mod/admin.php:511
+msgid "Fullname check"
 msgstr ""
 
-#: ../../mod/admin.php:464
-msgid "Requires approval"
+#: ../../mod/admin.php:511
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
 msgstr ""
 
-#: ../../mod/admin.php:465
-msgid "Open"
+#: ../../mod/admin.php:512
+msgid "UTF-8 Regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:469
-msgid "No SSL policy, links will track page SSL state"
+#: ../../mod/admin.php:512
+msgid "Use PHP UTF8 regular expressions"
 msgstr ""
 
-#: ../../mod/admin.php:470
-msgid "Force all links to use SSL"
+#: ../../mod/admin.php:513
+msgid "Show Community Page"
 msgstr ""
 
-#: ../../mod/admin.php:471
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: ../../mod/admin.php:513
+msgid ""
+"Display a Community page showing all recent public postings on this site."
 msgstr ""
 
-#: ../../mod/admin.php:480
-msgid "File upload"
+#: ../../mod/admin.php:514
+msgid "Enable OStatus support"
 msgstr ""
 
-#: ../../mod/admin.php:481
-msgid "Policies"
+#: ../../mod/admin.php:514
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
 msgstr ""
 
-#: ../../mod/admin.php:482
-msgid "Advanced"
+#: ../../mod/admin.php:515
+msgid "Enable Diaspora support"
 msgstr ""
 
-#: ../../mod/admin.php:483
-msgid "Performance"
+#: ../../mod/admin.php:515
+msgid "Provide built-in Diaspora network compatibility."
 msgstr ""
 
-#: ../../mod/admin.php:488
-msgid "Banner/Logo"
+#: ../../mod/admin.php:516
+msgid "Only allow Friendica contacts"
 msgstr ""
 
-#: ../../mod/admin.php:489
-msgid "System language"
+#: ../../mod/admin.php:516
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
 msgstr ""
 
-#: ../../mod/admin.php:490
-msgid "System theme"
+#: ../../mod/admin.php:517
+msgid "Verify SSL"
 msgstr ""
 
-#: ../../mod/admin.php:490
+#: ../../mod/admin.php:517
 msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
+"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/admin.php:491
-msgid "Mobile system theme"
+#: ../../mod/admin.php:518
+msgid "Proxy user"
 msgstr ""
 
-#: ../../mod/admin.php:491
-msgid "Theme for mobile devices"
+#: ../../mod/admin.php:519
+msgid "Proxy URL"
 msgstr ""
 
-#: ../../mod/admin.php:492
-msgid "SSL link policy"
+#: ../../mod/admin.php:520
+msgid "Network timeout"
 msgstr ""
 
-#: ../../mod/admin.php:492
-msgid "Determines whether generated links should be forced to use SSL"
+#: ../../mod/admin.php:520
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../mod/admin.php:493
-msgid "'Share' element"
+#: ../../mod/admin.php:521
+msgid "Delivery interval"
 msgstr ""
 
-#: ../../mod/admin.php:493
-msgid "Activates the bbcode element 'share' for repeating items."
+#: ../../mod/admin.php:521
+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 ""
 
-#: ../../mod/admin.php:494
-msgid "Hide help entry from navigation menu"
+#: ../../mod/admin.php:522
+msgid "Poll interval"
 msgstr ""
 
-#: ../../mod/admin.php:494
+#: ../../mod/admin.php:522
 msgid ""
-"Hides the menu entry for the Help pages from the navigation menu. You can "
-"still access it calling /help directly."
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
 msgstr ""
 
-#: ../../mod/admin.php:495
-msgid "Single user instance"
+#: ../../mod/admin.php:523
+msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../mod/admin.php:495
-msgid "Make this instance multi-user or single-user for the named user"
+#: ../../mod/admin.php:523
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: ../../mod/admin.php:496
-msgid "Maximum image size"
+#: ../../mod/admin.php:525
+msgid "Use MySQL full text engine"
 msgstr ""
 
-#: ../../mod/admin.php:496
+#: ../../mod/admin.php:525
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
-
-#: ../../mod/admin.php:497
-msgid "Maximum image length"
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 msgstr ""
 
-#: ../../mod/admin.php:497
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
+#: ../../mod/admin.php:526
+msgid "Path to item cache"
 msgstr ""
 
-#: ../../mod/admin.php:498
-msgid "JPEG image quality"
+#: ../../mod/admin.php:527
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: ../../mod/admin.php:498
+#: ../../mod/admin.php:527
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
+"How long should the cache files be hold? Default value is 86400 seconds (One "
+"day)."
 msgstr ""
 
-#: ../../mod/admin.php:500
-msgid "Register policy"
+#: ../../mod/admin.php:528
+msgid "Path for lock file"
 msgstr ""
 
-#: ../../mod/admin.php:501
-msgid "Maximum Daily Registrations"
+#: ../../mod/admin.php:529
+msgid "Temp path"
 msgstr ""
 
-#: ../../mod/admin.php:501
-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/admin.php:530
+msgid "Base path to installation"
 msgstr ""
 
-#: ../../mod/admin.php:502
-msgid "Register text"
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
 msgstr ""
 
-#: ../../mod/admin.php:502
-msgid "Will be displayed prominently on the registration page."
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
 msgstr ""
 
-#: ../../mod/admin.php:503
-msgid "Accounts abandoned after x days"
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
 msgstr ""
 
-#: ../../mod/admin.php:503
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../mod/admin.php:504
-msgid "Allowed friend domains"
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
 msgstr ""
 
-#: ../../mod/admin.php:504
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
+#: ../../mod/admin.php:583
+msgid "No failed updates."
 msgstr ""
 
-#: ../../mod/admin.php:505
-msgid "Allowed email domains"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
 msgstr ""
 
-#: ../../mod/admin.php:505
+#: ../../mod/admin.php:588
 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"
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../mod/admin.php:506
-msgid "Block public"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../mod/admin.php:506
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../mod/admin.php:507
-msgid "Force publish"
-msgstr ""
+#: ../../mod/admin.php:615
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/admin.php:507
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
+#: ../../mod/admin.php:622
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] ""
+msgstr[1] ""
 
-#: ../../mod/admin.php:508
-msgid "Global directory update URL"
+#: ../../mod/admin.php:661
+#, php-format
+msgid "User '%s' deleted"
 msgstr ""
 
-#: ../../mod/admin.php:508
-msgid ""
-"URL to update the global directory. If this is not set, the global directory "
-"is completely unavailable to the application."
+#: ../../mod/admin.php:669
+#, php-format
+msgid "User '%s' unblocked"
 msgstr ""
 
-#: ../../mod/admin.php:509
-msgid "Allow threaded items"
+#: ../../mod/admin.php:669
+#, php-format
+msgid "User '%s' blocked"
 msgstr ""
 
-#: ../../mod/admin.php:509
-msgid "Allow infinite level threading for items on this site."
+#: ../../mod/admin.php:745
+msgid "select all"
 msgstr ""
 
-#: ../../mod/admin.php:510
-msgid "Private posts by default for new users"
+#: ../../mod/admin.php:746
+msgid "User registrations waiting for confirm"
 msgstr ""
 
-#: ../../mod/admin.php:510
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
+#: ../../mod/admin.php:747
+msgid "Request date"
 msgstr ""
 
-#: ../../mod/admin.php:511
-msgid "Don't include post content in email notifications"
+#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
 msgstr ""
 
-#: ../../mod/admin.php:511
-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/admin.php:748
+msgid "No registrations."
 msgstr ""
 
-#: ../../mod/admin.php:513
-msgid "Block multiple registrations"
+#: ../../mod/admin.php:749 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
 msgstr ""
 
-#: ../../mod/admin.php:513
-msgid "Disallow users to register additional accounts for use as pages."
+#: ../../mod/admin.php:750
+msgid "Deny"
 msgstr ""
 
-#: ../../mod/admin.php:514
-msgid "OpenID support"
+#: ../../mod/admin.php:752 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
 msgstr ""
 
-#: ../../mod/admin.php:514
-msgid "OpenID support for registration and logins."
+#: ../../mod/admin.php:753 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
 msgstr ""
 
-#: ../../mod/admin.php:515
-msgid "Fullname check"
+#: ../../mod/admin.php:754
+msgid "Site admin"
 msgstr ""
 
-#: ../../mod/admin.php:515
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
+#: ../../mod/admin.php:757
+msgid "Register date"
 msgstr ""
 
-#: ../../mod/admin.php:516
-msgid "UTF-8 Regular expressions"
+#: ../../mod/admin.php:757
+msgid "Last login"
 msgstr ""
 
-#: ../../mod/admin.php:516
-msgid "Use PHP UTF8 regular expressions"
+#: ../../mod/admin.php:757
+msgid "Last item"
 msgstr ""
 
-#: ../../mod/admin.php:517
-msgid "Show Community Page"
+#: ../../mod/admin.php:757
+msgid "Account"
 msgstr ""
 
-#: ../../mod/admin.php:517
+#: ../../mod/admin.php:759
 msgid ""
-"Display a Community page showing all recent public postings on this site."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
 msgstr ""
 
-#: ../../mod/admin.php:518
-msgid "Enable OStatus support"
+#: ../../mod/admin.php:760
+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/admin.php:518
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
+#: ../../mod/admin.php:801
+#, php-format
+msgid "Plugin %s disabled."
 msgstr ""
 
-#: ../../mod/admin.php:519
-msgid "Enable Diaspora support"
+#: ../../mod/admin.php:805
+#, php-format
+msgid "Plugin %s enabled."
 msgstr ""
 
-#: ../../mod/admin.php:519
-msgid "Provide built-in Diaspora network compatibility."
+#: ../../mod/admin.php:815 ../../mod/admin.php:1018
+msgid "Disable"
 msgstr ""
 
-#: ../../mod/admin.php:520
-msgid "Only allow Friendica contacts"
+#: ../../mod/admin.php:817 ../../mod/admin.php:1020
+msgid "Enable"
 msgstr ""
 
-#: ../../mod/admin.php:520
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+#: ../../mod/admin.php:840 ../../mod/admin.php:1048
+msgid "Toggle"
 msgstr ""
 
-#: ../../mod/admin.php:521
-msgid "Verify SSL"
+#: ../../mod/admin.php:848 ../../mod/admin.php:1058
+msgid "Author: "
 msgstr ""
 
-#: ../../mod/admin.php:521
-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/admin.php:849 ../../mod/admin.php:1059
+msgid "Maintainer: "
 msgstr ""
 
-#: ../../mod/admin.php:522
-msgid "Proxy user"
+#: ../../mod/admin.php:978
+msgid "No themes found."
 msgstr ""
 
-#: ../../mod/admin.php:523
-msgid "Proxy URL"
+#: ../../mod/admin.php:1040
+msgid "Screenshot"
 msgstr ""
 
-#: ../../mod/admin.php:524
-msgid "Network timeout"
+#: ../../mod/admin.php:1086
+msgid "[Experimental]"
 msgstr ""
 
-#: ../../mod/admin.php:524
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+#: ../../mod/admin.php:1087
+msgid "[Unsupported]"
 msgstr ""
 
-#: ../../mod/admin.php:525
-msgid "Delivery interval"
+#: ../../mod/admin.php:1114
+msgid "Log settings updated."
 msgstr ""
 
-#: ../../mod/admin.php:525
-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."
+#: ../../mod/admin.php:1170
+msgid "Clear"
+msgstr ""
+
+#: ../../mod/admin.php:1176
+msgid "Debugging"
 msgstr ""
 
-#: ../../mod/admin.php:526
-msgid "Poll interval"
+#: ../../mod/admin.php:1177
+msgid "Log file"
 msgstr ""
 
-#: ../../mod/admin.php:526
+#: ../../mod/admin.php:1177
 msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: ../../mod/admin.php:527
-msgid "Maximum Load Average"
+#: ../../mod/admin.php:1178
+msgid "Log level"
 msgstr ""
 
-#: ../../mod/admin.php:527
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
+#: ../../mod/admin.php:1227 ../../mod/contacts.php:409
+msgid "Update now"
 msgstr ""
 
-#: ../../mod/admin.php:529
-msgid "Use MySQL full text engine"
+#: ../../mod/admin.php:1228
+msgid "Close"
 msgstr ""
 
-#: ../../mod/admin.php:529
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: ../../mod/admin.php:1234
+msgid "FTP Host"
 msgstr ""
 
-#: ../../mod/admin.php:530
-msgid "Path to item cache"
+#: ../../mod/admin.php:1235
+msgid "FTP Path"
 msgstr ""
 
-#: ../../mod/admin.php:531
-msgid "Cache duration in seconds"
+#: ../../mod/admin.php:1236
+msgid "FTP User"
 msgstr ""
 
-#: ../../mod/admin.php:531
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One "
-"day)."
+#: ../../mod/admin.php:1237
+msgid "FTP Password"
 msgstr ""
 
-#: ../../mod/admin.php:532
-msgid "Path for lock file"
+#: ../../mod/item.php:105
+msgid "Unable to locate original post."
 msgstr ""
 
-#: ../../mod/admin.php:533
-msgid "Temp path"
+#: ../../mod/item.php:307
+msgid "Empty post discarded."
 msgstr ""
 
-#: ../../mod/admin.php:534
-msgid "Base path to installation"
+#: ../../mod/item.php:869
+msgid "System error. Post not saved."
 msgstr ""
 
-#: ../../mod/admin.php:552
-msgid "Update has been marked successful"
+#: ../../mod/item.php:894
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social network."
 msgstr ""
 
-#: ../../mod/admin.php:562
+#: ../../mod/item.php:896
 #, php-format
-msgid "Executing %s failed. Check system logs."
+msgid "You may visit them online at %s"
 msgstr ""
 
-#: ../../mod/admin.php:565
-#, php-format
-msgid "Update %s was successfully applied."
+#: ../../mod/item.php:897
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
 msgstr ""
 
-#: ../../mod/admin.php:569
+#: ../../mod/item.php:901
 #, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+msgid "%s posted an update."
 msgstr ""
 
-#: ../../mod/admin.php:572
+#: ../../mod/allfriends.php:34
 #, php-format
-msgid "Update function %s could not be found."
+msgid "Friends of %s"
 msgstr ""
 
-#: ../../mod/admin.php:587
-msgid "No failed updates."
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
 msgstr ""
 
-#: ../../mod/admin.php:591
-msgid "Failed Updates"
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
 msgstr ""
 
-#: ../../mod/admin.php:592
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:88
+msgid "No results."
 msgstr ""
 
-#: ../../mod/admin.php:593
-msgid "Mark success (if update was manually applied)"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
 msgstr ""
 
-#: ../../mod/admin.php:594
-msgid "Attempt to execute this update step automatically"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
 msgstr ""
 
-#: ../../mod/admin.php:619
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:626
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] ""
-msgstr[1] ""
-
-#: ../../mod/admin.php:665
-#, php-format
-msgid "User '%s' deleted"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
 msgstr ""
 
-#: ../../mod/admin.php:673
-#, php-format
-msgid "User '%s' unblocked"
+#: ../../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/admin.php:673
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
 #, php-format
-msgid "User '%s' blocked"
+msgid "Registration details for %s"
 msgstr ""
 
-#: ../../mod/admin.php:749
-msgid "select all"
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
 msgstr ""
 
-#: ../../mod/admin.php:750
-msgid "User registrations waiting for confirm"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
 msgstr ""
 
-#: ../../mod/admin.php:751
-msgid "Request date"
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
 msgstr ""
 
-#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/crepair.php:148
-msgid "Name"
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
 msgstr ""
 
-#: ../../mod/admin.php:752
-msgid "No registrations."
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
 msgstr ""
 
-#: ../../mod/admin.php:753 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
 msgstr ""
 
-#: ../../mod/admin.php:754
-msgid "Deny"
+#: ../../mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
 msgstr ""
 
-#: ../../mod/admin.php:756 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
 msgstr ""
 
-#: ../../mod/admin.php:757 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
 msgstr ""
 
-#: ../../mod/admin.php:758
-msgid "Site admin"
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
 msgstr ""
 
-#: ../../mod/admin.php:759
-msgid "Account expired"
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
 msgstr ""
 
-#: ../../mod/admin.php:762
-msgid "Register date"
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
 msgstr ""
 
-#: ../../mod/admin.php:762
-msgid "Last login"
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
 msgstr ""
 
-#: ../../mod/admin.php:762
-msgid "Last item"
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
 msgstr ""
 
-#: ../../mod/admin.php:762
-msgid "Account"
+#: ../../mod/register.php:271
+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/admin.php:764
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
 msgstr ""
 
-#: ../../mod/admin.php:765
-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/apps.php:4
+msgid "Applications"
 msgstr ""
 
-#: ../../mod/admin.php:806
-#, php-format
-msgid "Plugin %s disabled."
+#: ../../mod/apps.php:7
+msgid "No installed applications."
 msgstr ""
 
-#: ../../mod/admin.php:810
-#, php-format
-msgid "Plugin %s enabled."
+#: ../../mod/regmod.php:63
+msgid "Account approved."
 msgstr ""
 
-#: ../../mod/admin.php:820 ../../mod/admin.php:1023
-msgid "Disable"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
 msgstr ""
 
-#: ../../mod/admin.php:822 ../../mod/admin.php:1025
-msgid "Enable"
+#: ../../mod/regmod.php:112
+msgid "Please login."
 msgstr ""
 
-#: ../../mod/admin.php:845 ../../mod/admin.php:1053
-msgid "Toggle"
+#: ../../mod/attach.php:8
+msgid "Item not available."
 msgstr ""
 
-#: ../../mod/admin.php:853 ../../mod/admin.php:1063
-msgid "Author: "
+#: ../../mod/attach.php:20
+msgid "Item was not found."
 msgstr ""
 
-#: ../../mod/admin.php:854 ../../mod/admin.php:1064
-msgid "Maintainer: "
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
 msgstr ""
 
-#: ../../mod/admin.php:983
-msgid "No themes found."
+#: ../../mod/removeme.php:46
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
 msgstr ""
 
-#: ../../mod/admin.php:1045
-msgid "Screenshot"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
 msgstr ""
 
-#: ../../mod/admin.php:1091
-msgid "[Experimental]"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: ../../mod/admin.php:1092
-msgid "[Unsupported]"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
 msgstr ""
 
-#: ../../mod/admin.php:1119
-msgid "Log settings updated."
+#: ../../mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: ../../mod/admin.php:1175
-msgid "Clear"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: ../../mod/admin.php:1181
-msgid "Debugging"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: ../../mod/admin.php:1182
-msgid "Log file"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:1182
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: ../../mod/babel.php:47
+msgid "bb2md: "
 msgstr ""
 
-#: ../../mod/admin.php:1183
-msgid "Log level"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
 msgstr ""
 
-#: ../../mod/admin.php:1232 ../../mod/contacts.php:409
-msgid "Update now"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:1233
-msgid "Close"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:1239
-msgid "FTP Host"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
 msgstr ""
 
-#: ../../mod/admin.php:1240
-msgid "FTP Path"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
 msgstr ""
 
-#: ../../mod/admin.php:1241
-msgid "FTP User"
+#: ../../mod/common.php:42
+msgid "Common Friends"
 msgstr ""
 
-#: ../../mod/admin.php:1242
-msgid "FTP Password"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
 msgstr ""
 
 #: ../../mod/contacts.php:85 ../../mod/contacts.php:165
index 147c4a58d0fb33036bbc8f88f3ab7634f4612572..881a9b2679fdb8f3f64afdf92e5b5af5a295714f 100644 (file)
@@ -46,9 +46,12 @@ function po2php_run(&$argv, &$argc) {
                        $match=Array();
                        preg_match("|nplurals=([0-9]*); *plural=(.*)[;\\\\]|", $l, $match);
                        $cond = str_replace('n','$n',$match[2]);
-                       $out .= 'function string_plural_select_' . $lang . '($n){'."\n";
+                       // define plural select function if not already defined
+                       $fnname = 'string_plural_select_' . $lang;
+                       $out .= 'if(! function_exists("'.$fnname.'")) {'."\n";
+                       $out .= 'function '. $fnname . '($n){'."\n";
                        $out .= '       return '.$cond.';'."\n";
-                       $out .= '}'."\n";
+                       $out .= '}}'."\n";
                }
                
 
index 6ea603c83c312ae4433e341eb1d08437be7a219a..554bba8472534e56822bfacd954532ca804112e3 100755 (executable)
@@ -1,37 +1,77 @@
 #!/bin/bash
-
 FULLPATH=$(dirname $(readlink -f "$0"))
-cd "$FULLPATH/../view/en/"
+
+ADDONMODE=
+ADDONNAME=
+if [ "$1" == "--addon" -o "$1" == "-a" ]
+then
+       ADDONMODE=1
+       if [ -z $2 ]; then echo -e "ERROR: missing addon name\n\nrun_xgettext.sh -a <addonname>"; exit 1; fi
+       ADDONNAME=$2
+       if [ ! -d "$FULLPATH/../addon/$ADDONNAME" ]; then echo "ERROR: addon '$ADDONNAME' not found"; exit 2; fi
+fi
+
+if [ $ADDONMODE ]
+then 
+       cd "$FULLPATH/../addon/$ADDONNAME"
+       mkdir -p "$FULLPATH/../addon/$ADDONNAME/lang/C"
+       OUTFILE="$FULLPATH/../addon/$ADDONNAME/lang/C/messages.po"
+       FINDSTARTDIR="."
+       FINDOPTS=
+else
+       cd "$FULLPATH/../view/en/"
+       OUTFILE="$FULLPATH/messages.po"
+       FINDSTARTDIR="../../"
+       # skip addon folder
+       FINDOPTS="-wholename */addon -prune -o"
+fi
 
 F9KVERSION=$(sed -n "s/.*'FRIENDICA_VERSION'.*'\([0-9.]*\)'.*/\1/p" ../../boot.php);
 
 echo "Friendica version $F9KVERSION"
 
 OPTS=
-OUTFILE="$FULLPATH/messages.po"
-if [ "" != "$1" ]
-then
-       OUTFILE="$(readlink -f ${FULLPATH}/$1)"
-       if [ -e "$OUTFILE" ]
-       then
-               echo "join extracted strings"
-               OPTS="-j"
-       fi
-fi
+
+#if [ "" != "$1" ]
+#then
+#      OUTFILE="$(readlink -f ${FULLPATH}/$1)"
+#      if [ -e "$OUTFILE" ]
+#      then
+#              echo "join extracted strings"
+#              OPTS="-j"
+#      fi
+#fi
 
 KEYWORDS="-k -kt -ktt:1,2"
 
 echo "extract strings to $OUTFILE.."
-find ../../ -name "*.php" | xargs xgettext $KEYWORDS $OPTS -o "$OUTFILE" --from-code=UTF-8
+rm "$OUTFILE"; touch "$OUTFILE"
+for f in $(find "$FINDSTARTDIR" $FINDOPTS -name "*.php" -type f)
+do
+       if [ ! -d "$f" ]
+       then
+               xgettext $KEYWORDS $OPTS -j -o "$OUTFILE" --from-code=UTF-8 "$f"
+       fi
+done
 
 echo "setup base info.."
-sed -i "s/SOME DESCRIPTIVE TITLE./FRIENDICA Distributed Social Network/g" "$OUTFILE"
-sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2010, 2011 the Friendica Project/g" "$OUTFILE"
-sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR./Mike Macgirvin, 2010/g" "$OUTFILE"
-sed -i "s/PACKAGE VERSION/$F9KVERSION/g" "$OUTFILE"
-sed -i "s/PACKAGE/Friendica/g" "$OUTFILE"
-sed -i "s/CHARSET/UTF-8/g" "$OUTFILE"
-sed -i "s/^\"Plural-Forms/#\"Plural-Forms/g" "$OUTFILE"
-
+if [ $ADDONMODE ]
+then 
+       sed -i "s/SOME DESCRIPTIVE TITLE./ADDON $ADDONNAME/g" "$OUTFILE"
+       sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER//g" "$OUTFILE"
+       sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.//g" "$OUTFILE"
+       sed -i "s/PACKAGE VERSION//g" "$OUTFILE"
+       sed -i "s/PACKAGE/Friendica $ADDONNAME addon/g" "$OUTFILE"
+       sed -i "s/CHARSET/UTF-8/g" "$OUTFILE"
+       sed -i "s/^\"Plural-Forms/#\"Plural-Forms/g" "$OUTFILE"
+else
+       sed -i "s/SOME DESCRIPTIVE TITLE./FRIENDICA Distributed Social Network/g" "$OUTFILE"
+       sed -i "s/YEAR THE PACKAGE'S COPYRIGHT HOLDER/2010, 2011, 2012, 2013 the Friendica Project/g" "$OUTFILE"
+       sed -i "s/FIRST AUTHOR <EMAIL@ADDRESS>, YEAR./Mike Macgirvin, 2010/g" "$OUTFILE"
+       sed -i "s/PACKAGE VERSION/$F9KVERSION/g" "$OUTFILE"
+       sed -i "s/PACKAGE/Friendica/g" "$OUTFILE"
+       sed -i "s/CHARSET/UTF-8/g" "$OUTFILE"
+       sed -i "s/^\"Plural-Forms/#\"Plural-Forms/g" "$OUTFILE"
+fi
 
 echo "done."
index 20a0839fee2ab67ac7f0d84ee5ca33c645e84ea9..0d3d451b1c459e4ee89b2018020adb91d6709a6f 100644 (file)
@@ -85,7 +85,7 @@
        {{ inc field_checkbox.tpl with $field=$thread_allow }}{{ endinc }}
        {{ inc field_checkbox.tpl with $field=$newuser_private }}{{ endinc }}
        {{ inc field_checkbox.tpl with $field=$enotify_no_content }}{{ endinc }}
-       
+       {{ inc field_checkbox.tpl with $field=$private_addons }}{{ endinc }}    
        <div class="submit"><input type="submit" name="page_site" value="$submit" /></div>
        
        <h3>$advanced</h3>
index f1da4762e2ffd9a0288e8abe1b72bd8c6c56e213..31e3e7e223995f6c8e670685e2cc95f5ab589df7 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_ca")) {
 function string_plural_select_ca($n){
        return ($n != 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Publicat amb éxit.";
 $a->strings["[Embedded content - reload page to view]"] = "[Contingut embegut - recarrega la pàgina per a veure-ho]";
index 89d81837f099fcd802bf264162d38e0313e92b7c..c3ddcc685397ca3d4f2da5a8e4839bfb8c349a28 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_cs")) {
 function string_plural_select_cs($n){
        return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
-}
+}}
 ;
 $a->strings["Post successful."] = "Příspěvek úspěšně odeslán";
 $a->strings["[Embedded content - reload page to view]"] = "[Vložený obsah - obnovení stránky pro zobrazení]";
index 7ab0dc7eeea0836402725bc504e8309bfaa43369..fa7ae41fea6f7362b1ff7bbad977e765cb5d4870 100644 (file)
@@ -1,5 +1,5 @@
 # FRIENDICA Distributed Social Network
-# Copyright (C) 2010, 2011 the Friendica Project
+# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
@@ -9,7 +9,7 @@
 #   <friends@dostmusik.de>, 2012.
 #   <greeneyedred@googlemail.com>, 2012.
 # Hauke Zühl <hzuehl@phone-talk.de>, 2012.
-#   <hzuehl@phone-talk.de>, 20112012.
+#   <hzuehl@phone-talk.de>, 2011-2012.
 #   <leberwurscht@hoegners.de>, 2012.
 #   <marmor69@web.de>, 2012.
 # Martin Schmitt <mas@scsy.de>, 2012.
@@ -25,8 +25,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-02-22 00:00-0800\n"
-"PO-Revision-Date: 2013-02-23 18:52+0000\n"
+"POT-Creation-Date: 2013-02-28 10:13-0500\n"
+"PO-Revision-Date: 2013-03-01 15:21+0000\n"
 "Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
 "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
 "MIME-Version: 1.0\n"
@@ -35,7550 +35,4901 @@ msgstr ""
 "Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../addon.old/altpager/altpager.php:46
-#: ../../addon/altpager/altpager.php:46
-msgid "Altpager settings updated."
-msgstr "Altpager Einstellungen sind aktualisiert."
-
-#: ../../addon.old/altpager/altpager.php:79
-#: ../../addon/altpager/altpager.php:83
-msgid "Alternate Pagination Setting"
-msgstr "Alternative Seitenumbruch Einstellung"
-
-#: ../../addon.old/altpager/altpager.php:81
-#: ../../addon/altpager/altpager.php:85
-msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
-msgstr "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?"
-
-#: ../../addon.old/altpager/altpager.php:87 ../../addon.old/bg/bg.php:90
-#: ../../addon.old/blackout/blackout.php:98
-#: ../../addon.old/blockem/blockem.php:57
-#: ../../addon.old/blogger/blogger.php:102
-#: ../../addon.old/drpost/drpost.php:110 ../../addon.old/dwpost/dwpost.php:93
-#: ../../addon.old/editplain/editplain.php:84
-#: ../../addon.old/facebook/facebook.php:619
-#: ../../addon.old/fbpost/fbpost.php:226
-#: ../../addon.old/forumlist/forumlist.php:175
-#: ../../addon.old/fromapp/fromapp.php:77
-#: ../../addon.old/fromgplus/fromgplus.php:40
-#: ../../addon.old/geonames/geonames.php:187 ../../addon.old/gnot/gnot.php:88
-#: ../../addon.old/gravatar/gravatar.php:95
-#: ../../addon.old/group_text/group_text.php:84
-#: ../../addon.old/ijpost/ijpost.php:93
-#: ../../addon.old/impressum/impressum.php:83 ../../addon.old/irc/irc.php:55
-#: ../../addon.old/jappixmini/jappixmini.php:307
-#: ../../addon.old/libertree/libertree.php:90
-#: ../../addon.old/libravatar/libravatar.php:99
-#: ../../addon.old/ljpost/ljpost.php:93 ../../addon.old/mathjax/mathjax.php:42
-#: ../../addon.old/notimeline/notimeline.php:64
-#: ../../addon.old/nsfw/nsfw.php:88
-#: ../../addon.old/numfriends/numfriends.php:85
-#: ../../addon.old/oembed.old/oembed.php:41
-#: ../../addon.old/openstreetmap/openstreetmap.php:70
-#: ../../addon.old/page/page.php:211
-#: ../../addon.old/pageheader/pageheader.php:55
-#: ../../addon.old/piwik/piwik.php:89 ../../addon.old/planets/planets.php:158
-#: ../../addon.old/posterous/posterous.php:103
-#: ../../addon.old/qcomment/qcomment.php:61
-#: ../../addon.old/randplace/randplace.php:177
-#: ../../addon.old/showmore/showmore.php:48
-#: ../../addon.old/snautofollow/snautofollow.php:64
-#: ../../addon.old/startpage/startpage.php:92
-#: ../../addon.old/statusnet/statusnet.php:278
-#: ../../addon.old/statusnet/statusnet.php:292
-#: ../../addon.old/statusnet/statusnet.php:318
-#: ../../addon.old/statusnet/statusnet.php:325
-#: ../../addon.old/statusnet/statusnet.php:353
-#: ../../addon.old/statusnet/statusnet.php:576
-#: ../../addon.old/tumblr/tumblr.php:90
-#: ../../addon.old/twitter/twitter.php:180
-#: ../../addon.old/twitter/twitter.php:209
-#: ../../addon.old/twitter/twitter.php:394
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
-#: ../../addon.old/wppost/wppost.php:110 ../../addon.old/yourls/yourls.php:76
-#: ../../addon/altpager/altpager.php:91 ../../addon/altpager/altpager.php:98
-#: ../../addon/blackout/blackout.php:99 ../../addon/blockem/blockem.php:57
-#: ../../addon/blogger/blogger.php:102 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/editplain/editplain.php:84
-#: ../../addon/facebook/facebook.php:621 ../../addon/fbpost/fbpost.php:280
-#: ../../addon/forumlist/forumlist.php:178 ../../addon/fromapp/fromapp.php:77
-#: ../../addon/fromgplus/fromgplus.php:44
-#: ../../addon/geonames/geonames.php:187 ../../addon/gnot/gnot.php:88
-#: ../../addon/gravatar/gravatar.php:95
-#: ../../addon/group_text/group_text.php:84 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/impressum/impressum.php:83 ../../addon/irc/irc.php:55
-#: ../../addon/jappixmini/jappixmini.php:307
-#: ../../addon/libertree/libertree.php:90
-#: ../../addon/libravatar/libravatar.php:99 ../../addon/ljpost/ljpost.php:93
-#: ../../addon/mathjax/mathjax.php:42 ../../addon/notimeline/notimeline.php:64
-#: ../../addon/nsfw/nsfw.php:88 ../../addon/numfriends/numfriends.php:85
-#: ../../addon/openstreetmap/openstreetmap.php:94
-#: ../../addon/page/page.php:211 ../../addon/pageheader/pageheader.php:55
-#: ../../addon/piwik/piwik.php:89 ../../addon/planets/planets.php:158
-#: ../../addon/posterous/posterous.php:103
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/randplace/randplace.php:177
-#: ../../addon/remote_permissions/remote_permissions.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:196
-#: ../../addon/showmore/showmore.php:48
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/startpage/startpage.php:92
-#: ../../addon/statusnet/statusnet.php:290
-#: ../../addon/statusnet/statusnet.php:304
-#: ../../addon/statusnet/statusnet.php:330
-#: ../../addon/statusnet/statusnet.php:337
-#: ../../addon/statusnet/statusnet.php:374
-#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
-#: ../../addon/twitter/twitter.php:191 ../../addon/twitter/twitter.php:229
-#: ../../addon/twitter/twitter.php:556
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
-#: ../../mod/profiles.php:626 ../../mod/admin.php:475 ../../mod/admin.php:744
-#: ../../mod/admin.php:882 ../../mod/admin.php:1082 ../../mod/admin.php:1169
-#: ../../mod/contacts.php:386 ../../mod/settings.php:560
-#: ../../mod/settings.php:670 ../../mod/settings.php:739
-#: ../../mod/settings.php:811 ../../mod/settings.php:1037
-#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
-#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/invite.php:140
-#: ../../mod/localtime.php:45 ../../mod/manage.php:110
-#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
-#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
-#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
-#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
-#: ../../mod/content.php:733 ../../object/Item.php:643
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
-#: ../../view/theme/quattro/config.php:64
-msgid "Submit"
-msgstr "Senden"
-
-#: ../../addon.old/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr "Bg Einstellungen sind aktualisiert."
-
-#: ../../addon.old/bg/bg.php:82
-msgid "Bg Settings"
-msgstr "Bg Einstellungen"
-
-#: ../../addon.old/bg/bg.php:84 ../../addon.old/numfriends/numfriends.php:79
-#: ../../addon/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden"
-
-#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
-msgstr "\"Blockem\"-Einstellungen"
-
-#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
-msgstr "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)"
-
-#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
-msgstr "BLOCKEM-Einstellungen gesichert."
-
-#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
-#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr "%s blockiert - Zum Öffnen/Schließen klicken"
-
-#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr "Autor freischalten"
-
-#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
-msgid "Block Author"
-msgstr "Autor blockieren"
-
-#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
-msgid "blockem settings updated"
-msgstr "blockem Einstellungen aktualisiert"
-
-#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
-msgid "Post to blogger"
-msgstr "Auf Blogger posten"
-
-#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
-msgid "Blogger Post Settings"
-msgstr "Einstellungen zum posten auf Blogger"
-
-#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
-msgstr "Blogger-Post-Plugin aktivieren"
-
-#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
-msgid "Blogger username"
-msgstr "Blogger-Benutzername"
-
-#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
-msgid "Blogger password"
-msgstr "Blogger-Passwort"
-
-#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
-msgid "Blogger API URL"
-msgstr "Blogger-API-URL"
-
-#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
-msgid "Post to Blogger by default"
-msgstr "Standardmäßig auf Blogger posten"
-
-#: ../../addon.old/blogger/blogger.php:172
-#: ../../addon.old/drpost/drpost.php:184
-#: ../../addon.old/posterous/posterous.php:189
-#: ../../addon.old/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
-#: ../../addon/posterous/posterous.php:189 ../../addon/wppost/wppost.php:201
-msgid "Post from Friendica"
-msgstr "Beitrag via Friendica"
-
-#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr "Fehlerreport erstellen"
-
-#: ../../addon.old/communityhome/twillingham/communityhome.php:28
-#: ../../addon.old/communityhome/twillingham/communityhome.php:34
-#: ../../addon.old/communityhome/communityhome.php:28
-#: ../../addon.old/communityhome/communityhome.php:34
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
-#: ../../boot.php:1058
-msgid "Login"
-msgstr "Anmeldung"
-
-#: ../../addon.old/communityhome/twillingham/communityhome.php:29
-#: ../../addon.old/communityhome/communityhome.php:29
-#: ../../addon/communityhome/communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
-
-#: ../../addon.old/communityhome/twillingham/communityhome.php:38
-#: ../../addon.old/communityhome/communityhome.php:38
-#: ../../addon/communityhome/communityhome.php:39
-msgid "Latest users"
-msgstr "Letzte Benutzer"
-
-#: ../../addon.old/communityhome/twillingham/communityhome.php:81
-#: ../../addon.old/communityhome/communityhome.php:81
-#: ../../addon/communityhome/communityhome.php:84
-msgid "Most active users"
-msgstr "Aktivste Nutzer"
-
-#: ../../addon.old/communityhome/communityhome.php:98
-#: ../../addon/communityhome/communityhome.php:102
-msgid "Latest photos"
-msgstr "Neueste Fotos"
-
-#: ../../addon.old/communityhome/communityhome.php:110
-#: ../../addon/communityhome/communityhome.php:115 ../../mod/photos.php:59
-#: ../../mod/photos.php:154 ../../mod/photos.php:1058
-#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
-#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
-#: ../../view/theme/diabook/theme.php:492
-msgid "Contact Photos"
-msgstr "Kontaktbilder"
-
-#: ../../addon.old/communityhome/communityhome.php:111
-#: ../../addon/communityhome/communityhome.php:116 ../../include/user.php:325
-#: ../../include/user.php:332 ../../include/user.php:339
-#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
-#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
-msgid "Profile Photos"
-msgstr "Profilbilder"
-
-#: ../../addon.old/communityhome/communityhome.php:133
-#: ../../addon/communityhome/communityhome.php:141
-msgid "Latest likes"
-msgstr "Neueste Favoriten"
-
-#: ../../addon.old/communityhome/communityhome.php:155
-#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1554
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../view/theme/diabook/theme.php:456
-msgid "event"
-msgstr "Veranstaltung"
-
-#: ../../addon.old/communityhome/communityhome.php:158
-#: ../../addon.old/communityhome/communityhome.php:167
-#: ../../addon.old/facebook/facebook.php:1598
-#: ../../addon/communityhome/communityhome.php:166
-#: ../../addon/communityhome/communityhome.php:175
-#: ../../addon/facebook/facebook.php:1600 ../../include/diaspora.php:1874
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
-#: ../../mod/like.php:322 ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468
-msgid "status"
-msgstr "Status"
-
-#: ../../addon.old/communityhome/communityhome.php:163
-#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1556
-#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
-#: ../../include/conversation.php:254 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../mod/like.php:151
-#: ../../view/theme/diabook/theme.php:464
-msgid "photo"
-msgstr "Foto"
-
-#: ../../addon.old/communityhome/communityhome.php:172
-#: ../../addon.old/facebook/facebook.php:1602
-#: ../../addon/communityhome/communityhome.php:180
-#: ../../addon/facebook/facebook.php:1604 ../../include/diaspora.php:1890
-#: ../../include/conversation.php:137 ../../mod/like.php:168
-#: ../../view/theme/diabook/theme.php:473
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s"
-
-#: ../../addon.old/communityhome/communityhome.php:179
-#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Willkommen zu %s"
-
-#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
-#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
-msgid "Private Events"
-msgstr "Privater Termin"
-
-#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
-#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
-msgid "Private Addressbooks"
-msgstr "Private Adressbücher"
-
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
-#: ../../addon/dav/common/wdcal_backend.inc.php:92
-#: ../../addon/dav/common/wdcal_backend.inc.php:166
-#: ../../addon/dav/common/wdcal_backend.inc.php:178
-#: ../../addon/dav/common/wdcal_backend.inc.php:206
-#: ../../addon/dav/common/wdcal_backend.inc.php:214
-#: ../../addon/dav/common/wdcal_backend.inc.php:229
-msgid "No access"
-msgstr "Kein Zugriff"
-
-#: ../../addon.old/dav/common/wdcal_configuration.php:148
-#: ../../addon/dav/common/wdcal_configuration.php:148
-msgid "U.S. Time Format (mm/dd/YYYY)"
-msgstr "U.S. Datumsformat (mm/dd/YYYY)"
-
-#: ../../addon.old/dav/common/wdcal_configuration.php:243
-#: ../../addon/dav/common/wdcal_configuration.php:243
-msgid "German Time Format (dd.mm.YYYY)"
-msgstr "Deutsches Datumsformat (dd.mm.YYYY)"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
-#: ../../addon/dav/common/wdcal_edit.inc.php:30
-#: ../../addon/dav/common/wdcal_edit.inc.php:738
-msgid "Could not open component for editing"
-msgstr "Kalender-Editierfunktion konnte nicht geöffnet werden"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
-#: ../../addon.old/dav/friendica/layout.fnk.php:143
-#: ../../addon.old/dav/friendica/layout.fnk.php:422
-#: ../../addon/dav/common/wdcal_edit.inc.php:140
-#: ../../addon/dav/friendica/layout.fnk.php:143
-#: ../../addon/dav/friendica/layout.fnk.php:422
-msgid "Go back to the calendar"
-msgstr "Zurück zum Kalender"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
-#: ../../addon/dav/common/wdcal_edit.inc.php:144
-msgid "Event data"
-msgstr "Veranstaltungsdetails"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
-#: ../../addon.old/dav/friendica/main.php:239
-#: ../../addon/dav/common/wdcal_edit.inc.php:146
-#: ../../addon/dav/friendica/main.php:239
-msgid "Calendar"
-msgstr "Kalender"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
-#: ../../addon/dav/common/wdcal_edit.inc.php:163
-msgid "Special color"
-msgstr "Spezielle Farbe"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
-#: ../../addon/dav/common/wdcal_edit.inc.php:169
-msgid "Subject"
-msgstr "Betreff:"
+#: ../../object/Item.php:106 ../../mod/photos.php:1351
+#: ../../mod/content.php:643
+msgid "Private Message"
+msgstr "Private Nachricht"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
-#: ../../addon/dav/common/wdcal_edit.inc.php:173
-msgid "Starts"
-msgstr "Beginnt"
+#: ../../object/Item.php:110 ../../mod/editpost.php:109
+#: ../../mod/settings.php:622 ../../mod/content.php:751
+msgid "Edit"
+msgstr "Bearbeiten"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
-#: ../../addon/dav/common/wdcal_edit.inc.php:178
-msgid "Ends"
-msgstr "Endet"
+#: ../../object/Item.php:119 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../include/conversation.php:587
+msgid "Select"
+msgstr "Auswählen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
-#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Wohnort"
+#: ../../object/Item.php:120 ../../mod/admin.php:755 ../../mod/photos.php:1637
+#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/content.php:462 ../../mod/content.php:764
+#: ../../include/conversation.php:588
+msgid "Delete"
+msgstr "Löschen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
-#: ../../addon/dav/common/wdcal_edit.inc.php:185
-msgid "Description"
-msgstr "Beschreibung"
+#: ../../object/Item.php:123 ../../mod/content.php:786
+msgid "save to folder"
+msgstr "In Ordner speichern"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
-#: ../../addon/dav/common/wdcal_edit.inc.php:188
-msgid "Recurrence"
-msgstr "Wiederholungen:"
+#: ../../object/Item.php:202 ../../mod/content.php:776
+msgid "add star"
+msgstr "markieren"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
-#: ../../addon/dav/common/wdcal_edit.inc.php:190
-msgid "Frequency"
-msgstr "Frequenz"
+#: ../../object/Item.php:203 ../../mod/content.php:777
+msgid "remove star"
+msgstr "Markierung entfernen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
-#: ../../addon/dav/common/wdcal_edit.inc.php:191
-#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
-#: ../../mod/settings.php:732 ../../mod/settings.php:737
-msgid "None"
-msgstr "Keine"
+#: ../../object/Item.php:204 ../../mod/content.php:778
+msgid "toggle star status"
+msgstr "Markierung umschalten"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
-#: ../../addon/dav/common/wdcal_edit.inc.php:194
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Täglich"
+#: ../../object/Item.php:207 ../../mod/content.php:781
+msgid "starred"
+msgstr "markiert"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
-#: ../../addon/dav/common/wdcal_edit.inc.php:197
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Wöchentlich"
+#: ../../object/Item.php:212 ../../mod/content.php:782
+msgid "add tag"
+msgstr "Tag hinzufügen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
-#: ../../addon/dav/common/wdcal_edit.inc.php:200
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Monatlich"
+#: ../../object/Item.php:223 ../../mod/photos.php:1529
+#: ../../mod/content.php:707
+msgid "I like this (toggle)"
+msgstr "Ich mag das (toggle)"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
-#: ../../addon/dav/common/wdcal_edit.inc.php:203
-msgid "Yearly"
-msgstr "Jährlich"
+#: ../../object/Item.php:223 ../../mod/content.php:707
+msgid "like"
+msgstr "mag ich"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
-#: ../../addon/dav/common/wdcal_edit.inc.php:214
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "Tage"
+#: ../../object/Item.php:224 ../../mod/photos.php:1530
+#: ../../mod/content.php:708
+msgid "I don't like this (toggle)"
+msgstr "Ich mag das nicht (toggle)"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
-#: ../../addon/dav/common/wdcal_edit.inc.php:215
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "Wochen"
+#: ../../object/Item.php:224 ../../mod/content.php:708
+msgid "dislike"
+msgstr "mag ich nicht"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
-#: ../../addon/dav/common/wdcal_edit.inc.php:216
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "Monate"
+#: ../../object/Item.php:226 ../../mod/content.php:710
+msgid "Share this"
+msgstr "Weitersagen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
-#: ../../addon/dav/common/wdcal_edit.inc.php:217
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "Jahre"
+#: ../../object/Item.php:226 ../../mod/content.php:710
+msgid "share"
+msgstr "Teilen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-msgid "Interval"
-msgstr "Intervall"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-msgid "All %select% %time%"
-msgstr "Jeden %select% %time%"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
-#: ../../addon/dav/common/wdcal_edit.inc.php:222
-#: ../../addon/dav/common/wdcal_edit.inc.php:260
-#: ../../addon/dav/common/wdcal_edit.inc.php:481
-msgid "Days"
-msgstr "Tage"
+#: ../../object/Item.php:288 ../../include/conversation.php:639
+msgid "Categories:"
+msgstr "Kategorien"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
-#: ../../addon/dav/common/wdcal_edit.inc.php:231
-#: ../../addon/dav/common/wdcal_edit.inc.php:254
-#: ../../addon/dav/common/wdcal_edit.inc.php:270
-#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:1015
-msgid "Sunday"
-msgstr "Sonntag"
+#: ../../object/Item.php:289 ../../include/conversation.php:640
+msgid "Filed under:"
+msgstr "Abgelegt unter:"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
-#: ../../addon/dav/common/wdcal_edit.inc.php:235
-#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:1015
-msgid "Monday"
-msgstr "Montag"
+#: ../../object/Item.php:297 ../../object/Item.php:298
+#: ../../mod/content.php:495 ../../mod/content.php:875
+#: ../../mod/content.php:876 ../../include/conversation.php:627
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Das Profil von %s auf %s betrachten."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
-#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:1015
-msgid "Tuesday"
-msgstr "Dienstag"
+#: ../../object/Item.php:299 ../../mod/content.php:877
+msgid "to"
+msgstr "zu"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
-#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:1015
-msgid "Wednesday"
-msgstr "Mittwoch"
+#: ../../object/Item.php:300
+msgid "via"
+msgstr "via"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
-#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:1015
-msgid "Thursday"
-msgstr "Donnerstag"
+#: ../../object/Item.php:301 ../../mod/content.php:878
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
-#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:1015
-msgid "Friday"
-msgstr "Freitag"
+#: ../../object/Item.php:302 ../../mod/content.php:879
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
-#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:1015
-msgid "Saturday"
-msgstr "Samstag"
+#: ../../object/Item.php:311 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../include/conversation.php:647
+#, php-format
+msgid "%s from %s"
+msgstr "%s von %s"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
-#: ../../addon/dav/common/wdcal_edit.inc.php:297
-msgid "First day of week:"
-msgstr "Erster Tag der Woche"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
-#: ../../addon/dav/common/wdcal_edit.inc.php:350
-#: ../../addon/dav/common/wdcal_edit.inc.php:373
-msgid "Day of month"
-msgstr "Tag des Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
-#: ../../addon/dav/common/wdcal_edit.inc.php:354
-msgid "#num#th of each month"
-msgstr "#num#ten jedes Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
-#: ../../addon/dav/common/wdcal_edit.inc.php:357
-msgid "#num#th-last of each month"
-msgstr "letzten #num#ten jedes Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
-#: ../../addon/dav/common/wdcal_edit.inc.php:360
-msgid "#num#th #wkday# of each month"
-msgstr "jeden #num#ten #wkday# eines Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
-#: ../../addon/dav/common/wdcal_edit.inc.php:363
-msgid "#num#th-last #wkday# of each month"
-msgstr "jeden #num#ten letzten #wkday# eines Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
-#: ../../addon.old/dav/friendica/layout.fnk.php:255
-#: ../../addon/dav/common/wdcal_edit.inc.php:372
-#: ../../addon/dav/friendica/layout.fnk.php:255
-msgid "Month"
-msgstr "Monat"
+#: ../../object/Item.php:329 ../../object/Item.php:642
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732 ../../boot.php:651
+msgid "Comment"
+msgstr "Kommentar"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
-#: ../../addon/dav/common/wdcal_edit.inc.php:377
-msgid "#num#th of the given month"
-msgstr "#num#ten des Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
-#: ../../addon/dav/common/wdcal_edit.inc.php:380
-msgid "#num#th-last of the given month"
-msgstr "letzten #num#ten des Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
-#: ../../addon/dav/common/wdcal_edit.inc.php:383
-msgid "#num#th #wkday# of the given month"
-msgstr "jeden #num#ten eines Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
-#: ../../addon/dav/common/wdcal_edit.inc.php:386
-msgid "#num#th-last #wkday# of the given month"
-msgstr "jeden #num#ten letzten eines Monats"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
-#: ../../addon/dav/common/wdcal_edit.inc.php:413
-msgid "Repeat until"
-msgstr "Wiederholungen"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
-#: ../../addon/dav/common/wdcal_edit.inc.php:417
-msgid "Infinite"
-msgstr "unendlich"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
-#: ../../addon/dav/common/wdcal_edit.inc.php:420
-msgid "Until the following date"
-msgstr "bis zum folgenden Datum"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
-#: ../../addon/dav/common/wdcal_edit.inc.php:423
-msgid "Number of times"
-msgstr "Bestimmte Anzahl von Wiederholungen"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
-#: ../../addon/dav/common/wdcal_edit.inc.php:429
-msgid "Exceptions"
-msgstr "Ausnahmen"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
-#: ../../addon/dav/common/wdcal_edit.inc.php:432
-msgid "none"
-msgstr "keine"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
-#: ../../addon/dav/common/wdcal_edit.inc.php:449
-msgid "Notification"
-msgstr "Benachrichtigung"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
-#: ../../addon/dav/common/wdcal_edit.inc.php:466
-msgid "Notify by"
-msgstr "Benarchrichtigungsmethode"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
-#: ../../addon/dav/common/wdcal_edit.inc.php:468 ../../mod/delegate.php:130
-#: ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Entfernen"
+#: ../../object/Item.php:332 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1532
+#: ../../mod/content.php:522 ../../mod/content.php:906
+#: ../../include/conversation.php:664 ../../include/conversation.php:1060
+msgid "Please wait"
+msgstr "Bitte warten"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
-#: ../../addon/dav/common/wdcal_edit.inc.php:469
-msgid "E-Mail"
-msgstr "E-Mail"
+#: ../../object/Item.php:352 ../../mod/content.php:626
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d Kommentar"
+msgstr[1] "%d Kommentare"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
-#: ../../addon/dav/common/wdcal_edit.inc.php:470
-msgid "On Friendica / Display"
-msgstr "Bei Friendica / Anzeige"
+#: ../../object/Item.php:354 ../../object/Item.php:367
+#: ../../mod/content.php:628 ../../include/text.php:1560
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "Kommentar"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
-#: ../../addon/dav/common/wdcal_edit.inc.php:474
-msgid "Time"
-msgstr "Zeit"
+#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652
+#: ../../include/contact_widgets.php:204
+msgid "show more"
+msgstr "mehr anzeigen"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
-#: ../../addon/dav/common/wdcal_edit.inc.php:478
-msgid "Hours"
-msgstr "Stunden"
+#: ../../object/Item.php:640 ../../mod/photos.php:1549
+#: ../../mod/photos.php:1593 ../../mod/photos.php:1676
+#: ../../mod/content.php:730
+msgid "This is you"
+msgstr "Das bist du"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
-#: ../../addon/dav/common/wdcal_edit.inc.php:479
-msgid "Minutes"
-msgstr "Minuten"
+#: ../../object/Item.php:643 ../../mod/fsuggest.php:107
+#: ../../mod/admin.php:478 ../../mod/admin.php:748 ../../mod/admin.php:887
+#: ../../mod/admin.php:1087 ../../mod/admin.php:1174 ../../mod/message.php:335
+#: ../../mod/message.php:564 ../../mod/events.php:478
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/contacts.php:386 ../../mod/invite.php:140
+#: ../../mod/settings.php:560 ../../mod/settings.php:670
+#: ../../mod/settings.php:739 ../../mod/settings.php:811
+#: ../../mod/settings.php:1037 ../../mod/profiles.php:626
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/group.php:87
+#: ../../mod/content.php:733 ../../mod/mood.php:137 ../../mod/crepair.php:166
+#: ../../view/theme/diabook/theme.php:642
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
+msgid "Submit"
+msgstr "Senden"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
-#: ../../addon/dav/common/wdcal_edit.inc.php:480
-msgid "Seconds"
-msgstr "Sekunden"
+#: ../../object/Item.php:644 ../../mod/content.php:734
+msgid "Bold"
+msgstr "Fett"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
-#: ../../addon/dav/common/wdcal_edit.inc.php:482
-msgid "Weeks"
-msgstr "Wochen"
+#: ../../object/Item.php:645 ../../mod/content.php:735
+msgid "Italic"
+msgstr "Kursiv"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
-#: ../../addon/dav/common/wdcal_edit.inc.php:485
-msgid "before the"
-msgstr "vor dem"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
-#: ../../addon/dav/common/wdcal_edit.inc.php:486
-msgid "start of the event"
-msgstr "Beginn des Termins"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
-#: ../../addon/dav/common/wdcal_edit.inc.php:487
-msgid "end of the event"
-msgstr "Ende des Termins"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
-#: ../../addon/dav/common/wdcal_edit.inc.php:492
-msgid "Add a notification"
-msgstr "Benachrichtigung hinzufügen"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
-#: ../../addon/dav/common/wdcal_edit.inc.php:687
-msgid "The event #name# will start at #date"
-msgstr "Der Termin #name# wird am #date anfangen"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
-#: ../../addon/dav/common/wdcal_edit.inc.php:696
-msgid "#name# is about to begin."
-msgstr "#name# beginnt demnächst."
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
-#: ../../addon/dav/common/wdcal_edit.inc.php:769
-msgid "Saved"
-msgstr "Gespeichert"
-
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
-msgid "Private Calendar"
-msgstr "Privater Kalender"
-
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
-msgid "Friendica Events: Mine"
-msgstr "Meine Friendica-Veranstaltungen"
-
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
-msgid "Friendica Events: Contacts"
-msgstr "Friendica Veranstaltungen meiner Kontakte"
-
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
-msgid "Private Addresses"
-msgstr "Private Adressen"
-
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
-msgid "Friendica Contacts"
-msgstr "Friendica Kontakte"
-
-#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-msgid "Friendica-Native events"
-msgstr "Friendica Veranstaltungen"
-
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-msgid "Friendica-Contacts"
-msgstr "Friendica-Kontakte"
-
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-msgid "Your Friendica-Contacts"
-msgstr "Deine Friendica-Kontakte"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:99
-#: ../../addon.old/dav/friendica/layout.fnk.php:136
-#: ../../addon/dav/friendica/layout.fnk.php:99
-#: ../../addon/dav/friendica/layout.fnk.php:136
-msgid ""
-"Something went wrong when trying to import the file. Sorry. Maybe some "
-"events were imported anyway."
-msgstr "Entschuldigung. Bei dem Versuch die Datei zu importieren ist etwas schief gelaufen. Vielleicht wurden aber einige der Termine dennoch importiert."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:131
-#: ../../addon/dav/friendica/layout.fnk.php:131
-msgid "Something went wrong when trying to import the file. Sorry."
-msgstr "Entschuldigung. Beim Importieren der Datei ist etwas schief gelaufen."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:134
-#: ../../addon/dav/friendica/layout.fnk.php:134
-msgid "The ICS-File has been imported."
-msgstr "Die ICS-Datei wurde importoert."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:138
-#: ../../addon/dav/friendica/layout.fnk.php:138
-msgid "No file was uploaded."
-msgstr "Es wurde keine Datei geladen."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:147
-#: ../../addon/dav/friendica/layout.fnk.php:147
-msgid "Import a ICS-file"
-msgstr "Importiere eine ICS-Datei"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:150
-#: ../../addon/dav/friendica/layout.fnk.php:150
-msgid "ICS-File"
-msgstr "ICS-Datei"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:151
-#: ../../addon/dav/friendica/layout.fnk.php:151
-msgid "Overwrite all #num# existing events"
-msgstr "Überschreibe alle #num# existierenden Einträge"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:152
-#: ../../addon/dav/friendica/layout.fnk.php:152
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Hochladen"
+#: ../../object/Item.php:646 ../../mod/content.php:736
+msgid "Underline"
+msgstr "Unterstrichen"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon.old/mathjax/mathjax.php:36
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
-#: ../../mod/admin.php:841 ../../mod/admin.php:1049 ../../mod/settings.php:74
-#: ../../mod/uexport.php:48 ../../mod/newmember.php:22
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658
-msgid "Settings"
-msgstr "Einstellungen"
+#: ../../object/Item.php:647 ../../mod/content.php:737
+msgid "Quote"
+msgstr "Zitat"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon/dav/friendica/layout.fnk.php:225 ../../include/nav.php:113
-#: ../../mod/help.php:84
-msgid "Help"
-msgstr "Hilfe"
+#: ../../object/Item.php:648 ../../mod/content.php:738
+msgid "Code"
+msgstr "Code"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:228
-#: ../../addon/dav/friendica/layout.fnk.php:228
-msgid "New event"
-msgstr "Neue Veranstaltung"
+#: ../../object/Item.php:649 ../../mod/content.php:739
+msgid "Image"
+msgstr "Bild"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:232
-#: ../../addon/dav/friendica/layout.fnk.php:232
-msgid "Today"
-msgstr "Heute"
+#: ../../object/Item.php:650 ../../mod/content.php:740
+msgid "Link"
+msgstr "Verweis"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:241
-#: ../../addon/dav/friendica/layout.fnk.php:241
-msgid "Day"
-msgstr "Tag"
+#: ../../object/Item.php:651 ../../mod/content.php:741
+msgid "Video"
+msgstr "Video"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:248
-#: ../../addon/dav/friendica/layout.fnk.php:248
-msgid "Week"
-msgstr "Woche"
+#: ../../object/Item.php:652 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../include/conversation.php:1077
+msgid "Preview"
+msgstr "Vorschau"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:260
-#: ../../addon/dav/friendica/layout.fnk.php:260
-msgid "Reload"
-msgstr "Neu Laden"
+#: ../../index.php:227 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Nicht gefunden"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:263
-#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
-msgid "Previous"
-msgstr "Vorherige"
+#: ../../index.php:230 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Seite nicht gefunden."
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:266
-#: ../../addon/dav/friendica/layout.fnk.php:266 ../../mod/events.php:373
-#: ../../mod/install.php:207
-msgid "Next"
-msgstr "Nächste"
+#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72
+msgid "Permission denied"
+msgstr "Zugriff verweigert"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:271
-#: ../../addon/dav/friendica/layout.fnk.php:271
-msgid "Date"
-msgstr "Datum"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:313
-#: ../../addon/dav/friendica/layout.fnk.php:313
-msgid "Error"
-msgstr "Fehler"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:354
-#: ../../addon.old/facebook/facebook.php:510
-#: ../../addon.old/facebook/facebook.php:516
-#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354
-#: ../../addon/facebook/facebook.php:512 ../../addon/facebook/facebook.php:518
-#: ../../addon/fbpost/fbpost.php:170 ../../addon/fbpost/fbpost.php:176
-#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4090
-#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
-#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/item.php:140
-#: ../../mod/item.php:156 ../../mod/allfriends.php:9 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/register.php:40 ../../mod/regmod.php:118
-#: ../../mod/attach.php:33 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/crepair.php:115
-#: ../../mod/delegate.php:6 ../../mod/poke.php:135
-#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
-#: ../../mod/display.php:180 ../../mod/editpost.php:10
-#: ../../mod/events.php:140 ../../mod/uimport.php:23 ../../mod/follow.php:9
-#: ../../mod/fsuggest.php:78 ../../mod/group.php:19
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
-#: ../../mod/install.php:151 ../../mod/wall_upload.php:66
-#: ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../index.php:342 ../../mod/fsuggest.php:78
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
 #: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
 #: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/manage.php:96 ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/mood.php:114 ../../mod/network.php:6 ../../mod/photos.php:133
-#: ../../mod/photos.php:1044 ../../mod/notifications.php:66
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/register.php:40 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/display.php:180
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
 #: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
 #: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../index.php:341
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/crepair.php:115
+#: ../../include/items.php:4090
 msgid "Permission denied."
 msgstr "Zugriff verweigert."
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:361
-#: ../../addon.old/facebook/facebook.php:799
-#: ../../addon.old/fbpost/fbpost.php:282
-#: ../../addon/dav/friendica/layout.fnk.php:361
-#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
-msgid "The new values have been saved."
-msgstr "Die neuen Einstellungen wurden gespeichert."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:380
-#: ../../addon/dav/friendica/layout.fnk.php:380
-msgid "The calendar has been updated."
-msgstr "Der Kalender wurde aktualisiert."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:393
-#: ../../addon/dav/friendica/layout.fnk.php:393
-msgid "The new calendar has been created."
-msgstr "Der neue Kalender wurde erstellt."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:417
-#: ../../addon/dav/friendica/layout.fnk.php:417
-msgid "The calendar has been deleted."
-msgstr "Der Kalender wurde gelöscht."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:424
-#: ../../addon/dav/friendica/layout.fnk.php:424
-msgid "Calendar Settings"
-msgstr "Kalendereinstellungen"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:430
-#: ../../addon/dav/friendica/layout.fnk.php:430
-msgid "Date format"
-msgstr "Datumsformat"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:439
-#: ../../addon/dav/friendica/layout.fnk.php:439
-msgid "Time zone"
-msgstr "Zeitzone"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:441
-#: ../../addon.old/dav/friendica/layout.fnk.php:488
-#: ../../addon.old/facebook/facebook.php:770
-#: ../../addon.old/fbpost/fbpost.php:267
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
-#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488
-#: ../../addon/facebook/facebook.php:772 ../../addon/fbpost/fbpost.php:322
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
-#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "Speichern"
+#: ../../index.php:401
+msgid "toggle mobile"
+msgstr "auf/von Mobile Ansicht wechseln"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:445
-#: ../../addon/dav/friendica/layout.fnk.php:445
-msgid "Calendars"
-msgstr "Kalender"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:487
-#: ../../addon/dav/friendica/layout.fnk.php:487
-msgid "Create a new calendar"
-msgstr "Neuen Kalender anlegen"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:496
-#: ../../addon/dav/friendica/layout.fnk.php:496
-msgid "Limitations"
-msgstr "Einschränkungen"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:500
-#: ../../addon.old/libravatar/libravatar.php:82
-#: ../../addon/dav/friendica/layout.fnk.php:500
-#: ../../addon/libravatar/libravatar.php:82
-msgid "Warning"
-msgstr "Warnung"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:504
-#: ../../addon/dav/friendica/layout.fnk.php:504
-msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
-msgstr "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:511
-#: ../../addon/dav/friendica/layout.fnk.php:511
-msgid "Synchronizing this calendar with the iPhone"
-msgstr "Diesen Kalender mit dem iPhone synchronisieren"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:522
-#: ../../addon/dav/friendica/layout.fnk.php:522
-msgid "Synchronizing your Friendica-Contacts with the iPhone"
-msgstr "Friendica-Kontakte mit dem iPhone synchronisieren"
-
-#: ../../addon.old/dav/friendica/main.php:202
-#: ../../addon/dav/friendica/main.php:202
-msgid ""
-"The current version of this plugin has not been set up correctly. Please "
-"contact the system administrator of your installation of friendica to fix "
-"this."
-msgstr "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben."
-
-#: ../../addon.old/dav/friendica/main.php:242
-#: ../../addon/dav/friendica/main.php:242
-msgid "Extended calendar with CalDAV-support"
-msgstr "Erweiterter Kalender mit CalDAV Unterstützung."
-
-#: ../../addon.old/dav/friendica/main.php:279
-#: ../../addon.old/dav/friendica/main.php:280
-#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
-#: ../../include/enotify.php:28 ../../include/notifier.php:785
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
 
-#: ../../addon.old/dav/friendica/main.php:282
-#: ../../addon/dav/friendica/main.php:282
-msgid "Notification: "
-msgstr "Benachrichtigungen: "
-
-#: ../../addon.old/dav/friendica/main.php:309
-#: ../../addon/dav/friendica/main.php:309
-msgid "The database tables have been installed."
-msgstr "Die Datenbanktabellen wurden installiert."
-
-#: ../../addon.old/dav/friendica/main.php:310
-#: ../../addon/dav/friendica/main.php:310
-msgid "An error occurred during the installation."
-msgstr "Während der Installation trat ein Fehler auf."
-
-#: ../../addon.old/dav/friendica/main.php:316
-#: ../../addon/dav/friendica/main.php:316
-msgid "The database tables have been updated."
-msgstr "Die Tabellen in der Datenbank wurden aktualisiert."
-
-#: ../../addon.old/dav/friendica/main.php:317
-#: ../../addon/dav/friendica/main.php:317
-msgid "An error occurred during the update."
-msgstr "Während der Aktualisierung trat ein Fehler auf."
-
-#: ../../addon.old/dav/friendica/main.php:333
-#: ../../addon/dav/friendica/main.php:333
-msgid "No system-wide settings yet."
-msgstr "Momentan keine systemweiten Einstellungen."
-
-#: ../../addon.old/dav/friendica/main.php:336
-#: ../../addon/dav/friendica/main.php:336
-msgid "Database status"
-msgstr "Datenbankstatus"
-
-#: ../../addon.old/dav/friendica/main.php:339
-#: ../../addon/dav/friendica/main.php:339
-msgid "Installed"
-msgstr "Installiert"
-
-#: ../../addon.old/dav/friendica/main.php:343
-#: ../../addon/dav/friendica/main.php:343
-msgid "Upgrade needed"
-msgstr "Upgrade erforderlich"
-
-#: ../../addon.old/dav/friendica/main.php:343
-#: ../../addon/dav/friendica/main.php:343
-msgid ""
-"Please back up all calendar data (the tables beginning with dav_*) before "
-"proceeding. While all calendar events <i>should</i> be converted to the new "
-"database structure, it's always safe to have a backup. Below, you can have a"
-" look at the database-queries that will be made when pressing the "
-"'update'-button."
-msgstr "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden."
-
-#: ../../addon.old/dav/friendica/main.php:343
-#: ../../addon/dav/friendica/main.php:343
-msgid "Upgrade"
-msgstr "Upgrade"
-
-#: ../../addon.old/dav/friendica/main.php:346
-#: ../../addon/dav/friendica/main.php:346
-msgid "Not installed"
-msgstr "Nicht installiert"
-
-#: ../../addon.old/dav/friendica/main.php:346
-#: ../../addon/dav/friendica/main.php:346
-msgid "Install"
-msgstr "Installieren"
-
-#: ../../addon.old/dav/friendica/main.php:350
-#: ../../addon/dav/friendica/main.php:350
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: ../../addon.old/dav/friendica/main.php:350
-#: ../../addon/dav/friendica/main.php:350
-msgid ""
-"Something really went wrong. I cannot recover from this state automatically,"
-" sorry. Please go to the database backend, back up the data, and delete all "
-"tables beginning with 'dav_' manually. Afterwards, this installation routine"
-" should be able to reinitialize the tables automatically."
-msgstr "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen."
-
-#: ../../addon.old/dav/friendica/main.php:355
-#: ../../addon/dav/friendica/main.php:355
-msgid "Troubleshooting"
-msgstr "Problembehebung"
-
-#: ../../addon.old/dav/friendica/main.php:356
-#: ../../addon/dav/friendica/main.php:356
-msgid "Manual creation of the database tables:"
-msgstr "Manuelles Anlegen der Datenbanktabellen:"
-
-#: ../../addon.old/dav/friendica/main.php:357
-#: ../../addon/dav/friendica/main.php:357
-msgid "Show SQL-statements"
-msgstr "SQL-Anweisungen anzeigen"
-
-#: ../../addon.old/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr "Bei Drupal veröffentlichen"
-
-#: ../../addon.old/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr "Drupal-Beitragseinstellungen"
-
-#: ../../addon.old/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "Veröffentlichung bei Drupal erlauben"
-
-#: ../../addon.old/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Drupal Nutzername"
-
-#: ../../addon.old/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "Drupal Passwort"
-
-#: ../../addon.old/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr "Beitragstyp - Artikel, Seite oder Blog"
-
-#: ../../addon.old/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "URL der Drupal Seite"
-
-#: ../../addon.old/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr "Drupal Seite verwendet bereinigte URLs"
-
-#: ../../addon.old/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal"
-
-#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
-msgstr "In Dreamwidth veröffentlichen"
-
-#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
-msgstr "Dreamwidth Veröffentlichungs-Einstellungen"
-
-#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
-msgstr "Dreamwidth Post Plugin aktivieren"
-
-#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
-msgid "dreamwidth username"
-msgstr "Dreamwidth Benutzername"
-
-#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
-msgid "dreamwidth password"
-msgstr "Dreamwidth Passwort"
-
-#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
-msgstr "Standardmäßig bei Dreamwidth veröffentlichen"
-
-#: ../../addon.old/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon/editplain/editplain.php:46
-msgid "Editplain settings updated."
-msgstr "Editplain Einstellungen aktualisiert"
-
-#: ../../addon.old/editplain/editplain.php:76
-#: ../../addon/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr "Editplain Einstellungen"
-
-#: ../../addon.old/editplain/editplain.php:78
-#: ../../addon/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr "RichText Editor deaktivieren"
-
-#: ../../addon.old/facebook/facebook.php:495
-#: ../../addon.old/fbpost/fbpost.php:144
-#: ../../addon.old/impressum/impressum.php:78
-#: ../../addon.old/mathjax/mathjax.php:66
-#: ../../addon.old/openstreetmap/openstreetmap.php:80
-#: ../../addon.old/piwik/piwik.php:105 ../../addon.old/twitter/twitter.php:389
-#: ../../addon/altpager/altpager.php:107 ../../addon/facebook/facebook.php:497
-#: ../../addon/fbpost/fbpost.php:155 ../../addon/impressum/impressum.php:78
-#: ../../addon/mathjax/mathjax.php:66
-#: ../../addon/openstreetmap/openstreetmap.php:104
-#: ../../addon/piwik/piwik.php:105
-#: ../../addon/remote_permissions/remote_permissions.php:205
-#: ../../addon/twitter/twitter.php:550 ../../mod/settings.php:488
-msgid "Settings updated."
-msgstr "Einstellungen aktualisiert."
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
+msgid "Contact not found."
+msgstr "Kontakt nicht gefunden."
 
-#: ../../addon.old/facebook/facebook.php:523
-#: ../../addon/facebook/facebook.php:525
-msgid "Facebook disabled"
-msgstr "Facebook deaktiviert"
-
-#: ../../addon.old/facebook/facebook.php:528
-#: ../../addon/facebook/facebook.php:530
-msgid "Updating contacts"
-msgstr "Aktualisiere Kontakte"
-
-#: ../../addon.old/facebook/facebook.php:551
-#: ../../addon.old/fbpost/fbpost.php:192 ../../addon/facebook/facebook.php:553
-#: ../../addon/fbpost/fbpost.php:203
-msgid "Facebook API key is missing."
-msgstr "Facebook-API-Schlüssel nicht gefunden"
-
-#: ../../addon.old/facebook/facebook.php:558
-#: ../../addon/facebook/facebook.php:560
-msgid "Facebook Connect"
-msgstr "Mit Facebook verbinden"
-
-#: ../../addon.old/facebook/facebook.php:564
-#: ../../addon/facebook/facebook.php:566
-msgid "Install Facebook connector for this account."
-msgstr "Facebook-Connector für dieses Konto installieren."
-
-#: ../../addon.old/facebook/facebook.php:571
-#: ../../addon/facebook/facebook.php:573
-msgid "Remove Facebook connector"
-msgstr "Facebook-Connector entfernen"
-
-#: ../../addon.old/facebook/facebook.php:576
-#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
-#: ../../addon/fbpost/fbpost.php:228
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]"
-
-#: ../../addon.old/facebook/facebook.php:583
-#: ../../addon.old/fbpost/fbpost.php:224 ../../addon/facebook/facebook.php:585
-#: ../../addon/fbpost/fbpost.php:235
-msgid "Post to Facebook by default"
-msgstr "Veröffentliche standardmäßig bei Facebook"
-
-#: ../../addon.old/facebook/facebook.php:589
-#: ../../addon/facebook/facebook.php:591
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
-msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt."
-
-#: ../../addon.old/facebook/facebook.php:593
-#: ../../addon/facebook/facebook.php:595
-msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
-msgstr "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren."
-
-#: ../../addon.old/facebook/facebook.php:596
-#: ../../addon/facebook/facebook.php:598
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren"
-
-#: ../../addon.old/facebook/facebook.php:598
-#: ../../addon/facebook/facebook.php:600
-msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
-msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>."
-
-#: ../../addon.old/facebook/facebook.php:599
-#: ../../addon/facebook/facebook.php:601
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen."
-
-#: ../../addon.old/facebook/facebook.php:600
-#: ../../addon/facebook/facebook.php:602
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
-msgstr "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen."
-
-#: ../../addon.old/facebook/facebook.php:604
-#: ../../addon/facebook/facebook.php:606
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen"
-
-#: ../../addon.old/facebook/facebook.php:609
-#: ../../addon/facebook/facebook.php:611
-msgid "Do not import your Facebook profile wall conversations"
-msgstr "Facebook-Pinnwand nicht importieren"
-
-#: ../../addon.old/facebook/facebook.php:611
-#: ../../addon/facebook/facebook.php:613
-msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann."
-
-#: ../../addon.old/facebook/facebook.php:616
-#: ../../addon/facebook/facebook.php:618
-msgid "Comma separated applications to ignore"
-msgstr "Kommaseparierte Anwendungen, die ignoriert werden sollen"
-
-#: ../../addon.old/facebook/facebook.php:700
-#: ../../addon/facebook/facebook.php:702
-msgid "Problems with Facebook Real-Time Updates"
-msgstr "Probleme mit Facebook Echtzeit-Updates"
-
-#: ../../addon.old/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:1200
-#: ../../addon.old/fbpost/fbpost.php:661
-#: ../../addon.old/public_server/public_server.php:62
-#: ../../addon.old/testdrive/testdrive.php:67
-#: ../../addon/facebook/facebook.php:704
-#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67
-msgid "Administrator"
-msgstr "Administrator"
-
-#: ../../addon.old/facebook/facebook.php:728
-#: ../../addon.old/fbpost/fbpost.php:239 ../../addon/facebook/facebook.php:730
-#: ../../addon/fbpost/fbpost.php:294 ../../include/contact_selectors.php:81
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Kontaktvorschlag gesendet."
 
-#: ../../addon.old/facebook/facebook.php:729
-#: ../../addon/facebook/facebook.php:731
-msgid "Facebook Connector Settings"
-msgstr "Facebook-Verbindungseinstellungen"
-
-#: ../../addon.old/facebook/facebook.php:744
-#: ../../addon.old/fbpost/fbpost.php:255 ../../addon/facebook/facebook.php:746
-#: ../../addon/fbpost/fbpost.php:310
-msgid "Facebook API Key"
-msgstr "Facebook API Schlüssel"
-
-#: ../../addon.old/facebook/facebook.php:754
-#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
-#: ../../addon/fbpost/fbpost.php:317
-msgid ""
-"Error: it appears that you have specified the App-ID and -Secret in your "
-".htconfig.php file. As long as they are specified there, they cannot be set "
-"using this form.<br><br>"
-msgstr "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>"
-
-#: ../../addon.old/facebook/facebook.php:759
-#: ../../addon/facebook/facebook.php:761
-msgid ""
-"Error: the given API Key seems to be incorrect (the application access token"
-" could not be retrieved)."
-msgstr "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden)."
-
-#: ../../addon.old/facebook/facebook.php:761
-#: ../../addon/facebook/facebook.php:763
-msgid "The given API Key seems to work correctly."
-msgstr "Der angegebene API Schlüssel scheint korrekt zu funktionieren."
-
-#: ../../addon.old/facebook/facebook.php:763
-#: ../../addon/facebook/facebook.php:765
-msgid ""
-"The correctness of the API Key could not be detected. Something strange's "
-"going on."
-msgstr "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht."
-
-#: ../../addon.old/facebook/facebook.php:766
-#: ../../addon.old/fbpost/fbpost.php:264 ../../addon/facebook/facebook.php:768
-#: ../../addon/fbpost/fbpost.php:319
-msgid "App-ID / API-Key"
-msgstr "App-ID / API-Key"
-
-#: ../../addon.old/facebook/facebook.php:767
-#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769
-#: ../../addon/fbpost/fbpost.php:320
-msgid "Application secret"
-msgstr "Anwendungs-Geheimnis"
-
-#: ../../addon.old/facebook/facebook.php:768
-#: ../../addon/facebook/facebook.php:770
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
-msgstr "Abfrageintervall in Minuten (min %1$s Minuten)"
-
-#: ../../addon.old/facebook/facebook.php:769
-#: ../../addon/facebook/facebook.php:771
-msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
-msgstr "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)"
-
-#: ../../addon.old/facebook/facebook.php:773
-#: ../../addon/facebook/facebook.php:775
-msgid "Real-Time Updates"
-msgstr "Echtzeit Aktualisierungen"
-
-#: ../../addon.old/facebook/facebook.php:777
-#: ../../addon/facebook/facebook.php:779
-msgid "Real-Time Updates are activated."
-msgstr "Echtzeit-Updates sind aktiviert."
-
-#: ../../addon.old/facebook/facebook.php:778
-#: ../../addon/facebook/facebook.php:780
-msgid "Deactivate Real-Time Updates"
-msgstr "Echtzeit-Updates deaktivieren"
-
-#: ../../addon.old/facebook/facebook.php:780
-#: ../../addon/facebook/facebook.php:782
-msgid "Real-Time Updates not activated."
-msgstr "Echtzeit-Updates nicht aktiviert."
-
-#: ../../addon.old/facebook/facebook.php:780
-#: ../../addon/facebook/facebook.php:782
-msgid "Activate Real-Time Updates"
-msgstr "Echtzeit-Updates aktivieren"
-
-#: ../../addon.old/facebook/facebook.php:823
-#: ../../addon.old/fbpost/fbpost.php:301 ../../addon/facebook/facebook.php:825
-#: ../../addon/fbpost/fbpost.php:356
-msgid "Post to Facebook"
-msgstr "Bei Facebook veröffentlichen"
-
-#: ../../addon.old/facebook/facebook.php:921
-#: ../../addon.old/fbpost/fbpost.php:399 ../../addon/facebook/facebook.php:923
-#: ../../addon/fbpost/fbpost.php:487
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen."
-
-#: ../../addon.old/facebook/facebook.php:1149
-#: ../../addon.old/fbpost/fbpost.php:610
-#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
-msgid "View on Friendica"
-msgstr "In Friendica betrachten"
-
-#: ../../addon.old/facebook/facebook.php:1182
-#: ../../addon.old/fbpost/fbpost.php:643
-#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
-msgid "Facebook post failed. Queued for retry."
-msgstr "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut."
-
-#: ../../addon.old/facebook/facebook.php:1222
-#: ../../addon.old/fbpost/fbpost.php:683
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
-msgstr "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich."
-
-#: ../../addon.old/facebook/facebook.php:1223
-#: ../../addon.old/fbpost/fbpost.php:684
-#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
-msgid "Facebook connection became invalid"
-msgstr "Facebook Anmeldedaten sind ungültig geworden"
-
-#: ../../addon.old/facebook/facebook.php:1224
-#: ../../addon.old/fbpost/fbpost.php:685
-#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr "Hallo %1$s,\n\ndie Verbindung zwischen deinem Account auf %2$s und Facebook funktioniert derzeit nicht. Dies ist normalerweise das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du  %3$sden Facebook-Connector neu authentifizieren%4$s."
-
-#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
-msgid "Facebook Post disabled"
-msgstr "Nach Facebook senden deaktiviert"
-
-#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
-msgid "Facebook Post"
-msgstr "Facebook Relai"
-
-#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
-msgid "Install Facebook Post connector for this account."
-msgstr "Facebook-Connector für dieses Konto installieren."
-
-#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
-msgid "Remove Facebook Post connector"
-msgstr "Facebook-Connector entfernen"
-
-#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
-msgid "Facebook Post Settings"
-msgstr "Facebook-Beitragseinstellungen"
-
-#: ../../addon.old/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
-#: ../../addon.old/page/page.php:92 ../../addon/forumlist/forumlist.php:64
-#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-msgid "Forums"
-msgstr "Foren"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../addon.old/forumlist/forumlist.php:63
-#: ../../addon/forumlist/forumlist.php:67
-msgid "show/hide"
-msgstr "anzeigen/verbergen"
-
-#: ../../addon.old/forumlist/forumlist.php:77
-#: ../../addon/forumlist/forumlist.php:81
-msgid "No forum subscriptions"
-msgstr "Keine Foren-Mitgliedschaften."
-
-#: ../../addon.old/forumlist/forumlist.php:94
-#: ../../addon.old/page/page.php:130 ../../addon/forumlist/forumlist.php:98
-#: ../../addon/page/page.php:130
-msgid "Forums:"
-msgstr "Foren:"
-
-#: ../../addon.old/forumlist/forumlist.php:131
-#: ../../addon/forumlist/forumlist.php:134
-msgid "Forumlist settings updated."
-msgstr "Einstellungen zur Foren-Liste aktualisiert."
-
-#: ../../addon.old/forumlist/forumlist.php:159
-#: ../../addon/forumlist/forumlist.php:162
-msgid "Forumlist Settings"
-msgstr "Foren-Liste Einstellungen"
-
-#: ../../addon.old/forumlist/forumlist.php:161
-#: ../../addon/forumlist/forumlist.php:164
-msgid "Randomise forum list"
-msgstr "Zufällige Zusammenstellung der Foren-Liste"
-
-#: ../../addon.old/forumlist/forumlist.php:164
-#: ../../addon/forumlist/forumlist.php:167
-msgid "Show forums on profile page"
-msgstr "Zeige die Liste der Foren auf der Profilseite"
-
-#: ../../addon.old/forumlist/forumlist.php:167
-#: ../../addon/forumlist/forumlist.php:170
-msgid "Show forums on network page"
-msgstr "Zeige Foren auf der Netzwerk-Seite"
-
-#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
-msgid "Fromapp settings updated."
-msgstr "FromApp Einstellungen aktualisiert."
-
-#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
-msgid "FromApp Settings"
-msgstr "FromApp Einstellungen"
-
-#: ../../addon.old/fromapp/fromapp.php:66 ../../addon/fromapp/fromapp.php:66
-msgid ""
-"The application name you would like to show your posts originating from."
-msgstr "Der Name der Anwendung von der deine Beiträge stammen sollen."
-
-#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
-msgid "Use this application name even if another application was used."
-msgstr "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat."
-
-#: ../../addon.old/fromgplus/fromgplus.php:29
-#: ../../addon/fromgplus/fromgplus.php:33
-msgid "Google+ Import Settings"
-msgstr "Google+ Import Einstellungen"
-
-#: ../../addon.old/fromgplus/fromgplus.php:32
-#: ../../addon/fromgplus/fromgplus.php:36
-msgid "Enable Google+ Import"
-msgstr "Aktiviere Google+ Import"
-
-#: ../../addon.old/fromgplus/fromgplus.php:35
-#: ../../addon/fromgplus/fromgplus.php:39
-msgid "Google Account ID"
-msgstr "Google Account ID"
-
-#: ../../addon.old/fromgplus/fromgplus.php:55
-#: ../../addon/fromgplus/fromgplus.php:59
-msgid "Google+ Import Settings saved."
-msgstr "Google+ Import Einstellungen gespeichert."
-
-#: ../../addon.old/geonames/geonames.php:143
-#: ../../addon/geonames/geonames.php:143
-msgid "Geonames settings updated."
-msgstr "Geonames Einstellungen aktualisiert"
-
-#: ../../addon.old/geonames/geonames.php:179
-#: ../../addon/geonames/geonames.php:179
-msgid "Geonames Settings"
-msgstr "Geonames Einstellungen"
-
-#: ../../addon.old/geonames/geonames.php:181
-#: ../../addon/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
-msgstr "Geonames Plugin aktivieren"
-
-#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
-msgid "Gnot settings updated."
-msgstr "Gnot Einstellungen aktualisiert."
-
-#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
-msgid "Gnot Settings"
-msgstr "Gnot Einstellungen"
-
-#: ../../addon.old/gnot/gnot.php:81 ../../addon/gnot/gnot.php:81
-msgid ""
-"Allows threading of email comment notifications on Gmail and anonymising the"
-" subject line."
-msgstr "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff"
-
-#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
-msgid "Enable this plugin/addon?"
-msgstr "Dieses Plugin/Addon aktivieren?"
-
-#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%d"
-
-#: ../../addon.old/gravatar/gravatar.php:71
-#: ../../addon.old/libravatar/libravatar.php:73
-#: ../../addon/gravatar/gravatar.php:71
-#: ../../addon/libravatar/libravatar.php:73
-msgid "generic profile image"
-msgstr "allgemeines Profilbild"
-
-#: ../../addon.old/gravatar/gravatar.php:72
-#: ../../addon.old/libravatar/libravatar.php:74
-#: ../../addon/gravatar/gravatar.php:72
-#: ../../addon/libravatar/libravatar.php:74
-msgid "random geometric pattern"
-msgstr "zufällig erzeugtes geometrisches Muster"
-
-#: ../../addon.old/gravatar/gravatar.php:73
-#: ../../addon.old/libravatar/libravatar.php:75
-#: ../../addon/gravatar/gravatar.php:73
-#: ../../addon/libravatar/libravatar.php:75
-msgid "monster face"
-msgstr "Monstergesicht"
-
-#: ../../addon.old/gravatar/gravatar.php:74
-#: ../../addon.old/libravatar/libravatar.php:76
-#: ../../addon/gravatar/gravatar.php:74
-#: ../../addon/libravatar/libravatar.php:76
-msgid "computer generated face"
-msgstr "Computergesicht"
-
-#: ../../addon.old/gravatar/gravatar.php:75
-#: ../../addon.old/libravatar/libravatar.php:77
-#: ../../addon/gravatar/gravatar.php:75
-#: ../../addon/libravatar/libravatar.php:77
-msgid "retro arcade style face"
-msgstr "Retro Arcade Design Gesicht"
-
-#: ../../addon.old/gravatar/gravatar.php:89
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon/libravatar/libravatar.php:93
-msgid "Information"
-msgstr "Information"
-
-#: ../../addon.old/gravatar/gravatar.php:89
-#: ../../addon/gravatar/gravatar.php:89
-msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
-
-#: ../../addon.old/gravatar/gravatar.php:96
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon/libravatar/libravatar.php:100
-msgid "Default avatar image"
-msgstr "Standard Profilbild "
-
-#: ../../addon.old/gravatar/gravatar.php:96
-#: ../../addon/gravatar/gravatar.php:96
-msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach."
-
-#: ../../addon.old/gravatar/gravatar.php:97
-#: ../../addon/gravatar/gravatar.php:97
-msgid "Rating of images"
-msgstr "Bildbewertung"
-
-#: ../../addon.old/gravatar/gravatar.php:97
-#: ../../addon/gravatar/gravatar.php:97
-msgid "Select the appropriate avatar rating for your site. See README"
-msgstr "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach."
-
-#: ../../addon.old/gravatar/gravatar.php:111
-#: ../../addon/gravatar/gravatar.php:111
-msgid "Gravatar settings updated."
-msgstr "Gravatar Einstellungen aktualisiert."
-
-#: ../../addon.old/group_text/group_text.php:76
-#: ../../addon/group_text/group_text.php:76
-msgid "Group Text"
-msgstr "Gruppen als Text"
-
-#: ../../addon.old/group_text/group_text.php:78
-#: ../../addon/group_text/group_text.php:78
-msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
-msgstr "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen"
-
-#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr "Auf InsaneJournal posten."
-
-#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
-msgstr "InsaneJournal Beitrags-Einstellungen"
-
-#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr "InsaneJournal Plugin aktivieren"
-
-#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
-msgstr "InsaneJournal Benutzername"
-
-#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr "InsaneJournal Passwort"
-
-#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
-msgstr "Standardmäßig auf InsaneJournal posten."
-
-#: ../../addon.old/impressum/impressum.php:37
-#: ../../addon/impressum/impressum.php:37
-msgid "Impressum"
-msgstr "Impressum"
-
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:52
-#: ../../addon.old/impressum/impressum.php:84
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:52
-#: ../../addon/impressum/impressum.php:84
-msgid "Site Owner"
-msgstr "Betreiber der Seite"
-
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:88
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:88
-msgid "Email Address"
-msgstr "Email Adresse"
-
-#: ../../addon.old/impressum/impressum.php:55
-#: ../../addon.old/impressum/impressum.php:86
-#: ../../addon/impressum/impressum.php:55
-#: ../../addon/impressum/impressum.php:86
-msgid "Postal Address"
-msgstr "Postalische Anschrift"
-
-#: ../../addon.old/impressum/impressum.php:61
-#: ../../addon/impressum/impressum.php:61
-msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert."
-
-#: ../../addon.old/impressum/impressum.php:84
-#: ../../addon/impressum/impressum.php:84
-msgid "The page operators name."
-msgstr "Name des Serveradministrators"
-
-#: ../../addon.old/impressum/impressum.php:85
-#: ../../addon/impressum/impressum.php:85
-msgid "Site Owners Profile"
-msgstr "Profil des Seitenbetreibers"
-
-#: ../../addon.old/impressum/impressum.php:85
-#: ../../addon/impressum/impressum.php:85
-msgid "Profile address of the operator."
-msgstr "Profil-Adresse des Serveradministrators"
-
-#: ../../addon.old/impressum/impressum.php:86
-#: ../../addon/impressum/impressum.php:86
-msgid "How to contact the operator via snail mail. You can use BBCode here."
-msgstr "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden."
-
-#: ../../addon.old/impressum/impressum.php:87
-#: ../../addon/impressum/impressum.php:87
-msgid "Notes"
-msgstr "Hinweise"
-
-#: ../../addon.old/impressum/impressum.php:87
-#: ../../addon/impressum/impressum.php:87
-msgid ""
-"Additional notes that are displayed beneath the contact information. You can"
-" use BBCode here."
-msgstr "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden."
-
-#: ../../addon.old/impressum/impressum.php:88
-#: ../../addon/impressum/impressum.php:88
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
-msgstr "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)"
-
-#: ../../addon.old/impressum/impressum.php:89
-#: ../../addon/impressum/impressum.php:89
-msgid "Footer note"
-msgstr "Fußnote"
-
-#: ../../addon.old/impressum/impressum.php:89
-#: ../../addon/impressum/impressum.php:89
-msgid "Text for the footer. You can use BBCode here."
-msgstr "Text für die Fußzeile. Du kannst BBCode verwenden."
-
-#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
-msgstr "Infinite Improbability Drive"
-
-#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
-msgid "IRC Settings"
-msgstr "IRC Einstellungen"
-
-#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
-msgstr "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)"
-
-#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
-msgstr "Beliebte Kanäle (mit Komma getrennt)"
-
-#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
-msgid "IRC settings saved."
-msgstr "IRC Einstellungen gespeichert."
-
-#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
-msgid "IRC Chatroom"
-msgstr "IRC Chatraum"
-
-#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
-msgid "Popular Channels"
-msgstr "Beliebte Räume"
-
-#: ../../addon.old/jappixmini/jappixmini.php:266
-#: ../../addon/jappixmini/jappixmini.php:266
-msgid "Jappix Mini addon settings"
-msgstr "Jappix Mini Addon Einstellungen"
-
-#: ../../addon.old/jappixmini/jappixmini.php:268
-#: ../../addon/jappixmini/jappixmini.php:268
-msgid "Activate addon"
-msgstr "Addon aktivieren"
-
-#: ../../addon.old/jappixmini/jappixmini.php:271
-#: ../../addon/jappixmini/jappixmini.php:271
-msgid ""
-"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
-msgstr "Füge das Jappix Mini Chat Widget <em>nicht</em> zum Webinterface hinzu"
-
-#: ../../addon.old/jappixmini/jappixmini.php:274
-#: ../../addon/jappixmini/jappixmini.php:274
-msgid "Jabber username"
-msgstr "Jabber Nutzername"
-
-#: ../../addon.old/jappixmini/jappixmini.php:277
-#: ../../addon/jappixmini/jappixmini.php:277
-msgid "Jabber server"
-msgstr "Jabber Server"
-
-#: ../../addon.old/jappixmini/jappixmini.php:281
-#: ../../addon/jappixmini/jappixmini.php:281
-msgid "Jabber BOSH host"
-msgstr "Jabber BOSH Host"
-
-#: ../../addon.old/jappixmini/jappixmini.php:285
-#: ../../addon/jappixmini/jappixmini.php:285
-msgid "Jabber password"
-msgstr "Japper Passwort"
-
-#: ../../addon.old/jappixmini/jappixmini.php:290
-#: ../../addon/jappixmini/jappixmini.php:290
-msgid "Encrypt Jabber password with Friendica password (recommended)"
-msgstr "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)"
-
-#: ../../addon.old/jappixmini/jappixmini.php:293
-#: ../../addon/jappixmini/jappixmini.php:293
-msgid "Friendica password"
-msgstr "Friendica Passwort"
-
-#: ../../addon.old/jappixmini/jappixmini.php:296
-#: ../../addon/jappixmini/jappixmini.php:296
-msgid "Approve subscription requests from Friendica contacts automatically"
-msgstr "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren"
-
-#: ../../addon.old/jappixmini/jappixmini.php:299
-#: ../../addon/jappixmini/jappixmini.php:299
-msgid "Subscribe to Friendica contacts automatically"
-msgstr "Automatisch Friendica Kontakten bei Jabber folgen"
-
-#: ../../addon.old/jappixmini/jappixmini.php:302
-#: ../../addon/jappixmini/jappixmini.php:302
-msgid "Purge internal list of jabber addresses of contacts"
-msgstr "Lösche die interne Liste der Jabber Adressen der Kontakte"
-
-#: ../../addon.old/jappixmini/jappixmini.php:308
-#: ../../addon/jappixmini/jappixmini.php:308
-msgid "Add contact"
-msgstr "Kontakt hinzufügen"
-
-#: ../../addon.old/js_upload/js_upload.php:43
-#: ../../addon/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "Datei hochladen"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Schlage %s einen Kontakt vor"
 
-#: ../../addon.old/js_upload/js_upload.php:44
-#: ../../addon/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "Ziehe Dateien hierher, um sie hochzuladen"
-
-#: ../../addon.old/js_upload/js_upload.php:45
-#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3970
-#: ../../include/conversation.php:1080 ../../mod/contacts.php:249
-#: ../../mod/settings.php:561 ../../mod/settings.php:587
-#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148
-#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
-#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: ../../addon.old/js_upload/js_upload.php:46
-#: ../../addon/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "Fehlgeschlagen"
-
-#: ../../addon.old/js_upload/js_upload.php:297
-#: ../../addon/js_upload/js_upload.php:303
-msgid "No files were uploaded."
-msgstr "Keine Dateien hochgeladen."
-
-#: ../../addon.old/js_upload/js_upload.php:303
-#: ../../addon/js_upload/js_upload.php:309
-msgid "Uploaded file is empty"
-msgstr "Hochgeladene Datei ist leer"
-
-#: ../../addon.old/js_upload/js_upload.php:315
-#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:761
-msgid "Image exceeds size limit of "
-msgstr "Die Bildgröße übersteigt das Limit von "
-
-#: ../../addon.old/js_upload/js_upload.php:326
-#: ../../addon/js_upload/js_upload.php:332
-msgid "File has an invalid extension, it should be one of "
-msgstr "Die Dateierweiterung ist nicht erlaubt, sie muss eine der folgenden sein "
-
-#: ../../addon.old/js_upload/js_upload.php:337
-#: ../../addon/js_upload/js_upload.php:343
-msgid "Upload was cancelled, or server error encountered"
-msgstr "Upload abgebrochen oder Serverfehler aufgetreten"
-
-#: ../../addon.old/libertree/libertree.php:36
-#: ../../addon/libertree/libertree.php:36
-msgid "Post to libertree"
-msgstr "bei libertree veröffentlichen"
-
-#: ../../addon.old/libertree/libertree.php:67
-#: ../../addon/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr "libertree Post Einstellungen"
-
-#: ../../addon.old/libertree/libertree.php:69
-#: ../../addon/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr "Libertree Post Plugin aktivieren"
-
-#: ../../addon.old/libertree/libertree.php:74
-#: ../../addon/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr "Libertree API Token"
-
-#: ../../addon.old/libertree/libertree.php:79
-#: ../../addon/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr "Libertree URL"
-
-#: ../../addon.old/libertree/libertree.php:84
-#: ../../addon/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr "Standardmäßig bei libertree veröffentlichen"
-
-#: ../../addon.old/libravatar/libravatar.php:14
-#: ../../addon/libravatar/libravatar.php:14
-msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
-msgstr "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt"
-
-#: ../../addon.old/libravatar/libravatar.php:83
-#: ../../addon/libravatar/libravatar.php:83
-#, php-format
-msgid "Your PHP version %s is lower than the required PHP >= 5.3."
-msgstr "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3."
-
-#: ../../addon.old/libravatar/libravatar.php:84
-#: ../../addon/libravatar/libravatar.php:84
-msgid "This addon is not functional on your server."
-msgstr "Dieses Addon funktioniert auf deinem Server nicht."
-
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon/libravatar/libravatar.php:93
-msgid ""
-"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
-"Libravatar addon will fall back to Gravatar if nothing was found at "
-"Libravatar."
-msgstr "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden."
-
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon/libravatar/libravatar.php:100
-msgid "Select default avatar image if none was found. See README"
-msgstr "Das Standard Avatar Bild wurde nicht gefunden. Siehe README"
-
-#: ../../addon.old/libravatar/libravatar.php:112
-#: ../../addon/libravatar/libravatar.php:112
-msgid "Libravatar settings updated."
-msgstr "Libravatar Einstellungen sind aktualisiert."
-
-#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
-msgstr "In LiveJournal veröffentlichen."
-
-#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
-msgstr "LiveJournal Veröffentlichungs-Einstellungen"
-
-#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
-msgstr "LiveJournal Post Plugin aktivieren"
-
-#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
-msgid "LiveJournal username"
-msgstr "LiveJournal Benutzername"
-
-#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
-msgid "LiveJournal password"
-msgstr "LiveJournal Passwort"
-
-#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
-msgstr "Standardmäßig bei LiveJournal veröffentlichen"
-
-#: ../../addon.old/mathjax/mathjax.php:37 ../../addon/mathjax/mathjax.php:37
-msgid ""
-"The MathJax addon renders mathematical formulae written using the LaTeX "
-"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
-"your wall,network tab and private mail."
-msgstr "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert."
-
-#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr "MathJax verwenden"
-
-#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
-msgid "MathJax Base URL"
-msgstr "MathJax Basis-URL"
-
-#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
-msgid ""
-"The URL for the javascript file that should be included to use MathJax. Can "
-"be either the MathJax CDN or another installation of MathJax."
-msgstr "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen."
-
-#: ../../addon.old/membersince/membersince.php:18
-#: ../../addon/membersince/membersince.php:18
-msgid "Member since:"
-msgstr "Mitglied seit:"
-
-#: ../../addon.old/morepokes/morepokes.php:19
-#: ../../addon/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr "abwatschen"
-
-#: ../../addon.old/morepokes/morepokes.php:19
-#: ../../addon/morepokes/morepokes.php:19
-msgid "bitchslapped"
-msgstr "watschte"
-
-#: ../../addon.old/morepokes/morepokes.php:20
-#: ../../addon/morepokes/morepokes.php:20
-msgid "shag"
-msgstr "poppen"
-
-#: ../../addon.old/morepokes/morepokes.php:20
-#: ../../addon/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr "poppte"
-
-#: ../../addon.old/morepokes/morepokes.php:21
-#: ../../addon/morepokes/morepokes.php:21
-msgid "do something obscenely biological to"
-msgstr "mit ihm/ihr etwas obszönes Körperliches machen"
-
-#: ../../addon.old/morepokes/morepokes.php:21
-#: ../../addon/morepokes/morepokes.php:21
-msgid "did something obscenely biological to"
-msgstr "machte etwas obszönes Körperliches mit"
-
-#: ../../addon.old/morepokes/morepokes.php:22
-#: ../../addon/morepokes/morepokes.php:22
-msgid "point out the poke feature to"
-msgstr "zeigte die neue Anstups-Funktion"
-
-#: ../../addon.old/morepokes/morepokes.php:22
-#: ../../addon/morepokes/morepokes.php:22
-msgid "pointed out the poke feature to"
-msgstr "zeigte die neue Anstups-Funktion"
-
-#: ../../addon.old/morepokes/morepokes.php:23
-#: ../../addon/morepokes/morepokes.php:23
-msgid "declare undying love for"
-msgstr "unterbliche Liebe verkünden"
-
-#: ../../addon.old/morepokes/morepokes.php:23
-#: ../../addon/morepokes/morepokes.php:23
-msgid "declared undying love for"
-msgstr "verkündete unsterbliche Liebe für"
-
-#: ../../addon.old/morepokes/morepokes.php:24
-#: ../../addon/morepokes/morepokes.php:24
-msgid "patent"
-msgstr "patentieren"
-
-#: ../../addon.old/morepokes/morepokes.php:24
-#: ../../addon/morepokes/morepokes.php:24
-msgid "patented"
-msgstr "patentierte"
-
-#: ../../addon.old/morepokes/morepokes.php:25
-#: ../../addon/morepokes/morepokes.php:25
-msgid "stroke beard"
-msgstr "sich den Bart kratzen"
-
-#: ../../addon.old/morepokes/morepokes.php:25
-#: ../../addon/morepokes/morepokes.php:25
-msgid "stroked their beard at"
-msgstr "kratzte sich den Bart in Richtung"
-
-#: ../../addon.old/morepokes/morepokes.php:26
-#: ../../addon/morepokes/morepokes.php:26
-msgid ""
-"bemoan the declining standards of modern secondary and tertiary education to"
-msgstr "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen"
-
-#: ../../addon.old/morepokes/morepokes.php:26
-#: ../../addon/morepokes/morepokes.php:26
-msgid ""
-"bemoans the declining standards of modern secondary and tertiary education "
-"to"
-msgstr "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei"
-
-#: ../../addon.old/morepokes/morepokes.php:27
-#: ../../addon/morepokes/morepokes.php:27
-msgid "hug"
-msgstr "umarmen"
-
-#: ../../addon.old/morepokes/morepokes.php:27
-#: ../../addon/morepokes/morepokes.php:27
-msgid "hugged"
-msgstr "umarmte"
-
-#: ../../addon.old/morepokes/morepokes.php:28
-#: ../../addon/morepokes/morepokes.php:28
-msgid "kiss"
-msgstr "küssen"
-
-#: ../../addon.old/morepokes/morepokes.php:28
-#: ../../addon/morepokes/morepokes.php:28
-msgid "kissed"
-msgstr "küsste"
-
-#: ../../addon.old/morepokes/morepokes.php:29
-#: ../../addon/morepokes/morepokes.php:29
-msgid "raise eyebrows at"
-msgstr "Augenbrauen hochziehen"
-
-#: ../../addon.old/morepokes/morepokes.php:29
-#: ../../addon/morepokes/morepokes.php:29
-msgid "raised their eyebrows at"
-msgstr "zog die Augenbrauen hoch in Richtung"
-
-#: ../../addon.old/morepokes/morepokes.php:30
-#: ../../addon/morepokes/morepokes.php:30
-msgid "insult"
-msgstr "beleidigen"
-
-#: ../../addon.old/morepokes/morepokes.php:30
-#: ../../addon/morepokes/morepokes.php:30
-msgid "insulted"
-msgstr "beleidigte"
-
-#: ../../addon.old/morepokes/morepokes.php:31
-#: ../../addon/morepokes/morepokes.php:31
-msgid "praise"
-msgstr "preisen"
-
-#: ../../addon.old/morepokes/morepokes.php:31
-#: ../../addon/morepokes/morepokes.php:31
-msgid "praised"
-msgstr "pries"
-
-#: ../../addon.old/morepokes/morepokes.php:32
-#: ../../addon/morepokes/morepokes.php:32
-msgid "be dubious of"
-msgstr "ungewiss sein"
-
-#: ../../addon.old/morepokes/morepokes.php:32
-#: ../../addon/morepokes/morepokes.php:32
-msgid "was dubious of"
-msgstr "war ungewiss über"
-
-#: ../../addon.old/morepokes/morepokes.php:33
-#: ../../addon/morepokes/morepokes.php:33
-msgid "eat"
-msgstr "essen"
-
-#: ../../addon.old/morepokes/morepokes.php:33
-#: ../../addon/morepokes/morepokes.php:33
-msgid "ate"
-msgstr "aß"
-
-#: ../../addon.old/morepokes/morepokes.php:34
-#: ../../addon/morepokes/morepokes.php:34
-msgid "giggle and fawn at"
-msgstr "kichern und einschleimen"
-
-#: ../../addon.old/morepokes/morepokes.php:34
-#: ../../addon/morepokes/morepokes.php:34
-msgid "giggled and fawned at"
-msgstr "kicherte und schleimte sich ein bei"
-
-#: ../../addon.old/morepokes/morepokes.php:35
-#: ../../addon/morepokes/morepokes.php:35
-msgid "doubt"
-msgstr "bezweifeln"
-
-#: ../../addon.old/morepokes/morepokes.php:35
-#: ../../addon/morepokes/morepokes.php:35
-msgid "doubted"
-msgstr "bezweifelte"
-
-#: ../../addon.old/morepokes/morepokes.php:36
-#: ../../addon/morepokes/morepokes.php:36
-msgid "glare"
-msgstr "zornig anstarren"
-
-#: ../../addon.old/morepokes/morepokes.php:36
-#: ../../addon/morepokes/morepokes.php:36
-msgid "glared at"
-msgstr "starrte zornig auf"
-
-#: ../../addon.old/notimeline/notimeline.php:32
-#: ../../addon/notimeline/notimeline.php:32
-msgid "No Timeline settings updated."
-msgstr "Keine Timeline-Einstellungen aktualisiert."
-
-#: ../../addon.old/notimeline/notimeline.php:56
-#: ../../addon/notimeline/notimeline.php:56
-msgid "No Timeline Settings"
-msgstr "Keine Timeline-Einstellungen"
-
-#: ../../addon.old/notimeline/notimeline.php:58
-#: ../../addon/notimeline/notimeline.php:58
-msgid "Disable Archive selector on profile wall"
-msgstr "Deaktiviere Archiv-Auswahl auf Deiner Pinnwand"
-
-#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
-msgstr "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:"
-
-#: ../../addon.old/nsfw/nsfw.php:80 ../../addon/nsfw/nsfw.php:80
-msgid ""
-"This plugin looks in posts for the words/text you specify below, and "
-"collapses any content containing those keywords so it is not displayed at "
-"inappropriate times, such as sexual innuendo that may be improper in a work "
-"setting. It is polite and recommended to tag any content containing nudity "
-"with #NSFW.  This filter can also match any other word/text you specify, and"
-" can thereby be used as a general purpose content filter."
-msgstr "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden."
-
-#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
-msgid "Enable Content filter"
-msgstr "Aktiviere den Inhaltsfilter"
-
-#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
-msgid "Comma separated list of keywords to hide"
-msgstr "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen"
-
-#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
-msgid "Use /expression/ to provide regular expressions"
-msgstr "Verwende /expression/ um reguläre Ausdrücke zu verwenden"
-
-#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
-msgid "NSFW Settings saved."
-msgstr "NSFW-Einstellungen gespeichert"
-
-#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
-#, php-format
-msgid "%s - Click to open/close"
-msgstr "%s – Zum Öffnen/Schließen klicken"
-
-#: ../../addon.old/numfriends/numfriends.php:46
-#: ../../addon/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
-msgstr "Numfriends Einstellungen aktualisiert"
-
-#: ../../addon.old/numfriends/numfriends.php:77
-#: ../../addon/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
-msgstr "Numfriends Einstellungen"
-
-#: ../../addon.old/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "OEmbed Einstellungen aktualisiert."
-
-#: ../../addon.old/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "OEmbed für Youtube Videos verwenden"
-
-#: ../../addon.old/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL zum Einbetten:"
-
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-#: ../../addon/openstreetmap/openstreetmap.php:95
-msgid "Tile Server URL"
-msgstr "Tile Server URL"
-
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-#: ../../addon/openstreetmap/openstreetmap.php:95
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>"
-
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-#: ../../addon/openstreetmap/openstreetmap.php:96
-msgid "Default zoom"
-msgstr "Standard Zoom"
-
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-#: ../../addon/openstreetmap/openstreetmap.php:96
-msgid "The default zoom level. (1:world, 18:highest)"
-msgstr "Standard Zoomlevel (1: Welt; 18: höchstes)"
-
-#: ../../addon.old/page/page.php:77 ../../addon.old/page/page.php:111
-#: ../../addon.old/showmore/showmore.php:119 ../../addon/page/page.php:77
-#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
-#: ../../object/Item.php:355 ../../boot.php:652
-msgid "show more"
-msgstr "mehr anzeigen"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
 
-#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
-msgid "Page settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
 
-#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
-msgid "Page Settings"
-msgstr "Seiteneinstellungen"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
 
-#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
-msgid "How many forums to display on sidebar without paging"
-msgstr "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
 
-#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
-msgid "Randomise Page/Forum list"
-msgstr "Zufällige Seiten/Foren Liste"
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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"
 
-#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
-msgid "Show pages/forums on profile page"
-msgstr "Foren/Seiten auf der Profilseite anzeigen"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Kontaktanfrage abgeschlossen."
 
-#: ../../addon.old/pageheader/pageheader.php:50
-#: ../../addon/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr "\"pageheader\"-Einstellungen"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Nicht behebbarer Protokollfehler."
 
-#: ../../addon.old/pageheader/pageheader.php:68
-#: ../../addon/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
-msgstr "pageheader-Einstellungen gespeichert."
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil nicht verfügbar."
 
-#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe."
-
-#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
-#, php-format
-msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out)."
-
-#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
-msgid "Piwik Base URL"
-msgstr "Piwik Basis URL"
-
-#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
-msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)"
-
-#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
-msgid "Site ID"
-msgstr "Seiten ID"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
 
-#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr "Link zum Setzen des Opt-Out Cookies anzeigen?"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
 
-#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr "Asynchrones Tracken"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
 
-#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
-msgid "Planets Settings"
-msgstr "Planeten Einstellungen"
-
-#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
-msgid "Enable Planets Plugin"
-msgstr "Aktiviere Planeten Plugin"
-
-#: ../../addon.old/posterous/posterous.php:37
-#: ../../addon/posterous/posterous.php:37
-msgid "Post to Posterous"
-msgstr "Nach Posterous senden"
-
-#: ../../addon.old/posterous/posterous.php:70
-#: ../../addon/posterous/posterous.php:70
-msgid "Posterous Post Settings"
-msgstr "Posterous Beitrags-Einstellungen"
-
-#: ../../addon.old/posterous/posterous.php:72
-#: ../../addon/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
-msgstr "Posterous-Plugin aktivieren"
-
-#: ../../addon.old/posterous/posterous.php:77
-#: ../../addon/posterous/posterous.php:77
-msgid "Posterous login"
-msgstr "Posterous-Anmeldename"
-
-#: ../../addon.old/posterous/posterous.php:82
-#: ../../addon/posterous/posterous.php:82
-msgid "Posterous password"
-msgstr "Posterous-Passwort"
-
-#: ../../addon.old/posterous/posterous.php:87
-#: ../../addon/posterous/posterous.php:87
-msgid "Posterous site ID"
-msgstr "Posterous site ID"
-
-#: ../../addon.old/posterous/posterous.php:92
-#: ../../addon/posterous/posterous.php:92
-msgid "Posterous API token"
-msgstr "Posterous API token"
-
-#: ../../addon.old/posterous/posterous.php:97
-#: ../../addon/posterous/posterous.php:97
-msgid "Post to Posterous by default"
-msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous"
-
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
-msgid "Lifetime of the cache (in hours)"
-msgstr "Lebenszeit des Caches (in Stunden)"
-
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
-msgid "Cache Statistics"
-msgstr "Cache Statistik"
-
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
-msgid "Number of items"
-msgstr "Anzahl der Einträge"
-
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
-msgid "Size of the cache"
-msgstr "Größe des Caches"
-
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
-msgid "Delete the whole cache"
-msgstr "Cache leeren"
-
-#: ../../addon.old/public_server/public_server.php:126
-#: ../../addon.old/testdrive/testdrive.php:94
-#: ../../addon/public_server/public_server.php:126
-#: ../../addon/testdrive/testdrive.php:94
-#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr "Dein Konto auf %s wird in ein paar Tagen verfallen."
-
-#: ../../addon.old/public_server/public_server.php:127
-#: ../../addon/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
-msgstr "Dein Friendica-Konto wird in Kürze auslaufen."
-
-#: ../../addon.old/public_server/public_server.php:128
-#: ../../addon/public_server/public_server.php:128
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
-msgstr "Hallo %1$s,\n\ndein Account auf %2$s wird in weniger als fünf Tagen auslaufen. Du kannst das verhindern, indem du dich mindestens einmal alle 30 Tage anmeldest."
-
-#: ../../addon.old/qcomment/qcomment.php:51
-#: ../../addon/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ":-)"
-
-#: ../../addon.old/qcomment/qcomment.php:51
-#: ../../addon/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ":-("
-
-#: ../../addon.old/qcomment/qcomment.php:51
-#: ../../addon/qcomment/qcomment.php:51
-msgid "lol"
-msgstr "lol"
-
-#: ../../addon.old/qcomment/qcomment.php:54
-#: ../../addon/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr "Schnell-Kommentar Einstellungen"
-
-#: ../../addon.old/qcomment/qcomment.php:56
-#: ../../addon/qcomment/qcomment.php:56
-msgid ""
-"Quick comments are found near comment boxes, sometimes hidden. Click them to"
-" provide simple replies."
-msgstr "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten."
-
-#: ../../addon.old/qcomment/qcomment.php:57
-#: ../../addon/qcomment/qcomment.php:57
-msgid "Enter quick comments, one per line"
-msgstr "Gib einen Schnell-Kommentar pro Zeile ein"
-
-#: ../../addon.old/qcomment/qcomment.php:75
-#: ../../addon/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
-msgstr "Schnell-Kommentare Einstellungen gespeichert"
-
-#: ../../addon.old/randplace/randplace.php:169
-#: ../../addon/randplace/randplace.php:169
-msgid "Randplace Settings"
-msgstr "Randplace-Einstellungen"
-
-#: ../../addon.old/randplace/randplace.php:171
-#: ../../addon/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
-msgstr "Randplace-Plugin aktivieren"
-
-#: ../../addon.old/showmore/showmore.php:38
-#: ../../addon/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
-msgstr "\"Mehr zeigen\" Einstellungen"
-
-#: ../../addon.old/showmore/showmore.php:41
-#: ../../addon/showmore/showmore.php:41
-msgid "Enable Show More"
-msgstr "Aktiviere \"Mehr zeigen\""
-
-#: ../../addon.old/showmore/showmore.php:44
-#: ../../addon/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
-msgstr "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben"
-
-#: ../../addon.old/showmore/showmore.php:65
-#: ../../addon/showmore/showmore.php:65
-msgid "Show More Settings saved."
-msgstr "\"Mehr zeigen\" Einstellungen gesichert."
-
-#: ../../addon.old/snautofollow/snautofollow.php:32
-#: ../../addon/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
-msgstr "StatusNet AutoFollow Einstellungen aktualisiert."
-
-#: ../../addon.old/snautofollow/snautofollow.php:56
-#: ../../addon/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
-msgstr "StatusNet AutoFollow Einstellungen"
-
-#: ../../addon.old/snautofollow/snautofollow.php:58
-#: ../../addon/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
-msgstr "Automatisch allen StatusNet Followern/Erwähnungen folgen"
-
-#: ../../addon.old/startpage/startpage.php:83
-#: ../../addon/startpage/startpage.php:83
-msgid "Startpage Settings"
-msgstr "Startseiten-Einstellungen"
-
-#: ../../addon.old/startpage/startpage.php:85
-#: ../../addon/startpage/startpage.php:85
-msgid "Home page to load after login  - leave blank for profile wall"
-msgstr "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand"
-
-#: ../../addon.old/startpage/startpage.php:88
-#: ../../addon/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
-msgstr "Beispiele: network, notifications/system"
-
-#: ../../addon.old/statusnet/statusnet.php:134
-#: ../../addon/statusnet/statusnet.php:138
-msgid "Post to StatusNet"
-msgstr "Bei StatusNet veröffentlichen"
-
-#: ../../addon.old/statusnet/statusnet.php:176
-#: ../../addon/statusnet/statusnet.php:180
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr "Bitte kontaktiere den Administrator des Servers.<br />Die angegebene API-URL ist nicht gültig."
-
-#: ../../addon.old/statusnet/statusnet.php:204
-#: ../../addon/statusnet/statusnet.php:208
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr "Die StatusNet-API konnte mit dem angegebenen Pfad nicht erreicht werden."
-
-#: ../../addon.old/statusnet/statusnet.php:232
-#: ../../addon/statusnet/statusnet.php:238
-msgid "StatusNet settings updated."
-msgstr "StatusNet Einstellungen aktualisiert."
-
-#: ../../addon.old/statusnet/statusnet.php:257
-#: ../../addon/statusnet/statusnet.php:269
-msgid "StatusNet Posting Settings"
-msgstr "StatusNet-Beitragseinstellungen"
-
-#: ../../addon.old/statusnet/statusnet.php:271
-#: ../../addon/statusnet/statusnet.php:283
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "Verfügbare OAuth Schlüssel für StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:272
-#: ../../addon/statusnet/statusnet.php:284
-msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
-msgstr "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten)."
-
-#: ../../addon.old/statusnet/statusnet.php:280
-#: ../../addon/statusnet/statusnet.php:292
-msgid "Provide your own OAuth Credentials"
-msgstr "Eigene OAuth Schlüssel eintragen"
-
-#: ../../addon.old/statusnet/statusnet.php:281
-#: ../../addon/statusnet/statusnet.php:293
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendica Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendica installation at your favorited StatusNet installation."
-msgstr "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert."
-
-#: ../../addon.old/statusnet/statusnet.php:283
-#: ../../addon/statusnet/statusnet.php:295
-msgid "OAuth Consumer Key"
-msgstr "OAuth Consumer Key"
-
-#: ../../addon.old/statusnet/statusnet.php:286
-#: ../../addon/statusnet/statusnet.php:298
-msgid "OAuth Consumer Secret"
-msgstr "OAuth Consumer Secret"
-
-#: ../../addon.old/statusnet/statusnet.php:289
-#: ../../addon/statusnet/statusnet.php:301
-msgid "Base API Path (remember the trailing /)"
-msgstr "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)"
-
-#: ../../addon.old/statusnet/statusnet.php:310
-#: ../../addon/statusnet/statusnet.php:322
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr "Um dein Konto mit einem StatusNet-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von StatusNet zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Nachrichten an StatusNet gesendet."
-
-#: ../../addon.old/statusnet/statusnet.php:311
-#: ../../addon/statusnet/statusnet.php:323
-msgid "Log in with StatusNet"
-msgstr "Bei StatusNet anmelden"
-
-#: ../../addon.old/statusnet/statusnet.php:313
-#: ../../addon/statusnet/statusnet.php:325
-msgid "Copy the security code from StatusNet here"
-msgstr "Kopiere den Sicherheitscode von StatusNet hier hin"
-
-#: ../../addon.old/statusnet/statusnet.php:319
-#: ../../addon/statusnet/statusnet.php:331
-msgid "Cancel Connection Process"
-msgstr "Verbindungsprozess abbrechen"
-
-#: ../../addon.old/statusnet/statusnet.php:321
-#: ../../addon/statusnet/statusnet.php:333
-msgid "Current StatusNet API is"
-msgstr "Derzeitige StatusNet-API-URL lautet"
-
-#: ../../addon.old/statusnet/statusnet.php:322
-#: ../../addon/statusnet/statusnet.php:334
-msgid "Cancel StatusNet Connection"
-msgstr "Verbindung zum StatusNet Server abbrechen"
-
-#: ../../addon.old/statusnet/statusnet.php:333
-#: ../../addon.old/twitter/twitter.php:189
-#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
-msgid "Currently connected to: "
-msgstr "Momentan verbunden mit: "
-
-#: ../../addon.old/statusnet/statusnet.php:334
-#: ../../addon/statusnet/statusnet.php:346
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
-
-#: ../../addon.old/statusnet/statusnet.php:336
-#: ../../addon/statusnet/statusnet.php:348
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to StatusNet will lead the visitor to a blank page "
-"informing the visitor that the access to your profile has been restricted."
-msgstr "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde."
-
-#: ../../addon.old/statusnet/statusnet.php:339
-#: ../../addon/statusnet/statusnet.php:351
-msgid "Allow posting to StatusNet"
-msgstr "Veröffentlichung bei StatusNet erlauben"
-
-#: ../../addon.old/statusnet/statusnet.php:342
-#: ../../addon/statusnet/statusnet.php:354
-msgid "Send public postings to StatusNet by default"
-msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:345
-#: ../../addon/statusnet/statusnet.php:366
-msgid "Send linked #-tags and @-names to StatusNet"
-msgstr "Sende verlinkte #-Tags und @-Namen nach StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:350
-#: ../../addon.old/twitter/twitter.php:206
-#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
-msgid "Clear OAuth configuration"
-msgstr "OAuth-Konfiguration löschen"
-
-#: ../../addon.old/statusnet/statusnet.php:567
-#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484
-msgid "Site name"
-msgstr "Seitenname"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Ungültiger Locator"
 
-#: ../../addon.old/statusnet/statusnet.php:568
-#: ../../addon/statusnet/statusnet.php:745
-msgid "API URL"
-msgstr "API-URL"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Ungültige E-Mail Adresse."
 
-#: ../../addon.old/statusnet/statusnet.php:569
-#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
-#: ../../mod/settings.php:590
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
 
-#: ../../addon.old/statusnet/statusnet.php:570
-#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
-#: ../../mod/settings.php:589
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
 
-#: ../../addon.old/testdrive/testdrive.php:95
-#: ../../addon/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
-msgstr "Dein Friendica-Testkonto wird bald verfallen."
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Du hast dich hier bereits vorgestellt."
 
-#: ../../addon.old/testdrive/testdrive.php:96
-#: ../../addon/testdrive/testdrive.php:96
+#: ../../mod/dfrn_request.php:475
 #, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
-msgstr "Hallo %1$s,\n\ndein Testkonto auf %2$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server findest du auf http://dir.friendica.com/siteinfo . Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica-Projektseite werfen: http://friendica.com"
-
-#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Dreidimensionales Tic-Tac-Toe"
+msgid "Apparently you are already friends with %s."
+msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
 
-#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "3D Tic-Tac-Toe"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Ungültige Profil-URL."
 
-#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
-msgid "New game"
-msgstr "Neues Spiel"
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Nicht erlaubte Profil-URL."
 
-#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "Neues Handicap Spiel"
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
+msgid "Failed to update contact record."
+msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
 
-#: ../../addon.old/tictac/tictac.php:60 ../../addon/tictac/tictac.php:60
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur dass man es auf mehreren Ebenen gleichzeitig spielt."
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Deine Kontaktanfrage wurde gesendet."
 
-#: ../../addon.old/tictac/tictac.php:61 ../../addon/tictac/tictac.php:61
-msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen."
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
 
-#: ../../addon.old/tictac/tictac.php:63 ../../addon/tictac/tictac.php:63
+#: ../../mod/dfrn_request.php:659
 msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt."
-
-#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "Du fängst an..."
-
-#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "Diesmal fange ich an..."
-
-#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
-msgid "You won!"
-msgstr "Du gewinnst!"
-
-#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "Unentschieden!"
-
-#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
-msgid "I won!"
-msgstr "Ich gewinne!"
-
-#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
-msgid "Post to Tumblr"
-msgstr "Bei Tumblr veröffentlichen"
-
-#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
-msgid "Tumblr Post Settings"
-msgstr "Tumblr-Beitragseinstellungen"
-
-#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
-msgid "Enable Tumblr Post Plugin"
-msgstr "Tumblr-Plugin aktivieren"
-
-#: ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr "Tumblr Login"
+"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."
 
-#: ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr "Tumblr Passwort"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Verberge diesen Kontakt"
 
-#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
-msgid "Post to Tumblr by default"
-msgstr "Standardmäßig bei Tumblr veröffentlichen"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Willkommen zurück %s."
 
-#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
-msgid "Post to Twitter"
-msgstr "Bei Twitter veröffentlichen"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
 
-#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
-msgid "Twitter settings updated."
-msgstr "Twitter Einstellungen aktualisiert."
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Bestätigen"
 
-#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
-msgid "Twitter Posting Settings"
-msgstr "Twitter-Beitragseinstellungen"
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439
+msgid "[Name Withheld]"
+msgstr "[Name unterdrückt]"
 
-#: ../../addon.old/twitter/twitter.php:153 ../../addon/twitter/twitter.php:164
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite."
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:914
+#: ../../mod/search.php:89 ../../mod/display.php:19 ../../mod/community.php:18
+#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Öffentlicher Zugriff verweigert."
 
-#: ../../addon.old/twitter/twitter.php:172 ../../addon/twitter/twitter.php:183
+#: ../../mod/dfrn_request.php:811
 msgid ""
-"At this Friendica instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht."
-
-#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
-msgid "Log in with Twitter"
-msgstr "bei Twitter anmelden"
-
-#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
-msgid "Copy the PIN from Twitter here"
-msgstr "Kopiere die Twitter-PIN hier her"
+"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:"
 
-#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen."
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
 
-#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203
+#: ../../mod/dfrn_request.php:829
 msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to Twitter will lead the visitor to a blank page informing "
-"the visitor that the access to your profile has been restricted."
-msgstr "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde."
-
-#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
-msgid "Allow posting to Twitter"
-msgstr "Veröffentlichung bei Twitter erlauben"
-
-#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
-msgid "Send public postings to Twitter by default"
-msgstr "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter"
+"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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
 
-#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
-msgid "Send linked #-tags and @-names to Twitter"
-msgstr "Sende verlinkte #-Tags und @-Namen nach Twitter"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Freundschafts-/Kontaktanfrage"
 
-#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
-msgid "Consumer key"
-msgstr "Consumer Key"
+#: ../../mod/dfrn_request.php:833
+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"
 
-#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
-msgid "Consumer secret"
-msgstr "Consumer Secret"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Bitte beantworte Folgendes:"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
+#: ../../mod/dfrn_request.php:835
 #, php-format
-msgid ""
-"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud). See <a "
-"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
-" WebFinger</a>"
-msgstr "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
+msgid "Does %s know you?"
+msgstr "Kennt %s dich?"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
-#: ../../addon/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
-msgstr "Vorlagen URL (mit {Kategorie})"
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/profiles.php:606
+#: ../../mod/suggest.php:29 ../../include/items.php:3967
+msgid "Yes"
+msgstr "Ja"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
-msgstr "OAuth Endpunkt"
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:240 ../../mod/settings.php:934
+#: ../../mod/settings.php:940 ../../mod/settings.php:948
+#: ../../mod/settings.php:952 ../../mod/settings.php:957
+#: ../../mod/settings.php:963 ../../mod/settings.php:969
+#: ../../mod/settings.php:975 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
+#: ../../mod/profiles.php:607
+msgid "No"
+msgstr "Nein"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
-msgstr "Api"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Eine persönliche Notiz beifügen:"
 
-#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
-msgid "View Source"
-msgstr "Quelle ansehen"
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../addon.old/widgets/widget_friendheader.php:40
-#: ../../addon/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
-msgstr "Werde Mitglied dieser Liste"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../addon.old/widgets/widget_friends.php:40
-#: ../../addon/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
-msgstr "In Friendica verbinden!"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../addon.old/widgets/widget_like.php:58
-#: ../../addon/widgets/widget_like.php:59
+#: ../../mod/dfrn_request.php:843
 #, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] "%d Person mag das"
-msgstr[1] "%d Leute mögen das"
+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."
 
-#: ../../addon.old/widgets/widget_like.php:61
-#: ../../addon/widgets/widget_like.php:62
-#, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] " %d Person mag das nicht"
-msgstr[1] "%d Leute mögen das nicht"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Adresse deines Profils:"
 
-#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
-msgid "Generate new key"
-msgstr "Neuen Schlüssel erstellen"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Anfrage abschicken"
 
-#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
-msgid "Widgets key"
-msgstr "Widgets Schlüssel"
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:202
+#: ../../mod/photos.php:290 ../../mod/contacts.php:249 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/suggest.php:32
+#: ../../include/items.php:3970 ../../include/conversation.php:1080
+msgid "Cancel"
+msgstr "Abbrechen"
 
-#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
-msgid "Widgets available"
-msgstr "Verfügbare Widgets"
+#: ../../mod/profile.php:21 ../../boot.php:1246
+msgid "Requested profile is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
-#: ../../mod/settings.php:646
-msgid "Plugin Settings"
-msgstr "Plugin-Einstellungen"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
 
-#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr "Bei WordPress veröffentlichen"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Tipps für neue Nutzer"
 
-#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr "WordPress-Beitragseinstellungen"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Invalid request identifier."
 
-#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr "WordPress-Plugin aktivieren."
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Verwerfen"
 
-#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr "WordPress-Benutzername"
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
+#: ../../mod/contacts.php:413
+msgid "Ignore"
+msgstr "Ignorieren"
 
-#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr "WordPress-Passwort"
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
-msgid "WordPress API URL"
-msgstr "WordPress-API-URL"
+#: ../../mod/notifications.php:83 ../../include/nav.php:140
+msgid "Network"
+msgstr "Netzwerk"
 
-#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
-msgid "Post to WordPress by default"
-msgstr "Standardmäßig auf WordPress veröffentlichen"
+#: ../../mod/notifications.php:88 ../../mod/network.php:444
+msgid "Personal"
+msgstr "Persönlich"
 
-#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
-msgstr "Einen Link zurück zum Friendica-Beitrag hinzufügen"
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+#: ../../include/nav.php:104 ../../include/nav.php:143
+msgid "Home"
+msgstr "Pinnwand"
 
-#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
-msgid "Read the original post and comment stream on Friendica"
-msgstr "Den Originalbeitrag samt Kommentaren bei Friendica lesen"
+#: ../../mod/notifications.php:98 ../../include/nav.php:149
+msgid "Introductions"
+msgstr "Kontaktanfragen"
 
-#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
-msgid "YourLS Settings"
-msgstr "YourLS Einstellungen"
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:156
+msgid "Messages"
+msgstr "Nachrichten"
 
-#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
-msgid "URL: http://"
-msgstr "URL: http://"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Zeige ignorierte Anfragen"
 
-#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
-msgid "Username:"
-msgstr "Nutzername:"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Verberge ignorierte Anfragen"
 
-#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
-msgid "Password:"
-msgstr "Passwort:"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Benachrichtigungstyp: "
 
-#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
-msgid "Use SSL "
-msgstr "SSL Verwenden "
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Kontaktvorschlag"
 
-#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
-msgid "yourls Settings saved."
-msgstr "yourls Einstellungen gespeichert"
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "vorgeschlagen von %s"
 
-#: ../../addon/altpager/altpager.php:99
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "Global"
-msgstr "Global"
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:419
+msgid "Hide this contact from others"
+msgstr "Verberge diesen Kontakt vor anderen"
 
-#: ../../addon/altpager/altpager.php:99
-msgid "Force global use of the alternate pager"
-msgstr "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Neue-Kontakt Nachricht senden"
 
-#: ../../addon/altpager/altpager.php:100
-#: ../../addon/remote_permissions/remote_permissions.php:198
-msgid "Individual"
-msgstr "Individuell"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "falls anwendbar"
 
-#: ../../addon/altpager/altpager.php:100
-msgid "Each user chooses whether to use the alternate pager"
-msgstr "Jede/r Nutzer/in kann wählen ob der \"Alternate Pager\" verwendet werden soll"
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:753
+msgid "Approve"
+msgstr "Genehmigen"
 
-#: ../../addon/fbpost/fbpost.php:239
-msgid "Suppress \"View on friendica\""
-msgstr "Unterdrücke \"Auf Friendica Ansehen\""
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Behauptet dich zu kennen: "
 
-#: ../../addon/fbpost/fbpost.php:243
-msgid "Mirror wall posts from facebook to friendica."
-msgstr "Spiegle Pinnwandeinträge von Facebook auf friendica"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "ja"
 
-#: ../../addon/fbpost/fbpost.php:253
-msgid "Post to page/group:"
-msgstr "Auf FB Seite/Gruppe veröffentlichen"
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nein"
 
-#: ../../addon/fbpost/fbpost.php:375
-#, php-format
-msgid "%s:"
-msgstr "%s:"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Genehmigen als: "
 
-#: ../../addon/forumdirectory/forumdirectory.php:22
-msgid "Forum Directory"
-msgstr "Foren Verzeichnis"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Freund"
 
-#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/search.php:89
-#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
-#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
-#: ../../mod/community.php:18 ../../mod/photos.php:914
-msgid "Public access denied."
-msgstr "Öffentlicher Zugriff verweigert."
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Teilenden"
 
-#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
-#: ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Weltweites Verzeichnis"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Verehrer"
 
-#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Auf diesem Server suchen"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Kontakt-/Freundschaftsanfrage"
 
-#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
-#: ../../mod/directory.php:59
-msgid "Finding: "
-msgstr "Funde: "
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Neuer Bewunderer"
 
-#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Verzeichnis"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Keine Kontaktanfragen."
 
-#: ../../addon/forumdirectory/forumdirectory.php:83
-#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
-#: ../../mod/directory.php:61
-msgid "Find"
-msgstr "Finde"
+#: ../../mod/notifications.php:220 ../../include/nav.php:150
+msgid "Notifications"
+msgstr "Benachrichtigungen"
 
-#: ../../addon/forumdirectory/forumdirectory.php:133
-#: ../../mod/profiles.php:682 ../../mod/directory.php:111
-msgid "Age: "
-msgstr "Alter: "
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "%s mag %ss Beitrag"
 
-#: ../../addon/forumdirectory/forumdirectory.php:136
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Geschlecht:"
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "%s mag %ss Beitrag nicht"
 
-#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
-#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
-msgid "Location:"
-msgstr "Ort:"
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s ist jetzt mit %s befreundet"
 
-#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
-#: ../../boot.php:1408
-msgid "Gender:"
-msgstr "Geschlecht:"
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s hat einen neuen Beitrag erstellt"
 
-#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
-#: ../../boot.php:1411
-msgid "Status:"
-msgstr "Status:"
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s hat %ss Beitrag kommentiert"
 
-#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
-#: ../../boot.php:1413
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
 
-#: ../../addon/forumdirectory/forumdirectory.php:164
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
-msgid "About:"
-msgstr "Über:"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Netzwerk Benachrichtigungen"
 
-#: ../../addon/forumdirectory/forumdirectory.php:201
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Keine weiteren Systembenachrichtigungen."
+
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Systembenachrichtigungen"
 
-#: ../../addon/group_text/group_text.php:46
-msgid "Group Text settings updated."
-msgstr "Gruppen Text Einstellungen aktualisiert"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Keine weiteren persönlichen Benachrichtigungen"
 
-#: ../../addon/remote_permissions/remote_permissions.php:45
-msgid "Remote Permissions Settings"
-msgstr "Entfernte Privatsphäreneinstellungen"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Persönliche Benachrichtigungen"
 
-#: ../../addon/remote_permissions/remote_permissions.php:46
-msgid ""
-"Allow recipients of your private posts to see the other recipients of the "
-"posts"
-msgstr "Erlaube Empfängern von privaten Nachrichten zu sehen wer die anderen Empfänger sind"
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
 
-#: ../../addon/remote_permissions/remote_permissions.php:58
-msgid "Remote Permissions settings updated."
-msgstr "Entfernte Privatsphäreneinstellungen aktualisiert."
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Pinnwand Benachrichtigungen"
 
-#: ../../addon/remote_permissions/remote_permissions.php:124
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Sichtbar für:"
+#: ../../mod/like.php:151 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1556
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "Foto"
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "Visible to"
-msgstr "Sichtbar für"
+#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1874
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "Status"
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "may only be a partial list"
-msgstr "könnte nur ein Teil der Liste sein"
+#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
+#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "The posts of every user on this server show the post recipients"
-msgstr "Die Beiträge jedes Nutzers dieses Servers werden die Empfänger des Beitrags anzeigen"
+#: ../../mod/like.php:170 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s mag %2$ss %3$s nicht"
 
-#: ../../addon/remote_permissions/remote_permissions.php:198
-msgid "Each user chooses whether his/her posts show the post recipients"
-msgstr "Jede/r Nutzer/in kann wählen ob die Empfänger der Beiträge angezeigt werden sollen oder nicht"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
 
-#: ../../addon/statusnet/statusnet.php:358
+#: ../../mod/openid.php:53
 msgid ""
-"Mirror all posts from statusnet that are no replies or repeated messages"
-msgstr "Spiegle alle Beiträge von StatusNet die keine Antworten oder wiederholten Nachrichten sind"
+"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."
 
-#: ../../addon/statusnet/statusnet.php:362
-msgid "Shortening method that optimizes the post"
-msgstr "Kürzungsverfahren, das den Beitrag optimiert"
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Anmeldung fehlgeschlagen."
 
-#: ../../addon/tumblr/tumblr.php:144
-msgid "You are now authenticated to tumblr."
-msgstr "Du bist nun auf tumblr authentifiziert."
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Quelle (bbcode) Text:"
 
-#: ../../addon/tumblr/tumblr.php:145
-msgid "return to the connector page"
-msgstr "zurück zur Connector Seite"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
 
-#: ../../addon/tumblr/tumblr.php:188
-msgid "(Re-)Authenticate your tumblr page"
-msgstr "(Re-)Authentifizierung deiner tumblr Seite"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Originaltext:"
 
-#: ../../addon/tumblr/tumblr.php:217
-msgid "Post to page:"
-msgstr "Auf tumblr veröffentlichen"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (reines HTML): "
 
-#: ../../addon/tumblr/tumblr.php:228
-msgid "You are not authenticated to tumblr"
-msgstr "Du bist gegenüber tumblr nicht authentifiziert"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html: "
 
-#: ../../addon/twitter/twitter.php:213
-msgid "Mirror all posts from twitter that are no replies or retweets"
-msgstr "Spiegle alle Beiträge von Twitter die keine Antworten oder wiederholten Nachrichten sind"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../addon/twitter/twitter.php:217
-msgid "Shortening method that optimizes the tweet"
-msgstr "Kürzungsverfahren, das den Tweet optimiert"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../addon/twitter/twitter.php:560
-msgid "Name of the Twitter Application"
-msgstr "Name der Twitter Anwendung"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../addon/twitter/twitter.php:560
-msgid ""
-"set this to avoid mirroring postings from ~friendica back to ~friendica"
-msgstr "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
-#: ../../include/nav.php:77 ../../mod/profperm.php:103
-#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
-#: ../../boot.php:1868
-msgid "Profile"
-msgstr "Profil"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
-msgid "Full Name:"
-msgstr "Kompletter Name:"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Texteingabe (Diaspora Format): "
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Themeneinstellungen aktualisiert."
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Geburtstag:"
+#: ../../mod/admin.php:96 ../../mod/admin.php:477
+msgid "Site"
+msgstr "Seite"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Alter:"
+#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761
+msgid "Users"
+msgstr "Nutzer"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "für %1$d %2$s"
+#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886
+msgid "Plugins"
+msgstr "Plugins"
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
-msgid "Sexual Preference:"
-msgstr "Sexuelle Vorlieben:"
+#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086
+msgid "Themes"
+msgstr "Themen"
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
-msgid "Hometown:"
-msgstr "Heimatort:"
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "DB Updates"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tags"
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173
+msgid "Logs"
+msgstr "Protokolle"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
-msgid "Political Views:"
-msgstr "Politische Ansichten:"
+#: ../../mod/admin.php:120 ../../include/nav.php:178
+msgid "Admin"
+msgstr "Administration"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religion:"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Plugin Features"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobbies/Interessen:"
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Nutzeranmeldungen die auf Bestätigung warten"
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
-msgid "Likes:"
-msgstr "Likes:"
+#: ../../mod/admin.php:158 ../../mod/admin.php:794 ../../mod/admin.php:994
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:184
+#: ../../mod/viewsrc.php:15 ../../include/items.php:3926
+msgid "Item not found."
+msgstr "Beitrag nicht gefunden."
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
-msgid "Dislikes:"
-msgstr "Dislikes:"
+#: ../../mod/admin.php:182 ../../mod/admin.php:718
+msgid "Normal Account"
+msgstr "Normales Konto"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Kontaktinformationen und Soziale Netzwerke:"
+#: ../../mod/admin.php:183 ../../mod/admin.php:719
+msgid "Soapbox Account"
+msgstr "Marktschreier-Konto"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Musikalische Interessen:"
+#: ../../mod/admin.php:184 ../../mod/admin.php:720
+msgid "Community/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Literatur/Bücher:"
+#: ../../mod/admin.php:185 ../../mod/admin.php:721
+msgid "Automatic Friend Account"
+msgstr "Automatisches Freundekonto"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Fernsehen:"
-
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Filme/Tänze/Kultur/Unterhaltung:"
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "Blog Account"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Liebesleben:"
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "Privates Forum"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Arbeit/Beschäftigung:"
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "Nachrichten-Warteschlangen"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Schule/Ausbildung:"
+#: ../../mod/admin.php:211 ../../mod/admin.php:476 ../../mod/admin.php:746
+#: ../../mod/admin.php:843 ../../mod/admin.php:885 ../../mod/admin.php:1051
+#: ../../mod/admin.php:1085 ../../mod/admin.php:1172
+msgid "Administration"
+msgstr "Administration"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Männlich"
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Zusammenfassung"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Weiblich"
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "Registrierte Nutzer"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Momentan männlich"
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "Anstehende Anmeldungen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Momentan weiblich"
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Version"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Hauptsächlich männlich"
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "Aktive Plugins"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Hauptsächlich weiblich"
+#: ../../mod/admin.php:401
+msgid "Site settings updated."
+msgstr "Seiteneinstellungen aktualisiert."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/admin.php:430 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
+msgstr "Kein spezielles Theme für mobile Geräte verwenden."
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/admin.php:447
+msgid "Multi user instance"
+msgstr "Mehrbenutzer Instanz"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transsexuell"
+#: ../../mod/admin.php:463
+msgid "Closed"
+msgstr "Geschlossen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermaphrodit"
+#: ../../mod/admin.php:464
+msgid "Requires approval"
+msgstr "Bedarf der Zustimmung"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neuter"
+#: ../../mod/admin.php:465
+msgid "Open"
+msgstr "Offen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Nicht spezifiziert"
+#: ../../mod/admin.php:469
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Andere"
+#: ../../mod/admin.php:470
+msgid "Force all links to use SSL"
+msgstr "SSL für alle Links erzwingen"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Unentschieden"
+#: ../../mod/admin.php:471
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Männer"
+#: ../../mod/admin.php:479 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Registrierung"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Frauen"
+#: ../../mod/admin.php:480
+msgid "File upload"
+msgstr "Datei hochladen"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Schwul"
+#: ../../mod/admin.php:481
+msgid "Policies"
+msgstr "Regeln"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbisch"
+#: ../../mod/admin.php:482
+msgid "Advanced"
+msgstr "Erweitert"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Keine Vorlieben"
+#: ../../mod/admin.php:483
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisexuell"
+#: ../../mod/admin.php:487
+msgid "Site name"
+msgstr "Seitenname"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosexual"
+#: ../../mod/admin.php:488
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstinent"
+#: ../../mod/admin.php:489
+msgid "System language"
+msgstr "Systemsprache"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Jungfrauen"
+#: ../../mod/admin.php:490
+msgid "System theme"
+msgstr "Systemweites Thema"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviant"
+#: ../../mod/admin.php:490
+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>"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../mod/admin.php:491
+msgid "Mobile system theme"
+msgstr "Systemweites mobiles Thema"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Oodles"
+#: ../../mod/admin.php:491
+msgid "Theme for mobile devices"
+msgstr "Thema für mobile Geräte"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nonsexual"
+#: ../../mod/admin.php:492
+msgid "SSL link policy"
+msgstr "Regeln für SSL Links"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../mod/admin.php:492
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Einsam"
+#: ../../mod/admin.php:493
+msgid "'Share' element"
+msgstr "'Teilen' Element"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Verfügbar"
+#: ../../mod/admin.php:493
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Nicht verfügbar"
+#: ../../mod/admin.php:494
+msgid "Hide help entry from navigation menu"
+msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr "verknallt"
+#: ../../mod/admin.php:494
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "verliebt"
+#: ../../mod/admin.php:495
+msgid "Single user instance"
+msgstr "Ein-Nutzer Instanz"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Dating"
+#: ../../mod/admin.php:495
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Untreu"
+#: ../../mod/admin.php:496
+msgid "Maximum image size"
+msgstr "Maximale Größe von Bildern"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sexbesessen"
+#: ../../mod/admin.php:496
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:279
-#: ../../include/user.php:283
-msgid "Friends"
-msgstr "Freunde"
+#: ../../mod/admin.php:497
+msgid "Maximum image length"
+msgstr "Maximale Länge von Bildern"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Freunde/Zuwendungen"
+#: ../../mod/admin.php:497
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/admin.php:498
+msgid "JPEG image quality"
+msgstr "Qualität des JPEG Bildes"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Verlobt"
+#: ../../mod/admin.php:498
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Verheiratet"
+#: ../../mod/admin.php:500
+msgid "Register policy"
+msgstr "Registrierungsmethode"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr "imaginär verheiratet"
+#: ../../mod/admin.php:501
+msgid "Maximum Daily Registrations"
+msgstr "Maximum täglicher Neuanmeldungen"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partner"
+#: ../../mod/admin.php:501
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "zusammenlebend"
+#: ../../mod/admin.php:502
+msgid "Register text"
+msgstr "Registrierungstext"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "wilde Ehe"
+#: ../../mod/admin.php:502
+msgid "Will be displayed prominently on the registration page."
+msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Glücklich"
+#: ../../mod/admin.php:503
+msgid "Accounts abandoned after x days"
+msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "Nicht auf der Suche"
+#: ../../mod/admin.php:503
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/admin.php:504
+msgid "Allowed friend domains"
+msgstr "Erlaubte Domains für Kontakte"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Betrogen"
+#: ../../mod/admin.php:504
+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 Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Getrennt"
+#: ../../mod/admin.php:505
+msgid "Allowed email domains"
+msgstr "Erlaubte Domains für E-Mails"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Unstabil"
+#: ../../mod/admin.php:505
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Geschieden"
+#: ../../mod/admin.php:506
+msgid "Block public"
+msgstr "Öffentlichen Zugriff blockieren"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "imaginär geschieden"
+#: ../../mod/admin.php:506
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Verwitwet"
+#: ../../mod/admin.php:507
+msgid "Force publish"
+msgstr "Erzwinge Veröffentlichung"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Unsicher"
+#: ../../mod/admin.php:507
+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."
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "Ist kompliziert"
+#: ../../mod/admin.php:508
+msgid "Global directory update URL"
+msgstr "URL für Updates beim weltweiten Verzeichnis"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Ist mir nicht wichtig"
+#: ../../mod/admin.php:508
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Frag mich"
+#: ../../mod/admin.php:509
+msgid "Allow threaded items"
+msgstr "Erlaube Threads in Diskussionen"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "wird nicht mehr gefolgt"
+#: ../../mod/admin.php:509
+msgid "Allow infinite level threading for items on this site."
+msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:838
-msgid "Poke"
-msgstr "Anstupsen"
+#: ../../mod/admin.php:510
+msgid "Private posts by default for new users"
+msgstr "Private Beiträge als Standard für neue Nutzer"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:832
-msgid "View Status"
-msgstr "Pinnwand anschauen"
+#: ../../mod/admin.php:510
+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."
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:833
-msgid "View Profile"
-msgstr "Profil anschauen"
+#: ../../mod/admin.php:511
+msgid "Don't include post content in email notifications"
+msgstr "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:834
-msgid "View Photos"
-msgstr "Bilder anschauen"
+#: ../../mod/admin.php:511
+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 Email-Benachrichtigungen einbinden."
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:251
-#: ../../include/conversation.php:835
-msgid "Network Posts"
-msgstr "Netzwerkbeiträge"
+#: ../../mod/admin.php:513
+msgid "Block multiple registrations"
+msgstr "Unterbinde Mehrfachregistrierung"
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:251
-#: ../../include/conversation.php:836
-msgid "Edit Contact"
-msgstr "Kontakt bearbeiten"
+#: ../../mod/admin.php:513
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
 
-#: ../../include/Contact.php:231 ../../include/Contact.php:251
-#: ../../include/conversation.php:837
-msgid "Send PM"
-msgstr "Private Nachricht senden"
+#: ../../mod/admin.php:514
+msgid "OpenID support"
+msgstr "OpenID Unterstützung"
 
-#: ../../include/text.php:276
-msgid "prev"
-msgstr "vorige"
+#: ../../mod/admin.php:514
+msgid "OpenID support for registration and logins."
+msgstr "OpenID-Unterstützung für Registrierung und Login."
 
-#: ../../include/text.php:278
-msgid "first"
-msgstr "erste"
+#: ../../mod/admin.php:515
+msgid "Fullname check"
+msgstr "Namen auf Vollständigkeit überprüfen"
 
-#: ../../include/text.php:307
-msgid "last"
-msgstr "letzte"
+#: ../../mod/admin.php:515
+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."
 
-#: ../../include/text.php:310
-msgid "next"
-msgstr "nächste"
+#: ../../mod/admin.php:516
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8 Reguläre Ausdrücke"
 
-#: ../../include/text.php:328
-msgid "newer"
-msgstr "neuer"
+#: ../../mod/admin.php:516
+msgid "Use PHP UTF8 regular expressions"
+msgstr "PHP UTF8 Ausdrücke verwenden"
 
-#: ../../include/text.php:332
-msgid "older"
-msgstr "älter"
+#: ../../mod/admin.php:517
+msgid "Show Community Page"
+msgstr "Gemeinschaftsseite anzeigen"
 
-#: ../../include/text.php:697
-msgid "No contacts"
-msgstr "Keine Kontakte"
+#: ../../mod/admin.php:517
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
 
-#: ../../include/text.php:706
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d Kontakt"
-msgstr[1] "%d Kontakte"
+#: ../../mod/admin.php:518
+msgid "Enable OStatus support"
+msgstr "OStatus Unterstützung aktivieren"
 
-#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
-msgid "View Contacts"
-msgstr "Kontakte anzeigen"
+#: ../../mod/admin.php:518
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
 
-#: ../../include/text.php:778 ../../include/text.php:779
-#: ../../include/nav.php:118 ../../mod/search.php:99
-msgid "Search"
-msgstr "Suche"
+#: ../../mod/admin.php:519
+msgid "Enable Diaspora support"
+msgstr "Diaspora-Support aktivieren"
 
-#: ../../include/text.php:819
-msgid "poke"
-msgstr "anstupsen"
+#: ../../mod/admin.php:519
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
 
-#: ../../include/text.php:819 ../../include/conversation.php:211
-msgid "poked"
-msgstr "stupste"
+#: ../../mod/admin.php:520
+msgid "Only allow Friendica contacts"
+msgstr "Nur Friendica-Kontakte erlauben"
 
-#: ../../include/text.php:820
-msgid "ping"
-msgstr "anpingen"
+#: ../../mod/admin.php:520
+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."
 
-#: ../../include/text.php:820
-msgid "pinged"
-msgstr "pingte"
+#: ../../mod/admin.php:521
+msgid "Verify SSL"
+msgstr "SSL Überprüfen"
 
-#: ../../include/text.php:821
-msgid "prod"
-msgstr "knuffen"
+#: ../../mod/admin.php:521
+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."
 
-#: ../../include/text.php:821
-msgid "prodded"
-msgstr "knuffte"
+#: ../../mod/admin.php:522
+msgid "Proxy user"
+msgstr "Proxy Nutzer"
 
-#: ../../include/text.php:822
-msgid "slap"
-msgstr "ohrfeigen"
+#: ../../mod/admin.php:523
+msgid "Proxy URL"
+msgstr "Proxy URL"
 
-#: ../../include/text.php:822
-msgid "slapped"
-msgstr "ohrfeigte"
+#: ../../mod/admin.php:524
+msgid "Network timeout"
+msgstr "Netzwerk Wartezeit"
 
-#: ../../include/text.php:823
-msgid "finger"
-msgstr "befummeln"
+#: ../../mod/admin.php:524
+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)."
 
-#: ../../include/text.php:823
-msgid "fingered"
-msgstr "befummelte"
+#: ../../mod/admin.php:525
+msgid "Delivery interval"
+msgstr "Zustellungsintervall"
 
-#: ../../include/text.php:824
-msgid "rebuff"
-msgstr "eine Abfuhr erteilen"
+#: ../../mod/admin.php:525
+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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
 
-#: ../../include/text.php:824
-msgid "rebuffed"
-msgstr "abfuhrerteilte"
+#: ../../mod/admin.php:526
+msgid "Poll interval"
+msgstr "Abfrageintervall"
 
-#: ../../include/text.php:836
-msgid "happy"
-msgstr "glücklich"
+#: ../../mod/admin.php:526
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
 
-#: ../../include/text.php:837
-msgid "sad"
-msgstr "traurig"
+#: ../../mod/admin.php:527
+msgid "Maximum Load Average"
+msgstr "Maximum Load Average"
 
-#: ../../include/text.php:838
-msgid "mellow"
-msgstr "sanft"
+#: ../../mod/admin.php:527
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Maximale Systemlast bevor Verteil- und Empfangsprozesse verschoben werden - Standard 50"
 
-#: ../../include/text.php:839
-msgid "tired"
-msgstr "müde"
+#: ../../mod/admin.php:529
+msgid "Use MySQL full text engine"
+msgstr "Nutze MySQL full text engine"
 
-#: ../../include/text.php:840
-msgid "perky"
-msgstr "frech"
+#: ../../mod/admin.php:529
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
 
-#: ../../include/text.php:841
-msgid "angry"
-msgstr "sauer"
+#: ../../mod/admin.php:530
+msgid "Path to item cache"
+msgstr "Pfad zum Eintrag Cache"
 
-#: ../../include/text.php:842
-msgid "stupified"
-msgstr "verblüfft"
+#: ../../mod/admin.php:531
+msgid "Cache duration in seconds"
+msgstr "Cache-Dauer in Sekunden"
 
-#: ../../include/text.php:843
-msgid "puzzled"
-msgstr "verwirrt"
+#: ../../mod/admin.php:531
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
 
-#: ../../include/text.php:844
-msgid "interested"
-msgstr "interessiert"
+#: ../../mod/admin.php:532
+msgid "Path for lock file"
+msgstr "Pfad für die Sperrdatei"
 
-#: ../../include/text.php:845
-msgid "bitter"
-msgstr "verbittert"
+#: ../../mod/admin.php:533
+msgid "Temp path"
+msgstr "Temp Pfad"
 
-#: ../../include/text.php:846
-msgid "cheerful"
-msgstr "fröhlich"
+#: ../../mod/admin.php:534
+msgid "Base path to installation"
+msgstr "Basis-Pfad zur Installation"
 
-#: ../../include/text.php:847
-msgid "alive"
-msgstr "lebendig"
+#: ../../mod/admin.php:552
+msgid "Update has been marked successful"
+msgstr "Update wurde als erfolgreich markiert"
 
-#: ../../include/text.php:848
-msgid "annoyed"
-msgstr "verärgert"
+#: ../../mod/admin.php:562
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
 
-#: ../../include/text.php:849
-msgid "anxious"
-msgstr "unruhig"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "Update %s war erfolgreich."
 
-#: ../../include/text.php:850
-msgid "cranky"
-msgstr "schrullig"
+#: ../../mod/admin.php:569
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status."
 
-#: ../../include/text.php:851
-msgid "disturbed"
-msgstr "verstört"
+#: ../../mod/admin.php:572
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "Updatefunktion %s konnte nicht gefunden werden."
 
-#: ../../include/text.php:852
-msgid "frustrated"
-msgstr "frustriert"
+#: ../../mod/admin.php:587
+msgid "No failed updates."
+msgstr "Keine fehlgeschlagenen Updates."
 
-#: ../../include/text.php:853
-msgid "motivated"
-msgstr "motiviert"
+#: ../../mod/admin.php:591
+msgid "Failed Updates"
+msgstr "Fehlgeschlagene Updates"
 
-#: ../../include/text.php:854
-msgid "relaxed"
-msgstr "entspannt"
+#: ../../mod/admin.php:592
+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."
 
-#: ../../include/text.php:855
-msgid "surprised"
-msgstr "überrascht"
+#: ../../mod/admin.php:593
+msgid "Mark success (if update was manually applied)"
+msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
 
-#: ../../include/text.php:1019
-msgid "January"
-msgstr "Januar"
+#: ../../mod/admin.php:594
+msgid "Attempt to execute this update step automatically"
+msgstr "Versuchen, diesen Schritt automatisch auszuführen"
 
-#: ../../include/text.php:1019
-msgid "February"
-msgstr "Februar"
+#: ../../mod/admin.php:619
+#, 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"
 
-#: ../../include/text.php:1019
-msgid "March"
-msgstr "März"
+#: ../../mod/admin.php:626
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s Nutzer gelöscht"
+msgstr[1] "%s Nutzer gelöscht"
 
-#: ../../include/text.php:1019
-msgid "April"
-msgstr "April"
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Nutzer '%s' gelöscht"
 
-#: ../../include/text.php:1019
-msgid "May"
-msgstr "Mai"
+#: ../../mod/admin.php:673
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Nutzer '%s' entsperrt"
 
-#: ../../include/text.php:1019
-msgid "June"
-msgstr "Juni"
+#: ../../mod/admin.php:673
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Nutzer '%s' gesperrt"
 
-#: ../../include/text.php:1019
-msgid "July"
-msgstr "Juli"
+#: ../../mod/admin.php:749
+msgid "select all"
+msgstr "Alle auswählen"
 
-#: ../../include/text.php:1019
-msgid "August"
-msgstr "August"
+#: ../../mod/admin.php:750
+msgid "User registrations waiting for confirm"
+msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
 
-#: ../../include/text.php:1019
-msgid "September"
-msgstr "September"
+#: ../../mod/admin.php:751
+msgid "Request date"
+msgstr "Anfragedatum"
 
-#: ../../include/text.php:1019
-msgid "October"
-msgstr "Oktober"
+#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Name"
 
-#: ../../include/text.php:1019
-msgid "November"
-msgstr "November"
+#: ../../mod/admin.php:751 ../../mod/admin.php:762
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "E-Mail"
 
-#: ../../include/text.php:1019
-msgid "December"
-msgstr "Dezember"
+#: ../../mod/admin.php:752
+msgid "No registrations."
+msgstr "Keine Neuanmeldungen."
 
-#: ../../include/text.php:1124
-msgid "bytes"
-msgstr "Byte"
+#: ../../mod/admin.php:754
+msgid "Deny"
+msgstr "Verwehren"
 
-#: ../../include/text.php:1151 ../../include/text.php:1163
-msgid "Click to open/close"
-msgstr "Zum öffnen/schließen klicken"
+#: ../../mod/admin.php:756 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Sperren"
 
-#: ../../include/text.php:1304 ../../mod/events.php:335
-msgid "link to source"
-msgstr "Link zum Originalbeitrag"
+#: ../../mod/admin.php:757 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Entsperren"
 
-#: ../../include/text.php:1336 ../../include/user.php:237
-msgid "default"
-msgstr "Standard"
+#: ../../mod/admin.php:758
+msgid "Site admin"
+msgstr "Seitenadministrator"
 
-#: ../../include/text.php:1348
-msgid "Select an alternate language"
-msgstr "Alternative Sprache auswählen"
+#: ../../mod/admin.php:759
+msgid "Account expired"
+msgstr "Account ist abgelaufen"
 
-#: ../../include/text.php:1558
-msgid "activity"
-msgstr "Aktivität"
+#: ../../mod/admin.php:762
+msgid "Register date"
+msgstr "Anmeldedatum"
 
-#: ../../include/text.php:1560 ../../mod/content.php:628
-#: ../../object/Item.php:354 ../../object/Item.php:367
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "Kommentar"
+#: ../../mod/admin.php:762
+msgid "Last login"
+msgstr "Letzte Anmeldung"
 
-#: ../../include/text.php:1561
-msgid "post"
-msgstr "Beitrag"
+#: ../../mod/admin.php:762
+msgid "Last item"
+msgstr "Letzter Beitrag"
 
-#: ../../include/text.php:1716
-msgid "Item filed"
-msgstr "Beitrag abgelegt"
+#: ../../mod/admin.php:762
+msgid "Account"
+msgstr "Nutzerkonto"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Für jeden sichtbar"
+#: ../../mod/admin.php:764
+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?"
 
-#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "show"
-msgstr "zeigen"
+#: ../../mod/admin.php:765
+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?"
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "don't show"
-msgstr "nicht zeigen"
+#: ../../mod/admin.php:806
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s deaktiviert."
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Abgemeldet."
+#: ../../mod/admin.php:810
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s aktiviert."
 
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "Anmeldung fehlgeschlagen."
+#: ../../mod/admin.php:820 ../../mod/admin.php:1023
+msgid "Disable"
+msgstr "Ausschalten"
 
-#: ../../include/auth.php:128
-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."
+#: ../../mod/admin.php:822 ../../mod/admin.php:1025
+msgid "Enable"
+msgstr "Einschalten"
 
-#: ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Die Fehlermeldung lautete:"
+#: ../../mod/admin.php:845 ../../mod/admin.php:1053
+msgid "Toggle"
+msgstr "Umschalten"
 
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr "Fehler beim Verarbeiten der Account Datei"
+#: ../../mod/admin.php:846 ../../mod/admin.php:1054 ../../mod/newmember.php:22
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
+msgid "Settings"
+msgstr "Einstellungen"
 
-#: ../../include/uimport.php:67
-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?"
+#: ../../mod/admin.php:853 ../../mod/admin.php:1063
+msgid "Author: "
+msgstr "Autor:"
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel."
+#: ../../mod/admin.php:854 ../../mod/admin.php:1064
+msgid "Maintainer: "
+msgstr "Betreuer:"
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr "Fehler! Konnte den Nickname nicht überprüfen."
+#: ../../mod/admin.php:983
+msgid "No themes found."
+msgstr "Keine Themen gefunden."
 
-#: ../../include/uimport.php:85
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
+#: ../../mod/admin.php:1045
+msgid "Screenshot"
+msgstr "Bildschirmfoto"
 
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
+#: ../../mod/admin.php:1091
+msgid "[Experimental]"
+msgstr "[Experimentell]"
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr "Fehler beim Anlegen des Nutzerkontos"
+#: ../../mod/admin.php:1092
+msgid "[Unsupported]"
+msgstr "[Nicht unterstützt]"
 
-#: ../../include/uimport.php:167
-#, 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"
+#: ../../mod/admin.php:1119
+msgid "Log settings updated."
+msgstr "Protokolleinstellungen aktualisiert."
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
+#: ../../mod/admin.php:1175
+msgid "Clear"
+msgstr "löschen"
 
-#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
-#: ../../mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l, d. F Y\\, H:i"
+#: ../../mod/admin.php:1181
+msgid "Debugging"
+msgstr "Protokoll führen"
 
-#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Beginnt:"
+#: ../../mod/admin.php:1182
+msgid "Log file"
+msgstr "Protokolldatei"
 
-#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Endet:"
+#: ../../mod/admin.php:1182
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Webserver muss Schreibrechte besitzen. Abhängig vom Friendica-Installationsverzeichnis."
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
-msgid "Disallowed profile URL."
-msgstr "Nicht erlaubte Profil-URL."
+#: ../../mod/admin.php:1183
+msgid "Log level"
+msgstr "Protokoll-Level"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "Connect-URL fehlt"
+#: ../../mod/admin.php:1232 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Jetzt aktualisieren"
 
-#: ../../include/follow.php:59
-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/admin.php:1233
+msgid "Close"
+msgstr "Schließen"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
+#: ../../mod/admin.php:1239
+msgid "FTP Host"
+msgstr "FTP Host"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
+#: ../../mod/admin.php:1240
+msgid "FTP Path"
+msgstr "FTP Pfad"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Es wurde kein Autor oder Name gefunden."
+#: ../../mod/admin.php:1241
+msgid "FTP User"
+msgstr "FTP Nutzername"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
+#: ../../mod/admin.php:1242
+msgid "FTP Password"
+msgstr "FTP Passwort"
 
-#: ../../include/follow.php:86
-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/message.php:9 ../../include/nav.php:159
+msgid "New Message"
+msgstr "Neue Nachricht"
 
-#: ../../include/follow.php:87
-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/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Kein Empfänger gewählt."
 
-#: ../../include/follow.php:93
-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/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Konnte die Kontaktinformationen nicht finden."
 
-#: ../../include/follow.php:103
-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/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Nachricht konnte nicht gesendet werden."
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Konnte die Kontaktinformationen nicht empfangen."
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Konnte Nachrichten nicht abrufen."
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "folgen"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Nachricht gesendet."
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Du benötigst eine Einladung."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Möchtest du wirklich diese Nachricht löschen?"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Die Einladung konnte nicht überprüft werden."
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Nachricht gelöscht."
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Ungültige OpenID URL"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Unterhaltung gelöscht."
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "Bitte trage die erforderlichen Informationen ein."
+#: ../../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:958 ../../include/conversation.php:976
+msgid "Please enter a link URL:"
+msgstr "Bitte gib die URL des Links ein:"
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "Bitte verwende einen kürzeren Namen."
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Private Nachricht senden"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "Der Name ist zu kurz."
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "An:"
 
-#: ../../include/user.php:98
-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/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Betreff:"
 
-#: ../../include/user.php:103
-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/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Deine Nachricht:"
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "Keine gültige E-Mail-Adresse."
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1042
+msgid "Upload photo"
+msgstr "Foto hochladen"
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1046
+msgid "Insert web link"
+msgstr "Einen Link einfügen"
 
-#: ../../include/user.php:122
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Keine Nachrichten."
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "'Unbekannter Absender - %s"
 
-#: ../../include/user.php:138
-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/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Du und %s"
 
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s und du"
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Unterhaltung löschen"
 
-#: ../../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."
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d. M Y - g:i A"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Unbekannt | Nicht kategorisiert"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d Nachricht"
+msgstr[1] "%d Nachrichten"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Sofort blockieren"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Nachricht nicht verfügbar."
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Zwielichtig, Spammer, Selbstdarsteller"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Nachricht löschen"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Ist mir bekannt, hab aber keine Meinung"
+#: ../../mod/message.php:548
+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."
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "OK, wahrscheinlich harmlos"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Antwort senden"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Seriös, hat mein Vertrauen"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Beitrag nicht gefunden"
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "immer wieder"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Beitrag bearbeiten"
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Stündlich"
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1043
+msgid "upload photo"
+msgstr "Bild hochladen"
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Zweimal täglich"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1044
+msgid "Attach file"
+msgstr "Datei anhängen"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1045
+msgid "attach file"
+msgstr "Datei anhängen"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1047
+msgid "web link"
+msgstr "Weblink"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1048
+msgid "Insert video link"
+msgstr "Video-Adresse einfügen"
 
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747
-#: ../../mod/admin.php:757
-msgid "Email"
-msgstr "E-Mail"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1049
+msgid "video link"
+msgstr "Video-Link"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
-#: ../../mod/dfrn_request.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1050
+msgid "Insert audio link"
+msgstr "Audio-Adresse einfügen"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zott"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1051
+msgid "audio link"
+msgstr "Audio-Link"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1052
+msgid "Set your location"
+msgstr "Deinen Standort festlegen"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/Chat"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1053
+msgid "set location"
+msgstr "Ort setzen"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1054
+msgid "Clear browser location"
+msgstr "Browser-Standort leeren"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1055
+msgid "clear location"
+msgstr "Ort löschen"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Neuen Kontakt hinzufügen"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1061
+msgid "Permission settings"
+msgstr "Berechtigungseinstellungen"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Adresse oder Web-Link eingeben"
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1070
+msgid "CC: email addresses"
+msgstr "Cc: E-Mail-Addressen"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Beispiel: bob@example.com, http://example.com/barbara"
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1071
+msgid "Public post"
+msgstr "Öffentlicher Beitrag"
 
-#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
-#: ../../mod/match.php:58 ../../boot.php:1338
-msgid "Connect"
-msgstr "Verbinden"
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1057
+msgid "Set title"
+msgstr "Titel setzen"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d Einladung verfügbar"
-msgstr[1] "%d Einladungen verfügbar"
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1059
+msgid "Categories (comma-separated list)"
+msgstr "Kategorien (kommasepariert)"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Leute finden"
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1073
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Z.B.: bob@example.com, mary@example.com"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Name oder Interessen eingeben"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:579
+msgid "Profile not found."
+msgstr "Profil nicht gefunden."
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Verbinden/Folgen"
+#: ../../mod/dfrn_confirm.php:119
+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."
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Beispiel: Robert Morgenstein, Angeln"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Antwort der Gegenstelle unverständlich."
 
-#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
-#: ../../view/theme/diabook/theme.php:520
-msgid "Friend Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Unerwartete Antwort der Gegenstelle: "
 
-#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
-msgid "Similar Interests"
-msgstr "Ähnliche Interessen"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Bestätigung erfolgreich abgeschlossen."
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Zufälliges Profil"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Gegenstelle meldet: "
 
-#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
-msgid "Invite Friends"
-msgstr "Freunde einladen"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal."
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Netzwerke"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Kontaktanfrage schlug fehl oder wurde zurückgezogen."
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Alle Netzwerke"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Konnte das Bild des Kontakts nicht speichern."
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Gespeicherte Ordner"
-
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Alles"
-
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorien"
-
-#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
+#: ../../include/conversation.php:172
 #, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d gemeinsamer Kontakt"
-msgstr[1] "%d gemeinsame Kontakte"
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s ist nun mit %2$s befreundet"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr " bei Last.fm"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Für '%s' wurde kein Nutzer gefunden"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
-msgid "Image/photo"
-msgstr "Bild/Foto"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
 
-#: ../../include/bbcode.php:272
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
+#: ../../mod/dfrn_confirm.php:583
+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."
 
-#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
-msgid "$1 wrote:"
-msgstr "$1 hat geschrieben:"
+#: ../../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."
 
-#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
-msgid "Encrypted content"
-msgstr "Verschlüsselter Inhalt"
+#: ../../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."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Verschiedenes"
+#: ../../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 "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal."
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "Jahr"
+#: ../../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."
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "Monat"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Die Updates für dein Profil konnten nicht gespeichert werden"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "Tag"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Auf %s wurde die Verbindung akzeptiert"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nie"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s ist %2$s beigetreten"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "vor weniger als einer Sekunde"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "Woche"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "Stunde"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Veranstaltung bearbeiten"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "Stunden"
+#: ../../mod/events.php:335 ../../include/text.php:1304
+msgid "link to source"
+msgstr "Link zum Originalbeitrag"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "Minute"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
+#: ../../boot.php:1885 ../../include/nav.php:79
+msgid "Events"
+msgstr "Veranstaltungen"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "Minuten"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Neue Veranstaltung erstellen"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "Sekunde"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Vorherige"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "Sekunden"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Nächste"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s her"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "Stunde:Minute"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1764
-#, php-format
-msgid "%s's birthday"
-msgstr "%ss Geburtstag"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Veranstaltungsdetails"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1765
+#: ../../mod/events.php:457
 #, php-format
-msgid "Happy Birthday %s"
-msgstr "Herzlichen Glückwunsch %s"
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
 
-#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716
-msgid "[Name Withheld]"
-msgstr "[Name unterdrückt]"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Veranstaltungsbeginn:"
 
-#: ../../include/items.php:3446
-msgid "A new person is sharing with you at "
-msgstr "Eine neue Person teilt mit dir auf "
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Benötigt"
 
-#: ../../include/items.php:3446
-msgid "You have a new follower at "
-msgstr "Du hast einen neuen Kontakt auf "
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
 
-#: ../../include/items.php:3926 ../../mod/admin.php:158
-#: ../../mod/admin.php:789 ../../mod/admin.php:989 ../../mod/display.php:51
-#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
-msgid "Item not found."
-msgstr "Beitrag nicht gefunden."
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Veranstaltungsende:"
 
-#: ../../include/items.php:3965
-msgid "Do you really want to delete this item?"
-msgstr "Möchtest du wirklich dieses Item löschen?"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "An Zeitzone des Betrachters anpassen"
 
-#: ../../include/items.php:3967 ../../mod/profiles.php:606
-#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-msgid "Yes"
-msgstr "Ja"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Beschreibung"
 
-#: ../../include/items.php:4160
-msgid "Archives"
-msgstr "Archiv"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+msgid "Location:"
+msgstr "Ort:"
 
-#: ../../include/plugin.php:439 ../../include/plugin.php:441
-msgid "Click here to upgrade."
-msgstr "Zum Upgraden hier klicken."
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titel:"
 
-#: ../../include/plugin.php:447
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Veranstaltung teilen"
 
-#: ../../include/plugin.php:452
-msgid "This action is not available under your subscription plan."
-msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
+#: ../../boot.php:1875 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Bilder"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "(kein Betreff)"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Dateien"
 
-#: ../../include/diaspora.php:621 ../../include/conversation.php:172
-#: ../../mod/dfrn_confirm.php:477
+#: ../../mod/home.php:34
 #, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s ist nun mit %2$s befreundet"
+msgid "Welcome to %s"
+msgstr "Willkommen zu %s"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Freigabe-Benachrichtigung von Diaspora"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
 
-#: ../../include/diaspora.php:2262
-msgid "Attachments:"
-msgstr "Anhänge:"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Sichtbar für:"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica-Benachrichtigung"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, 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."
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Danke,"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Konnte deinen Heimatort nicht bestimmen."
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "der Administrator von %s"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Kein Empfänger."
 
-#: ../../include/enotify.php:40
+#: ../../mod/wallmessage.php:143
 #, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
-
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
+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."
 
-#: ../../include/enotify.php:46
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
 #, 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."
+msgid "Visit %s's profile [%s]"
+msgstr "Besuche %ss Profil [%s]"
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s schickte dir %2$s."
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "eine private Nachricht"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
 
-#: ../../include/enotify.php:48
-#, 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."
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "Dies ist Friendica, Version"
 
-#: ../../include/enotify.php:90
-#, 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]"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "die unter folgender Webadresse zu finden ist"
 
-#: ../../include/enotify.php:97
-#, 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]"
+#: ../../mod/friendica.php:58
+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."
 
-#: ../../include/enotify.php:105
-#, 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]"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Probleme oder Fehler gefunden? Bitte besuche"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
+#: ../../mod/friendica.php:61
+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"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Installierte Plugins/Erweiterungen/Apps"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, 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."
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Keine Plugins/Erweiterungen/Apps installiert"
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Konto löschen"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
+#: ../../mod/removeme.php:46
+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."
 
-#: ../../include/enotify.php:130
-#, 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"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Bitte gib dein Passwort zur Verifikation ein:"
 
-#: ../../include/enotify.php:141
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
 #, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica-Meldung] %s hat dich erwähnt"
+msgid "Image exceeds size limit of %d"
+msgstr "Bildgröße überschreitet das Limit von %d"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s erwähnte dich auf %2$s"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Konnte das Bild nicht bearbeiten."
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:443
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Pinnwand-Bilder"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Hochladen des Bildes gescheitert."
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "%1$s hat dich auf %2$s angestupst"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Verbindung der Applikation autorisieren"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Bitte melde dich an um fortzufahren."
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
+#: ../../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 "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
 
-#: ../../include/enotify.php:174
+#: ../../mod/tagger.php:95 ../../include/conversation.php:266
 #, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
+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/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
+#: ../../mod/photos.php:51 ../../boot.php:1878
+msgid "Photo Albums"
+msgstr "Fotoalben"
 
-#: ../../include/enotify.php:186
-#, 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"
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
+msgid "Contact Photos"
+msgstr "Kontaktbilder"
 
-#: ../../include/enotify.php:187
-#, 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."
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Neue Fotos hochladen"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Hier kannst du das Profil betrachten: %s"
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
+msgid "everybody"
+msgstr "jeder"
 
-#: ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "Kontaktinformationen nicht verfügbar"
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
+#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
+#: ../../include/user.php:325 ../../include/user.php:332
+#: ../../include/user.php:339
+msgid "Profile Photos"
+msgstr "Profilbilder"
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album nicht gefunden."
 
-#: ../../include/enotify.php:201
-#, 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]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Album löschen"
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Name:"
+#: ../../mod/photos.php:197
+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?"
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Foto löschen"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr "Möchtest du wirklich dieses Foto löschen?"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "Allgemeine Features"
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s wurde von %3$s in %2$s getaggt"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "Mehrere Profile"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "einem Foto"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "Möglichkeit mehrere Profile zu erstellen"
+#: ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "Die Bildgröße übersteigt das Limit von "
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "Beitragserstellung Features"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Bilddatei ist leer."
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "Web-Editor"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "Keine Bilder ausgewählt"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "Den Web-Editor für neue Beiträge aktivieren"
+#: ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "Beitragsvorschau"
+#: ../../mod/photos.php:1088
+#, 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."
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Bilder hochladen"
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "Widgets für Netzwerk und Seitenleiste"
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Name des neuen Albums: "
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Archiv"
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "oder existierender Albumname: "
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "Gruppen Filter"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Berechtigungen"
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
+#: ../../mod/photos.php:1140 ../../mod/photos.php:1506
+#: ../../mod/settings.php:1070
+msgid "Show to Groups"
+msgstr "Zeige den Gruppen"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "Netzwerk Filter"
+#: ../../mod/photos.php:1141 ../../mod/photos.php:1507
+#: ../../mod/settings.php:1071
+msgid "Show to Contacts"
+msgstr "Zeige den Kontakten"
 
-#: ../../include/features.php:40
-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."
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "Privates Foto"
 
-#: ../../include/features.php:41 ../../mod/search.php:30
-#: ../../mod/network.php:233
-msgid "Saved Searches"
-msgstr "Gespeicherte Suchen"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr "Öffentliches Foto"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr "Speichere Suchanfragen für spätere Wiederholung."
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Album bearbeiten"
 
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr "Netzwerk Reiter"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Zeige neueste zuerst"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "Netzwerk-Reiter: Persönlich"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Zeige älteste zuerst"
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Foto betrachten"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr "Netzwerk-Reiter: Neue"
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Foto nicht verfügbar"
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr "Netzwerk-Reiter: Geteilte Links"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Fotos ansehen"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Foto bearbeiten"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Werkzeuge für Beiträge und Kommentare"
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Als Profilbild verwenden"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr "Mehrere Beiträge löschen"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Betrachte Originalgröße"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Tags: "
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr "Gesendete Beiträge editieren"
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Tag entfernen]"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "Drehen US (rechts)"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr "Tagging"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "Drehen EUS (links)"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Name des neuen Albums"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr "Beitragskategorien"
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Bildunterschrift"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr "Eigene Beiträge mit Kategorien versehen"
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Tag hinzufügen"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr "Beiträge in Ordnern speichern aktivieren"
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr "Beiträge 'nicht mögen'"
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr "Privates Foto"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr "Öffentliches Foto"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr "Beiträge Markieren"
+#: ../../mod/photos.php:1531 ../../include/conversation.php:1041
+msgid "Share"
+msgstr "Teilen"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
+#: ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "Album betrachten"
 
-#: ../../include/dba.php:44
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Neueste Fotos"
+
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Kein Profil"
+
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
 #, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
+msgid "Registration details for %s"
+msgstr "Details der Registration von %s"
 
-#: ../../include/group.php:25
+#: ../../mod/register.php:99
 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/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Voreingestellte Gruppe für neue Kontakte"
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Alle Kontakte"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "bearbeiten"
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "Deine Registrierung konnte nicht verarbeitet werden."
 
-#: ../../include/group.php:270 ../../mod/newmember.php:66
-msgid "Groups"
-msgstr "Gruppen"
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Registrierungsanfrage auf %s"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Gruppe bearbeiten"
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Neue Gruppe erstellen"
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+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."
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakte in keiner Gruppe"
+#: ../../mod/register.php:220
+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."
 
-#: ../../include/group.php:275 ../../mod/network.php:234
-msgid "add"
-msgstr "hinzufügen"
+#: ../../mod/register.php:221
+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."
 
-#: ../../include/conversation.php:140 ../../mod/like.php:170
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s mag %2$ss %3$s nicht"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Deine OpenID (optional): "
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s stupste %2$s"
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
 
-#: ../../include/conversation.php:227 ../../mod/mood.php:62
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s ist momentan %2$s"
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
 
-#: ../../include/conversation.php:266 ../../mod/tagger.php:95
-#, 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"
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "ID deiner Einladung: "
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "Nachricht/Beitrag"
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Vollständiger Name (z.B. Max Mustermann): "
 
-#: ../../include/conversation.php:292
-#, 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"
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Deine E-Mail-Adresse: "
 
-#: ../../include/conversation.php:587 ../../mod/content.php:461
-#: ../../mod/content.php:763 ../../object/Item.php:119
-msgid "Select"
-msgstr "Auswählen"
+#: ../../mod/register.php:271
+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."
 
-#: ../../include/conversation.php:588 ../../mod/admin.php:751
-#: ../../mod/settings.php:623 ../../mod/group.php:171
-#: ../../mod/photos.php:1637 ../../mod/content.php:462
-#: ../../mod/content.php:764 ../../object/Item.php:120
-msgid "Delete"
-msgstr "Löschen"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Spitznamen wählen: "
 
-#: ../../include/conversation.php:627 ../../mod/content.php:495
-#: ../../mod/content.php:875 ../../mod/content.php:876
-#: ../../object/Item.php:297 ../../object/Item.php:298
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Das Profil von %s auf %s betrachten."
+#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrieren"
 
-#: ../../include/conversation.php:639 ../../object/Item.php:288
-msgid "Categories:"
-msgstr "Kategorien"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Kein gültiges Konto gefunden."
 
-#: ../../include/conversation.php:640 ../../object/Item.php:289
-msgid "Filed under:"
-msgstr "Abgelegt unter:"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
 
-#: ../../include/conversation.php:647 ../../mod/content.php:505
-#: ../../mod/content.php:887 ../../object/Item.php:311
+#: ../../mod/lostpass.php:44
 #, php-format
-msgid "%s from %s"
-msgstr "%s von %s"
-
-#: ../../include/conversation.php:662 ../../mod/content.php:520
-msgid "View in context"
-msgstr "Im Zusammenhang betrachten"
+msgid "Password reset requested at %s"
+msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
 
-#: ../../include/conversation.php:664 ../../include/conversation.php:1060
-#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
-#: ../../mod/message.php:334 ../../mod/message.php:565
-#: ../../mod/photos.php:1532 ../../mod/content.php:522
-#: ../../mod/content.php:906 ../../object/Item.php:332
-msgid "Please wait"
-msgstr "Bitte warten"
+#: ../../mod/lostpass.php:66
+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."
 
-#: ../../include/conversation.php:728
-msgid "remove"
-msgstr "löschen"
+#: ../../mod/lostpass.php:84 ../../boot.php:1072
+msgid "Password Reset"
+msgstr "Passwort zurücksetzen"
 
-#: ../../include/conversation.php:732
-msgid "Delete Selected Items"
-msgstr "Lösche die markierten Beiträge"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
 
-#: ../../include/conversation.php:831
-msgid "Follow Thread"
-msgstr "Folge der Unterhaltung"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Dein neues Passwort lautet"
 
-#: ../../include/conversation.php:900
-#, php-format
-msgid "%s likes this."
-msgstr "%s mag das."
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Speichere oder kopiere dein neues Passwort - und dann"
 
-#: ../../include/conversation.php:900
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mag das nicht."
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "hier klicken, um dich anzumelden"
 
-#: ../../include/conversation.php:905
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d Personen</span> mögen das"
+#: ../../mod/lostpass.php:89
+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."
 
-#: ../../include/conversation.php:908
+#: ../../mod/lostpass.php:107
 #, 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"
+msgid "Your password has been changed at %s"
+msgstr "Auf %s wurde dein Passwort geändert"
 
-#: ../../include/conversation.php:922
-msgid "and"
-msgstr "und"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Hast du dein Passwort vergessen?"
 
-#: ../../include/conversation.php:928
-#, php-format
-msgid ", and %d other people"
-msgstr " und %d andere"
+#: ../../mod/lostpass.php:123
+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."
 
-#: ../../include/conversation.php:930
-#, php-format
-msgid "%s like this."
-msgstr "%s mögen das."
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Spitzname oder E-Mail:"
 
-#: ../../include/conversation.php:930
-#, php-format
-msgid "%s don't like this."
-msgstr "%s mögen das nicht."
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zurücksetzen"
 
-#: ../../include/conversation.php:957 ../../include/conversation.php:975
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Für <strong>jedermann</strong> sichtbar"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "System zur Wartung abgeschaltet"
 
-#: ../../include/conversation.php:958 ../../include/conversation.php:976
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-msgid "Please enter a link URL:"
-msgstr "Bitte gib die URL des Links ein:"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Beitrag nicht verfügbar."
 
-#: ../../include/conversation.php:959 ../../include/conversation.php:977
-msgid "Please enter a video link/URL:"
-msgstr "Bitte Link/URL zum Video einfügen:"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Beitrag konnte nicht gefunden werden."
 
-#: ../../include/conversation.php:960 ../../include/conversation.php:978
-msgid "Please enter an audio link/URL:"
-msgstr "Bitte Link/URL zum Audio einfügen:"
+#: ../../mod/apps.php:4
+msgid "Applications"
+msgstr "Anwendungen"
 
-#: ../../include/conversation.php:961 ../../include/conversation.php:979
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../mod/apps.php:7
+msgid "No installed applications."
+msgstr "Keine Applikationen installiert."
 
-#: ../../include/conversation.php:962 ../../include/conversation.php:980
-#: ../../mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "In diesen Ordner verschieben:"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Hilfe:"
 
-#: ../../include/conversation.php:963 ../../include/conversation.php:981
-msgid "Where are you right now?"
-msgstr "Wo hältst du dich jetzt gerade auf?"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Hilfe"
 
-#: ../../include/conversation.php:964
-msgid "Delete item(s)?"
-msgstr "Einträge löschen?"
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
 
-#: ../../include/conversation.php:1006
-msgid "Post to Email"
-msgstr "An E-Mail senden"
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Konnte das ausgewählte Profil nicht finden."
 
-#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
-msgid "Share"
-msgstr "Teilen"
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Kontakt aktualisiert."
 
-#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
-#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
-#: ../../mod/message.php:562
-msgid "Upload photo"
-msgstr "Foto hochladen"
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Kontakt wurde blockiert"
 
-#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
-msgid "upload photo"
-msgstr "Bild hochladen"
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Kontakt wurde wieder freigegeben"
 
-#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
-msgid "Attach file"
-msgstr "Datei anhängen"
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Kontakt wurde ignoriert"
 
-#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
-msgid "attach file"
-msgstr "Datei anhängen"
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Kontakt wird nicht mehr ignoriert"
 
-#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
-#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
-#: ../../mod/message.php:563
-msgid "Insert web link"
-msgstr "Einen Link einfügen"
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Kontakt wurde archiviert"
 
-#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
-msgid "web link"
-msgstr "Weblink"
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
+msgstr "Kontakt wurde aus dem Archiv geholt"
 
-#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Video-Adresse einfügen"
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr "Möchtest du wirklich diesen Kontakt löschen?"
 
-#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
-msgid "video link"
-msgstr "Video-Link"
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Kontakt wurde entfernt."
 
-#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Audio-Adresse einfügen"
+#: ../../mod/contacts.php:301
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Du hast mit %s eine beidseitige Freundschaft"
 
-#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
-msgid "audio link"
-msgstr "Audio-Link"
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Du teilst mit %s"
 
-#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
-msgid "Set your location"
-msgstr "Deinen Standort festlegen"
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s teilt mit Dir"
 
-#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
-msgid "set location"
-msgstr "Ort setzen"
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
 
-#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Browser-Standort leeren"
+#: ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Niemals"
 
-#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
-msgid "clear location"
-msgstr "Ort löschen"
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(Aktualisierung war erfolgreich)"
 
-#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
-msgid "Set title"
-msgstr "Titel setzen"
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(Aktualisierung war nicht erfolgreich)"
 
-#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Kategorien (kommasepariert)"
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Kontakte vorschlagen"
 
-#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Berechtigungseinstellungen"
+#: ../../mod/contacts.php:340
+#, php-format
+msgid "Network type: %s"
+msgstr "Netzwerktyp: %s"
 
-#: ../../include/conversation.php:1062
-msgid "permissions"
-msgstr "Zugriffsrechte"
+#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d gemeinsamer Kontakt"
+msgstr[1] "%d gemeinsame Kontakte"
 
-#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "Cc: E-Mail-Addressen"
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
-msgid "Public post"
-msgstr "Öffentlicher Beitrag"
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
+msgstr "Geblockt-Status ein-/ausschalten"
 
-#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Z.B.: bob@example.com, mary@example.com"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Ignorieren aufheben"
 
-#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
-#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
-#: ../../mod/photos.php:1680 ../../mod/content.php:742
-#: ../../object/Item.php:652
-msgid "Preview"
-msgstr "Vorschau"
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
+msgstr "Ignoriert-Status ein-/ausschalten"
 
-#: ../../include/conversation.php:1086
-msgid "Post to Groups"
-msgstr "Poste an Gruppe"
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
+msgstr "Aus Archiv zurückholen"
 
-#: ../../include/conversation.php:1087
-msgid "Post to Contacts"
-msgstr "Poste an Kontakte"
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Archivieren"
 
-#: ../../include/conversation.php:1088
-msgid "Private post"
-msgstr "Privater Beitrag"
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
+msgstr "Archiviert-Status ein-/ausschalten"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[kein Betreff]"
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Reparieren"
 
-#: ../../include/message.php:144 ../../mod/item.php:443
-#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
-#: ../../mod/wall_upload.php:151
-msgid "Wall Photos"
-msgstr "Pinnwand-Bilder"
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Fortgeschrittene Kontakteinstellungen"
 
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr "Keine Neuigkeiten."
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "Verbindungen mit diesem Kontakt verloren!"
 
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
-msgstr "Bereinige Benachrichtigungen"
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Kontakt Editor"
 
-#: ../../include/nav.php:73 ../../boot.php:1057
-msgid "Logout"
-msgstr "Abmelden"
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Profil-Sichtbarkeit"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Diese Sitzung beenden"
+#: ../../mod/contacts.php:388
+#, 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."
 
-#: ../../include/nav.php:76 ../../boot.php:1861
-msgid "Status"
-msgstr "Status"
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Kontakt Informationen / Notizen"
 
-#: ../../include/nav.php:76 ../../include/nav.php:143
-#: ../../view/theme/diabook/theme.php:87
-msgid "Your posts and conversations"
-msgstr "Deine Beiträge und Unterhaltungen"
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "Notizen zum Kontakt bearbeiten"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
-msgid "Your profile page"
-msgstr "Deine Profilseite"
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Kontakt blockieren/freischalten"
 
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
-msgid "Photos"
-msgstr "Bilder"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignoriere den Kontakt"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
-msgid "Your photos"
-msgstr "Deine Fotos"
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "URL Einstellungen reparieren"
 
-#: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
-msgid "Events"
-msgstr "Veranstaltungen"
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Unterhaltungen anzeigen"
 
-#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
-msgid "Your events"
-msgstr "Deine Ereignisse"
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Lösche den Kontakt"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
-msgid "Personal notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "letzte Aktualisierung:"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
-msgid "Your personal photos"
-msgstr "Deine privaten Fotos"
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "Öffentliche Beiträge aktualisieren"
 
-#: ../../include/nav.php:91
-msgid "Sign in"
-msgstr "Anmelden"
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Derzeit geblockt"
 
-#: ../../include/nav.php:104 ../../include/nav.php:143
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-msgid "Home"
-msgstr "Pinnwand"
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Derzeit ignoriert"
 
-#: ../../include/nav.php:104
-msgid "Home Page"
-msgstr "Homepage"
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "Momentan archiviert"
 
-#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
-msgid "Register"
-msgstr "Registrieren"
+#: ../../mod/contacts.php:419
+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"
 
-#: ../../include/nav.php:108
-msgid "Create an account"
-msgstr "Nutzerkonto erstellen"
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
-msgstr "Hilfe und Dokumentation"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Freunde vorschlagen"
 
-#: ../../include/nav.php:116
-msgid "Apps"
-msgstr "Apps"
-
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
-msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
-
-#: ../../include/nav.php:118
-msgid "Search site content"
-msgstr "Inhalt der Seite durchsuchen"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Alle Kontakte"
 
-#: ../../include/nav.php:128 ../../mod/community.php:32
-#: ../../view/theme/diabook/theme.php:93
-msgid "Community"
-msgstr "Gemeinschaft"
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Alle Kontakte anzeigen"
 
-#: ../../include/nav.php:128
-msgid "Conversations on this site"
-msgstr "Unterhaltungen auf dieser Seite"
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Ungeblockt"
 
-#: ../../include/nav.php:130
-msgid "Directory"
-msgstr "Verzeichnis"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Nur nicht-blockierte Kontakte anzeigen"
 
-#: ../../include/nav.php:130
-msgid "People directory"
-msgstr "Nutzerverzeichnis"
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Geblockt"
 
-#: ../../include/nav.php:140 ../../mod/notifications.php:83
-msgid "Network"
-msgstr "Netzwerk"
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Nur blockierte Kontakte anzeigen"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Unterhaltungen deiner Kontakte"
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Ignoriert"
 
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "Netzwerk zurücksetzen"
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Nur ignorierte Kontakte anzeigen"
 
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "Netzwerk-Seite ohne Filter laden"
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "Archiviert"
 
-#: ../../include/nav.php:149 ../../mod/notifications.php:98
-msgid "Introductions"
-msgstr "Kontaktanfragen"
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Nur archivierte Kontakte anzeigen"
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Kontaktanfragen"
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Verborgen"
 
-#: ../../include/nav.php:150 ../../mod/notifications.php:220
-msgid "Notifications"
-msgstr "Benachrichtigungen"
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Nur verborgene Kontakte anzeigen"
 
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Alle Benachrichtigungen anzeigen"
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Beidseitige Freundschaft"
 
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Markiere alle Systembenachrichtigungen als gelesen"
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "ist ein Fan von dir"
 
-#: ../../include/nav.php:156 ../../mod/message.php:182
-#: ../../mod/notifications.php:103
-msgid "Messages"
-msgstr "Nachrichten"
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "du bist Fan von"
 
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Private E-Mail"
+#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
+#: ../../include/nav.php:171
+msgid "Contacts"
+msgstr "Kontakte"
 
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Eingang"
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Suche in deinen Kontakten"
 
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Ausgang"
+#: ../../mod/contacts.php:612 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Funde: "
 
-#: ../../include/nav.php:159 ../../mod/message.php:9
-msgid "New Message"
-msgstr "Neue Nachricht"
+#: ../../mod/contacts.php:613 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Finde"
 
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Verwalten"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Gemeinsame Freunde"
 
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Andere Seiten verwalten"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Keine gemeinsamen Kontakte."
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "Delegierungen"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt hinzugefügt"
 
-#: ../../include/nav.php:165 ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Delegiere das Management für die Seite"
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Import"
 
-#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
-msgid "Account settings"
-msgstr "Kontoeinstellungen"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Account umziehen"
 
-#: ../../include/nav.php:169 ../../boot.php:1360
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "Profile Verwalten/Editieren"
+#: ../../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 "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 Freunde darüber zu informieren, dass du hierher umgezogen bist."
 
-#: ../../include/nav.php:171 ../../mod/contacts.php:607
-#: ../../view/theme/diabook/theme.php:89
-msgid "Contacts"
-msgstr "Kontakte"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
 
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Freunde und Kontakte verwalten/editieren"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "Account Datei"
 
-#: ../../include/nav.php:178 ../../mod/admin.php:120
-msgid "Admin"
-msgstr "Administration"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
 
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Einstellungen der Seite und Konfiguration"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s folgt %2$s %3$s"
 
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "Navigation"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Freunde von %s"
 
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "Sitemap"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Keine Freunde zum Anzeigen."
 
-#: ../../include/network.php:875
-msgid "view full size"
-msgstr "Volle Größe anzeigen"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag entfernt"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "Eingebetteter Inhalt"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Gegenstands-Tag entfernen"
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "Einbettungen deaktiviert"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wähle ein Tag zum Entfernen aus: "
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Willkommen "
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+msgid "Remove"
+msgstr "Entfernen"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Bitte lade ein Profilbild hoch."
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Willkommen bei Friendica"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Willkommen zurück "
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Checkliste für neue Mitglieder"
 
-#: ../../include/security.php:366
+#: ../../mod/newmember.php:12
 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)."
-
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
-#: ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "Profil nicht gefunden."
+"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/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profil gelöscht."
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Einstieg"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Rundgang"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Neues Profil angelegt."
-
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Profil nicht zum Duplizieren verfügbar."
-
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
-
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "Familienstand"
-
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "Romanze"
-
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Likes"
-
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Dislikes"
-
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Arbeit / Beschäftigung"
-
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religion"
-
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Politische Ansichten"
-
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Geschlecht"
-
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Sexuelle Vorlieben"
-
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Webseite"
-
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interessen"
-
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Adresse"
-
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Profil aktualisiert."
-
-#: ../../mod/profiles.php:517
-msgid " and "
-msgstr " und "
-
-#: ../../mod/profiles.php:525
-msgid "public profile"
-msgstr "öffentliches Profil"
-
-#: ../../mod/profiles.php:528
-#, 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/profiles.php:529
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " – %1$ss %2$s besuchen"
-
-#: ../../mod/profiles.php:532
-#, 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/profiles.php:605
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
-
-#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
-msgid "No"
-msgstr "Nein"
-
-#: ../../mod/profiles.php:625
-msgid "Edit Profile Details"
-msgstr "Profil bearbeiten"
-
-#: ../../mod/profiles.php:627
-msgid "Change Profile Photo"
-msgstr "Profilbild ändern"
-
-#: ../../mod/profiles.php:628
-msgid "View this profile"
-msgstr "Dieses Profil anzeigen"
-
-#: ../../mod/profiles.php:629
-msgid "Create a new profile using these settings"
-msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
-
-#: ../../mod/profiles.php:630
-msgid "Clone this profile"
-msgstr "Dieses Profil duplizieren"
-
-#: ../../mod/profiles.php:631
-msgid "Delete this profile"
-msgstr "Dieses Profil löschen"
-
-#: ../../mod/profiles.php:632
-msgid "Profile Name:"
-msgstr "Profilname:"
-
-#: ../../mod/profiles.php:633
-msgid "Your Full Name:"
-msgstr "Dein kompletter Name:"
-
-#: ../../mod/profiles.php:634
-msgid "Title/Description:"
-msgstr "Titel/Beschreibung:"
-
-#: ../../mod/profiles.php:635
-msgid "Your Gender:"
-msgstr "Dein Geschlecht:"
-
-#: ../../mod/profiles.php:636
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Geburtstag (%s):"
-
-#: ../../mod/profiles.php:637
-msgid "Street Address:"
-msgstr "Adresse:"
-
-#: ../../mod/profiles.php:638
-msgid "Locality/City:"
-msgstr "Wohnort:"
-
-#: ../../mod/profiles.php:639
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
-
-#: ../../mod/profiles.php:640
-msgid "Country:"
-msgstr "Land:"
-
-#: ../../mod/profiles.php:641
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
-
-#: ../../mod/profiles.php:642
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
-
-#: ../../mod/profiles.php:643
-msgid "Who: (if applicable)"
-msgstr "Wer: (falls anwendbar)"
-
-#: ../../mod/profiles.php:644
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
-
-#: ../../mod/profiles.php:645
-msgid "Since [date]:"
-msgstr "Seit [Datum]:"
-
-#: ../../mod/profiles.php:647
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
-
-#: ../../mod/profiles.php:650
-msgid "Religious Views:"
-msgstr "Religiöse Ansichten:"
+#: ../../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 "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/profiles.php:651
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Gehe zu deinen Einstellungen"
 
-#: ../../mod/profiles.php:652
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
+#: ../../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 "Ä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 Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
 
-#: ../../mod/profiles.php:655
-msgid "Example: fishing photography software"
-msgstr "Beispiel: Fischen Fotografie Software"
+#: ../../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 "Ü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 Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
 
-#: ../../mod/profiles.php:656
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:88 ../../boot.php:1868
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/profiles.php:657
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Profilbild hochladen"
 
-#: ../../mod/profiles.php:658
-msgid "Tell us about yourself..."
-msgstr "Erzähle uns ein bisschen von dir …"
+#: ../../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 "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
 
-#: ../../mod/profiles.php:659
-msgid "Hobbies/Interests"
-msgstr "Hobbies/Interessen"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Editiere dein Profil"
 
-#: ../../mod/profiles.php:660
-msgid "Contact information and Social Networks"
-msgstr "Kontaktinformationen und Soziale Netzwerke"
+#: ../../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 "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
 
-#: ../../mod/profiles.php:661
-msgid "Musical interests"
-msgstr "Musikalische Interessen"
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Profil Schlüsselbegriffe"
 
-#: ../../mod/profiles.php:662
-msgid "Books, literature"
-msgstr "Literatur/Bücher"
+#: ../../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 "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/profiles.php:663
-msgid "Television"
-msgstr "Fernsehen"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Verbindungen knüpfen"
 
-#: ../../mod/profiles.php:664
-msgid "Film/dance/culture/entertainment"
-msgstr "Filme/Tänze/Kultur/Unterhaltung"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/profiles.php:665
-msgid "Love/romance"
-msgstr "Liebesleben"
+#: ../../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 "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
 
-#: ../../mod/profiles.php:666
-msgid "Work/employment"
-msgstr "Arbeit/Beschäftigung"
+#: ../../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>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
 
-#: ../../mod/profiles.php:667
-msgid "School/education"
-msgstr "Schule/Ausbildung"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Emails Importieren"
 
-#: ../../mod/profiles.php:672
+#: ../../mod/newmember.php:56
 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."
+"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 Freunden und Mailinglisten interagieren willlst."
 
-#: ../../mod/profiles.php:721
-msgid "Edit/Manage Profiles"
-msgstr "Verwalte/Editiere Profile"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Gehe zu deiner Kontakt-Seite"
 
-#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
-msgid "Change profile photo"
-msgstr "Profilbild ändern"
+#: ../../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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden 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/profiles.php:723 ../../boot.php:1367
-msgid "Create New Profile"
-msgstr "Neues Profil anlegen"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
 
-#: ../../mod/profiles.php:734 ../../boot.php:1377
-msgid "Profile Image"
-msgstr "Profilbild"
+#: ../../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 "Ü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/profiles.php:736 ../../boot.php:1380
-msgid "visible to everybody"
-msgstr "sichtbar für jeden"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Neue Leute kennenlernen"
 
-#: ../../mod/profiles.php:737 ../../boot.php:1381
-msgid "Edit visibility"
-msgstr "Sichtbarkeit bearbeiten"
+#: ../../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 "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
-msgid "Permission denied"
-msgstr "Zugriff verweigert"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Gruppen"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Ungültiger Profil-Bezeichner"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Gruppiere deine Kontakte"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Editor für die Profil-Sichtbarkeit"
+#: ../../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 "Sobald du einige Freunde 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/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Warum sind meine Beiträge nicht öffentlich?"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Sichtbar für"
+#: ../../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 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/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Hilfe bekommen"
 
-#: ../../mod/notes.php:44 ../../boot.php:1892
-msgid "Personal Notes"
-msgstr "Persönliche Notizen"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Zum Hilfe Abschnitt gehen"
 
-#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
-#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Besuche %ss Profil [%s]"
+#: ../../mod/newmember.php:82
+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/nogroup.php:41 ../../mod/contacts.php:586
-msgid "Edit contact"
-msgstr "Kontakt bearbeiten"
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "Begriff entfernen"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakte, die keiner Gruppe zugewiesen sind"
+#: ../../mod/search.php:30 ../../mod/network.php:233
+#: ../../include/features.php:41
+msgid "Saved Searches"
+msgstr "Gespeicherte Suchen"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} möchte mit dir in Kontakt treten"
+#: ../../mod/search.php:99 ../../include/text.php:778
+#: ../../include/text.php:779 ../../include/nav.php:118
+msgid "Search"
+msgstr "Suche"
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} hat dir eine Nachricht geschickt"
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:88
+msgid "No results."
+msgstr "Keine Ergebnisse."
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} möchte sich registrieren"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limit für Einladungen erreicht."
 
-#: ../../mod/ping.php:254
+#: ../../mod/invite.php:49
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} kommentierte einen Beitrag von %s"
+msgid "%s : Not a valid email address."
+msgstr "%s: Keine gültige Email Adresse."
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} mag %ss Beitrag"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Bitte trete bei uns auf Friendica bei"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} mag %ss Beitrag nicht"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
 
-#: ../../mod/ping.php:269
+#: ../../mod/invite.php:89
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} ist jetzt mit %s befreundet"
-
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} hat etwas veröffentlicht"
+msgid "%s : Message delivery failed."
+msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
 
-#: ../../mod/ping.php:279
+#: ../../mod/invite.php:93
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
-
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} hat dich in einem Beitrag erwähnt"
-
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "Themeneinstellungen aktualisiert."
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d Nachricht gesendet."
+msgstr[1] "%d Nachrichten gesendet."
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:474
-msgid "Site"
-msgstr "Seite"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Du hast keine weiteren Einladungen"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756
-msgid "Users"
-msgstr "Nutzer"
+#: ../../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 "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/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881
-msgid "Plugins"
-msgstr "Plugins"
+#: ../../mod/invite.php:122
+#, 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/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081
-msgid "Themes"
-msgstr "Themen"
+#: ../../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 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/admin.php:100
-msgid "DB updates"
-msgstr "DB Updates"
+#: ../../mod/invite.php:126
+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/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168
-msgid "Logs"
-msgstr "Protokolle"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Einladungen senden"
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "Plugin Features"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Nutzeranmeldungen die auf Bestätigung warten"
+#: ../../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 "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
 
-#: ../../mod/admin.php:182 ../../mod/admin.php:714
-msgid "Normal Account"
-msgstr "Normales Konto"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:715
-msgid "Soapbox Account"
-msgstr "Marktschreier-Konto"
+#: ../../mod/invite.php:137
+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/admin.php:184 ../../mod/admin.php:716
-msgid "Community/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../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 "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:717
-msgid "Automatic Friend Account"
-msgstr "Automatisches Freundekonto"
+#: ../../mod/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167
+msgid "Account settings"
+msgstr "Kontoeinstellungen"
 
-#: ../../mod/admin.php:186
-msgid "Blog Account"
-msgstr "Blog Account"
+#: ../../mod/settings.php:35
+msgid "Additional features"
+msgstr "Zusätzliche Features"
 
-#: ../../mod/admin.php:187
-msgid "Private Forum"
-msgstr "Privates Forum"
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/admin.php:206
-msgid "Message queues"
-msgstr "Nachrichten-Warteschlangen"
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Connector-Einstellungen"
 
-#: ../../mod/admin.php:211 ../../mod/admin.php:473 ../../mod/admin.php:742
-#: ../../mod/admin.php:838 ../../mod/admin.php:880 ../../mod/admin.php:1046
-#: ../../mod/admin.php:1080 ../../mod/admin.php:1167
-msgid "Administration"
-msgstr "Administration"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Plugin-Einstellungen"
 
-#: ../../mod/admin.php:212
-msgid "Summary"
-msgstr "Zusammenfassung"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "Verbundene Programme"
 
-#: ../../mod/admin.php:214
-msgid "Registered users"
-msgstr "Registrierte Nutzer"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Persönliche Daten exportieren"
 
-#: ../../mod/admin.php:216
-msgid "Pending registrations"
-msgstr "Anstehende Anmeldungen"
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Konto löschen"
 
-#: ../../mod/admin.php:217
-msgid "Version"
-msgstr "Version"
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "Wichtige Daten fehlen!"
 
-#: ../../mod/admin.php:219
-msgid "Active plugins"
-msgstr "Aktive Plugins"
+#: ../../mod/settings.php:121 ../../mod/settings.php:586
+msgid "Update"
+msgstr "Aktualisierungen"
 
-#: ../../mod/admin.php:398
-msgid "Site settings updated."
-msgstr "Seiteneinstellungen aktualisiert."
+#: ../../mod/settings.php:227
+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/admin.php:427 ../../mod/settings.php:769
-msgid "No special theme for mobile devices"
-msgstr "Kein spezielles Theme für mobile Geräte verwenden."
+#: ../../mod/settings.php:232
+msgid "Email settings updated."
+msgstr "E-Mail Einstellungen bearbeitet."
 
-#: ../../mod/admin.php:444
-msgid "Multi user instance"
-msgstr "Mehrbenutzer Instanz"
+#: ../../mod/settings.php:247
+msgid "Features updated"
+msgstr "Features aktualisiert"
 
-#: ../../mod/admin.php:460
-msgid "Closed"
-msgstr "Geschlossen"
+#: ../../mod/settings.php:307
+msgid "Passwords do not match. Password unchanged."
+msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
 
-#: ../../mod/admin.php:461
-msgid "Requires approval"
-msgstr "Bedarf der Zustimmung"
+#: ../../mod/settings.php:312
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
 
-#: ../../mod/admin.php:462
-msgid "Open"
-msgstr "Offen"
+#: ../../mod/settings.php:323
+msgid "Password changed."
+msgstr "Passwort ändern."
 
-#: ../../mod/admin.php:466
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten"
+#: ../../mod/settings.php:325
+msgid "Password update failed. Please try again."
+msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
 
-#: ../../mod/admin.php:467
-msgid "Force all links to use SSL"
-msgstr "SSL für alle Links erzwingen"
+#: ../../mod/settings.php:390
+msgid " Please use a shorter name."
+msgstr " Bitte verwende einen kürzeren Namen."
 
-#: ../../mod/admin.php:468
-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/settings.php:392
+msgid " Name too short."
+msgstr " Name ist zu kurz."
 
-#: ../../mod/admin.php:476 ../../mod/register.php:261
-msgid "Registration"
-msgstr "Registrierung"
+#: ../../mod/settings.php:398
+msgid " Not valid email."
+msgstr " Keine gültige E-Mail."
 
-#: ../../mod/admin.php:477
-msgid "File upload"
-msgstr "Datei hochladen"
+#: ../../mod/settings.php:400
+msgid " Cannot change to that email."
+msgstr "Ändern der E-Mail nicht möglich. "
 
-#: ../../mod/admin.php:478
-msgid "Policies"
-msgstr "Regeln"
+#: ../../mod/settings.php:454
+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/admin.php:479
-msgid "Advanced"
-msgstr "Erweitert"
+#: ../../mod/settings.php:458
+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/admin.php:480
-msgid "Performance"
-msgstr "Performance"
+#: ../../mod/settings.php:488
+msgid "Settings updated."
+msgstr "Einstellungen aktualisiert."
 
-#: ../../mod/admin.php:485
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/settings.php:559 ../../mod/settings.php:585
+#: ../../mod/settings.php:621
+msgid "Add application"
+msgstr "Programm hinzufügen"
 
-#: ../../mod/admin.php:486
-msgid "System language"
-msgstr "Systemsprache"
+#: ../../mod/settings.php:563 ../../mod/settings.php:589
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../mod/admin.php:487
-msgid "System theme"
-msgstr "Systemweites Thema"
+#: ../../mod/settings.php:564 ../../mod/settings.php:590
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../mod/admin.php:487
-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/settings.php:565 ../../mod/settings.php:591
+msgid "Redirect"
+msgstr "Umleiten"
 
-#: ../../mod/admin.php:488
-msgid "Mobile system theme"
-msgstr "Systemweites mobiles Thema"
+#: ../../mod/settings.php:566 ../../mod/settings.php:592
+msgid "Icon url"
+msgstr "Icon URL"
 
-#: ../../mod/admin.php:488
-msgid "Theme for mobile devices"
-msgstr "Thema für mobile Geräte"
+#: ../../mod/settings.php:577
+msgid "You can't edit this application."
+msgstr "Du kannst dieses Programm nicht bearbeiten."
 
-#: ../../mod/admin.php:489
-msgid "SSL link policy"
-msgstr "Regeln für SSL Links"
+#: ../../mod/settings.php:620
+msgid "Connected Apps"
+msgstr "Verbundene Programme"
 
-#: ../../mod/admin.php:489
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Bestimmt, ob generierte Links SSL verwenden müssen"
+#: ../../mod/settings.php:624
+msgid "Client key starts with"
+msgstr "Anwenderschlüssel beginnt mit"
 
-#: ../../mod/admin.php:490
-msgid "'Share' element"
-msgstr "'Teilen' Element"
+#: ../../mod/settings.php:625
+msgid "No name"
+msgstr "Kein Name"
 
-#: ../../mod/admin.php:490
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen."
+#: ../../mod/settings.php:626
+msgid "Remove authorization"
+msgstr "Autorisierung entziehen"
 
-#: ../../mod/admin.php:491
-msgid "Hide help entry from navigation menu"
-msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü"
+#: ../../mod/settings.php:638
+msgid "No Plugin settings configured"
+msgstr "Keine Plugin-Einstellungen konfiguriert"
 
-#: ../../mod/admin.php:491
-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/settings.php:646
+msgid "Plugin Settings"
+msgstr "Plugin-Einstellungen"
 
-#: ../../mod/admin.php:492
-msgid "Single user instance"
-msgstr "Ein-Nutzer Instanz"
+#: ../../mod/settings.php:660
+msgid "Off"
+msgstr "Aus"
 
-#: ../../mod/admin.php:492
-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/settings.php:660
+msgid "On"
+msgstr "An"
 
-#: ../../mod/admin.php:493
-msgid "Maximum image size"
-msgstr "Maximale Größe von Bildern"
+#: ../../mod/settings.php:668
+msgid "Additional Features"
+msgstr "Zusätzliche Features"
 
-#: ../../mod/admin.php:493
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Maximale Upload-Größe von Bildern in Bytes. Standard ist 0, d.h. ohne Limit."
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
 
-#: ../../mod/admin.php:494
-msgid "Maximum image length"
-msgstr "Maximale Länge von Bildern"
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "enabled"
+msgstr "eingeschaltet"
 
-#: ../../mod/admin.php:494
-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/settings.php:681 ../../mod/settings.php:682
+msgid "disabled"
+msgstr "ausgeschaltet"
 
-#: ../../mod/admin.php:495
-msgid "JPEG image quality"
-msgstr "Qualität des JPEG Bildes"
+#: ../../mod/settings.php:682
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../mod/admin.php:495
-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/settings.php:714
+msgid "Email access is disabled on this site."
+msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
 
-#: ../../mod/admin.php:497
-msgid "Register policy"
-msgstr "Registrierungsmethode"
+#: ../../mod/settings.php:721
+msgid "Connector Settings"
+msgstr "Verbindungs-Einstellungen"
 
-#: ../../mod/admin.php:498
-msgid "Maximum Daily Registrations"
-msgstr "Maximum täglicher Neuanmeldungen"
+#: ../../mod/settings.php:726
+msgid "Email/Mailbox Setup"
+msgstr "E-Mail/Postfach-Einstellungen"
 
-#: ../../mod/admin.php:498
+#: ../../mod/settings.php:727
 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:499
-msgid "Register text"
-msgstr "Registrierungstext"
+"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/admin.php:499
-msgid "Will be displayed prominently on the registration page."
-msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt."
+#: ../../mod/settings.php:728
+msgid "Last successful email check:"
+msgstr "Letzter erfolgreicher E-Mail Check"
 
-#: ../../mod/admin.php:500
-msgid "Accounts abandoned after x days"
-msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt"
+#: ../../mod/settings.php:730
+msgid "IMAP server name:"
+msgstr "IMAP-Server-Name:"
 
-#: ../../mod/admin.php:500
-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/settings.php:731
+msgid "IMAP port:"
+msgstr "IMAP-Port:"
 
-#: ../../mod/admin.php:501
-msgid "Allowed friend domains"
-msgstr "Erlaubte Domains für Kontakte"
+#: ../../mod/settings.php:732
+msgid "Security:"
+msgstr "Sicherheit:"
 
-#: ../../mod/admin.php:501
-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 Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."
+#: ../../mod/settings.php:732 ../../mod/settings.php:737
+msgid "None"
+msgstr "Keine"
 
-#: ../../mod/admin.php:502
-msgid "Allowed email domains"
-msgstr "Erlaubte Domains für E-Mails"
+#: ../../mod/settings.php:733
+msgid "Email login name:"
+msgstr "E-Mail-Login-Name:"
 
-#: ../../mod/admin.php:502
-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/settings.php:734
+msgid "Email password:"
+msgstr "E-Mail-Passwort:"
 
-#: ../../mod/admin.php:503
-msgid "Block public"
-msgstr "Öffentlichen Zugriff blockieren"
+#: ../../mod/settings.php:735
+msgid "Reply-to address:"
+msgstr "Reply-to Adresse:"
 
-#: ../../mod/admin.php:503
-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/settings.php:736
+msgid "Send public posts to all email contacts:"
+msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
 
-#: ../../mod/admin.php:504
-msgid "Force publish"
-msgstr "Erzwinge Veröffentlichung"
+#: ../../mod/settings.php:737
+msgid "Action after import:"
+msgstr "Aktion nach Import:"
 
-#: ../../mod/admin.php:504
-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/settings.php:737
+msgid "Mark as seen"
+msgstr "Als gelesen markieren"
 
-#: ../../mod/admin.php:505
-msgid "Global directory update URL"
-msgstr "URL für Updates beim weltweiten Verzeichnis"
+#: ../../mod/settings.php:737
+msgid "Move to folder"
+msgstr "In einen Ordner verschieben"
 
-#: ../../mod/admin.php:505
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL für Update des globalen Verzeichnisses. Wenn nichts eingetragen ist, bleibt das globale Verzeichnis unerreichbar."
+#: ../../mod/settings.php:738
+msgid "Move to folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/admin.php:506
-msgid "Allow threaded items"
-msgstr "Erlaube Threads in Diskussionen"
+#: ../../mod/settings.php:809
+msgid "Display Settings"
+msgstr "Anzeige-Einstellungen"
 
-#: ../../mod/admin.php:506
-msgid "Allow infinite level threading for items on this site."
-msgstr "Erlaube ein unendliches Level für Threads auf dieser Seite."
+#: ../../mod/settings.php:815 ../../mod/settings.php:826
+msgid "Display Theme:"
+msgstr "Theme:"
 
-#: ../../mod/admin.php:507
-msgid "Private posts by default for new users"
-msgstr "Private Beiträge als Standard für neue Nutzer"
+#: ../../mod/settings.php:816
+msgid "Mobile Theme:"
+msgstr "Mobiles Theme"
 
-#: ../../mod/admin.php:507
-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/settings.php:817
+msgid "Update browser every xx seconds"
+msgstr "Browser alle xx Sekunden aktualisieren"
 
-#: ../../mod/admin.php:509
-msgid "Block multiple registrations"
-msgstr "Unterbinde Mehrfachregistrierung"
+#: ../../mod/settings.php:817
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimal 10 Sekunden, kein Maximum"
 
-#: ../../mod/admin.php:509
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen."
+#: ../../mod/settings.php:818
+msgid "Number of items to display per page:"
+msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
 
-#: ../../mod/admin.php:510
-msgid "OpenID support"
-msgstr "OpenID Unterstützung"
+#: ../../mod/settings.php:818
+msgid "Maximum of 100 items"
+msgstr "Maximal 100 Beiträge"
 
-#: ../../mod/admin.php:510
-msgid "OpenID support for registration and logins."
-msgstr "OpenID-Unterstützung für Registrierung und Login."
+#: ../../mod/settings.php:819
+msgid "Don't show emoticons"
+msgstr "Keine Smilies anzeigen"
 
-#: ../../mod/admin.php:511
-msgid "Fullname check"
-msgstr "Namen auf Vollständigkeit überprüfen"
+#: ../../mod/settings.php:895
+msgid "Normal Account Page"
+msgstr "Normales Konto"
 
-#: ../../mod/admin.php:511
-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/settings.php:896
+msgid "This account is a normal personal profile"
+msgstr "Dieses Konto ist ein normales persönliches Profil"
 
-#: ../../mod/admin.php:512
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8 Reguläre Ausdrücke"
+#: ../../mod/settings.php:899
+msgid "Soapbox Page"
+msgstr "Marktschreier-Konto"
 
-#: ../../mod/admin.php:512
-msgid "Use PHP UTF8 regular expressions"
-msgstr "PHP UTF8 Ausdrücke verwenden"
+#: ../../mod/settings.php:900
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
 
-#: ../../mod/admin.php:513
-msgid "Show Community Page"
-msgstr "Gemeinschaftsseite anzeigen"
+#: ../../mod/settings.php:903
+msgid "Community Forum/Celebrity Account"
+msgstr "Forum/Promi-Konto"
 
-#: ../../mod/admin.php:513
+#: ../../mod/settings.php:904
 msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Zeige die Gemeinschaftsseite mit allen öffentlichen Beiträgen auf diesem Server."
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
 
-#: ../../mod/admin.php:514
-msgid "Enable OStatus support"
-msgstr "OStatus Unterstützung aktivieren"
+#: ../../mod/settings.php:907
+msgid "Automatic Friend Page"
+msgstr "Automatische Freunde Seite"
 
-#: ../../mod/admin.php:514
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Biete die eingebaute OStatus (identi.ca, status.net, etc.) Unterstützung an. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre Warnungen werden nur bei Bedarf angezeigt."
+#: ../../mod/settings.php:908
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
 
-#: ../../mod/admin.php:515
-msgid "Enable Diaspora support"
-msgstr "Diaspora-Support aktivieren"
+#: ../../mod/settings.php:911
+msgid "Private Forum [Experimental]"
+msgstr "Privates Forum [Versuchsstadium]"
 
-#: ../../mod/admin.php:515
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Verwende die eingebaute Diaspora-Verknüpfung."
+#: ../../mod/settings.php:912
+msgid "Private forum - approved members only"
+msgstr "Privates Forum, nur für Mitglieder"
 
-#: ../../mod/admin.php:516
-msgid "Only allow Friendica contacts"
-msgstr "Nur Friendica-Kontakte erlauben"
+#: ../../mod/settings.php:924
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../mod/admin.php:516
-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/settings.php:924
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
 
-#: ../../mod/admin.php:517
-msgid "Verify SSL"
-msgstr "SSL Überprüfen"
+#: ../../mod/settings.php:934
+msgid "Publish your default profile in your local site directory?"
+msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
 
-#: ../../mod/admin.php:517
-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/settings.php:940
+msgid "Publish your default profile in the global social directory?"
+msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
 
-#: ../../mod/admin.php:518
-msgid "Proxy user"
-msgstr "Proxy Nutzer"
+#: ../../mod/settings.php:948
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
 
-#: ../../mod/admin.php:519
-msgid "Proxy URL"
-msgstr "Proxy URL"
+#: ../../mod/settings.php:952
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
 
-#: ../../mod/admin.php:520
-msgid "Network timeout"
-msgstr "Netzwerk Wartezeit"
+#: ../../mod/settings.php:957
+msgid "Allow friends to post to your profile page?"
+msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
 
-#: ../../mod/admin.php:520
-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/settings.php:963
+msgid "Allow friends to tag your posts?"
+msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
 
-#: ../../mod/admin.php:521
-msgid "Delivery interval"
-msgstr "Zustellungsintervall"
+#: ../../mod/settings.php:969
+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/admin.php:521
-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 "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl an Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared-Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."
+#: ../../mod/settings.php:975
+msgid "Permit unknown people to send you private mail?"
+msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
 
-#: ../../mod/admin.php:522
-msgid "Poll interval"
-msgstr "Abfrageintervall"
+#: ../../mod/settings.php:983
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
 
-#: ../../mod/admin.php:522
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "Verzögere Hintergrundprozesse, um diese Anzahl an Sekunden um die Systemlast zu reduzieren. Bei 0 Sekunden wird das Auslieferungsintervall verwendet."
+#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "oder"
 
-#: ../../mod/admin.php:523
-msgid "Maximum Load Average"
-msgstr "Maximum Load Average"
+#: ../../mod/settings.php:991
+msgid "Your Identity Address is"
+msgstr "Die Adresse deines Profils lautet:"
 
-#: ../../mod/admin.php:523
-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/settings.php:1002
+msgid "Automatically expire posts after this many days:"
+msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
 
-#: ../../mod/admin.php:525
-msgid "Use MySQL full text engine"
-msgstr "Nutze MySQL full text engine"
+#: ../../mod/settings.php:1002
+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/admin.php:525
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "Aktiviert die 'full text engine'. Beschleunigt die Suche - aber es kann nur nach vier oder mehr Zeichen gesucht werden."
+#: ../../mod/settings.php:1003
+msgid "Advanced expiration settings"
+msgstr "Erweiterte Verfallseinstellungen"
 
-#: ../../mod/admin.php:526
-msgid "Path to item cache"
-msgstr "Pfad zum Eintrag Cache"
+#: ../../mod/settings.php:1004
+msgid "Advanced Expiration"
+msgstr "Erweitertes Verfallen"
 
-#: ../../mod/admin.php:527
-msgid "Cache duration in seconds"
-msgstr "Cache-Dauer in Sekunden"
+#: ../../mod/settings.php:1005
+msgid "Expire posts:"
+msgstr "Beiträge verfallen lassen:"
 
-#: ../../mod/admin.php:527
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "Wie lange sollen die Dateien im Cache vorgehalten werden? Standardwert ist 86400 Sekunden (ein Tag)."
+#: ../../mod/settings.php:1006
+msgid "Expire personal notes:"
+msgstr "Persönliche Notizen verfallen lassen:"
 
-#: ../../mod/admin.php:528
-msgid "Path for lock file"
-msgstr "Pfad für die Sperrdatei"
+#: ../../mod/settings.php:1007
+msgid "Expire starred posts:"
+msgstr "Markierte Beiträge verfallen lassen:"
 
-#: ../../mod/admin.php:529
-msgid "Temp path"
-msgstr "Temp Pfad"
+#: ../../mod/settings.php:1008
+msgid "Expire photos:"
+msgstr "Fotos verfallen lassen:"
 
-#: ../../mod/admin.php:530
-msgid "Base path to installation"
-msgstr "Basis-Pfad zur Installation"
+#: ../../mod/settings.php:1009
+msgid "Only expire posts by others:"
+msgstr "Nur Beiträge anderer verfallen:"
 
-#: ../../mod/admin.php:548
-msgid "Update has been marked successful"
-msgstr "Update wurde als erfolgreich markiert"
+#: ../../mod/settings.php:1035
+msgid "Account Settings"
+msgstr "Kontoeinstellungen"
 
-#: ../../mod/admin.php:558
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen."
+#: ../../mod/settings.php:1043
+msgid "Password Settings"
+msgstr "Passwort-Einstellungen"
 
-#: ../../mod/admin.php:561
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "Update %s war erfolgreich."
+#: ../../mod/settings.php:1044
+msgid "New Password:"
+msgstr "Neues Passwort:"
 
-#: ../../mod/admin.php:565
-#, 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/settings.php:1045
+msgid "Confirm:"
+msgstr "Bestätigen:"
 
-#: ../../mod/admin.php:568
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "Updatefunktion %s konnte nicht gefunden werden."
+#: ../../mod/settings.php:1045
+msgid "Leave password fields blank unless changing"
+msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
 
-#: ../../mod/admin.php:583
-msgid "No failed updates."
-msgstr "Keine fehlgeschlagenen Updates."
+#: ../../mod/settings.php:1049
+msgid "Basic Settings"
+msgstr "Grundeinstellungen"
 
-#: ../../mod/admin.php:587
-msgid "Failed Updates"
-msgstr "Fehlgeschlagene Updates"
+#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Kompletter Name:"
 
-#: ../../mod/admin.php:588
-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/settings.php:1051
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
 
-#: ../../mod/admin.php:589
-msgid "Mark success (if update was manually applied)"
-msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)"
+#: ../../mod/settings.php:1052
+msgid "Your Timezone:"
+msgstr "Deine Zeitzone:"
 
-#: ../../mod/admin.php:590
-msgid "Attempt to execute this update step automatically"
-msgstr "Versuchen, diesen Schritt automatisch auszuführen"
+#: ../../mod/settings.php:1053
+msgid "Default Post Location:"
+msgstr "Standardstandort:"
 
-#: ../../mod/admin.php:615
-#, 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/settings.php:1054
+msgid "Use Browser Location:"
+msgstr "Standort des Browsers verwenden:"
 
-#: ../../mod/admin.php:622
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s Nutzer gelöscht"
-msgstr[1] "%s Nutzer gelöscht"
+#: ../../mod/settings.php:1057
+msgid "Security and Privacy Settings"
+msgstr "Sicherheits- und Privatsphäre-Einstellungen"
 
-#: ../../mod/admin.php:661
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Nutzer '%s' gelöscht"
+#: ../../mod/settings.php:1059
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
 
-#: ../../mod/admin.php:669
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Nutzer '%s' entsperrt"
+#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
+msgid "(to prevent spam abuse)"
+msgstr "(um SPAM zu vermeiden)"
 
-#: ../../mod/admin.php:669
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Nutzer '%s' gesperrt"
+#: ../../mod/settings.php:1060
+msgid "Default Post Permissions"
+msgstr "Standard-Zugriffsrechte für Beiträge"
 
-#: ../../mod/admin.php:745
-msgid "select all"
-msgstr "Alle auswählen"
+#: ../../mod/settings.php:1061
+msgid "(click to open/close)"
+msgstr "(klicke zum öffnen/schließen)"
 
-#: ../../mod/admin.php:746
-msgid "User registrations waiting for confirm"
-msgstr "Neuanmeldungen, die auf deine Bestätigung warten"
+#: ../../mod/settings.php:1072
+msgid "Default Private Post"
+msgstr "Privater Standardbeitrag"
 
-#: ../../mod/admin.php:747
-msgid "Request date"
-msgstr "Anfragedatum"
+#: ../../mod/settings.php:1073
+msgid "Default Public Post"
+msgstr "Öffentlicher Standardbeitrag"
 
-#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/crepair.php:148
-msgid "Name"
-msgstr "Name"
+#: ../../mod/settings.php:1077
+msgid "Default Permissions for New Posts"
+msgstr "Standardberechtigungen für neue Beiträge"
 
-#: ../../mod/admin.php:748
-msgid "No registrations."
-msgstr "Keine Neuanmeldungen."
+#: ../../mod/settings.php:1089
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
 
-#: ../../mod/admin.php:749 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Genehmigen"
+#: ../../mod/settings.php:1092
+msgid "Notification Settings"
+msgstr "Benachrichtigungseinstellungen"
 
-#: ../../mod/admin.php:750
-msgid "Deny"
-msgstr "Verwehren"
+#: ../../mod/settings.php:1093
+msgid "By default post a status message when:"
+msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
 
-#: ../../mod/admin.php:752 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
-msgstr "Sperren"
+#: ../../mod/settings.php:1094
+msgid "accepting a friend request"
+msgstr "– du eine Kontaktanfrage akzeptierst"
 
-#: ../../mod/admin.php:753 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
-msgstr "Entsperren"
+#: ../../mod/settings.php:1095
+msgid "joining a forum/community"
+msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
 
-#: ../../mod/admin.php:754
-msgid "Site admin"
-msgstr "Seitenadministrator"
+#: ../../mod/settings.php:1096
+msgid "making an <em>interesting</em> profile change"
+msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
 
-#: ../../mod/admin.php:757
-msgid "Register date"
-msgstr "Anmeldedatum"
+#: ../../mod/settings.php:1097
+msgid "Send a notification email when:"
+msgstr "Benachrichtigungs-E-Mail senden wenn:"
 
-#: ../../mod/admin.php:757
-msgid "Last login"
-msgstr "Letzte Anmeldung"
+#: ../../mod/settings.php:1098
+msgid "You receive an introduction"
+msgstr "– du eine Kontaktanfrage erhältst"
 
-#: ../../mod/admin.php:757
-msgid "Last item"
-msgstr "Letzter Beitrag"
+#: ../../mod/settings.php:1099
+msgid "Your introductions are confirmed"
+msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
 
-#: ../../mod/admin.php:757
-msgid "Account"
-msgstr "Nutzerkonto"
+#: ../../mod/settings.php:1100
+msgid "Someone writes on your profile wall"
+msgstr "– jemand etwas auf deine Pinnwand schreibt"
 
-#: ../../mod/admin.php:759
-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/settings.php:1101
+msgid "Someone writes a followup comment"
+msgstr "– jemand auch einen Kommentar verfasst"
 
-#: ../../mod/admin.php:760
-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/settings.php:1102
+msgid "You receive a private message"
+msgstr "– du eine private Nachricht erhältst"
 
-#: ../../mod/admin.php:801
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s deaktiviert."
+#: ../../mod/settings.php:1103
+msgid "You receive a friend suggestion"
+msgstr "– du eine Empfehlung erhältst"
 
-#: ../../mod/admin.php:805
-#, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s aktiviert."
+#: ../../mod/settings.php:1104
+msgid "You are tagged in a post"
+msgstr "– du in einem Beitrag erwähnt wirst"
 
-#: ../../mod/admin.php:815 ../../mod/admin.php:1018
-msgid "Disable"
-msgstr "Ausschalten"
+#: ../../mod/settings.php:1105
+msgid "You are poked/prodded/etc. in a post"
+msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst"
 
-#: ../../mod/admin.php:817 ../../mod/admin.php:1020
-msgid "Enable"
-msgstr "Einschalten"
+#: ../../mod/settings.php:1108
+msgid "Advanced Account/Page Type Settings"
+msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
 
-#: ../../mod/admin.php:840 ../../mod/admin.php:1048
-msgid "Toggle"
-msgstr "Umschalten"
+#: ../../mod/settings.php:1109
+msgid "Change the behaviour of this account for special situations"
+msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
 
-#: ../../mod/admin.php:848 ../../mod/admin.php:1058
-msgid "Author: "
-msgstr "Autor:"
+#: ../../mod/display.php:177
+msgid "Item has been removed."
+msgstr "Eintrag wurde entfernt."
 
-#: ../../mod/admin.php:849 ../../mod/admin.php:1059
-msgid "Maintainer: "
-msgstr "Betreuer:"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Personensuche"
 
-#: ../../mod/admin.php:978
-msgid "No themes found."
-msgstr "Keine Themen gefunden."
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Keine Übereinstimmungen"
 
-#: ../../mod/admin.php:1040
-msgid "Screenshot"
-msgstr "Bildschirmfoto"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profil gelöscht."
 
-#: ../../mod/admin.php:1086
-msgid "[Experimental]"
-msgstr "[Experimentell]"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
 
-#: ../../mod/admin.php:1087
-msgid "[Unsupported]"
-msgstr "[Nicht unterstützt]"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Neues Profil angelegt."
 
-#: ../../mod/admin.php:1114
-msgid "Log settings updated."
-msgstr "Protokolleinstellungen aktualisiert."
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Profil nicht zum Duplizieren verfügbar."
 
-#: ../../mod/admin.php:1170
-msgid "Clear"
-msgstr "löschen"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Profilname ist erforderlich."
 
-#: ../../mod/admin.php:1176
-msgid "Debugging"
-msgstr "Protokoll führen"
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr "Familienstand"
 
-#: ../../mod/admin.php:1177
-msgid "Log file"
-msgstr "Protokolldatei"
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr "Romanze"
 
-#: ../../mod/admin.php:1177
-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/profiles.php:325
+msgid "Likes"
+msgstr "Likes"
 
-#: ../../mod/admin.php:1178
-msgid "Log level"
-msgstr "Protokoll-Level"
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr "Dislikes"
 
-#: ../../mod/admin.php:1227 ../../mod/contacts.php:409
-msgid "Update now"
-msgstr "Jetzt aktualisieren"
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "Arbeit / Beschäftigung"
 
-#: ../../mod/admin.php:1228
-msgid "Close"
-msgstr "Schließen"
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "Religion"
 
-#: ../../mod/admin.php:1234
-msgid "FTP Host"
-msgstr "FTP Host"
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Politische Ansichten"
 
-#: ../../mod/admin.php:1235
-msgid "FTP Path"
-msgstr "FTP Pfad"
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "Geschlecht"
 
-#: ../../mod/admin.php:1236
-msgid "FTP User"
-msgstr "FTP Nutzername"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Sexuelle Vorlieben"
 
-#: ../../mod/admin.php:1237
-msgid "FTP Password"
-msgstr "FTP Passwort"
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Webseite"
 
-#: ../../mod/item.php:105
-msgid "Unable to locate original post."
-msgstr "Konnte den Originalbeitrag nicht finden."
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Interessen"
 
-#: ../../mod/item.php:307
-msgid "Empty post discarded."
-msgstr "Leerer Beitrag wurde verworfen."
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Adresse"
 
-#: ../../mod/item.php:869
-msgid "System error. Post not saved."
-msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
+#: ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Wohnort"
 
-#: ../../mod/item.php:894
-#, 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/profiles.php:450
+msgid "Profile updated."
+msgstr "Profil aktualisiert."
 
-#: ../../mod/item.php:896
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Du kannst sie online unter %s besuchen"
+#: ../../mod/profiles.php:517
+msgid " and "
+msgstr " und "
 
-#: ../../mod/item.php:897
-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/profiles.php:525
+msgid "public profile"
+msgstr "öffentliches Profil"
 
-#: ../../mod/item.php:901
+#: ../../mod/profiles.php:528
 #, php-format
-msgid "%s posted an update."
-msgstr "%s hat ein Update veröffentlicht."
+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/allfriends.php:34
+#: ../../mod/profiles.php:529
 #, php-format
-msgid "Friends of %s"
-msgstr "Freunde von %s"
-
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Keine Freunde zum Anzeigen."
+msgid " - Visit %1$s's %2$s"
+msgstr " – %1$ss %2$s besuchen"
 
-#: ../../mod/search.php:21 ../../mod/network.php:224
-msgid "Remove term"
-msgstr "Begriff entfernen"
+#: ../../mod/profiles.php:532
+#, 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/search.php:180 ../../mod/search.php:206
-#: ../../mod/community.php:61 ../../mod/community.php:88
-msgid "No results."
-msgstr "Keine Ergebnisse."
+#: ../../mod/profiles.php:605
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Liste der Kontakte vor Betrachtern dieses Profils verbergen?"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Verbindung der Applikation autorisieren"
+#: ../../mod/profiles.php:625
+msgid "Edit Profile Details"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Gehe zu deiner Anwendung zurück und trage dort folgenden Sicherheitscode ein:"
+#: ../../mod/profiles.php:627
+msgid "Change Profile Photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Bitte melde dich an um fortzufahren."
+#: ../../mod/profiles.php:628
+msgid "View this profile"
+msgstr "Dieses Profil anzeigen"
 
-#: ../../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 "Möchtest du dieser Anwendung den Zugriff auf deine Beiträge und Kontakte, sowie das Erstellen neuer Beiträge in deinem Namen gestatten?"
+#: ../../mod/profiles.php:629
+msgid "Create a new profile using these settings"
+msgstr "Neues Profil anlegen und diese Einstellungen verwenden"
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Details der Registration von %s"
+#: ../../mod/profiles.php:630
+msgid "Clone this profile"
+msgstr "Dieses Profil duplizieren"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an dich gesendet."
+#: ../../mod/profiles.php:631
+msgid "Delete this profile"
+msgstr "Dieses Profil löschen"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte."
+#: ../../mod/profiles.php:632
+msgid "Profile Name:"
+msgstr "Profilname:"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Deine Registrierung konnte nicht verarbeitet werden."
+#: ../../mod/profiles.php:633
+msgid "Your Full Name:"
+msgstr "Dein kompletter Name:"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Registrierungsanfrage auf %s"
+#: ../../mod/profiles.php:634
+msgid "Title/Description:"
+msgstr "Titel/Beschreibung:"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."
+#: ../../mod/profiles.php:635
+msgid "Your Gender:"
+msgstr "Dein Geschlecht:"
 
-#: ../../mod/register.php:192 ../../mod/uimport.php:50
-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/profiles.php:636
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Geburtstag (%s):"
 
-#: ../../mod/register.php:220
-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/profiles.php:637
+msgid "Street Address:"
+msgstr "Adresse:"
 
-#: ../../mod/register.php:221
-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/profiles.php:638
+msgid "Locality/City:"
+msgstr "Wohnort:"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Deine OpenID (optional): "
+#: ../../mod/profiles.php:639
+msgid "Postal/Zip Code:"
+msgstr "Postleitzahl:"
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Soll dein Profil im Nutzerverzeichnis angezeigt werden?"
+#: ../../mod/profiles.php:640
+msgid "Country:"
+msgstr "Land:"
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."
+#: ../../mod/profiles.php:641
+msgid "Region/State:"
+msgstr "Region/Bundesstaat:"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "ID deiner Einladung: "
+#: ../../mod/profiles.php:642
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Beziehungsstatus:"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Vollständiger Name (z.B. Max Mustermann): "
+#: ../../mod/profiles.php:643
+msgid "Who: (if applicable)"
+msgstr "Wer: (falls anwendbar)"
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "Deine E-Mail-Adresse: "
+#: ../../mod/profiles.php:644
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Beispiele: cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../mod/register.php:271
-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/profiles.php:645
+msgid "Since [date]:"
+msgstr "Seit [Datum]:"
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "Spitznamen wählen: "
+#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Sexuelle Vorlieben:"
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Anwendungen"
+#: ../../mod/profiles.php:647
+msgid "Homepage URL:"
+msgstr "Adresse der Homepage:"
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Keine Applikationen installiert."
+#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Heimatort:"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Konto freigegeben."
+#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Politische Ansichten:"
 
-#: ../../mod/regmod.php:100
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrierung für %s wurde zurückgezogen"
+#: ../../mod/profiles.php:650
+msgid "Religious Views:"
+msgstr "Religiöse Ansichten:"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Bitte melde dich an."
+#: ../../mod/profiles.php:651
+msgid "Public Keywords:"
+msgstr "Öffentliche Schlüsselwörter:"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Beitrag nicht verfügbar."
+#: ../../mod/profiles.php:652
+msgid "Private Keywords:"
+msgstr "Private Schlüsselwörter:"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Beitrag konnte nicht gefunden werden."
+#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Likes:"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Konto löschen"
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Dislikes:"
 
-#: ../../mod/removeme.php:46
-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/profiles.php:655
+msgid "Example: fishing photography software"
+msgstr "Beispiel: Fischen Fotografie Software"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Bitte gib dein Passwort zur Verifikation ein:"
+#: ../../mod/profiles.php:656
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Quelle (bbcode) Text:"
+#: ../../mod/profiles.php:657
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:"
+#: ../../mod/profiles.php:658
+msgid "Tell us about yourself..."
+msgstr "Erzähle uns ein bisschen von dir …"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "Originaltext:"
+#: ../../mod/profiles.php:659
+msgid "Hobbies/Interests"
+msgstr "Hobbies/Interessen"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html (reines HTML): "
+#: ../../mod/profiles.php:660
+msgid "Contact information and Social Networks"
+msgstr "Kontaktinformationen und Soziale Netzwerke"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html: "
+#: ../../mod/profiles.php:661
+msgid "Musical interests"
+msgstr "Musikalische Interessen"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb: "
+#: ../../mod/profiles.php:662
+msgid "Books, literature"
+msgstr "Literatur/Bücher"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md: "
+#: ../../mod/profiles.php:663
+msgid "Television"
+msgstr "Fernsehen"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html: "
+#: ../../mod/profiles.php:664
+msgid "Film/dance/culture/entertainment"
+msgstr "Filme/Tänze/Kultur/Unterhaltung"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb: "
+#: ../../mod/profiles.php:665
+msgid "Love/romance"
+msgstr "Liebesleben"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb: "
+#: ../../mod/profiles.php:666
+msgid "Work/employment"
+msgstr "Arbeit/Beschäftigung"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "Texteingabe (Diaspora Format): "
+#: ../../mod/profiles.php:667
+msgid "School/education"
+msgstr "Schule/Ausbildung"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../mod/profiles.php:672
+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/common.php:42
-msgid "Common Friends"
-msgstr "Gemeinsame Freunde"
+#: ../../mod/profiles.php:682 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Alter: "
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "Keine gemeinsamen Kontakte."
+#: ../../mod/profiles.php:721
+msgid "Edit/Manage Profiles"
+msgstr "Verwalte/Editiere Profile"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Konnte nicht auf die Kontaktdaten zugreifen."
+#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
+msgid "Change profile photo"
+msgstr "Profilbild ändern"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Konnte das ausgewählte Profil nicht finden."
+#: ../../mod/profiles.php:723 ../../boot.php:1367
+msgid "Create New Profile"
+msgstr "Neues Profil anlegen"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Kontakt aktualisiert."
+#: ../../mod/profiles.php:734 ../../boot.php:1377
+msgid "Profile Image"
+msgstr "Profilbild"
 
-#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
-msgid "Failed to update contact record."
-msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen."
+#: ../../mod/profiles.php:736 ../../boot.php:1380
+msgid "visible to everybody"
+msgstr "sichtbar für jeden"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Kontakt wurde blockiert"
+#: ../../mod/profiles.php:737 ../../boot.php:1381
+msgid "Edit visibility"
+msgstr "Sichtbarkeit bearbeiten"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Kontakt wurde wieder freigegeben"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "Link"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Kontakt wurde ignoriert"
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr "Account exportieren"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Kontakt wird nicht mehr ignoriert"
+#: ../../mod/uexport.php:72
+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 Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen."
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "Kontakt wurde archiviert"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr "Alles exportieren"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "Kontakt wurde aus dem Archiv geholt"
+#: ../../mod/uexport.php:73
+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 (Photos werden nicht exportiert)."
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr "Möchtest du wirklich diesen Kontakt löschen?"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} möchte mit dir in Kontakt treten"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "Kontakt wurde entfernt."
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} hat dir eine Nachricht geschickt"
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Du hast mit %s eine beidseitige Freundschaft"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} möchte sich registrieren"
 
-#: ../../mod/contacts.php:305
+#: ../../mod/ping.php:254
 #, php-format
-msgid "You are sharing with %s"
-msgstr "Du teilst mit %s"
+msgid "{0} commented %s's post"
+msgstr "{0} kommentierte einen Beitrag von %s"
 
-#: ../../mod/contacts.php:310
+#: ../../mod/ping.php:259
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s teilt mit Dir"
-
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "Private Kommunikation ist für diesen Kontakt nicht verfügbar."
-
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Niemals"
+msgid "{0} liked %s's post"
+msgstr "{0} mag %ss Beitrag"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(Aktualisierung war erfolgreich)"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} mag %ss Beitrag nicht"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(Aktualisierung war nicht erfolgreich)"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} ist jetzt mit %s befreundet"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Kontakte vorschlagen"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} hat etwas veröffentlicht"
 
-#: ../../mod/contacts.php:340
+#: ../../mod/ping.php:279
 #, php-format
-msgid "Network type: %s"
-msgstr "Netzwerktyp: %s"
-
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Alle Kontakte anzeigen"
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr "Geblockt-Status ein-/ausschalten"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} hat dich in einem Beitrag erwähnt"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Ignorieren aufheben"
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Keine Neuigkeiten."
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignorieren"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Bereinige Benachrichtigungen"
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
-msgstr "Ignoriert-Status ein-/ausschalten"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Nicht verfügbar."
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "Aus Archiv zurückholen"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Gemeinschaft"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Archivieren"
+#: ../../mod/filer.php:30 ../../include/conversation.php:962
+#: ../../include/conversation.php:980
+msgid "Save to Folder:"
+msgstr "In diesen Ordner verschieben:"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
-msgstr "Archiviert-Status ein-/ausschalten"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- auswählen -"
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Reparieren"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781
+msgid "Save"
+msgstr "Speichern"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Fortgeschrittene Kontakteinstellungen"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Die Datei ist größer als das erlaubte Limit von %d"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr "Verbindungen mit diesem Kontakt verloren!"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Hochladen der Datei fehlgeschlagen."
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Kontakt Editor"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Ungültiger Profil-Bezeichner"
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Profil-Sichtbarkeit"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Editor für die Profil-Sichtbarkeit"
 
-#: ../../mod/contacts.php:388
-#, 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/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen"
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Kontakt Informationen / Notizen"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Sichtbar für"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Notizen zum Kontakt bearbeiten"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Alle Kontakte (mit gesichertem Profilzugriff)"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Kontakt blockieren/freischalten"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Möchtest du wirklich diese Empfehlung löschen?"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignoriere den Kontakt"
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Kontaktvorschläge"
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "URL Einstellungen reparieren"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Unterhaltungen anzeigen"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Verbinden"
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Lösche den Kontakt"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignorieren/Verbergen"
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "letzte Aktualisierung:"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Zugriff verweigert."
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Öffentliche Beiträge aktualisieren"
+#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s heißt %2$s herzlich willkommen"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Derzeit geblockt"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Verwalte Identitäten und/oder Seiten"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Derzeit ignoriert"
+#: ../../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 "Zwischen verschiedenen Identitäten oder Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Momentan archiviert"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wähle eine Identität zum Verwalten: "
 
-#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Verberge diesen Kontakt vor anderen"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
 
-#: ../../mod/contacts.php:419
-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/delegate.php:121 ../../include/nav.php:165
+msgid "Delegate Page Management"
+msgstr "Delegiere das Management für die Seite"
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Kontaktvorschläge"
+#: ../../mod/delegate.php:123
+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/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Freunde vorschlagen"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Vorhandene Seiten Manager"
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Alle Kontakte"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Vorhandene Bevollmächtigte für die Seite"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Alle Kontakte anzeigen"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Potentielle Bevollmächtigte"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Ungeblockt"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Hinzufügen"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Nur nicht-blockierte Kontakte anzeigen"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Keine Einträge"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Geblockt"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Keine Kontakte."
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Nur blockierte Kontakte anzeigen"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:718
+msgid "View Contacts"
+msgstr "Kontakte anzeigen"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Ignoriert"
+#: ../../mod/notes.php:44 ../../boot.php:1892
+msgid "Personal Notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Nur ignorierte Kontakte anzeigen"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Anstupsen etc."
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "Archiviert"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "Stupse Leute an oder mache anderes mit ihnen"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Nur archivierte Kontakte anzeigen"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Empfänger"
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Verborgen"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Was willst du mit dem Empfänger machen:"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Nur verborgene Kontakte anzeigen"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Diesen Beitrag privat machen"
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Beidseitige Freundschaft"
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Weltweites Verzeichnis"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "ist ein Fan von dir"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Auf diesem Server suchen"
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "du bist Fan von"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Verzeichnis"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Suche in deinen Kontakten"
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Geschlecht:"
 
-#: ../../mod/settings.php:23 ../../mod/photos.php:79
-msgid "everybody"
-msgstr "jeder"
+#: ../../mod/directory.php:136 ../../boot.php:1408
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Geschlecht:"
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr "Zusätzliche Features"
+#: ../../mod/directory.php:138 ../../boot.php:1411
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Status:"
 
-#: ../../mod/settings.php:40 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../mod/directory.php:140 ../../boot.php:1413
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../mod/settings.php:46 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Connector-Einstellungen"
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Über:"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Plugin-Einstellungen"
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Keine Einträge (einige Einträge könnten versteckt sein)."
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Verbundene Programme"
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:393
+msgid "l F d, Y \\@ g:i A"
+msgstr "l, d. F Y\\, H:i"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Persönliche Daten exportieren"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zeitumrechnung"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Konto löschen"
+#: ../../mod/localtime.php:26
+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/settings.php:118
-msgid "Missing some important data!"
-msgstr "Wichtige Daten fehlen!"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC Zeit: %s"
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:586
-msgid "Update"
-msgstr "Aktualisierungen"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Aktuelle Zeitzone: %s"
 
-#: ../../mod/settings.php:227
-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/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Umgerechnete lokale Zeit: %s"
 
-#: ../../mod/settings.php:232
-msgid "Email settings updated."
-msgstr "E-Mail Einstellungen bearbeitet."
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Bitte wähle deine Zeitzone."
 
-#: ../../mod/settings.php:247
-msgid "Features updated"
-msgstr "Features aktualisiert"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Beitrag erfolgreich veröffentlicht."
 
-#: ../../mod/settings.php:307
-msgid "Passwords do not match. Password unchanged."
-msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert."
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
 
-#: ../../mod/settings.php:312
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Leere Passwörter sind nicht erlaubt. Passwort bleibt unverändert."
+#: ../../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 "Verkleinern der Bildgröße von [%s] ist gescheitert."
 
-#: ../../mod/settings.php:323
-msgid "Password changed."
-msgstr "Passwort ändern."
+#: ../../mod/profile_photo.php:118
+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/settings.php:325
-msgid "Password update failed. Please try again."
-msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal."
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Bild konnte nicht verarbeitet werden"
 
-#: ../../mod/settings.php:390
-msgid " Please use a shorter name."
-msgstr " Bitte verwende einen kürzeren Namen."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Datei hochladen:"
 
-#: ../../mod/settings.php:392
-msgid " Name too short."
-msgstr " Name ist zu kurz."
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Profil auswählen"
 
-#: ../../mod/settings.php:398
-msgid " Not valid email."
-msgstr " Keine gültige E-Mail."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Hochladen"
 
-#: ../../mod/settings.php:400
-msgid " Cannot change to that email."
-msgstr "Ändern der E-Mail nicht möglich. "
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "diesen Schritt überspringen"
 
-#: ../../mod/settings.php:454
-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/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wähle ein Foto von deinen Fotoalben"
 
-#: ../../mod/settings.php:458
-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/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Bild zurechtschneiden"
 
-#: ../../mod/settings.php:559 ../../mod/settings.php:585
-#: ../../mod/settings.php:621
-msgid "Add application"
-msgstr "Programm hinzufügen"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Redirect"
-msgstr "Umleiten"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Bearbeitung abgeschlossen"
 
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
-msgid "Icon url"
-msgstr "Icon URL"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Bild erfolgreich auf den Server geladen."
 
-#: ../../mod/settings.php:577
-msgid "You can't edit this application."
-msgstr "Du kannst dieses Programm nicht bearbeiten."
+#: ../../mod/install.php:117
+msgid "Friendica Social Communications Server - Setup"
+msgstr "Friendica-Server für soziale Netzwerke – Setup"
 
-#: ../../mod/settings.php:620
-msgid "Connected Apps"
-msgstr "Verbundene Programme"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Verbindung zur Datenbank gescheitert"
 
-#: ../../mod/settings.php:622 ../../mod/editpost.php:109
-#: ../../mod/content.php:751 ../../object/Item.php:110
-msgid "Edit"
-msgstr "Bearbeiten"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Konnte Tabelle nicht erstellen."
 
-#: ../../mod/settings.php:624
-msgid "Client key starts with"
-msgstr "Anwenderschlüssel beginnt mit"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
 
-#: ../../mod/settings.php:625
-msgid "No name"
-msgstr "Kein Name"
+#: ../../mod/install.php:138
+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/settings.php:626
-msgid "Remove authorization"
-msgstr "Autorisierung entziehen"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:506
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Lies bitte die \"INSTALL.txt\"."
 
-#: ../../mod/settings.php:638
-msgid "No Plugin settings configured"
-msgstr "Keine Plugin-Einstellungen konfiguriert"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Systemtest"
 
-#: ../../mod/settings.php:660
-msgid "Off"
-msgstr "Aus"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Noch einmal testen"
 
-#: ../../mod/settings.php:660
-msgid "On"
-msgstr "An"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Datenbankverbindung"
 
-#: ../../mod/settings.php:668
-msgid "Additional Features"
-msgstr "Zusätzliche Features"
+#: ../../mod/install.php:228
+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 zu deiner Datenbank Kontakt aufnehmen können."
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Eingebaute Unterstützung für Verbindungen zu %s ist %s"
+#: ../../mod/install.php:229
+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/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "eingeschaltet"
+#: ../../mod/install.php:230
+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/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "ausgeschaltet"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Datenbank-Server"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Datenbank-Nutzer"
 
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "Zugriff auf E-Mails für diese Seite deaktiviert."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Datenbank-Passwort"
 
-#: ../../mod/settings.php:721
-msgid "Connector Settings"
-msgstr "Verbindungs-Einstellungen"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Datenbank-Name"
 
-#: ../../mod/settings.php:726
-msgid "Email/Mailbox Setup"
-msgstr "E-Mail/Postfach-Einstellungen"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "E-Mail-Adresse des Administrators"
 
-#: ../../mod/settings.php:727
+#: ../../mod/install.php:238 ../../mod/install.php:277
 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."
+"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/settings.php:728
-msgid "Last successful email check:"
-msgstr "Letzter erfolgreicher E-Mail Check"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
 
-#: ../../mod/settings.php:730
-msgid "IMAP server name:"
-msgstr "IMAP-Server-Name:"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Server-Einstellungen"
 
-#: ../../mod/settings.php:731
-msgid "IMAP port:"
-msgstr "IMAP-Port:"
+#: ../../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/settings.php:732
-msgid "Security:"
-msgstr "Sicherheit:"
+#: ../../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 background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/settings.php:733
-msgid "Email login name:"
-msgstr "E-Mail-Login-Name:"
+#: ../../mod/install.php:325
+msgid "PHP executable path"
+msgstr "Pfad zu PHP"
 
-#: ../../mod/settings.php:734
-msgid "Email password:"
-msgstr "E-Mail-Passwort:"
+#: ../../mod/install.php:325
+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/settings.php:735
-msgid "Reply-to address:"
-msgstr "Reply-to Adresse:"
+#: ../../mod/install.php:330
+msgid "Command line PHP"
+msgstr "Kommandozeilen-PHP"
 
-#: ../../mod/settings.php:736
-msgid "Send public posts to all email contacts:"
-msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:"
+#: ../../mod/install.php:339
+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/settings.php:737
-msgid "Action after import:"
-msgstr "Aktion nach Import:"
+#: ../../mod/install.php:340
+msgid "This is required for message delivery to work."
+msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
 
-#: ../../mod/settings.php:737
-msgid "Mark as seen"
-msgstr "Als gelesen markieren"
+#: ../../mod/install.php:342
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/settings.php:737
-msgid "Move to folder"
-msgstr "In einen Ordner verschieben"
+#: ../../mod/install.php:363
+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/settings.php:738
-msgid "Move to folder:"
-msgstr "In diesen Ordner verschieben:"
+#: ../../mod/install.php:364
+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/settings.php:809
-msgid "Display Settings"
-msgstr "Anzeige-Einstellungen"
+#: ../../mod/install.php:366
+msgid "Generate encryption keys"
+msgstr "Schlüssel erzeugen"
 
-#: ../../mod/settings.php:815 ../../mod/settings.php:826
-msgid "Display Theme:"
-msgstr "Theme:"
+#: ../../mod/install.php:373
+msgid "libCurl PHP module"
+msgstr "PHP: libCurl-Modul"
 
-#: ../../mod/settings.php:816
-msgid "Mobile Theme:"
-msgstr "Mobiles Theme"
+#: ../../mod/install.php:374
+msgid "GD graphics PHP module"
+msgstr "PHP: GD-Grafikmodul"
 
-#: ../../mod/settings.php:817
-msgid "Update browser every xx seconds"
-msgstr "Browser alle xx Sekunden aktualisieren"
+#: ../../mod/install.php:375
+msgid "OpenSSL PHP module"
+msgstr "PHP: OpenSSL-Modul"
 
-#: ../../mod/settings.php:817
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimal 10 Sekunden, kein Maximum"
+#: ../../mod/install.php:376
+msgid "mysqli PHP module"
+msgstr "PHP: mysqli-Modul"
 
-#: ../../mod/settings.php:818
-msgid "Number of items to display per page:"
-msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
+#: ../../mod/install.php:377
+msgid "mb_string PHP module"
+msgstr "PHP: mb_string-Modul"
 
-#: ../../mod/settings.php:818
-msgid "Maximum of 100 items"
-msgstr "Maximal 100 Beiträge"
+#: ../../mod/install.php:382 ../../mod/install.php:384
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite module"
 
-#: ../../mod/settings.php:819
-msgid "Don't show emoticons"
-msgstr "Keine Smilies anzeigen"
+#: ../../mod/install.php:382
+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/settings.php:895
-msgid "Normal Account Page"
-msgstr "Normales Konto"
+#: ../../mod/install.php:390
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
 
-#: ../../mod/settings.php:896
-msgid "This account is a normal personal profile"
-msgstr "Dieses Konto ist ein normales persönliches Profil"
+#: ../../mod/install.php:394
+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/settings.php:899
-msgid "Soapbox Page"
-msgstr "Marktschreier-Konto"
+#: ../../mod/install.php:398
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
 
-#: ../../mod/settings.php:900
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Kontaktanfragen werden automatisch als Nurlese-Fans akzeptiert"
+#: ../../mod/install.php:402
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
 
-#: ../../mod/settings.php:903
-msgid "Community Forum/Celebrity Account"
-msgstr "Forum/Promi-Konto"
+#: ../../mod/install.php:406
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
 
-#: ../../mod/settings.php:904
+#: ../../mod/install.php:423
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Kontaktanfragen werden automatisch als Lese-und-Schreib-Fans akzeptiert"
-
-#: ../../mod/settings.php:907
-msgid "Automatic Friend Page"
-msgstr "Automatische Freunde Seite"
+"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/settings.php:908
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Kontaktanfragen werden automatisch als Freund akzeptiert"
+#: ../../mod/install.php:424
+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/settings.php:911
-msgid "Private Forum [Experimental]"
-msgstr "Privates Forum [Versuchsstadium]"
+#: ../../mod/install.php:425
+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/settings.php:912
-msgid "Private forum - approved members only"
-msgstr "Privates Forum, nur für Mitglieder"
+#: ../../mod/install.php:426
+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/settings.php:924
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../mod/install.php:429
+msgid ".htconfig.php is writable"
+msgstr "Schreibrechte auf .htconfig.php"
 
-#: ../../mod/settings.php:924
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID."
+#: ../../mod/install.php:439
+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/settings.php:934
-msgid "Publish your default profile in your local site directory?"
-msgstr "Darf dein Standardprofil im Verzeichnis dieses Servers veröffentlicht werden?"
+#: ../../mod/install.php:440
+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/settings.php:940
-msgid "Publish your default profile in the global social directory?"
-msgstr "Darf dein Standardprofil im weltweiten Verzeichnis veröffentlicht werden?"
+#: ../../mod/install.php:441
+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/settings.php:948
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Liste der Kontakte vor Betrachtern des Standardprofils verbergen?"
+#: ../../mod/install.php:442
+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/settings.php:952
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Profil-Details vor unbekannten Betrachtern verbergen?"
+#: ../../mod/install.php:445
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 ist schreibbar"
 
-#: ../../mod/settings.php:957
-msgid "Allow friends to post to your profile page?"
-msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?"
+#: ../../mod/install.php:457
+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/settings.php:963
-msgid "Allow friends to tag your posts?"
-msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?"
+#: ../../mod/install.php:459
+msgid "Url rewrite is working"
+msgstr "URL rewrite funktioniert"
 
-#: ../../mod/settings.php:969
-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/install.php:469
+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/settings.php:975
-msgid "Permit unknown people to send you private mail?"
-msgstr "Dürfen dir Unbekannte private Nachrichten schicken?"
+#: ../../mod/install.php:493
+msgid "Errors encountered creating database tables."
+msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
 
-#: ../../mod/settings.php:983
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil ist <strong>nicht veröffentlicht</strong>."
+#: ../../mod/install.php:504
+msgid "<h1>What next</h1>"
+msgstr "<h1>Wie geht es weiter?</h1>"
 
-#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "oder"
+#: ../../mod/install.php:505
+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/settings.php:991
-msgid "Your Identity Address is"
-msgstr "Die Adresse deines Profils lautet:"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppe erstellt."
 
-#: ../../mod/settings.php:1002
-msgid "Automatically expire posts after this many days:"
-msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Konnte die Gruppe nicht erstellen."
 
-#: ../../mod/settings.php:1002
-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/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppe nicht gefunden."
 
-#: ../../mod/settings.php:1003
-msgid "Advanced expiration settings"
-msgstr "Erweiterte Verfallseinstellungen"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Gruppenname geändert."
 
-#: ../../mod/settings.php:1004
-msgid "Advanced Expiration"
-msgstr "Erweitertes Verfallen"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
 
-#: ../../mod/settings.php:1005
-msgid "Expire posts:"
-msgstr "Beiträge verfallen lassen:"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Gruppenname:"
 
-#: ../../mod/settings.php:1006
-msgid "Expire personal notes:"
-msgstr "Persönliche Notizen verfallen lassen:"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppe entfernt."
 
-#: ../../mod/settings.php:1007
-msgid "Expire starred posts:"
-msgstr "Markierte Beiträge verfallen lassen:"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Konnte die Gruppe nicht entfernen."
 
-#: ../../mod/settings.php:1008
-msgid "Expire photos:"
-msgstr "Fotos verfallen lassen:"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Gruppeneditor"
 
-#: ../../mod/settings.php:1009
-msgid "Only expire posts by others:"
-msgstr "Nur Beiträge anderer verfallen:"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Mitglieder"
 
-#: ../../mod/settings.php:1035
-msgid "Account Settings"
-msgstr "Kontoeinstellungen"
+#: ../../mod/content.php:119 ../../mod/network.php:596
+msgid "No such group"
+msgstr "Es gibt keine solche Gruppe"
 
-#: ../../mod/settings.php:1043
-msgid "Password Settings"
-msgstr "Passwort-Einstellungen"
+#: ../../mod/content.php:130 ../../mod/network.php:607
+msgid "Group is empty"
+msgstr "Gruppe ist leer"
 
-#: ../../mod/settings.php:1044
-msgid "New Password:"
-msgstr "Neues Passwort:"
+#: ../../mod/content.php:134 ../../mod/network.php:611
+msgid "Group: "
+msgstr "Gruppe: "
 
-#: ../../mod/settings.php:1045
-msgid "Confirm:"
-msgstr "Bestätigen:"
+#: ../../mod/content.php:520 ../../include/conversation.php:662
+msgid "View in context"
+msgstr "Im Zusammenhang betrachten"
 
-#: ../../mod/settings.php:1045
-msgid "Leave password fields blank unless changing"
-msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Konto freigegeben."
 
-#: ../../mod/settings.php:1049
-msgid "Basic Settings"
-msgstr "Grundeinstellungen"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Registrierung für %s wurde zurückgezogen"
 
-#: ../../mod/settings.php:1051
-msgid "Email Address:"
-msgstr "E-Mail-Adresse:"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Bitte melde dich an."
 
-#: ../../mod/settings.php:1052
-msgid "Your Timezone:"
-msgstr "Deine Zeitzone:"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profilübereinstimmungen"
 
-#: ../../mod/settings.php:1053
-msgid "Default Post Location:"
-msgstr "Standardstandort:"
+#: ../../mod/match.php:20
+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/settings.php:1054
-msgid "Use Browser Location:"
-msgstr "Standort des Browsers verwenden:"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "ist interessiert an:"
 
-#: ../../mod/settings.php:1057
-msgid "Security and Privacy Settings"
-msgstr "Sicherheits- und Privatsphäre-Einstellungen"
+#: ../../mod/item.php:105
+msgid "Unable to locate original post."
+msgstr "Konnte den Originalbeitrag nicht finden."
 
-#: ../../mod/settings.php:1059
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maximale Anzahl von Freundschaftsanfragen/Tag:"
+#: ../../mod/item.php:307
+msgid "Empty post discarded."
+msgstr "Leerer Beitrag wurde verworfen."
 
-#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
-msgid "(to prevent spam abuse)"
-msgstr "(um SPAM zu vermeiden)"
+#: ../../mod/item.php:869
+msgid "System error. Post not saved."
+msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden."
 
-#: ../../mod/settings.php:1060
-msgid "Default Post Permissions"
-msgstr "Standard-Zugriffsrechte für Beiträge"
+#: ../../mod/item.php:894
+#, 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/settings.php:1061
-msgid "(click to open/close)"
-msgstr "(klicke zum öffnen/schließen)"
+#: ../../mod/item.php:896
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Du kannst sie online unter %s besuchen"
 
-#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
-#: ../../mod/photos.php:1506
-msgid "Show to Groups"
-msgstr "Zeige den Gruppen"
+#: ../../mod/item.php:897
+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/settings.php:1071 ../../mod/photos.php:1141
-#: ../../mod/photos.php:1507
-msgid "Show to Contacts"
-msgstr "Zeige den Kontakten"
+#: ../../mod/item.php:901
+#, php-format
+msgid "%s posted an update."
+msgstr "%s hat ein Update veröffentlicht."
 
-#: ../../mod/settings.php:1072
-msgid "Default Private Post"
-msgstr "Privater Standardbeitrag"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s ist momentan %2$s"
 
-#: ../../mod/settings.php:1073
-msgid "Default Public Post"
-msgstr "Öffentlicher Standardbeitrag"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Stimmung"
 
-#: ../../mod/settings.php:1077
-msgid "Default Permissions for New Posts"
-msgstr "Standardberechtigungen für neue Beiträge"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
 
-#: ../../mod/settings.php:1089
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Maximale Anzahl privater Nachrichten von Unbekannten pro Tag:"
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "Suchergebnisse für:"
 
-#: ../../mod/settings.php:1092
-msgid "Notification Settings"
-msgstr "Benachrichtigungseinstellungen"
+#: ../../mod/network.php:234 ../../include/group.php:275
+msgid "add"
+msgstr "hinzufügen"
 
-#: ../../mod/settings.php:1093
-msgid "By default post a status message when:"
-msgstr "Standardmäßig eine Statusnachricht posten, wenn:"
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "Neueste Kommentare"
 
-#: ../../mod/settings.php:1094
-msgid "accepting a friend request"
-msgstr "– du eine Kontaktanfrage akzeptierst"
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "Nach Kommentardatum sortieren"
 
-#: ../../mod/settings.php:1095
-msgid "joining a forum/community"
-msgstr "– du einem Forum/einer Gemeinschaftsseite beitrittst"
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "Neueste Beiträge"
 
-#: ../../mod/settings.php:1096
-msgid "making an <em>interesting</em> profile change"
-msgstr "– du eine <em>interessante</em> Änderung an deinem Profil durchführst"
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "Nach Beitragsdatum sortieren"
 
-#: ../../mod/settings.php:1097
-msgid "Send a notification email when:"
-msgstr "Benachrichtigungs-E-Mail senden wenn:"
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
+msgstr "Beiträge, in denen es um dich geht"
 
-#: ../../mod/settings.php:1098
-msgid "You receive an introduction"
-msgstr "– du eine Kontaktanfrage erhältst"
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "Neue"
 
-#: ../../mod/settings.php:1099
-msgid "Your introductions are confirmed"
-msgstr "– eine deiner Kontaktanfragen akzeptiert wurde"
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
+msgstr "Aktivitäten-Stream - nach Datum"
 
-#: ../../mod/settings.php:1100
-msgid "Someone writes on your profile wall"
-msgstr "– jemand etwas auf deine Pinnwand schreibt"
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "Geteilte Links"
 
-#: ../../mod/settings.php:1101
-msgid "Someone writes a followup comment"
-msgstr "– jemand auch einen Kommentar verfasst"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "Interessante Links"
 
-#: ../../mod/settings.php:1102
-msgid "You receive a private message"
-msgstr "– du eine private Nachricht erhältst"
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Markierte"
 
-#: ../../mod/settings.php:1103
-msgid "You receive a friend suggestion"
-msgstr "– du eine Empfehlung erhältst"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Favorisierte Beiträge"
 
-#: ../../mod/settings.php:1104
-msgid "You are tagged in a post"
-msgstr "– du in einem Beitrag erwähnt wirst"
+#: ../../mod/network.php:546
+#, 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
+msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
 
-#: ../../mod/settings.php:1105
-msgid "You are poked/prodded/etc. in a post"
-msgstr "– du von jemandem angestupst oder sonstwie behandelt wirst"
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
 
-#: ../../mod/settings.php:1108
-msgid "Advanced Account/Page Type Settings"
-msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../mod/settings.php:1109
-msgid "Change the behaviour of this account for special situations"
-msgstr "Verhalten dieses Kontos in bestimmten Situationen:"
+#: ../../mod/network.php:623
+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/share.php:44
-msgid "link"
-msgstr "Link"
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "Ungültiger Kontakt."
 
 #: ../../mod/crepair.php:102
 msgid "Contact settings applied."
@@ -7586,12 +4937,7 @@ msgstr "Einstellungen zum Kontakt angewandt."
 
 #: ../../mod/crepair.php:104
 msgid "Contact update failed."
-msgstr "Konnte den Kontakt nicht aktualisieren."
-
-#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Kontakt nicht gefunden."
+msgstr "Konnte den Kontakt nicht aktualisieren."
 
 #: ../../mod/crepair.php:135
 msgid "Repair Contact Settings"
@@ -7645,2340 +4991,2049 @@ msgstr "Pull/Feed-URL"
 msgid "New photo from this URL"
 msgstr "Neues Foto von dieser URL"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden."
-
-#: ../../mod/delegate.php:123
-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:124
-msgid "Existing Page Managers"
-msgstr "Vorhandene Seiten Manager"
-
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Vorhandene Bevollmächtigte für die Seite"
-
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Potentielle Bevollmächtigte"
-
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Hinzufügen"
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Keine Einträge"
-
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr "Anstupsen etc."
-
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "Stupse Leute an oder mache anderes mit ihnen"
-
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "Empfänger"
-
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "Was willst du mit dem Empfänger machen:"
-
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Diesen Beitrag privat machen"
-
-#: ../../mod/dfrn_confirm.php:119
-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:237
-msgid "Response from remote site was not understood."
-msgstr "Antwort der Gegenstelle unverständlich."
-
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Unerwartete Antwort der Gegenstelle: "
-
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Bestätigung erfolgreich abgeschlossen."
-
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Gegenstelle meldet: "
-
-#: ../../mod/dfrn_confirm.php:268
-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:275
-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/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Für '%s' wurde kein Nutzer gefunden"
-
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung."
-
-#: ../../mod/dfrn_confirm.php:583
-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/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/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/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 "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:716
-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:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Auf %s wurde die Verbindung akzeptiert"
-
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s ist %2$s beigetreten"
-
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s heißt %2$s herzlich willkommen"
-
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Diese Kontaktanfrage wurde bereits akzeptiert."
-
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Profiladresse ist ungültig oder stellt einige Profildaten nicht zur Verfügung."
-
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Warnung: Es konnte kein Name des Besitzers von der angegebenen Profiladresse gefunden werden."
-
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Warnung: Es konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden."
-
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, 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"
+#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
+#: ../../include/nav.php:143
+msgid "Your posts and conversations"
+msgstr "Deine Beiträge und Unterhaltungen"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Kontaktanfrage abgeschlossen."
+#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Deine Profilseite"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Nicht behebbarer Protokollfehler."
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "Deine Kontakte"
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil nicht verfügbar."
+#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Deine Fotos"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten."
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
+msgid "Your events"
+msgstr "Deine Ereignisse"
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Maßnahmen zum Spamschutz wurden ergriffen."
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Persönliche Notizen"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Freunde sind angehalten, es in 24 Stunden erneut zu versuchen."
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Deine privaten Fotos"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Ungültiger Locator"
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:163
+msgid "Community Pages"
+msgstr "Foren"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Ungültige E-Mail Adresse."
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+#: ../../view/theme/diabook/config.php:165
+msgid "Community Profiles"
+msgstr "Community-Profile"
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Dieses Konto ist nicht für E-Mail konfiguriert. Anfrage fehlgeschlagen."
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+#: ../../view/theme/diabook/config.php:170
+msgid "Last users"
+msgstr "Letzte Nutzer"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Konnte deinen Namen an der angegebenen Stelle nicht finden."
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+#: ../../view/theme/diabook/config.php:172
+msgid "Last likes"
+msgstr "Zuletzt gemocht"
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Du hast dich hier bereits vorgestellt."
+#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "Veranstaltung"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Es scheint so, als ob du bereits mit %s befreundet bist."
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+#: ../../view/theme/diabook/config.php:171
+msgid "Last photos"
+msgstr "Letzte Fotos"
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Ungültige Profil-URL."
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+#: ../../view/theme/diabook/config.php:168
+msgid "Find Friends"
+msgstr "Freunde finden"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Deine Kontaktanfrage wurde gesendet."
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
+msgstr "Lokales Verzeichnis"
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen."
+#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Ähnliche Interessen"
 
-#: ../../mod/dfrn_request.php:659
-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."
+#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Freunde einladen"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Verberge diesen Kontakt"
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:164
+msgid "Earth Layers"
+msgstr "Earth Layers"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Willkommen zurück %s."
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Bitte bestätige deine Kontaktanfrage bei %s."
+#: ../../view/theme/diabook/theme.php:578
+#: ../../view/theme/diabook/config.php:161
+msgid "Set longitude (X) for Earth Layers"
+msgstr "Longitude (X) der Earth Layer"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Bestätigen"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/config.php:162
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "Latitude (Y) der Earth Layer"
 
-#: ../../mod/dfrn_request.php:811
-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:"
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+#: ../../view/theme/diabook/config.php:166
+msgid "Help or @NewHere ?"
+msgstr "Hilfe oder @NewHere"
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+#: ../../view/theme/diabook/config.php:167
+msgid "Connect Services"
+msgstr "Verbinde Dienste"
 
-#: ../../mod/dfrn_request.php:829
-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 "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten."
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
+msgstr "Neueste Tweets"
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Freundschafts-/Kontaktanfrage"
+#: ../../view/theme/diabook/theme.php:609
+#: ../../view/theme/diabook/config.php:159
+msgid "Set twitter search term"
+msgstr "Twitter Suchbegriff"
 
-#: ../../mod/dfrn_request.php:833
-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"
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
+msgid "don't show"
+msgstr "nicht zeigen"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Bitte beantworte Folgendes:"
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
+msgid "show"
+msgstr "zeigen"
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Kennt %s dich?"
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
+msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Eine persönliche Notiz beifügen:"
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Themeneinstellungen"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
 
-#: ../../mod/dfrn_request.php:843
-#, 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."
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Liniengröße für Beiträge und Kommantare festlegen"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Adresse deines Profils:"
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr "Auflösung für die Mittelspalte setzen"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Anfrage abschicken"
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr "Wähle Farbschema"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s folgt %2$s %3$s"
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr "Zoomfaktor der Earth Layer"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "Möchtest du wirklich diese Empfehlung löschen?"
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr "Neueste Tweets"
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal."
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Farbschema wählen"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignorieren/Verbergen"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Ausrichtung"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Personensuche"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Links"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Keine Übereinstimmungen"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Mitte"
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt."
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Farbschema"
 
-#: ../../mod/display.php:177
-msgid "Item has been removed."
-msgstr "Eintrag wurde entfernt."
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Schriftgröße in Beiträgen"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag entfernt"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Schriftgröße in Eingabefeldern"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Gegenstands-Tag entfernen"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wähle ein Tag zum Entfernen aus: "
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Theme Breite festlegen"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Beitrag nicht gefunden"
+#: ../../boot.php:650
+msgid "Delete this item?"
+msgstr "Diesen Beitrag löschen?"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Beitrag bearbeiten"
+#: ../../boot.php:653
+msgid "show fewer"
+msgstr "weniger anzeigen"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden."
+#: ../../boot.php:920
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../boot.php:922
+#, php-format
+msgid "Update Error at %s"
+msgstr "Updatefehler bei %s"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Veranstaltung bearbeiten"
+#: ../../boot.php:1032
+msgid "Create a New Account"
+msgstr "Neues Konto erstellen"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Neue Veranstaltung erstellen"
+#: ../../boot.php:1057 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Abmelden"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "Stunde:Minute"
+#: ../../boot.php:1058 ../../include/nav.php:91
+msgid "Login"
+msgstr "Anmeldung"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Veranstaltungsdetails"
+#: ../../boot.php:1060
+msgid "Nickname or Email address: "
+msgstr "Spitzname oder E-Mail-Adresse: "
+
+#: ../../boot.php:1061
+msgid "Password: "
+msgstr "Passwort: "
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Das Format ist %s %s. Beginnzeitpunkt und Titel werden benötigt."
+#: ../../boot.php:1062
+msgid "Remember me"
+msgstr "Anmeldedaten merken"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Veranstaltungsbeginn:"
+#: ../../boot.php:1065
+msgid "Or login using OpenID: "
+msgstr "Oder melde dich mit deiner OpenID an: "
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Benötigt"
+#: ../../boot.php:1071
+msgid "Forgot your password?"
+msgstr "Passwort vergessen?"
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant"
+#: ../../boot.php:1074
+msgid "Website Terms of Service"
+msgstr "Website Nutzungsbedingungen"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Veranstaltungsende:"
+#: ../../boot.php:1075
+msgid "terms of service"
+msgstr "Nutzungsbedingungen"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "An Zeitzone des Betrachters anpassen"
+#: ../../boot.php:1077
+msgid "Website Privacy Policy"
+msgstr "Website Datenschutzerklärung"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Beschreibung"
+#: ../../boot.php:1078
+msgid "privacy policy"
+msgstr "Datenschutzerklärung"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titel:"
+#: ../../boot.php:1207
+msgid "Requested account is not available."
+msgstr "Das angefragte Profil ist nicht vorhanden."
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Veranstaltung teilen"
+#: ../../boot.php:1286 ../../boot.php:1390
+msgid "Edit profile"
+msgstr "Profil bearbeiten"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Dateien"
+#: ../../boot.php:1352
+msgid "Message"
+msgstr "Nachricht"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "Account exportieren"
+#: ../../boot.php:1360 ../../include/nav.php:169
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../mod/uexport.php:72
-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 Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen."
+#: ../../boot.php:1360
+msgid "Manage/edit profiles"
+msgstr "Profile verwalten/editieren"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "Alles exportieren"
+#: ../../boot.php:1489 ../../boot.php:1575
+msgid "g A l F d"
+msgstr "l, d. F G \\U\\h\\r"
 
-#: ../../mod/uexport.php:73
-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 (Photos werden nicht exportiert)."
+#: ../../boot.php:1490 ../../boot.php:1576
+msgid "F d"
+msgstr "d. F"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- auswählen -"
+#: ../../boot.php:1535 ../../boot.php:1616
+msgid "[today]"
+msgstr "[heute]"
 
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr "Import"
+#: ../../boot.php:1547
+msgid "Birthday Reminders"
+msgstr "Geburtstagserinnerungen"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Account umziehen"
+#: ../../boot.php:1548
+msgid "Birthdays this week:"
+msgstr "Geburtstage diese Woche:"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "Du kannst einen Account von einem anderen Friendica Server importieren."
+#: ../../boot.php:1609
+msgid "[No description]"
+msgstr "[keine Beschreibung]"
 
-#: ../../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 "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 Freunde darüber zu informieren, dass du hierher umgezogen bist."
+#: ../../boot.php:1627
+msgid "Event Reminders"
+msgstr "Veranstaltungserinnerungen"
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren"
+#: ../../boot.php:1628
+msgid "Events this week:"
+msgstr "Veranstaltungen diese Woche"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "Account Datei"
+#: ../../boot.php:1861 ../../include/nav.php:76
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
-msgstr "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\""
+#: ../../boot.php:1864
+msgid "Status Messages and Posts"
+msgstr "Statusnachrichten und Beiträge"
 
-#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
-#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
-#: ../../mod/update_profile.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]"
+#: ../../boot.php:1871
+msgid "Profile Details"
+msgstr "Profildetails"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt hinzugefügt"
+#: ../../boot.php:1888
+msgid "Events and Calendar"
+msgstr "Ereignisse und Kalender"
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "Dies ist Friendica, Version"
+#: ../../boot.php:1895
+msgid "Only You Can See This"
+msgstr "Nur du kannst das sehen"
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "die unter folgender Webadresse zu finden ist"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Allgemeine Features"
 
-#: ../../mod/friendica.php:58
-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."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Mehrere Profile"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Probleme oder Fehler gefunden? Bitte besuche"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Möglichkeit mehrere Profile zu erstellen"
 
-#: ../../mod/friendica.php:61
-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"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Beitragserstellung Features"
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Installierte Plugins/Erweiterungen/Apps"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Web-Editor"
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Keine Plugins/Erweiterungen/Apps installiert"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Den Web-Editor für neue Beiträge aktivieren"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Kontaktvorschlag gesendet."
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Beitragsvorschau"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Kontakte vorschlagen"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben."
 
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Schlage %s einen Kontakt vor"
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr "Widgets für Netzwerk und Seitenleiste"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppe erstellt."
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "Archiv"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Konnte die Gruppe nicht erstellen."
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppe nicht gefunden."
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "Gruppen Filter"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Gruppenname geändert."
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren."
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Eine Gruppe von Kontakten/Freunden anlegen."
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr "Netzwerk Filter"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Gruppenname:"
+#: ../../include/features.php:40
+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."
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppe entfernt."
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr "Speichere Suchanfragen für spätere Wiederholung."
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Konnte die Gruppe nicht entfernen."
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr "Netzwerk Reiter"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Gruppeneditor"
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr "Netzwerk-Reiter: Persönlich"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Mitglieder"
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Kein Profil"
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr "Netzwerk-Reiter: Neue"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Hilfe:"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden"
 
-#: ../../mod/help.php:90 ../../index.php:226
-msgid "Not Found"
-msgstr "Nicht gefunden"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr "Netzwerk-Reiter: Geteilte Links"
 
-#: ../../mod/help.php:93 ../../index.php:229
-msgid "Page not found."
-msgstr "Seite nicht gefunden."
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Keine Kontakte."
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr "Werkzeuge für Beiträge und Kommentare"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Zugriff verweigert."
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr "Mehrere Beiträge löschen"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Die Datei ist größer als das erlaubte Limit von %d"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Hochladen der Datei fehlgeschlagen."
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr "Gesendete Beiträge editieren"
 
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Friendica-Server für soziale Netzwerke – Setup"
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren."
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Verbindung zur Datenbank gescheitert"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "Tagging"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Konnte Tabelle nicht erstellen."
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen."
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Die Datenbank deiner Friendicaseite wurde installiert."
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr "Beitragskategorien"
 
-#: ../../mod/install.php:138
-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."
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "Eigene Beiträge mit Kategorien versehen"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:506
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Lies bitte die \"INSTALL.txt\"."
+#: ../../include/features.php:59 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Gespeicherte Ordner"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Systemtest"
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr "Beiträge in Ordnern speichern aktivieren"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Noch einmal testen"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr "Beiträge 'nicht mögen'"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Datenbankverbindung"
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'"
 
-#: ../../mod/install.php:228
-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 zu deiner Datenbank Kontakt aufnehmen können."
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "Beiträge Markieren"
 
-#: ../../mod/install.php:229
-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."
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren"
 
-#: ../../mod/install.php:230
-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."
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Abgemeldet."
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Datenbank-Server"
+#: ../../include/auth.php:128
+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."
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Datenbank-Nutzer"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Die Fehlermeldung lautete:"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Datenbank-Passwort"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
+msgid "Starts:"
+msgstr "Beginnt:"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Datenbank-Name"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
+msgid "Finishes:"
+msgstr "Endet:"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "E-Mail-Adresse des Administrators"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../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 "Die E-Mail-Adresse, die in deinem Friendica-Account eingetragen ist, muss mit dieser Adresse übereinstimmen, damit du das Admin-Panel benutzen kannst."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Bitte wähle die Standardzeitzone deiner Webseite"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Geburtstag:"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Server-Einstellungen"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Alter:"
 
-#: ../../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."
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "für %1$d %2$s"
 
-#: ../../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 background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr "Wenn du keine Kommandozeilen Version von PHP auf deinem Server installiert hast, kannst du keine Hintergrundprozesse via cron starten. Siehe <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tags"
 
-#: ../../mod/install.php:325
-msgid "PHP executable path"
-msgstr "Pfad zu PHP"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religion:"
 
-#: ../../mod/install.php:325
-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."
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobbies/Interessen:"
 
-#: ../../mod/install.php:330
-msgid "Command line PHP"
-msgstr "Kommandozeilen-PHP"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Kontaktinformationen und Soziale Netzwerke:"
 
-#: ../../mod/install.php:339
-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."
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Musikalische Interessen:"
 
-#: ../../mod/install.php:340
-msgid "This is required for message delivery to work."
-msgstr "Dies wird für die Auslieferung von Nachrichten benötigt."
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Literatur/Bücher:"
 
-#: ../../mod/install.php:342
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Fernsehen:"
 
-#: ../../mod/install.php:363
-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"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Filme/Tänze/Kultur/Unterhaltung:"
 
-#: ../../mod/install.php:364
-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."
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Liebesleben:"
 
-#: ../../mod/install.php:366
-msgid "Generate encryption keys"
-msgstr "Schlüssel erzeugen"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Arbeit/Beschäftigung:"
 
-#: ../../mod/install.php:373
-msgid "libCurl PHP module"
-msgstr "PHP: libCurl-Modul"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Schule/Ausbildung:"
 
-#: ../../mod/install.php:374
-msgid "GD graphics PHP module"
-msgstr "PHP: GD-Grafikmodul"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[kein Betreff]"
 
-#: ../../mod/install.php:375
-msgid "OpenSSL PHP module"
-msgstr "PHP: OpenSSL-Modul"
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr " bei Last.fm"
 
-#: ../../mod/install.php:376
-msgid "mysqli PHP module"
-msgstr "PHP: mysqli-Modul"
+#: ../../include/text.php:276
+msgid "prev"
+msgstr "vorige"
 
-#: ../../mod/install.php:377
-msgid "mb_string PHP module"
-msgstr "PHP: mb_string-Modul"
+#: ../../include/text.php:278
+msgid "first"
+msgstr "erste"
 
-#: ../../mod/install.php:382 ../../mod/install.php:384
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite module"
+#: ../../include/text.php:307
+msgid "last"
+msgstr "letzte"
 
-#: ../../mod/install.php:382
-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."
+#: ../../include/text.php:310
+msgid "next"
+msgstr "nächste"
 
-#: ../../mod/install.php:390
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Fehler: Das libCURL PHP Modul wird benötigt, ist aber nicht installiert."
+#: ../../include/text.php:328
+msgid "newer"
+msgstr "neuer"
 
-#: ../../mod/install.php:394
-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."
+#: ../../include/text.php:332
+msgid "older"
+msgstr "älter"
 
-#: ../../mod/install.php:398
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Fehler: Das openssl-Modul von PHP ist nicht installiert."
+#: ../../include/text.php:697
+msgid "No contacts"
+msgstr "Keine Kontakte"
 
-#: ../../mod/install.php:402
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Fehler: Das mysqli-Modul von PHP ist nicht installiert."
+#: ../../include/text.php:706
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d Kontakt"
+msgstr[1] "%d Kontakte"
 
-#: ../../mod/install.php:406
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert."
+#: ../../include/text.php:819
+msgid "poke"
+msgstr "anstupsen"
 
-#: ../../mod/install.php:423
-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."
+#: ../../include/text.php:819 ../../include/conversation.php:211
+msgid "poked"
+msgstr "stupste"
 
-#: ../../mod/install.php:424
-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."
+#: ../../include/text.php:820
+msgid "ping"
+msgstr "anpingen"
 
-#: ../../mod/install.php:425
-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."
+#: ../../include/text.php:820
+msgid "pinged"
+msgstr "pingte"
 
-#: ../../mod/install.php:426
-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."
+#: ../../include/text.php:821
+msgid "prod"
+msgstr "knuffen"
 
-#: ../../mod/install.php:429
-msgid ".htconfig.php is writable"
-msgstr "Schreibrechte auf .htconfig.php"
+#: ../../include/text.php:821
+msgid "prodded"
+msgstr "knuffte"
 
-#: ../../mod/install.php:439
-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."
+#: ../../include/text.php:822
+msgid "slap"
+msgstr "ohrfeigen"
 
-#: ../../mod/install.php:440
-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."
+#: ../../include/text.php:822
+msgid "slapped"
+msgstr "ohrfeigte"
 
-#: ../../mod/install.php:441
-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."
+#: ../../include/text.php:823
+msgid "finger"
+msgstr "befummeln"
 
-#: ../../mod/install.php:442
-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."
+#: ../../include/text.php:823
+msgid "fingered"
+msgstr "befummelte"
 
-#: ../../mod/install.php:445
-msgid "view/smarty3 is writable"
-msgstr "view/smarty3 ist schreibbar"
+#: ../../include/text.php:824
+msgid "rebuff"
+msgstr "eine Abfuhr erteilen"
 
-#: ../../mod/install.php:457
-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."
+#: ../../include/text.php:824
+msgid "rebuffed"
+msgstr "abfuhrerteilte"
 
-#: ../../mod/install.php:459
-msgid "Url rewrite is working"
-msgstr "URL rewrite funktioniert"
+#: ../../include/text.php:836
+msgid "happy"
+msgstr "glücklich"
 
-#: ../../mod/install.php:469
-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."
+#: ../../include/text.php:837
+msgid "sad"
+msgstr "traurig"
 
-#: ../../mod/install.php:493
-msgid "Errors encountered creating database tables."
-msgstr "Fehler aufgetreten während der Erzeugung der Datenbanktabellen."
+#: ../../include/text.php:838
+msgid "mellow"
+msgstr "sanft"
 
-#: ../../mod/install.php:504
-msgid "<h1>What next</h1>"
-msgstr "<h1>Wie geht es weiter?</h1>"
+#: ../../include/text.php:839
+msgid "tired"
+msgstr "müde"
 
-#: ../../mod/install.php:505
-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."
+#: ../../include/text.php:840
+msgid "perky"
+msgstr "frech"
 
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Bildgröße überschreitet das Limit von %d"
+#: ../../include/text.php:841
+msgid "angry"
+msgstr "sauer"
 
-#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Konnte das Bild nicht bearbeiten."
+#: ../../include/text.php:842
+msgid "stupified"
+msgstr "verblüfft"
 
-#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Hochladen des Bildes gescheitert."
+#: ../../include/text.php:843
+msgid "puzzled"
+msgstr "verwirrt"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "Limit für Einladungen erreicht."
+#: ../../include/text.php:844
+msgid "interested"
+msgstr "interessiert"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Keine gültige Email Adresse."
+#: ../../include/text.php:845
+msgid "bitter"
+msgstr "verbittert"
+
+#: ../../include/text.php:846
+msgid "cheerful"
+msgstr "fröhlich"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Bitte trete bei uns auf Friendica bei"
+#: ../../include/text.php:847
+msgid "alive"
+msgstr "lebendig"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite."
+#: ../../include/text.php:848
+msgid "annoyed"
+msgstr "verärgert"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Zustellung der Nachricht fehlgeschlagen."
+#: ../../include/text.php:849
+msgid "anxious"
+msgstr "unruhig"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d Nachricht gesendet."
-msgstr[1] "%d Nachrichten gesendet."
+#: ../../include/text.php:850
+msgid "cranky"
+msgstr "schrullig"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Du hast keine weiteren Einladungen"
+#: ../../include/text.php:851
+msgid "disturbed"
+msgstr "verstört"
 
-#: ../../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 "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."
+#: ../../include/text.php:852
+msgid "frustrated"
+msgstr "frustriert"
 
-#: ../../mod/invite.php:122
-#, 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."
+#: ../../include/text.php:853
+msgid "motivated"
+msgstr "motiviert"
 
-#: ../../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 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."
+#: ../../include/text.php:854
+msgid "relaxed"
+msgstr "entspannt"
 
-#: ../../mod/invite.php:126
-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."
+#: ../../include/text.php:855
+msgid "surprised"
+msgstr "überrascht"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Einladungen senden"
+#: ../../include/text.php:1015
+msgid "Monday"
+msgstr "Montag"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "E-Mail-Adressen eingeben, eine pro Zeile:"
+#: ../../include/text.php:1015
+msgid "Tuesday"
+msgstr "Dienstag"
 
-#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:329 ../../mod/message.php:558
-msgid "Your message:"
-msgstr "Deine Nachricht:"
+#: ../../include/text.php:1015
+msgid "Wednesday"
+msgstr "Mittwoch"
 
-#: ../../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 "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres Soziales Netz aufzubauen."
+#: ../../include/text.php:1015
+msgid "Thursday"
+msgstr "Donnerstag"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Du benötigst den folgenden Einladungscode: $invite_code"
+#: ../../include/text.php:1015
+msgid "Friday"
+msgstr "Freitag"
 
-#: ../../mod/invite.php:137
-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:"
+#: ../../include/text.php:1015
+msgid "Saturday"
+msgstr "Samstag"
 
-#: ../../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 "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com"
+#: ../../include/text.php:1015
+msgid "Sunday"
+msgstr "Sonntag"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, 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."
+#: ../../include/text.php:1019
+msgid "January"
+msgstr "Januar"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Kein Empfänger gewählt."
+#: ../../include/text.php:1019
+msgid "February"
+msgstr "Februar"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "Konnte deinen Heimatort nicht bestimmen."
+#: ../../include/text.php:1019
+msgid "March"
+msgstr "März"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Nachricht konnte nicht gesendet werden."
+#: ../../include/text.php:1019
+msgid "April"
+msgstr "April"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Konnte Nachrichten nicht abrufen."
+#: ../../include/text.php:1019
+msgid "May"
+msgstr "Mai"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Nachricht gesendet."
+#: ../../include/text.php:1019
+msgid "June"
+msgstr "Juni"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Kein Empfänger."
+#: ../../include/text.php:1019
+msgid "July"
+msgstr "Juli"
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Private Nachricht senden"
+#: ../../include/text.php:1019
+msgid "August"
+msgstr "August"
 
-#: ../../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 "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern."
+#: ../../include/text.php:1019
+msgid "September"
+msgstr "September"
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "An:"
+#: ../../include/text.php:1019
+msgid "October"
+msgstr "Oktober"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Betreff:"
+#: ../../include/text.php:1019
+msgid "November"
+msgstr "November"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zeitumrechnung"
+#: ../../include/text.php:1019
+msgid "December"
+msgstr "Dezember"
 
-#: ../../mod/localtime.php:26
-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."
+#: ../../include/text.php:1124
+msgid "bytes"
+msgstr "Byte"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC Zeit: %s"
+#: ../../include/text.php:1151 ../../include/text.php:1163
+msgid "Click to open/close"
+msgstr "Zum öffnen/schließen klicken"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Aktuelle Zeitzone: %s"
+#: ../../include/text.php:1336 ../../include/user.php:237
+msgid "default"
+msgstr "Standard"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Umgerechnete lokale Zeit: %s"
+#: ../../include/text.php:1348
+msgid "Select an alternate language"
+msgstr "Alternative Sprache auswählen"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Bitte wähle deine Zeitzone."
+#: ../../include/text.php:1558
+msgid "activity"
+msgstr "Aktivität"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar."
+#: ../../include/text.php:1561
+msgid "post"
+msgstr "Beitrag"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Kein gültiges Konto gefunden."
+#: ../../include/text.php:1716
+msgid "Item filed"
+msgstr "Beitrag abgelegt"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail."
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln."
 
-#: ../../mod/lostpass.php:44
+#: ../../include/items.php:1764 ../../include/datetime.php:472
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten"
+msgid "%s's birthday"
+msgstr "%ss Geburtstag"
 
-#: ../../mod/lostpass.php:66
-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."
+#: ../../include/items.php:1765 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Herzlichen Glückwunsch %s"
 
-#: ../../mod/lostpass.php:84 ../../boot.php:1072
-msgid "Password Reset"
-msgstr "Passwort zurücksetzen"
+#: ../../include/items.php:3446
+msgid "A new person is sharing with you at "
+msgstr "Eine neue Person teilt mit dir auf "
+
+#: ../../include/items.php:3446
+msgid "You have a new follower at "
+msgstr "Du hast einen neuen Kontakt auf "
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt."
+#: ../../include/items.php:3965
+msgid "Do you really want to delete this item?"
+msgstr "Möchtest du wirklich dieses Item löschen?"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Dein neues Passwort lautet"
+#: ../../include/items.php:4160
+msgid "Archives"
+msgstr "Archiv"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Speichere oder kopiere dein neues Passwort - und dann"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "(kein Betreff)"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "hier klicken, um dich anzumelden"
+#: ../../include/delivery.php:468 ../../include/notifier.php:785
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/lostpass.php:89
-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."
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Freigabe-Benachrichtigung von Diaspora"
 
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "Auf %s wurde dein Passwort geändert"
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "Anhänge:"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Hast du dein Passwort vergessen?"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Connect-URL fehlt"
 
-#: ../../mod/lostpass.php:123
+#: ../../include/follow.php:59
 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."
+"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/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Spitzname oder E-Mail:"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden."
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zurücksetzen"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Die angegebene Profiladresse liefert unzureichende Informationen."
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "System zur Wartung abgeschaltet"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Es wurde kein Autor oder Name gefunden."
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Verwalte Identitäten und/oder Seiten"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Zu dieser Adresse konnte keine passende Browser URL gefunden werden."
 
-#: ../../mod/manage.php:107
+#: ../../include/follow.php:86
 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 Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast."
-
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wähle eine Identität zum Verwalten: "
-
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profilübereinstimmungen"
+"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/match.php:20
-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."
+#: ../../include/follow.php:87
+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/match.php:57
-msgid "is interested in:"
-msgstr "ist interessiert an:"
+#: ../../include/follow.php:93
+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/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Konnte die Kontaktinformationen nicht finden."
+#: ../../include/follow.php:103
+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/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "Möchtest du wirklich diese Nachricht löschen?"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Konnte die Kontaktinformationen nicht empfangen."
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Nachricht gelöscht."
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "folgen"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Unterhaltung gelöscht."
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Willkommen "
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Keine Nachrichten."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Bitte lade ein Profilbild hoch."
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "'Unbekannter Absender - %s"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Willkommen zurück "
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Du und %s"
+#: ../../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 "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden)."
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s und du"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Männlich"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Unterhaltung löschen"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Weiblich"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d. M Y - g:i A"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Momentan männlich"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d Nachricht"
-msgstr[1] "%d Nachrichten"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Momentan weiblich"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Nachricht nicht verfügbar."
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Hauptsächlich männlich"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Nachricht löschen"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Hauptsächlich weiblich"
 
-#: ../../mod/message.php:548
-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."
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Antwort senden"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Stimmung"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transsexuell"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermaphrodit"
 
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr "Suchergebnisse für:"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neuter"
 
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "Neueste Kommentare"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Nicht spezifiziert"
 
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr "Nach Kommentardatum sortieren"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Andere"
 
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "Neueste Beiträge"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Unentschieden"
 
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr "Nach Beitragsdatum sortieren"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Männer"
 
-#: ../../mod/network.php:444 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Persönlich"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Frauen"
 
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr "Beiträge, in denen es um dich geht"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Schwul"
 
-#: ../../mod/network.php:453
-msgid "New"
-msgstr "Neue"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbisch"
 
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr "Aktivitäten-Stream - nach Datum"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Keine Vorlieben"
 
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr "Geteilte Links"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisexuell"
 
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr "Interessante Links"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosexual"
 
-#: ../../mod/network.php:471
-msgid "Starred"
-msgstr "Markierte"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstinent"
 
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr "Favorisierte Beiträge"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Jungfrauen"
 
-#: ../../mod/network.php:546
-#, 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] "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk."
-msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken."
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviant"
 
-#: ../../mod/network.php:549
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten."
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../mod/network.php:596 ../../mod/content.php:119
-msgid "No such group"
-msgstr "Es gibt keine solche Gruppe"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Oodles"
 
-#: ../../mod/network.php:607 ../../mod/content.php:130
-msgid "Group is empty"
-msgstr "Gruppe ist leer"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nonsexual"
 
-#: ../../mod/network.php:611 ../../mod/content.php:134
-msgid "Group: "
-msgstr "Gruppe: "
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../mod/network.php:621
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Einsam"
 
-#: ../../mod/network.php:623
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gelangen."
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Verfügbar"
 
-#: ../../mod/network.php:628
-msgid "Invalid contact."
-msgstr "Ungültiger Kontakt."
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Nicht verfügbar"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Nicht verfügbar."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "verknallt"
 
-#: ../../mod/photos.php:51 ../../boot.php:1878
-msgid "Photo Albums"
-msgstr "Fotoalben"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "verliebt"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
-msgid "Upload New Photos"
-msgstr "Neue Fotos hochladen"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Dating"
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Kontaktinformationen nicht verfügbar"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Untreu"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album nicht gefunden."
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sexbesessen"
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
-msgid "Delete Album"
-msgstr "Album löschen"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "Freunde"
 
-#: ../../mod/photos.php:197
-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?"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Freunde/Zuwendungen"
 
-#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
-msgid "Delete Photo"
-msgstr "Foto löschen"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/photos.php:285
-msgid "Do you really want to delete this photo?"
-msgstr "Möchtest du wirklich dieses Foto löschen?"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Verlobt"
 
-#: ../../mod/photos.php:656
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s wurde von %3$s in %2$s getaggt"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Verheiratet"
 
-#: ../../mod/photos.php:656
-msgid "a photo"
-msgstr "einem Foto"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "imaginär verheiratet"
 
-#: ../../mod/photos.php:769
-msgid "Image file is empty."
-msgstr "Bilddatei ist leer."
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partner"
 
-#: ../../mod/photos.php:924
-msgid "No photos selected"
-msgstr "Keine Bilder ausgewählt"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "zusammenlebend"
 
-#: ../../mod/photos.php:1025
-msgid "Access to this item is restricted."
-msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt."
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "wilde Ehe"
 
-#: ../../mod/photos.php:1088
-#, 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."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Glücklich"
 
-#: ../../mod/photos.php:1123
-msgid "Upload Photos"
-msgstr "Bilder hochladen"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Nicht auf der Suche"
 
-#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
-msgid "New album name: "
-msgstr "Name des neuen Albums: "
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../mod/photos.php:1128
-msgid "or existing album name: "
-msgstr "oder existierender Albumname: "
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Betrogen"
 
-#: ../../mod/photos.php:1129
-msgid "Do not show a status post for this upload"
-msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Getrennt"
 
-#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
-msgid "Permissions"
-msgstr "Berechtigungen"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Unstabil"
 
-#: ../../mod/photos.php:1142
-msgid "Private Photo"
-msgstr "Privates Foto"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Geschieden"
 
-#: ../../mod/photos.php:1143
-msgid "Public Photo"
-msgstr "Öffentliches Foto"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "imaginär geschieden"
 
-#: ../../mod/photos.php:1210
-msgid "Edit Album"
-msgstr "Album bearbeiten"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Verwitwet"
 
-#: ../../mod/photos.php:1216
-msgid "Show Newest First"
-msgstr "Zeige neueste zuerst"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Unsicher"
 
-#: ../../mod/photos.php:1218
-msgid "Show Oldest First"
-msgstr "Zeige älteste zuerst"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "Ist kompliziert"
 
-#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
-msgid "View Photo"
-msgstr "Foto betrachten"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Ist mir nicht wichtig"
 
-#: ../../mod/photos.php:1286
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein."
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Frag mich"
 
-#: ../../mod/photos.php:1288
-msgid "Photo not available"
-msgstr "Foto nicht verfügbar"
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr "Fehler beim Verarbeiten der Account Datei"
 
-#: ../../mod/photos.php:1344
-msgid "View photo"
-msgstr "Fotos ansehen"
+#: ../../include/uimport.php:67
+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?"
 
-#: ../../mod/photos.php:1344
-msgid "Edit photo"
-msgstr "Foto bearbeiten"
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel."
 
-#: ../../mod/photos.php:1345
-msgid "Use as profile photo"
-msgstr "Als Profilbild verwenden"
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr "Fehler! Konnte den Nickname nicht überprüfen."
 
-#: ../../mod/photos.php:1351 ../../mod/content.php:643
-#: ../../object/Item.php:106
-msgid "Private Message"
-msgstr "Private Nachricht"
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "Nutzer '%s' existiert bereits auf diesem Server!"
 
-#: ../../mod/photos.php:1370
-msgid "View Full Size"
-msgstr "Betrachte Originalgröße"
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten"
 
-#: ../../mod/photos.php:1444
-msgid "Tags: "
-msgstr "Tags: "
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr "Fehler beim Anlegen des Nutzerkontos"
 
-#: ../../mod/photos.php:1447
-msgid "[Remove any tag]"
-msgstr "[Tag entfernen]"
+#: ../../include/uimport.php:167
+#, 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"
 
-#: ../../mod/photos.php:1487
-msgid "Rotate CW (right)"
-msgstr "Drehen US (rechts)"
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden"
 
-#: ../../mod/photos.php:1488
-msgid "Rotate CCW (left)"
-msgstr "Drehen EUS (links)"
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "Zum Upgraden hier klicken."
 
-#: ../../mod/photos.php:1490
-msgid "New album name"
-msgstr "Name des neuen Albums"
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements."
 
-#: ../../mod/photos.php:1493
-msgid "Caption"
-msgstr "Bildunterschrift"
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar."
 
-#: ../../mod/photos.php:1495
-msgid "Add a Tag"
-msgstr "Tag hinzufügen"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s stupste %2$s"
 
-#: ../../mod/photos.php:1499
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "Nachricht/Beitrag"
 
-#: ../../mod/photos.php:1508
-msgid "Private photo"
-msgstr "Privates Foto"
+#: ../../include/conversation.php:292
+#, 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"
 
-#: ../../mod/photos.php:1509
-msgid "Public photo"
-msgstr "Öffentliches Foto"
+#: ../../include/conversation.php:728
+msgid "remove"
+msgstr "löschen"
 
-#: ../../mod/photos.php:1529 ../../mod/content.php:707
-#: ../../object/Item.php:223
-msgid "I like this (toggle)"
-msgstr "Ich mag das (toggle)"
+#: ../../include/conversation.php:732
+msgid "Delete Selected Items"
+msgstr "Lösche die markierten Beiträge"
 
-#: ../../mod/photos.php:1530 ../../mod/content.php:708
-#: ../../object/Item.php:224
-msgid "I don't like this (toggle)"
-msgstr "Ich mag das nicht (toggle)"
+#: ../../include/conversation.php:831
+msgid "Follow Thread"
+msgstr "Folge der Unterhaltung"
 
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676 ../../mod/content.php:730
-#: ../../object/Item.php:640
-msgid "This is you"
-msgstr "Das bist du"
+#: ../../include/conversation.php:832 ../../include/Contact.php:226
+msgid "View Status"
+msgstr "Pinnwand anschauen"
 
-#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
-#: ../../mod/photos.php:1678 ../../mod/content.php:732
-#: ../../object/Item.php:329 ../../object/Item.php:642 ../../boot.php:651
-msgid "Comment"
-msgstr "Kommentar"
+#: ../../include/conversation.php:833 ../../include/Contact.php:227
+msgid "View Profile"
+msgstr "Profil anschauen"
 
-#: ../../mod/photos.php:1784
-msgid "View Album"
-msgstr "Album betrachten"
+#: ../../include/conversation.php:834 ../../include/Contact.php:228
+msgid "View Photos"
+msgstr "Bilder anschauen"
 
-#: ../../mod/photos.php:1793
-msgid "Recent Photos"
-msgstr "Neueste Fotos"
+#: ../../include/conversation.php:835 ../../include/Contact.php:229
+#: ../../include/Contact.php:251
+msgid "Network Posts"
+msgstr "Netzwerkbeiträge"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Willkommen bei Friendica"
+#: ../../include/conversation.php:836 ../../include/Contact.php:230
+#: ../../include/Contact.php:251
+msgid "Edit Contact"
+msgstr "Kontakt bearbeiten"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Checkliste für neue Mitglieder"
+#: ../../include/conversation.php:837 ../../include/Contact.php:231
+#: ../../include/Contact.php:251
+msgid "Send PM"
+msgstr "Private Nachricht senden"
 
-#: ../../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 "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."
+#: ../../include/conversation.php:838 ../../include/Contact.php:225
+msgid "Poke"
+msgstr "Anstupsen"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "Einstieg"
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s likes this."
+msgstr "%s mag das."
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica Rundgang"
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s mag das nicht."
 
-#: ../../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 "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."
+#: ../../include/conversation.php:905
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d Personen</span> mögen das"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Gehe zu deinen Einstellungen"
+#: ../../include/conversation.php:908
+#, 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"
 
-#: ../../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 "Ä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 Freundschaften mit anderen im Friendica Netzwerk zu schliessen."
+#: ../../include/conversation.php:922
+msgid "and"
+msgstr "und"
 
-#: ../../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 "Ü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 Freunde und potentiellen Freunde wissen genau, wie sie dich finden können."
+#: ../../include/conversation.php:928
+#, php-format
+msgid ", and %d other people"
+msgstr " und %d andere"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Profilbild hochladen"
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s like this."
+msgstr "%s mögen das."
 
-#: ../../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 "Lade ein Profilbild hoch falls du es noch nicht getan hast. Studien haben gezeigt, dass es zehnmal wahrscheinlicher ist neue Freunde zu finden, wenn du ein Bild von dir selbst verwendest, als wenn du dies nicht tust."
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s don't like this."
+msgstr "%s mögen das nicht."
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Editiere dein Profil"
+#: ../../include/conversation.php:957 ../../include/conversation.php:975
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Für <strong>jedermann</strong> sichtbar"
 
-#: ../../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 "Editiere dein <strong>Standard</strong> Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils."
+#: ../../include/conversation.php:959 ../../include/conversation.php:977
+msgid "Please enter a video link/URL:"
+msgstr "Bitte Link/URL zum Video einfügen:"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Profil Schlüsselbegriffe"
+#: ../../include/conversation.php:960 ../../include/conversation.php:978
+msgid "Please enter an audio link/URL:"
+msgstr "Bitte Link/URL zum Audio einfügen:"
 
-#: ../../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 "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."
+#: ../../include/conversation.php:961 ../../include/conversation.php:979
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Verbindungen knüpfen"
+#: ../../include/conversation.php:963 ../../include/conversation.php:981
+msgid "Where are you right now?"
+msgstr "Wo hältst du dich jetzt gerade auf?"
+
+#: ../../include/conversation.php:964
+msgid "Delete item(s)?"
+msgstr "Einträge löschen?"
 
-#: ../../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 "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst."
+#: ../../include/conversation.php:1006
+msgid "Post to Email"
+msgstr "An E-Mail senden"
 
-#: ../../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>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten."
+#: ../../include/conversation.php:1062
+msgid "permissions"
+msgstr "Zugriffsrechte"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Emails Importieren"
+#: ../../include/conversation.php:1086
+msgid "Post to Groups"
+msgstr "Poste an Gruppe"
 
-#: ../../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 "Gib deine E-Mail-Zugangsinformationen auf der Connector-Einstellungsseite ein, falls du E-Mails aus deinem Posteingang importieren und mit Freunden und Mailinglisten interagieren willlst."
+#: ../../include/conversation.php:1087
+msgid "Post to Contacts"
+msgstr "Poste an Kontakte"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Gehe zu deiner Kontakt-Seite"
+#: ../../include/conversation.php:1088
+msgid "Private post"
+msgstr "Privater Beitrag"
 
-#: ../../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 "Die Kontakte-Seite ist die Einstiegsseite, von der aus du Kontakte verwalten und dich mit Freunden 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."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Neuen Kontakt hinzufügen"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "Gehe zum Verzeichnis deiner Friendica Instanz"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Adresse oder Web-Link eingeben"
 
-#: ../../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 "Ü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."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Beispiel: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Neue Leute kennenlernen"
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d Einladung verfügbar"
+msgstr[1] "%d Einladungen verfügbar"
 
-#: ../../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 "Im seitlichen Bedienfeld der Kontakteseite gibt es diverse Werkzeuge, um neue Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Leute finden"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Gruppiere deine Kontakte"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Name oder Interessen eingeben"
 
-#: ../../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 "Sobald du einige Freunde 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."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Verbinden/Folgen"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Warum sind meine Beiträge nicht öffentlich?"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Beispiel: Robert Morgenstein, Angeln"
 
-#: ../../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 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."
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Zufälliges Profil"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Hilfe bekommen"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Netzwerke"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Zum Hilfe Abschnitt gehen"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Alle Netzwerke"
 
-#: ../../mod/newmember.php:82
-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."
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Alles"
 
-#: ../../mod/profile.php:21 ../../boot.php:1246
-msgid "Requested profile is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorien"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Tipps für neue Nutzer"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Diese Sitzung beenden"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Invalid request identifier."
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Anmelden"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Verwerfen"
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Homepage"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Nutzerkonto erstellen"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Zeige ignorierte Anfragen"
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Hilfe und Dokumentation"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Verberge ignorierte Anfragen"
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Apps"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Benachrichtigungstyp: "
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Addon Anwendungen, Dienstprogramme, Spiele"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Kontaktvorschlag"
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Inhalt der Seite durchsuchen"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "vorgeschlagen von %s"
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Unterhaltungen auf dieser Seite"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Neue-Kontakt Nachricht senden"
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Verzeichnis"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "falls anwendbar"
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "Nutzerverzeichnis"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Behauptet dich zu kennen: "
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Unterhaltungen deiner Kontakte"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "ja"
+#: ../../include/nav.php:141
+msgid "Network Reset"
+msgstr "Netzwerk zurücksetzen"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "nein"
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr "Netzwerk-Seite ohne Filter laden"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Genehmigen als: "
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Kontaktanfragen"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Freund"
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Alle Benachrichtigungen anzeigen"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Teilenden"
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "Markiere alle Systembenachrichtigungen als gelesen"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Verehrer"
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Private E-Mail"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Kontakt-/Freundschaftsanfrage"
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "Eingang"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Neuer Bewunderer"
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Ausgang"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Keine Kontaktanfragen."
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Verwalten"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s mag %ss Beitrag"
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Andere Seiten verwalten"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s mag %ss Beitrag nicht"
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr "Delegierungen"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s ist jetzt mit %s befreundet"
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr "Profile Verwalten/Editieren"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s hat einen neuen Beitrag erstellt"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Freunde und Kontakte verwalten/editieren"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s hat %ss Beitrag kommentiert"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Einstellungen der Seite und Konfiguration"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Keine weiteren Netzwerk-Benachrichtigungen."
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr "Navigation"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Netzwerk Benachrichtigungen"
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr "Sitemap"
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr "Keine weiteren Systembenachrichtigungen."
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Unbekannt | Nicht kategorisiert"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr "Systembenachrichtigungen"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Sofort blockieren"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Keine weiteren persönlichen Benachrichtigungen"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Zwielichtig, Spammer, Selbstdarsteller"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Persönliche Benachrichtigungen"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Ist mir bekannt, hab aber keine Meinung"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Keine weiteren Pinnwand-Benachrichtigungen"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "OK, wahrscheinlich harmlos"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Pinnwand Benachrichtigungen"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Seriös, hat mein Vertrauen"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Beitrag erfolgreich veröffentlicht."
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "immer wieder"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID Protokollfehler. Keine ID zurückgegeben."
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Stündlich"
 
-#: ../../mod/openid.php:53
-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."
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Zweimal täglich"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen."
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Täglich"
 
-#: ../../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 "Verkleinern der Bildgröße von [%s] ist gescheitert."
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Wöchentlich"
 
-#: ../../mod/profile_photo.php:118
-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."
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Monatlich"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Bild konnte nicht verarbeitet werden"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Datei hochladen:"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Profil auswählen"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zott"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "diesen Schritt überspringen"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wähle ein Foto von deinen Fotoalben"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/Chat"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Bild zurechtschneiden"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann."
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Bearbeitung abgeschlossen"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica-Benachrichtigung"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Bild erfolgreich auf den Server geladen."
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Danke,"
 
-#: ../../mod/content.php:626 ../../object/Item.php:352
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d Kommentar"
-msgstr[1] "%d Kommentare"
-
-#: ../../mod/content.php:707 ../../object/Item.php:223
-msgid "like"
-msgstr "mag ich"
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
 
-#: ../../mod/content.php:708 ../../object/Item.php:224
-msgid "dislike"
-msgstr "mag ich nicht"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/content.php:710 ../../object/Item.php:226
-msgid "Share this"
-msgstr "Weitersagen"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s"
 
-#: ../../mod/content.php:710 ../../object/Item.php:226
-msgid "share"
-msgstr "Teilen"
+#: ../../include/enotify.php:46
+#, 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."
 
-#: ../../mod/content.php:734 ../../object/Item.php:644
-msgid "Bold"
-msgstr "Fett"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s schickte dir %2$s."
 
-#: ../../mod/content.php:735 ../../object/Item.php:645
-msgid "Italic"
-msgstr "Kursiv"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "eine private Nachricht"
 
-#: ../../mod/content.php:736 ../../object/Item.php:646
-msgid "Underline"
-msgstr "Unterstrichen"
+#: ../../include/enotify.php:48
+#, 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."
 
-#: ../../mod/content.php:737 ../../object/Item.php:647
-msgid "Quote"
-msgstr "Zitat"
+#: ../../include/enotify.php:90
+#, 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]"
 
-#: ../../mod/content.php:738 ../../object/Item.php:648
-msgid "Code"
-msgstr "Code"
+#: ../../include/enotify.php:97
+#, 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]"
 
-#: ../../mod/content.php:739 ../../object/Item.php:649
-msgid "Image"
-msgstr "Bild"
+#: ../../include/enotify.php:105
+#, 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]"
 
-#: ../../mod/content.php:740 ../../object/Item.php:650
-msgid "Link"
-msgstr "Verweis"
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica-Meldung] Kommentar zum Beitrag #%1$d von %2$s"
 
-#: ../../mod/content.php:741 ../../object/Item.php:651
-msgid "Video"
-msgstr "Video"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s hat einen Beitrag kommentiert, dem du folgst."
 
-#: ../../mod/content.php:776 ../../object/Item.php:202
-msgid "add star"
-msgstr "markieren"
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
+#, 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."
 
-#: ../../mod/content.php:777 ../../object/Item.php:203
-msgid "remove star"
-msgstr "Markierung entfernen"
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben"
 
-#: ../../mod/content.php:778 ../../object/Item.php:204
-msgid "toggle star status"
-msgstr "Markierung umschalten"
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s schrieb auf %2$s auf deine Pinnwand"
 
-#: ../../mod/content.php:781 ../../object/Item.php:207
-msgid "starred"
-msgstr "markiert"
+#: ../../include/enotify.php:130
+#, 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"
 
-#: ../../mod/content.php:782 ../../object/Item.php:212
-msgid "add tag"
-msgstr "Tag hinzufügen"
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica-Meldung] %s hat dich erwähnt"
 
-#: ../../mod/content.php:786 ../../object/Item.php:123
-msgid "save to folder"
-msgstr "In Ordner speichern"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s erwähnte dich auf %2$s"
 
-#: ../../mod/content.php:877 ../../object/Item.php:299
-msgid "to"
-msgstr "zu"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]erwähnte dich[/url]."
 
-#: ../../mod/content.php:878 ../../object/Item.php:301
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica-Meldung] %1$s hat dich angestupst"
 
-#: ../../mod/content.php:879 ../../object/Item.php:302
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s hat dich auf %2$s angestupst"
 
-#: ../../object/Item.php:300
-msgid "via"
-msgstr "via"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]hat dich angestupst[/url]."
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-msgid "Theme settings"
-msgstr "Themeneinstellungen"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)"
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s erwähnte deinen Beitrag auf %2$s"
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "Schriftgröße für Beiträge und Kommentare festlegen"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s erwähnte [url=%2$s]Deinen Beitrag[/url]"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "Theme Breite festlegen"
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica-Meldung] Kontaktanfrage erhalten"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Farbschema"
+#: ../../include/enotify.php:186
+#, 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"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "Liniengröße für Beiträge und Kommantare festlegen"
+#: ../../include/enotify.php:187
+#, 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."
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr "Auflösung für die Mittelspalte setzen"
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Hier kannst du das Profil betrachten: %s"
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr "Wähle Farbschema"
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Bitte besuche %s, um die Kontaktanfrage anzunehmen oder abzulehnen."
 
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:609
-msgid "Set twitter search term"
-msgstr "Twitter Suchbegriff"
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten"
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Du hast einen Freunde-Vorschlag von '%1$s' auf %2$s erhalten"
 
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:578
-msgid "Set longitude (X) for Earth Layers"
-msgstr "Longitude (X) der Earth Layer"
+#: ../../include/enotify.php:201
+#, 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]Freunde-Vorschlag[/url] %2$s von %3$s erhalten."
 
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:579
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "Latitude (Y) der Earth Layer"
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Name:"
 
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
-msgid "Community Pages"
-msgstr "Foren"
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-msgid "Earth Layers"
-msgstr "Earth Layers"
+#: ../../include/enotify.php:210
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen."
 
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-msgid "Community Profiles"
-msgstr "Community-Profile"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Du benötigst eine Einladung."
 
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-msgid "Help or @NewHere ?"
-msgstr "Hilfe oder @NewHere"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Die Einladung konnte nicht überprüft werden."
 
-#: ../../view/theme/diabook/config.php:167
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
-msgid "Connect Services"
-msgstr "Verbinde Dienste"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Ungültige OpenID URL"
 
-#: ../../view/theme/diabook/config.php:168
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-msgid "Find Friends"
-msgstr "Freunde finden"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "Bitte trage die erforderlichen Informationen ein."
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr "Neueste Tweets"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "Bitte verwende einen kürzeren Namen."
 
-#: ../../view/theme/diabook/config.php:170
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
-msgid "Last users"
-msgstr "Letzte Nutzer"
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "Der Name ist zu kurz."
 
-#: ../../view/theme/diabook/config.php:171
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
-msgid "Last photos"
-msgstr "Letzte Fotos"
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein."
 
-#: ../../view/theme/diabook/config.php:172
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-msgid "Last likes"
-msgstr "Zuletzt gemocht"
+#: ../../include/user.php:103
+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."
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr "Deine Kontakte"
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "Keine gültige E-Mail-Adresse."
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr "Lokales Verzeichnis"
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "Konnte diese E-Mail-Adresse nicht verwenden."
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr "Zoomfaktor der Earth Layer"
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen."
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr "Neueste Tweets"
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen."
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
-msgstr "Rahmen auf der rechten Seite anzeigen/verbergen"
+#: ../../include/user.php:138
+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."
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Farbschema wählen"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Ausrichtung"
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Links"
+#: ../../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."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Mitte"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Für jeden sichtbar"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "Schriftgröße in Beiträgen"
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
+msgid "Image/photo"
+msgstr "Bild/Foto"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "Schriftgröße in Eingabefeldern"
+#: ../../include/bbcode.php:272
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>"
 
-#: ../../boot.php:650
-msgid "Delete this item?"
-msgstr "Diesen Beitrag löschen?"
+#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
+msgid "$1 wrote:"
+msgstr "$1 hat geschrieben:"
 
-#: ../../boot.php:653
-msgid "show fewer"
-msgstr "weniger anzeigen"
+#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
+msgid "Encrypted content"
+msgstr "Verschlüsselter Inhalt"
 
-#: ../../boot.php:920
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen."
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Eingebetteter Inhalt"
 
-#: ../../boot.php:922
-#, php-format
-msgid "Update Error at %s"
-msgstr "Updatefehler bei %s"
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Einbettungen deaktiviert"
 
-#: ../../boot.php:1032
-msgid "Create a New Account"
-msgstr "Neues Konto erstellen"
+#: ../../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."
 
-#: ../../boot.php:1060
-msgid "Nickname or Email address: "
-msgstr "Spitzname oder E-Mail-Adresse: "
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Voreingestellte Gruppe für neue Kontakte"
 
-#: ../../boot.php:1061
-msgid "Password: "
-msgstr "Passwort: "
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Alle Kontakte"
 
-#: ../../boot.php:1062
-msgid "Remember me"
-msgstr "Anmeldedaten merken"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "bearbeiten"
 
-#: ../../boot.php:1065
-msgid "Or login using OpenID: "
-msgstr "Oder melde dich mit deiner OpenID an: "
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Gruppe bearbeiten"
 
-#: ../../boot.php:1071
-msgid "Forgot your password?"
-msgstr "Passwort vergessen?"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Neue Gruppe erstellen"
 
-#: ../../boot.php:1074
-msgid "Website Terms of Service"
-msgstr "Website Nutzungsbedingungen"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakte in keiner Gruppe"
 
-#: ../../boot.php:1075
-msgid "terms of service"
-msgstr "Nutzungsbedingungen"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "wird nicht mehr gefolgt"
 
-#: ../../boot.php:1077
-msgid "Website Privacy Policy"
-msgstr "Website Datenschutzerklärung"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Verschiedenes"
 
-#: ../../boot.php:1078
-msgid "privacy policy"
-msgstr "Datenschutzerklärung"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "Jahr"
 
-#: ../../boot.php:1207
-msgid "Requested account is not available."
-msgstr "Das angefragte Profil ist nicht vorhanden."
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "Monat"
 
-#: ../../boot.php:1286 ../../boot.php:1390
-msgid "Edit profile"
-msgstr "Profil bearbeiten"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "Tag"
 
-#: ../../boot.php:1352
-msgid "Message"
-msgstr "Nachricht"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nie"
 
-#: ../../boot.php:1360
-msgid "Manage/edit profiles"
-msgstr "Profile verwalten/editieren"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "vor weniger als einer Sekunde"
 
-#: ../../boot.php:1489 ../../boot.php:1575
-msgid "g A l F d"
-msgstr "l, d. F G \\U\\h\\r"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "Jahre"
 
-#: ../../boot.php:1490 ../../boot.php:1576
-msgid "F d"
-msgstr "d. F"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "Monate"
 
-#: ../../boot.php:1535 ../../boot.php:1616
-msgid "[today]"
-msgstr "[heute]"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "Woche"
 
-#: ../../boot.php:1547
-msgid "Birthday Reminders"
-msgstr "Geburtstagserinnerungen"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "Wochen"
 
-#: ../../boot.php:1548
-msgid "Birthdays this week:"
-msgstr "Geburtstage diese Woche:"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "Tage"
 
-#: ../../boot.php:1609
-msgid "[No description]"
-msgstr "[keine Beschreibung]"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "Stunde"
 
-#: ../../boot.php:1627
-msgid "Event Reminders"
-msgstr "Veranstaltungserinnerungen"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "Stunden"
 
-#: ../../boot.php:1628
-msgid "Events this week:"
-msgstr "Veranstaltungen diese Woche"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "Minute"
 
-#: ../../boot.php:1864
-msgid "Status Messages and Posts"
-msgstr "Statusnachrichten und Beiträge"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "Minuten"
 
-#: ../../boot.php:1871
-msgid "Profile Details"
-msgstr "Profildetails"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "Sekunde"
 
-#: ../../boot.php:1888
-msgid "Events and Calendar"
-msgstr "Ereignisse und Kalender"
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "Sekunden"
 
-#: ../../boot.php:1895
-msgid "Only You Can See This"
-msgstr "Nur du kannst das sehen"
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s her"
 
-#: ../../index.php:400
-msgid "toggle mobile"
-msgstr "auf/von Mobile Ansicht wechseln"
+#: ../../include/network.php:875
+msgid "view full size"
+msgstr "Volle Größe anzeigen"
index 97f3252a4ce037ca759cb0011a14242c33ca435b..6a555215e6d4521c93f6c82fdc7c0ee80de3c1a7 100644 (file)
 <?php
 
+if(! function_exists("string_plural_select_de")) {
 function string_plural_select_de($n){
        return ($n != 1);;
-}
+}}
 ;
-$a->strings["Altpager settings updated."] = "Altpager Einstellungen sind aktualisiert.";
-$a->strings["Alternate Pagination Setting"] = "Alternative Seitenumbruch Einstellung";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Nutze Links zu \"neuer\" und \"älter\" Seiten, statt Seiten Nummern?";
-$a->strings["Submit"] = "Senden";
-$a->strings["Bg settings updated."] = "Bg Einstellungen sind aktualisiert.";
-$a->strings["Bg Settings"] = "Bg Einstellungen";
-$a->strings["How many contacts to display on profile sidebar"] = "Wie viele Kontakte sollen in der Seitenleiste angezeigt werden";
-$a->strings["\"Blockem\" Settings"] = "\"Blockem\"-Einstellungen";
-$a->strings["Comma separated profile URLS to block"] = "Profil-URLs, die blockiert werden sollen (durch Kommas getrennt)";
-$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Einstellungen gesichert.";
-$a->strings["Blocked %s - Click to open/close"] = "%s blockiert - Zum Öffnen/Schließen klicken";
-$a->strings["Unblock Author"] = "Autor freischalten";
-$a->strings["Block Author"] = "Autor blockieren";
-$a->strings["blockem settings updated"] = "blockem Einstellungen aktualisiert";
-$a->strings["Post to blogger"] = "Auf Blogger posten";
-$a->strings["Blogger Post Settings"] = "Einstellungen zum posten auf Blogger";
-$a->strings["Enable Blogger Post Plugin"] = "Blogger-Post-Plugin aktivieren";
-$a->strings["Blogger username"] = "Blogger-Benutzername";
-$a->strings["Blogger password"] = "Blogger-Passwort";
-$a->strings["Blogger API URL"] = "Blogger-API-URL";
-$a->strings["Post to Blogger by default"] = "Standardmäßig auf Blogger posten";
-$a->strings["Post from Friendica"] = "Beitrag via Friendica";
-$a->strings["Report Bug"] = "Fehlerreport erstellen";
-$a->strings["Login"] = "Anmeldung";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Letzte Benutzer";
-$a->strings["Most active users"] = "Aktivste Nutzer";
-$a->strings["Latest photos"] = "Neueste Fotos";
-$a->strings["Contact Photos"] = "Kontaktbilder";
-$a->strings["Profile Photos"] = "Profilbilder";
-$a->strings["Latest likes"] = "Neueste Favoriten";
-$a->strings["event"] = "Veranstaltung";
-$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["Welcome to %s"] = "Willkommen zu %s";
-$a->strings["Private Events"] = "Privater Termin";
-$a->strings["Private Addressbooks"] = "Private Adressbücher";
-$a->strings["No access"] = "Kein Zugriff";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "U.S. Datumsformat (mm/dd/YYYY)";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "Deutsches Datumsformat (dd.mm.YYYY)";
-$a->strings["Could not open component for editing"] = "Kalender-Editierfunktion konnte nicht geöffnet werden";
-$a->strings["Go back to the calendar"] = "Zurück zum Kalender";
-$a->strings["Event data"] = "Veranstaltungsdetails";
-$a->strings["Calendar"] = "Kalender";
-$a->strings["Special color"] = "Spezielle Farbe";
-$a->strings["Subject"] = "Betreff:";
-$a->strings["Starts"] = "Beginnt";
-$a->strings["Ends"] = "Endet";
-$a->strings["Location"] = "Wohnort";
-$a->strings["Description"] = "Beschreibung";
-$a->strings["Recurrence"] = "Wiederholungen:";
-$a->strings["Frequency"] = "Frequenz";
-$a->strings["None"] = "Keine";
-$a->strings["Daily"] = "Täglich";
-$a->strings["Weekly"] = "Wöchentlich";
-$a->strings["Monthly"] = "Monatlich";
-$a->strings["Yearly"] = "Jährlich";
-$a->strings["days"] = "Tage";
-$a->strings["weeks"] = "Wochen";
-$a->strings["months"] = "Monate";
-$a->strings["years"] = "Jahre";
-$a->strings["Interval"] = "Intervall";
-$a->strings["All %select% %time%"] = "Jeden %select% %time%";
-$a->strings["Days"] = "Tage";
-$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["First day of week:"] = "Erster Tag der Woche";
-$a->strings["Day of month"] = "Tag des Monats";
-$a->strings["#num#th of each month"] = "#num#ten jedes Monats";
-$a->strings["#num#th-last of each month"] = "letzten #num#ten jedes Monats";
-$a->strings["#num#th #wkday# of each month"] = "jeden #num#ten #wkday# eines Monats";
-$a->strings["#num#th-last #wkday# of each month"] = "jeden #num#ten letzten #wkday# eines Monats";
-$a->strings["Month"] = "Monat";
-$a->strings["#num#th of the given month"] = "#num#ten des Monats";
-$a->strings["#num#th-last of the given month"] = "letzten #num#ten des Monats";
-$a->strings["#num#th #wkday# of the given month"] = "jeden #num#ten eines Monats";
-$a->strings["#num#th-last #wkday# of the given month"] = "jeden #num#ten letzten eines Monats";
-$a->strings["Repeat until"] = "Wiederholungen";
-$a->strings["Infinite"] = "unendlich";
-$a->strings["Until the following date"] = "bis zum folgenden Datum";
-$a->strings["Number of times"] = "Bestimmte Anzahl von Wiederholungen";
-$a->strings["Exceptions"] = "Ausnahmen";
-$a->strings["none"] = "keine";
-$a->strings["Notification"] = "Benachrichtigung";
-$a->strings["Notify by"] = "Benarchrichtigungsmethode";
-$a->strings["Remove"] = "Entfernen";
-$a->strings["E-Mail"] = "E-Mail";
-$a->strings["On Friendica / Display"] = "Bei Friendica / Anzeige";
-$a->strings["Time"] = "Zeit";
-$a->strings["Hours"] = "Stunden";
-$a->strings["Minutes"] = "Minuten";
-$a->strings["Seconds"] = "Sekunden";
-$a->strings["Weeks"] = "Wochen";
-$a->strings["before the"] = "vor dem";
-$a->strings["start of the event"] = "Beginn des Termins";
-$a->strings["end of the event"] = "Ende des Termins";
-$a->strings["Add a notification"] = "Benachrichtigung hinzufügen";
-$a->strings["The event #name# will start at #date"] = "Der Termin #name# wird am #date anfangen";
-$a->strings["#name# is about to begin."] = "#name# beginnt demnächst.";
-$a->strings["Saved"] = "Gespeichert";
-$a->strings["Private Calendar"] = "Privater Kalender";
-$a->strings["Friendica Events: Mine"] = "Meine Friendica-Veranstaltungen";
-$a->strings["Friendica Events: Contacts"] = "Friendica Veranstaltungen meiner Kontakte";
-$a->strings["Private Addresses"] = "Private Adressen";
-$a->strings["Friendica Contacts"] = "Friendica Kontakte";
-$a->strings["Friendica-Native events"] = "Friendica Veranstaltungen";
-$a->strings["Friendica-Contacts"] = "Friendica-Kontakte";
-$a->strings["Your Friendica-Contacts"] = "Deine Friendica-Kontakte";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "Entschuldigung. Bei dem Versuch die Datei zu importieren ist etwas schief gelaufen. Vielleicht wurden aber einige der Termine dennoch importiert.";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "Entschuldigung. Beim Importieren der Datei ist etwas schief gelaufen.";
-$a->strings["The ICS-File has been imported."] = "Die ICS-Datei wurde importoert.";
-$a->strings["No file was uploaded."] = "Es wurde keine Datei geladen.";
-$a->strings["Import a ICS-file"] = "Importiere eine ICS-Datei";
-$a->strings["ICS-File"] = "ICS-Datei";
-$a->strings["Overwrite all #num# existing events"] = "Überschreibe alle #num# existierenden Einträge";
-$a->strings["Upload"] = "Hochladen";
-$a->strings["Settings"] = "Einstellungen";
-$a->strings["Help"] = "Hilfe";
-$a->strings["New event"] = "Neue Veranstaltung";
-$a->strings["Today"] = "Heute";
-$a->strings["Day"] = "Tag";
-$a->strings["Week"] = "Woche";
-$a->strings["Reload"] = "Neu Laden";
-$a->strings["Previous"] = "Vorherige";
-$a->strings["Next"] = "Nächste";
-$a->strings["Date"] = "Datum";
-$a->strings["Error"] = "Fehler";
-$a->strings["Permission denied."] = "Zugriff verweigert.";
-$a->strings["The new values have been saved."] = "Die neuen Einstellungen wurden gespeichert.";
-$a->strings["The calendar has been updated."] = "Der Kalender wurde aktualisiert.";
-$a->strings["The new calendar has been created."] = "Der neue Kalender wurde erstellt.";
-$a->strings["The calendar has been deleted."] = "Der Kalender wurde gelöscht.";
-$a->strings["Calendar Settings"] = "Kalendereinstellungen";
-$a->strings["Date format"] = "Datumsformat";
-$a->strings["Time zone"] = "Zeitzone";
-$a->strings["Save"] = "Speichern";
-$a->strings["Calendars"] = "Kalender";
-$a->strings["Create a new calendar"] = "Neuen Kalender anlegen";
-$a->strings["Limitations"] = "Einschränkungen";
-$a->strings["Warning"] = "Warnung";
-$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Synchronisation (iPhone, Thunderbird Lightning, Android, ...)";
-$a->strings["Synchronizing this calendar with the iPhone"] = "Diesen Kalender mit dem iPhone synchronisieren";
-$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Friendica-Kontakte mit dem iPhone synchronisieren";
-$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "Die aktuelle Version dieses Plugins wurde nicht korrekt eingestellt. Bitte kontaktiere den System-Administrator deiner Friendica Installation um den Fehler zu beheben.";
-$a->strings["Extended calendar with CalDAV-support"] = "Erweiterter Kalender mit CalDAV Unterstützung.";
-$a->strings["noreply"] = "noreply";
-$a->strings["Notification: "] = "Benachrichtigungen: ";
-$a->strings["The database tables have been installed."] = "Die Datenbanktabellen wurden installiert.";
-$a->strings["An error occurred during the installation."] = "Während der Installation trat ein Fehler auf.";
-$a->strings["The database tables have been updated."] = "Die Tabellen in der Datenbank wurden aktualisiert.";
-$a->strings["An error occurred during the update."] = "Während der Aktualisierung trat ein Fehler auf.";
-$a->strings["No system-wide settings yet."] = "Momentan keine systemweiten Einstellungen.";
-$a->strings["Database status"] = "Datenbankstatus";
-$a->strings["Installed"] = "Installiert";
-$a->strings["Upgrade needed"] = "Upgrade erforderlich";
-$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "Bitte sichere alle Kalenderdaten (die Tabellen mit dav_* beginnend) bevor du mit dem Update fortfährst. Eigentliche <i>sollten</i> alle Kalendereinträge in die neue Datenbankstruktur übernommen werden, aber sicher ist sicher. Weiter unten kannst du die Datenbank-Anfragen ansehen, die im Verlauf des Updates gemacht werden.";
-$a->strings["Upgrade"] = "Upgrade";
-$a->strings["Not installed"] = "Nicht installiert";
-$a->strings["Install"] = "Installieren";
-$a->strings["Unknown"] = "Unbekannt";
-$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "Irgendetwas ging schief. Ich kann leider von diesem Zustand der Datenbank leider nicht automatisch fortfahren. Bitte mache ein Backup der Daten aus der Datenbank und lösche anschließend alle Tabellen deren Name mit 'dav_' anfangen. Anschließend sollte diese Installations-Routine in der Lage sein die nötigen Tabellen automatisch neu anzulegen.";
-$a->strings["Troubleshooting"] = "Problembehebung";
-$a->strings["Manual creation of the database tables:"] = "Manuelles Anlegen der Datenbanktabellen:";
-$a->strings["Show SQL-statements"] = "SQL-Anweisungen anzeigen";
-$a->strings["Post to Drupal"] = "Bei Drupal veröffentlichen";
-$a->strings["Drupal Post Settings"] = "Drupal-Beitragseinstellungen";
-$a->strings["Enable Drupal Post Plugin"] = "Veröffentlichung bei Drupal erlauben";
-$a->strings["Drupal username"] = "Drupal Nutzername";
-$a->strings["Drupal password"] = "Drupal Passwort";
-$a->strings["Post Type - article,page,or blog"] = "Beitragstyp - Artikel, Seite oder Blog";
-$a->strings["Drupal site URL"] = "URL der Drupal Seite";
-$a->strings["Drupal site uses clean URLS"] = "Drupal Seite verwendet bereinigte URLs";
-$a->strings["Post to Drupal by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Drupal";
-$a->strings["Post to Dreamwidth"] = "In Dreamwidth veröffentlichen";
-$a->strings["Dreamwidth Post Settings"] = "Dreamwidth Veröffentlichungs-Einstellungen";
-$a->strings["Enable dreamwidth Post Plugin"] = "Dreamwidth Post Plugin aktivieren";
-$a->strings["dreamwidth username"] = "Dreamwidth Benutzername";
-$a->strings["dreamwidth password"] = "Dreamwidth Passwort";
-$a->strings["Post to dreamwidth by default"] = "Standardmäßig bei Dreamwidth veröffentlichen";
-$a->strings["Editplain settings updated."] = "Editplain Einstellungen aktualisiert";
-$a->strings["Editplain Settings"] = "Editplain Einstellungen";
-$a->strings["Disable richtext status editor"] = "RichText Editor deaktivieren";
-$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
-$a->strings["Facebook disabled"] = "Facebook deaktiviert";
-$a->strings["Updating contacts"] = "Aktualisiere Kontakte";
-$a->strings["Facebook API key is missing."] = "Facebook-API-Schlüssel nicht gefunden";
-$a->strings["Facebook Connect"] = "Mit Facebook verbinden";
-$a->strings["Install Facebook connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
-$a->strings["Remove Facebook connector"] = "Facebook-Connector entfernen";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Neu authentifizieren [Das ist immer dann nötig, wenn du dein Facebook-Passwort geändert hast.]";
-$a->strings["Post to Facebook by default"] = "Veröffentliche standardmäßig bei Facebook";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Die folgenden Einstellungen haben keinen Effekt.";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "Das Verlinken von Facebookkontakten wurde auf dieser Seite deaktiviert. Wenn du es ausgeschaltet hast, kannst du es nicht wieder aktivieren.";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "All meine Facebook-Kontakte und -Konversationen hier auf diese Website importieren";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deiner<em>Pinnwand</em>, sowie den Beiträgen deiner Freunde <em>Stream</em>.";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Hier auf dieser Webseite kannst nur du die Beiträge Deiner Facebook-Freunde (Stream) sehen.";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Mit den folgenden Einstellungen kannst du die Privatsphäre der Kopie Deiner Facebook-Pinnwand hier auf dieser Seite einstellen.";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Meine Facebook-Pinnwand hier auf dieser Webseite nur für mich sichtbar machen";
-$a->strings["Do not import your Facebook profile wall conversations"] = "Facebook-Pinnwand nicht importieren";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Wenn du Facebook-Konversationen importierst und diese beiden Häkchen nicht setzt, wird deine Facebook-Pinnwand mit der Pinnwand hier auf dieser Webseite vereinigt. Die Privatsphäre-Einstellungen für deine Pinnwand auf dieser Webseite geben dann an, wer die Konversationen sehen kann.";
-$a->strings["Comma separated applications to ignore"] = "Kommaseparierte Anwendungen, die ignoriert werden sollen";
-$a->strings["Problems with Facebook Real-Time Updates"] = "Probleme mit Facebook Echtzeit-Updates";
-$a->strings["Administrator"] = "Administrator";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Facebook Connector Settings"] = "Facebook-Verbindungseinstellungen";
-$a->strings["Facebook API Key"] = "Facebook API Schlüssel";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Fehler: du scheinst die App-ID und das App-Geheimnis in deiner .htconfig.php Datei angegeben zu haben. Solange sie dort festgelegt werden kannst du dieses Formular hier nicht verwenden.<br><br>";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Fehler: der angegebene API Schlüssel scheint nicht korrekt zu sein (Zugriffstoken konnte nicht empfangen werden).";
-$a->strings["The given API Key seems to work correctly."] = "Der angegebene API Schlüssel scheint korrekt zu funktionieren.";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "Die Richtigkeit des API Schlüssels konnte nicht gefunden werden. Irgendwas stimmt nicht.";
-$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
-$a->strings["Application secret"] = "Anwendungs-Geheimnis";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Abfrageintervall in Minuten (min %1\$s Minuten)";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Kommentare synchronisieren (Kein Kommentar von Facebook geht verloren, verursacht höhere Last auf dem Server)";
-$a->strings["Real-Time Updates"] = "Echtzeit Aktualisierungen";
-$a->strings["Real-Time Updates are activated."] = "Echtzeit-Updates sind aktiviert.";
-$a->strings["Deactivate Real-Time Updates"] = "Echtzeit-Updates deaktivieren";
-$a->strings["Real-Time Updates not activated."] = "Echtzeit-Updates nicht aktiviert.";
-$a->strings["Activate Real-Time Updates"] = "Echtzeit-Updates aktivieren";
-$a->strings["Post to Facebook"] = "Bei Facebook veröffentlichen";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Beitrag wurde nicht bei Facebook veröffentlicht, da Konflikte bei den Multi-Netzwerk-Zugriffsrechten vorliegen.";
-$a->strings["View on Friendica"] = "In Friendica betrachten";
-$a->strings["Facebook post failed. Queued for retry."] = "Veröffentlichung bei Facebook gescheitert. Wir versuchen es später erneut.";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "Deine Facebook Anmeldedaten sind ungültig geworden. Bitte re-authentifiziere dich.";
-$a->strings["Facebook connection became invalid"] = "Facebook Anmeldedaten sind ungültig geworden";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Hallo %1\$s,\n\ndie Verbindung zwischen deinem Account auf %2\$s und Facebook funktioniert derzeit nicht. Dies ist normalerweise das Ergebnis einer Passwortänderung bei Facebook. Um die Verbindung wieder zu aktivieren musst du  %3\$sden Facebook-Connector neu authentifizieren%4\$s.";
-$a->strings["Facebook Post disabled"] = "Nach Facebook senden deaktiviert";
-$a->strings["Facebook Post"] = "Facebook Relai";
-$a->strings["Install Facebook Post connector for this account."] = "Facebook-Connector für dieses Konto installieren.";
-$a->strings["Remove Facebook Post connector"] = "Facebook-Connector entfernen";
-$a->strings["Facebook Post Settings"] = "Facebook-Beitragseinstellungen";
-$a->strings["Forums"] = "Foren";
-$a->strings["show/hide"] = "anzeigen/verbergen";
-$a->strings["No forum subscriptions"] = "Keine Foren-Mitgliedschaften.";
-$a->strings["Forums:"] = "Foren:";
-$a->strings["Forumlist settings updated."] = "Einstellungen zur Foren-Liste aktualisiert.";
-$a->strings["Forumlist Settings"] = "Foren-Liste Einstellungen";
-$a->strings["Randomise forum list"] = "Zufällige Zusammenstellung der Foren-Liste";
-$a->strings["Show forums on profile page"] = "Zeige die Liste der Foren auf der Profilseite";
-$a->strings["Show forums on network page"] = "Zeige Foren auf der Netzwerk-Seite";
-$a->strings["Fromapp settings updated."] = "FromApp Einstellungen aktualisiert.";
-$a->strings["FromApp Settings"] = "FromApp Einstellungen";
-$a->strings["The application name you would like to show your posts originating from."] = "Der Name der Anwendung von der deine Beiträge stammen sollen.";
-$a->strings["Use this application name even if another application was used."] = "Verwende diesen Namen auch wenn eine andere Anwendung den Anwendungsnamen bereits gesetzt hat.";
-$a->strings["Google+ Import Settings"] = "Google+ Import Einstellungen";
-$a->strings["Enable Google+ Import"] = "Aktiviere Google+ Import";
-$a->strings["Google Account ID"] = "Google Account ID";
-$a->strings["Google+ Import Settings saved."] = "Google+ Import Einstellungen gespeichert.";
-$a->strings["Geonames settings updated."] = "Geonames Einstellungen aktualisiert";
-$a->strings["Geonames Settings"] = "Geonames Einstellungen";
-$a->strings["Enable Geonames Plugin"] = "Geonames Plugin aktivieren";
-$a->strings["Gnot settings updated."] = "Gnot Einstellungen aktualisiert.";
-$a->strings["Gnot Settings"] = "Gnot Einstellungen";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Erlaubt das Veröffentlichen von E-Mail Kommentar Benachrichtigungen bei Gmail mit anonymisiertem Betreff";
-$a->strings["Enable this plugin/addon?"] = "Dieses Plugin/Addon aktivieren?";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica-Meldung] Kommentar zum Beitrag #%d";
-$a->strings["generic profile image"] = "allgemeines Profilbild";
-$a->strings["random geometric pattern"] = "zufällig erzeugtes geometrisches Muster";
-$a->strings["monster face"] = "Monstergesicht";
-$a->strings["computer generated face"] = "Computergesicht";
-$a->strings["retro arcade style face"] = "Retro Arcade Design Gesicht";
-$a->strings["Information"] = "Information";
-$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Libravatar Addon ist ebenfalls installiert. Bitte deaktiviere das Libravatar Addon oder dieses Gravatar Addon.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
-$a->strings["Default avatar image"] = "Standard Profilbild ";
-$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "Wähle das Standardgesicht, wenn kein Bild auf Gravatar gefunden wurde. Schaue auch sonst im README nach.";
-$a->strings["Rating of images"] = "Bildbewertung";
-$a->strings["Select the appropriate avatar rating for your site. See README"] = "Wähle eine angemessene Bildbewertung für deinen Server. Schaue auch sonst im README nach.";
-$a->strings["Gravatar settings updated."] = "Gravatar Einstellungen aktualisiert.";
-$a->strings["Group Text"] = "Gruppen als Text";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "Beim Bearbeiten von Gruppen Text statt Bilder anzeigen";
-$a->strings["Post to Insanejournal"] = "Auf InsaneJournal posten.";
-$a->strings["InsaneJournal Post Settings"] = "InsaneJournal Beitrags-Einstellungen";
-$a->strings["Enable InsaneJournal Post Plugin"] = "InsaneJournal Plugin aktivieren";
-$a->strings["InsaneJournal username"] = "InsaneJournal Benutzername";
-$a->strings["InsaneJournal password"] = "InsaneJournal Passwort";
-$a->strings["Post to InsaneJournal by default"] = "Standardmäßig auf InsaneJournal posten.";
-$a->strings["Impressum"] = "Impressum";
-$a->strings["Site Owner"] = "Betreiber der Seite";
-$a->strings["Email Address"] = "Email Adresse";
-$a->strings["Postal Address"] = "Postalische Anschrift";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.<br />Bitte gebe mindestens den <tt>Betreiber</tt> in der Konfiguration an. Alle weiteren Parameter werden in der README-Datei des Addons erläutert.";
-$a->strings["The page operators name."] = "Name des Serveradministrators";
-$a->strings["Site Owners Profile"] = "Profil des Seitenbetreibers";
-$a->strings["Profile address of the operator."] = "Profil-Adresse des Serveradministrators";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "Kontaktmöglichkeiten zum Administrator via Schneckenpost. Du kannst BBCode verwenden.";
-$a->strings["Notes"] = "Hinweise";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "Zusätzliche Informationen die neben den Kontaktmöglichkeiten angezeigt werden. Du kannst BBCode verwenden.";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Wie man den Betreiber per Email erreicht. (Adresse wird verschleiert dargestellt)";
-$a->strings["Footer note"] = "Fußnote";
-$a->strings["Text for the footer. You can use BBCode here."] = "Text für die Fußzeile. Du kannst BBCode verwenden.";
-$a->strings["Infinite Improbability Drive"] = "Infinite Improbability Drive";
-$a->strings["IRC Settings"] = "IRC Einstellungen";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "mit diesen Kanälen soll man automatisch verbunden werden (Komma getrennt)";
-$a->strings["Popular Channels (comma separated)"] = "Beliebte Kanäle (mit Komma getrennt)";
-$a->strings["IRC settings saved."] = "IRC Einstellungen gespeichert.";
-$a->strings["IRC Chatroom"] = "IRC Chatraum";
-$a->strings["Popular Channels"] = "Beliebte Räume";
-$a->strings["Jappix Mini addon settings"] = "Jappix Mini Addon Einstellungen";
-$a->strings["Activate addon"] = "Addon aktivieren";
-$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "Füge das Jappix Mini Chat Widget <em>nicht</em> zum Webinterface hinzu";
-$a->strings["Jabber username"] = "Jabber Nutzername";
-$a->strings["Jabber server"] = "Jabber Server";
-$a->strings["Jabber BOSH host"] = "Jabber BOSH Host";
-$a->strings["Jabber password"] = "Japper Passwort";
-$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Verschlüssele das Jabber Passwort mit dem Friendica Passwort (empfohlen)";
-$a->strings["Friendica password"] = "Friendica Passwort";
-$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Kontaktanfragen von Friendica Kontakten automatisch akzeptieren";
-$a->strings["Subscribe to Friendica contacts automatically"] = "Automatisch Friendica Kontakten bei Jabber folgen";
-$a->strings["Purge internal list of jabber addresses of contacts"] = "Lösche die interne Liste der Jabber Adressen der Kontakte";
-$a->strings["Add contact"] = "Kontakt hinzufügen";
-$a->strings["Upload a file"] = "Datei hochladen";
-$a->strings["Drop files here to upload"] = "Ziehe Dateien hierher, um sie hochzuladen";
-$a->strings["Cancel"] = "Abbrechen";
-$a->strings["Failed"] = "Fehlgeschlagen";
-$a->strings["No files were uploaded."] = "Keine Dateien hochgeladen.";
-$a->strings["Uploaded file is empty"] = "Hochgeladene Datei ist leer";
-$a->strings["Image exceeds size limit of "] = "Die Bildgröße übersteigt das Limit von ";
-$a->strings["File has an invalid extension, it should be one of "] = "Die Dateierweiterung ist nicht erlaubt, sie muss eine der folgenden sein ";
-$a->strings["Upload was cancelled, or server error encountered"] = "Upload abgebrochen oder Serverfehler aufgetreten";
-$a->strings["Post to libertree"] = "bei libertree veröffentlichen";
-$a->strings["libertree Post Settings"] = "libertree Post Einstellungen";
-$a->strings["Enable Libertree Post Plugin"] = "Libertree Post Plugin aktivieren";
-$a->strings["Libertree API token"] = "Libertree API Token";
-$a->strings["Libertree site URL"] = "Libertree URL";
-$a->strings["Post to Libertree by default"] = "Standardmäßig bei libertree veröffentlichen";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Kann Libravatar NICHT erfolgreich installieren.<br>PHP >=5.3 wird benötigt";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "Deine PHP Version %s ist niedriger als die benötigte Version PHP >= 5.3.";
-$a->strings["This addon is not functional on your server."] = "Dieses Addon funktioniert auf deinem Server nicht.";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Das Gravatar Addon ist installiert. Bitte schalte das Gravatar Addon aus.<br>Das Libravatar Addon nutzt Gravater, sollte nichts auf Libravatar gefunden werden.";
-$a->strings["Select default avatar image if none was found. See README"] = "Das Standard Avatar Bild wurde nicht gefunden. Siehe README";
-$a->strings["Libravatar settings updated."] = "Libravatar Einstellungen sind aktualisiert.";
-$a->strings["Post to LiveJournal"] = "In LiveJournal veröffentlichen.";
-$a->strings["LiveJournal Post Settings"] = "LiveJournal Veröffentlichungs-Einstellungen";
-$a->strings["Enable LiveJournal Post Plugin"] = "LiveJournal Post Plugin aktivieren";
-$a->strings["LiveJournal username"] = "LiveJournal Benutzername";
-$a->strings["LiveJournal password"] = "LiveJournal Passwort";
-$a->strings["Post to LiveJournal by default"] = "Standardmäßig bei LiveJournal veröffentlichen";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "Mit dem MathJax Addon können mathematische Formeln, die mit LaTeX geschrieben wurden, dargestellt werden. Die Formel wird mit den üblichen $$ oder einem eqnarray Block gekennzeichnet. Formeln werden in allen Beiträgen auf deiner Pinnwand, dem Netzwerkstream sowie privaten Nachrichten gerendert.";
-$a->strings["Use the MathJax renderer"] = "MathJax verwenden";
-$a->strings["MathJax Base URL"] = "MathJax Basis-URL";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "Die URL der MathJax Javascript-Datei, die verwendet werden soll. Diese kann entweder aus der MathJax CDN oder einer anderen Quelle stammen.";
-$a->strings["Member since:"] = "Mitglied seit:";
-$a->strings["bitchslap"] = "abwatschen";
-$a->strings["bitchslapped"] = "watschte";
-$a->strings["shag"] = "poppen";
-$a->strings["shagged"] = "poppte";
-$a->strings["do something obscenely biological to"] = "mit ihm/ihr etwas obszönes Körperliches machen";
-$a->strings["did something obscenely biological to"] = "machte etwas obszönes Körperliches mit";
-$a->strings["point out the poke feature to"] = "zeigte die neue Anstups-Funktion";
-$a->strings["pointed out the poke feature to"] = "zeigte die neue Anstups-Funktion";
-$a->strings["declare undying love for"] = "unterbliche Liebe verkünden";
-$a->strings["declared undying love for"] = "verkündete unsterbliche Liebe für";
-$a->strings["patent"] = "patentieren";
-$a->strings["patented"] = "patentierte";
-$a->strings["stroke beard"] = "sich den Bart kratzen";
-$a->strings["stroked their beard at"] = "kratzte sich den Bart in Richtung";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "sich über die sinkenden Standards der Schul- und Hochschulbildung beklagen";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "beklagte sich über die sinkenden Standards der Schul- und Hochschulbildung bei";
-$a->strings["hug"] = "umarmen";
-$a->strings["hugged"] = "umarmte";
-$a->strings["kiss"] = "küssen";
-$a->strings["kissed"] = "küsste";
-$a->strings["raise eyebrows at"] = "Augenbrauen hochziehen";
-$a->strings["raised their eyebrows at"] = "zog die Augenbrauen hoch in Richtung";
-$a->strings["insult"] = "beleidigen";
-$a->strings["insulted"] = "beleidigte";
-$a->strings["praise"] = "preisen";
-$a->strings["praised"] = "pries";
-$a->strings["be dubious of"] = "ungewiss sein";
-$a->strings["was dubious of"] = "war ungewiss über";
-$a->strings["eat"] = "essen";
-$a->strings["ate"] = "aß";
-$a->strings["giggle and fawn at"] = "kichern und einschleimen";
-$a->strings["giggled and fawned at"] = "kicherte und schleimte sich ein bei";
-$a->strings["doubt"] = "bezweifeln";
-$a->strings["doubted"] = "bezweifelte";
-$a->strings["glare"] = "zornig anstarren";
-$a->strings["glared at"] = "starrte zornig auf";
-$a->strings["No Timeline settings updated."] = "Keine Timeline-Einstellungen aktualisiert.";
-$a->strings["No Timeline Settings"] = "Keine Timeline-Einstellungen";
-$a->strings["Disable Archive selector on profile wall"] = "Deaktiviere Archiv-Auswahl auf Deiner Pinnwand";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Not Safe for Work (allg. Filter für ungewollte Inhalte) Einstellungen:";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Dieses Plugin sucht in Beiträgen nach Wörtern oder Textbauteilen die du weiter unten eingibst, findet es diese Bausteine, dann wird der entsprechende Beitrag zusammengefaltet dargestellt. Auf diese Weise wird verhindert, dass Inhalte, wie z.B. sexuelle Anspielungen, in unpassenden Momenten angezeigt werden. Du solltest den #NSFW Tag für Beiträge verwenden von denen du ausgehen kannst, dass andere sie anstößig finden könnten. Du kannst beliebige Wörter in der Filterliste angeben und ihn so als allgemeinen Filter verwenden.";
-$a->strings["Enable Content filter"] = "Aktiviere den Inhaltsfilter";
-$a->strings["Comma separated list of keywords to hide"] = "Durch Komma getrennte Liste von Schlüsselwörtern die verborgen werden sollen";
-$a->strings["Use /expression/ to provide regular expressions"] = "Verwende /expression/ um reguläre Ausdrücke zu verwenden";
-$a->strings["NSFW Settings saved."] = "NSFW-Einstellungen gespeichert";
-$a->strings["%s - Click to open/close"] = "%s – Zum Öffnen/Schließen klicken";
-$a->strings["Numfriends settings updated."] = "Numfriends Einstellungen aktualisiert";
-$a->strings["Numfriends Settings"] = "Numfriends Einstellungen";
-$a->strings["OEmbed settings updated"] = "OEmbed Einstellungen aktualisiert.";
-$a->strings["Use OEmbed for YouTube videos"] = "OEmbed für Youtube Videos verwenden";
-$a->strings["URL to embed:"] = "URL zum Einbetten:";
-$a->strings["Tile Server URL"] = "Tile Server URL";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "Eine Liste <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">öffentlicher Tile Server</a>";
-$a->strings["Default zoom"] = "Standard Zoom";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "Standard Zoomlevel (1: Welt; 18: höchstes)";
-$a->strings["show more"] = "mehr anzeigen";
-$a->strings["Page settings updated."] = "Seiteneinstellungen aktualisiert.";
-$a->strings["Page Settings"] = "Seiteneinstellungen";
-$a->strings["How many forums to display on sidebar without paging"] = "Wie viele Foren sollen in der Seitenleiste ohne Umblättern angezeigt werden";
-$a->strings["Randomise Page/Forum list"] = "Zufällige Seiten/Foren Liste";
-$a->strings["Show pages/forums on profile page"] = "Foren/Seiten auf der Profilseite anzeigen";
-$a->strings["\"pageheader\" Settings"] = "\"pageheader\"-Einstellungen";
-$a->strings["pageheader Settings saved."] = "pageheader-Einstellungen gespeichert.";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Diese Website benutzt <a href='http://www.piwik.org'>Piwik</a>, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe.";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du <a href='%s'>ein Cookie setzen</a>. Dann wird Piwik dich auf dieser Website nicht mehr verfolgen (opt-out).";
-$a->strings["Piwik Base URL"] = "Piwik Basis URL";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Absoluter Pfad zu deiner Piwik Installation (ohne Protokoll (http/s) und mit abschließendem Schrägstrich)";
-$a->strings["Site ID"] = "Seiten ID";
-$a->strings["Show opt-out cookie link?"] = "Link zum Setzen des Opt-Out Cookies anzeigen?";
-$a->strings["Asynchronous tracking"] = "Asynchrones Tracken";
-$a->strings["Planets Settings"] = "Planeten Einstellungen";
-$a->strings["Enable Planets Plugin"] = "Aktiviere Planeten Plugin";
-$a->strings["Post to Posterous"] = "Nach Posterous senden";
-$a->strings["Posterous Post Settings"] = "Posterous Beitrags-Einstellungen";
-$a->strings["Enable Posterous Post Plugin"] = "Posterous-Plugin aktivieren";
-$a->strings["Posterous login"] = "Posterous-Anmeldename";
-$a->strings["Posterous password"] = "Posterous-Passwort";
-$a->strings["Posterous site ID"] = "Posterous site ID";
-$a->strings["Posterous API token"] = "Posterous API token";
-$a->strings["Post to Posterous by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Posterous";
-$a->strings["Lifetime of the cache (in hours)"] = "Lebenszeit des Caches (in Stunden)";
-$a->strings["Cache Statistics"] = "Cache Statistik";
-$a->strings["Number of items"] = "Anzahl der Einträge";
-$a->strings["Size of the cache"] = "Größe des Caches";
-$a->strings["Delete the whole cache"] = "Cache leeren";
-$a->strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen verfallen.";
-$a->strings["Your Friendica account is about to expire."] = "Dein Friendica-Konto wird in Kürze auslaufen.";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "Hallo %1\$s,\n\ndein Account auf %2\$s wird in weniger als fünf Tagen auslaufen. Du kannst das verhindern, indem du dich mindestens einmal alle 30 Tage anmeldest.";
-$a->strings[":-)"] = ":-)";
-$a->strings[":-("] = ":-(";
-$a->strings["lol"] = "lol";
-$a->strings["Quick Comment Settings"] = "Schnell-Kommentar Einstellungen";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Kurzkommentare findet man in der Nähe der Kommentarboxen. Ein Klick darauf erstellt einfache Antworten.";
-$a->strings["Enter quick comments, one per line"] = "Gib einen Schnell-Kommentar pro Zeile ein";
-$a->strings["Quick Comment settings saved."] = "Schnell-Kommentare Einstellungen gespeichert";
-$a->strings["Randplace Settings"] = "Randplace-Einstellungen";
-$a->strings["Enable Randplace Plugin"] = "Randplace-Plugin aktivieren";
-$a->strings["\"Show more\" Settings"] = "\"Mehr zeigen\" Einstellungen";
-$a->strings["Enable Show More"] = "Aktiviere \"Mehr zeigen\"";
-$a->strings["Cutting posts after how much characters"] = "Begrenze Beiträge nach einer bestimmten Anzahl an Buchstaben";
-$a->strings["Show More Settings saved."] = "\"Mehr zeigen\" Einstellungen gesichert.";
-$a->strings["StatusNet AutoFollow settings updated."] = "StatusNet AutoFollow Einstellungen aktualisiert.";
-$a->strings["StatusNet AutoFollow Settings"] = "StatusNet AutoFollow Einstellungen";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "Automatisch allen StatusNet Followern/Erwähnungen folgen";
-$a->strings["Startpage Settings"] = "Startseiten-Einstellungen";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "Seite, die nach dem Anmelden geladen werden soll. Leer = Pinnwand";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "Beispiele: network, notifications/system";
-$a->strings["Post to StatusNet"] = "Bei StatusNet veröffentlichen";
-$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Bitte kontaktiere den Administrator des Servers.<br />Die angegebene API-URL ist nicht gültig.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Die StatusNet-API konnte mit dem angegebenen Pfad nicht erreicht werden.";
-$a->strings["StatusNet settings updated."] = "StatusNet Einstellungen aktualisiert.";
-$a->strings["StatusNet Posting Settings"] = "StatusNet-Beitragseinstellungen";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "Verfügbare OAuth Schlüssel für StatusNet";
-$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Für einige StatusNet Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen StatusNet Server her (siehe unten).";
-$a->strings["Provide your own OAuth Credentials"] = "Eigene OAuth Schlüssel eintragen";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Kein Consumer-Schlüsselpaar für StatusNet gefunden. Registriere deinen Friendica-Account als Desktop-Client, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Friendica-Servers, ob schon ein Schlüsselpaar für diesen Friendica-Server auf diesem StatusNet-Server existiert.";
-$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
-$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
-$a->strings["Base API Path (remember the trailing /)"] = "Basis-URL der StatusNet-API (vergiss den abschließenden / nicht)";
-$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Um dein Konto mit einem StatusNet-Konto zu verknüpfen, klicke den Button an, um einen Sicherheitscode von StatusNet zu erhalten, und kopiere diesen in das Eingabefeld weiter unten. Es werden ausschließlich deine <strong>öffentlichen</strong> Nachrichten an StatusNet gesendet.";
-$a->strings["Log in with StatusNet"] = "Bei StatusNet anmelden";
-$a->strings["Copy the security code from StatusNet here"] = "Kopiere den Sicherheitscode von StatusNet hier hin";
-$a->strings["Cancel Connection Process"] = "Verbindungsprozess abbrechen";
-$a->strings["Current StatusNet API is"] = "Derzeitige StatusNet-API-URL lautet";
-$a->strings["Cancel StatusNet Connection"] = "Verbindung zum StatusNet Server abbrechen";
-$a->strings["Currently connected to: "] = "Momentan verbunden mit: ";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen StatusNet-Konto veröffentlicht werden. Du kannst das (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an deinen StatusNet-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
-$a->strings["Allow posting to StatusNet"] = "Veröffentlichung bei StatusNet erlauben";
-$a->strings["Send public postings to StatusNet by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei StatusNet";
-$a->strings["Send linked #-tags and @-names to StatusNet"] = "Sende verlinkte #-Tags und @-Namen nach StatusNet";
-$a->strings["Clear OAuth configuration"] = "OAuth-Konfiguration löschen";
-$a->strings["Site name"] = "Seitenname";
-$a->strings["API URL"] = "API-URL";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Your Friendica test account is about to expire."] = "Dein Friendica-Testkonto wird bald verfallen.";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "Hallo %1\$s,\n\ndein Testkonto auf %2\$s wird in weniger als fünf Tagen verfallen. Wir hoffen, dass dir dieser Testlauf gefallen hat, so dass du die Gelegenheit nutzt und dir einen normalen Friendica-Server für deine integrierte Social-Network-Kommunikation suchst. Eine Liste öffentlicher Server findest du auf http://dir.friendica.com/siteinfo . Um mehr Information darüber zu bekommen, wie man einen eigenen Friendica-Server aufsetzt, kannst du auch einen Blick auf die Friendica-Projektseite werfen: http://friendica.com";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe";
-$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
-$a->strings["New game"] = "Neues Spiel";
-$a->strings["New game with handicap"] = "Neues Handicap Spiel";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "3D-Tic-Tac-Toe ist genauso wie das herkömmliche Spiel, nur dass man es auf mehreren Ebenen gleichzeitig spielt.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In diesem Fall sind es drei Ebenen. Man gewinnt indem man drei in einer Reihe auf einer beliebigen Reihe schafft, oder drei übereinander oder diagonal auf verschiedenen Ebenen.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "Beim Handicap-Spiel wird die zentrale Position der mittleren Ebene gesperrt, da der Spieler, der diese Ebene besitzt, oft einen unfairen Vorteil genießt.";
-$a->strings["You go first..."] = "Du fängst an...";
-$a->strings["I'm going first this time..."] = "Diesmal fange ich an...";
-$a->strings["You won!"] = "Du gewinnst!";
-$a->strings["\"Cat\" game!"] = "Unentschieden!";
-$a->strings["I won!"] = "Ich gewinne!";
-$a->strings["Post to Tumblr"] = "Bei Tumblr veröffentlichen";
-$a->strings["Tumblr Post Settings"] = "Tumblr-Beitragseinstellungen";
-$a->strings["Enable Tumblr Post Plugin"] = "Tumblr-Plugin aktivieren";
-$a->strings["Tumblr login"] = "Tumblr Login";
-$a->strings["Tumblr password"] = "Tumblr Passwort";
-$a->strings["Post to Tumblr by default"] = "Standardmäßig bei Tumblr veröffentlichen";
-$a->strings["Post to Twitter"] = "Bei Twitter veröffentlichen";
-$a->strings["Twitter settings updated."] = "Twitter Einstellungen aktualisiert.";
-$a->strings["Twitter Posting Settings"] = "Twitter-Beitragseinstellungen";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte wende dich an den Administrator der Seite.";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Auf diesem Friendica-Server wurde das Twitter-Plugin aktiviert, aber du hast deinen Account noch nicht mit deinem Twitter-Account verbunden. Klicke dazu auf die Schaltfläche unten. Du erhältst dann eine PIN von Twitter, die du dann in das Eingabefeld unten einfügst. Denk daran, den Senden-Knopf zu drücken! Nur <strong>öffentliche</strong> Beiträge werden bei Twitter veröffentlicht.";
-$a->strings["Log in with Twitter"] = "bei Twitter anmelden";
-$a->strings["Copy the PIN from Twitter here"] = "Kopiere die Twitter-PIN hier her";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Wenn aktiviert, können all deine <strong>öffentlichen</strong> Einträge auf dem verbundenen Twitter-Konto veröffentlicht werden. Du kannst dies (hier) als Standardverhalten einstellen oder beim Schreiben eines Beitrags in den Beitragsoptionen festlegen.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Hinweis</strong>: Aufgrund deiner Privatsphären-Einstellungen (<em>Profil-Details vor unbekannten Betrachtern verbergen?</em>) wird der Link, der eventuell an an deinen Twitter-Beitrag angehängt wird, um auf den Originalbeitrag zu verweisen, den Betrachter auf eine leere Seite führen, die ihn darüber informiert, dass der Zugriff eingeschränkt wurde.";
-$a->strings["Allow posting to Twitter"] = "Veröffentlichung bei Twitter erlauben";
-$a->strings["Send public postings to Twitter by default"] = "Veröffentliche öffentliche Beiträge standardmäßig bei Twitter";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "Sende verlinkte #-Tags und @-Namen nach Twitter";
-$a->strings["Consumer key"] = "Consumer Key";
-$a->strings["Consumer secret"] = "Consumer Secret";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
-$a->strings["Template URL (with {category})"] = "Vorlagen URL (mit {Kategorie})";
-$a->strings["OAuth end-point"] = "OAuth Endpunkt";
-$a->strings["Api"] = "Api";
-$a->strings["View Source"] = "Quelle ansehen";
-$a->strings["Get added to this list!"] = "Werde Mitglied dieser Liste";
-$a->strings["Connect on Friendica!"] = "In Friendica verbinden!";
-$a->strings["%d person likes this"] = array(
-       0 => "%d Person mag das",
-       1 => "%d Leute mögen das",
-);
-$a->strings["%d person doesn't like this"] = array(
-       0 => " %d Person mag das nicht",
-       1 => "%d Leute mögen das nicht",
-);
-$a->strings["Generate new key"] = "Neuen Schlüssel erstellen";
-$a->strings["Widgets key"] = "Widgets Schlüssel";
-$a->strings["Widgets available"] = "Verfügbare Widgets";
-$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
-$a->strings["Post to Wordpress"] = "Bei WordPress veröffentlichen";
-$a->strings["WordPress Post Settings"] = "WordPress-Beitragseinstellungen";
-$a->strings["Enable WordPress Post Plugin"] = "WordPress-Plugin aktivieren.";
-$a->strings["WordPress username"] = "WordPress-Benutzername";
-$a->strings["WordPress password"] = "WordPress-Passwort";
-$a->strings["WordPress API URL"] = "WordPress-API-URL";
-$a->strings["Post to WordPress by default"] = "Standardmäßig auf WordPress veröffentlichen";
-$a->strings["Provide a backlink to the Friendica post"] = "Einen Link zurück zum Friendica-Beitrag hinzufügen";
-$a->strings["Read the original post and comment stream on Friendica"] = "Den Originalbeitrag samt Kommentaren bei Friendica lesen";
-$a->strings["YourLS Settings"] = "YourLS Einstellungen";
-$a->strings["URL: http://"] = "URL: http://";
-$a->strings["Username:"] = "Nutzername:";
-$a->strings["Password:"] = "Passwort:";
-$a->strings["Use SSL "] = "SSL Verwenden ";
-$a->strings["yourls Settings saved."] = "yourls Einstellungen gespeichert";
-$a->strings["Global"] = "Global";
-$a->strings["Force global use of the alternate pager"] = "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server";
-$a->strings["Individual"] = "Individuell";
-$a->strings["Each user chooses whether to use the alternate pager"] = "Jede/r Nutzer/in kann wählen ob der \"Alternate Pager\" verwendet werden soll";
-$a->strings["Suppress \"View on friendica\""] = "Unterdrücke \"Auf Friendica Ansehen\"";
-$a->strings["Mirror wall posts from facebook to friendica."] = "Spiegle Pinnwandeinträge von Facebook auf friendica";
-$a->strings["Post to page/group:"] = "Auf FB Seite/Gruppe veröffentlichen";
-$a->strings["%s:"] = "%s:";
-$a->strings["Forum Directory"] = "Foren Verzeichnis";
-$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
-$a->strings["Global Directory"] = "Weltweites Verzeichnis";
-$a->strings["Find on this site"] = "Auf diesem Server suchen";
-$a->strings["Finding: "] = "Funde: ";
-$a->strings["Site Directory"] = "Verzeichnis";
-$a->strings["Find"] = "Finde";
-$a->strings["Age: "] = "Alter: ";
-$a->strings["Gender: "] = "Geschlecht:";
-$a->strings["Location:"] = "Ort:";
-$a->strings["Gender:"] = "Geschlecht:";
-$a->strings["Status:"] = "Status:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Über:";
-$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
-$a->strings["Group Text settings updated."] = "Gruppen Text Einstellungen aktualisiert";
-$a->strings["Remote Permissions Settings"] = "Entfernte Privatsphäreneinstellungen";
-$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "Erlaube Empfängern von privaten Nachrichten zu sehen wer die anderen Empfänger sind";
-$a->strings["Remote Permissions settings updated."] = "Entfernte Privatsphäreneinstellungen aktualisiert.";
-$a->strings["Visible to:"] = "Sichtbar für:";
-$a->strings["Visible to"] = "Sichtbar für";
-$a->strings["may only be a partial list"] = "könnte nur ein Teil der Liste sein";
-$a->strings["The posts of every user on this server show the post recipients"] = "Die Beiträge jedes Nutzers dieses Servers werden die Empfänger des Beitrags anzeigen";
-$a->strings["Each user chooses whether his/her posts show the post recipients"] = "Jede/r Nutzer/in kann wählen ob die Empfänger der Beiträge angezeigt werden sollen oder nicht";
-$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "Spiegle alle Beiträge von StatusNet die keine Antworten oder wiederholten Nachrichten sind";
-$a->strings["Shortening method that optimizes the post"] = "Kürzungsverfahren, das den Beitrag optimiert";
-$a->strings["You are now authenticated to tumblr."] = "Du bist nun auf tumblr authentifiziert.";
-$a->strings["return to the connector page"] = "zurück zur Connector Seite";
-$a->strings["(Re-)Authenticate your tumblr page"] = "(Re-)Authentifizierung deiner tumblr Seite";
-$a->strings["Post to page:"] = "Auf tumblr veröffentlichen";
-$a->strings["You are not authenticated to tumblr"] = "Du bist gegenüber tumblr nicht authentifiziert";
-$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "Spiegle alle Beiträge von Twitter die keine Antworten oder wiederholten Nachrichten sind";
-$a->strings["Shortening method that optimizes the tweet"] = "Kürzungsverfahren, das den Tweet optimiert";
-$a->strings["Name of the Twitter Application"] = "Name der Twitter Anwendung";
-$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "Setze dies um eine Spiegelung von ~friendica zu ~friendica zu vermeiden";
-$a->strings["Profile"] = "Profil";
-$a->strings["Full Name:"] = "Kompletter Name:";
-$a->strings["j F, Y"] = "j F, Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Geburtstag:";
-$a->strings["Age:"] = "Alter:";
-$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
-$a->strings["Hometown:"] = "Heimatort:";
-$a->strings["Tags:"] = "Tags";
-$a->strings["Political Views:"] = "Politische Ansichten:";
-$a->strings["Religion:"] = "Religion:";
-$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
-$a->strings["Likes:"] = "Likes:";
-$a->strings["Dislikes:"] = "Dislikes:";
-$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
-$a->strings["Musical interests:"] = "Musikalische Interessen:";
-$a->strings["Books, literature:"] = "Literatur/Bücher:";
-$a->strings["Television:"] = "Fernsehen:";
-$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
-$a->strings["Love/Romance:"] = "Liebesleben:";
-$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
-$a->strings["School/education:"] = "Schule/Ausbildung:";
-$a->strings["Male"] = "Männlich";
-$a->strings["Female"] = "Weiblich";
-$a->strings["Currently Male"] = "Momentan männlich";
-$a->strings["Currently Female"] = "Momentan weiblich";
-$a->strings["Mostly Male"] = "Hauptsächlich männlich";
-$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transsexuell";
-$a->strings["Hermaphrodite"] = "Hermaphrodit";
-$a->strings["Neuter"] = "Neuter";
-$a->strings["Non-specific"] = "Nicht spezifiziert";
-$a->strings["Other"] = "Andere";
-$a->strings["Undecided"] = "Unentschieden";
-$a->strings["Males"] = "Männer";
-$a->strings["Females"] = "Frauen";
-$a->strings["Gay"] = "Schwul";
-$a->strings["Lesbian"] = "Lesbisch";
-$a->strings["No Preference"] = "Keine Vorlieben";
-$a->strings["Bisexual"] = "Bisexuell";
-$a->strings["Autosexual"] = "Autosexual";
-$a->strings["Abstinent"] = "Abstinent";
-$a->strings["Virgin"] = "Jungfrauen";
-$a->strings["Deviant"] = "Deviant";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Oodles";
-$a->strings["Nonsexual"] = "Nonsexual";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Einsam";
-$a->strings["Available"] = "Verfügbar";
-$a->strings["Unavailable"] = "Nicht verfügbar";
-$a->strings["Has crush"] = "verknallt";
-$a->strings["Infatuated"] = "verliebt";
-$a->strings["Dating"] = "Dating";
-$a->strings["Unfaithful"] = "Untreu";
-$a->strings["Sex Addict"] = "Sexbesessen";
-$a->strings["Friends"] = "Freunde";
-$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Verlobt";
-$a->strings["Married"] = "Verheiratet";
-$a->strings["Imaginarily married"] = "imaginär verheiratet";
-$a->strings["Partners"] = "Partner";
-$a->strings["Cohabiting"] = "zusammenlebend";
-$a->strings["Common law"] = "wilde Ehe";
-$a->strings["Happy"] = "Glücklich";
-$a->strings["Not looking"] = "Nicht auf der Suche";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Betrogen";
-$a->strings["Separated"] = "Getrennt";
-$a->strings["Unstable"] = "Unstabil";
-$a->strings["Divorced"] = "Geschieden";
-$a->strings["Imaginarily divorced"] = "imaginär geschieden";
-$a->strings["Widowed"] = "Verwitwet";
-$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["stopped following"] = "wird nicht mehr gefolgt";
-$a->strings["Poke"] = "Anstupsen";
-$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["Edit Contact"] = "Kontakt bearbeiten";
-$a->strings["Send PM"] = "Private Nachricht senden";
-$a->strings["prev"] = "vorige";
-$a->strings["first"] = "erste";
-$a->strings["last"] = "letzte";
-$a->strings["next"] = "nächste";
-$a->strings["newer"] = "neuer";
-$a->strings["older"] = "älter";
-$a->strings["No contacts"] = "Keine Kontakte";
-$a->strings["%d Contact"] = array(
-       0 => "%d Kontakt",
-       1 => "%d Kontakte",
+$a->strings["Private Message"] = "Private Nachricht";
+$a->strings["Edit"] = "Bearbeiten";
+$a->strings["Select"] = "Auswählen";
+$a->strings["Delete"] = "Löschen";
+$a->strings["save to folder"] = "In Ordner speichern";
+$a->strings["add star"] = "markieren";
+$a->strings["remove star"] = "Markierung entfernen";
+$a->strings["toggle star status"] = "Markierung umschalten";
+$a->strings["starred"] = "markiert";
+$a->strings["add tag"] = "Tag hinzufügen";
+$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
+$a->strings["like"] = "mag ich";
+$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
+$a->strings["dislike"] = "mag ich nicht";
+$a->strings["Share this"] = "Weitersagen";
+$a->strings["share"] = "Teilen";
+$a->strings["Categories:"] = "Kategorien";
+$a->strings["Filed under:"] = "Abgelegt unter:";
+$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
+$a->strings["to"] = "zu";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["%s from %s"] = "%s von %s";
+$a->strings["Comment"] = "Kommentar";
+$a->strings["Please wait"] = "Bitte warten";
+$a->strings["%d comment"] = array(
+       0 => "%d Kommentar",
+       1 => "%d Kommentare",
 );
-$a->strings["View Contacts"] = "Kontakte anzeigen";
-$a->strings["Search"] = "Suche";
-$a->strings["poke"] = "anstupsen";
-$a->strings["poked"] = "stupste";
-$a->strings["ping"] = "anpingen";
-$a->strings["pinged"] = "pingte";
-$a->strings["prod"] = "knuffen";
-$a->strings["prodded"] = "knuffte";
-$a->strings["slap"] = "ohrfeigen";
-$a->strings["slapped"] = "ohrfeigte";
-$a->strings["finger"] = "befummeln";
-$a->strings["fingered"] = "befummelte";
-$a->strings["rebuff"] = "eine Abfuhr erteilen";
-$a->strings["rebuffed"] = "abfuhrerteilte";
-$a->strings["happy"] = "glücklich";
-$a->strings["sad"] = "traurig";
-$a->strings["mellow"] = "sanft";
-$a->strings["tired"] = "müde";
-$a->strings["perky"] = "frech";
-$a->strings["angry"] = "sauer";
-$a->strings["stupified"] = "verblüfft";
-$a->strings["puzzled"] = "verwirrt";
-$a->strings["interested"] = "interessiert";
-$a->strings["bitter"] = "verbittert";
-$a->strings["cheerful"] = "fröhlich";
-$a->strings["alive"] = "lebendig";
-$a->strings["annoyed"] = "verärgert";
-$a->strings["anxious"] = "unruhig";
-$a->strings["cranky"] = "schrullig";
-$a->strings["disturbed"] = "verstört";
-$a->strings["frustrated"] = "frustriert";
-$a->strings["motivated"] = "motiviert";
-$a->strings["relaxed"] = "entspannt";
-$a->strings["surprised"] = "überrascht";
-$a->strings["January"] = "Januar";
-$a->strings["February"] = "Februar";
-$a->strings["March"] = "März";
-$a->strings["April"] = "April";
-$a->strings["May"] = "Mai";
-$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["bytes"] = "Byte";
-$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
-$a->strings["link to source"] = "Link zum Originalbeitrag";
-$a->strings["default"] = "Standard";
-$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
-$a->strings["activity"] = "Aktivität";
 $a->strings["comment"] = array(
        0 => "",
        1 => "Kommentar",
 );
-$a->strings["post"] = "Beitrag";
-$a->strings["Item filed"] = "Beitrag abgelegt";
-$a->strings["Visible to everybody"] = "Für jeden sichtbar";
-$a->strings["show"] = "zeigen";
-$a->strings["don't show"] = "nicht zeigen";
-$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["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
-$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
-$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
-$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
-$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
-$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
-$a->strings["%d contact not imported"] = array(
-       0 => "%d Kontakt nicht importiert",
-       1 => "%d Kontakte nicht importiert",
+$a->strings["show more"] = "mehr anzeigen";
+$a->strings["This is you"] = "Das bist du";
+$a->strings["Submit"] = "Senden";
+$a->strings["Bold"] = "Fett";
+$a->strings["Italic"] = "Kursiv";
+$a->strings["Underline"] = "Unterstrichen";
+$a->strings["Quote"] = "Zitat";
+$a->strings["Code"] = "Code";
+$a->strings["Image"] = "Bild";
+$a->strings["Link"] = "Verweis";
+$a->strings["Video"] = "Video";
+$a->strings["Preview"] = "Vorschau";
+$a->strings["Not Found"] = "Nicht gefunden";
+$a->strings["Page not found."] = "Seite nicht gefunden.";
+$a->strings["Permission denied"] = "Zugriff verweigert";
+$a->strings["Permission denied."] = "Zugriff verweigert.";
+$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
+$a->strings["Contact not found."] = "Kontakt nicht gefunden.";
+$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["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 einige Profildaten nicht 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 konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden.";
+$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["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
-$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["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 Freundschaftsanfragen 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["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
+$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 befreundet bist.";
+$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
 $a->strings["Disallowed profile URL."] = "Nicht erlaubte Profil-URL.";
-$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["following"] = "folgen";
-$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 \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
-$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["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["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
-$a->strings["Block immediately"] = "Sofort blockieren";
-$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
-$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
-$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
-$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
-$a->strings["Frequently"] = "immer wieder";
-$a->strings["Hourly"] = "Stündlich";
-$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
+$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
+$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["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["Confirm"] = "Bestätigen";
+$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
+$a->strings["Public access denied."] = "Öffentlicher Zugriff verweigert.";
+$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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
+$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>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
+$a->strings["Friend/Connection Request"] = "Freundschafts-/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["Yes"] = "Ja";
+$a->strings["No"] = "Nein";
+$a->strings["Add a personal note:"] = "Eine persönliche Notiz beifügen:";
 $a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Email"] = "E-Mail";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
 $a->strings["Diaspora"] = "Diaspora";
-$a->strings["Zot!"] = "Zott";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/Chat";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "Google+";
-$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
-$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
-$a->strings["Connect"] = "Verbinden";
-$a->strings["%d invitation available"] = array(
-       0 => "%d Einladung verfügbar",
-       1 => "%d Einladungen verfügbar",
-);
-$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["Friend Suggestions"] = "Kontaktvorschläge";
-$a->strings["Similar Interests"] = "Ähnliche Interessen";
-$a->strings["Random Profile"] = "Zufälliges Profil";
-$a->strings["Invite Friends"] = "Freunde einladen";
-$a->strings["Networks"] = "Netzwerke";
-$a->strings["All Networks"] = "Alle Netzwerke";
-$a->strings["Saved Folders"] = "Gespeicherte Ordner";
-$a->strings["Everything"] = "Alles";
-$a->strings["Categories"] = "Kategorien";
-$a->strings["%d contact in common"] = array(
-       0 => "%d gemeinsamer Kontakt",
-       1 => "%d gemeinsame Kontakte",
-);
-$a->strings[" on Last.fm"] = " bei Last.fm";
-$a->strings["Image/photo"] = "Bild/Foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
-$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
-$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
-$a->strings["Miscellaneous"] = "Verschiedenes";
-$a->strings["year"] = "Jahr";
-$a->strings["month"] = "Monat";
-$a->strings["day"] = "Tag";
-$a->strings["never"] = "nie";
-$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
-$a->strings["week"] = "Woche";
-$a->strings["hour"] = "Stunde";
-$a->strings["hours"] = "Stunden";
-$a->strings["minute"] = "Minute";
-$a->strings["minutes"] = "Minuten";
-$a->strings["second"] = "Sekunde";
-$a->strings["seconds"] = "Sekunden";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
-$a->strings["%s's birthday"] = "%ss Geburtstag";
-$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
-$a->strings["[Name Withheld]"] = "[Name unterdrückt]";
-$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
-$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
+$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["Cancel"] = "Abbrechen";
+$a->strings["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
+$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
+$a->strings["Invalid request identifier."] = "Invalid request identifier.";
+$a->strings["Discard"] = "Verwerfen";
+$a->strings["Ignore"] = "Ignorieren";
+$a->strings["System"] = "System";
+$a->strings["Network"] = "Netzwerk";
+$a->strings["Personal"] = "Persönlich";
+$a->strings["Home"] = "Pinnwand";
+$a->strings["Introductions"] = "Kontaktanfragen";
+$a->strings["Messages"] = "Nachrichten";
+$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
+$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
+$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
+$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
+$a->strings["suggested by %s"] = "vorgeschlagen von %s";
+$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
+$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
+$a->strings["if applicable"] = "falls anwendbar";
+$a->strings["Approve"] = "Genehmigen";
+$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
+$a->strings["yes"] = "ja";
+$a->strings["no"] = "nein";
+$a->strings["Approve as: "] = "Genehmigen als: ";
+$a->strings["Friend"] = "Freund";
+$a->strings["Sharer"] = "Teilenden";
+$a->strings["Fan/Admirer"] = "Fan/Verehrer";
+$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
+$a->strings["New Follower"] = "Neuer Bewunderer";
+$a->strings["No introductions."] = "Keine Kontaktanfragen.";
+$a->strings["Notifications"] = "Benachrichtigungen";
+$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 now friends with %s"] = "%s ist jetzt mit %s befreundet";
+$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
+$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
+$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
+$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
+$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
+$a->strings["System Notifications"] = "Systembenachrichtigungen";
+$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
+$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
+$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
+$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
+$a->strings["photo"] = "Foto";
+$a->strings["status"] = "Status";
+$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["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
+$a->strings["Login failed."] = "Anmeldung fehlgeschlagen.";
+$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): "] = "Texteingabe (Diaspora Format): ";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
+$a->strings["Site"] = "Seite";
+$a->strings["Users"] = "Nutzer";
+$a->strings["Plugins"] = "Plugins";
+$a->strings["Themes"] = "Themen";
+$a->strings["DB updates"] = "DB Updates";
+$a->strings["Logs"] = "Protokolle";
+$a->strings["Admin"] = "Administration";
+$a->strings["Plugin Features"] = "Plugin Features";
+$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $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["Archives"] = "Archiv";
-$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.";
-$a->strings["(no subject)"] = "(kein Betreff)";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
-$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
-$a->strings["Attachments:"] = "Anhänge:";
-$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
-$a->strings["Thank You,"] = "Danke,";
-$a->strings["%s Administrator"] = "der Administrator von %s";
-$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] %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] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-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]Freunde-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["General Features"] = "Allgemeine Features";
-$a->strings["Multiple Profiles"] = "Mehrere Profile";
-$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
-$a->strings["Post Composition Features"] = "Beitragserstellung Features";
-$a->strings["Richtext Editor"] = "Web-Editor";
-$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
-$a->strings["Post Preview"] = "Beitragsvorschau";
-$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
-$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
-$a->strings["Search by Date"] = "Archiv";
-$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
-$a->strings["Group Filter"] = "Gruppen Filter";
-$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
-$a->strings["Network Filter"] = "Netzwerk Filter";
-$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
-$a->strings["Saved Searches"] = "Gespeicherte Suchen";
-$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
-$a->strings["Network Tabs"] = "Netzwerk Reiter";
-$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
-$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
-$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
-$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
-$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
-$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
-$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
-$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
-$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
-$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
-$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
-$a->strings["Tagging"] = "Tagging";
-$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
-$a->strings["Post Categories"] = "Beitragskategorien";
-$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
-$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
-$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
-$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
-$a->strings["Star Posts"] = "Beiträge Markieren";
-$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
-$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";
-$a->strings["edit"] = "bearbeiten";
-$a->strings["Groups"] = "Gruppen";
-$a->strings["Edit group"] = "Gruppe bearbeiten";
-$a->strings["Create a new group"] = "Neue Gruppe erstellen";
-$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
-$a->strings["add"] = "hinzufügen";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s mag %2\$ss %3\$s nicht";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
-$a->strings["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
-$a->strings["post/item"] = "Nachricht/Beitrag";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
-$a->strings["Select"] = "Auswählen";
-$a->strings["Delete"] = "Löschen";
-$a->strings["View %s's profile @ %s"] = "Das Profil von %s auf %s betrachten.";
-$a->strings["Categories:"] = "Kategorien";
-$a->strings["Filed under:"] = "Abgelegt unter:";
-$a->strings["%s from %s"] = "%s von %s";
-$a->strings["View in context"] = "Im Zusammenhang betrachten";
-$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["%s likes this."] = "%s mag das.";
-$a->strings["%s doesn't like this."] = "%s mag das nicht.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
-$a->strings["and"] = "und";
-$a->strings[", and %d other people"] = " und %d andere";
-$a->strings["%s like this."] = "%s mögen das.";
-$a->strings["%s don't like this."] = "%s mögen das nicht.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
-$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
-$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
-$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Save to Folder:"] = "In diesen Ordner verschieben:";
-$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
-$a->strings["Delete item(s)?"] = "Einträge löschen?";
-$a->strings["Post to Email"] = "An E-Mail senden";
-$a->strings["Share"] = "Teilen";
-$a->strings["Upload photo"] = "Foto hochladen";
-$a->strings["upload photo"] = "Bild hochladen";
-$a->strings["Attach file"] = "Datei anhängen";
-$a->strings["attach file"] = "Datei anhängen";
-$a->strings["Insert web link"] = "Einen Link einfügen";
-$a->strings["web link"] = "Weblink";
-$a->strings["Insert video link"] = "Video-Adresse einfügen";
-$a->strings["video link"] = "Video-Link";
-$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
-$a->strings["audio link"] = "Audio-Link";
-$a->strings["Set your location"] = "Deinen Standort festlegen";
-$a->strings["set location"] = "Ort setzen";
-$a->strings["Clear browser location"] = "Browser-Standort leeren";
-$a->strings["clear location"] = "Ort löschen";
-$a->strings["Set title"] = "Titel setzen";
-$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
-$a->strings["Permission settings"] = "Berechtigungseinstellungen";
-$a->strings["permissions"] = "Zugriffsrechte";
-$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
-$a->strings["Public post"] = "Öffentlicher Beitrag";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
-$a->strings["Preview"] = "Vorschau";
-$a->strings["Post to Groups"] = "Poste an Gruppe";
-$a->strings["Post to Contacts"] = "Poste an Kontakte";
-$a->strings["Private post"] = "Privater Beitrag";
-$a->strings["[no subject]"] = "[kein Betreff]";
-$a->strings["Wall Photos"] = "Pinnwand-Bilder";
-$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
-$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
-$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["Your profile page"] = "Deine Profilseite";
-$a->strings["Photos"] = "Bilder";
-$a->strings["Your photos"] = "Deine Fotos";
-$a->strings["Events"] = "Veranstaltungen";
-$a->strings["Your events"] = "Deine Ereignisse";
-$a->strings["Personal notes"] = "Persönliche Notizen";
-$a->strings["Your personal photos"] = "Deine privaten Fotos";
-$a->strings["Sign in"] = "Anmelden";
-$a->strings["Home"] = "Pinnwand";
-$a->strings["Home Page"] = "Homepage";
-$a->strings["Register"] = "Registrieren";
-$a->strings["Create an account"] = "Nutzerkonto erstellen";
-$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 site content"] = "Inhalt der Seite durchsuchen";
-$a->strings["Community"] = "Gemeinschaft";
-$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
-$a->strings["Directory"] = "Verzeichnis";
-$a->strings["People directory"] = "Nutzerverzeichnis";
-$a->strings["Network"] = "Netzwerk";
-$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["Introductions"] = "Kontaktanfragen";
-$a->strings["Friend Requests"] = "Kontaktanfragen";
-$a->strings["Notifications"] = "Benachrichtigungen";
-$a->strings["See all notifications"] = "Alle Benachrichtigungen anzeigen";
-$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"] = "Delegierungen";
-$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
-$a->strings["Account settings"] = "Kontoeinstellungen";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
-$a->strings["Contacts"] = "Kontakte";
-$a->strings["Manage/edit friends and contacts"] = "Freunde und 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["view full size"] = "Volle Größe anzeigen";
-$a->strings["Embedded content"] = "Eingebetteter Inhalt";
-$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
-$a->strings["Welcome "] = "Willkommen ";
-$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
-$a->strings["Welcome back "] = "Willkommen zurück ";
-$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
-$a->strings["Profile not found."] = "Profil nicht gefunden.";
-$a->strings["Profile deleted."] = "Profil gelöscht.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Neues Profil angelegt.";
-$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
-$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
-$a->strings["Marital Status"] = "Familienstand";
-$a->strings["Romantic Partner"] = "Romanze";
-$a->strings["Likes"] = "Likes";
-$a->strings["Dislikes"] = "Dislikes";
-$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
-$a->strings["Religion"] = "Religion";
-$a->strings["Political Views"] = "Politische Ansichten";
-$a->strings["Gender"] = "Geschlecht";
-$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
-$a->strings["Homepage"] = "Webseite";
-$a->strings["Interests"] = "Interessen";
-$a->strings["Address"] = "Adresse";
-$a->strings["Profile updated."] = "Profil aktualisiert.";
-$a->strings[" and "] = " und ";
-$a->strings["public profile"] = "öffentliches Profil";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
-$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
-$a->strings["No"] = "Nein";
-$a->strings["Edit Profile Details"] = "Profil bearbeiten";
-$a->strings["Change Profile Photo"] = "Profilbild ändern";
-$a->strings["View this profile"] = "Dieses Profil anzeigen";
-$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
-$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
-$a->strings["Delete this profile"] = "Dieses Profil löschen";
-$a->strings["Profile Name:"] = "Profilname:";
-$a->strings["Your Full Name:"] = "Dein kompletter Name:";
-$a->strings["Title/Description:"] = "Titel/Beschreibung:";
-$a->strings["Your Gender:"] = "Dein Geschlecht:";
-$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
-$a->strings["Street Address:"] = "Adresse:";
-$a->strings["Locality/City:"] = "Wohnort:";
-$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
-$a->strings["Country:"] = "Land:";
-$a->strings["Region/State:"] = "Region/Bundesstaat:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
-$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Seit [Datum]:";
-$a->strings["Homepage URL:"] = "Adresse der Homepage:";
-$a->strings["Religious Views:"] = "Religiöse Ansichten:";
-$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
-$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
-$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
-$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
-$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
-$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
-$a->strings["Musical interests"] = "Musikalische Interessen";
-$a->strings["Books, literature"] = "Literatur/Bücher";
-$a->strings["Television"] = "Fernsehen";
-$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
-$a->strings["Love/romance"] = "Liebesleben";
-$a->strings["Work/employment"] = "Arbeit/Beschäftigung";
-$a->strings["School/education"] = "Schule/Ausbildung";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
-$a->strings["Edit/Manage Profiles"] = "Verwalte/Editiere Profile";
-$a->strings["Change profile photo"] = "Profilbild ändern";
-$a->strings["Create New Profile"] = "Neues Profil anlegen";
-$a->strings["Profile Image"] = "Profilbild";
-$a->strings["visible to everybody"] = "sichtbar für jeden";
-$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
-$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["Personal Notes"] = "Persönliche Notizen";
-$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["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
-$a->strings["{0} sent you a message"] = "{0} hat dir eine Nachricht geschickt";
-$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
-$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
-$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
-$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
-$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
-$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
-$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
-$a->strings["Theme settings updated."] = "Themeneinstellungen aktualisiert.";
-$a->strings["Site"] = "Seite";
-$a->strings["Users"] = "Nutzer";
-$a->strings["Plugins"] = "Plugins";
-$a->strings["Themes"] = "Themen";
-$a->strings["DB updates"] = "DB Updates";
-$a->strings["Logs"] = "Protokolle";
-$a->strings["Plugin Features"] = "Plugin Features";
-$a->strings["User registrations waiting for confirmation"] = "Nutzeranmeldungen die auf Bestätigung warten";
 $a->strings["Normal Account"] = "Normales Konto";
 $a->strings["Soapbox Account"] = "Marktschreier-Konto";
 $a->strings["Community/Celebrity Account"] = "Forum/Promi-Konto";
@@ -1221,6 +212,7 @@ $a->strings["File upload"] = "Datei hochladen";
 $a->strings["Policies"] = "Regeln";
 $a->strings["Advanced"] = "Erweitert";
 $a->strings["Performance"] = "Performance";
+$a->strings["Site name"] = "Seitenname";
 $a->strings["Banner/Logo"] = "Banner/Logo";
 $a->strings["System language"] = "Systemsprache";
 $a->strings["System theme"] = "Systemweites Thema";
@@ -1262,6 +254,8 @@ $a->strings["Allow threaded items"] = "Erlaube Threads in Diskussionen";
 $a->strings["Allow infinite level threading for items on this site."] = "Erlaube ein unendliches Level für Threads auf dieser Seite.";
 $a->strings["Private posts by default for new users"] = "Private Beiträge als Standard für neue Nutzer";
 $a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen.";
+$a->strings["Don't include post content in email notifications"] = "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden";
+$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."] = "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw., zum Datenschutz, nicht in Email-Benachrichtigungen einbinden.";
 $a->strings["Block multiple registrations"] = "Unterbinde Mehrfachregistrierung";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Benutzern nicht erlauben, weitere Konten als zusätzliche Profile anzulegen.";
 $a->strings["OpenID support"] = "OpenID Unterstützung";
@@ -1323,12 +317,13 @@ $a->strings["select all"] = "Alle auswählen";
 $a->strings["User registrations waiting for confirm"] = "Neuanmeldungen, die auf deine Bestätigung warten";
 $a->strings["Request date"] = "Anfragedatum";
 $a->strings["Name"] = "Name";
+$a->strings["Email"] = "E-Mail";
 $a->strings["No registrations."] = "Keine Neuanmeldungen.";
-$a->strings["Approve"] = "Genehmigen";
 $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["Register date"] = "Anmeldedatum";
 $a->strings["Last login"] = "Letzte Anmeldung";
 $a->strings["Last item"] = "Letzter Beitrag";
@@ -1340,6 +335,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s aktiviert.";
 $a->strings["Disable"] = "Ausschalten";
 $a->strings["Enable"] = "Einschalten";
 $a->strings["Toggle"] = "Umschalten";
+$a->strings["Settings"] = "Einstellungen";
 $a->strings["Author: "] = "Autor:";
 $a->strings["Maintainer: "] = "Betreuer:";
 $a->strings["No themes found."] = "Keine Themen gefunden.";
@@ -1358,21 +354,178 @@ $a->strings["FTP Host"] = "FTP Host";
 $a->strings["FTP Path"] = "FTP Pfad";
 $a->strings["FTP User"] = "FTP Nutzername";
 $a->strings["FTP Password"] = "FTP Passwort";
-$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["Friends of %s"] = "Freunde von %s";
-$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
-$a->strings["Remove term"] = "Begriff entfernen";
-$a->strings["No results."] = "Keine Ergebnisse.";
+$a->strings["New Message"] = "Neue Nachricht";
+$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.";
+$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
+$a->strings["Message sent."] = "Nachricht gesendet.";
+$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
+$a->strings["Message deleted."] = "Nachricht gelöscht.";
+$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
+$a->strings["Please enter a link URL:"] = "Bitte gib die URL des Links ein:";
+$a->strings["Send Private Message"] = "Private Nachricht senden";
+$a->strings["To:"] = "An:";
+$a->strings["Subject:"] = "Betreff:";
+$a->strings["Your message:"] = "Deine Nachricht:";
+$a->strings["Upload photo"] = "Foto hochladen";
+$a->strings["Insert web link"] = "Einen Link einfügen";
+$a->strings["No messages."] = "Keine Nachrichten.";
+$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["Delete conversation"] = "Unterhaltung löschen";
+$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["Message not available."] = "Nachricht nicht verfügbar.";
+$a->strings["Delete message"] = "Nachricht 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["Item not found"] = "Beitrag nicht gefunden";
+$a->strings["Edit post"] = "Beitrag bearbeiten";
+$a->strings["upload photo"] = "Bild hochladen";
+$a->strings["Attach file"] = "Datei anhängen";
+$a->strings["attach file"] = "Datei anhängen";
+$a->strings["web link"] = "Weblink";
+$a->strings["Insert video link"] = "Video-Adresse einfügen";
+$a->strings["video link"] = "Video-Link";
+$a->strings["Insert audio link"] = "Audio-Adresse einfügen";
+$a->strings["audio link"] = "Audio-Link";
+$a->strings["Set your location"] = "Deinen Standort festlegen";
+$a->strings["set location"] = "Ort setzen";
+$a->strings["Clear browser location"] = "Browser-Standort leeren";
+$a->strings["clear location"] = "Ort löschen";
+$a->strings["Permission settings"] = "Berechtigungseinstellungen";
+$a->strings["CC: email addresses"] = "Cc: E-Mail-Addressen";
+$a->strings["Public post"] = "Öffentlicher Beitrag";
+$a->strings["Set title"] = "Titel setzen";
+$a->strings["Categories (comma-separated list)"] = "Kategorien (kommasepariert)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Z.B.: bob@example.com, mary@example.com";
+$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.";
+$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
+$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
+$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
+$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
+$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s ist nun mit %2\$s befreundet";
+$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
+$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
+$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
+$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
+$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["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
+$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "Veranstaltung bearbeiten";
+$a->strings["link to source"] = "Link zum Originalbeitrag";
+$a->strings["Events"] = "Veranstaltungen";
+$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
+$a->strings["Previous"] = "Vorherige";
+$a->strings["Next"] = "Nächste";
+$a->strings["hour:minute"] = "Stunde:Minute";
+$a->strings["Event details"] = "Veranstaltungsdetails";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt 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["Location:"] = "Ort:";
+$a->strings["Title:"] = "Titel:";
+$a->strings["Share this event"] = "Veranstaltung teilen";
+$a->strings["Photos"] = "Bilder";
+$a->strings["Files"] = "Dateien";
+$a->strings["Welcome to %s"] = "Willkommen zu %s";
+$a->strings["Remote privacy information not available."] = "Entfernte Privatsphäreneinstellungen nicht verfügbar.";
+$a->strings["Visible to:"] = "Sichtbar für:";
+$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["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["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.";
+$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
+$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
+$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
+$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["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
+$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
+$a->strings["Wall Photos"] = "Pinnwand-Bilder";
+$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
 $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["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s getaggt";
+$a->strings["Photo Albums"] = "Fotoalben";
+$a->strings["Contact Photos"] = "Kontaktbilder";
+$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
+$a->strings["everybody"] = "jeder";
+$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
+$a->strings["Profile Photos"] = "Profilbilder";
+$a->strings["Album not found."] = "Album nicht gefunden.";
+$a->strings["Delete Album"] = "Album löschen";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
+$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 "] = "Die Bildgröße übersteigt das Limit von ";
+$a->strings["Image file is empty."] = "Bilddatei ist leer.";
+$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: ";
+$a->strings["or existing album name: "] = "oder existierender Albumname: ";
+$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
+$a->strings["Permissions"] = "Berechtigungen";
+$a->strings["Show to Groups"] = "Zeige den Gruppen";
+$a->strings["Show to Contacts"] = "Zeige den Kontakten";
+$a->strings["Private Photo"] = "Privates Foto";
+$a->strings["Public Photo"] = "Öffentliches Foto";
+$a->strings["Edit Album"] = "Album bearbeiten";
+$a->strings["Show Newest First"] = "Zeige neueste zuerst";
+$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
+$a->strings["View Photo"] = "Foto betrachten";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
+$a->strings["Photo not available"] = "Foto nicht verfügbar";
+$a->strings["View photo"] = "Fotos ansehen";
+$a->strings["Edit photo"] = "Foto bearbeiten";
+$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
+$a->strings["View Full Size"] = "Betrachte Originalgröße";
+$a->strings["Tags: "] = "Tags: ";
+$a->strings["[Remove any tag]"] = "[Tag entfernen]";
+$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
+$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
+$a->strings["New album name"] = "Name des neuen Albums";
+$a->strings["Caption"] = "Bildunterschrift";
+$a->strings["Add a Tag"] = "Tag hinzufügen";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "Privates Foto";
+$a->strings["Public photo"] = "Öffentliches Foto";
+$a->strings["Share"] = "Teilen";
+$a->strings["View Album"] = "Album betrachten";
+$a->strings["Recent Photos"] = "Neueste Fotos";
+$a->strings["No profile"] = "Kein Profil";
 $a->strings["Registration details for %s"] = "Details der Registration von %s";
 $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 is the message that failed."] = "Konnte die E-Mail nicht versenden. Hier ist die Nachricht, die nicht gesendet werden konnte.";
@@ -1390,34 +543,32 @@ $a->strings["Your Full Name (e.g. Joe Smith): "] = "Vollständiger Name (z.B. Ma
 $a->strings["Your Email Address: "] = "Deine E-Mail-Adresse: ";
 $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["Applications"] = "Anwendungen";
-$a->strings["No installed applications."] = "Keine Applikationen installiert.";
-$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["Register"] = "Registrieren";
+$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["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
+$a->strings["Password Reset"] = "Passwort zurücksetzen";
+$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
+$a->strings["Your new password is"] = "Dein neues Passwort lautet";
+$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
+$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
+$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
+$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["Item not available."] = "Beitrag nicht verfügbar.";
 $a->strings["Item was not found."] = "Beitrag konnte nicht gefunden werden.";
-$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["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): "] = "Texteingabe (Diaspora Format): ";
-$a->strings["diaspora2bb: "] = "diaspora2bb: ";
-$a->strings["Common Friends"] = "Gemeinsame Freunde";
-$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Applications"] = "Anwendungen";
+$a->strings["No installed applications."] = "Keine Applikationen installiert.";
+$a->strings["Help:"] = "Hilfe:";
+$a->strings["Help"] = "Hilfe";
 $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["Failed to update contact record."] = "Aktualisierung der Kontaktdaten fehlgeschlagen.";
 $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";
@@ -1435,10 +586,13 @@ $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["%d contact in common"] = array(
+       0 => "%d gemeinsamer Kontakt",
+       1 => "%d gemeinsame Kontakte",
+);
 $a->strings["View all contacts"] = "Alle Kontakte anzeigen";
 $a->strings["Toggle Blocked status"] = "Geblockt-Status ein-/ausschalten";
 $a->strings["Unignore"] = "Ignorieren aufheben";
-$a->strings["Ignore"] = "Ignorieren";
 $a->strings["Toggle Ignored status"] = "Ignoriert-Status ein-/ausschalten";
 $a->strings["Unarchive"] = "Aus Archiv zurückholen";
 $a->strings["Archive"] = "Archivieren";
@@ -1461,7 +615,6 @@ $a->strings["Update public posts"] = "Öffentliche Beiträge aktualisieren";
 $a->strings["Currently blocked"] = "Derzeit geblockt";
 $a->strings["Currently ignored"] = "Derzeit ignoriert";
 $a->strings["Currently archived"] = "Momentan archiviert";
-$a->strings["Hide this contact from others"] = "Verberge diesen Kontakt vor anderen";
 $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["Suggestions"] = "Kontaktvorschläge";
 $a->strings["Suggest potential friends"] = "Freunde vorschlagen";
@@ -1480,8 +633,88 @@ $a->strings["Only show hidden contacts"] = "Nur verborgene Kontakte anzeigen";
 $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["Contacts"] = "Kontakte";
 $a->strings["Search your contacts"] = "Suche in deinen Kontakten";
-$a->strings["everybody"] = "jeder";
+$a->strings["Finding: "] = "Funde: ";
+$a->strings["Find"] = "Finde";
+$a->strings["Common Friends"] = "Gemeinsame Freunde";
+$a->strings["No contacts in common."] = "Keine gemeinsamen Kontakte.";
+$a->strings["Contact added"] = "Kontakt hinzugefügt";
+$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 Freunde darüber zu informieren, dass du hierher umgezogen bist.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
+$a->strings["Account file"] = "Account Datei";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt %2\$s %3\$s";
+$a->strings["Friends of %s"] = "Freunde von %s";
+$a->strings["No friends to display."] = "Keine Freunde zum Anzeigen.";
+$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["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 Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
+$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 Freunde und potentiellen Freunde wissen genau, wie sie dich finden können.";
+$a->strings["Profile"] = "Profil";
+$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 Freunde 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 Freundesliste 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["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."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
+$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>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
+$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 Freunden und Mailinglisten interagieren willlst.";
+$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 Freunden 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 Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde vorschlagen.\nAuf einer brandneuen - soeben erstellten - Seite starten die Kontaktvorschläge innerhalb von 24 Stunden.";
+$a->strings["Groups"] = "Gruppen";
+$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 Freunde 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["Remove term"] = "Begriff entfernen";
+$a->strings["Saved Searches"] = "Gespeicherte Suchen";
+$a->strings["Search"] = "Suche";
+$a->strings["No results."] = "Keine Ergebnisse.";
+$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"] = "Bitte trete bei uns auf Friendica bei";
+$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["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://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
+$a->strings["Account settings"] = "Kontoeinstellungen";
 $a->strings["Additional features"] = "Zusätzliche Features";
 $a->strings["Display settings"] = "Anzeige-Einstellungen";
 $a->strings["Connector settings"] = "Connector-Einstellungen";
@@ -1504,16 +737,19 @@ $a->strings[" Not valid email."] = " Keine gültige E-Mail.";
 $a->strings[" Cannot change to that email."] = "Ändern der E-Mail nicht möglich. ";
 $a->strings["Private forum has no privacy permissions. Using default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt. Die voreingestellte Gruppe für neue Kontakte wird benutzt.";
 $a->strings["Private forum has no privacy permissions and no default privacy group."] = "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte.";
+$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
 $a->strings["Add application"] = "Programm hinzufügen";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Umleiten";
 $a->strings["Icon url"] = "Icon URL";
 $a->strings["You can't edit this application."] = "Du kannst dieses Programm nicht bearbeiten.";
 $a->strings["Connected Apps"] = "Verbundene Programme";
-$a->strings["Edit"] = "Bearbeiten";
 $a->strings["Client key starts with"] = "Anwenderschlüssel beginnt mit";
 $a->strings["No name"] = "Kein Name";
 $a->strings["Remove authorization"] = "Autorisierung entziehen";
 $a->strings["No Plugin settings configured"] = "Keine Plugin-Einstellungen konfiguriert";
+$a->strings["Plugin Settings"] = "Plugin-Einstellungen";
 $a->strings["Off"] = "Aus";
 $a->strings["On"] = "An";
 $a->strings["Additional Features"] = "Zusätzliche Features";
@@ -1529,6 +765,7 @@ $a->strings["Last successful email check:"] = "Letzter erfolgreicher E-Mail Chec
 $a->strings["IMAP server name:"] = "IMAP-Server-Name:";
 $a->strings["IMAP port:"] = "IMAP-Port:";
 $a->strings["Security:"] = "Sicherheit:";
+$a->strings["None"] = "Keine";
 $a->strings["Email login name:"] = "E-Mail-Login-Name:";
 $a->strings["Email password:"] = "E-Mail-Passwort:";
 $a->strings["Reply-to address:"] = "Reply-to Adresse:";
@@ -1583,6 +820,7 @@ $a->strings["New Password:"] = "Neues Passwort:";
 $a->strings["Confirm:"] = "Bestätigen:";
 $a->strings["Leave password fields blank unless changing"] = "Lass die Passwort-Felder leer, außer du willst das Passwort ändern";
 $a->strings["Basic Settings"] = "Grundeinstellungen";
+$a->strings["Full Name:"] = "Kompletter Name:";
 $a->strings["Email Address:"] = "E-Mail-Adresse:";
 $a->strings["Your Timezone:"] = "Deine Zeitzone:";
 $a->strings["Default Post Location:"] = "Standardstandort:";
@@ -1592,8 +830,6 @@ $a->strings["Maximum Friend Requests/Day:"] = "Maximale Anzahl von Freundschafts
 $a->strings["(to prevent spam abuse)"] = "(um SPAM zu vermeiden)";
 $a->strings["Default Post Permissions"] = "Standard-Zugriffsrechte für Beiträge";
 $a->strings["(click to open/close)"] = "(klicke zum öffnen/schließen)";
-$a->strings["Show to Groups"] = "Zeige den Gruppen";
-$a->strings["Show to Contacts"] = "Zeige den Kontakten";
 $a->strings["Default Private Post"] = "Privater Standardbeitrag";
 $a->strings["Default Public Post"] = "Öffentlicher Standardbeitrag";
 $a->strings["Default Permissions for New Posts"] = "Standardberechtigungen für neue Beiträge";
@@ -1614,164 +850,169 @@ $a->strings["You are tagged in a post"] = "– du in einem Beitrag erwähnt wirs
 $a->strings["You are poked/prodded/etc. in a post"] = "– du von jemandem angestupst oder sonstwie behandelt wirst";
 $a->strings["Advanced Account/Page Type Settings"] = "Erweiterte Konto-/Seitentyp-Einstellungen";
 $a->strings["Change the behaviour of this account for special situations"] = "Verhalten dieses Kontos in bestimmten Situationen:";
+$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
+$a->strings["People Search"] = "Personensuche";
+$a->strings["No matches"] = "Keine Übereinstimmungen";
+$a->strings["Profile deleted."] = "Profil gelöscht.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Neues Profil angelegt.";
+$a->strings["Profile unavailable to clone."] = "Profil nicht zum Duplizieren verfügbar.";
+$a->strings["Profile Name is required."] = "Profilname ist erforderlich.";
+$a->strings["Marital Status"] = "Familienstand";
+$a->strings["Romantic Partner"] = "Romanze";
+$a->strings["Likes"] = "Likes";
+$a->strings["Dislikes"] = "Dislikes";
+$a->strings["Work/Employment"] = "Arbeit / Beschäftigung";
+$a->strings["Religion"] = "Religion";
+$a->strings["Political Views"] = "Politische Ansichten";
+$a->strings["Gender"] = "Geschlecht";
+$a->strings["Sexual Preference"] = "Sexuelle Vorlieben";
+$a->strings["Homepage"] = "Webseite";
+$a->strings["Interests"] = "Interessen";
+$a->strings["Address"] = "Adresse";
+$a->strings["Location"] = "Wohnort";
+$a->strings["Profile updated."] = "Profil aktualisiert.";
+$a->strings[" and "] = " und ";
+$a->strings["public profile"] = "öffentliches Profil";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s hat %2\$s geändert auf &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = " – %1\$ss %2\$s besuchen";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat folgendes aktualisiert %2\$s, verändert wurde %3\$s.";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Liste der Kontakte vor Betrachtern dieses Profils verbergen?";
+$a->strings["Edit Profile Details"] = "Profil bearbeiten";
+$a->strings["Change Profile Photo"] = "Profilbild ändern";
+$a->strings["View this profile"] = "Dieses Profil anzeigen";
+$a->strings["Create a new profile using these settings"] = "Neues Profil anlegen und diese Einstellungen verwenden";
+$a->strings["Clone this profile"] = "Dieses Profil duplizieren";
+$a->strings["Delete this profile"] = "Dieses Profil löschen";
+$a->strings["Profile Name:"] = "Profilname:";
+$a->strings["Your Full Name:"] = "Dein kompletter Name:";
+$a->strings["Title/Description:"] = "Titel/Beschreibung:";
+$a->strings["Your Gender:"] = "Dein Geschlecht:";
+$a->strings["Birthday (%s):"] = "Geburtstag (%s):";
+$a->strings["Street Address:"] = "Adresse:";
+$a->strings["Locality/City:"] = "Wohnort:";
+$a->strings["Postal/Zip Code:"] = "Postleitzahl:";
+$a->strings["Country:"] = "Land:";
+$a->strings["Region/State:"] = "Region/Bundesstaat:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Beziehungsstatus:";
+$a->strings["Who: (if applicable)"] = "Wer: (falls anwendbar)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Seit [Datum]:";
+$a->strings["Sexual Preference:"] = "Sexuelle Vorlieben:";
+$a->strings["Homepage URL:"] = "Adresse der Homepage:";
+$a->strings["Hometown:"] = "Heimatort:";
+$a->strings["Political Views:"] = "Politische Ansichten:";
+$a->strings["Religious Views:"] = "Religiöse Ansichten:";
+$a->strings["Public Keywords:"] = "Öffentliche Schlüsselwörter:";
+$a->strings["Private Keywords:"] = "Private Schlüsselwörter:";
+$a->strings["Likes:"] = "Likes:";
+$a->strings["Dislikes:"] = "Dislikes:";
+$a->strings["Example: fishing photography software"] = "Beispiel: Fischen Fotografie Software";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Wird verwendet, um potentielle Freunde zu finden, könnte von Fremden eingesehen werden)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)";
+$a->strings["Tell us about yourself..."] = "Erzähle uns ein bisschen von dir …";
+$a->strings["Hobbies/Interests"] = "Hobbies/Interessen";
+$a->strings["Contact information and Social Networks"] = "Kontaktinformationen und Soziale Netzwerke";
+$a->strings["Musical interests"] = "Musikalische Interessen";
+$a->strings["Books, literature"] = "Literatur/Bücher";
+$a->strings["Television"] = "Fernsehen";
+$a->strings["Film/dance/culture/entertainment"] = "Filme/Tänze/Kultur/Unterhaltung";
+$a->strings["Love/romance"] = "Liebesleben";
+$a->strings["Work/employment"] = "Arbeit/Beschäftigung";
+$a->strings["School/education"] = "Schule/Ausbildung";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Dies ist dein <strong>öffentliches</strong> Profil.<br />Es <strong>könnte</strong> für jeden Nutzer des Internets sichtbar sein.";
+$a->strings["Age: "] = "Alter: ";
+$a->strings["Edit/Manage Profiles"] = "Verwalte/Editiere Profile";
+$a->strings["Change profile photo"] = "Profilbild ändern";
+$a->strings["Create New Profile"] = "Neues Profil anlegen";
+$a->strings["Profile Image"] = "Profilbild";
+$a->strings["visible to everybody"] = "sichtbar für jeden";
+$a->strings["Edit visibility"] = "Sichtbarkeit bearbeiten";
 $a->strings["link"] = "Link";
-$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["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
-$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["Return to contact editor"] = "Zurück zum Kontakteditor";
-$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 Freundschaftsanfragen";
-$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
-$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["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 Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn 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 (Photos werden nicht exportiert).";
+$a->strings["{0} wants to be your friend"] = "{0} möchte mit dir in Kontakt treten";
+$a->strings["{0} sent you a message"] = "{0} hat dir eine Nachricht geschickt";
+$a->strings["{0} requested registration"] = "{0} möchte sich registrieren";
+$a->strings["{0} commented %s's post"] = "{0} kommentierte einen Beitrag von %s";
+$a->strings["{0} liked %s's post"] = "{0} mag %ss Beitrag";
+$a->strings["{0} disliked %s's post"] = "{0} mag %ss Beitrag nicht";
+$a->strings["{0} is now friends with %s"] = "{0} ist jetzt mit %s befreundet";
+$a->strings["{0} posted"] = "{0} hat etwas veröffentlicht";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} hat %ss Beitrag mit dem Schlagwort #%s versehen";
+$a->strings["{0} mentioned you in a post"] = "{0} hat dich in einem Beitrag erwähnt";
+$a->strings["Nothing new here"] = "Keine Neuigkeiten.";
+$a->strings["Clear notifications"] = "Bereinige Benachrichtigungen";
+$a->strings["Not available."] = "Nicht verfügbar.";
+$a->strings["Community"] = "Gemeinschaft";
+$a->strings["Save to Folder:"] = "In diesen Ordner verschieben:";
+$a->strings["- select -"] = "- auswählen -";
+$a->strings["Save"] = "Speichern";
+$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
+$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$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["Do you really want to delete this suggestion?"] = "Möchtest du wirklich diese Empfehlung löschen?";
+$a->strings["Friend Suggestions"] = "Kontaktvorschläge";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
+$a->strings["Connect"] = "Verbinden";
+$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
+$a->strings["Access denied."] = "Zugriff verweigert.";
+$a->strings["%1\$s welcomes %2\$s"] = "%1\$s heißt %2\$s herzlich willkommen";
+$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 Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
+$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten: ";
 $a->strings["No potential page delegates located."] = "Keine potentiellen Bevollmächtigten für die Seite gefunden.";
+$a->strings["Delegate Page Management"] = "Delegiere das Management für die Seite";
 $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 Seiten Manager";
 $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["No contacts."] = "Keine Kontakte.";
+$a->strings["View Contacts"] = "Kontakte anzeigen";
+$a->strings["Personal Notes"] = "Persönliche Notizen";
 $a->strings["Poke/Prod"] = "Anstupsen etc.";
 $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["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.";
-$a->strings["Unexpected response from remote site: "] = "Unerwartete Antwort der Gegenstelle: ";
-$a->strings["Confirmation completed successfully."] = "Bestätigung erfolgreich abgeschlossen.";
-$a->strings["Remote site reported: "] = "Gegenstelle meldet: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Zeitweiser Fehler. Bitte warte einige Momente und versuche es dann noch einmal.";
-$a->strings["Introduction failed or was revoked."] = "Kontaktanfrage schlug fehl oder wurde zurückgezogen.";
-$a->strings["Unable to set contact photo."] = "Konnte das Bild des Kontakts nicht speichern.";
-$a->strings["No user record found for '%s' "] = "Für '%s' wurde kein Nutzer gefunden";
-$a->strings["Our site encryption key is apparently messed up."] = "Der Verschlüsselungsschlüssel unserer Seite ist anscheinend nicht in Ordnung.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Leere URL für die Seite erhalten oder die URL konnte nicht entschlüsselt werden.";
-$a->strings["Contact record was not found for you on our site."] = "Für diesen Kontakt wurde auf unserer Seite kein Eintrag gefunden.";
-$a->strings["Site public key not available in contact record for URL %s."] = "Die Kontaktdaten für URL %s enthalten keinen Public Key für den Server.";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Die ID, die uns dein System angeboten hat, ist hier bereits vergeben. Bitte versuche es noch einmal.";
-$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["Connection accepted at %s"] = "Auf %s wurde die Verbindung akzeptiert";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s ist %2\$s beigetreten";
-$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 einige Profildaten nicht 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 konnte kein Profilbild bei der angegebenen Profiladresse gefunden werden.";
-$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 Freundschaftsanfragen 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["Unable to resolve your name at the provided location."] = "Konnte deinen Namen an der angegebenen Stelle nicht finden.";
-$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 befreundet bist.";
-$a->strings["Invalid profile URL."] = "Ungültige Profil-URL.";
-$a->strings["Your introduction has been sent."] = "Deine Kontaktanfrage wurde gesendet.";
-$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["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["Confirm"] = "Bestätigen";
-$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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Als E-Mail-Kontakt verbinden</strike> (In Kürze verfügbar)";
-$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>."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, <a href=\"http://dir.friendica.com/siteinfo\">folge diesem Link</a> um einen öffentlichen Friendica-Server zu finden und beizutreten.";
-$a->strings["Friend/Connection Request"] = "Freundschafts-/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["%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. Falls der Server frisch aufgesetzt wurde, versuche es bitte in 24 Stunden noch einmal.";
-$a->strings["Ignore/Hide"] = "Ignorieren/Verbergen";
-$a->strings["People Search"] = "Personensuche";
-$a->strings["No matches"] = "Keine Übereinstimmungen";
-$a->strings["Access to this profile has been restricted."] = "Der Zugriff zu diesem Profil wurde eingeschränkt.";
-$a->strings["Item has been removed."] = "Eintrag wurde entfernt.";
-$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["Item not found"] = "Beitrag nicht gefunden";
-$a->strings["Edit post"] = "Beitrag bearbeiten";
-$a->strings["Event title and start time are required."] = "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden.";
-$a->strings["l, F j"] = "l, F j";
-$a->strings["Edit event"] = "Veranstaltung bearbeiten";
-$a->strings["Create New Event"] = "Neue Veranstaltung erstellen";
-$a->strings["hour:minute"] = "Stunde:Minute";
-$a->strings["Event details"] = "Veranstaltungsdetails";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Das Format ist %s %s. Beginnzeitpunkt 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["Files"] = "Dateien";
-$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 Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn 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 (Photos werden nicht exportiert).";
-$a->strings["- select -"] = "- auswählen -";
-$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 Freunde darüber zu informieren, dass du hierher umgezogen bist.";
-$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Dieses Feature ist experimentell. Wir können keine Kontakte vom OStatus Netzwerk (statusnet/identi.ca) oder von Diaspora importieren";
-$a->strings["Account file"] = "Account Datei";
-$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
-$a->strings["[Embedded content - reload page to view]"] = "[Eingebetteter Inhalt - Seite neu laden zum Betrachten]";
-$a->strings["Contact added"] = "Kontakt hinzugefügt";
-$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.";
-$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Vorschläge, Lob, Spenden usw.: E-Mail an \"Info\" at Friendica - dot com";
-$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Erweiterungen/Apps";
-$a->strings["No installed plugins/addons/apps"] = "Keine Plugins/Erweiterungen/Apps installiert";
-$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["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
-$a->strings["Group Name: "] = "Gruppenname:";
-$a->strings["Group removed."] = "Gruppe entfernt.";
-$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
-$a->strings["Group Editor"] = "Gruppeneditor";
-$a->strings["Members"] = "Mitglieder";
-$a->strings["No profile"] = "Kein Profil";
-$a->strings["Help:"] = "Hilfe:";
-$a->strings["Not Found"] = "Nicht gefunden";
-$a->strings["Page not found."] = "Seite nicht gefunden.";
-$a->strings["No contacts."] = "Keine Kontakte.";
-$a->strings["Access denied."] = "Zugriff verweigert.";
-$a->strings["File exceeds size limit of %d"] = "Die Datei ist größer als das erlaubte Limit von %d";
-$a->strings["File upload failed."] = "Hochladen der Datei fehlgeschlagen.";
+$a->strings["Global Directory"] = "Weltweites Verzeichnis";
+$a->strings["Find on this site"] = "Auf diesem Server suchen";
+$a->strings["Site Directory"] = "Verzeichnis";
+$a->strings["Gender: "] = "Geschlecht:";
+$a->strings["Gender:"] = "Geschlecht:";
+$a->strings["Status:"] = "Status:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Über:";
+$a->strings["No entries (some entries may be hidden)."] = "Keine Einträge (einige Einträge könnten versteckt sein).";
+$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y\\, H:i";
+$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["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
+$a->strings["Image uploaded but image cropping failed."] = "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen.";
+$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] ist gescheitert.";
+$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["skip this step"] = "diesen Schritt überspringen";
+$a->strings["select a photo from your photo albums"] = "wähle ein Foto von 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 auf den Server geladen.";
 $a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke – Setup";
 $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
 $a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
@@ -1831,96 +1072,42 @@ $a->strings["The database configuration file \".htconfig.php\" could not be writ
 $a->strings["Errors encountered creating database tables."] = "Fehler aufgetreten während der Erzeugung der Datenbanktabellen.";
 $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["Image exceeds size limit of %d"] = "Bildgröße überschreitet das Limit von %d";
-$a->strings["Unable to process image."] = "Konnte das Bild nicht bearbeiten.";
-$a->strings["Image upload failed."] = "Hochladen des Bildes gescheitert.";
-$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"] = "Bitte trete bei uns auf Friendica bei";
-$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["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://friendica.com"] = "Für weitere Informationen über das Friendica Projekt und warum wir es für ein wichtiges Projekt halten, besuche bitte http://friendica.com";
-$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["No recipient selected."] = "Kein Empfänger gewählt.";
-$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
-$a->strings["Message could not be sent."] = "Nachricht konnte nicht gesendet werden.";
-$a->strings["Message collection failure."] = "Konnte Nachrichten nicht abrufen.";
-$a->strings["Message sent."] = "Nachricht gesendet.";
-$a->strings["No recipient."] = "Kein Empfänger.";
-$a->strings["Send Private Message"] = "Private Nachricht senden";
-$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["To:"] = "An:";
-$a->strings["Subject:"] = "Betreff:";
-$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["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["Password reset requested at %s"] = "Anfrage zum Zurücksetzen des Passworts auf %s erhalten";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert.";
-$a->strings["Password Reset"] = "Passwort zurücksetzen";
-$a->strings["Your password has been reset as requested."] = "Dein Passwort wurde wie gewünscht zurückgesetzt.";
-$a->strings["Your new password is"] = "Dein neues Passwort lautet";
-$a->strings["Save or copy your new password - and then"] = "Speichere oder kopiere dein neues Passwort - und dann";
-$a->strings["click here to login"] = "hier klicken, um dich anzumelden";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Du kannst das Passwort in den <em>Einstellungen</em> ändern, sobald du dich erfolgreich angemeldet hast.";
-$a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert";
-$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 Foren wechseln, die deine Zugangsdaten (E-Mail und Passwort) teilen oder zu denen du „Verwalten“-Befugnisse bekommen hast.";
-$a->strings["Select an identity to manage: "] = "Wähle eine Identität zum Verwalten: ";
+$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["Create a group of contacts/friends."] = "Eine Gruppe von Kontakten/Freunden anlegen.";
+$a->strings["Group Name: "] = "Gruppenname:";
+$a->strings["Group removed."] = "Gruppe entfernt.";
+$a->strings["Unable to remove group."] = "Konnte die Gruppe nicht entfernen.";
+$a->strings["Group Editor"] = "Gruppeneditor";
+$a->strings["Members"] = "Mitglieder";
+$a->strings["No such group"] = "Es gibt keine solche Gruppe";
+$a->strings["Group is empty"] = "Gruppe ist leer";
+$a->strings["Group: "] = "Gruppe: ";
+$a->strings["View in context"] = "Im Zusammenhang betrachten";
+$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["Profile Match"] = "Profilübereinstimmungen";
 $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["Unable to locate contact information."] = "Konnte die Kontaktinformationen nicht finden.";
-$a->strings["Do you really want to delete this message?"] = "Möchtest du wirklich diese Nachricht löschen?";
-$a->strings["Message deleted."] = "Nachricht gelöscht.";
-$a->strings["Conversation removed."] = "Unterhaltung gelöscht.";
-$a->strings["No messages."] = "Keine Nachrichten.";
-$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["Delete conversation"] = "Unterhaltung löschen";
-$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["Message not available."] = "Nachricht nicht verfügbar.";
-$a->strings["Delete message"] = "Nachricht 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["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["%1\$s is currently %2\$s"] = "%1\$s ist momentan %2\$s";
 $a->strings["Mood"] = "Stimmung";
 $a->strings["Set your current mood and tell your friends"] = "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden";
 $a->strings["Search Results For:"] = "Suchergebnisse für:";
+$a->strings["add"] = "hinzufügen";
 $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["Personal"] = "Persönlich";
 $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";
@@ -1932,232 +1119,512 @@ $a->strings["Warning: This group contains %s member from an insecure network."]
        0 => "Warnung: Diese Gruppe beinhaltet %s Person aus einem unsicheren Netzwerk.",
        1 => "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerken.",
 );
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
-$a->strings["No such group"] = "Es gibt keine solche Gruppe";
-$a->strings["Group is empty"] = "Gruppe ist leer";
-$a->strings["Group: "] = "Gruppe: ";
-$a->strings["Contact: "] = "Kontakt: ";
-$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["Not available."] = "Nicht verfügbar.";
-$a->strings["Photo Albums"] = "Fotoalben";
-$a->strings["Upload New Photos"] = "Neue Fotos hochladen";
-$a->strings["Contact information unavailable"] = "Kontaktinformationen nicht verfügbar";
-$a->strings["Album not found."] = "Album nicht gefunden.";
-$a->strings["Delete Album"] = "Album löschen";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?";
-$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 file is empty."] = "Bilddatei ist leer.";
-$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: ";
-$a->strings["or existing album name: "] = "oder existierender Albumname: ";
-$a->strings["Do not show a status post for this upload"] = "Keine Status-Mitteilung für diesen Beitrag anzeigen";
-$a->strings["Permissions"] = "Berechtigungen";
-$a->strings["Private Photo"] = "Privates Foto";
-$a->strings["Public Photo"] = "Öffentliches Foto";
-$a->strings["Edit Album"] = "Album bearbeiten";
-$a->strings["Show Newest First"] = "Zeige neueste zuerst";
-$a->strings["Show Oldest First"] = "Zeige älteste zuerst";
-$a->strings["View Photo"] = "Foto betrachten";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein.";
-$a->strings["Photo not available"] = "Foto nicht verfügbar";
-$a->strings["View photo"] = "Fotos ansehen";
-$a->strings["Edit photo"] = "Foto bearbeiten";
-$a->strings["Use as profile photo"] = "Als Profilbild verwenden";
-$a->strings["Private Message"] = "Private Nachricht";
-$a->strings["View Full Size"] = "Betrachte Originalgröße";
-$a->strings["Tags: "] = "Tags: ";
-$a->strings["[Remove any tag]"] = "[Tag entfernen]";
-$a->strings["Rotate CW (right)"] = "Drehen US (rechts)";
-$a->strings["Rotate CCW (left)"] = "Drehen EUS (links)";
-$a->strings["New album name"] = "Name des neuen Albums";
-$a->strings["Caption"] = "Bildunterschrift";
-$a->strings["Add a Tag"] = "Tag hinzufügen";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "Privates Foto";
-$a->strings["Public photo"] = "Öffentliches Foto";
-$a->strings["I like this (toggle)"] = "Ich mag das (toggle)";
-$a->strings["I don't like this (toggle)"] = "Ich mag das nicht (toggle)";
-$a->strings["This is you"] = "Das bist du";
-$a->strings["Comment"] = "Kommentar";
-$a->strings["View Album"] = "Album betrachten";
-$a->strings["Recent Photos"] = "Neueste Fotos";
-$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 Freundschaften mit anderen im Friendica Netzwerk zu schliessen.";
-$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 Freunde und potentiellen Freunde 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 Freunde 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 Freundesliste 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["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Richte die Verbindung zu Facebook ein, wenn du im Augenblick ein Facebook-Konto hast, und (optional) deine Facebook-Freunde und -Unterhaltungen importieren willst.";
-$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>Wenn</em> dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten.";
-$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 Freunden und Mailinglisten interagieren willlst.";
-$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 Freunden 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 Freunde zu finden. Wir können Menschen mit den gleichen Interessen finden, anhand von Namen oder Interessen suchen oder aber aufgrund vorhandener Kontakte neue Freunde 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 Freunde 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["Requested profile is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Tips for New Members"] = "Tipps für neue Nutzer";
-$a->strings["Invalid request identifier."] = "Invalid request identifier.";
-$a->strings["Discard"] = "Verwerfen";
-$a->strings["System"] = "System";
-$a->strings["Show Ignored Requests"] = "Zeige ignorierte Anfragen";
-$a->strings["Hide Ignored Requests"] = "Verberge ignorierte Anfragen";
-$a->strings["Notification type: "] = "Benachrichtigungstyp: ";
-$a->strings["Friend Suggestion"] = "Kontaktvorschlag";
-$a->strings["suggested by %s"] = "vorgeschlagen von %s";
-$a->strings["Post a new friend activity"] = "Neue-Kontakt Nachricht senden";
-$a->strings["if applicable"] = "falls anwendbar";
-$a->strings["Claims to be known to you: "] = "Behauptet dich zu kennen: ";
-$a->strings["yes"] = "ja";
-$a->strings["no"] = "nein";
-$a->strings["Approve as: "] = "Genehmigen als: ";
-$a->strings["Friend"] = "Freund";
-$a->strings["Sharer"] = "Teilenden";
-$a->strings["Fan/Admirer"] = "Fan/Verehrer";
-$a->strings["Friend/Connect Request"] = "Kontakt-/Freundschaftsanfrage";
-$a->strings["New Follower"] = "Neuer Bewunderer";
-$a->strings["No introductions."] = "Keine Kontaktanfragen.";
-$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 now friends with %s"] = "%s ist jetzt mit %s befreundet";
-$a->strings["%s created a new post"] = "%s hat einen neuen Beitrag erstellt";
-$a->strings["%s commented on %s's post"] = "%s hat %ss Beitrag kommentiert";
-$a->strings["No more network notifications."] = "Keine weiteren Netzwerk-Benachrichtigungen.";
-$a->strings["Network Notifications"] = "Netzwerk Benachrichtigungen";
-$a->strings["No more system notifications."] = "Keine weiteren Systembenachrichtigungen.";
-$a->strings["System Notifications"] = "Systembenachrichtigungen";
-$a->strings["No more personal notifications."] = "Keine weiteren persönlichen Benachrichtigungen";
-$a->strings["Personal Notifications"] = "Persönliche Benachrichtigungen";
-$a->strings["No more home notifications."] = "Keine weiteren Pinnwand-Benachrichtigungen";
-$a->strings["Home Notifications"] = "Pinnwand Benachrichtigungen";
-$a->strings["Post successful."] = "Beitrag erfolgreich veröffentlicht.";
-$a->strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet.";
-$a->strings["Image uploaded but image cropping failed."] = "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen.";
-$a->strings["Image size reduction [%s] failed."] = "Verkleinern der Bildgröße von [%s] ist gescheitert.";
-$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["skip this step"] = "diesen Schritt überspringen";
-$a->strings["select a photo from your photo albums"] = "wähle ein Foto von 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 auf den Server geladen.";
-$a->strings["%d comment"] = array(
-       0 => "%d Kommentar",
-       1 => "%d Kommentare",
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Private Nachrichten an diese Gruppe könnten an die Öffentlichkeit geraten.";
+$a->strings["Contact: "] = "Kontakt: ";
+$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["Contact settings applied."] = "Einstellungen zum Kontakt angewandt.";
+$a->strings["Contact update failed."] = "Konnte den Kontakt nicht aktualisieren.";
+$a->strings["Repair Contact Settings"] = "Kontakteinstellungen reparieren";
+$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["Return to contact editor"] = "Zurück zum Kontakteditor";
+$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 Freundschaftsanfragen";
+$a->strings["Friend Confirm URL"] = "URL für Bestätigungen von Freundschaftsanfragen";
+$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["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen";
+$a->strings["Your profile page"] = "Deine Profilseite";
+$a->strings["Your contacts"] = "Deine Kontakte";
+$a->strings["Your photos"] = "Deine Fotos";
+$a->strings["Your events"] = "Deine Ereignisse";
+$a->strings["Personal notes"] = "Persönliche Notizen";
+$a->strings["Your personal photos"] = "Deine privaten Fotos";
+$a->strings["Community Pages"] = "Foren";
+$a->strings["Community Profiles"] = "Community-Profile";
+$a->strings["Last users"] = "Letzte Nutzer";
+$a->strings["Last likes"] = "Zuletzt gemocht";
+$a->strings["event"] = "Veranstaltung";
+$a->strings["Last photos"] = "Letzte Fotos";
+$a->strings["Find Friends"] = "Freunde finden";
+$a->strings["Local Directory"] = "Lokales Verzeichnis";
+$a->strings["Similar Interests"] = "Ähnliche Interessen";
+$a->strings["Invite Friends"] = "Freunde einladen";
+$a->strings["Earth Layers"] = "Earth Layers";
+$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
+$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
+$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
+$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
+$a->strings["Connect Services"] = "Verbinde Dienste";
+$a->strings["Last Tweets"] = "Neueste Tweets";
+$a->strings["Set twitter search term"] = "Twitter Suchbegriff";
+$a->strings["don't show"] = "nicht zeigen";
+$a->strings["show"] = "zeigen";
+$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
+$a->strings["Theme settings"] = "Themeneinstellungen";
+$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
+$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
+$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
+$a->strings["Set color scheme"] = "Wähle Farbschema";
+$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
+$a->strings["Last tweets"] = "Neueste Tweets";
+$a->strings["Set colour scheme"] = "Farbschema wählen";
+$a->strings["Alignment"] = "Ausrichtung";
+$a->strings["Left"] = "Links";
+$a->strings["Center"] = "Mitte";
+$a->strings["Color scheme"] = "Farbschema";
+$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
+$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
+$a->strings["Set theme width"] = "Theme Breite festlegen";
+$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
+$a->strings["show fewer"] = "weniger anzeigen";
+$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
+$a->strings["Update Error at %s"] = "Updatefehler bei %s";
+$a->strings["Create a New Account"] = "Neues Konto erstellen";
+$a->strings["Logout"] = "Abmelden";
+$a->strings["Login"] = "Anmeldung";
+$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
+$a->strings["Password: "] = "Passwort: ";
+$a->strings["Remember me"] = "Anmeldedaten merken";
+$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
+$a->strings["Forgot your password?"] = "Passwort vergessen?";
+$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
+$a->strings["terms of service"] = "Nutzungsbedingungen";
+$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
+$a->strings["privacy policy"] = "Datenschutzerklärung";
+$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
+$a->strings["Edit profile"] = "Profil bearbeiten";
+$a->strings["Message"] = "Nachricht";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
+$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
+$a->strings["F d"] = "d. F";
+$a->strings["[today]"] = "[heute]";
+$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
+$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["Status"] = "Status";
+$a->strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
+$a->strings["Profile Details"] = "Profildetails";
+$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
+$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
+$a->strings["General Features"] = "Allgemeine Features";
+$a->strings["Multiple Profiles"] = "Mehrere Profile";
+$a->strings["Ability to create multiple profiles"] = "Möglichkeit mehrere Profile zu erstellen";
+$a->strings["Post Composition Features"] = "Beitragserstellung Features";
+$a->strings["Richtext Editor"] = "Web-Editor";
+$a->strings["Enable richtext editor"] = "Den Web-Editor für neue Beiträge aktivieren";
+$a->strings["Post Preview"] = "Beitragsvorschau";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Die Vorschau von Beiträgen und Kommentaren vor dem absenden erlauben.";
+$a->strings["Network Sidebar Widgets"] = "Widgets für Netzwerk und Seitenleiste";
+$a->strings["Search by Date"] = "Archiv";
+$a->strings["Ability to select posts by date ranges"] = "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren";
+$a->strings["Group Filter"] = "Gruppen Filter";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Widget zur Darstellung der Beiträge nach Kontaktgruppen sortiert aktivieren.";
+$a->strings["Network Filter"] = "Netzwerk Filter";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Widget zum filtern der Beiträge in Abhängigkeit des Netzwerks aus dem der Ersteller sendet aktivieren.";
+$a->strings["Save search terms for re-use"] = "Speichere Suchanfragen für spätere Wiederholung.";
+$a->strings["Network Tabs"] = "Netzwerk Reiter";
+$a->strings["Network Personal Tab"] = "Netzwerk-Reiter: Persönlich";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Netzwerk-Reiter in dem Nachrichten angezeigt werden mit denen du interagiert hast";
+$a->strings["Network New Tab"] = "Netzwerk-Reiter: Neue";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Aktiviert einen Netzwerk-Reiter in dem ausschließlich neue Beiträge (der letzten 12 Stunden) angezeigt werden";
+$a->strings["Network Shared Links Tab"] = "Netzwerk-Reiter: Geteilte Links";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Aktiviert einen Netzwerk-Reiter der ausschließlich Nachrichten mit Links enthält";
+$a->strings["Post/Comment Tools"] = "Werkzeuge für Beiträge und Kommentare";
+$a->strings["Multiple Deletion"] = "Mehrere Beiträge löschen";
+$a->strings["Select and delete multiple posts/comments at once"] = "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen";
+$a->strings["Edit Sent Posts"] = "Gesendete Beiträge editieren";
+$a->strings["Edit and correct posts and comments after sending"] = "Erlaubt es Beiträge und Kommentare nach dem Senden zu editieren bzw.zu  korrigieren.";
+$a->strings["Tagging"] = "Tagging";
+$a->strings["Ability to tag existing posts"] = "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen.";
+$a->strings["Post Categories"] = "Beitragskategorien";
+$a->strings["Add categories to your posts"] = "Eigene Beiträge mit Kategorien versehen";
+$a->strings["Saved Folders"] = "Gespeicherte Ordner";
+$a->strings["Ability to file posts under folders"] = "Beiträge in Ordnern speichern aktivieren";
+$a->strings["Dislike Posts"] = "Beiträge 'nicht mögen'";
+$a->strings["Ability to dislike posts/comments"] = "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'";
+$a->strings["Star Posts"] = "Beiträge Markieren";
+$a->strings["Ability to mark special posts with a star indicator"] = "Erlaubt es Beiträge mit einem Stern-Indikator zu  markieren";
+$a->strings["Logged out."] = "Abgemeldet.";
+$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["Starts:"] = "Beginnt:";
+$a->strings["Finishes:"] = "Endet:";
+$a->strings["j F, Y"] = "j F, Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Geburtstag:";
+$a->strings["Age:"] = "Alter:";
+$a->strings["for %1\$d %2\$s"] = "für %1\$d %2\$s";
+$a->strings["Tags:"] = "Tags";
+$a->strings["Religion:"] = "Religion:";
+$a->strings["Hobbies/Interests:"] = "Hobbies/Interessen:";
+$a->strings["Contact information and Social Networks:"] = "Kontaktinformationen und Soziale Netzwerke:";
+$a->strings["Musical interests:"] = "Musikalische Interessen:";
+$a->strings["Books, literature:"] = "Literatur/Bücher:";
+$a->strings["Television:"] = "Fernsehen:";
+$a->strings["Film/dance/culture/entertainment:"] = "Filme/Tänze/Kultur/Unterhaltung:";
+$a->strings["Love/Romance:"] = "Liebesleben:";
+$a->strings["Work/employment:"] = "Arbeit/Beschäftigung:";
+$a->strings["School/education:"] = "Schule/Ausbildung:";
+$a->strings["[no subject]"] = "[kein Betreff]";
+$a->strings[" on Last.fm"] = " bei Last.fm";
+$a->strings["prev"] = "vorige";
+$a->strings["first"] = "erste";
+$a->strings["last"] = "letzte";
+$a->strings["next"] = "nächste";
+$a->strings["newer"] = "neuer";
+$a->strings["older"] = "älter";
+$a->strings["No contacts"] = "Keine Kontakte";
+$a->strings["%d Contact"] = array(
+       0 => "%d Kontakt",
+       1 => "%d Kontakte",
+);
+$a->strings["poke"] = "anstupsen";
+$a->strings["poked"] = "stupste";
+$a->strings["ping"] = "anpingen";
+$a->strings["pinged"] = "pingte";
+$a->strings["prod"] = "knuffen";
+$a->strings["prodded"] = "knuffte";
+$a->strings["slap"] = "ohrfeigen";
+$a->strings["slapped"] = "ohrfeigte";
+$a->strings["finger"] = "befummeln";
+$a->strings["fingered"] = "befummelte";
+$a->strings["rebuff"] = "eine Abfuhr erteilen";
+$a->strings["rebuffed"] = "abfuhrerteilte";
+$a->strings["happy"] = "glücklich";
+$a->strings["sad"] = "traurig";
+$a->strings["mellow"] = "sanft";
+$a->strings["tired"] = "müde";
+$a->strings["perky"] = "frech";
+$a->strings["angry"] = "sauer";
+$a->strings["stupified"] = "verblüfft";
+$a->strings["puzzled"] = "verwirrt";
+$a->strings["interested"] = "interessiert";
+$a->strings["bitter"] = "verbittert";
+$a->strings["cheerful"] = "fröhlich";
+$a->strings["alive"] = "lebendig";
+$a->strings["annoyed"] = "verärgert";
+$a->strings["anxious"] = "unruhig";
+$a->strings["cranky"] = "schrullig";
+$a->strings["disturbed"] = "verstört";
+$a->strings["frustrated"] = "frustriert";
+$a->strings["motivated"] = "motiviert";
+$a->strings["relaxed"] = "entspannt";
+$a->strings["surprised"] = "überrascht";
+$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["Sunday"] = "Sonntag";
+$a->strings["January"] = "Januar";
+$a->strings["February"] = "Februar";
+$a->strings["March"] = "März";
+$a->strings["April"] = "April";
+$a->strings["May"] = "Mai";
+$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["bytes"] = "Byte";
+$a->strings["Click to open/close"] = "Zum öffnen/schließen klicken";
+$a->strings["default"] = "Standard";
+$a->strings["Select an alternate language"] = "Alternative Sprache auswählen";
+$a->strings["activity"] = "Aktivität";
+$a->strings["post"] = "Beitrag";
+$a->strings["Item filed"] = "Beitrag abgelegt";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln.";
+$a->strings["%s's birthday"] = "%ss Geburtstag";
+$a->strings["Happy Birthday %s"] = "Herzlichen Glückwunsch %s";
+$a->strings["A new person is sharing with you at "] = "Eine neue Person teilt mit dir auf ";
+$a->strings["You have a new follower at "] = "Du hast einen neuen Kontakt auf ";
+$a->strings["Do you really want to delete this item?"] = "Möchtest du wirklich dieses Item löschen?";
+$a->strings["Archives"] = "Archiv";
+$a->strings["(no subject)"] = "(kein Betreff)";
+$a->strings["noreply"] = "noreply";
+$a->strings["Sharing notification from Diaspora network"] = "Freigabe-Benachrichtigung von Diaspora";
+$a->strings["Attachments:"] = "Anhänge:";
+$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["following"] = "folgen";
+$a->strings["Welcome "] = "Willkommen ";
+$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
+$a->strings["Welcome back "] = "Willkommen zurück ";
+$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."] = "Das Sicherheitsmerkmal war nicht korrekt. Das passiert meistens wenn das Formular vor dem Absenden zu lange geöffnet war (länger als 3 Stunden).";
+$a->strings["Male"] = "Männlich";
+$a->strings["Female"] = "Weiblich";
+$a->strings["Currently Male"] = "Momentan männlich";
+$a->strings["Currently Female"] = "Momentan weiblich";
+$a->strings["Mostly Male"] = "Hauptsächlich männlich";
+$a->strings["Mostly Female"] = "Hauptsächlich weiblich";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transsexuell";
+$a->strings["Hermaphrodite"] = "Hermaphrodit";
+$a->strings["Neuter"] = "Neuter";
+$a->strings["Non-specific"] = "Nicht spezifiziert";
+$a->strings["Other"] = "Andere";
+$a->strings["Undecided"] = "Unentschieden";
+$a->strings["Males"] = "Männer";
+$a->strings["Females"] = "Frauen";
+$a->strings["Gay"] = "Schwul";
+$a->strings["Lesbian"] = "Lesbisch";
+$a->strings["No Preference"] = "Keine Vorlieben";
+$a->strings["Bisexual"] = "Bisexuell";
+$a->strings["Autosexual"] = "Autosexual";
+$a->strings["Abstinent"] = "Abstinent";
+$a->strings["Virgin"] = "Jungfrauen";
+$a->strings["Deviant"] = "Deviant";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Oodles";
+$a->strings["Nonsexual"] = "Nonsexual";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Einsam";
+$a->strings["Available"] = "Verfügbar";
+$a->strings["Unavailable"] = "Nicht verfügbar";
+$a->strings["Has crush"] = "verknallt";
+$a->strings["Infatuated"] = "verliebt";
+$a->strings["Dating"] = "Dating";
+$a->strings["Unfaithful"] = "Untreu";
+$a->strings["Sex Addict"] = "Sexbesessen";
+$a->strings["Friends"] = "Freunde";
+$a->strings["Friends/Benefits"] = "Freunde/Zuwendungen";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Verlobt";
+$a->strings["Married"] = "Verheiratet";
+$a->strings["Imaginarily married"] = "imaginär verheiratet";
+$a->strings["Partners"] = "Partner";
+$a->strings["Cohabiting"] = "zusammenlebend";
+$a->strings["Common law"] = "wilde Ehe";
+$a->strings["Happy"] = "Glücklich";
+$a->strings["Not looking"] = "Nicht auf der Suche";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Betrogen";
+$a->strings["Separated"] = "Getrennt";
+$a->strings["Unstable"] = "Unstabil";
+$a->strings["Divorced"] = "Geschieden";
+$a->strings["Imaginarily divorced"] = "imaginär geschieden";
+$a->strings["Widowed"] = "Verwitwet";
+$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["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
+$a->strings["Error! Cannot check nickname"] = "Fehler! Konnte den Nickname nicht überprüfen.";
+$a->strings["User '%s' already exists on this server!"] = "Nutzer '%s' existiert bereits auf diesem Server!";
+$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
+$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d Kontakt nicht importiert",
+       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["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.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s";
+$a->strings["post/item"] = "Nachricht/Beitrag";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s hat %2\$s\\s %3\$s als Favorit markiert";
+$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["Edit Contact"] = "Kontakt bearbeiten";
+$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["<span  %1\$s>%2\$d people</span> like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "<span  %1\$s>%2\$d Personen</span> mögen das nicht";
+$a->strings["and"] = "und";
+$a->strings[", and %d other people"] = " und %d andere";
+$a->strings["%s like this."] = "%s mögen das.";
+$a->strings["%s don't like this."] = "%s mögen das nicht.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Für <strong>jedermann</strong> sichtbar";
+$a->strings["Please enter a video link/URL:"] = "Bitte Link/URL zum Video einfügen:";
+$a->strings["Please enter an audio link/URL:"] = "Bitte Link/URL zum Audio einfügen:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Where are you right now?"] = "Wo hältst du dich jetzt gerade auf?";
+$a->strings["Delete item(s)?"] = "Einträge löschen?";
+$a->strings["Post to Email"] = "An E-Mail senden";
+$a->strings["permissions"] = "Zugriffsrechte";
+$a->strings["Post to Groups"] = "Poste an Gruppe";
+$a->strings["Post to Contacts"] = "Poste an Kontakte";
+$a->strings["Private post"] = "Privater Beitrag";
+$a->strings["Add New Contact"] = "Neuen Kontakt hinzufügen";
+$a->strings["Enter address or web location"] = "Adresse oder Web-Link eingeben";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Beispiel: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d Einladung verfügbar",
+       1 => "%d Einladungen verfügbar",
 );
-$a->strings["like"] = "mag ich";
-$a->strings["dislike"] = "mag ich nicht";
-$a->strings["Share this"] = "Weitersagen";
-$a->strings["share"] = "Teilen";
-$a->strings["Bold"] = "Fett";
-$a->strings["Italic"] = "Kursiv";
-$a->strings["Underline"] = "Unterstrichen";
-$a->strings["Quote"] = "Zitat";
-$a->strings["Code"] = "Code";
-$a->strings["Image"] = "Bild";
-$a->strings["Link"] = "Verweis";
-$a->strings["Video"] = "Video";
-$a->strings["add star"] = "markieren";
-$a->strings["remove star"] = "Markierung entfernen";
-$a->strings["toggle star status"] = "Markierung umschalten";
-$a->strings["starred"] = "markiert";
-$a->strings["add tag"] = "Tag hinzufügen";
-$a->strings["save to folder"] = "In Ordner speichern";
-$a->strings["to"] = "zu";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["via"] = "via";
-$a->strings["Theme settings"] = "Themeneinstellungen";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Wähle das Vergrößerungsmaß für Bilder in Beiträgen und Kommentaren (Höhe und Breite)";
-$a->strings["Set font-size for posts and comments"] = "Schriftgröße für Beiträge und Kommentare festlegen";
-$a->strings["Set theme width"] = "Theme Breite festlegen";
-$a->strings["Color scheme"] = "Farbschema";
-$a->strings["Set line-height for posts and comments"] = "Liniengröße für Beiträge und Kommantare festlegen";
-$a->strings["Set resolution for middle column"] = "Auflösung für die Mittelspalte setzen";
-$a->strings["Set color scheme"] = "Wähle Farbschema";
-$a->strings["Set twitter search term"] = "Twitter Suchbegriff";
-$a->strings["Set zoomfactor for Earth Layer"] = "Zoomfaktor der Earth Layer";
-$a->strings["Set longitude (X) for Earth Layers"] = "Longitude (X) der Earth Layer";
-$a->strings["Set latitude (Y) for Earth Layers"] = "Latitude (Y) der Earth Layer";
-$a->strings["Community Pages"] = "Foren";
-$a->strings["Earth Layers"] = "Earth Layers";
-$a->strings["Community Profiles"] = "Community-Profile";
-$a->strings["Help or @NewHere ?"] = "Hilfe oder @NewHere";
-$a->strings["Connect Services"] = "Verbinde Dienste";
-$a->strings["Find Friends"] = "Freunde finden";
-$a->strings["Last tweets"] = "Neueste Tweets";
-$a->strings["Last users"] = "Letzte Nutzer";
-$a->strings["Last photos"] = "Letzte Fotos";
-$a->strings["Last likes"] = "Zuletzt gemocht";
-$a->strings["Your contacts"] = "Deine Kontakte";
-$a->strings["Local Directory"] = "Lokales Verzeichnis";
-$a->strings["Set zoomfactor for Earth Layers"] = "Zoomfaktor der Earth Layer";
-$a->strings["Last Tweets"] = "Neueste Tweets";
-$a->strings["Show/hide boxes at right-hand column:"] = "Rahmen auf der rechten Seite anzeigen/verbergen";
-$a->strings["Set colour scheme"] = "Farbschema wählen";
-$a->strings["Alignment"] = "Ausrichtung";
-$a->strings["Left"] = "Links";
-$a->strings["Center"] = "Mitte";
-$a->strings["Posts font size"] = "Schriftgröße in Beiträgen";
-$a->strings["Textareas font size"] = "Schriftgröße in Eingabefeldern";
-$a->strings["Delete this item?"] = "Diesen Beitrag löschen?";
-$a->strings["show fewer"] = "weniger anzeigen";
-$a->strings["Update %s failed. See error logs."] = "Update %s fehlgeschlagen. Bitte Fehlerprotokoll überprüfen.";
-$a->strings["Update Error at %s"] = "Updatefehler bei %s";
-$a->strings["Create a New Account"] = "Neues Konto erstellen";
-$a->strings["Nickname or Email address: "] = "Spitzname oder E-Mail-Adresse: ";
-$a->strings["Password: "] = "Passwort: ";
-$a->strings["Remember me"] = "Anmeldedaten merken";
-$a->strings["Or login using OpenID: "] = "Oder melde dich mit deiner OpenID an: ";
-$a->strings["Forgot your password?"] = "Passwort vergessen?";
-$a->strings["Website Terms of Service"] = "Website Nutzungsbedingungen";
-$a->strings["terms of service"] = "Nutzungsbedingungen";
-$a->strings["Website Privacy Policy"] = "Website Datenschutzerklärung";
-$a->strings["privacy policy"] = "Datenschutzerklärung";
-$a->strings["Requested account is not available."] = "Das angefragte Profil ist nicht vorhanden.";
-$a->strings["Edit profile"] = "Profil bearbeiten";
-$a->strings["Message"] = "Nachricht";
-$a->strings["Manage/edit profiles"] = "Profile verwalten/editieren";
-$a->strings["g A l F d"] = "l, d. F G \\U\\h\\r";
-$a->strings["F d"] = "d. F";
-$a->strings["[today]"] = "[heute]";
-$a->strings["Birthday Reminders"] = "Geburtstagserinnerungen";
-$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["Status Messages and Posts"] = "Statusnachrichten und Beiträge";
-$a->strings["Profile Details"] = "Profildetails";
-$a->strings["Events and Calendar"] = "Ereignisse und Kalender";
-$a->strings["Only You Can See This"] = "Nur du kannst das sehen";
-$a->strings["toggle mobile"] = "auf/von Mobile Ansicht wechseln";
+$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["Random Profile"] = "Zufälliges Profil";
+$a->strings["Networks"] = "Netzwerke";
+$a->strings["All Networks"] = "Alle Netzwerke";
+$a->strings["Everything"] = "Alles";
+$a->strings["Categories"] = "Kategorien";
+$a->strings["End this session"] = "Diese Sitzung beenden";
+$a->strings["Sign in"] = "Anmelden";
+$a->strings["Home Page"] = "Homepage";
+$a->strings["Create an account"] = "Nutzerkonto erstellen";
+$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 site content"] = "Inhalt der Seite durchsuchen";
+$a->strings["Conversations on this site"] = "Unterhaltungen auf dieser Seite";
+$a->strings["Directory"] = "Verzeichnis";
+$a->strings["People directory"] = "Nutzerverzeichnis";
+$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["See all notifications"] = "Alle Benachrichtigungen anzeigen";
+$a->strings["Mark all system notifications seen"] = "Markiere alle Systembenachrichtigungen als gelesen";
+$a->strings["Private mail"] = "Private E-Mail";
+$a->strings["Inbox"] = "Eingang";
+$a->strings["Outbox"] = "Ausgang";
+$a->strings["Manage"] = "Verwalten";
+$a->strings["Manage other pages"] = "Andere Seiten verwalten";
+$a->strings["Delegations"] = "Delegierungen";
+$a->strings["Manage/Edit Profiles"] = "Profile Verwalten/Editieren";
+$a->strings["Manage/edit friends and contacts"] = "Freunde und Kontakte verwalten/editieren";
+$a->strings["Site setup and configuration"] = "Einstellungen der Seite und Konfiguration";
+$a->strings["Navigation"] = "Navigation";
+$a->strings["Site map"] = "Sitemap";
+$a->strings["Unknown | Not categorised"] = "Unbekannt | Nicht kategorisiert";
+$a->strings["Block immediately"] = "Sofort blockieren";
+$a->strings["Shady, spammer, self-marketer"] = "Zwielichtig, Spammer, Selbstdarsteller";
+$a->strings["Known to me, but no opinion"] = "Ist mir bekannt, hab aber keine Meinung";
+$a->strings["OK, probably harmless"] = "OK, wahrscheinlich harmlos";
+$a->strings["Reputable, has my trust"] = "Seriös, hat mein Vertrauen";
+$a->strings["Frequently"] = "immer wieder";
+$a->strings["Hourly"] = "Stündlich";
+$a->strings["Twice daily"] = "Zweimal täglich";
+$a->strings["Daily"] = "Täglich";
+$a->strings["Weekly"] = "Wöchentlich";
+$a->strings["Monthly"] = "Monatlich";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Zot!"] = "Zott";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/Chat";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$a->strings["Friendica Notification"] = "Friendica-Benachrichtigung";
+$a->strings["Thank You,"] = "Danke,";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$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] %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] Friend suggestion received"] = "[Friendica-Meldung] Kontaktvorschlag erhalten";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Du hast einen Freunde-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]Freunde-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["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 \"_\", and must also begin with a letter."] = "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\", \"_\" und \"-\") bestehen, außerdem muss er mit einem Buchstaben beginnen.";
+$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["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["Visible to everybody"] = "Für jeden sichtbar";
+$a->strings["Image/photo"] = "Bild/Foto";
+$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> schrieb den folgenden <a href=\"%s\" target=\"external-link\">Beitrag</a>";
+$a->strings["$1 wrote:"] = "$1 hat geschrieben:";
+$a->strings["Encrypted content"] = "Verschlüsselter Inhalt";
+$a->strings["Embedded content"] = "Eingebetteter Inhalt";
+$a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
+$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";
+$a->strings["edit"] = "bearbeiten";
+$a->strings["Edit group"] = "Gruppe bearbeiten";
+$a->strings["Create a new group"] = "Neue Gruppe erstellen";
+$a->strings["Contacts not in any group"] = "Kontakte in keiner Gruppe";
+$a->strings["stopped following"] = "wird nicht mehr gefolgt";
+$a->strings["Miscellaneous"] = "Verschiedenes";
+$a->strings["year"] = "Jahr";
+$a->strings["month"] = "Monat";
+$a->strings["day"] = "Tag";
+$a->strings["never"] = "nie";
+$a->strings["less than a second ago"] = "vor weniger als einer Sekunde";
+$a->strings["years"] = "Jahre";
+$a->strings["months"] = "Monate";
+$a->strings["week"] = "Woche";
+$a->strings["weeks"] = "Wochen";
+$a->strings["days"] = "Tage";
+$a->strings["hour"] = "Stunde";
+$a->strings["hours"] = "Stunden";
+$a->strings["minute"] = "Minute";
+$a->strings["minutes"] = "Minuten";
+$a->strings["second"] = "Sekunde";
+$a->strings["seconds"] = "Sekunden";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s her";
+$a->strings["view full size"] = "Volle Größe anzeigen";
index 23dca759c880448ea80c440f3d8e8c22b36ab897..93e6a332b61fed0bcfce3d6ff7f8e8c027df4881 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_eo")) {
 function string_plural_select_eo($n){
        return ($n != 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Sukcese afiŝita.";
 $a->strings["[Embedded content - reload page to view]"] = "[Enigita enhavo - reŝargu paĝon por spekti ĝin]";
index 689989b074080ef5229fc29677b9fbeba95db967..4c314016da4228ee946bee3a80567fd41ce44dcb 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_es")) {
 function string_plural_select_es($n){
        return ($n != 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "¡Publicado!";
 $a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]";
index 63e044849a2efba9fbd07a49929094728c01b2d9..8a751c78b3801396d5f4a0dccbe2990ba855f789 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_fr")) {
 function string_plural_select_fr($n){
        return ($n > 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Publication réussie.";
 $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]";
index b0dc1808c74519ad73a06b68ccd3d58e68f5635e..876946a7f1f8a17c9a2b3d1597f57051419d2d9e 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_is")) {
 function string_plural_select_is($n){
        return ($n != 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Melding tókst.";
 $a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]";
index 14f9c9f1718470801aefe75598fd291c0d404042..7e5a1123505079ee4d009f749406c1861cbd4a47 100644 (file)
@@ -1,5 +1,5 @@
 # FRIENDICA Distributed Social Network
-# Copyright (C) 2010, 2011 the Friendica Project
+# Copyright (C) 2010, 2011, 2012, 2013 the Friendica Project
 # This file is distributed under the same license as the Friendica package.
 # 
 # Translators:
@@ -13,8 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-02-21 00:00-0800\n"
-"PO-Revision-Date: 2013-02-22 16:14+0000\n"
+"POT-Creation-Date: 2013-02-28 10:13-0500\n"
+"PO-Revision-Date: 2013-03-01 16:22+0000\n"
 "Last-Translator: fabrixxm <fabrix.xm@gmail.com>\n"
 "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n"
 "MIME-Version: 1.0\n"
@@ -23,5426 +23,3803 @@ msgstr ""
 "Language: it\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
-#: ../../addon.old/altpager/altpager.php:46
-#: ../../addon/altpager/altpager.php:46
-msgid "Altpager settings updated."
-msgstr "Impostazioni Altpager aggiornate."
-
-#: ../../addon.old/altpager/altpager.php:79
-#: ../../addon/altpager/altpager.php:83
-msgid "Alternate Pagination Setting"
-msgstr "Impostazioni Paginatore Alternativo"
-
-#: ../../addon.old/altpager/altpager.php:81
-#: ../../addon/altpager/altpager.php:85
-msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
-msgstr "Usa i collegamenti \"nuovi\" e \"vecchi\" al posto dei numeri di pagina?"
-
-#: ../../addon.old/altpager/altpager.php:87 ../../addon.old/bg/bg.php:90
-#: ../../addon.old/blackout/blackout.php:98
-#: ../../addon.old/blockem/blockem.php:57
-#: ../../addon.old/blogger/blogger.php:102
-#: ../../addon.old/drpost/drpost.php:110 ../../addon.old/dwpost/dwpost.php:93
-#: ../../addon.old/editplain/editplain.php:84
-#: ../../addon.old/facebook/facebook.php:619
-#: ../../addon.old/fbpost/fbpost.php:226
-#: ../../addon.old/forumlist/forumlist.php:175
-#: ../../addon.old/fromapp/fromapp.php:77
-#: ../../addon.old/fromgplus/fromgplus.php:40
-#: ../../addon.old/geonames/geonames.php:187 ../../addon.old/gnot/gnot.php:88
-#: ../../addon.old/gravatar/gravatar.php:95
-#: ../../addon.old/group_text/group_text.php:84
-#: ../../addon.old/ijpost/ijpost.php:93
-#: ../../addon.old/impressum/impressum.php:83 ../../addon.old/irc/irc.php:55
-#: ../../addon.old/jappixmini/jappixmini.php:307
-#: ../../addon.old/libertree/libertree.php:90
-#: ../../addon.old/libravatar/libravatar.php:99
-#: ../../addon.old/ljpost/ljpost.php:93 ../../addon.old/mathjax/mathjax.php:42
-#: ../../addon.old/notimeline/notimeline.php:64
-#: ../../addon.old/nsfw/nsfw.php:88
-#: ../../addon.old/numfriends/numfriends.php:85
-#: ../../addon.old/oembed.old/oembed.php:41
-#: ../../addon.old/openstreetmap/openstreetmap.php:70
-#: ../../addon.old/page/page.php:211
-#: ../../addon.old/pageheader/pageheader.php:55
-#: ../../addon.old/piwik/piwik.php:89 ../../addon.old/planets/planets.php:158
-#: ../../addon.old/posterous/posterous.php:103
-#: ../../addon.old/qcomment/qcomment.php:61
-#: ../../addon.old/randplace/randplace.php:177
-#: ../../addon.old/showmore/showmore.php:48
-#: ../../addon.old/snautofollow/snautofollow.php:64
-#: ../../addon.old/startpage/startpage.php:92
-#: ../../addon.old/statusnet/statusnet.php:278
-#: ../../addon.old/statusnet/statusnet.php:292
-#: ../../addon.old/statusnet/statusnet.php:318
-#: ../../addon.old/statusnet/statusnet.php:325
-#: ../../addon.old/statusnet/statusnet.php:353
-#: ../../addon.old/statusnet/statusnet.php:576
-#: ../../addon.old/tumblr/tumblr.php:90
-#: ../../addon.old/twitter/twitter.php:180
-#: ../../addon.old/twitter/twitter.php:209
-#: ../../addon.old/twitter/twitter.php:394
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
-#: ../../addon.old/wppost/wppost.php:110 ../../addon.old/yourls/yourls.php:76
-#: ../../addon/altpager/altpager.php:91 ../../addon/altpager/altpager.php:98
-#: ../../addon/blackout/blackout.php:99 ../../addon/blockem/blockem.php:57
-#: ../../addon/blogger/blogger.php:102 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/editplain/editplain.php:84
-#: ../../addon/facebook/facebook.php:621 ../../addon/fbpost/fbpost.php:280
-#: ../../addon/forumlist/forumlist.php:178 ../../addon/fromapp/fromapp.php:77
-#: ../../addon/fromgplus/fromgplus.php:44
-#: ../../addon/geonames/geonames.php:187 ../../addon/gnot/gnot.php:88
-#: ../../addon/gravatar/gravatar.php:95
-#: ../../addon/group_text/group_text.php:84 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/impressum/impressum.php:83 ../../addon/irc/irc.php:55
-#: ../../addon/jappixmini/jappixmini.php:307
-#: ../../addon/libertree/libertree.php:90
-#: ../../addon/libravatar/libravatar.php:99 ../../addon/ljpost/ljpost.php:93
-#: ../../addon/mathjax/mathjax.php:42 ../../addon/notimeline/notimeline.php:64
-#: ../../addon/nsfw/nsfw.php:88 ../../addon/numfriends/numfriends.php:85
-#: ../../addon/openstreetmap/openstreetmap.php:94
-#: ../../addon/page/page.php:211 ../../addon/pageheader/pageheader.php:55
-#: ../../addon/piwik/piwik.php:89 ../../addon/planets/planets.php:158
-#: ../../addon/posterous/posterous.php:103
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/randplace/randplace.php:177
-#: ../../addon/remote_permissions/remote_permissions.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:196
-#: ../../addon/showmore/showmore.php:48
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/startpage/startpage.php:92
-#: ../../addon/statusnet/statusnet.php:290
-#: ../../addon/statusnet/statusnet.php:304
-#: ../../addon/statusnet/statusnet.php:330
-#: ../../addon/statusnet/statusnet.php:337
-#: ../../addon/statusnet/statusnet.php:374
-#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
-#: ../../addon/twitter/twitter.php:191 ../../addon/twitter/twitter.php:229
-#: ../../addon/twitter/twitter.php:556
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
-#: ../../mod/profiles.php:626 ../../mod/admin.php:461 ../../mod/admin.php:728
-#: ../../mod/admin.php:865 ../../mod/admin.php:1068 ../../mod/admin.php:1155
-#: ../../mod/photos.php:1075 ../../mod/photos.php:1196
-#: ../../mod/photos.php:1498 ../../mod/photos.php:1549
-#: ../../mod/photos.php:1593 ../../mod/photos.php:1676
-#: ../../mod/contacts.php:386 ../../mod/settings.php:560
-#: ../../mod/settings.php:670 ../../mod/settings.php:739
-#: ../../mod/settings.php:811 ../../mod/settings.php:1037
-#: ../../mod/content.php:710 ../../mod/crepair.php:166 ../../mod/poke.php:199
-#: ../../mod/events.php:478 ../../mod/fsuggest.php:107 ../../mod/group.php:87
-#: ../../mod/install.php:248 ../../mod/install.php:286
-#: ../../mod/invite.php:140 ../../mod/localtime.php:45
-#: ../../mod/manage.php:110 ../../mod/message.php:335
-#: ../../mod/message.php:564 ../../mod/mood.php:137 ../../object/Item.php:604
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
-#: ../../view/theme/quattro/config.php:64
-msgid "Submit"
-msgstr "Invia"
-
-#: ../../addon.old/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr "Impostazioni Bg aggiornate."
-
-#: ../../addon.old/bg/bg.php:82
-msgid "Bg Settings"
-msgstr "Impostazioni Bg."
-
-#: ../../addon.old/bg/bg.php:84 ../../addon.old/numfriends/numfriends.php:79
-#: ../../addon/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr "Quanti contatti visualizzare nella barra laterale del profilo"
-
-#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
-msgstr "Impostazioni \"Blockem\""
-
-#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
-msgstr "Lista, separata da virgola, di indirizzi da bloccare"
-
-#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
-msgstr "Impostazioni salvate."
-
-#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
-#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr "%s bloccato - Clicca per aprire/chiudere"
-
-#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr "Sblocca autore"
-
-#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
-msgid "Block Author"
-msgstr "Blocca autore"
-
-#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
-msgid "blockem settings updated"
-msgstr "Impostazioni 'blockem' aggiornate."
-
-#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
-msgid "Post to blogger"
-msgstr "Posta su blogger"
-
-#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
-msgid "Blogger Post Settings"
-msgstr "Impostazioni post per blogger"
-
-#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
-msgstr "Abilita il plugin Blogger"
-
-#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
-msgid "Blogger username"
-msgstr "Blogger username"
-
-#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
-msgid "Blogger password"
-msgstr "Blogger password"
-
-#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
-msgid "Blogger API URL"
-msgstr "Blogger API URL"
-
-#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
-msgid "Post to Blogger by default"
-msgstr "Invia sempre a Blogger"
-
-#: ../../addon.old/blogger/blogger.php:172
-#: ../../addon.old/drpost/drpost.php:184
-#: ../../addon.old/posterous/posterous.php:189
-#: ../../addon.old/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
-#: ../../addon/posterous/posterous.php:189 ../../addon/wppost/wppost.php:201
-msgid "Post from Friendica"
-msgstr "Messaggio da Friendica"
-
-#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr "Segnala un Bug"
-
-#: ../../addon.old/communityhome/twillingham/communityhome.php:28
-#: ../../addon.old/communityhome/twillingham/communityhome.php:34
-#: ../../addon.old/communityhome/communityhome.php:28
-#: ../../addon.old/communityhome/communityhome.php:34
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
-#: ../../boot.php:1037
-msgid "Login"
-msgstr "Accedi"
-
-#: ../../addon.old/communityhome/twillingham/communityhome.php:29
-#: ../../addon.old/communityhome/communityhome.php:29
-#: ../../addon/communityhome/communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
+#: ../../object/Item.php:106 ../../mod/photos.php:1351
+#: ../../mod/content.php:643
+msgid "Private Message"
+msgstr "Messaggio privato"
 
-#: ../../addon.old/communityhome/twillingham/communityhome.php:38
-#: ../../addon.old/communityhome/communityhome.php:38
-#: ../../addon/communityhome/communityhome.php:39
-msgid "Latest users"
-msgstr "Ultimi utenti"
+#: ../../object/Item.php:110 ../../mod/editpost.php:109
+#: ../../mod/settings.php:622 ../../mod/content.php:751
+msgid "Edit"
+msgstr "Modifica"
 
-#: ../../addon.old/communityhome/twillingham/communityhome.php:81
-#: ../../addon.old/communityhome/communityhome.php:81
-#: ../../addon/communityhome/communityhome.php:84
-msgid "Most active users"
-msgstr "Utenti più attivi"
+#: ../../object/Item.php:119 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../include/conversation.php:587
+msgid "Select"
+msgstr "Seleziona"
 
-#: ../../addon.old/communityhome/communityhome.php:98
-#: ../../addon/communityhome/communityhome.php:102
-msgid "Latest photos"
-msgstr "Ultime foto"
+#: ../../object/Item.php:120 ../../mod/admin.php:755 ../../mod/photos.php:1637
+#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/content.php:462 ../../mod/content.php:764
+#: ../../include/conversation.php:588
+msgid "Delete"
+msgstr "Rimuovi"
 
-#: ../../addon.old/communityhome/communityhome.php:110
-#: ../../addon/communityhome/communityhome.php:115 ../../mod/photos.php:59
-#: ../../mod/photos.php:154 ../../mod/photos.php:1055
-#: ../../mod/photos.php:1180 ../../mod/photos.php:1203
-#: ../../mod/photos.php:1733 ../../mod/photos.php:1745
-#: ../../view/theme/diabook/theme.php:492
-msgid "Contact Photos"
-msgstr "Foto dei contatti"
+#: ../../object/Item.php:123 ../../mod/content.php:786
+msgid "save to folder"
+msgstr "salva nella cartella"
 
-#: ../../addon.old/communityhome/communityhome.php:111
-#: ../../addon/communityhome/communityhome.php:116 ../../include/user.php:325
-#: ../../include/user.php:332 ../../include/user.php:339
-#: ../../mod/photos.php:154 ../../mod/photos.php:722 ../../mod/photos.php:1180
-#: ../../mod/photos.php:1203 ../../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 ../../view/theme/diabook/theme.php:493
-msgid "Profile Photos"
-msgstr "Foto del profilo"
+#: ../../object/Item.php:202 ../../mod/content.php:776
+msgid "add star"
+msgstr "aggiungi a speciali"
 
-#: ../../addon.old/communityhome/communityhome.php:133
-#: ../../addon/communityhome/communityhome.php:141
-msgid "Latest likes"
-msgstr "Ultimi \"mi piace\""
+#: ../../object/Item.php:203 ../../mod/content.php:777
+msgid "remove star"
+msgstr "rimuovi da speciali"
 
-#: ../../addon.old/communityhome/communityhome.php:155
-#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1521
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../view/theme/diabook/theme.php:456
-msgid "event"
-msgstr "l'evento"
+#: ../../object/Item.php:204 ../../mod/content.php:778
+msgid "toggle star status"
+msgstr "Inverti stato preferito"
 
-#: ../../addon.old/communityhome/communityhome.php:158
-#: ../../addon.old/communityhome/communityhome.php:167
-#: ../../addon.old/facebook/facebook.php:1598
-#: ../../addon/communityhome/communityhome.php:166
-#: ../../addon/communityhome/communityhome.php:175
-#: ../../addon/facebook/facebook.php:1600 ../../include/conversation.php:121
-#: ../../include/conversation.php:130 ../../include/conversation.php:249
-#: ../../include/conversation.php:258 ../../include/diaspora.php:1860
-#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
-#: ../../mod/like.php:322 ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468
-msgid "status"
-msgstr "stato"
+#: ../../object/Item.php:207 ../../mod/content.php:781
+msgid "starred"
+msgstr "preferito"
 
-#: ../../addon.old/communityhome/communityhome.php:163
-#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1523
-#: ../../include/conversation.php:126 ../../include/conversation.php:254
-#: ../../include/diaspora.php:1860 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../mod/like.php:151
-#: ../../view/theme/diabook/theme.php:464
-msgid "photo"
-msgstr "foto"
+#: ../../object/Item.php:212 ../../mod/content.php:782
+msgid "add tag"
+msgstr "aggiungi tag"
 
-#: ../../addon.old/communityhome/communityhome.php:172
-#: ../../addon.old/facebook/facebook.php:1602
-#: ../../addon/communityhome/communityhome.php:180
-#: ../../addon/facebook/facebook.php:1604 ../../include/conversation.php:137
-#: ../../include/diaspora.php:1876 ../../mod/like.php:168
-#: ../../view/theme/diabook/theme.php:473
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s piace %3$s di %2$s"
+#: ../../object/Item.php:223 ../../mod/photos.php:1529
+#: ../../mod/content.php:707
+msgid "I like this (toggle)"
+msgstr "Mi piace (clic per cambiare)"
 
-#: ../../addon.old/communityhome/communityhome.php:179
-#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
-#, php-format
-msgid "Welcome to %s"
-msgstr "Benvenuto su %s"
+#: ../../object/Item.php:223 ../../mod/content.php:707
+msgid "like"
+msgstr "mi piace"
 
-#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
-#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
-msgid "Private Events"
-msgstr ""
+#: ../../object/Item.php:224 ../../mod/photos.php:1530
+#: ../../mod/content.php:708
+msgid "I don't like this (toggle)"
+msgstr "Non mi piace (clic per cambiare)"
 
-#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
-#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
-msgid "Private Addressbooks"
-msgstr ""
+#: ../../object/Item.php:224 ../../mod/content.php:708
+msgid "dislike"
+msgstr "non mi piace"
 
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
-#: ../../addon/dav/common/wdcal_backend.inc.php:92
-#: ../../addon/dav/common/wdcal_backend.inc.php:166
-#: ../../addon/dav/common/wdcal_backend.inc.php:178
-#: ../../addon/dav/common/wdcal_backend.inc.php:206
-#: ../../addon/dav/common/wdcal_backend.inc.php:214
-#: ../../addon/dav/common/wdcal_backend.inc.php:229
-msgid "No access"
-msgstr "Nessun accesso"
-
-#: ../../addon.old/dav/common/wdcal_configuration.php:148
-#: ../../addon/dav/common/wdcal_configuration.php:148
-msgid "U.S. Time Format (mm/dd/YYYY)"
-msgstr "Formato data americano (mm/gg/AAAA)"
-
-#: ../../addon.old/dav/common/wdcal_configuration.php:243
-#: ../../addon/dav/common/wdcal_configuration.php:243
-msgid "German Time Format (dd.mm.YYYY)"
-msgstr "Formato data europeo (gg.mm.AAAA)"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
-#: ../../addon/dav/common/wdcal_edit.inc.php:30
-#: ../../addon/dav/common/wdcal_edit.inc.php:738
-msgid "Could not open component for editing"
-msgstr ""
+#: ../../object/Item.php:226 ../../mod/content.php:710
+msgid "Share this"
+msgstr "Condividi questo"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
-#: ../../addon.old/dav/friendica/layout.fnk.php:143
-#: ../../addon.old/dav/friendica/layout.fnk.php:422
-#: ../../addon/dav/common/wdcal_edit.inc.php:140
-#: ../../addon/dav/friendica/layout.fnk.php:143
-#: ../../addon/dav/friendica/layout.fnk.php:422
-msgid "Go back to the calendar"
-msgstr "Torna al calendario"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
-#: ../../addon/dav/common/wdcal_edit.inc.php:144
-msgid "Event data"
-msgstr ""
+#: ../../object/Item.php:226 ../../mod/content.php:710
+msgid "share"
+msgstr "condividi"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
-#: ../../addon.old/dav/friendica/main.php:239
-#: ../../addon/dav/common/wdcal_edit.inc.php:146
-#: ../../addon/dav/friendica/main.php:239
-msgid "Calendar"
-msgstr "Calendario"
+#: ../../object/Item.php:288 ../../include/conversation.php:639
+msgid "Categories:"
+msgstr "Categorie:"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
-#: ../../addon/dav/common/wdcal_edit.inc.php:163
-msgid "Special color"
-msgstr ""
+#: ../../object/Item.php:289 ../../include/conversation.php:640
+msgid "Filed under:"
+msgstr "Archiviato in:"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
-#: ../../addon/dav/common/wdcal_edit.inc.php:169
-msgid "Subject"
-msgstr ""
+#: ../../object/Item.php:297 ../../object/Item.php:298
+#: ../../mod/content.php:495 ../../mod/content.php:875
+#: ../../mod/content.php:876 ../../include/conversation.php:627
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Vedi il profilo di %s @ %s"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
-#: ../../addon/dav/common/wdcal_edit.inc.php:173
-msgid "Starts"
-msgstr ""
+#: ../../object/Item.php:299 ../../mod/content.php:877
+msgid "to"
+msgstr "a"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
-#: ../../addon/dav/common/wdcal_edit.inc.php:178
-msgid "Ends"
-msgstr ""
+#: ../../object/Item.php:300
+msgid "via"
+msgstr "via"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
-#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
-msgid "Location"
-msgstr "Posizione"
+#: ../../object/Item.php:301 ../../mod/content.php:878
+msgid "Wall-to-Wall"
+msgstr "Da bacheca a bacheca"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
-#: ../../addon/dav/common/wdcal_edit.inc.php:185
-msgid "Description"
-msgstr "Descrizione"
+#: ../../object/Item.php:302 ../../mod/content.php:879
+msgid "via Wall-To-Wall:"
+msgstr "da bacheca a bacheca"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
-#: ../../addon/dav/common/wdcal_edit.inc.php:188
-msgid "Recurrence"
-msgstr ""
+#: ../../object/Item.php:311 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../include/conversation.php:647
+#, php-format
+msgid "%s from %s"
+msgstr "%s da %s"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
-#: ../../addon/dav/common/wdcal_edit.inc.php:190
-msgid "Frequency"
-msgstr ""
+#: ../../object/Item.php:329 ../../object/Item.php:642
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732 ../../boot.php:651
+msgid "Comment"
+msgstr "Commento"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
-#: ../../addon/dav/common/wdcal_edit.inc.php:191
-#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
-#: ../../mod/settings.php:732 ../../mod/settings.php:737
-msgid "None"
-msgstr "Nessuna"
+#: ../../object/Item.php:332 ../../mod/message.php:334
+#: ../../mod/message.php:565 ../../mod/editpost.php:124
+#: ../../mod/wallmessage.php:156 ../../mod/photos.php:1532
+#: ../../mod/content.php:522 ../../mod/content.php:906
+#: ../../include/conversation.php:664 ../../include/conversation.php:1060
+msgid "Please wait"
+msgstr "Attendi"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
-#: ../../addon/dav/common/wdcal_edit.inc.php:194
-#: ../../include/contact_selectors.php:59
-msgid "Daily"
-msgstr "Giornalmente"
+#: ../../object/Item.php:352 ../../mod/content.php:626
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d commento"
+msgstr[1] "%d commenti"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
-#: ../../addon/dav/common/wdcal_edit.inc.php:197
-#: ../../include/contact_selectors.php:60
-msgid "Weekly"
-msgstr "Settimanalmente"
+#: ../../object/Item.php:354 ../../object/Item.php:367
+#: ../../mod/content.php:628 ../../include/text.php:1560
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] "commento"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
-#: ../../addon/dav/common/wdcal_edit.inc.php:200
-#: ../../include/contact_selectors.php:61
-msgid "Monthly"
-msgstr "Mensilmente"
+#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652
+#: ../../include/contact_widgets.php:204
+msgid "show more"
+msgstr "mostra di più"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
-#: ../../addon/dav/common/wdcal_edit.inc.php:203
-msgid "Yearly"
-msgstr ""
+#: ../../object/Item.php:640 ../../mod/photos.php:1549
+#: ../../mod/photos.php:1593 ../../mod/photos.php:1676
+#: ../../mod/content.php:730
+msgid "This is you"
+msgstr "Questo sei tu"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
-#: ../../addon/dav/common/wdcal_edit.inc.php:214
-#: ../../include/datetime.php:288
-msgid "days"
-msgstr "giorni"
+#: ../../object/Item.php:643 ../../mod/fsuggest.php:107
+#: ../../mod/admin.php:478 ../../mod/admin.php:748 ../../mod/admin.php:887
+#: ../../mod/admin.php:1087 ../../mod/admin.php:1174 ../../mod/message.php:335
+#: ../../mod/message.php:564 ../../mod/events.php:478
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/contacts.php:386 ../../mod/invite.php:140
+#: ../../mod/settings.php:560 ../../mod/settings.php:670
+#: ../../mod/settings.php:739 ../../mod/settings.php:811
+#: ../../mod/settings.php:1037 ../../mod/profiles.php:626
+#: ../../mod/manage.php:110 ../../mod/poke.php:199 ../../mod/localtime.php:45
+#: ../../mod/install.php:248 ../../mod/install.php:286 ../../mod/group.php:87
+#: ../../mod/content.php:733 ../../mod/mood.php:137 ../../mod/crepair.php:166
+#: ../../view/theme/diabook/theme.php:642
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/dispy/config.php:70 ../../view/theme/quattro/config.php:64
+#: ../../view/theme/cleanzero/config.php:80
+msgid "Submit"
+msgstr "Invia"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
-#: ../../addon/dav/common/wdcal_edit.inc.php:215
-#: ../../include/datetime.php:287
-msgid "weeks"
-msgstr "settimane"
+#: ../../object/Item.php:644 ../../mod/content.php:734
+msgid "Bold"
+msgstr "Grassetto"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
-#: ../../addon/dav/common/wdcal_edit.inc.php:216
-#: ../../include/datetime.php:286
-msgid "months"
-msgstr "mesi"
+#: ../../object/Item.php:645 ../../mod/content.php:735
+msgid "Italic"
+msgstr "Corsivo"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
-#: ../../addon/dav/common/wdcal_edit.inc.php:217
-#: ../../include/datetime.php:285
-msgid "years"
-msgstr "anni"
+#: ../../object/Item.php:646 ../../mod/content.php:736
+msgid "Underline"
+msgstr "Sottolineato"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-msgid "Interval"
-msgstr ""
+#: ../../object/Item.php:647 ../../mod/content.php:737
+msgid "Quote"
+msgstr "Citazione"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-msgid "All %select% %time%"
-msgstr ""
+#: ../../object/Item.php:648 ../../mod/content.php:738
+msgid "Code"
+msgstr "Codice"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
-#: ../../addon/dav/common/wdcal_edit.inc.php:222
-#: ../../addon/dav/common/wdcal_edit.inc.php:260
-#: ../../addon/dav/common/wdcal_edit.inc.php:481
-msgid "Days"
-msgstr "Giorni"
-
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
-#: ../../addon/dav/common/wdcal_edit.inc.php:231
-#: ../../addon/dav/common/wdcal_edit.inc.php:254
-#: ../../addon/dav/common/wdcal_edit.inc.php:270
-#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:988
-msgid "Sunday"
-msgstr "Domenica"
+#: ../../object/Item.php:649 ../../mod/content.php:739
+msgid "Image"
+msgstr "Immagine"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
-#: ../../addon/dav/common/wdcal_edit.inc.php:235
-#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:988
-msgid "Monday"
-msgstr "Lunedì"
+#: ../../object/Item.php:650 ../../mod/content.php:740
+msgid "Link"
+msgstr "Link"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
-#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:988
-msgid "Tuesday"
-msgstr "Martedì"
+#: ../../object/Item.php:651 ../../mod/content.php:741
+msgid "Video"
+msgstr "Video"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
-#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:988
-msgid "Wednesday"
-msgstr "Mercoledì"
+#: ../../object/Item.php:652 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../include/conversation.php:1077
+msgid "Preview"
+msgstr "Anteprima"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
-#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:988
-msgid "Thursday"
-msgstr "Giovedì"
+#: ../../index.php:227 ../../mod/help.php:90
+msgid "Not Found"
+msgstr "Non trovato"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
-#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:988
-msgid "Friday"
-msgstr "Venerdì"
+#: ../../index.php:230 ../../mod/help.php:93
+msgid "Page not found."
+msgstr "Pagina non trovata."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
-#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:988
-msgid "Saturday"
-msgstr "Sabato"
+#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72
+msgid "Permission denied"
+msgstr "Permesso negato"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
-#: ../../addon/dav/common/wdcal_edit.inc.php:297
-msgid "First day of week:"
-msgstr ""
+#: ../../index.php:342 ../../mod/fsuggest.php:78
+#: ../../mod/notifications.php:66 ../../mod/message.php:38
+#: ../../mod/message.php:174 ../../mod/editpost.php:10
+#: ../../mod/dfrn_confirm.php:53 ../../mod/events.php:140
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/nogroup.php:25 ../../mod/wall_upload.php:66 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1044
+#: ../../mod/register.php:40 ../../mod/attach.php:33
+#: ../../mod/contacts.php:147 ../../mod/follow.php:9 ../../mod/uimport.php:23
+#: ../../mod/allfriends.php:9 ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/display.php:180
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
+#: ../../mod/wall_attach.php:55 ../../mod/suggest.php:56
+#: ../../mod/manage.php:96 ../../mod/delegate.php:6
+#: ../../mod/viewcontacts.php:22 ../../mod/notes.php:20 ../../mod/poke.php:135
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../mod/install.php:151 ../../mod/group.php:19 ../../mod/regmod.php:118
+#: ../../mod/item.php:140 ../../mod/item.php:156 ../../mod/mood.php:114
+#: ../../mod/network.php:6 ../../mod/crepair.php:115
+#: ../../include/items.php:4090
+msgid "Permission denied."
+msgstr "Permesso negato."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
-#: ../../addon/dav/common/wdcal_edit.inc.php:350
-#: ../../addon/dav/common/wdcal_edit.inc.php:373
-msgid "Day of month"
-msgstr ""
+#: ../../index.php:401
+msgid "toggle mobile"
+msgstr "commuta tema mobile"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
-#: ../../addon/dav/common/wdcal_edit.inc.php:354
-msgid "#num#th of each month"
-msgstr ""
+#: ../../mod/update_notes.php:41 ../../mod/update_profile.php:41
+#: ../../mod/update_community.php:18 ../../mod/update_network.php:22
+#: ../../mod/update_display.php:22
+msgid "[Embedded content - reload page to view]"
+msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
-#: ../../addon/dav/common/wdcal_edit.inc.php:357
-msgid "#num#th-last of each month"
-msgstr ""
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+#: ../../mod/dfrn_confirm.php:118 ../../mod/crepair.php:129
+msgid "Contact not found."
+msgstr "Contatto non trovato."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
-#: ../../addon/dav/common/wdcal_edit.inc.php:360
-msgid "#num#th #wkday# of each month"
-msgstr ""
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Suggerimento di amicizia inviato."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
-#: ../../addon/dav/common/wdcal_edit.inc.php:363
-msgid "#num#th-last #wkday# of each month"
-msgstr ""
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Suggerisci amici"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
-#: ../../addon.old/dav/friendica/layout.fnk.php:255
-#: ../../addon/dav/common/wdcal_edit.inc.php:372
-#: ../../addon/dav/friendica/layout.fnk.php:255
-msgid "Month"
-msgstr "Mese"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Suggerisci un amico a %s"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
-#: ../../addon/dav/common/wdcal_edit.inc.php:377
-msgid "#num#th of the given month"
-msgstr ""
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "Questa presentazione è già stata accettata."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
-#: ../../addon/dav/common/wdcal_edit.inc.php:380
-msgid "#num#th-last of the given month"
-msgstr ""
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
-#: ../../addon/dav/common/wdcal_edit.inc.php:383
-msgid "#num#th #wkday# of the given month"
-msgstr ""
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
-#: ../../addon/dav/common/wdcal_edit.inc.php:386
-msgid "#num#th-last #wkday# of the given month"
-msgstr ""
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
-#: ../../addon/dav/common/wdcal_edit.inc.php:413
-msgid "Repeat until"
-msgstr ""
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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 parametro richiesto non è stato trovato all'indirizzo dato"
+msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
-#: ../../addon/dav/common/wdcal_edit.inc.php:417
-msgid "Infinite"
-msgstr ""
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "Presentazione completa."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
-#: ../../addon/dav/common/wdcal_edit.inc.php:420
-msgid "Until the following date"
-msgstr ""
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Errore di comunicazione."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
-#: ../../addon/dav/common/wdcal_edit.inc.php:423
-msgid "Number of times"
-msgstr ""
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profilo non disponibile."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
-#: ../../addon/dav/common/wdcal_edit.inc.php:429
-msgid "Exceptions"
-msgstr ""
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
-#: ../../addon/dav/common/wdcal_edit.inc.php:432
-msgid "none"
-msgstr ""
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Sono state attivate le misure di protezione contro lo spam."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
-#: ../../addon/dav/common/wdcal_edit.inc.php:449
-msgid "Notification"
-msgstr "Notifica"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Gli amici sono pregati di riprovare tra 24 ore."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
-#: ../../addon/dav/common/wdcal_edit.inc.php:466
-msgid "Notify by"
-msgstr ""
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Invalid locator"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
-#: ../../addon/dav/common/wdcal_edit.inc.php:468 ../../mod/delegate.php:130
-#: ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Rimuovi"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Indirizzo email non valido."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
-#: ../../addon/dav/common/wdcal_edit.inc.php:469
-msgid "E-Mail"
-msgstr ""
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "Questo account non è stato configurato per l'email. Richiesta fallita."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
-#: ../../addon/dav/common/wdcal_edit.inc.php:470
-msgid "On Friendica / Display"
-msgstr ""
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
-#: ../../addon/dav/common/wdcal_edit.inc.php:474
-msgid "Time"
-msgstr ""
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Ti sei già presentato qui."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
-#: ../../addon/dav/common/wdcal_edit.inc.php:478
-msgid "Hours"
-msgstr "Ore"
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Pare che tu e %s siate già amici."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
-#: ../../addon/dav/common/wdcal_edit.inc.php:479
-msgid "Minutes"
-msgstr "Minuti"
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Indirizzo profilo non valido."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
-#: ../../addon/dav/common/wdcal_edit.inc.php:480
-msgid "Seconds"
-msgstr ""
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
+msgid "Disallowed profile URL."
+msgstr "Indirizzo profilo non permesso."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
-#: ../../addon/dav/common/wdcal_edit.inc.php:482
-msgid "Weeks"
-msgstr ""
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
+msgid "Failed to update contact record."
+msgstr "Errore nell'aggiornamento del contatto."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
-#: ../../addon/dav/common/wdcal_edit.inc.php:485
-msgid "before the"
-msgstr ""
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "La tua presentazione è stata inviata."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
-#: ../../addon/dav/common/wdcal_edit.inc.php:486
-msgid "start of the event"
-msgstr ""
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Accedi per confermare la presentazione."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
-#: ../../addon/dav/common/wdcal_edit.inc.php:487
-msgid "end of the event"
-msgstr ""
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
-#: ../../addon/dav/common/wdcal_edit.inc.php:492
-msgid "Add a notification"
-msgstr ""
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Nascondi questo contatto"
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
-#: ../../addon/dav/common/wdcal_edit.inc.php:687
-msgid "The event #name# will start at #date"
-msgstr ""
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Bentornato a casa %s."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
-#: ../../addon/dav/common/wdcal_edit.inc.php:696
-msgid "#name# is about to begin."
-msgstr ""
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Conferma la tua richiesta di connessione con %s."
 
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
-#: ../../addon/dav/common/wdcal_edit.inc.php:769
-msgid "Saved"
-msgstr ""
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Conferma"
 
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
-msgid "Private Calendar"
-msgstr ""
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439
+msgid "[Name Withheld]"
+msgstr "[Nome Nascosto]"
 
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
-msgid "Friendica Events: Mine"
-msgstr ""
+#: ../../mod/dfrn_request.php:761 ../../mod/photos.php:914
+#: ../../mod/search.php:89 ../../mod/display.php:19 ../../mod/community.php:18
+#: ../../mod/viewcontacts.php:17 ../../mod/directory.php:31
+msgid "Public access denied."
+msgstr "Accesso negato."
 
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
-msgid "Friendica Events: Contacts"
-msgstr ""
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
 
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
-msgid "Private Addresses"
-msgstr ""
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>Connetti un email come follower</strike> (in arrivo)"
 
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
-msgid "Friendica Contacts"
-msgstr ""
+#: ../../mod/dfrn_request.php:829
+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 "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
 
-#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-msgid "Friendica-Native events"
-msgstr ""
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Richieste di amicizia/connessione"
 
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-msgid "Friendica-Contacts"
-msgstr "Contatti Friendica"
-
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-msgid "Your Friendica-Contacts"
-msgstr "I tuoi contatti Friendica"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:99
-#: ../../addon.old/dav/friendica/layout.fnk.php:136
-#: ../../addon/dav/friendica/layout.fnk.php:99
-#: ../../addon/dav/friendica/layout.fnk.php:136
-msgid ""
-"Something went wrong when trying to import the file. Sorry. Maybe some "
-"events were imported anyway."
-msgstr ""
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:131
-#: ../../addon/dav/friendica/layout.fnk.php:131
-msgid "Something went wrong when trying to import the file. Sorry."
-msgstr ""
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Rispondi:"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:134
-#: ../../addon/dav/friendica/layout.fnk.php:134
-msgid "The ICS-File has been imported."
-msgstr ""
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s ti conosce?"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:138
-#: ../../addon/dav/friendica/layout.fnk.php:138
-msgid "No file was uploaded."
-msgstr ""
+#: ../../mod/dfrn_request.php:836 ../../mod/message.php:209
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/profiles.php:606
+#: ../../mod/suggest.php:29 ../../include/items.php:3967
+msgid "Yes"
+msgstr "Si"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:147
-#: ../../addon/dav/friendica/layout.fnk.php:147
-msgid "Import a ICS-file"
-msgstr ""
+#: ../../mod/dfrn_request.php:837 ../../mod/api.php:106
+#: ../../mod/register.php:240 ../../mod/settings.php:934
+#: ../../mod/settings.php:940 ../../mod/settings.php:948
+#: ../../mod/settings.php:952 ../../mod/settings.php:957
+#: ../../mod/settings.php:963 ../../mod/settings.php:969
+#: ../../mod/settings.php:975 ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
+#: ../../mod/profiles.php:607
+msgid "No"
+msgstr "No"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:150
-#: ../../addon/dav/friendica/layout.fnk.php:150
-msgid "ICS-File"
-msgstr ""
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Aggiungi una nota personale:"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:151
-#: ../../addon/dav/friendica/layout.fnk.php:151
-msgid "Overwrite all #num# existing events"
-msgstr ""
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:152
-#: ../../addon/dav/friendica/layout.fnk.php:152
-#: ../../mod/profile_photo.php:245
-msgid "Upload"
-msgstr "Carica"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon.old/mathjax/mathjax.php:36
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
-#: ../../mod/admin.php:824 ../../mod/admin.php:1033 ../../mod/settings.php:74
-#: ../../mod/uexport.php:48 ../../mod/newmember.php:22
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658
-msgid "Settings"
-msgstr "Impostazioni"
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
+#: ../../include/contact_selectors.php:80
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon/dav/friendica/layout.fnk.php:225 ../../include/nav.php:113
-#: ../../mod/help.php:84
-msgid "Help"
-msgstr "Guida"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:228
-#: ../../addon/dav/friendica/layout.fnk.php:228
-msgid "New event"
-msgstr ""
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "L'indirizzo della tua identità:"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:232
-#: ../../addon/dav/friendica/layout.fnk.php:232
-msgid "Today"
-msgstr "Oggi"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Invia richiesta"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:241
-#: ../../addon/dav/friendica/layout.fnk.php:241
-msgid "Day"
-msgstr ""
+#: ../../mod/dfrn_request.php:848 ../../mod/message.php:212
+#: ../../mod/editpost.php:148 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../mod/photos.php:202
+#: ../../mod/photos.php:290 ../../mod/contacts.php:249 ../../mod/tagrm.php:11
+#: ../../mod/tagrm.php:94 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/suggest.php:32
+#: ../../include/items.php:3970 ../../include/conversation.php:1080
+msgid "Cancel"
+msgstr "Annulla"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:248
-#: ../../addon/dav/friendica/layout.fnk.php:248
-msgid "Week"
-msgstr "Settimana"
+#: ../../mod/profile.php:21 ../../boot.php:1246
+msgid "Requested profile is not available."
+msgstr "Profilo richiesto non disponibile."
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:260
-#: ../../addon/dav/friendica/layout.fnk.php:260
-msgid "Reload"
-msgstr "Ricarica"
+#: ../../mod/profile.php:155 ../../mod/display.php:99
+msgid "Access to this profile has been restricted."
+msgstr "L'accesso a questo profilo è stato limitato."
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:263
-#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
-msgid "Previous"
-msgstr "Precendente"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Consigli per i Nuovi Utenti"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:266
-#: ../../addon/dav/friendica/layout.fnk.php:266 ../../mod/events.php:373
-#: ../../mod/install.php:207
-msgid "Next"
-msgstr "Successivo"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "L'identificativo della richiesta non è valido."
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:271
-#: ../../addon/dav/friendica/layout.fnk.php:271
-msgid "Date"
-msgstr "Data"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:313
-#: ../../addon/dav/friendica/layout.fnk.php:313
-msgid "Error"
-msgstr "Errore"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:354
-#: ../../addon.old/facebook/facebook.php:510
-#: ../../addon.old/facebook/facebook.php:516
-#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
-#: ../../addon/dav/friendica/layout.fnk.php:354
-#: ../../addon/facebook/facebook.php:512 ../../addon/facebook/facebook.php:518
-#: ../../addon/fbpost/fbpost.php:170 ../../addon/fbpost/fbpost.php:176
-#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4015
-#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
-#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/photos.php:133
-#: ../../mod/photos.php:1041 ../../mod/allfriends.php:9 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/register.php:40 ../../mod/regmod.php:118
-#: ../../mod/attach.php:33 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/crepair.php:115
-#: ../../mod/delegate.php:6 ../../mod/poke.php:135
-#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
-#: ../../mod/display.php:180 ../../mod/editpost.php:10
-#: ../../mod/events.php:140 ../../mod/uimport.php:23 ../../mod/follow.php:9
-#: ../../mod/fsuggest.php:78 ../../mod/group.php:19
-#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
-#: ../../mod/install.php:151 ../../mod/wall_upload.php:66
-#: ../../mod/invite.php:15 ../../mod/invite.php:101
-#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
-#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
-#: ../../mod/manage.php:96 ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/mood.php:114 ../../mod/item.php:139 ../../mod/item.php:155
-#: ../../mod/network.php:6 ../../mod/notifications.php:66
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../index.php:341
-msgid "Permission denied."
-msgstr "Permesso negato."
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Scarta"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:361
-#: ../../addon.old/facebook/facebook.php:799
-#: ../../addon.old/fbpost/fbpost.php:282
-#: ../../addon/dav/friendica/layout.fnk.php:361
-#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
-msgid "The new values have been saved."
-msgstr "I nuovi valori sono stati salvati."
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:380
-#: ../../addon/dav/friendica/layout.fnk.php:380
-msgid "The calendar has been updated."
-msgstr ""
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
+#: ../../mod/contacts.php:413
+msgid "Ignore"
+msgstr "Ignora"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:393
-#: ../../addon/dav/friendica/layout.fnk.php:393
-msgid "The new calendar has been created."
-msgstr ""
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "Sistema"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:417
-#: ../../addon/dav/friendica/layout.fnk.php:417
-msgid "The calendar has been deleted."
-msgstr ""
+#: ../../mod/notifications.php:83 ../../include/nav.php:140
+msgid "Network"
+msgstr "Rete"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:424
-#: ../../addon/dav/friendica/layout.fnk.php:424
-msgid "Calendar Settings"
-msgstr "Impostazioni Calendario"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:430
-#: ../../addon/dav/friendica/layout.fnk.php:430
-msgid "Date format"
-msgstr "Formato data"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:439
-#: ../../addon/dav/friendica/layout.fnk.php:439
-msgid "Time zone"
-msgstr "Fuso orario"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:441
-#: ../../addon.old/dav/friendica/layout.fnk.php:488
-#: ../../addon.old/facebook/facebook.php:770
-#: ../../addon.old/fbpost/fbpost.php:267
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
-#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488
-#: ../../addon/facebook/facebook.php:772 ../../addon/fbpost/fbpost.php:322
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
-#: ../../include/text.php:754 ../../mod/notes.php:63 ../../mod/filer.php:31
-msgid "Save"
-msgstr "Salva"
+#: ../../mod/notifications.php:88 ../../mod/network.php:444
+msgid "Personal"
+msgstr "Personale"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:445
-#: ../../addon/dav/friendica/layout.fnk.php:445
-msgid "Calendars"
-msgstr ""
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+#: ../../include/nav.php:104 ../../include/nav.php:143
+msgid "Home"
+msgstr "Home"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:487
-#: ../../addon/dav/friendica/layout.fnk.php:487
-msgid "Create a new calendar"
-msgstr ""
+#: ../../mod/notifications.php:98 ../../include/nav.php:149
+msgid "Introductions"
+msgstr "Presentazioni"
 
-#: ../../addon.old/dav/friendica/layout.fnk.php:496
-#: ../../addon/dav/friendica/layout.fnk.php:496
-msgid "Limitations"
-msgstr "Limitazioni"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:500
-#: ../../addon.old/libravatar/libravatar.php:82
-#: ../../addon/dav/friendica/layout.fnk.php:500
-#: ../../addon/libravatar/libravatar.php:82
-msgid "Warning"
-msgstr "Attenzione"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:504
-#: ../../addon/dav/friendica/layout.fnk.php:504
-msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
-msgstr "Sincronizzazione (iPhone, Thunderbird Lightning, Android, ...)"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:511
-#: ../../addon/dav/friendica/layout.fnk.php:511
-msgid "Synchronizing this calendar with the iPhone"
-msgstr "Sincronizzare questo calendario con l'iPhone"
-
-#: ../../addon.old/dav/friendica/layout.fnk.php:522
-#: ../../addon/dav/friendica/layout.fnk.php:522
-msgid "Synchronizing your Friendica-Contacts with the iPhone"
-msgstr "Sincronizzare i tuoi contatti di Friendica con l'iPhone"
-
-#: ../../addon.old/dav/friendica/main.php:202
-#: ../../addon/dav/friendica/main.php:202
-msgid ""
-"The current version of this plugin has not been set up correctly. Please "
-"contact the system administrator of your installation of friendica to fix "
-"this."
-msgstr ""
+#: ../../mod/notifications.php:103 ../../mod/message.php:182
+#: ../../include/nav.php:156
+msgid "Messages"
+msgstr "Messaggi"
 
-#: ../../addon.old/dav/friendica/main.php:242
-#: ../../addon/dav/friendica/main.php:242
-msgid "Extended calendar with CalDAV-support"
-msgstr "Calendario esteso con supporto CalDAV"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Mostra richieste ignorate"
 
-#: ../../addon.old/dav/friendica/main.php:279
-#: ../../addon.old/dav/friendica/main.php:280
-#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
-#: ../../include/enotify.php:28 ../../include/notifier.php:785
-msgid "noreply"
-msgstr "nessuna risposta"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Nascondi richieste ignorate"
 
-#: ../../addon.old/dav/friendica/main.php:282
-#: ../../addon/dav/friendica/main.php:282
-msgid "Notification: "
-msgstr ""
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Tipo di notifica: "
 
-#: ../../addon.old/dav/friendica/main.php:309
-#: ../../addon/dav/friendica/main.php:309
-msgid "The database tables have been installed."
-msgstr "Le tabelle del database sono state installate."
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Amico suggerito"
 
-#: ../../addon.old/dav/friendica/main.php:310
-#: ../../addon/dav/friendica/main.php:310
-msgid "An error occurred during the installation."
-msgstr "Errore durante l'installazione."
+#: ../../mod/notifications.php:152
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerito da %s"
 
-#: ../../addon.old/dav/friendica/main.php:316
-#: ../../addon/dav/friendica/main.php:316
-msgid "The database tables have been updated."
-msgstr ""
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/contacts.php:419
+msgid "Hide this contact from others"
+msgstr "Nascondi questo contatto agli altri"
 
-#: ../../addon.old/dav/friendica/main.php:317
-#: ../../addon/dav/friendica/main.php:317
-msgid "An error occurred during the update."
-msgstr ""
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "Invia una attività \"è ora amico con\""
 
-#: ../../addon.old/dav/friendica/main.php:333
-#: ../../addon/dav/friendica/main.php:333
-msgid "No system-wide settings yet."
-msgstr "Nessun settaggio di sistema ancora."
-
-#: ../../addon.old/dav/friendica/main.php:336
-#: ../../addon/dav/friendica/main.php:336
-msgid "Database status"
-msgstr "Stato database"
-
-#: ../../addon.old/dav/friendica/main.php:339
-#: ../../addon/dav/friendica/main.php:339
-msgid "Installed"
-msgstr "Installato"
-
-#: ../../addon.old/dav/friendica/main.php:343
-#: ../../addon/dav/friendica/main.php:343
-msgid "Upgrade needed"
-msgstr "Aggiornamento richiesto"
-
-#: ../../addon.old/dav/friendica/main.php:343
-#: ../../addon/dav/friendica/main.php:343
-msgid ""
-"Please back up all calendar data (the tables beginning with dav_*) before "
-"proceeding. While all calendar events <i>should</i> be converted to the new "
-"database structure, it's always safe to have a backup. Below, you can have a"
-" look at the database-queries that will be made when pressing the "
-"'update'-button."
-msgstr ""
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "se applicabile"
 
-#: ../../addon.old/dav/friendica/main.php:343
-#: ../../addon/dav/friendica/main.php:343
-msgid "Upgrade"
-msgstr ""
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:753
+msgid "Approve"
+msgstr "Approva"
 
-#: ../../addon.old/dav/friendica/main.php:346
-#: ../../addon/dav/friendica/main.php:346
-msgid "Not installed"
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Dice di conoscerti: "
 
-#: ../../addon.old/dav/friendica/main.php:346
-#: ../../addon/dav/friendica/main.php:346
-msgid "Install"
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "si"
 
-#: ../../addon.old/dav/friendica/main.php:350
-#: ../../addon/dav/friendica/main.php:350
-msgid "Unknown"
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "no"
 
-#: ../../addon.old/dav/friendica/main.php:350
-#: ../../addon/dav/friendica/main.php:350
-msgid ""
-"Something really went wrong. I cannot recover from this state automatically,"
-" sorry. Please go to the database backend, back up the data, and delete all "
-"tables beginning with 'dav_' manually. Afterwards, this installation routine"
-" should be able to reinitialize the tables automatically."
-msgstr ""
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Approva come: "
 
-#: ../../addon.old/dav/friendica/main.php:355
-#: ../../addon/dav/friendica/main.php:355
-msgid "Troubleshooting"
-msgstr ""
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Amico"
 
-#: ../../addon.old/dav/friendica/main.php:356
-#: ../../addon/dav/friendica/main.php:356
-msgid "Manual creation of the database tables:"
-msgstr ""
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "Condivisore"
 
-#: ../../addon.old/dav/friendica/main.php:357
-#: ../../addon/dav/friendica/main.php:357
-msgid "Show SQL-statements"
-msgstr ""
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan/Ammiratore"
 
-#: ../../addon.old/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr "Invia a Drupal"
-
-#: ../../addon.old/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr "Impostazioni invio a Drupal"
-
-#: ../../addon.old/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "Abilita il plugin di invio a Drupal"
-
-#: ../../addon.old/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Drupal username"
-
-#: ../../addon.old/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "Drupal password"
-
-#: ../../addon.old/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr "Tipo di post - article,page o blog"
-
-#: ../../addon.old/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "Indirizzo del sito Drupal"
-
-#: ../../addon.old/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr "Il sito Drupal usa URL puliti"
-
-#: ../../addon.old/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr "Invia a Drupal per impostazione predefinita"
-
-#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
-msgstr "Posta su Dreamwidth"
-
-#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
-msgstr "Impostazioni post Dreamwidth"
-
-#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
-msgstr "Abilita il plugin dreamwidth"
-
-#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
-msgid "dreamwidth username"
-msgstr "dreamwidth username"
-
-#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
-msgid "dreamwidth password"
-msgstr "Password dreamwidth"
-
-#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
-msgstr "Invia a dreamwidth per impostazione predefinita"
-
-#: ../../addon.old/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon/editplain/editplain.php:46
-msgid "Editplain settings updated."
-msgstr "Impostazioni 'Editplain' aggiornate."
-
-#: ../../addon.old/editplain/editplain.php:76
-#: ../../addon/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr "Impostazioni Editplain"
-
-#: ../../addon.old/editplain/editplain.php:78
-#: ../../addon/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr "Disabilita l'editor di testo visuale"
-
-#: ../../addon.old/facebook/facebook.php:495
-#: ../../addon.old/fbpost/fbpost.php:144
-#: ../../addon.old/impressum/impressum.php:78
-#: ../../addon.old/mathjax/mathjax.php:66
-#: ../../addon.old/openstreetmap/openstreetmap.php:80
-#: ../../addon.old/piwik/piwik.php:105 ../../addon.old/twitter/twitter.php:389
-#: ../../addon/altpager/altpager.php:107 ../../addon/facebook/facebook.php:497
-#: ../../addon/fbpost/fbpost.php:155 ../../addon/impressum/impressum.php:78
-#: ../../addon/mathjax/mathjax.php:66
-#: ../../addon/openstreetmap/openstreetmap.php:104
-#: ../../addon/piwik/piwik.php:105
-#: ../../addon/remote_permissions/remote_permissions.php:205
-#: ../../addon/twitter/twitter.php:550 ../../mod/settings.php:488
-msgid "Settings updated."
-msgstr "Impostazioni aggiornate."
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Richiesta amicizia/connessione"
 
-#: ../../addon.old/facebook/facebook.php:523
-#: ../../addon/facebook/facebook.php:525
-msgid "Facebook disabled"
-msgstr "Facebook disabilitato"
-
-#: ../../addon.old/facebook/facebook.php:528
-#: ../../addon/facebook/facebook.php:530
-msgid "Updating contacts"
-msgstr "Aggiornamento contatti"
-
-#: ../../addon.old/facebook/facebook.php:551
-#: ../../addon.old/fbpost/fbpost.php:192 ../../addon/facebook/facebook.php:553
-#: ../../addon/fbpost/fbpost.php:203
-msgid "Facebook API key is missing."
-msgstr "Chiave API Facebook mancante."
-
-#: ../../addon.old/facebook/facebook.php:558
-#: ../../addon/facebook/facebook.php:560
-msgid "Facebook Connect"
-msgstr "Facebook Connect"
-
-#: ../../addon.old/facebook/facebook.php:564
-#: ../../addon/facebook/facebook.php:566
-msgid "Install Facebook connector for this account."
-msgstr "Installa Facebook connector per questo account"
-
-#: ../../addon.old/facebook/facebook.php:571
-#: ../../addon/facebook/facebook.php:573
-msgid "Remove Facebook connector"
-msgstr "Rimuovi Facebook connector"
-
-#: ../../addon.old/facebook/facebook.php:576
-#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
-#: ../../addon/fbpost/fbpost.php:228
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]"
-
-#: ../../addon.old/facebook/facebook.php:583
-#: ../../addon.old/fbpost/fbpost.php:224 ../../addon/facebook/facebook.php:585
-#: ../../addon/fbpost/fbpost.php:235
-msgid "Post to Facebook by default"
-msgstr "Invia sempre a Facebook"
-
-#: ../../addon.old/facebook/facebook.php:589
-#: ../../addon/facebook/facebook.php:591
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
-msgstr ""
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Qualcuno inizia a seguirti"
 
-#: ../../addon.old/facebook/facebook.php:593
-#: ../../addon/facebook/facebook.php:595
-msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
-msgstr ""
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Nessuna presentazione."
 
-#: ../../addon.old/facebook/facebook.php:596
-#: ../../addon/facebook/facebook.php:598
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito"
-
-#: ../../addon.old/facebook/facebook.php:598
-#: ../../addon/facebook/facebook.php:600
-msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
-msgstr "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici"
-
-#: ../../addon.old/facebook/facebook.php:599
-#: ../../addon/facebook/facebook.php:601
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te."
-
-#: ../../addon.old/facebook/facebook.php:600
-#: ../../addon/facebook/facebook.php:602
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
-msgstr "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito."
-
-#: ../../addon.old/facebook/facebook.php:604
-#: ../../addon/facebook/facebook.php:606
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te"
-
-#: ../../addon.old/facebook/facebook.php:609
-#: ../../addon/facebook/facebook.php:611
-msgid "Do not import your Facebook profile wall conversations"
-msgstr "Non importare le conversazione sulla tua bacheca di Facebook"
-
-#: ../../addon.old/facebook/facebook.php:611
-#: ../../addon/facebook/facebook.php:613
-msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni."
-
-#: ../../addon.old/facebook/facebook.php:616
-#: ../../addon/facebook/facebook.php:618
-msgid "Comma separated applications to ignore"
-msgstr "Elenco separato da virgola di applicazioni da ignorare"
-
-#: ../../addon.old/facebook/facebook.php:700
-#: ../../addon/facebook/facebook.php:702
-msgid "Problems with Facebook Real-Time Updates"
-msgstr "Problemi con gli aggiornamenti in tempo reale con Facebook"
-
-#: ../../addon.old/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:1200
-#: ../../addon.old/fbpost/fbpost.php:661
-#: ../../addon.old/public_server/public_server.php:62
-#: ../../addon.old/testdrive/testdrive.php:67
-#: ../../addon/facebook/facebook.php:704
-#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67
-msgid "Administrator"
-msgstr "Amministratore"
-
-#: ../../addon.old/facebook/facebook.php:728
-#: ../../addon.old/fbpost/fbpost.php:239 ../../addon/facebook/facebook.php:730
-#: ../../addon/fbpost/fbpost.php:294 ../../include/contact_selectors.php:81
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../mod/notifications.php:220 ../../include/nav.php:150
+msgid "Notifications"
+msgstr "Notifiche"
 
-#: ../../addon.old/facebook/facebook.php:729
-#: ../../addon/facebook/facebook.php:731
-msgid "Facebook Connector Settings"
-msgstr "Impostazioni del connettore Facebook"
-
-#: ../../addon.old/facebook/facebook.php:744
-#: ../../addon.old/fbpost/fbpost.php:255 ../../addon/facebook/facebook.php:746
-#: ../../addon/fbpost/fbpost.php:310
-msgid "Facebook API Key"
-msgstr "Facebook API Key"
-
-#: ../../addon.old/facebook/facebook.php:754
-#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
-#: ../../addon/fbpost/fbpost.php:317
-msgid ""
-"Error: it appears that you have specified the App-ID and -Secret in your "
-".htconfig.php file. As long as they are specified there, they cannot be set "
-"using this form.<br><br>"
-msgstr "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"
-
-#: ../../addon.old/facebook/facebook.php:759
-#: ../../addon/facebook/facebook.php:761
-msgid ""
-"Error: the given API Key seems to be incorrect (the application access token"
-" could not be retrieved)."
-msgstr "Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."
-
-#: ../../addon.old/facebook/facebook.php:761
-#: ../../addon/facebook/facebook.php:763
-msgid "The given API Key seems to work correctly."
-msgstr "L' API Key fornita sembra funzionare correttamente."
-
-#: ../../addon.old/facebook/facebook.php:763
-#: ../../addon/facebook/facebook.php:765
-msgid ""
-"The correctness of the API Key could not be detected. Something strange's "
-"going on."
-msgstr "L' API Key non puo' essere verificata. Sta succedendo qualcosa di strano."
-
-#: ../../addon.old/facebook/facebook.php:766
-#: ../../addon.old/fbpost/fbpost.php:264 ../../addon/facebook/facebook.php:768
-#: ../../addon/fbpost/fbpost.php:319
-msgid "App-ID / API-Key"
-msgstr "App-ID / API-Key"
-
-#: ../../addon.old/facebook/facebook.php:767
-#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769
-#: ../../addon/fbpost/fbpost.php:320
-msgid "Application secret"
-msgstr "Application secret"
-
-#: ../../addon.old/facebook/facebook.php:768
-#: ../../addon/facebook/facebook.php:770
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
-msgstr "Intervallo di poling in minuti (minimo %1$s minuti)"
-
-#: ../../addon.old/facebook/facebook.php:769
-#: ../../addon/facebook/facebook.php:771
-msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
-msgstr "Sincronizza i commenti (non vengono persi commenti su Facebook, al prezzo di un maggior carico di sistema)"
-
-#: ../../addon.old/facebook/facebook.php:773
-#: ../../addon/facebook/facebook.php:775
-msgid "Real-Time Updates"
-msgstr "Aggiornamenti Real-Time"
-
-#: ../../addon.old/facebook/facebook.php:777
-#: ../../addon/facebook/facebook.php:779
-msgid "Real-Time Updates are activated."
-msgstr "Gli aggiornamenti in tempo reale sono attivi"
-
-#: ../../addon.old/facebook/facebook.php:778
-#: ../../addon/facebook/facebook.php:780
-msgid "Deactivate Real-Time Updates"
-msgstr "Disattiva gli aggiornamenti in tempo reale"
-
-#: ../../addon.old/facebook/facebook.php:780
-#: ../../addon/facebook/facebook.php:782
-msgid "Real-Time Updates not activated."
-msgstr "Gli aggiornamenti in tempo reale non sono attivi"
-
-#: ../../addon.old/facebook/facebook.php:780
-#: ../../addon/facebook/facebook.php:782
-msgid "Activate Real-Time Updates"
-msgstr "Attiva gli aggiornamenti in tempo reale"
-
-#: ../../addon.old/facebook/facebook.php:823
-#: ../../addon.old/fbpost/fbpost.php:301 ../../addon/facebook/facebook.php:825
-#: ../../addon/fbpost/fbpost.php:356
-msgid "Post to Facebook"
-msgstr "Invia a Facebook"
-
-#: ../../addon.old/facebook/facebook.php:921
-#: ../../addon.old/fbpost/fbpost.php:399 ../../addon/facebook/facebook.php:923
-#: ../../addon/fbpost/fbpost.php:487
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso."
-
-#: ../../addon.old/facebook/facebook.php:1149
-#: ../../addon.old/fbpost/fbpost.php:610
-#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
-msgid "View on Friendica"
-msgstr "Vedi su Friendica"
-
-#: ../../addon.old/facebook/facebook.php:1182
-#: ../../addon.old/fbpost/fbpost.php:643
-#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
-msgid "Facebook post failed. Queued for retry."
-msgstr "Invio a Facebook fallito. In attesa di riprovare."
-
-#: ../../addon.old/facebook/facebook.php:1222
-#: ../../addon.old/fbpost/fbpost.php:683
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
-msgstr "La tua connessione con Facebook è diventata invalida. Per favore ri-autenticati."
-
-#: ../../addon.old/facebook/facebook.php:1223
-#: ../../addon.old/fbpost/fbpost.php:684
-#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
-msgid "Facebook connection became invalid"
-msgstr "La connessione Facebook è diventata invalida."
-
-#: ../../addon.old/facebook/facebook.php:1224
-#: ../../addon.old/fbpost/fbpost.php:685
-#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr "Ciao %1$s,\n\nLa tua connesione tra il tuo account su %2$s e Facebook è diventata invalida. Questo succede di solito dopo che hai cambiato la tua password su Facebook. Per abilitare nuovamente la connessione, devi %3$sri-autenticare il connettore Facebook%4$s"
-
-#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
-msgid "Facebook Post disabled"
-msgstr ""
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
+#, php-format
+msgid "%s liked %s's post"
+msgstr "a %s è piaciuto il messaggio di %s"
 
-#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
-msgid "Facebook Post"
-msgstr ""
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
+#, php-format
+msgid "%s disliked %s's post"
+msgstr "a %s non è piaciuto il messaggio di %s"
 
-#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
-msgid "Install Facebook Post connector for this account."
-msgstr ""
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s è ora amico di %s"
 
-#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
-msgid "Remove Facebook Post connector"
-msgstr ""
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a creato un nuovo messaggio"
 
-#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
-msgid "Facebook Post Settings"
-msgstr ""
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
+#, php-format
+msgid "%s commented on %s's post"
+msgstr "%s ha commentato il messaggio di %s"
 
-#: ../../addon.old/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
-#: ../../addon.old/page/page.php:92 ../../addon/forumlist/forumlist.php:64
-#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-msgid "Forums"
-msgstr "Forum"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Nessuna nuova."
 
-#: ../../addon.old/forumlist/forumlist.php:63
-#: ../../addon/forumlist/forumlist.php:67
-msgid "show/hide"
-msgstr ""
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Notifiche dalla rete"
 
-#: ../../addon.old/forumlist/forumlist.php:77
-#: ../../addon/forumlist/forumlist.php:81
-msgid "No forum subscriptions"
-msgstr ""
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Nessuna nuova notifica di sistema."
 
-#: ../../addon.old/forumlist/forumlist.php:94
-#: ../../addon.old/page/page.php:130 ../../addon/forumlist/forumlist.php:98
-#: ../../addon/page/page.php:130
-msgid "Forums:"
-msgstr "Forum:"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Notifiche di sistema"
 
-#: ../../addon.old/forumlist/forumlist.php:131
-#: ../../addon/forumlist/forumlist.php:134
-msgid "Forumlist settings updated."
-msgstr ""
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Nessuna nuova."
 
-#: ../../addon.old/forumlist/forumlist.php:159
-#: ../../addon/forumlist/forumlist.php:162
-msgid "Forumlist Settings"
-msgstr ""
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Notifiche personali"
 
-#: ../../addon.old/forumlist/forumlist.php:161
-#: ../../addon/forumlist/forumlist.php:164
-msgid "Randomise forum list"
-msgstr ""
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Nessuna nuova."
 
-#: ../../addon.old/forumlist/forumlist.php:164
-#: ../../addon/forumlist/forumlist.php:167
-msgid "Show forums on profile page"
-msgstr ""
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Notifiche bacheca"
 
-#: ../../addon.old/forumlist/forumlist.php:167
-#: ../../addon/forumlist/forumlist.php:170
-msgid "Show forums on network page"
-msgstr ""
+#: ../../mod/like.php:151 ../../mod/tagger.php:62 ../../mod/subthread.php:87
+#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1556
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
+#: ../../include/conversation.php:254
+msgid "photo"
+msgstr "foto"
 
-#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
-msgid "Fromapp settings updated."
-msgstr ""
+#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/tagger.php:62
+#: ../../mod/subthread.php:87 ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1874
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+msgid "status"
+msgstr "stato"
 
-#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
-msgid "FromApp Settings"
-msgstr ""
+#: ../../mod/like.php:168 ../../view/theme/diabook/theme.php:473
+#: ../../include/diaspora.php:1890 ../../include/conversation.php:137
+#, php-format
+msgid "%1$s likes %2$s's %3$s"
+msgstr "A %1$s piace %3$s di %2$s"
 
-#: ../../addon.old/fromapp/fromapp.php:66 ../../addon/fromapp/fromapp.php:66
-msgid ""
-"The application name you would like to show your posts originating from."
-msgstr ""
+#: ../../mod/like.php:170 ../../include/conversation.php:140
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "A %1$s non piace %3$s di %2$s"
 
-#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
-msgid "Use this application name even if another application was used."
-msgstr ""
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
 
-#: ../../addon.old/fromgplus/fromgplus.php:29
-#: ../../addon/fromgplus/fromgplus.php:33
-msgid "Google+ Import Settings"
-msgstr ""
+#: ../../mod/openid.php:53
+msgid ""
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
 
-#: ../../addon.old/fromgplus/fromgplus.php:32
-#: ../../addon/fromgplus/fromgplus.php:36
-msgid "Enable Google+ Import"
-msgstr ""
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
+msgid "Login failed."
+msgstr "Accesso fallito."
 
-#: ../../addon.old/fromgplus/fromgplus.php:35
-#: ../../addon/fromgplus/fromgplus.php:39
-msgid "Google Account ID"
-msgstr "ID Google Account"
-
-#: ../../addon.old/fromgplus/fromgplus.php:55
-#: ../../addon/fromgplus/fromgplus.php:59
-msgid "Google+ Import Settings saved."
-msgstr "Impostazioni Importa Google+ salvate"
-
-#: ../../addon.old/geonames/geonames.php:143
-#: ../../addon/geonames/geonames.php:143
-msgid "Geonames settings updated."
-msgstr "Impostazioni di geonames aggiornate."
-
-#: ../../addon.old/geonames/geonames.php:179
-#: ../../addon/geonames/geonames.php:179
-msgid "Geonames Settings"
-msgstr "Impostazioni Geonames"
-
-#: ../../addon.old/geonames/geonames.php:181
-#: ../../addon/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
-msgstr "Abilita plugin Geonames"
-
-#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
-msgid "Gnot settings updated."
-msgstr "Impostazioni di \"Gnot\" aggiornate."
-
-#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
-msgid "Gnot Settings"
-msgstr "Impostazioni Gnot"
-
-#: ../../addon.old/gnot/gnot.php:81 ../../addon/gnot/gnot.php:81
-msgid ""
-"Allows threading of email comment notifications on Gmail and anonymising the"
-" subject line."
-msgstr "Permetti di raggruppare le notifiche dei commenti in thread su Gmail e anonimizza l'oggetto"
-
-#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
-msgid "Enable this plugin/addon?"
-msgstr "Abilita questo plugin?"
-
-#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d"
-msgstr "[Friendica:Notifica] Commento alla conversazione #%d"
-
-#: ../../addon.old/gravatar/gravatar.php:71
-#: ../../addon.old/libravatar/libravatar.php:73
-#: ../../addon/gravatar/gravatar.php:71
-#: ../../addon/libravatar/libravatar.php:73
-msgid "generic profile image"
-msgstr "immagine generica del profilo"
-
-#: ../../addon.old/gravatar/gravatar.php:72
-#: ../../addon.old/libravatar/libravatar.php:74
-#: ../../addon/gravatar/gravatar.php:72
-#: ../../addon/libravatar/libravatar.php:74
-msgid "random geometric pattern"
-msgstr "schema geometrico casuale"
-
-#: ../../addon.old/gravatar/gravatar.php:73
-#: ../../addon.old/libravatar/libravatar.php:75
-#: ../../addon/gravatar/gravatar.php:73
-#: ../../addon/libravatar/libravatar.php:75
-msgid "monster face"
-msgstr "faccia di mostro"
-
-#: ../../addon.old/gravatar/gravatar.php:74
-#: ../../addon.old/libravatar/libravatar.php:76
-#: ../../addon/gravatar/gravatar.php:74
-#: ../../addon/libravatar/libravatar.php:76
-msgid "computer generated face"
-msgstr ""
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "Testo sorgente (bbcode):"
 
-#: ../../addon.old/gravatar/gravatar.php:75
-#: ../../addon.old/libravatar/libravatar.php:77
-#: ../../addon/gravatar/gravatar.php:75
-#: ../../addon/libravatar/libravatar.php:77
-msgid "retro arcade style face"
-msgstr ""
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:"
 
-#: ../../addon.old/gravatar/gravatar.php:89
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon/libravatar/libravatar.php:93
-msgid "Information"
-msgstr "Informazione"
-
-#: ../../addon.old/gravatar/gravatar.php:89
-#: ../../addon/gravatar/gravatar.php:89
-msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr "I'addon Libravatar è installto. Disabilita l'addon Libravatar o questo addon Gravatar<br>L'addon Libravatar si appoggerà a Gravatar se non trova nulla su Libravatar."
-
-#: ../../addon.old/gravatar/gravatar.php:96
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon/libravatar/libravatar.php:100
-msgid "Default avatar image"
-msgstr ""
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "Sorgente:"
 
-#: ../../addon.old/gravatar/gravatar.php:96
-#: ../../addon/gravatar/gravatar.php:96
-msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr ""
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html (HTML grezzo):"
 
-#: ../../addon.old/gravatar/gravatar.php:97
-#: ../../addon/gravatar/gravatar.php:97
-msgid "Rating of images"
-msgstr ""
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../addon.old/gravatar/gravatar.php:97
-#: ../../addon/gravatar/gravatar.php:97
-msgid "Select the appropriate avatar rating for your site. See README"
-msgstr ""
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb: "
 
-#: ../../addon.old/gravatar/gravatar.php:111
-#: ../../addon/gravatar/gravatar.php:111
-msgid "Gravatar settings updated."
-msgstr ""
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md: "
 
-#: ../../addon.old/group_text/group_text.php:76
-#: ../../addon/group_text/group_text.php:76
-msgid "Group Text"
-msgstr ""
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html: "
 
-#: ../../addon.old/group_text/group_text.php:78
-#: ../../addon/group_text/group_text.php:78
-msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
-msgstr ""
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb: "
 
-#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr "Invia a Insanejournal"
-
-#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
-msgstr "Impostazioni Invio a InsaneJournal "
-
-#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr "Abilita il plugin Invio a InsaneJournal"
-
-#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
-msgstr "Nome utente InsaneJournal"
-
-#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr "Password InsaneJournal"
-
-#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
-msgstr "Invia sempre a InsaneJournal"
-
-#: ../../addon.old/impressum/impressum.php:37
-#: ../../addon/impressum/impressum.php:37
-msgid "Impressum"
-msgstr "Impressum"
-
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:52
-#: ../../addon.old/impressum/impressum.php:84
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:52
-#: ../../addon/impressum/impressum.php:84
-msgid "Site Owner"
-msgstr "Proprietario del sito"
-
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:88
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:88
-msgid "Email Address"
-msgstr "Indirizzo email"
-
-#: ../../addon.old/impressum/impressum.php:55
-#: ../../addon.old/impressum/impressum.php:86
-#: ../../addon/impressum/impressum.php:55
-#: ../../addon/impressum/impressum.php:86
-msgid "Postal Address"
-msgstr "Indirizzo"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb: "
 
-#: ../../addon.old/impressum/impressum.php:61
-#: ../../addon/impressum/impressum.php:61
-msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito."
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "Sorgente (formato Diaspora):"
 
-#: ../../addon.old/impressum/impressum.php:84
-#: ../../addon/impressum/impressum.php:84
-msgid "The page operators name."
-msgstr "Nome del gestore della pagina."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../addon.old/impressum/impressum.php:85
-#: ../../addon/impressum/impressum.php:85
-msgid "Site Owners Profile"
-msgstr "Profilo del proprietario del sito"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "Impostazioni del tema aggiornate."
 
-#: ../../addon.old/impressum/impressum.php:85
-#: ../../addon/impressum/impressum.php:85
-msgid "Profile address of the operator."
-msgstr "Indirizzo del profilo del gestore della pagina"
+#: ../../mod/admin.php:96 ../../mod/admin.php:477
+msgid "Site"
+msgstr "Sito"
 
-#: ../../addon.old/impressum/impressum.php:86
-#: ../../addon/impressum/impressum.php:86
-msgid "How to contact the operator via snail mail. You can use BBCode here."
-msgstr ""
+#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761
+msgid "Users"
+msgstr "Utenti"
 
-#: ../../addon.old/impressum/impressum.php:87
-#: ../../addon/impressum/impressum.php:87
-msgid "Notes"
-msgstr "Note"
+#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886
+msgid "Plugins"
+msgstr "Plugin"
 
-#: ../../addon.old/impressum/impressum.php:87
-#: ../../addon/impressum/impressum.php:87
-msgid ""
-"Additional notes that are displayed beneath the contact information. You can"
-" use BBCode here."
-msgstr ""
+#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086
+msgid "Themes"
+msgstr "Temi"
 
-#: ../../addon.old/impressum/impressum.php:88
-#: ../../addon/impressum/impressum.php:88
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
-msgstr "Come contattare l'operatore via email. (verrà mostrato offuscato)"
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "Aggiornamenti Database"
 
-#: ../../addon.old/impressum/impressum.php:89
-#: ../../addon/impressum/impressum.php:89
-msgid "Footer note"
-msgstr "Footer delle note"
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173
+msgid "Logs"
+msgstr "Log"
 
-#: ../../addon.old/impressum/impressum.php:89
-#: ../../addon/impressum/impressum.php:89
-msgid "Text for the footer. You can use BBCode here."
-msgstr ""
+#: ../../mod/admin.php:120 ../../include/nav.php:178
+msgid "Admin"
+msgstr "Amministrazione"
 
-#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
-msgstr ""
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Impostazioni Plugins"
 
-#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
-msgid "IRC Settings"
-msgstr "Impostazioni IRC"
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Utenti registrati in attesa di conferma"
 
-#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
-msgstr "Canali a cui autocollegarsi (separati da virgola)"
+#: ../../mod/admin.php:158 ../../mod/admin.php:794 ../../mod/admin.php:994
+#: ../../mod/notice.php:15 ../../mod/display.php:51 ../../mod/display.php:184
+#: ../../mod/viewsrc.php:15 ../../include/items.php:3926
+msgid "Item not found."
+msgstr "Elemento non trovato."
 
-#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
-msgstr "Canali popolari (separati da virgola)"
+#: ../../mod/admin.php:182 ../../mod/admin.php:718
+msgid "Normal Account"
+msgstr "Account normale"
 
-#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
-msgid "IRC settings saved."
-msgstr "Impostazioni IRC salvate."
+#: ../../mod/admin.php:183 ../../mod/admin.php:719
+msgid "Soapbox Account"
+msgstr "Account per comunicati e annunci"
 
-#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
-msgid "IRC Chatroom"
-msgstr "Stanza IRC"
+#: ../../mod/admin.php:184 ../../mod/admin.php:720
+msgid "Community/Celebrity Account"
+msgstr "Account per celebrità o per comunità"
 
-#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
-msgid "Popular Channels"
-msgstr "Canali Popolari"
+#: ../../mod/admin.php:185 ../../mod/admin.php:721
+msgid "Automatic Friend Account"
+msgstr "Account per amicizia automatizzato"
 
-#: ../../addon.old/jappixmini/jappixmini.php:266
-#: ../../addon/jappixmini/jappixmini.php:266
-msgid "Jappix Mini addon settings"
-msgstr ""
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "Account Blog"
 
-#: ../../addon.old/jappixmini/jappixmini.php:268
-#: ../../addon/jappixmini/jappixmini.php:268
-msgid "Activate addon"
-msgstr ""
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "Forum Privato"
 
-#: ../../addon.old/jappixmini/jappixmini.php:271
-#: ../../addon/jappixmini/jappixmini.php:271
-msgid ""
-"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
-msgstr ""
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "Code messaggi"
 
-#: ../../addon.old/jappixmini/jappixmini.php:274
-#: ../../addon/jappixmini/jappixmini.php:274
-msgid "Jabber username"
-msgstr ""
+#: ../../mod/admin.php:211 ../../mod/admin.php:476 ../../mod/admin.php:746
+#: ../../mod/admin.php:843 ../../mod/admin.php:885 ../../mod/admin.php:1051
+#: ../../mod/admin.php:1085 ../../mod/admin.php:1172
+msgid "Administration"
+msgstr "Amministrazione"
 
-#: ../../addon.old/jappixmini/jappixmini.php:277
-#: ../../addon/jappixmini/jappixmini.php:277
-msgid "Jabber server"
-msgstr ""
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Sommario"
 
-#: ../../addon.old/jappixmini/jappixmini.php:281
-#: ../../addon/jappixmini/jappixmini.php:281
-msgid "Jabber BOSH host"
-msgstr ""
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "Utenti registrati"
 
-#: ../../addon.old/jappixmini/jappixmini.php:285
-#: ../../addon/jappixmini/jappixmini.php:285
-msgid "Jabber password"
-msgstr ""
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "Registrazioni in attesa"
 
-#: ../../addon.old/jappixmini/jappixmini.php:290
-#: ../../addon/jappixmini/jappixmini.php:290
-msgid "Encrypt Jabber password with Friendica password (recommended)"
-msgstr ""
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Versione"
 
-#: ../../addon.old/jappixmini/jappixmini.php:293
-#: ../../addon/jappixmini/jappixmini.php:293
-msgid "Friendica password"
-msgstr ""
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "Plugin attivi"
 
-#: ../../addon.old/jappixmini/jappixmini.php:296
-#: ../../addon/jappixmini/jappixmini.php:296
-msgid "Approve subscription requests from Friendica contacts automatically"
-msgstr ""
+#: ../../mod/admin.php:401
+msgid "Site settings updated."
+msgstr "Impostazioni del sito aggiornate."
 
-#: ../../addon.old/jappixmini/jappixmini.php:299
-#: ../../addon/jappixmini/jappixmini.php:299
-msgid "Subscribe to Friendica contacts automatically"
-msgstr ""
+#: ../../mod/admin.php:430 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
+msgstr "Nessun tema speciale per i dispositivi mobili"
 
-#: ../../addon.old/jappixmini/jappixmini.php:302
-#: ../../addon/jappixmini/jappixmini.php:302
-msgid "Purge internal list of jabber addresses of contacts"
-msgstr ""
+#: ../../mod/admin.php:447
+msgid "Multi user instance"
+msgstr "Istanza multi utente"
 
-#: ../../addon.old/jappixmini/jappixmini.php:308
-#: ../../addon/jappixmini/jappixmini.php:308
-msgid "Add contact"
-msgstr ""
+#: ../../mod/admin.php:463
+msgid "Closed"
+msgstr "Chiusa"
 
-#: ../../addon.old/js_upload/js_upload.php:43
-#: ../../addon/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "Carica un file"
-
-#: ../../addon.old/js_upload/js_upload.php:44
-#: ../../addon/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "Trascina un file qui per caricarlo"
-
-#: ../../addon.old/js_upload/js_upload.php:45
-#: ../../addon/js_upload/js_upload.php:45 ../../include/conversation.php:1062
-#: ../../include/items.php:3897 ../../mod/photos.php:202
-#: ../../mod/photos.php:289 ../../mod/contacts.php:249
-#: ../../mod/settings.php:561 ../../mod/settings.php:587
-#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148
-#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
-#: ../../mod/message.php:212
-msgid "Cancel"
-msgstr "Annulla"
+#: ../../mod/admin.php:464
+msgid "Requires approval"
+msgstr "Richiede l'approvazione"
 
-#: ../../addon.old/js_upload/js_upload.php:46
-#: ../../addon/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "Caricamento fallito"
+#: ../../mod/admin.php:465
+msgid "Open"
+msgstr "Aperta"
 
-#: ../../addon.old/js_upload/js_upload.php:297
-#: ../../addon/js_upload/js_upload.php:303
-msgid "No files were uploaded."
-msgstr "Nessun file è stato caricato."
+#: ../../mod/admin.php:469
+msgid "No SSL policy, links will track page SSL state"
+msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
 
-#: ../../addon.old/js_upload/js_upload.php:303
-#: ../../addon/js_upload/js_upload.php:309
-msgid "Uploaded file is empty"
-msgstr "Il file caricato è vuoto"
+#: ../../mod/admin.php:470
+msgid "Force all links to use SSL"
+msgstr "Forza tutti i linki ad usare SSL"
 
-#: ../../addon.old/js_upload/js_upload.php:315
-#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:758
-msgid "Image exceeds size limit of "
-msgstr "L'immagine supera il limite di"
+#: ../../mod/admin.php:471
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
 
-#: ../../addon.old/js_upload/js_upload.php:326
-#: ../../addon/js_upload/js_upload.php:332
-msgid "File has an invalid extension, it should be one of "
-msgstr "Il file ha un'estensione non valida, dovrebbe essere una tra "
+#: ../../mod/admin.php:479 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Registrazione"
 
-#: ../../addon.old/js_upload/js_upload.php:337
-#: ../../addon/js_upload/js_upload.php:343
-msgid "Upload was cancelled, or server error encountered"
-msgstr "Il caricamento è stato cancellato, o si è verificato un errore sul server"
+#: ../../mod/admin.php:480
+msgid "File upload"
+msgstr "Caricamento file"
 
-#: ../../addon.old/libertree/libertree.php:36
-#: ../../addon/libertree/libertree.php:36
-msgid "Post to libertree"
-msgstr ""
-
-#: ../../addon.old/libertree/libertree.php:67
-#: ../../addon/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr ""
-
-#: ../../addon.old/libertree/libertree.php:69
-#: ../../addon/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr ""
+#: ../../mod/admin.php:481
+msgid "Policies"
+msgstr "Politiche"
 
-#: ../../addon.old/libertree/libertree.php:74
-#: ../../addon/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr ""
+#: ../../mod/admin.php:482
+msgid "Advanced"
+msgstr "Avanzate"
 
-#: ../../addon.old/libertree/libertree.php:79
-#: ../../addon/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr ""
+#: ../../mod/admin.php:483
+msgid "Performance"
+msgstr "Performance"
 
-#: ../../addon.old/libertree/libertree.php:84
-#: ../../addon/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr ""
+#: ../../mod/admin.php:487
+msgid "Site name"
+msgstr "Nome del sito"
 
-#: ../../addon.old/libravatar/libravatar.php:14
-#: ../../addon/libravatar/libravatar.php:14
-msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
-msgstr "Non è possibile installare Libravatar.<br>Richiede PHP >= 5.3"
+#: ../../mod/admin.php:488
+msgid "Banner/Logo"
+msgstr "Banner/Logo"
 
-#: ../../addon.old/libravatar/libravatar.php:83
-#: ../../addon/libravatar/libravatar.php:83
-#, php-format
-msgid "Your PHP version %s is lower than the required PHP >= 5.3."
-msgstr "La tua versione %s è minore della richiesta PHP >= 5.3."
+#: ../../mod/admin.php:489
+msgid "System language"
+msgstr "Lingua di sistema"
 
-#: ../../addon.old/libravatar/libravatar.php:84
-#: ../../addon/libravatar/libravatar.php:84
-msgid "This addon is not functional on your server."
-msgstr "Questo addon non è funzionante sul tuo server."
+#: ../../mod/admin.php:490
+msgid "System theme"
+msgstr "Tema di sistema"
 
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon/libravatar/libravatar.php:93
+#: ../../mod/admin.php:490
 msgid ""
-"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
-"Libravatar addon will fall back to Gravatar if nothing was found at "
-"Libravatar."
-msgstr "L'addon Gravatar è installato. Disabilita l'addon Gravatar.<br>\nL'addon Libravatar si appoggerà a Gravatar se non trova nulla su Libravatar."
-
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon/libravatar/libravatar.php:100
-msgid "Select default avatar image if none was found. See README"
-msgstr "Seleziona l'immagine di default se non viene  trovato niente. Vedi README"
-
-#: ../../addon.old/libravatar/libravatar.php:112
-#: ../../addon/libravatar/libravatar.php:112
-msgid "Libravatar settings updated."
-msgstr "Impostazioni Libravatar aggiornate."
-
-#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
-msgstr "Posta su LiveJournal"
-
-#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
-msgstr "Impostazioni post LiveJournal"
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
+msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>"
 
-#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
-msgstr "Abilita il plugin LiveJournal"
+#: ../../mod/admin.php:491
+msgid "Mobile system theme"
+msgstr "Tema mobile di sistema"
 
-#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
-msgid "LiveJournal username"
-msgstr "LiveJournal username"
+#: ../../mod/admin.php:491
+msgid "Theme for mobile devices"
+msgstr "Tema per dispositivi mobili"
 
-#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
-msgid "LiveJournal password"
-msgstr "LiveJournal password"
+#: ../../mod/admin.php:492
+msgid "SSL link policy"
+msgstr "Gestione link SSL"
 
-#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
-msgstr "Posta su LiveJournal di default"
+#: ../../mod/admin.php:492
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "Determina se i link generati devono essere forzati a usare SSL"
 
-#: ../../addon.old/mathjax/mathjax.php:37 ../../addon/mathjax/mathjax.php:37
-msgid ""
-"The MathJax addon renders mathematical formulae written using the LaTeX "
-"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
-"your wall,network tab and private mail."
-msgstr ""
+#: ../../mod/admin.php:493
+msgid "'Share' element"
+msgstr "Elemento 'Share'"
 
-#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr ""
+#: ../../mod/admin.php:493
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr "Attiva l'elemento bbcode 'share' per i post condivisi."
 
-#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
-msgid "MathJax Base URL"
-msgstr ""
+#: ../../mod/admin.php:494
+msgid "Hide help entry from navigation menu"
+msgstr "Nascondi la voce 'Guida' dal menu di navigazione"
 
-#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
+#: ../../mod/admin.php:494
 msgid ""
-"The URL for the javascript file that should be included to use MathJax. Can "
-"be either the MathJax CDN or another installation of MathJax."
-msgstr ""
-
-#: ../../addon.old/membersince/membersince.php:18
-#: ../../addon/membersince/membersince.php:18
-msgid "Member since:"
-msgstr "Membro dal:"
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente."
 
-#: ../../addon.old/morepokes/morepokes.php:19
-#: ../../addon/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr ""
+#: ../../mod/admin.php:495
+msgid "Single user instance"
+msgstr "Instanza a singolo utente"
 
-#: ../../addon.old/morepokes/morepokes.php:19
-#: ../../addon/morepokes/morepokes.php:19
-msgid "bitchslapped"
-msgstr ""
+#: ../../mod/admin.php:495
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato"
 
-#: ../../addon.old/morepokes/morepokes.php:20
-#: ../../addon/morepokes/morepokes.php:20
-msgid "shag"
-msgstr ""
+#: ../../mod/admin.php:496
+msgid "Maximum image size"
+msgstr "Massima dimensione immagini"
 
-#: ../../addon.old/morepokes/morepokes.php:20
-#: ../../addon/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr ""
+#: ../../mod/admin.php:496
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
 
-#: ../../addon.old/morepokes/morepokes.php:21
-#: ../../addon/morepokes/morepokes.php:21
-msgid "do something obscenely biological to"
-msgstr ""
+#: ../../mod/admin.php:497
+msgid "Maximum image length"
+msgstr "Massima lunghezza immagine"
 
-#: ../../addon.old/morepokes/morepokes.php:21
-#: ../../addon/morepokes/morepokes.php:21
-msgid "did something obscenely biological to"
-msgstr ""
+#: ../../mod/admin.php:497
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite."
 
-#: ../../addon.old/morepokes/morepokes.php:22
-#: ../../addon/morepokes/morepokes.php:22
-msgid "point out the poke feature to"
-msgstr ""
+#: ../../mod/admin.php:498
+msgid "JPEG image quality"
+msgstr "Qualità immagini JPEG"
 
-#: ../../addon.old/morepokes/morepokes.php:22
-#: ../../addon/morepokes/morepokes.php:22
-msgid "pointed out the poke feature to"
-msgstr ""
+#: ../../mod/admin.php:498
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena."
 
-#: ../../addon.old/morepokes/morepokes.php:23
-#: ../../addon/morepokes/morepokes.php:23
-msgid "declare undying love for"
-msgstr ""
+#: ../../mod/admin.php:500
+msgid "Register policy"
+msgstr "Politica di registrazione"
 
-#: ../../addon.old/morepokes/morepokes.php:23
-#: ../../addon/morepokes/morepokes.php:23
-msgid "declared undying love for"
-msgstr ""
+#: ../../mod/admin.php:501
+msgid "Maximum Daily Registrations"
+msgstr "Massime registrazioni giornaliere"
 
-#: ../../addon.old/morepokes/morepokes.php:24
-#: ../../addon/morepokes/morepokes.php:24
-msgid "patent"
-msgstr ""
+#: ../../mod/admin.php:501
+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 "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto."
 
-#: ../../addon.old/morepokes/morepokes.php:24
-#: ../../addon/morepokes/morepokes.php:24
-msgid "patented"
-msgstr ""
+#: ../../mod/admin.php:502
+msgid "Register text"
+msgstr "Testo registrazione"
 
-#: ../../addon.old/morepokes/morepokes.php:25
-#: ../../addon/morepokes/morepokes.php:25
-msgid "stroke beard"
-msgstr ""
+#: ../../mod/admin.php:502
+msgid "Will be displayed prominently on the registration page."
+msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
 
-#: ../../addon.old/morepokes/morepokes.php:25
-#: ../../addon/morepokes/morepokes.php:25
-msgid "stroked their beard at"
-msgstr ""
+#: ../../mod/admin.php:503
+msgid "Accounts abandoned after x days"
+msgstr "Account abbandonati dopo x giorni"
 
-#: ../../addon.old/morepokes/morepokes.php:26
-#: ../../addon/morepokes/morepokes.php:26
+#: ../../mod/admin.php:503
 msgid ""
-"bemoan the declining standards of modern secondary and tertiary education to"
-msgstr ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
+
+#: ../../mod/admin.php:504
+msgid "Allowed friend domains"
+msgstr "Domini amici consentiti"
 
-#: ../../addon.old/morepokes/morepokes.php:26
-#: ../../addon/morepokes/morepokes.php:26
+#: ../../mod/admin.php:504
 msgid ""
-"bemoans the declining standards of modern secondary and tertiary education "
-"to"
-msgstr ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: ../../addon.old/morepokes/morepokes.php:27
-#: ../../addon/morepokes/morepokes.php:27
-msgid "hug"
-msgstr "abbraccia"
-
-#: ../../addon.old/morepokes/morepokes.php:27
-#: ../../addon/morepokes/morepokes.php:27
-msgid "hugged"
-msgstr "ha abbracciato"
-
-#: ../../addon.old/morepokes/morepokes.php:28
-#: ../../addon/morepokes/morepokes.php:28
-msgid "kiss"
-msgstr "bacia"
-
-#: ../../addon.old/morepokes/morepokes.php:28
-#: ../../addon/morepokes/morepokes.php:28
-msgid "kissed"
-msgstr "ha baciato"
-
-#: ../../addon.old/morepokes/morepokes.php:29
-#: ../../addon/morepokes/morepokes.php:29
-msgid "raise eyebrows at"
-msgstr "solleva un sopracciglio a"
-
-#: ../../addon.old/morepokes/morepokes.php:29
-#: ../../addon/morepokes/morepokes.php:29
-msgid "raised their eyebrows at"
-msgstr "ha sollevato un sopracciglio a"
-
-#: ../../addon.old/morepokes/morepokes.php:30
-#: ../../addon/morepokes/morepokes.php:30
-msgid "insult"
-msgstr "insulta"
-
-#: ../../addon.old/morepokes/morepokes.php:30
-#: ../../addon/morepokes/morepokes.php:30
-msgid "insulted"
-msgstr "ha insultato"
-
-#: ../../addon.old/morepokes/morepokes.php:31
-#: ../../addon/morepokes/morepokes.php:31
-msgid "praise"
-msgstr "prega"
-
-#: ../../addon.old/morepokes/morepokes.php:31
-#: ../../addon/morepokes/morepokes.php:31
-msgid "praised"
-msgstr "ha pregato"
-
-#: ../../addon.old/morepokes/morepokes.php:32
-#: ../../addon/morepokes/morepokes.php:32
-msgid "be dubious of"
-msgstr "è dubbioso di"
-
-#: ../../addon.old/morepokes/morepokes.php:32
-#: ../../addon/morepokes/morepokes.php:32
-msgid "was dubious of"
-msgstr ""
+#: ../../mod/admin.php:505
+msgid "Allowed email domains"
+msgstr "Domini email consentiti"
 
-#: ../../addon.old/morepokes/morepokes.php:33
-#: ../../addon/morepokes/morepokes.php:33
-msgid "eat"
-msgstr "mangia"
+#: ../../mod/admin.php:505
+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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
 
-#: ../../addon.old/morepokes/morepokes.php:33
-#: ../../addon/morepokes/morepokes.php:33
-msgid "ate"
-msgstr "ha mangiato"
+#: ../../mod/admin.php:506
+msgid "Block public"
+msgstr "Blocca pagine pubbliche"
 
-#: ../../addon.old/morepokes/morepokes.php:34
-#: ../../addon/morepokes/morepokes.php:34
-msgid "giggle and fawn at"
-msgstr ""
+#: ../../mod/admin.php:506
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
 
-#: ../../addon.old/morepokes/morepokes.php:34
-#: ../../addon/morepokes/morepokes.php:34
-msgid "giggled and fawned at"
-msgstr ""
+#: ../../mod/admin.php:507
+msgid "Force publish"
+msgstr "Forza publicazione"
 
-#: ../../addon.old/morepokes/morepokes.php:35
-#: ../../addon/morepokes/morepokes.php:35
-msgid "doubt"
-msgstr ""
+#: ../../mod/admin.php:507
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
 
-#: ../../addon.old/morepokes/morepokes.php:35
-#: ../../addon/morepokes/morepokes.php:35
-msgid "doubted"
-msgstr ""
+#: ../../mod/admin.php:508
+msgid "Global directory update URL"
+msgstr "URL aggiornamento Elenco Globale"
 
-#: ../../addon.old/morepokes/morepokes.php:36
-#: ../../addon/morepokes/morepokes.php:36
-msgid "glare"
-msgstr ""
+#: ../../mod/admin.php:508
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
 
-#: ../../addon.old/morepokes/morepokes.php:36
-#: ../../addon/morepokes/morepokes.php:36
-msgid "glared at"
-msgstr ""
+#: ../../mod/admin.php:509
+msgid "Allow threaded items"
+msgstr "Permetti commenti nidificati"
 
-#: ../../addon.old/notimeline/notimeline.php:32
-#: ../../addon/notimeline/notimeline.php:32
-msgid "No Timeline settings updated."
-msgstr ""
+#: ../../mod/admin.php:509
+msgid "Allow infinite level threading for items on this site."
+msgstr "Permette un infinito livello di nidificazione dei commenti su questo sito."
 
-#: ../../addon.old/notimeline/notimeline.php:56
-#: ../../addon/notimeline/notimeline.php:56
-msgid "No Timeline Settings"
-msgstr ""
+#: ../../mod/admin.php:510
+msgid "Private posts by default for new users"
+msgstr "Post privati di default per i nuovi utenti"
 
-#: ../../addon.old/notimeline/notimeline.php:58
-#: ../../addon/notimeline/notimeline.php:58
-msgid "Disable Archive selector on profile wall"
-msgstr ""
+#: ../../mod/admin.php:510
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici."
 
-#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
-msgstr "Impostazioni per NSWF (Filtro Contenuti Generico)"
+#: ../../mod/admin.php:511
+msgid "Don't include post content in email notifications"
+msgstr "Non includere il contenuto dei post nelle notifiche via email"
 
-#: ../../addon.old/nsfw/nsfw.php:80 ../../addon/nsfw/nsfw.php:80
+#: ../../mod/admin.php:511
 msgid ""
-"This plugin looks in posts for the words/text you specify below, and "
-"collapses any content containing those keywords so it is not displayed at "
-"inappropriate times, such as sexual innuendo that may be improper in a work "
-"setting. It is polite and recommended to tag any content containing nudity "
-"with #NSFW.  This filter can also match any other word/text you specify, and"
-" can thereby be used as a general purpose content filter."
-msgstr "Questo plugin cerca nei messagi le parole/testo che inserisci qui sotto, e collassa i messaggi che li contengono, per non mostrare contenuto inappropriato nel momento sbagliato, come contenuto a sfondo sessuale che puo' essere inappropriato in un ambiente di lavoro. E' educato (e consigliato) taggare i messaggi che contengono nudità con #NSFW (Not Safe For Work: Non Sicuro Per il Lavoro). Questo filtro puo' cercare anche qualsiasi parola che inserisci, quindi puo' essere usato come filtro di contenuti generico."
+"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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy"
 
-#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
-msgid "Enable Content filter"
-msgstr "Abilita il Filtro Contenuti"
+#: ../../mod/admin.php:513
+msgid "Block multiple registrations"
+msgstr "Blocca registrazioni multiple"
 
-#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
-msgid "Comma separated list of keywords to hide"
-msgstr "Elenco separato da virgole di parole da nascondere"
+#: ../../mod/admin.php:513
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "Non permette all'utente di registrare account extra da usare come pagine."
 
-#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
-msgid "Use /expression/ to provide regular expressions"
-msgstr "Utilizza /espressione/ per inserire espressioni regolari"
+#: ../../mod/admin.php:514
+msgid "OpenID support"
+msgstr "Supporto OpenID"
 
-#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
-msgid "NSFW Settings saved."
-msgstr "Impostazioni NSFW salvate."
+#: ../../mod/admin.php:514
+msgid "OpenID support for registration and logins."
+msgstr "Supporta OpenID per la registrazione e il login"
 
-#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
-#, php-format
-msgid "%s - Click to open/close"
-msgstr "%s - Clicca per aprire / chiudere"
+#: ../../mod/admin.php:515
+msgid "Fullname check"
+msgstr "Controllo nome completo"
 
-#: ../../addon.old/numfriends/numfriends.php:46
-#: ../../addon/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
-msgstr "Impostazioni \"Numfriends' aggiornate."
+#: ../../mod/admin.php:515
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
 
-#: ../../addon.old/numfriends/numfriends.php:77
-#: ../../addon/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
-msgstr "Impostazioni Numfriends"
+#: ../../mod/admin.php:516
+msgid "UTF-8 Regular expressions"
+msgstr "Espressioni regolari UTF-8"
 
-#: ../../addon.old/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "Impostazioni OEmbed aggiornate"
+#: ../../mod/admin.php:516
+msgid "Use PHP UTF8 regular expressions"
+msgstr "Usa le espressioni regolari PHP in UTF8"
 
-#: ../../addon.old/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "Usa OEmbed per i video di YouTube"
+#: ../../mod/admin.php:517
+msgid "Show Community Page"
+msgstr "Mostra pagina Comunità"
 
-#: ../../addon.old/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL da incorporare:"
+#: ../../mod/admin.php:517
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."
 
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-#: ../../addon/openstreetmap/openstreetmap.php:95
-msgid "Tile Server URL"
-msgstr ""
+#: ../../mod/admin.php:518
+msgid "Enable OStatus support"
+msgstr "Abilita supporto OStatus"
 
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-#: ../../addon/openstreetmap/openstreetmap.php:95
+#: ../../mod/admin.php:518
 msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."
 
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-#: ../../addon/openstreetmap/openstreetmap.php:96
-msgid "Default zoom"
-msgstr "Default zoom"
+#: ../../mod/admin.php:519
+msgid "Enable Diaspora support"
+msgstr "Abilita il supporto a Diaspora"
 
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-#: ../../addon/openstreetmap/openstreetmap.php:96
-msgid "The default zoom level. (1:world, 18:highest)"
-msgstr ""
+#: ../../mod/admin.php:519
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "Fornisce compatibilità con il network Diaspora."
 
-#: ../../addon.old/page/page.php:77 ../../addon.old/page/page.php:111
-#: ../../addon.old/showmore/showmore.php:119 ../../addon/page/page.php:77
-#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../mod/content.php:606
-#: ../../object/Item.php:316 ../../boot.php:642
-msgid "show more"
-msgstr "mostra di più"
+#: ../../mod/admin.php:520
+msgid "Only allow Friendica contacts"
+msgstr "Permetti solo contatti Friendica"
 
-#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
-msgid "Page settings updated."
-msgstr ""
+#: ../../mod/admin.php:520
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
 
-#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
-msgid "Page Settings"
-msgstr ""
+#: ../../mod/admin.php:521
+msgid "Verify SSL"
+msgstr "Verifica SSL"
 
-#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
-msgid "How many forums to display on sidebar without paging"
-msgstr ""
+#: ../../mod/admin.php:521
+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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
 
-#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
-msgid "Randomise Page/Forum list"
-msgstr ""
+#: ../../mod/admin.php:522
+msgid "Proxy user"
+msgstr "Utente Proxy"
 
-#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
-msgid "Show pages/forums on profile page"
-msgstr "Mostra pagine/forum sulla pagina profilo"
+#: ../../mod/admin.php:523
+msgid "Proxy URL"
+msgstr "URL Proxy"
 
-#: ../../addon.old/pageheader/pageheader.php:50
-#: ../../addon/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr "Impostazioni \"pageheader\""
+#: ../../mod/admin.php:524
+msgid "Network timeout"
+msgstr "Timeout rete"
 
-#: ../../addon.old/pageheader/pageheader.php:68
-#: ../../addon/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
-msgstr "Impostazioni salvate."
+#: ../../mod/admin.php:524
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
 
-#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr "Questo sito è monitorato con lo strumento di analisi <a href='http://www.piwik.org'>Piwik</a>."
+#: ../../mod/admin.php:525
+msgid "Delivery interval"
+msgstr "Intervallo di invio"
 
-#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
-#, php-format
+#: ../../mod/admin.php:525
 msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr "Se non vuoi che le tue visite vengono registrate in questo modo è  possibile <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito</a> (opt-out)."
+"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 "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."
 
-#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
-msgid "Piwik Base URL"
-msgstr "Piwik Base URL"
+#: ../../mod/admin.php:526
+msgid "Poll interval"
+msgstr "Intervallo di poll"
 
-#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
+#: ../../mod/admin.php:526
 msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr "Percorso assoluto alla tua installazione di Piwik, senza il protocollo (http/https), con la barra alla fine"
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio."
 
-#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
-msgid "Site ID"
-msgstr "Site ID"
+#: ../../mod/admin.php:527
+msgid "Maximum Load Average"
+msgstr "Massimo carico medio"
 
-#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr "Mostra il link per il cookie opt-out?"
+#: ../../mod/admin.php:527
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50."
 
-#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr "Tracciamento asincrono"
+#: ../../mod/admin.php:529
+msgid "Use MySQL full text engine"
+msgstr "Usa il motore MySQL full text"
 
-#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
-msgid "Planets Settings"
-msgstr "Impostazioni Planet"
+#: ../../mod/admin.php:529
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri."
 
-#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
-msgid "Enable Planets Plugin"
-msgstr "Abilita plugin Planet"
+#: ../../mod/admin.php:530
+msgid "Path to item cache"
+msgstr "Percorso cache elementi"
 
-#: ../../addon.old/posterous/posterous.php:37
-#: ../../addon/posterous/posterous.php:37
-msgid "Post to Posterous"
-msgstr "Invia a Posterous"
+#: ../../mod/admin.php:531
+msgid "Cache duration in seconds"
+msgstr "Durata della cache in secondi"
 
-#: ../../addon.old/posterous/posterous.php:70
-#: ../../addon/posterous/posterous.php:70
-msgid "Posterous Post Settings"
-msgstr "Impostazioni di invio a Posterous"
+#: ../../mod/admin.php:531
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno)."
 
-#: ../../addon.old/posterous/posterous.php:72
-#: ../../addon/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
-msgstr "Abilita il plugin di invio a Posterous"
+#: ../../mod/admin.php:532
+msgid "Path for lock file"
+msgstr "Percorso al file di lock"
 
-#: ../../addon.old/posterous/posterous.php:77
-#: ../../addon/posterous/posterous.php:77
-msgid "Posterous login"
-msgstr "Posterous login"
+#: ../../mod/admin.php:533
+msgid "Temp path"
+msgstr "Percorso file temporanei"
 
-#: ../../addon.old/posterous/posterous.php:82
-#: ../../addon/posterous/posterous.php:82
-msgid "Posterous password"
-msgstr "Posterous password"
+#: ../../mod/admin.php:534
+msgid "Base path to installation"
+msgstr "Percorso base all'installazione"
 
-#: ../../addon.old/posterous/posterous.php:87
-#: ../../addon/posterous/posterous.php:87
-msgid "Posterous site ID"
-msgstr ""
+#: ../../mod/admin.php:552
+msgid "Update has been marked successful"
+msgstr "L'aggiornamento è stato segnato come  di successo"
 
-#: ../../addon.old/posterous/posterous.php:92
-#: ../../addon/posterous/posterous.php:92
-msgid "Posterous API token"
-msgstr ""
+#: ../../mod/admin.php:562
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema."
 
-#: ../../addon.old/posterous/posterous.php:97
-#: ../../addon/posterous/posterous.php:97
-msgid "Post to Posterous by default"
-msgstr "Invia sempre a Posterous"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "L'aggiornamento %s è stato applicato con successo"
 
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
-msgid "Lifetime of the cache (in hours)"
-msgstr ""
+#: ../../mod/admin.php:569
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
 
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
-msgid "Cache Statistics"
-msgstr ""
+#: ../../mod/admin.php:572
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "La funzione di aggiornamento %s non puo' essere trovata."
 
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
-msgid "Number of items"
-msgstr ""
+#: ../../mod/admin.php:587
+msgid "No failed updates."
+msgstr "Nessun aggiornamento fallito."
 
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
-msgid "Size of the cache"
-msgstr ""
+#: ../../mod/admin.php:591
+msgid "Failed Updates"
+msgstr "Aggiornamenti falliti"
 
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
-msgid "Delete the whole cache"
-msgstr ""
+#: ../../mod/admin.php:592
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato."
 
-#: ../../addon.old/public_server/public_server.php:126
-#: ../../addon.old/testdrive/testdrive.php:94
-#: ../../addon/public_server/public_server.php:126
-#: ../../addon/testdrive/testdrive.php:94
-#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr ""
+#: ../../mod/admin.php:593
+msgid "Mark success (if update was manually applied)"
+msgstr "Segna completato (se l'update è stato applicato manualmente)"
 
-#: ../../addon.old/public_server/public_server.php:127
-#: ../../addon/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
-msgstr ""
+#: ../../mod/admin.php:594
+msgid "Attempt to execute this update step automatically"
+msgstr "Cerco di eseguire questo aggiornamento in automatico"
 
-#: ../../addon.old/public_server/public_server.php:128
-#: ../../addon/public_server/public_server.php:128
+#: ../../mod/admin.php:619
 #, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
-msgstr ""
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s utente bloccato/sbloccato"
+msgstr[1] "%s utenti bloccati/sbloccati"
 
-#: ../../addon.old/qcomment/qcomment.php:51
-#: ../../addon/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ":-)"
-
-#: ../../addon.old/qcomment/qcomment.php:51
-#: ../../addon/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ":-("
-
-#: ../../addon.old/qcomment/qcomment.php:51
-#: ../../addon/qcomment/qcomment.php:51
-msgid "lol"
-msgstr "lol"
-
-#: ../../addon.old/qcomment/qcomment.php:54
-#: ../../addon/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr "Impostazioni commento rapido"
-
-#: ../../addon.old/qcomment/qcomment.php:56
-#: ../../addon/qcomment/qcomment.php:56
-msgid ""
-"Quick comments are found near comment boxes, sometimes hidden. Click them to"
-" provide simple replies."
-msgstr "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte."
-
-#: ../../addon.old/qcomment/qcomment.php:57
-#: ../../addon/qcomment/qcomment.php:57
-msgid "Enter quick comments, one per line"
-msgstr "Inserire un commento rapido, uno per linea"
-
-#: ../../addon.old/qcomment/qcomment.php:75
-#: ../../addon/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
-msgstr "Impostazioni commento rapido salvate."
-
-#: ../../addon.old/randplace/randplace.php:169
-#: ../../addon/randplace/randplace.php:169
-msgid "Randplace Settings"
-msgstr "Impostazioni Randplace"
-
-#: ../../addon.old/randplace/randplace.php:171
-#: ../../addon/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
-msgstr "Abilita il plugin Randplace"
-
-#: ../../addon.old/showmore/showmore.php:38
-#: ../../addon/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
-msgstr "Impostazioni \"Mostra altro\""
-
-#: ../../addon.old/showmore/showmore.php:41
-#: ../../addon/showmore/showmore.php:41
-msgid "Enable Show More"
-msgstr "Abilita \"Mostra altro\""
-
-#: ../../addon.old/showmore/showmore.php:44
-#: ../../addon/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
-msgstr "Dopo quanti caratteri tagliare il messaggio"
-
-#: ../../addon.old/showmore/showmore.php:65
-#: ../../addon/showmore/showmore.php:65
-msgid "Show More Settings saved."
-msgstr "Impostazioni \"Mostra altro\" salvate."
-
-#: ../../addon.old/snautofollow/snautofollow.php:32
-#: ../../addon/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
-msgstr ""
+#: ../../mod/admin.php:626
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s utente cancellato"
+msgstr[1] "%s utenti cancellati"
 
-#: ../../addon.old/snautofollow/snautofollow.php:56
-#: ../../addon/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
-msgstr ""
+#: ../../mod/admin.php:665
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Utente '%s' cancellato"
 
-#: ../../addon.old/snautofollow/snautofollow.php:58
-#: ../../addon/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
-msgstr ""
+#: ../../mod/admin.php:673
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Utente '%s' sbloccato"
 
-#: ../../addon.old/startpage/startpage.php:83
-#: ../../addon/startpage/startpage.php:83
-msgid "Startpage Settings"
-msgstr ""
+#: ../../mod/admin.php:673
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Utente '%s' bloccato"
 
-#: ../../addon.old/startpage/startpage.php:85
-#: ../../addon/startpage/startpage.php:85
-msgid "Home page to load after login  - leave blank for profile wall"
-msgstr ""
+#: ../../mod/admin.php:749
+msgid "select all"
+msgstr "seleziona tutti"
 
-#: ../../addon.old/startpage/startpage.php:88
-#: ../../addon/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
-msgstr ""
+#: ../../mod/admin.php:750
+msgid "User registrations waiting for confirm"
+msgstr "Richieste di registrazione in attesa di conferma"
 
-#: ../../addon.old/statusnet/statusnet.php:134
-#: ../../addon/statusnet/statusnet.php:138
-msgid "Post to StatusNet"
-msgstr "Invia a StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:176
-#: ../../addon/statusnet/statusnet.php:180
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido."
-
-#: ../../addon.old/statusnet/statusnet.php:204
-#: ../../addon/statusnet/statusnet.php:208
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito."
-
-#: ../../addon.old/statusnet/statusnet.php:232
-#: ../../addon/statusnet/statusnet.php:238
-msgid "StatusNet settings updated."
-msgstr "Impostazioni StatusNet aggiornate."
-
-#: ../../addon.old/statusnet/statusnet.php:257
-#: ../../addon/statusnet/statusnet.php:269
-msgid "StatusNet Posting Settings"
-msgstr "Impostazioni di invio a StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:271
-#: ../../addon/statusnet/statusnet.php:283
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "OAuthKeys globali di StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:272
-#: ../../addon/statusnet/statusnet.php:284
-msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
-msgstr "Esistono coppie di chiavi OAuth precofigurate per alcuni server StatusNet. Se usi uno di questi server, per favore scegli queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto)."
-
-#: ../../addon.old/statusnet/statusnet.php:280
-#: ../../addon/statusnet/statusnet.php:292
-msgid "Provide your own OAuth Credentials"
-msgstr "Fornisci le tue credenziali OAuth"
-
-#: ../../addon.old/statusnet/statusnet.php:281
-#: ../../addon/statusnet/statusnet.php:293
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendica Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendica installation at your favorited StatusNet installation."
-msgstr "Nessuna coppia di chiavi consumer trovate per StatusNet. Registra il tuo account Friendica come un client desktop nel tuo account StatusNet, copia la coppia di chiavi consumer qui e inserisci l'url base delle API.<br/>Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questo sito Friendica presso la tua installazione StatusNet preferita."
-
-#: ../../addon.old/statusnet/statusnet.php:283
-#: ../../addon/statusnet/statusnet.php:295
-msgid "OAuth Consumer Key"
-msgstr "OAuth Consumer Key"
-
-#: ../../addon.old/statusnet/statusnet.php:286
-#: ../../addon/statusnet/statusnet.php:298
-msgid "OAuth Consumer Secret"
-msgstr "OAuth Consumer Secret"
-
-#: ../../addon.old/statusnet/statusnet.php:289
-#: ../../addon/statusnet/statusnet.php:301
-msgid "Base API Path (remember the trailing /)"
-msgstr "Indirizzo di base per le API (ricorda la / alla fine)"
-
-#: ../../addon.old/statusnet/statusnet.php:310
-#: ../../addon/statusnet/statusnet.php:322
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr "Per collegare il tuo account StatusNet, clicca sul bottone per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box sottostante e poi inviare la form. Solo i tuoi messaggi <strong>pubblici</strong> saranno inviati a StatusNet."
-
-#: ../../addon.old/statusnet/statusnet.php:311
-#: ../../addon/statusnet/statusnet.php:323
-msgid "Log in with StatusNet"
-msgstr "Accedi con StatuNet"
-
-#: ../../addon.old/statusnet/statusnet.php:313
-#: ../../addon/statusnet/statusnet.php:325
-msgid "Copy the security code from StatusNet here"
-msgstr "Copia il codice di sicurezza da StatusNet qui"
-
-#: ../../addon.old/statusnet/statusnet.php:319
-#: ../../addon/statusnet/statusnet.php:331
-msgid "Cancel Connection Process"
-msgstr "Annulla il processo di connessione"
-
-#: ../../addon.old/statusnet/statusnet.php:321
-#: ../../addon/statusnet/statusnet.php:333
-msgid "Current StatusNet API is"
-msgstr "Le API StatusNet correnti sono"
-
-#: ../../addon.old/statusnet/statusnet.php:322
-#: ../../addon/statusnet/statusnet.php:334
-msgid "Cancel StatusNet Connection"
-msgstr "Annulla la connessione a StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:333
-#: ../../addon.old/twitter/twitter.php:189
-#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
-msgid "Currently connected to: "
-msgstr "Al momento connesso con:"
-
-#: ../../addon.old/statusnet/statusnet.php:334
-#: ../../addon/statusnet/statusnet.php:346
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
-
-#: ../../addon.old/statusnet/statusnet.php:336
-#: ../../addon/statusnet/statusnet.php:348
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to StatusNet will lead the visitor to a blank page "
-"informing the visitor that the access to your profile has been restricted."
-msgstr "<strong>Nota</strong>: A causa delle tue impostazioni di privacy(<em>Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?</em>) il link potenzialmente incluse nei messaggi pubblici inviati a StatusNet porterà i visitatori a una pagina bianca con una nota che li informa che l'accesso al tuo profilo è stato limitato."
-
-#: ../../addon.old/statusnet/statusnet.php:339
-#: ../../addon/statusnet/statusnet.php:351
-msgid "Allow posting to StatusNet"
-msgstr "Permetti l'invio a StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:342
-#: ../../addon/statusnet/statusnet.php:354
-msgid "Send public postings to StatusNet by default"
-msgstr "Invia sempre i messaggi pubblici a StatusNet"
-
-#: ../../addon.old/statusnet/statusnet.php:345
-#: ../../addon/statusnet/statusnet.php:366
-msgid "Send linked #-tags and @-names to StatusNet"
-msgstr ""
+#: ../../mod/admin.php:751
+msgid "Request date"
+msgstr "Data richiesta"
 
-#: ../../addon.old/statusnet/statusnet.php:350
-#: ../../addon.old/twitter/twitter.php:206
-#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
-msgid "Clear OAuth configuration"
-msgstr "Rimuovi la configurazione OAuth"
+#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Nome"
 
-#: ../../addon.old/statusnet/statusnet.php:567
-#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:470
-msgid "Site name"
-msgstr "Nome del sito"
+#: ../../mod/admin.php:751 ../../mod/admin.php:762
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86
+msgid "Email"
+msgstr "Email"
 
-#: ../../addon.old/statusnet/statusnet.php:568
-#: ../../addon/statusnet/statusnet.php:745
-msgid "API URL"
-msgstr "API URL"
+#: ../../mod/admin.php:752
+msgid "No registrations."
+msgstr "Nessuna registrazione."
 
-#: ../../addon.old/statusnet/statusnet.php:569
-#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
-#: ../../mod/settings.php:590
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../mod/admin.php:754
+msgid "Deny"
+msgstr "Nega"
 
-#: ../../addon.old/statusnet/statusnet.php:570
-#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
-#: ../../mod/settings.php:589
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../mod/admin.php:756 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Blocca"
 
-#: ../../addon.old/testdrive/testdrive.php:95
-#: ../../addon/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
-msgstr ""
+#: ../../mod/admin.php:757 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Sblocca"
 
-#: ../../addon.old/testdrive/testdrive.php:96
-#: ../../addon/testdrive/testdrive.php:96
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
-msgstr ""
+#: ../../mod/admin.php:758
+msgid "Site admin"
+msgstr "Amministrazione sito"
 
-#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Tic-Tac-Toe tridimensionale"
+#: ../../mod/admin.php:759
+msgid "Account expired"
+msgstr "Account scaduto"
 
-#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "3D Tic-Tac-Toe"
+#: ../../mod/admin.php:762
+msgid "Register date"
+msgstr "Data registrazione"
 
-#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
-msgid "New game"
-msgstr "Nuova partita"
+#: ../../mod/admin.php:762
+msgid "Last login"
+msgstr "Ultimo accesso"
 
-#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "Nuova partita con handicap"
+#: ../../mod/admin.php:762
+msgid "Last item"
+msgstr "Ultimo elemento"
 
-#: ../../addon.old/tictac/tictac.php:60 ../../addon/tictac/tictac.php:60
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente."
+#: ../../mod/admin.php:762
+msgid "Account"
+msgstr "Account"
 
-#: ../../addon.old/tictac/tictac.php:61 ../../addon/tictac/tictac.php:61
+#: ../../mod/admin.php:764
 msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr "In questo caso ci sono tre livelli. Puoi vincere mettendo tre segni in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
 
-#: ../../addon.old/tictac/tictac.php:63 ../../addon/tictac/tictac.php:63
+#: ../../mod/admin.php:765
 msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio."
-
-#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "Cominci tu..."
-
-#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "Comincio io questa volta..."
-
-#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
-msgid "You won!"
-msgstr "Hai vinto!"
+"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
+"site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
 
-#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "Stallo!"
+#: ../../mod/admin.php:806
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Plugin %s disabilitato."
 
-#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
-msgid "I won!"
-msgstr "Ho vinto!"
+#: ../../mod/admin.php:810
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Plugin %s abilitato."
 
-#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
-msgid "Post to Tumblr"
-msgstr "Pubblica su Tumblr"
+#: ../../mod/admin.php:820 ../../mod/admin.php:1023
+msgid "Disable"
+msgstr "Disabilita"
 
-#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
-msgid "Tumblr Post Settings"
-msgstr "Impostazioni di invio a Tumblr"
+#: ../../mod/admin.php:822 ../../mod/admin.php:1025
+msgid "Enable"
+msgstr "Abilita"
 
-#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
-msgid "Enable Tumblr Post Plugin"
-msgstr "Abilita Plugin Tumblr"
+#: ../../mod/admin.php:845 ../../mod/admin.php:1053
+msgid "Toggle"
+msgstr "Inverti"
 
-#: ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr "Tumblr login"
+#: ../../mod/admin.php:846 ../../mod/admin.php:1054 ../../mod/newmember.php:22
+#: ../../mod/settings.php:74 ../../mod/uexport.php:48
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
+msgid "Settings"
+msgstr "Impostazioni"
 
-#: ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr "Tumblr password"
+#: ../../mod/admin.php:853 ../../mod/admin.php:1063
+msgid "Author: "
+msgstr "Autore: "
 
-#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
-msgid "Post to Tumblr by default"
-msgstr "Pubblica su Tumblr di default"
+#: ../../mod/admin.php:854 ../../mod/admin.php:1064
+msgid "Maintainer: "
+msgstr "Manutentore: "
 
-#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
-msgid "Post to Twitter"
-msgstr "Invia a Twitter"
+#: ../../mod/admin.php:983
+msgid "No themes found."
+msgstr "Nessun tema trovato."
 
-#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
-msgid "Twitter settings updated."
-msgstr "Impostazioni di Twitter aggiornate."
+#: ../../mod/admin.php:1045
+msgid "Screenshot"
+msgstr "Anteprima"
 
-#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
-msgid "Twitter Posting Settings"
-msgstr "Impostazioni di invio a Twitter"
+#: ../../mod/admin.php:1091
+msgid "[Experimental]"
+msgstr "[Sperimentale]"
 
-#: ../../addon.old/twitter/twitter.php:153 ../../addon/twitter/twitter.php:164
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr "Nessuna coppia di chiavi per Twitter trovata. Contatta l'amministratore del sito."
+#: ../../mod/admin.php:1092
+msgid "[Unsupported]"
+msgstr "[Non supportato]"
 
-#: ../../addon.old/twitter/twitter.php:172 ../../addon/twitter/twitter.php:183
-msgid ""
-"At this Friendica instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr "Il plugin Twitter è abilitato ma non hai ancora collegato i tuoi account Friendica e Twitter. Per farlo, clicca il bottone qui sotto per ricevere un PIN da Twitter che dovrai copiare nel campo qui sotto. Solo i tuoi post <strong>pubblici</strong> saranno inviati a Twitter."
+#: ../../mod/admin.php:1119
+msgid "Log settings updated."
+msgstr "Impostazioni Log aggiornate."
 
-#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
-msgid "Log in with Twitter"
-msgstr "Accedi con Twitter"
+#: ../../mod/admin.php:1175
+msgid "Clear"
+msgstr "Pulisci"
 
-#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
-msgid "Copy the PIN from Twitter here"
-msgstr "Copia il PIN da Twitter qui"
+#: ../../mod/admin.php:1181
+msgid "Debugging"
+msgstr "Debugging"
 
-#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
+#: ../../mod/admin.php:1182
+msgid "Log file"
+msgstr "File di Log"
 
-#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203
+#: ../../mod/admin.php:1182
 msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to Twitter will lead the visitor to a blank page informing "
-"the visitor that the access to your profile has been restricted."
-msgstr "<strong>Nota</strong>: A causa delle tue impostazioni di privacy(<em>Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?</em>) il link potenzialmente incluse nei messaggi pubblici inviati a Twitter porterà i visitatori a una pagina bianca con una nota che li informa che l'accesso al tuo profilo è stato limitato."
-
-#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
-msgid "Allow posting to Twitter"
-msgstr "Permetti l'invio a Twitter"
-
-#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
-msgid "Send public postings to Twitter by default"
-msgstr "Invia sempre i messaggi pubblici a Twitter"
-
-#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
-msgid "Send linked #-tags and @-names to Twitter"
-msgstr ""
-
-#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
-msgid "Consumer key"
-msgstr "Consumer key"
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
 
-#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
-msgid "Consumer secret"
-msgstr "Consumer secret"
+#: ../../mod/admin.php:1183
+msgid "Log level"
+msgstr "Livello di Log"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
-#, php-format
-msgid ""
-"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud). See <a "
-"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
-" WebFinger</a>"
-msgstr "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
+#: ../../mod/admin.php:1232 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Aggiorna adesso"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
-#: ../../addon/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
-msgstr "Template URL (con {category})"
+#: ../../mod/admin.php:1233
+msgid "Close"
+msgstr "Chiudi"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
-msgstr "OAuth end-point"
+#: ../../mod/admin.php:1239
+msgid "FTP Host"
+msgstr "Indirizzo FTP"
 
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
-msgstr "Api"
+#: ../../mod/admin.php:1240
+msgid "FTP Path"
+msgstr "Percorso FTP"
 
-#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
-msgid "View Source"
-msgstr "Vedi sorgente"
+#: ../../mod/admin.php:1241
+msgid "FTP User"
+msgstr "Utente FTP"
 
-#: ../../addon.old/widgets/widget_friendheader.php:40
-#: ../../addon/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
-msgstr "Aggiungiti a questa lista!"
+#: ../../mod/admin.php:1242
+msgid "FTP Password"
+msgstr "Pasword FTP"
 
-#: ../../addon.old/widgets/widget_friends.php:40
-#: ../../addon/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
-msgstr "Connettiti su Friendica!"
+#: ../../mod/message.php:9 ../../include/nav.php:159
+msgid "New Message"
+msgstr "Nuovo messaggio"
 
-#: ../../addon.old/widgets/widget_like.php:58
-#: ../../addon/widgets/widget_like.php:59
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] "piace a %d persona"
-msgstr[1] "piace a %d persone"
+#: ../../mod/message.php:63 ../../mod/wallmessage.php:56
+msgid "No recipient selected."
+msgstr "Nessun destinatario selezionato."
 
-#: ../../addon.old/widgets/widget_like.php:61
-#: ../../addon/widgets/widget_like.php:62
-#, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] "non piace a %d persona"
-msgstr[1] "non piace a %d persone"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Impossibile trovare le informazioni del contatto."
 
-#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
-msgid "Generate new key"
-msgstr "Genera una nuova chiave"
+#: ../../mod/message.php:70 ../../mod/wallmessage.php:62
+msgid "Message could not be sent."
+msgstr "Il messaggio non puo' essere inviato."
 
-#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
-msgid "Widgets key"
-msgstr "Chiave Widget"
+#: ../../mod/message.php:73 ../../mod/wallmessage.php:65
+msgid "Message collection failure."
+msgstr "Errore recuperando il messaggio."
 
-#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
-msgid "Widgets available"
-msgstr "Widget disponibili"
+#: ../../mod/message.php:76 ../../mod/wallmessage.php:68
+msgid "Message sent."
+msgstr "Messaggio inviato."
 
-#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
-#: ../../mod/settings.php:646
-msgid "Plugin Settings"
-msgstr "Impostazioni plugin"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "Vuoi veramente cancellare questo messaggio?"
 
-#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr "Pubblica su Wordpress"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Messaggio eliminato."
 
-#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr "Impostazioni invio a WordPress"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Conversazione rimossa."
 
-#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr "Abilita plugin \"invia a WordPress\""
+#: ../../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:958 ../../include/conversation.php:976
+msgid "Please enter a link URL:"
+msgstr "Inserisci l'indirizzo del link:"
 
-#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr "nome utente WordPress"
+#: ../../mod/message.php:319 ../../mod/wallmessage.php:142
+msgid "Send Private Message"
+msgstr "Invia un messaggio privato"
 
-#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr "password WordPress"
+#: ../../mod/message.php:320 ../../mod/message.php:553
+#: ../../mod/wallmessage.php:144
+msgid "To:"
+msgstr "A:"
 
-#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
-msgid "WordPress API URL"
-msgstr "WordPress API URL"
+#: ../../mod/message.php:325 ../../mod/message.php:555
+#: ../../mod/wallmessage.php:145
+msgid "Subject:"
+msgstr "Oggetto:"
 
-#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
-msgid "Post to WordPress by default"
-msgstr "Pubblica su WordPress di default"
+#: ../../mod/message.php:329 ../../mod/message.php:558
+#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134
+msgid "Your message:"
+msgstr "Il tuo messaggio:"
 
-#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
-msgstr ""
+#: ../../mod/message.php:332 ../../mod/message.php:562
+#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
+#: ../../include/conversation.php:1042
+msgid "Upload photo"
+msgstr "Carica foto"
 
-#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
-msgid "Read the original post and comment stream on Friendica"
-msgstr "Leggi il messaggio originale e i commenti su Friendica"
+#: ../../mod/message.php:333 ../../mod/message.php:563
+#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
+#: ../../include/conversation.php:1046
+msgid "Insert web link"
+msgstr "Inserisci link"
 
-#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
-msgid "YourLS Settings"
-msgstr "Impostazioni YourLS"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Nessun messaggio."
 
-#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
-msgid "URL: http://"
-msgstr "URL: http://"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "Mittente sconosciuto - %s"
 
-#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
-msgid "Username:"
-msgstr "Nome utente:"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Tu e %s"
 
-#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
-msgid "Password:"
-msgstr "Password:"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s e Tu"
 
-#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
-msgid "Use SSL "
-msgstr "Usa SSL"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Elimina la conversazione"
 
-#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
-msgid "yourls Settings saved."
-msgstr "Impostazioni yourls salvate."
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D d M Y - G:i"
 
-#: ../../addon/altpager/altpager.php:99
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "Global"
-msgstr ""
-
-#: ../../addon/altpager/altpager.php:99
-msgid "Force global use of the alternate pager"
-msgstr ""
-
-#: ../../addon/altpager/altpager.php:100
-#: ../../addon/remote_permissions/remote_permissions.php:198
-msgid "Individual"
-msgstr ""
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d messaggio"
+msgstr[1] "%d messaggi"
 
-#: ../../addon/altpager/altpager.php:100
-msgid "Each user chooses whether to use the alternate pager"
-msgstr ""
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Messaggio non disponibile."
 
-#: ../../addon/fbpost/fbpost.php:239
-msgid "Suppress \"View on friendica\""
-msgstr ""
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Elimina il messaggio"
 
-#: ../../addon/fbpost/fbpost.php:243
-msgid "Mirror wall posts from facebook to friendica."
-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 "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
 
-#: ../../addon/fbpost/fbpost.php:253
-msgid "Post to page/group:"
-msgstr ""
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Invia la risposta"
 
-#: ../../addon/fbpost/fbpost.php:375
-#, php-format
-msgid "%s:"
-msgstr ""
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Oggetto non trovato"
 
-#: ../../addon/forumdirectory/forumdirectory.php:22
-msgid "Forum Directory"
-msgstr ""
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Modifica messaggio"
 
-#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/photos.php:911
-#: ../../mod/search.php:89 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
-#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
-msgid "Public access denied."
-msgstr "Accesso negato."
+#: ../../mod/editpost.php:111 ../../include/conversation.php:1043
+msgid "upload photo"
+msgstr "carica foto"
 
-#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
-#: ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Elenco globale"
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1044
+msgid "Attach file"
+msgstr "Allega file"
 
-#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
-msgid "Find on this site"
-msgstr "Cerca nel sito"
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1045
+msgid "attach file"
+msgstr "allega file"
 
-#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
-#: ../../mod/directory.php:59
-msgid "Finding: "
-msgstr "Ricerca: "
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1047
+msgid "web link"
+msgstr "link web"
 
-#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
-msgid "Site Directory"
-msgstr "Elenco del sito"
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1048
+msgid "Insert video link"
+msgstr "Inserire collegamento video"
 
-#: ../../addon/forumdirectory/forumdirectory.php:83
-#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
-#: ../../mod/directory.php:61
-msgid "Find"
-msgstr "Trova"
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1049
+msgid "video link"
+msgstr "link video"
 
-#: ../../addon/forumdirectory/forumdirectory.php:133
-#: ../../mod/profiles.php:682 ../../mod/directory.php:111
-msgid "Age: "
-msgstr "Età : "
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1050
+msgid "Insert audio link"
+msgstr "Inserisci collegamento audio"
 
-#: ../../addon/forumdirectory/forumdirectory.php:136
-#: ../../mod/directory.php:114
-msgid "Gender: "
-msgstr "Genere:"
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1051
+msgid "audio link"
+msgstr "link audio"
 
-#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
-#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1385
-msgid "Location:"
-msgstr "Posizione:"
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1052
+msgid "Set your location"
+msgstr "La tua posizione"
 
-#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
-#: ../../boot.php:1387
-msgid "Gender:"
-msgstr "Genere:"
+#: ../../mod/editpost.php:121 ../../include/conversation.php:1053
+msgid "set location"
+msgstr "posizione"
 
-#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
-#: ../../boot.php:1390
-msgid "Status:"
-msgstr "Stato:"
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1054
+msgid "Clear browser location"
+msgstr "Rimuovi la localizzazione data dal browser"
 
-#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
-#: ../../boot.php:1392
-msgid "Homepage:"
-msgstr "Homepage:"
+#: ../../mod/editpost.php:123 ../../include/conversation.php:1055
+msgid "clear location"
+msgstr "canc. pos."
 
-#: ../../addon/forumdirectory/forumdirectory.php:164
-#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
-msgid "About:"
-msgstr "Informazioni:"
+#: ../../mod/editpost.php:125 ../../include/conversation.php:1061
+msgid "Permission settings"
+msgstr "Impostazioni permessi"
 
-#: ../../addon/forumdirectory/forumdirectory.php:201
-#: ../../mod/directory.php:187
-msgid "No entries (some entries may be hidden)."
-msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
+#: ../../mod/editpost.php:133 ../../include/conversation.php:1070
+msgid "CC: email addresses"
+msgstr "CC: indirizzi email"
 
-#: ../../addon/group_text/group_text.php:46
-msgid "Group Text settings updated."
-msgstr ""
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1071
+msgid "Public post"
+msgstr "Messaggio pubblico"
 
-#: ../../addon/remote_permissions/remote_permissions.php:45
-msgid "Remote Permissions Settings"
-msgstr ""
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1057
+msgid "Set title"
+msgstr "Scegli un titolo"
 
-#: ../../addon/remote_permissions/remote_permissions.php:46
-msgid ""
-"Allow recipients of your private posts to see the other recipients of the "
-"posts"
-msgstr ""
+#: ../../mod/editpost.php:139 ../../include/conversation.php:1059
+msgid "Categories (comma-separated list)"
+msgstr "Categorie (lista separata da virgola)"
 
-#: ../../addon/remote_permissions/remote_permissions.php:58
-msgid "Remote Permissions settings updated."
-msgstr ""
+#: ../../mod/editpost.php:140 ../../include/conversation.php:1073
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Esempio: bob@example.com, mary@example.com"
 
-#: ../../addon/remote_permissions/remote_permissions.php:124
-#: ../../mod/lockview.php:48
-msgid "Visible to:"
-msgstr "Visibile a:"
+#: ../../mod/dfrn_confirm.php:62 ../../mod/profiles.php:18
+#: ../../mod/profiles.php:133 ../../mod/profiles.php:160
+#: ../../mod/profiles.php:579
+msgid "Profile not found."
+msgstr "Profilo non trovato."
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "Visible to"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata."
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "may only be a partial list"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Errore di comunicazione con l'altro sito."
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "The posts of every user on this server show the post recipients"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "La risposta dell'altro sito non può essere gestita: "
 
-#: ../../addon/remote_permissions/remote_permissions.php:198
-msgid "Each user chooses whether his/her posts show the post recipients"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Conferma completata con successo."
 
-#: ../../addon/statusnet/statusnet.php:358
-msgid ""
-"Mirror all posts from statusnet that are no replies or repeated messages"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Il sito remoto riporta: "
 
-#: ../../addon/statusnet/statusnet.php:362
-msgid "Shortening method that optimizes the post"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Problema temporaneo. Attendi e riprova."
 
-#: ../../addon/tumblr/tumblr.php:144
-msgid "You are now authenticated to tumblr."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "La presentazione ha generato un errore o è stata revocata."
 
-#: ../../addon/tumblr/tumblr.php:145
-msgid "return to the connector page"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Impossibile impostare la foto del contatto."
 
-#: ../../addon/tumblr/tumblr.php:188
-msgid "(Re-)Authenticate your tumblr page"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
+#: ../../include/conversation.php:172
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s e %2$s adesso sono amici"
 
-#: ../../addon/tumblr/tumblr.php:217
-msgid "Post to page:"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nessun utente trovato '%s'"
 
-#: ../../addon/tumblr/tumblr.php:228
-msgid "You are not authenticated to tumblr"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
 
-#: ../../addon/twitter/twitter.php:213
-msgid "Mirror all posts from twitter that are no replies or retweets"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
 
-#: ../../addon/twitter/twitter.php:217
-msgid "Shortening method that optimizes the tweet"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Il contatto non è stato trovato sul nostro sito."
 
-#: ../../addon/twitter/twitter.php:560
-msgid "Name of the Twitter Application"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
+msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
 
-#: ../../addon/twitter/twitter.php:560
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"set this to avoid mirroring postings from ~friendica back to ~friendica"
-msgstr ""
-
-#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
-#: ../../include/nav.php:77 ../../mod/profperm.php:103
-#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
-#: ../../boot.php:1847
-msgid "Profile"
-msgstr "Profilo"
-
-#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
-msgid "Full Name:"
-msgstr "Nome completo:"
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F Y"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Compleanno:"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Età:"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Connession accettata su %s"
 
-#: ../../include/profile_advanced.php:43
+#: ../../mod/dfrn_confirm.php:800
 #, php-format
-msgid "for %1$d %2$s"
-msgstr "per %1$d %2$s"
+msgid "%1$s has joined %2$s"
+msgstr "%1$s si è unito a %2$s"
 
-#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
-msgid "Sexual Preference:"
-msgstr "Preferenze sessuali:"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "Titolo e ora di inizio dell'evento sono richiesti."
 
-#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
-msgid "Hometown:"
-msgstr "Paese natale:"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l j F"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tag:"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Modifca l'evento"
 
-#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
-msgid "Political Views:"
-msgstr "Orientamento politico:"
+#: ../../mod/events.php:335 ../../include/text.php:1304
+msgid "link to source"
+msgstr "Collegamento all'originale"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religione:"
+#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
+#: ../../boot.php:1885 ../../include/nav.php:79
+msgid "Events"
+msgstr "Eventi"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Interessi:"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Crea un nuovo evento"
 
-#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
-msgid "Likes:"
-msgstr "Mi piace:"
+#: ../../mod/events.php:372
+msgid "Previous"
+msgstr "Precendente"
 
-#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
-msgid "Dislikes:"
-msgstr "Non mi piace:"
+#: ../../mod/events.php:373 ../../mod/install.php:207
+msgid "Next"
+msgstr "Successivo"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informazioni su contatti e social network:"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "ora:minuti"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Interessi musicali:"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Dettagli dell'evento"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Libri, letteratura:"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti."
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Televisione:"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "L'evento inizia:"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/danza/cultura/intrattenimento:"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Richiesto"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Amore:"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "La data/ora di fine non è definita"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Lavoro:"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "L'evento finisce:"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Scuola:"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Visualizza con il fuso orario di chi legge"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Maschio"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Descrizione:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Femmina"
+#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+msgid "Location:"
+msgstr "Posizione:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Al momento maschio"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Titolo:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Al momento femmina"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Condividi questo evento"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Prevalentemente maschio"
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
+#: ../../boot.php:1875 ../../include/nav.php:78
+msgid "Photos"
+msgstr "Foto"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Prevalentemente femmina"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "File"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transgender"
+#: ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Benvenuto su %s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Intersex"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informazioni remote sulla privacy non disponibili."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transessuale"
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Visibile a:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Ermafrodito"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Neutro"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "Impossibile controllare la tua posizione di origine."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Non specificato"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Nessun destinatario."
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Altro"
+#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Indeciso"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "Visita il profilo di %s [%s]"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Maschi"
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "Modifca contatto"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Femmine"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Contatti che non sono membri di un gruppo"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gay"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "Questo è Friendica, versione"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbica"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "in esecuzione all'indirizzo web"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Nessuna preferenza"
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Bisessuale"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Segnalazioni di bug e problemi: visita"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Autosessuale"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Astinente"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Plugin/addon/applicazioni instalate"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Vergine"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Nessun plugin/addons/applicazione installata"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Deviato"
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Rimuovi il mio account"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetish"
+#: ../../mod/removeme.php:46
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Un sacco"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Inserisci la tua password per verifica:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Asessuato"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "La dimensione dell'immagine supera il limite di %d"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Single"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Impossibile caricare l'immagine."
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Solitario"
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151 ../../mod/item.php:443
+#: ../../include/message.php:144
+msgid "Wall Photos"
+msgstr "Foto della bacheca"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Disponibile"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Caricamento immagine fallito."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Non disponibile"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizza la connessione dell'applicazione"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-msgstr ""
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr ""
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Effettua il login per continuare."
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Disponibile a un incontro"
+#: ../../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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Infedele"
+#: ../../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 ha taggato %3$s di %2$s con %4$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Sesso-dipendente"
+#: ../../mod/photos.php:51 ../../boot.php:1878
+msgid "Photo Albums"
+msgstr "Album foto"
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:279
-#: ../../include/user.php:283
-msgid "Friends"
-msgstr "Amici"
+#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
+msgid "Contact Photos"
+msgstr "Foto dei contatti"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Amici con benefici"
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Carica nuove foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Casual"
+#: ../../mod/photos.php:79 ../../mod/settings.php:23
+msgid "everybody"
+msgstr "tutti"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Impegnato"
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "I dati di questo contatto non sono disponibili"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Sposato"
+#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
+#: ../../include/user.php:325 ../../include/user.php:332
+#: ../../include/user.php:339
+msgid "Profile Photos"
+msgstr "Foto del profilo"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-msgstr ""
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album non trovato."
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partners"
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Rimuovi album"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Coinquilino"
+#: ../../mod/photos.php:197
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr ""
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Rimuovi foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Felice"
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr "Vuoi veramente cancellare questa foto?"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s è stato taggato in %2$s da %3$s"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Scambista"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "una foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Tradito"
+#: ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "L'immagine supera il limite di"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "Separato"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Il file dell'immagine è vuoto."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Instabile"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "Nessuna foto selezionata"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Divorziato"
+#: ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "Questo oggetto non è visibile a tutti."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr ""
+#: ../../mod/photos.php:1088
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili."
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Vedovo"
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Carica foto"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Incerto"
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Nome nuovo album: "
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr ""
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "o nome di un album esistente: "
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Non interessa"
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "Non creare un post per questo upload"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Chiedimelo"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Permessi"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "tolto dai seguiti"
+#: ../../mod/photos.php:1140 ../../mod/photos.php:1506
+#: ../../mod/settings.php:1070
+msgid "Show to Groups"
+msgstr "Mostra ai gruppi"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:820
-msgid "Poke"
-msgstr ""
+#: ../../mod/photos.php:1141 ../../mod/photos.php:1507
+#: ../../mod/settings.php:1071
+msgid "Show to Contacts"
+msgstr "Mostra ai contatti"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:814
-msgid "View Status"
-msgstr "Visualizza stato"
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "Foto privata"
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:815
-msgid "View Profile"
-msgstr "Visualizza profilo"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr "Foto pubblica"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:816
-msgid "View Photos"
-msgstr "Visualizza foto"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Modifica album"
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:251
-#: ../../include/conversation.php:817
-msgid "Network Posts"
-msgstr ""
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Mostra nuove foto per prime"
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:251
-#: ../../include/conversation.php:818
-msgid "Edit Contact"
-msgstr "Modifica contatti"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Mostra vecchie foto per prime"
 
-#: ../../include/Contact.php:231 ../../include/Contact.php:251
-#: ../../include/conversation.php:819
-msgid "Send PM"
-msgstr "Invia messaggio privato"
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Vedi foto"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr ""
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
 
-#: ../../include/text.php:275
-msgid "prev"
-msgstr "prec"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Foto non disponibile"
 
-#: ../../include/text.php:277
-msgid "first"
-msgstr "primo"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Vedi foto"
 
-#: ../../include/text.php:306
-msgid "last"
-msgstr "ultimo"
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Modifica foto"
 
-#: ../../include/text.php:309
-msgid "next"
-msgstr "succ"
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Usa come foto del profilo"
 
-#: ../../include/text.php:327
-msgid "newer"
-msgstr "nuovi"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Vedi dimensione intera"
 
-#: ../../include/text.php:331
-msgid "older"
-msgstr "vecchi"
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Tag: "
 
-#: ../../include/text.php:670
-msgid "No contacts"
-msgstr "Nessun contatto"
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Rimuovi tutti i tag]"
 
-#: ../../include/text.php:679
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d contatto"
-msgstr[1] "%d contatti"
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "Ruota a destra"
 
-#: ../../include/text.php:691 ../../mod/viewcontacts.php:76
-msgid "View Contacts"
-msgstr "Visualizza i contatti"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "Ruota a sinistra"
 
-#: ../../include/text.php:751 ../../include/text.php:752
-#: ../../include/nav.php:118 ../../mod/search.php:99
-msgid "Search"
-msgstr "Cerca"
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Nuovo nome dell'album"
 
-#: ../../include/text.php:792
-msgid "poke"
-msgstr ""
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Titolo"
 
-#: ../../include/text.php:792 ../../include/conversation.php:211
-msgid "poked"
-msgstr ""
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Aggiungi tag"
 
-#: ../../include/text.php:793
-msgid "ping"
-msgstr ""
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/text.php:793
-msgid "pinged"
-msgstr ""
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr "Foto privata"
 
-#: ../../include/text.php:794
-msgid "prod"
-msgstr ""
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr "Foto pubblica"
 
-#: ../../include/text.php:794
-msgid "prodded"
-msgstr ""
+#: ../../mod/photos.php:1531 ../../include/conversation.php:1041
+msgid "Share"
+msgstr "Condividi"
 
-#: ../../include/text.php:795
-msgid "slap"
-msgstr ""
+#: ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "Sfoglia l'album"
 
-#: ../../include/text.php:795
-msgid "slapped"
-msgstr ""
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Foto recenti"
 
-#: ../../include/text.php:796
-msgid "finger"
-msgstr ""
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nessun profilo"
 
-#: ../../include/text.php:796
-msgid "fingered"
-msgstr ""
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Dettagli della registrazione di %s"
 
-#: ../../include/text.php:797
-msgid "rebuff"
-msgstr ""
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni."
 
-#: ../../include/text.php:797
-msgid "rebuffed"
-msgstr ""
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."
 
-#: ../../include/text.php:809
-msgid "happy"
-msgstr ""
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "La tua registrazione non puo' essere elaborata."
 
-#: ../../include/text.php:810
-msgid "sad"
-msgstr ""
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Richiesta di registrazione su %s"
 
-#: ../../include/text.php:811
-msgid "mellow"
-msgstr ""
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."
 
-#: ../../include/text.php:812
-msgid "tired"
-msgstr ""
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."
 
-#: ../../include/text.php:813
-msgid "perky"
-msgstr ""
+#: ../../mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."
 
-#: ../../include/text.php:814
-msgid "angry"
-msgstr ""
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."
 
-#: ../../include/text.php:815
-msgid "stupified"
-msgstr ""
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Il tuo OpenID (opzionale): "
 
-#: ../../include/text.php:816
-msgid "puzzled"
-msgstr ""
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Includi il tuo profilo nell'elenco pubblico?"
 
-#: ../../include/text.php:817
-msgid "interested"
-msgstr ""
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "La registrazione su questo sito è solo su invito."
 
-#: ../../include/text.php:818
-msgid "bitter"
-msgstr ""
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "L'ID del tuo invito:"
 
-#: ../../include/text.php:819
-msgid "cheerful"
-msgstr ""
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Il tuo nome completo (es. Mario Rossi): "
 
-#: ../../include/text.php:820
-msgid "alive"
-msgstr ""
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Il tuo indirizzo email: "
 
-#: ../../include/text.php:821
-msgid "annoyed"
-msgstr ""
+#: ../../mod/register.php:271
+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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@$sitename</strong>'."
 
-#: ../../include/text.php:822
-msgid "anxious"
-msgstr ""
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Scegli un nome utente: "
 
-#: ../../include/text.php:823
-msgid "cranky"
-msgstr ""
+#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108
+msgid "Register"
+msgstr "Registrati"
 
-#: ../../include/text.php:824
-msgid "disturbed"
-msgstr ""
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nessun account valido trovato."
 
-#: ../../include/text.php:825
-msgid "frustrated"
-msgstr ""
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
 
-#: ../../include/text.php:826
-msgid "motivated"
-msgstr ""
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Richiesta reimpostazione password su %s"
 
-#: ../../include/text.php:827
-msgid "relaxed"
-msgstr ""
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
 
-#: ../../include/text.php:828
-msgid "surprised"
-msgstr ""
+#: ../../mod/lostpass.php:84 ../../boot.php:1072
+msgid "Password Reset"
+msgstr "Reimpostazione password"
 
-#: ../../include/text.php:992
-msgid "January"
-msgstr "Gennaio"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "La tua password è stata reimpostata come richiesto."
 
-#: ../../include/text.php:992
-msgid "February"
-msgstr "Febbraio"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "La tua nuova password è"
 
-#: ../../include/text.php:992
-msgid "March"
-msgstr "Marzo"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Salva o copia la tua nuova password, quindi"
 
-#: ../../include/text.php:992
-msgid "April"
-msgstr "Aprile"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "clicca qui per entrare"
 
-#: ../../include/text.php:992
-msgid "May"
-msgstr "Maggio"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
 
-#: ../../include/text.php:992
-msgid "June"
-msgstr "Giugno"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "La tua password presso %s è stata cambiata"
 
-#: ../../include/text.php:992
-msgid "July"
-msgstr "Luglio"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Hai dimenticato la password?"
 
-#: ../../include/text.php:992
-msgid "August"
-msgstr "Agosto"
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Inserisci il tuo indirizzo email per reimpostare la password."
 
-#: ../../include/text.php:992
-msgid "September"
-msgstr "Settembre"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Nome utente o email: "
 
-#: ../../include/text.php:992
-msgid "October"
-msgstr "Ottobre"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Reimposta"
 
-#: ../../include/text.php:992
-msgid "November"
-msgstr "Novembre"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "Sistema in manutenzione"
 
-#: ../../include/text.php:992
-msgid "December"
-msgstr "Dicembre"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Oggetto non disponibile."
 
-#: ../../include/text.php:1091
-msgid "bytes"
-msgstr "bytes"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Oggetto non trovato."
 
-#: ../../include/text.php:1118 ../../include/text.php:1130
-msgid "Click to open/close"
-msgstr "Clicca per aprire/chiudere"
+#: ../../mod/apps.php:4
+msgid "Applications"
+msgstr "Applicazioni"
 
-#: ../../include/text.php:1271 ../../mod/events.php:335
-msgid "link to source"
-msgstr "Collegamento all'originale"
+#: ../../mod/apps.php:7
+msgid "No installed applications."
+msgstr "Nessuna applicazione installata."
 
-#: ../../include/text.php:1303 ../../include/user.php:237
-msgid "default"
-msgstr "default"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Guida:"
 
-#: ../../include/text.php:1315
-msgid "Select an alternate language"
-msgstr "Seleziona una diversa lingua"
+#: ../../mod/help.php:84 ../../include/nav.php:113
+msgid "Help"
+msgstr "Guida"
 
-#: ../../include/text.php:1525
-msgid "activity"
-msgstr "attività"
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "Non è possibile accedere al contatto."
 
-#: ../../include/text.php:1527 ../../mod/content.php:605
-#: ../../object/Item.php:315 ../../object/Item.php:328
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] "commento"
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Non riesco a trovare il profilo selezionato."
 
-#: ../../include/text.php:1528
-msgid "post"
-msgstr "messaggio"
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Contatto aggiornato."
 
-#: ../../include/text.php:1683
-msgid "Item filed"
-msgstr "Messaggio salvato"
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Il contatto è stato bloccato"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Visibile a tutti"
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Il contatto è stato sbloccato"
 
-#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "show"
-msgstr "mostra"
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Il contatto è ignorato"
 
-#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
-#: ../../view/theme/diabook/theme.php:629
-msgid "don't show"
-msgstr "non mostrare"
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Il contatto non è più ignorato"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Uscita effettuata."
-
-#: ../../include/auth.php:112 ../../include/auth.php:175
-#: ../../mod/openid.php:93
-msgid "Login failed."
-msgstr "Accesso fallito."
-
-#: ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
-
-#: ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "Il messaggio riportato era:"
-
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr ""
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Il contatto è stato archiviato"
 
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr ""
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
+msgstr "Il contatto è stato dearchiviato"
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr ""
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr "Vuoi veramente cancellare questo contatto?"
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr ""
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Il contatto è stato rimosso."
 
-#: ../../include/uimport.php:85
+#: ../../mod/contacts.php:301
 #, php-format
-msgid "User '%s' already exists on this server!"
-msgstr ""
-
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr ""
+msgid "You are mutual friends with %s"
+msgstr "Sei amico reciproco con %s"
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr ""
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Stai condividendo con %s"
 
-#: ../../include/uimport.php:167
+#: ../../mod/contacts.php:310
 #, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
+msgid "%s is sharing with you"
+msgstr "%s sta condividendo con te"
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr ""
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Le comunicazioni private non sono disponibili per questo contatto."
 
-#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
-#: ../../mod/localtime.php:12
-msgid "l F d, Y \\@ g:i A"
-msgstr "l d F Y \\@ G:i"
+#: ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Mai"
 
-#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
-msgid "Starts:"
-msgstr "Inizia:"
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(L'aggiornamento è stato completato)"
 
-#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
-msgid "Finishes:"
-msgstr "Finisce:"
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(L'aggiornamento non è stato completato)"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
-msgid "Image/photo"
-msgstr "Immagine/foto"
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Suggerisci amici"
 
-#: ../../include/bbcode.php:272
+#: ../../mod/contacts.php:340
 #, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr ""
-
-#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
-msgid "$1 wrote:"
-msgstr "$1 ha scritto:"
+msgid "Network type: %s"
+msgstr "Tipo di rete: %s"
 
-#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
-msgid "Encrypted content"
-msgstr ""
+#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d contatto in comune"
+msgstr[1] "%d contatti in comune"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "E' richiesto un invito."
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Vedi tutti i contatti"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "L'invito non puo' essere verificato."
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
+msgstr "Inverti stato \"Blocca\""
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Url OpenID non valido"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Non ignorare"
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "Inserisci le informazioni richieste."
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
+msgstr "Inverti stato \"Ignora\""
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "Usa un nome più corto."
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
+msgstr "Dearchivia"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "Il nome è troppo corto."
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Archivia"
 
-#: ../../include/user.php:98
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
+msgstr "Inverti stato \"Archiviato\""
 
-#: ../../include/user.php:103
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Ripara"
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "L'indirizzo email non è valido."
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Impostazioni avanzate Contatto"
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "Non puoi usare quell'email."
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "Comunicazione con questo contatto persa!"
 
-#: ../../include/user.php:122
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Editor dei Contatti"
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "Nome utente già registrato. Scegline un altro."
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Visibilità del profilo"
 
-#: ../../include/user.php:138
+#: ../../mod/contacts.php:388
+#, php-format
 msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
-
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "C'è stato un errore durante la registrazione. Prova ancora."
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Informazioni / Note sul contatto"
 
-#: ../../include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "Modifica note contatto"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Sconosciuto | non categorizzato"
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Blocca/Sblocca contatto"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Blocca immediatamente"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignora il contatto"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr "Shady, spammer, self-marketer"
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "Impostazioni riparazione URL"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Lo conosco, ma non ho un'opinione particolare"
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Vedi conversazioni"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "E' ok, probabilmente innocuo"
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Rimuovi contatto"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Rispettabile, ha la mia fiducia"
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "Ultimo aggiornamento:"
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Frequentemente"
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "Aggiorna messaggi pubblici"
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Ogni ora"
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Bloccato"
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Due volte al dì"
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Ignorato"
 
-#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "Al momento archiviato"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "Ostatus"
+#: ../../mod/contacts.php:419
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS / Atom"
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Suggerimenti"
 
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86 ../../mod/admin.php:731
-#: ../../mod/admin.php:741
-msgid "Email"
-msgstr "Email"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Suggerisci potenziali amici"
 
-#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
-#: ../../mod/dfrn_request.php:842
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Tutti i contatti"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Mostra tutti i contatti"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Sbloccato"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Mostra solo contatti non bloccati"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Bloccato"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr ""
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Mostra solo contatti bloccati"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Aggiungi nuovo contatto"
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Ignorato"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Inserisci posizione o indirizzo web"
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Mostra solo contatti ignorati"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esempio: bob@example.com, http://example.com/barbara"
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "Achiviato"
 
-#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
-#: ../../mod/match.php:58 ../../boot.php:1317
-msgid "Connect"
-msgstr "Connetti"
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Mostra solo contatti archiviati"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invito disponibile"
-msgstr[1] "%d inviti disponibili"
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Nascosto"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Trova persone"
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Mostra solo contatti nascosti"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Inserisci un nome o un interesse"
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Amicizia reciproca"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Connetti/segui"
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "è un tuo fan"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Esempi: Mario Rossi, Pesca"
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "sei un fan di"
 
-#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
-#: ../../view/theme/diabook/theme.php:520
-msgid "Friend Suggestions"
-msgstr "Contatti suggeriti"
+#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
+#: ../../include/nav.php:171
+msgid "Contacts"
+msgstr "Contatti"
 
-#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
-msgid "Similar Interests"
-msgstr "Interessi simili"
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Cerca nei tuoi contatti"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Profilo causale"
+#: ../../mod/contacts.php:612 ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Ricerca: "
 
-#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
-msgid "Invite Friends"
-msgstr "Invita amici"
+#: ../../mod/contacts.php:613 ../../mod/directory.php:61
+#: ../../include/contact_widgets.php:33
+msgid "Find"
+msgstr "Trova"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Reti"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Amici in comune"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Tutte le Reti"
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "Nessun contatto in comune."
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Cartelle Salvate"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Contatto aggiunto"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Tutto"
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr "Importa"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Categorie"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Muovi account"
 
-#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d contatto in comune"
-msgstr[1] "%d contatti in comune"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "Puoi importare un account da un altro server Friendica."
 
-#: ../../include/conversation.php:140 ../../mod/like.php:170
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "A %1$s non piace %3$s di %2$s"
+#: ../../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 "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui."
 
-#: ../../include/conversation.php:172 ../../include/diaspora.php:621
-#: ../../mod/dfrn_confirm.php:477
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s e %2$s adesso sono amici"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr ""
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "File account"
+
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\""
 
-#: ../../include/conversation.php:227 ../../mod/mood.php:62
+#: ../../mod/subthread.php:103
 #, php-format
-msgid "%1$s is currently %2$s"
-msgstr ""
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s sta seguendo %3$s di %2$s"
 
-#: ../../include/conversation.php:266 ../../mod/tagger.php:95
+#: ../../mod/allfriends.php:34
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s ha taggato %3$s di %2$s con %4$s"
+msgid "Friends of %s"
+msgstr "Amici di %s"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "post/elemento"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nessun amico da visualizzare."
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag rimosso"
 
-#: ../../include/conversation.php:569 ../../mod/content.php:438
-#: ../../mod/content.php:740 ../../object/Item.php:119
-msgid "Select"
-msgstr "Seleziona"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Rimuovi il tag"
 
-#: ../../include/conversation.php:570 ../../mod/admin.php:735
-#: ../../mod/photos.php:1634 ../../mod/settings.php:623
-#: ../../mod/content.php:439 ../../mod/content.php:741 ../../mod/group.php:171
-#: ../../object/Item.php:120
-msgid "Delete"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Seleziona un tag da rimuovere: "
+
+#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
+msgid "Remove"
 msgstr "Rimuovi"
 
-#: ../../include/conversation.php:609 ../../mod/content.php:472
-#: ../../mod/content.php:852 ../../mod/content.php:853
-#: ../../object/Item.php:258 ../../object/Item.php:259
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vedi il profilo di %s @ %s"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Benvenuto su Friendica"
 
-#: ../../include/conversation.php:621 ../../object/Item.php:249
-msgid "Categories:"
-msgstr ""
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Cose da fare per i Nuovi Utenti"
 
-#: ../../include/conversation.php:622 ../../object/Item.php:250
-msgid "Filed under:"
-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 "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
 
-#: ../../include/conversation.php:629 ../../mod/content.php:482
-#: ../../mod/content.php:864 ../../object/Item.php:272
-#, php-format
-msgid "%s from %s"
-msgstr "%s da %s"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "Come Iniziare"
 
-#: ../../include/conversation.php:644 ../../mod/content.php:497
-msgid "View in context"
-msgstr "Vedi nel contesto"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica Passo-Passo"
 
-#: ../../include/conversation.php:646 ../../include/conversation.php:1042
-#: ../../mod/photos.php:1529 ../../mod/content.php:499
-#: ../../mod/content.php:883 ../../mod/editpost.php:124
-#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../object/Item.php:293
-msgid "Please wait"
-msgstr "Attendi"
-
-#: ../../include/conversation.php:710
-msgid "remove"
-msgstr "rimuovi"
+#: ../../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 "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti."
 
-#: ../../include/conversation.php:714
-msgid "Delete Selected Items"
-msgstr "Cancella elementi selezionati"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Vai alle tue Impostazioni"
 
-#: ../../include/conversation.php:813
-msgid "Follow Thread"
-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 "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
 
-#: ../../include/conversation.php:882
-#, php-format
-msgid "%s likes this."
-msgstr "Piace a %s."
+#: ../../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 "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
 
-#: ../../include/conversation.php:882
-#, php-format
-msgid "%s doesn't like this."
-msgstr "Non piace a %s."
+#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
+#: ../../view/theme/diabook/theme.php:88 ../../boot.php:1868
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77
+msgid "Profile"
+msgstr "Profilo"
 
-#: ../../include/conversation.php:887
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr ""
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Carica la foto del profilo"
 
-#: ../../include/conversation.php:890
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-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 "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
 
-#: ../../include/conversation.php:904
-msgid "and"
-msgstr "e"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Modifica il tuo Profilo"
 
-#: ../../include/conversation.php:910
-#, php-format
-msgid ", and %d other people"
-msgstr "e altre %d persone"
+#: ../../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 "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
 
-#: ../../include/conversation.php:912
-#, php-format
-msgid "%s like this."
-msgstr "Piace a %s."
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Parole chiave del profilo"
 
-#: ../../include/conversation.php:912
-#, php-format
-msgid "%s don't like this."
-msgstr "Non piace a %s."
+#: ../../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 "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
 
-#: ../../include/conversation.php:939 ../../include/conversation.php:957
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Visibile a <strong>tutti</strong>"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Collegarsi"
 
-#: ../../include/conversation.php:940 ../../include/conversation.php:958
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-msgid "Please enter a link URL:"
-msgstr "Inserisci l'indirizzo del link:"
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+#: ../../include/contact_selectors.php:81
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../include/conversation.php:941 ../../include/conversation.php:959
-msgid "Please enter a video link/URL:"
-msgstr "Inserisci un collegamento video / URL:"
+#: ../../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 "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
 
-#: ../../include/conversation.php:942 ../../include/conversation.php:960
-msgid "Please enter an audio link/URL:"
-msgstr "Inserisci un collegamento audio / URL:"
+#: ../../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>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
 
-#: ../../include/conversation.php:943 ../../include/conversation.php:961
-msgid "Tag term:"
-msgstr "Tag:"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importare le Email"
 
-#: ../../include/conversation.php:944 ../../include/conversation.php:962
-#: ../../mod/filer.php:30
-msgid "Save to Folder:"
-msgstr "Salva nella Cartella:"
+#: ../../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 "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
 
-#: ../../include/conversation.php:945 ../../include/conversation.php:963
-msgid "Where are you right now?"
-msgstr "Dove sei ora?"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Vai alla tua pagina Contatti"
 
-#: ../../include/conversation.php:946
-msgid "Delete item(s)?"
-msgstr ""
+#: ../../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 "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
 
-#: ../../include/conversation.php:988
-msgid "Post to Email"
-msgstr "Invia a email"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "Vai all'Elenco del tuo sito"
 
-#: ../../include/conversation.php:1023 ../../mod/photos.php:1528
-msgid "Share"
-msgstr "Condividi"
+#: ../../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 "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
 
-#: ../../include/conversation.php:1024 ../../mod/editpost.php:110
-#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
-#: ../../mod/message.php:562
-msgid "Upload photo"
-msgstr "Carica foto"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Trova nuove persone"
 
-#: ../../include/conversation.php:1025 ../../mod/editpost.php:111
-msgid "upload photo"
-msgstr "carica foto"
+#: ../../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 "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
 
-#: ../../include/conversation.php:1026 ../../mod/editpost.php:112
-msgid "Attach file"
-msgstr "Allega file"
+#: ../../mod/newmember.php:66 ../../include/group.php:270
+msgid "Groups"
+msgstr "Gruppi"
 
-#: ../../include/conversation.php:1027 ../../mod/editpost.php:113
-msgid "attach file"
-msgstr "allega file"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Raggruppa i tuoi contatti"
 
-#: ../../include/conversation.php:1028 ../../mod/editpost.php:114
-#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
-#: ../../mod/message.php:563
-msgid "Insert web link"
-msgstr "Inserisci link"
+#: ../../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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
 
-#: ../../include/conversation.php:1029 ../../mod/editpost.php:115
-msgid "web link"
-msgstr "link web"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Perchè i miei post non sono pubblici?"
 
-#: ../../include/conversation.php:1030 ../../mod/editpost.php:116
-msgid "Insert video link"
-msgstr "Inserire collegamento video"
+#: ../../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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra."
 
-#: ../../include/conversation.php:1031 ../../mod/editpost.php:117
-msgid "video link"
-msgstr "link video"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Ottenere Aiuto"
 
-#: ../../include/conversation.php:1032 ../../mod/editpost.php:118
-msgid "Insert audio link"
-msgstr "Inserisci collegamento audio"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Vai alla sezione Guida"
 
-#: ../../include/conversation.php:1033 ../../mod/editpost.php:119
-msgid "audio link"
-msgstr "link audio"
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
+msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
 
-#: ../../include/conversation.php:1034 ../../mod/editpost.php:120
-msgid "Set your location"
-msgstr "La tua posizione"
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "Rimuovi termine"
 
-#: ../../include/conversation.php:1035 ../../mod/editpost.php:121
-msgid "set location"
-msgstr "posizione"
+#: ../../mod/search.php:30 ../../mod/network.php:233
+#: ../../include/features.php:41
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
 
-#: ../../include/conversation.php:1036 ../../mod/editpost.php:122
-msgid "Clear browser location"
-msgstr "Rimuovi la localizzazione data dal browser"
+#: ../../mod/search.php:99 ../../include/text.php:778
+#: ../../include/text.php:779 ../../include/nav.php:118
+msgid "Search"
+msgstr "Cerca"
 
-#: ../../include/conversation.php:1037 ../../mod/editpost.php:123
-msgid "clear location"
-msgstr "canc. pos."
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:88
+msgid "No results."
+msgstr "Nessun risultato."
 
-#: ../../include/conversation.php:1039 ../../mod/editpost.php:137
-msgid "Set title"
-msgstr "Scegli un titolo"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "Limite totale degli inviti superato."
 
-#: ../../include/conversation.php:1041 ../../mod/editpost.php:139
-msgid "Categories (comma-separated list)"
-msgstr "Categorie (lista separata da virgola)"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: non è un indirizzo email valido."
 
-#: ../../include/conversation.php:1043 ../../mod/editpost.php:125
-msgid "Permission settings"
-msgstr "Impostazioni permessi"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Unisiciti a noi su Friendica"
 
-#: ../../include/conversation.php:1044
-msgid "permissions"
-msgstr "permessi"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito."
 
-#: ../../include/conversation.php:1052 ../../mod/editpost.php:133
-msgid "CC: email addresses"
-msgstr "CC: indirizzi email"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: la consegna del messaggio fallita."
 
-#: ../../include/conversation.php:1053 ../../mod/editpost.php:134
-msgid "Public post"
-msgstr "Messaggio pubblico"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d messaggio inviato."
+msgstr[1] "%d messaggi inviati."
 
-#: ../../include/conversation.php:1055 ../../mod/editpost.php:140
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Esempio: bob@example.com, mary@example.com"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Non hai altri inviti disponibili"
 
-#: ../../include/conversation.php:1059 ../../mod/photos.php:1550
-#: ../../mod/photos.php:1594 ../../mod/photos.php:1677
-#: ../../mod/content.php:719 ../../mod/editpost.php:145
-#: ../../object/Item.php:613
-msgid "Preview"
-msgstr "Anteprima"
+#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."
 
-#: ../../include/conversation.php:1068
-msgid "Post to Groups"
-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 "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."
 
-#: ../../include/conversation.php:1069
-msgid "Post to Contacts"
-msgstr ""
+#: ../../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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."
 
-#: ../../include/conversation.php:1070
-msgid "Private post"
-msgstr ""
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Varie"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Invia inviti"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "anno"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Inserisci gli indirizzi email, uno per riga:"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "mese"
+#: ../../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 "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "giorno"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "Sarà necessario fornire questo codice invito: $invite_code"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "mai"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Una volta registrato, connettiti con me dal mio profilo:"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "meno di un secondo fa"
+#: ../../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 "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "settimana"
+#: ../../mod/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167
+msgid "Account settings"
+msgstr "Parametri account"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "ora"
+#: ../../mod/settings.php:35
+msgid "Additional features"
+msgstr "Funzionalità aggiuntive"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "ore"
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Impostazioni grafiche"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuto"
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Impostazioni connettori"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minuti"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Impostazioni plugin"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "secondo"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "Applicazioni collegate"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "secondi"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Esporta dati personali"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s fa"
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Rimuovi account"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1705
-#, php-format
-msgid "%s's birthday"
-msgstr "Compleanno di %s"
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "Mancano alcuni dati importanti!"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1706
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "Buon compleanno %s"
+#: ../../mod/settings.php:121 ../../mod/settings.php:586
+msgid "Update"
+msgstr "Aggiorna"
 
-#: ../../include/dba.php:41
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Non trovo le informazioni DNS per il database server '%s'"
+#: ../../mod/settings.php:227
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Impossibile collegarsi all'account email con i parametri forniti."
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "(nessun oggetto)"
+#: ../../mod/settings.php:232
+msgid "Email settings updated."
+msgstr "Impostazioni e-mail aggiornate."
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Notifica di condivisione dal network Diaspora*"
+#: ../../mod/settings.php:247
+msgid "Features updated"
+msgstr "Funzionalità aggiornate"
 
-#: ../../include/diaspora.php:2248
-msgid "Attachments:"
-msgstr "Allegati:"
+#: ../../mod/settings.php:307
+msgid "Passwords do not match. Password unchanged."
+msgstr "Le password non corrispondono. Password non cambiata."
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Notifica Friendica"
+#: ../../mod/settings.php:312
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Le password non possono essere vuote. Password non cambiata."
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Grazie,"
+#: ../../mod/settings.php:323
+msgid "Password changed."
+msgstr "Password cambiata."
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "Amministratore %s"
+#: ../../mod/settings.php:325
+msgid "Password update failed. Please try again."
+msgstr "Aggiornamento password fallito. Prova ancora."
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/settings.php:390
+msgid " Please use a shorter name."
+msgstr " Usa un nome più corto."
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
+#: ../../mod/settings.php:392
+msgid " Name too short."
+msgstr " Nome troppo corto."
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr ""
+#: ../../mod/settings.php:398
+msgid " Not valid email."
+msgstr " Email non valida."
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr ""
+#: ../../mod/settings.php:400
+msgid " Cannot change to that email."
+msgstr "Non puoi usare quella email."
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "un messaggio privato"
+#: ../../mod/settings.php:454
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito."
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
+#: ../../mod/settings.php:458
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito."
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]"
+#: ../../mod/settings.php:488
+msgid "Settings updated."
+msgstr "Impostazioni aggiornate."
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]"
+#: ../../mod/settings.php:559 ../../mod/settings.php:585
+#: ../../mod/settings.php:621
+msgid "Add application"
+msgstr "Aggiungi applicazione"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]"
+#: ../../mod/settings.php:563 ../../mod/settings.php:589
+msgid "Consumer Key"
+msgstr "Consumer Key"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d"
+#: ../../mod/settings.php:564 ../../mod/settings.php:590
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s ha commentato un elemento che stavi seguendo."
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
+msgid "Redirect"
+msgstr "Redirect"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Visita %s per vedere e/o commentare la conversazione"
+#: ../../mod/settings.php:566 ../../mod/settings.php:592
+msgid "Icon url"
+msgstr "Url icona"
 
-#: ../../include/enotify.php:126
-#, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
-
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr ""
+#: ../../mod/settings.php:577
+msgid "You can't edit this application."
+msgstr "Non puoi modificare questa applicazione."
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]"
+#: ../../mod/settings.php:620
+msgid "Connected Apps"
+msgstr "Applicazioni Collegate"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notifica] %s ti ha taggato"
+#: ../../mod/settings.php:624
+msgid "Client key starts with"
+msgstr "Chiave del client inizia con"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr ""
+#: ../../mod/settings.php:625
+msgid "No name"
+msgstr "Nessun nome"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr ""
+#: ../../mod/settings.php:626
+msgid "Remove authorization"
+msgstr "Rimuovi l'autorizzazione"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr ""
+#: ../../mod/settings.php:638
+msgid "No Plugin settings configured"
+msgstr "Nessun plugin ha impostazioni modificabili"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr ""
+#: ../../mod/settings.php:646
+msgid "Plugin Settings"
+msgstr "Impostazioni plugin"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr ""
+#: ../../mod/settings.php:660
+msgid "Off"
+msgstr "Spento"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
+#: ../../mod/settings.php:660
+msgid "On"
+msgstr "Acceso"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr ""
+#: ../../mod/settings.php:668
+msgid "Additional Features"
+msgstr "Funzionalità aggiuntive"
 
-#: ../../include/enotify.php:174
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
 #, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr ""
-
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Il supporto integrato per la connettività con %s è %s"
 
-#: ../../include/enotify.php:186
-#, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "enabled"
+msgstr "abilitato"
 
-#: ../../include/enotify.php:187
-#, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr ""
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "disabled"
+msgstr "disabilitato"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
-#, php-format
-msgid "You may visit their profile at %s"
-msgstr "Puoi visitare il suo profilo presso %s"
+#: ../../mod/settings.php:682
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../include/enotify.php:192
-#, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Visita %s per approvare o rifiutare la presentazione."
+#: ../../mod/settings.php:714
+msgid "Email access is disabled on this site."
+msgstr "L'accesso email è disabilitato su questo sito."
 
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
+#: ../../mod/settings.php:721
+msgid "Connector Settings"
+msgstr "Impostazioni Connettore"
 
-#: ../../include/enotify.php:200
-#, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+#: ../../mod/settings.php:726
+msgid "Email/Mailbox Setup"
+msgstr "Impostazioni email"
 
-#: ../../include/enotify.php:201
-#, php-format
+#: ../../mod/settings.php:727
 msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Nome:"
+#: ../../mod/settings.php:728
+msgid "Last successful email check:"
+msgstr "Ultimo controllo email eseguito con successo:"
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Foto:"
+#: ../../mod/settings.php:730
+msgid "IMAP server name:"
+msgstr "Nome server IMAP:"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "Visita %s per approvare o rifiutare il suggerimento."
+#: ../../mod/settings.php:731
+msgid "IMAP port:"
+msgstr "Porta IMAP:"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr ""
+#: ../../mod/settings.php:732
+msgid "Security:"
+msgstr "Sicurezza:"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr ""
+#: ../../mod/settings.php:732 ../../mod/settings.php:737
+msgid "None"
+msgstr "Nessuna"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: ../../mod/settings.php:733
+msgid "Email login name:"
+msgstr "Nome utente email:"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr ""
+#: ../../mod/settings.php:734
+msgid "Email password:"
+msgstr "Password email:"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr ""
+#: ../../mod/settings.php:735
+msgid "Reply-to address:"
+msgstr "Indirizzo di risposta:"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr ""
+#: ../../mod/settings.php:736
+msgid "Send public posts to all email contacts:"
+msgstr "Invia i messaggi pubblici ai contatti email:"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr ""
+#: ../../mod/settings.php:737
+msgid "Action after import:"
+msgstr "Azione post importazione:"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"
+#: ../../mod/settings.php:737
+msgid "Mark as seen"
+msgstr "Segna come letto"
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr ""
+#: ../../mod/settings.php:737
+msgid "Move to folder"
+msgstr "Sposta nella cartella"
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr ""
+#: ../../mod/settings.php:738
+msgid "Move to folder:"
+msgstr "Sposta nella cartella:"
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: ../../mod/settings.php:809
+msgid "Display Settings"
+msgstr "Impostazioni Grafiche"
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr ""
+#: ../../mod/settings.php:815 ../../mod/settings.php:826
+msgid "Display Theme:"
+msgstr "Tema:"
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+#: ../../mod/settings.php:816
+msgid "Mobile Theme:"
+msgstr "Tema mobile:"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr ""
+#: ../../mod/settings.php:817
+msgid "Update browser every xx seconds"
+msgstr "Aggiorna il browser ogni x secondi"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+#: ../../mod/settings.php:817
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Minimo 10 secondi, nessun limite massimo"
 
-#: ../../include/features.php:41 ../../mod/search.php:30
-#: ../../mod/network.php:233
-msgid "Saved Searches"
-msgstr "Ricerche salvate"
+#: ../../mod/settings.php:818
+msgid "Number of items to display per page:"
+msgstr "Numero di elementi da mostrare per pagina:"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-msgstr ""
+#: ../../mod/settings.php:818
+msgid "Maximum of 100 items"
+msgstr "Massimo 100 voci"
 
-#: ../../include/features.php:46
-msgid "Network Tabs"
-msgstr ""
+#: ../../mod/settings.php:819
+msgid "Don't show emoticons"
+msgstr "Non mostrare le emoticons"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr ""
+#: ../../mod/settings.php:895
+msgid "Normal Account Page"
+msgstr "Pagina Account Normale"
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-msgstr ""
+#: ../../mod/settings.php:896
+msgid "This account is a normal personal profile"
+msgstr "Questo account è un normale profilo personale"
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr ""
+#: ../../mod/settings.php:899
+msgid "Soapbox Page"
+msgstr "Pagina Sandbox"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr ""
+#: ../../mod/settings.php:900
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
-msgstr ""
+#: ../../mod/settings.php:903
+msgid "Community Forum/Celebrity Account"
+msgstr "Account Celebrità/Forum comunitario"
 
-#: ../../include/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../mod/settings.php:904
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-msgstr "Strumenti per mesasggi/commenti"
+#: ../../mod/settings.php:907
+msgid "Automatic Friend Page"
+msgstr "Pagina con amicizia automatica"
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr ""
+#: ../../mod/settings.php:908
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola"
+#: ../../mod/settings.php:911
+msgid "Private Forum [Experimental]"
+msgstr "Forum privato [sperimentale]"
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr ""
+#: ../../mod/settings.php:912
+msgid "Private forum - approved members only"
+msgstr "Forum privato - solo membri approvati"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-msgstr "Modifica e correggi messaggi e commenti dopo averli inviati"
+#: ../../mod/settings.php:924
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../include/features.php:57
-msgid "Tagging"
-msgstr ""
+#: ../../mod/settings.php:924
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-msgstr ""
+#: ../../mod/settings.php:934
+msgid "Publish your default profile in your local site directory?"
+msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
 
-#: ../../include/features.php:58
-msgid "Post Categories"
-msgstr ""
+#: ../../mod/settings.php:940
+msgid "Publish your default profile in the global social directory?"
+msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr ""
+#: ../../mod/settings.php:948
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-msgstr ""
+#: ../../mod/settings.php:952
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
 
-#: ../../include/features.php:60
-msgid "Dislike Posts"
-msgstr ""
+#: ../../mod/settings.php:957
+msgid "Allow friends to post to your profile page?"
+msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "Permetti di inviare \"non mi piace\" ai messaggi"
+#: ../../mod/settings.php:963
+msgid "Allow friends to tag your posts?"
+msgstr "Permetti agli amici di taggare i tuoi messaggi?"
 
-#: ../../include/features.php:61
-msgid "Star Posts"
-msgstr ""
+#: ../../mod/settings.php:969
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-msgstr ""
+#: ../../mod/settings.php:975
+msgid "Permit unknown people to send you private mail?"
+msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?"
 
-#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
-msgid "Disallowed profile URL."
-msgstr "Indirizzo profilo non permesso."
+#: ../../mod/settings.php:983
+msgid "Profile is <strong>not published</strong>."
+msgstr "Il profilo <strong>non è pubblicato</strong>."
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "URL di connessione mancante."
+#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "o"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
+#: ../../mod/settings.php:991
+msgid "Your Identity Address is"
+msgstr "L'indirizzo della tua identità è"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
+#: ../../mod/settings.php:1002
+msgid "Automatically expire posts after this many days:"
+msgstr "Fai scadere i post automaticamente dopo x giorni:"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
+#: ../../mod/settings.php:1002
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Non è stato trovato un nome o un autore"
+#: ../../mod/settings.php:1003
+msgid "Advanced expiration settings"
+msgstr "Impostazioni avanzate di scandenza"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Nessun URL puo' essere associato a questo indirizzo."
+#: ../../mod/settings.php:1004
+msgid "Advanced Expiration"
+msgstr "Scadenza avanzata"
 
-#: ../../include/follow.php:86
-msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr ""
+#: ../../mod/settings.php:1005
+msgid "Expire posts:"
+msgstr "Fai scadere i post:"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
+#: ../../mod/settings.php:1006
+msgid "Expire personal notes:"
+msgstr "Fai scadere le Note personali:"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
+#: ../../mod/settings.php:1007
+msgid "Expire starred posts:"
+msgstr "Fai scadere i post Speciali:"
 
-#: ../../include/follow.php:103
-msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
+#: ../../mod/settings.php:1008
+msgid "Expire photos:"
+msgstr "Fai scadere le foto:"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Impossibile recuperare informazioni sul contatto."
+#: ../../mod/settings.php:1009
+msgid "Only expire posts by others:"
+msgstr "Fai scadere solo i post degli altri:"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "segue"
+#: ../../mod/settings.php:1035
+msgid "Account Settings"
+msgstr "Impostazioni account"
 
-#: ../../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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
+#: ../../mod/settings.php:1043
+msgid "Password Settings"
+msgstr "Impostazioni password"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr ""
+#: ../../mod/settings.php:1044
+msgid "New Password:"
+msgstr "Nuova password:"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Tutti"
+#: ../../mod/settings.php:1045
+msgid "Confirm:"
+msgstr "Conferma:"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "modifica"
+#: ../../mod/settings.php:1045
+msgid "Leave password fields blank unless changing"
+msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password"
 
-#: ../../include/group.php:270 ../../mod/newmember.php:66
-msgid "Groups"
-msgstr "Gruppi"
+#: ../../mod/settings.php:1049
+msgid "Basic Settings"
+msgstr "Impostazioni base"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Modifica gruppo"
+#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
+msgid "Full Name:"
+msgstr "Nome completo:"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Crea un nuovo gruppo"
+#: ../../mod/settings.php:1051
+msgid "Email Address:"
+msgstr "Indirizzo Email:"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Contatti in nessun gruppo."
+#: ../../mod/settings.php:1052
+msgid "Your Timezone:"
+msgstr "Il tuo fuso orario:"
 
-#: ../../include/group.php:275 ../../mod/network.php:234
-msgid "add"
-msgstr "aggiungi"
+#: ../../mod/settings.php:1053
+msgid "Default Post Location:"
+msgstr "Località predefinita:"
 
-#: ../../include/items.php:3366 ../../mod/dfrn_request.php:716
-msgid "[Name Withheld]"
-msgstr "[Nome Nascosto]"
+#: ../../mod/settings.php:1054
+msgid "Use Browser Location:"
+msgstr "Usa la località rilevata dal browser:"
 
-#: ../../include/items.php:3373
-msgid "A new person is sharing with you at "
-msgstr "Una nuova persona sta condividendo con te da "
+#: ../../mod/settings.php:1057
+msgid "Security and Privacy Settings"
+msgstr "Impostazioni di sicurezza e privacy"
 
-#: ../../include/items.php:3373
-msgid "You have a new follower at "
-msgstr "Una nuova persona ti segue su "
+#: ../../mod/settings.php:1059
+msgid "Maximum Friend Requests/Day:"
+msgstr "Numero massimo di richieste di amicizia al giorno:"
 
-#: ../../include/items.php:3853 ../../mod/admin.php:159
-#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
-#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
-msgid "Item not found."
-msgstr "Elemento non trovato."
+#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
+msgid "(to prevent spam abuse)"
+msgstr "(per prevenire lo spam)"
 
-#: ../../include/items.php:3892
-msgid "Do you really want to delete this item?"
-msgstr ""
+#: ../../mod/settings.php:1060
+msgid "Default Post Permissions"
+msgstr "Permessi predefiniti per i messaggi"
 
-#: ../../include/items.php:3894 ../../mod/profiles.php:606
-#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
-#: ../../mod/suggest.php:29 ../../mod/message.php:209
-msgid "Yes"
-msgstr "Si"
+#: ../../mod/settings.php:1061
+msgid "(click to open/close)"
+msgstr "(clicca per aprire/chiudere)"
 
-#: ../../include/items.php:4085
-msgid "Archives"
+#: ../../mod/settings.php:1072
+msgid "Default Private Post"
 msgstr ""
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[nessun oggetto]"
-
-#: ../../include/message.php:144 ../../mod/wall_upload.php:135
-#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
-#: ../../mod/item.php:428
-msgid "Wall Photos"
-msgstr "Foto della bacheca"
-
-#: ../../include/nav.php:34 ../../mod/navigation.php:20
-msgid "Nothing new here"
-msgstr "Niente di nuovo qui"
-
-#: ../../include/nav.php:38 ../../mod/navigation.php:24
-msgid "Clear notifications"
+#: ../../mod/settings.php:1073
+msgid "Default Public Post"
 msgstr ""
 
-#: ../../include/nav.php:73 ../../boot.php:1036
-msgid "Logout"
-msgstr "Esci"
+#: ../../mod/settings.php:1077
+msgid "Default Permissions for New Posts"
+msgstr "Permessi predefiniti per i nuovi post"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Finisci questa sessione"
+#: ../../mod/settings.php:1089
+msgid "Maximum private messages per day from unknown people:"
+msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"
 
-#: ../../include/nav.php:76 ../../boot.php:1840
-msgid "Status"
-msgstr "Stato"
+#: ../../mod/settings.php:1092
+msgid "Notification Settings"
+msgstr "Impostazioni notifiche"
 
-#: ../../include/nav.php:76 ../../include/nav.php:143
-#: ../../view/theme/diabook/theme.php:87
-msgid "Your posts and conversations"
-msgstr "I tuoi messaggi e le tue conversazioni"
+#: ../../mod/settings.php:1093
+msgid "By default post a status message when:"
+msgstr "Invia un messaggio di stato quando:"
 
-#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
-msgid "Your profile page"
-msgstr "Pagina del tuo profilo"
+#: ../../mod/settings.php:1094
+msgid "accepting a friend request"
+msgstr "accetti una richiesta di amicizia"
 
-#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
-#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1854
-msgid "Photos"
-msgstr "Foto"
+#: ../../mod/settings.php:1095
+msgid "joining a forum/community"
+msgstr "ti unisci a un forum/comunità"
 
-#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
-msgid "Your photos"
-msgstr "Le tue foto"
+#: ../../mod/settings.php:1096
+msgid "making an <em>interesting</em> profile change"
+msgstr "fai un <em>interessante</em> modifica al profilo"
 
-#: ../../include/nav.php:79 ../../mod/events.php:370
-#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1864
-msgid "Events"
-msgstr "Eventi"
+#: ../../mod/settings.php:1097
+msgid "Send a notification email when:"
+msgstr "Invia una mail di notifica quando:"
 
-#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
-msgid "Your events"
-msgstr "I tuoi eventi"
+#: ../../mod/settings.php:1098
+msgid "You receive an introduction"
+msgstr "Ricevi una presentazione"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
-msgid "Personal notes"
-msgstr "Note personali"
+#: ../../mod/settings.php:1099
+msgid "Your introductions are confirmed"
+msgstr "Le tue presentazioni sono confermate"
 
-#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
-msgid "Your personal photos"
-msgstr "Le tue foto personali"
+#: ../../mod/settings.php:1100
+msgid "Someone writes on your profile wall"
+msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
 
-#: ../../include/nav.php:91
-msgid "Sign in"
-msgstr "Entra"
+#: ../../mod/settings.php:1101
+msgid "Someone writes a followup comment"
+msgstr "Qualcuno scrive un commento a un tuo messaggio"
 
-#: ../../include/nav.php:104 ../../include/nav.php:143
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-msgid "Home"
-msgstr "Home"
+#: ../../mod/settings.php:1102
+msgid "You receive a private message"
+msgstr "Ricevi un messaggio privato"
 
-#: ../../include/nav.php:104
-msgid "Home Page"
-msgstr "Home Page"
+#: ../../mod/settings.php:1103
+msgid "You receive a friend suggestion"
+msgstr "Hai ricevuto un suggerimento di amicizia"
 
-#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1012
-msgid "Register"
-msgstr "Registrati"
+#: ../../mod/settings.php:1104
+msgid "You are tagged in a post"
+msgstr "Sei stato taggato in un post"
 
-#: ../../include/nav.php:108
-msgid "Create an account"
-msgstr "Crea un account"
+#: ../../mod/settings.php:1105
+msgid "You are poked/prodded/etc. in a post"
+msgstr "Sei 'toccato'/'spronato'/ecc. in un post"
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
-msgstr "Guida e documentazione"
+#: ../../mod/settings.php:1108
+msgid "Advanced Account/Page Type Settings"
+msgstr "Impostazioni avanzate Account/Tipo di pagina"
 
-#: ../../include/nav.php:116
-msgid "Apps"
-msgstr "Applicazioni"
+#: ../../mod/settings.php:1109
+msgid "Change the behaviour of this account for special situations"
+msgstr "Modifica il comportamento di questo account in situazioni speciali"
 
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
-msgstr "Applicazioni, utilità e giochi aggiuntivi"
+#: ../../mod/display.php:177
+msgid "Item has been removed."
+msgstr "L'oggetto è stato rimosso."
 
-#: ../../include/nav.php:118
-msgid "Search site content"
-msgstr "Cerca nel contenuto del sito"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Cerca persone"
 
-#: ../../include/nav.php:128 ../../mod/community.php:32
-#: ../../view/theme/diabook/theme.php:93
-msgid "Community"
-msgstr "Comunità"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "Nessun risultato"
 
-#: ../../include/nav.php:128
-msgid "Conversations on this site"
-msgstr "Conversazioni su questo sito"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Profilo elminato."
 
-#: ../../include/nav.php:130
-msgid "Directory"
-msgstr "Elenco"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profilo-"
 
-#: ../../include/nav.php:130
-msgid "People directory"
-msgstr "Elenco delle persone"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Il nuovo profilo è stato creato."
 
-#: ../../include/nav.php:140 ../../mod/notifications.php:83
-msgid "Network"
-msgstr "Rete"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Impossibile duplicare il profilo."
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Conversazioni dai tuoi amici"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Il nome profilo è obbligatorio ."
 
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr ""
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr "Stato civile"
 
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr ""
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr "Partner romantico"
 
-#: ../../include/nav.php:149 ../../mod/notifications.php:98
-msgid "Introductions"
-msgstr "Presentazioni"
+#: ../../mod/profiles.php:325
+msgid "Likes"
+msgstr "Mi piace"
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Richieste di amicizia"
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr "Non mi piace"
 
-#: ../../include/nav.php:150 ../../mod/notifications.php:220
-msgid "Notifications"
-msgstr "Notifiche"
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "Lavoro/Impiego"
 
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Vedi tutte le notifiche"
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "Religione"
 
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "Segna tutte le notifiche come viste"
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Orientamento Politico"
 
-#: ../../include/nav.php:156 ../../mod/message.php:182
-#: ../../mod/notifications.php:103
-msgid "Messages"
-msgstr "Messaggi"
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "Sesso"
 
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Posta privata"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Preferenza sessuale"
 
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "In arrivo"
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Homepage"
 
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Inviati"
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Interessi"
 
-#: ../../include/nav.php:159 ../../mod/message.php:9
-msgid "New Message"
-msgstr "Nuovo messaggio"
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Indirizzo"
 
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Gestisci"
-
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Gestisci altre pagine"
-
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr ""
-
-#: ../../include/nav.php:165 ../../mod/delegate.php:121
-msgid "Delegate Page Management"
-msgstr "Gestione delegati per la pagina"
-
-#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
-msgid "Account settings"
-msgstr "Parametri account"
-
-#: ../../include/nav.php:169 ../../boot.php:1339
-msgid "Profiles"
-msgstr "Profili"
-
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr ""
-
-#: ../../include/nav.php:171 ../../mod/contacts.php:607
-#: ../../view/theme/diabook/theme.php:89
-msgid "Contacts"
-msgstr "Contatti"
-
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Gestisci/modifica amici e contatti"
-
-#: ../../include/nav.php:178 ../../mod/admin.php:120
-msgid "Admin"
-msgstr "Amministrazione"
-
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Configurazione del sito"
-
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr ""
-
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr ""
-
-#: ../../include/network.php:852
-msgid "view full size"
-msgstr "vedi a schermo intero"
-
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "Contenuto incorporato"
-
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "Embed disabilitato"
-
-#: ../../include/plugin.php:429 ../../include/plugin.php:431
-msgid "Click here to upgrade."
-msgstr "Clicca qui per aggiornare."
-
-#: ../../include/plugin.php:437
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione."
-
-#: ../../include/plugin.php:442
-msgid "This action is not available under your subscription plan."
-msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione."
-
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Ciao"
-
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Carica una foto per il profilo."
-
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Ciao "
-
-#: ../../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/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
-#: ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "Profilo non trovato."
-
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Profilo elminato."
-
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profilo-"
-
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Il nuovo profilo è stato creato."
-
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Impossibile duplicare il profilo."
-
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Il nome profilo è obbligatorio ."
-
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr ""
-
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr ""
-
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "Mi piace"
-
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "Non mi piace"
-
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr ""
-
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religione"
-
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Orientamento Politico"
-
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Sesso"
-
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Preferenza sessuale"
-
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Homepage"
-
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Interessi"
-
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Indirizzo"
+#: ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Posizione"
 
 #: ../../mod/profiles.php:450
 msgid "Profile updated."
@@ -5459,12 +3836,12 @@ msgstr "profilo pubblico"
 #: ../../mod/profiles.php:528
 #, php-format
 msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr ""
+msgstr "%1$s ha cambiato %2$s in &ldquo;%3$s&rdquo;"
 
 #: ../../mod/profiles.php:529
 #, php-format
 msgid " - Visit %1$s's %2$s"
-msgstr ""
+msgstr "- Visita  %2$s di %1$s"
 
 #: ../../mod/profiles.php:532
 #, php-format
@@ -5475,24 +3852,13 @@ msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s"
 msgid "Hide your contact/friend list from viewers of this profile?"
 msgstr "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"
 
-#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
-msgid "No"
-msgstr "No"
-
 #: ../../mod/profiles.php:625
 msgid "Edit Profile Details"
 msgstr "Modifica i dettagli del profilo"
 
 #: ../../mod/profiles.php:627
 msgid "Change Profile Photo"
-msgstr ""
+msgstr "Cambia la foto del profilo"
 
 #: ../../mod/profiles.php:628
 msgid "View this profile"
@@ -5567,10 +3933,22 @@ msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
 msgid "Since [date]:"
 msgstr "Dal [data]:"
 
+#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
+msgid "Sexual Preference:"
+msgstr "Preferenze sessuali:"
+
 #: ../../mod/profiles.php:647
 msgid "Homepage URL:"
 msgstr "Homepage:"
 
+#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
+msgid "Hometown:"
+msgstr "Paese natale:"
+
+#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
+msgid "Political Views:"
+msgstr "Orientamento politico:"
+
 #: ../../mod/profiles.php:650
 msgid "Religious Views:"
 msgstr "Orientamento religioso:"
@@ -5583,6 +3961,14 @@ msgstr "Parole chiave visibili a tutti:"
 msgid "Private Keywords:"
 msgstr "Parole chiave private:"
 
+#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
+msgid "Likes:"
+msgstr "Mi piace:"
+
+#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
+msgid "Dislikes:"
+msgstr "Non mi piace:"
+
 #: ../../mod/profiles.php:655
 msgid "Example: fishing photography software"
 msgstr "Esempio: pesca fotografia programmazione"
@@ -5641,71 +4027,58 @@ msgid ""
 "be visible to anybody using the internet."
 msgstr "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
 
+#: ../../mod/profiles.php:682 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Età : "
+
 #: ../../mod/profiles.php:721
 msgid "Edit/Manage Profiles"
 msgstr "Modifica / Gestisci profili"
 
-#: ../../mod/profiles.php:722 ../../boot.php:1345 ../../boot.php:1371
+#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
 msgid "Change profile photo"
 msgstr "Cambia la foto del profilo"
 
-#: ../../mod/profiles.php:723 ../../boot.php:1346
+#: ../../mod/profiles.php:723 ../../boot.php:1367
 msgid "Create New Profile"
 msgstr "Crea un nuovo profilo"
 
-#: ../../mod/profiles.php:734 ../../boot.php:1356
+#: ../../mod/profiles.php:734 ../../boot.php:1377
 msgid "Profile Image"
 msgstr "Immagine del Profilo"
 
-#: ../../mod/profiles.php:736 ../../boot.php:1359
+#: ../../mod/profiles.php:736 ../../boot.php:1380
 msgid "visible to everybody"
 msgstr "visibile a tutti"
 
-#: ../../mod/profiles.php:737 ../../boot.php:1360
+#: ../../mod/profiles.php:737 ../../boot.php:1381
 msgid "Edit visibility"
 msgstr "Modifica visibilità"
 
-#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
-msgid "Permission denied"
-msgstr "Permesso negato"
-
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Indentificativo del profilo non valido."
-
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Modifica visibilità del profilo"
-
-#: ../../mod/profperm.php:105 ../../mod/group.php:224
-msgid "Click on a contact to add or remove."
-msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
-
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visibile a"
-
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "collegamento"
 
-#: ../../mod/notes.php:44 ../../boot.php:1871
-msgid "Personal Notes"
-msgstr "Note personali"
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr "Esporta account"
 
-#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
-#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visita il profilo di %s [%s]"
+#: ../../mod/uexport.php:72
+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 "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server."
 
-#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
-msgid "Edit contact"
-msgstr "Modifca contatto"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr "Esporta tutto"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr ""
+#: ../../mod/uexport.php:73
+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 "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)"
 
 #: ../../mod/ping.php:238
 msgid "{0} wants to be your friend"
@@ -5752,4200 +4125,2903 @@ msgstr "{0} ha taggato il post di %s con #%s"
 msgid "{0} mentioned you in a post"
 msgstr "{0} ti ha citato in un post"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr ""
+#: ../../mod/navigation.php:20 ../../include/nav.php:34
+msgid "Nothing new here"
+msgstr "Niente di nuovo qui"
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:460
-msgid "Site"
-msgstr "Sito"
+#: ../../mod/navigation.php:24 ../../include/nav.php:38
+msgid "Clear notifications"
+msgstr "Pulisci le notifiche"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740
-msgid "Users"
-msgstr "Utenti"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Non disponibile."
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864
-msgid "Plugins"
-msgstr "Plugin"
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
+#: ../../include/nav.php:128
+msgid "Community"
+msgstr "Comunità"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
-msgid "Themes"
-msgstr "Temi"
+#: ../../mod/filer.php:30 ../../include/conversation.php:962
+#: ../../include/conversation.php:980
+msgid "Save to Folder:"
+msgstr "Salva nella Cartella:"
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr "Aggiornamenti Database"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- seleziona -"
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
-msgid "Logs"
-msgstr "Log"
+#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781
+msgid "Save"
+msgstr "Salva"
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr ""
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Il file supera la dimensione massima di %d"
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Utenti registrati in attesa di conferma"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Caricamento del file non riuscito."
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:698
-msgid "Normal Account"
-msgstr "Account normale"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Indentificativo del profilo non valido."
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:699
-msgid "Soapbox Account"
-msgstr "Account per comunicati e annunci"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Modifica visibilità del profilo"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:700
-msgid "Community/Celebrity Account"
-msgstr "Account per celebrità o per comunità"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:701
-msgid "Automatic Friend Account"
-msgstr "Account per amicizia automatizzato"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visibile a"
 
-#: ../../mod/admin.php:187
-msgid "Blog Account"
-msgstr "Account Blog"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tutti i contatti (con profilo ad accesso sicuro)"
 
-#: ../../mod/admin.php:188
-msgid "Private Forum"
-msgstr "Forum Privato"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "Vuoi veramente cancellare questo suggerimento?"
 
-#: ../../mod/admin.php:207
-msgid "Message queues"
-msgstr ""
+#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
+#: ../../include/contact_widgets.php:34
+msgid "Friend Suggestions"
+msgstr "Contatti suggeriti"
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
-#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
-#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
-msgid "Administration"
-msgstr "Amministrazione"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
 
-#: ../../mod/admin.php:213
-msgid "Summary"
-msgstr "Sommario"
+#: ../../mod/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338
+#: ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Connetti"
 
-#: ../../mod/admin.php:215
-msgid "Registered users"
-msgstr "Utenti registrati"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignora / Nascondi"
 
-#: ../../mod/admin.php:217
-msgid "Pending registrations"
-msgstr "Registrazioni in attesa"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Accesso negato."
 
-#: ../../mod/admin.php:218
-msgid "Version"
-msgstr "Versione"
+#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%s dà il benvenuto a %s"
 
-#: ../../mod/admin.php:220
-msgid "Active plugins"
-msgstr "Plugin attivi"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Gestisci indentità e/o pagine"
 
-#: ../../mod/admin.php:391
-msgid "Site settings updated."
-msgstr "Impostazioni del sito aggiornate."
+#: ../../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 "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
 
-#: ../../mod/admin.php:420 ../../mod/settings.php:769
-msgid "No special theme for mobile devices"
-msgstr ""
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Seleziona un'identità da gestire:"
 
-#: ../../mod/admin.php:446
-msgid "Closed"
-msgstr "Chiusa"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "Nessun potenziale delegato per la pagina è stato trovato."
 
-#: ../../mod/admin.php:447
-msgid "Requires approval"
-msgstr "Richiede l'approvazione"
+#: ../../mod/delegate.php:121 ../../include/nav.php:165
+msgid "Delegate Page Management"
+msgstr "Gestione delegati per la pagina"
 
-#: ../../mod/admin.php:448
-msgid "Open"
-msgstr "Aperta"
+#: ../../mod/delegate.php:123
+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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
 
-#: ../../mod/admin.php:452
-msgid "No SSL policy, links will track page SSL state"
-msgstr "Nessuna gestione SSL, i link seguiranno lo stato SSL della pagina"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "Gestori Pagina Esistenti"
 
-#: ../../mod/admin.php:453
-msgid "Force all links to use SSL"
-msgstr "Forza tutti i linki ad usare SSL"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "Delegati Pagina Esistenti"
 
-#: ../../mod/admin.php:454
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "Certificato auto-firmato, usa SSL solo per i link locali (sconsigliato)"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "Delegati Potenziali"
 
-#: ../../mod/admin.php:462 ../../mod/register.php:261
-msgid "Registration"
-msgstr "Registrazione"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Aggiungi"
 
-#: ../../mod/admin.php:463
-msgid "File upload"
-msgstr "Caricamento file"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Nessun articolo."
 
-#: ../../mod/admin.php:464
-msgid "Policies"
-msgstr "Politiche"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "Nessun contatto."
 
-#: ../../mod/admin.php:465
-msgid "Advanced"
-msgstr "Avanzate"
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:718
+msgid "View Contacts"
+msgstr "Visualizza i contatti"
 
-#: ../../mod/admin.php:466
-msgid "Performance"
-msgstr ""
+#: ../../mod/notes.php:44 ../../boot.php:1892
+msgid "Personal Notes"
+msgstr "Note personali"
 
-#: ../../mod/admin.php:471
-msgid "Banner/Logo"
-msgstr "Banner/Logo"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr "Tocca/Pungola"
 
-#: ../../mod/admin.php:472
-msgid "System language"
-msgstr "Lingua di sistema"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "tocca, pungola o fai altre cose a qualcuno"
 
-#: ../../mod/admin.php:473
-msgid "System theme"
-msgstr "Tema di sistema"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "Destinatario"
 
-#: ../../mod/admin.php:473
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr ""
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "Scegli cosa vuoi fare al destinatario"
 
-#: ../../mod/admin.php:474
-msgid "Mobile system theme"
-msgstr ""
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Rendi questo post privato"
 
-#: ../../mod/admin.php:474
-msgid "Theme for mobile devices"
-msgstr ""
+#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Elenco globale"
 
-#: ../../mod/admin.php:475
-msgid "SSL link policy"
-msgstr "Gestione link SSL"
+#: ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Cerca nel sito"
 
-#: ../../mod/admin.php:475
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "Determina se i link generati devono essere forzati a usare SSL"
+#: ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Elenco del sito"
 
-#: ../../mod/admin.php:476
-msgid "'Share' element"
-msgstr ""
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Genere:"
 
-#: ../../mod/admin.php:476
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr ""
+#: ../../mod/directory.php:136 ../../boot.php:1408
+#: ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Genere:"
 
-#: ../../mod/admin.php:477
-msgid "Maximum image size"
-msgstr "Massima dimensione immagini"
+#: ../../mod/directory.php:138 ../../boot.php:1411
+#: ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Stato:"
 
-#: ../../mod/admin.php:477
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."
+#: ../../mod/directory.php:140 ../../boot.php:1413
+#: ../../include/profile_advanced.php:48
+msgid "Homepage:"
+msgstr "Homepage:"
 
-#: ../../mod/admin.php:478
-msgid "Maximum image length"
-msgstr ""
+#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58
+msgid "About:"
+msgstr "Informazioni:"
 
-#: ../../mod/admin.php:478
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr ""
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
 
-#: ../../mod/admin.php:479
-msgid "JPEG image quality"
-msgstr ""
+#: ../../mod/localtime.php:12 ../../include/event.php:11
+#: ../../include/bb2diaspora.php:393
+msgid "l F d, Y \\@ g:i A"
+msgstr "l d F Y \\@ G:i"
+
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversione Ora"
 
-#: ../../mod/admin.php:479
+#: ../../mod/localtime.php:26
 msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti."
 
-#: ../../mod/admin.php:481
-msgid "Register policy"
-msgstr "Politica di registrazione"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Ora UTC: %s"
 
-#: ../../mod/admin.php:482
-msgid "Maximum Daily Registrations"
-msgstr ""
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso orario corrente: %s"
 
-#: ../../mod/admin.php:482
-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/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Ora locale convertita: %s"
 
-#: ../../mod/admin.php:483
-msgid "Register text"
-msgstr "Testo registrazione"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selezionare il tuo fuso orario:"
 
-#: ../../mod/admin.php:483
-msgid "Will be displayed prominently on the registration page."
-msgstr "Sarà mostrato ben visibile nella pagina di registrazione."
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Inviato!"
 
-#: ../../mod/admin.php:484
-msgid "Accounts abandoned after x days"
-msgstr "Account abbandonati dopo x giorni"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
+
+#: ../../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 "Il ridimensionamento del'immagine [%s] è fallito."
 
-#: ../../mod/admin.php:484
+#: ../../mod/profile_photo.php:118
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
 
-#: ../../mod/admin.php:485
-msgid "Allowed friend domains"
-msgstr "Domini amici consentiti"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Impossibile elaborare l'immagine"
 
-#: ../../mod/admin.php:485
-msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Carica un file:"
 
-#: ../../mod/admin.php:486
-msgid "Allowed email domains"
-msgstr "Domini email consentiti"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Seleziona un profilo:"
 
-#: ../../mod/admin.php:486
-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 "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Carica"
 
-#: ../../mod/admin.php:487
-msgid "Block public"
-msgstr "Blocca pagine pubbliche"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "salta questo passaggio"
 
-#: ../../mod/admin.php:487
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "Seleziona per bloccare l'accesso pubblico a tutte le pagine personali di questo sito, a meno di essere loggato."
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "seleziona una foto dai tuoi album"
 
-#: ../../mod/admin.php:488
-msgid "Force publish"
-msgstr "Forza publicazione"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Ritaglia immagine"
 
-#: ../../mod/admin.php:488
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Ritaglia l'imagine per una visualizzazione migliore."
 
-#: ../../mod/admin.php:489
-msgid "Global directory update URL"
-msgstr "URL aggiornamento Elenco Globale"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Finito"
 
-#: ../../mod/admin.php:489
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato."
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Immagine caricata con successo."
 
-#: ../../mod/admin.php:490
-msgid "Allow threaded items"
-msgstr ""
+#: ../../mod/install.php:117
+msgid "Friendica Social Communications Server - Setup"
+msgstr "Friendica Social Communications Server - Setup"
 
-#: ../../mod/admin.php:490
-msgid "Allow infinite level threading for items on this site."
-msgstr ""
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr " Impossibile collegarsi con il database."
 
-#: ../../mod/admin.php:491
-msgid "Private posts by default for new users"
-msgstr ""
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Impossibile creare le tabelle."
 
-#: ../../mod/admin.php:491
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "Il tuo Friendica è stato installato."
+
+#: ../../mod/install.php:138
 msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
 
-#: ../../mod/admin.php:493
-msgid "Block multiple registrations"
-msgstr "Blocca registrazioni multiple"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:506
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Leggi il file \"INSTALL.txt\"."
 
-#: ../../mod/admin.php:493
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "Non permette all'utente di registrare account extra da usare come pagine."
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Controllo sistema"
 
-#: ../../mod/admin.php:494
-msgid "OpenID support"
-msgstr "Supporto OpenID"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Controlla ancora"
 
-#: ../../mod/admin.php:494
-msgid "OpenID support for registration and logins."
-msgstr "Supporta OpenID per la registrazione e il login"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Connessione al database"
 
-#: ../../mod/admin.php:495
-msgid "Fullname check"
-msgstr "Controllo nome completo"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
 
-#: ../../mod/admin.php:495
+#: ../../mod/install.php:229
 msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "Forza gli utenti a registrarsi con uno spazio tra il nome e il cognome in \"Nome completo\", come misura antispam"
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
 
-#: ../../mod/admin.php:496
-msgid "UTF-8 Regular expressions"
-msgstr "Espressioni regolari UTF-8"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
 
-#: ../../mod/admin.php:496
-msgid "Use PHP UTF8 regular expressions"
-msgstr "Usa le espressioni regolari PHP in UTF8"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Nome del database server"
 
-#: ../../mod/admin.php:497
-msgid "Show Community Page"
-msgstr "Mostra pagina Comunità"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Nome utente database"
 
-#: ../../mod/admin.php:497
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "Mostra una pagina Comunità con tutti i recenti messaggi pubblici su questo sito."
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Password utente database"
 
-#: ../../mod/admin.php:498
-msgid "Enable OStatus support"
-msgstr "Abilita supporto OStatus"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Nome database"
 
-#: ../../mod/admin.php:498
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Indirizzo email dell'amministratore del sito"
+
+#: ../../mod/install.php:238 ../../mod/install.php:277
 msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati."
+"Your account email address must match this in order to use the web admin "
+"panel."
+msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
 
-#: ../../mod/admin.php:499
-msgid "Enable Diaspora support"
-msgstr "Abilita il supporto a Diaspora"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
 
-#: ../../mod/admin.php:499
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "Fornisce compatibilità con il network Diaspora."
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Impostazioni sito"
 
-#: ../../mod/admin.php:500
-msgid "Only allow Friendica contacts"
-msgstr "Permetti solo contatti Friendica"
+#: ../../mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
 
-#: ../../mod/admin.php:500
+#: ../../mod/install.php:321
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "Tutti i contatti devono usare il protocollo di Friendica. Tutti gli altri protocolli sono disabilitati."
+"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 "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
 
-#: ../../mod/admin.php:501
-msgid "Verify SSL"
-msgstr "Verifica SSL"
+#: ../../mod/install.php:325
+msgid "PHP executable path"
+msgstr "Percorso eseguibile PHP"
 
-#: ../../mod/admin.php:501
+#: ../../mod/install.php:325
 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 "Se vuoi, puoi abilitare il controllo rigoroso dei certificati.Questo significa che non potrai collegarti (del tutto) con siti con certificati SSL auto-firmati."
-
-#: ../../mod/admin.php:502
-msgid "Proxy user"
-msgstr "Utente Proxy"
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
 
-#: ../../mod/admin.php:503
-msgid "Proxy URL"
-msgstr "URL Proxy"
+#: ../../mod/install.php:330
+msgid "Command line PHP"
+msgstr "PHP da riga di comando"
 
-#: ../../mod/admin.php:504
-msgid "Network timeout"
-msgstr "Timeout rete"
+#: ../../mod/install.php:339
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
 
-#: ../../mod/admin.php:504
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "Valore in secondi. Imposta a 0 per illimitato (non raccomandato)."
+#: ../../mod/install.php:340
+msgid "This is required for message delivery to work."
+msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
 
-#: ../../mod/admin.php:505
-msgid "Delivery interval"
-msgstr "Intervallo di invio"
+#: ../../mod/install.php:342
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../mod/admin.php:505
+#: ../../mod/install.php:363
 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 "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati."
-
-#: ../../mod/admin.php:506
-msgid "Poll interval"
-msgstr ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
 
-#: ../../mod/admin.php:506
+#: ../../mod/install.php:364
 msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../mod/admin.php:507
-msgid "Maximum Load Average"
-msgstr ""
+#: ../../mod/install.php:366
+msgid "Generate encryption keys"
+msgstr "Genera chiavi di criptazione"
 
-#: ../../mod/admin.php:507
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
+#: ../../mod/install.php:373
+msgid "libCurl PHP module"
+msgstr "modulo PHP libCurl"
 
-#: ../../mod/admin.php:509
-msgid "Use MySQL full text engine"
-msgstr ""
+#: ../../mod/install.php:374
+msgid "GD graphics PHP module"
+msgstr "modulo PHP GD graphics"
 
-#: ../../mod/admin.php:509
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr ""
+#: ../../mod/install.php:375
+msgid "OpenSSL PHP module"
+msgstr "modulo PHP OpenSSL"
 
-#: ../../mod/admin.php:510
-msgid "Path to item cache"
-msgstr ""
+#: ../../mod/install.php:376
+msgid "mysqli PHP module"
+msgstr "modulo PHP mysqli"
 
-#: ../../mod/admin.php:511
-msgid "Cache duration in seconds"
-msgstr ""
+#: ../../mod/install.php:377
+msgid "mb_string PHP module"
+msgstr "modulo PHP mb_string"
 
-#: ../../mod/admin.php:511
+#: ../../mod/install.php:382 ../../mod/install.php:384
+msgid "Apache mod_rewrite module"
+msgstr "Modulo mod_rewrite di Apache"
+
+#: ../../mod/install.php:382
 msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
 
-#: ../../mod/admin.php:512
-msgid "Path for lock file"
-msgstr ""
+#: ../../mod/install.php:390
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
 
-#: ../../mod/admin.php:513
-msgid "Temp path"
-msgstr ""
+#: ../../mod/install.php:394
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
 
-#: ../../mod/admin.php:514
-msgid "Base path to installation"
-msgstr ""
+#: ../../mod/install.php:398
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
 
-#: ../../mod/admin.php:532
-msgid "Update has been marked successful"
-msgstr "L'aggiornamento è stato segnato come  di successo"
+#: ../../mod/install.php:402
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
 
-#: ../../mod/admin.php:542
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema."
+#: ../../mod/install.php:406
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
 
-#: ../../mod/admin.php:545
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "L'aggiornamento %s è stato applicato con successo"
+#: ../../mod/install.php:423
+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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
 
-#: ../../mod/admin.php:549
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine."
+#: ../../mod/install.php:424
+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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
 
-#: ../../mod/admin.php:552
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "La funzione di aggiornamento %s non puo' essere trovata."
+#: ../../mod/install.php:425
+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 "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica"
 
-#: ../../mod/admin.php:567
-msgid "No failed updates."
-msgstr "Nessun aggiornamento fallito."
+#: ../../mod/install.php:426
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni."
 
-#: ../../mod/admin.php:571
-msgid "Failed Updates"
-msgstr "Aggiornamenti falliti"
+#: ../../mod/install.php:429
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php è scrivibile"
 
-#: ../../mod/admin.php:572
+#: ../../mod/install.php:439
 msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il rendering."
 
-#: ../../mod/admin.php:573
-msgid "Mark success (if update was manually applied)"
-msgstr ""
+#: ../../mod/install.php:440
+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 "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica."
 
-#: ../../mod/admin.php:574
-msgid "Attempt to execute this update step automatically"
-msgstr ""
+#: ../../mod/install.php:441
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella."
 
-#: ../../mod/admin.php:599
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s utente bloccato/sbloccato"
-msgstr[1] "%s utenti bloccati/sbloccati"
+#: ../../mod/install.php:442
+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 "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene."
 
-#: ../../mod/admin.php:606
-#, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s utente cancellato"
-msgstr[1] "%s utenti cancellati"
+#: ../../mod/install.php:445
+msgid "view/smarty3 is writable"
+msgstr "view/smarty3 è scrivibile"
 
-#: ../../mod/admin.php:645
-#, php-format
-msgid "User '%s' deleted"
-msgstr "Utente '%s' cancellato"
+#: ../../mod/install.php:457
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server."
 
-#: ../../mod/admin.php:653
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "Utente '%s' sbloccato"
+#: ../../mod/install.php:459
+msgid "Url rewrite is working"
+msgstr "La riscrittura degli url funziona"
 
-#: ../../mod/admin.php:653
-#, php-format
-msgid "User '%s' blocked"
-msgstr "Utente '%s' bloccato"
+#: ../../mod/install.php:469
+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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."
 
-#: ../../mod/admin.php:729
-msgid "select all"
-msgstr "seleziona tutti"
+#: ../../mod/install.php:493
+msgid "Errors encountered creating database tables."
+msgstr "La creazione delle tabelle del database ha generato errori."
 
-#: ../../mod/admin.php:730
-msgid "User registrations waiting for confirm"
-msgstr "Richieste di registrazione in attesa di conferma"
+#: ../../mod/install.php:504
+msgid "<h1>What next</h1>"
+msgstr "<h1>Cosa fare ora</h1>"
 
-#: ../../mod/admin.php:731
-msgid "Request date"
-msgstr "Data richiesta"
+#: ../../mod/install.php:505
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
 
-#: ../../mod/admin.php:731 ../../mod/admin.php:741 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/crepair.php:148
-msgid "Name"
-msgstr "Nome"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Gruppo creato."
 
-#: ../../mod/admin.php:732
-msgid "No registrations."
-msgstr "Nessuna registrazione."
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Impossibile creare il gruppo."
 
-#: ../../mod/admin.php:733 ../../mod/notifications.php:161
-#: ../../mod/notifications.php:208
-msgid "Approve"
-msgstr "Approva"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Gruppo non trovato."
 
-#: ../../mod/admin.php:734
-msgid "Deny"
-msgstr "Nega"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Il nome del gruppo è cambiato."
 
-#: ../../mod/admin.php:736 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Block"
-msgstr "Blocca"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Crea un gruppo di amici/contatti."
 
-#: ../../mod/admin.php:737 ../../mod/contacts.php:353
-#: ../../mod/contacts.php:412
-msgid "Unblock"
-msgstr "Sblocca"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nome del gruppo:"
 
-#: ../../mod/admin.php:738
-msgid "Site admin"
-msgstr ""
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Gruppo rimosso."
 
-#: ../../mod/admin.php:741
-msgid "Register date"
-msgstr "Data registrazione"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Impossibile rimuovere il gruppo."
 
-#: ../../mod/admin.php:741
-msgid "Last login"
-msgstr "Ultimo accesso"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Modifica gruppo"
 
-#: ../../mod/admin.php:741
-msgid "Last item"
-msgstr "Ultimo elemento"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Membri"
 
-#: ../../mod/admin.php:741
-msgid "Account"
-msgstr "Account"
+#: ../../mod/content.php:119 ../../mod/network.php:596
+msgid "No such group"
+msgstr "Nessun gruppo"
 
-#: ../../mod/admin.php:743
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?"
+#: ../../mod/content.php:130 ../../mod/network.php:607
+msgid "Group is empty"
+msgstr "Il gruppo è vuoto"
 
-#: ../../mod/admin.php:744
-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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?"
+#: ../../mod/content.php:134 ../../mod/network.php:611
+msgid "Group: "
+msgstr "Gruppo: "
 
-#: ../../mod/admin.php:785
-#, php-format
-msgid "Plugin %s disabled."
-msgstr "Plugin %s disabilitato."
+#: ../../mod/content.php:520 ../../include/conversation.php:662
+msgid "View in context"
+msgstr "Vedi nel contesto"
+
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Account approvato."
 
-#: ../../mod/admin.php:789
+#: ../../mod/regmod.php:100
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "Plugin %s abilitato."
+msgid "Registration revoked for %s"
+msgstr "Registrazione revocata per %s"
 
-#: ../../mod/admin.php:799 ../../mod/admin.php:1001
-msgid "Disable"
-msgstr "Disabilita"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Accedi."
 
-#: ../../mod/admin.php:801 ../../mod/admin.php:1003
-msgid "Enable"
-msgstr "Abilita"
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profili corrispondenti"
 
-#: ../../mod/admin.php:823 ../../mod/admin.php:1032
-msgid "Toggle"
-msgstr "Inverti"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
 
-#: ../../mod/admin.php:831 ../../mod/admin.php:1042
-msgid "Author: "
-msgstr "Autore: "
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "è interessato a:"
 
-#: ../../mod/admin.php:832 ../../mod/admin.php:1043
-msgid "Maintainer: "
-msgstr "Manutentore: "
+#: ../../mod/item.php:105
+msgid "Unable to locate original post."
+msgstr "Impossibile trovare il messaggio originale."
 
-#: ../../mod/admin.php:961
-msgid "No themes found."
-msgstr "Nessun tema trovato."
+#: ../../mod/item.php:307
+msgid "Empty post discarded."
+msgstr "Messaggio vuoto scartato."
 
-#: ../../mod/admin.php:1024
-msgid "Screenshot"
-msgstr "Anteprima"
+#: ../../mod/item.php:869
+msgid "System error. Post not saved."
+msgstr "Errore di sistema. Messaggio non salvato."
 
-#: ../../mod/admin.php:1072
-msgid "[Experimental]"
-msgstr "[Sperimentale]"
+#: ../../mod/item.php:894
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
 
-#: ../../mod/admin.php:1073
-msgid "[Unsupported]"
-msgstr "[Non supportato]"
+#: ../../mod/item.php:896
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Puoi visitarli online su %s"
 
-#: ../../mod/admin.php:1100
-msgid "Log settings updated."
-msgstr "Impostazioni Log aggiornate."
+#: ../../mod/item.php:897
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
 
-#: ../../mod/admin.php:1156
-msgid "Clear"
-msgstr "Pulisci"
+#: ../../mod/item.php:901
+#, php-format
+msgid "%s posted an update."
+msgstr "%s ha inviato un aggiornamento."
 
-#: ../../mod/admin.php:1162
-msgid "Debugging"
-msgstr "Debugging"
+#: ../../mod/mood.php:62 ../../include/conversation.php:227
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s al momento è %2$s"
 
-#: ../../mod/admin.php:1163
-msgid "Log file"
-msgstr "File di Log"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Umore"
 
-#: ../../mod/admin.php:1163
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "Deve essere scrivibile dal server web. Relativo alla tua directory Friendica."
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Condividi il tuo umore con i tuoi amici"
 
-#: ../../mod/admin.php:1164
-msgid "Log level"
-msgstr "Livello di Log"
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "Cerca risultati per:"
 
-#: ../../mod/admin.php:1213 ../../mod/contacts.php:409
-msgid "Update now"
-msgstr "Aggiorna adesso"
+#: ../../mod/network.php:234 ../../include/group.php:275
+msgid "add"
+msgstr "aggiungi"
 
-#: ../../mod/admin.php:1214
-msgid "Close"
-msgstr "Chiudi"
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "Ordina per commento"
 
-#: ../../mod/admin.php:1220
-msgid "FTP Host"
-msgstr "Indirizzo FTP"
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "Ordina per data commento"
 
-#: ../../mod/admin.php:1221
-msgid "FTP Path"
-msgstr "Percorso FTP"
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "Ordina per invio"
 
-#: ../../mod/admin.php:1222
-msgid "FTP User"
-msgstr "Utente FTP"
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "Ordina per data messaggio"
 
-#: ../../mod/admin.php:1223
-msgid "FTP Password"
-msgstr "Pasword FTP"
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
+msgstr "Messaggi che ti citano o coinvolgono"
 
-#: ../../mod/photos.php:51 ../../boot.php:1857
-msgid "Photo Albums"
-msgstr "Album foto"
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "Nuovo"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
-msgid "Upload New Photos"
-msgstr "Carica nuove foto"
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
+msgstr "Activity Stream - per data"
 
-#: ../../mod/photos.php:79 ../../mod/settings.php:23
-msgid "everybody"
-msgstr "tutti"
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "Links condivisi"
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "I dati di questo contatto non sono disponibili"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "Link Interessanti"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album non trovato."
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "Preferiti"
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
-msgid "Delete Album"
-msgstr "Rimuovi album"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Messaggi preferiti"
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr ""
+#: ../../mod/network.php:546
+#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
+msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
 
-#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
-msgid "Delete Photo"
-msgstr "Rimuovi foto"
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
 
-#: ../../mod/photos.php:284
-msgid "Do you really want to delete this photo?"
-msgstr ""
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "Contatto:"
 
-#: ../../mod/photos.php:653
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr ""
+#: ../../mod/network.php:623
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
 
-#: ../../mod/photos.php:653
-msgid "a photo"
-msgstr ""
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "Contatto non valido."
 
-#: ../../mod/photos.php:766
-msgid "Image file is empty."
-msgstr "Il file dell'immagine è vuoto."
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "Contatto modificato."
 
-#: ../../mod/photos.php:798 ../../mod/wall_upload.php:112
-#: ../../mod/profile_photo.php:153
-msgid "Unable to process image."
-msgstr "Impossibile caricare l'immagine."
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "Le modifiche al contatto non sono state salvate."
 
-#: ../../mod/photos.php:825 ../../mod/wall_upload.php:138
-#: ../../mod/profile_photo.php:301
-msgid "Image upload failed."
-msgstr "Caricamento immagine fallito."
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "Ripara il contatto"
 
-#: ../../mod/photos.php:921
-msgid "No photos selected"
-msgstr "Nessuna foto selezionata"
+#: ../../mod/crepair.php:137
+msgid ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"
 
-#: ../../mod/photos.php:1022
-msgid "Access to this item is restricted."
-msgstr "Questo oggetto non è visibile a tutti."
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."
 
-#: ../../mod/photos.php:1085
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "Hai usato %1$.2f MBytes su %2$.2f disponibili."
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Ritorna alla modifica contatto"
 
-#: ../../mod/photos.php:1120
-msgid "Upload Photos"
-msgstr "Carica foto"
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "Nome utente"
 
-#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
-msgid "New album name: "
-msgstr "Nome nuovo album: "
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@TagName - al posto del nome utente"
 
-#: ../../mod/photos.php:1125
-msgid "or existing album name: "
-msgstr "o nome di un album esistente: "
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "URL dell'utente"
 
-#: ../../mod/photos.php:1126
-msgid "Do not show a status post for this upload"
-msgstr "Non creare un post per questo upload"
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "URL Richiesta Amicizia"
 
-#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
-msgid "Permissions"
-msgstr "Permessi"
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "URL Conferma Amicizia"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
-#: ../../mod/settings.php:1070
-msgid "Show to Groups"
-msgstr ""
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "URL Notifiche"
 
-#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
-#: ../../mod/settings.php:1071
-msgid "Show to Contacts"
-msgstr ""
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "URL Feed"
 
-#: ../../mod/photos.php:1139
-msgid "Private Photo"
-msgstr ""
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "Nuova foto da questo URL"
 
-#: ../../mod/photos.php:1140
-msgid "Public Photo"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
+#: ../../include/nav.php:143
+msgid "Your posts and conversations"
+msgstr "I tuoi messaggi e le tue conversazioni"
 
-#: ../../mod/photos.php:1207
-msgid "Edit Album"
-msgstr "Modifica album"
+#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
+msgid "Your profile page"
+msgstr "Pagina del tuo profilo"
 
-#: ../../mod/photos.php:1213
-msgid "Show Newest First"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "I tuoi contatti"
 
-#: ../../mod/photos.php:1215
-msgid "Show Oldest First"
-msgstr ""
+#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
+msgid "Your photos"
+msgstr "Le tue foto"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
-msgid "View Photo"
-msgstr "Vedi foto"
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
+msgid "Your events"
+msgstr "I tuoi eventi"
 
-#: ../../mod/photos.php:1283
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Permesso negato. L'accesso a questo elemento può essere limitato."
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
+msgid "Personal notes"
+msgstr "Note personali"
 
-#: ../../mod/photos.php:1285
-msgid "Photo not available"
-msgstr "Foto non disponibile"
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
+msgid "Your personal photos"
+msgstr "Le tue foto personali"
 
-#: ../../mod/photos.php:1341
-msgid "View photo"
-msgstr "Vedi foto"
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/config.php:163
+msgid "Community Pages"
+msgstr "Pagine Comunitarie"
 
-#: ../../mod/photos.php:1341
-msgid "Edit photo"
-msgstr "Modifica foto"
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+#: ../../view/theme/diabook/config.php:165
+msgid "Community Profiles"
+msgstr "Profili Comunità"
 
-#: ../../mod/photos.php:1342
-msgid "Use as profile photo"
-msgstr "Usa come foto del profilo"
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+#: ../../view/theme/diabook/config.php:170
+msgid "Last users"
+msgstr "Ultimi utenti"
 
-#: ../../mod/photos.php:1348 ../../mod/content.php:620
-#: ../../object/Item.php:106
-msgid "Private Message"
-msgstr "Messaggio privato"
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+#: ../../view/theme/diabook/config.php:172
+msgid "Last likes"
+msgstr "Ultimi \"mi piace\""
 
-#: ../../mod/photos.php:1367
-msgid "View Full Size"
-msgstr "Vedi dimensione intera"
+#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+msgid "event"
+msgstr "l'evento"
 
-#: ../../mod/photos.php:1441
-msgid "Tags: "
-msgstr "Tag: "
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+#: ../../view/theme/diabook/config.php:171
+msgid "Last photos"
+msgstr "Ultime foto"
 
-#: ../../mod/photos.php:1444
-msgid "[Remove any tag]"
-msgstr "[Rimuovi tutti i tag]"
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+#: ../../view/theme/diabook/config.php:168
+msgid "Find Friends"
+msgstr "Trova Amici"
 
-#: ../../mod/photos.php:1484
-msgid "Rotate CW (right)"
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
+msgstr "Elenco Locale"
+
+#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
+msgid "Similar Interests"
+msgstr "Interessi simili"
+
+#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
+msgid "Invite Friends"
+msgstr "Invita amici"
+
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/config.php:164
+msgid "Earth Layers"
 msgstr ""
 
-#: ../../mod/photos.php:1485
-msgid "Rotate CCW (left)"
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
 msgstr ""
 
-#: ../../mod/photos.php:1487
-msgid "New album name"
-msgstr "Nuovo nome dell'album"
+#: ../../view/theme/diabook/theme.php:578
+#: ../../view/theme/diabook/config.php:161
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
 
-#: ../../mod/photos.php:1490
-msgid "Caption"
-msgstr "Titolo"
+#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/config.php:162
+msgid "Set latitude (Y) for Earth Layers"
+msgstr ""
 
-#: ../../mod/photos.php:1492
-msgid "Add a Tag"
-msgstr "Aggiungi tag"
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+#: ../../view/theme/diabook/config.php:166
+msgid "Help or @NewHere ?"
+msgstr "Serve aiuto? Sei nuovo?"
 
-#: ../../mod/photos.php:1496
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+#: ../../view/theme/diabook/config.php:167
+msgid "Connect Services"
+msgstr "Servizi di conessione"
 
-#: ../../mod/photos.php:1505
-msgid "Private photo"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
 msgstr ""
 
-#: ../../mod/photos.php:1506
-msgid "Public photo"
+#: ../../view/theme/diabook/theme.php:609
+#: ../../view/theme/diabook/config.php:159
+msgid "Set twitter search term"
 msgstr ""
 
-#: ../../mod/photos.php:1526 ../../mod/content.php:684
-#: ../../object/Item.php:204
-msgid "I like this (toggle)"
-msgstr "Mi piace (clic per cambiare)"
-
-#: ../../mod/photos.php:1527 ../../mod/content.php:685
-#: ../../object/Item.php:205
-msgid "I don't like this (toggle)"
-msgstr "Non mi piace (clic per cambiare)"
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
+msgid "don't show"
+msgstr "non mostrare"
 
-#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
-#: ../../mod/photos.php:1673 ../../mod/content.php:707
-#: ../../object/Item.php:601
-msgid "This is you"
-msgstr "Questo sei tu"
+#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
+msgid "show"
+msgstr "mostra"
 
-#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
-#: ../../mod/photos.php:1675 ../../mod/content.php:709
-#: ../../object/Item.php:290 ../../object/Item.php:603 ../../boot.php:641
-msgid "Comment"
-msgstr "Commento"
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
+msgstr ""
 
-#: ../../mod/photos.php:1781
-msgid "View Album"
-msgstr "Sfoglia l'album"
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+#: ../../view/theme/cleanzero/config.php:82
+msgid "Theme settings"
+msgstr "Impostazioni tema"
 
-#: ../../mod/photos.php:1790
-msgid "Recent Photos"
-msgstr "Foto recenti"
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+#: ../../view/theme/cleanzero/config.php:84
+msgid "Set font-size for posts and comments"
+msgstr "Dimensione del carattere di messaggi e commenti"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Amici di %s"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "Altezza della linea di testo di messaggi e commenti"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Nessun amico da visualizzare."
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr ""
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autorizza la connessione dell'applicazione"
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr ""
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:"
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Effettua il login per continuare."
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+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 "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Imposta schema colori"
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Dettagli della registrazione di %s"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Allineamento"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Registrazione completata. Controlla la tua mail per ulteriori informazioni."
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Sinistra"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Errore nell'invio del messaggio email. Questo è il messaggio non inviato."
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Centrato"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "La tua registrazione non puo' essere elaborata."
+#: ../../view/theme/quattro/config.php:68
+#: ../../view/theme/cleanzero/config.php:86
+msgid "Color scheme"
+msgstr "Schema colori"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Richiesta di registrazione su %s"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "Dimensione caratteri post"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "Dimensione caratteri nelle aree di testo"
 
-#: ../../mod/register.php:192 ../../mod/uimport.php:50
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Questo sito ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Se vuoi, puoi riempire questo modulo tramite OpenID, inserendo il tuo OpenID e cliccando 'Registra'."
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "Imposta la larghezza del tema"
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Se non hai familiarità con OpenID, lascia il campo vuoto e riempi il resto della maschera."
+#: ../../boot.php:650
+msgid "Delete this item?"
+msgstr "Cancellare questo elemento?"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Il tuo OpenID (opzionale): "
+#: ../../boot.php:653
+msgid "show fewer"
+msgstr "mostra di meno"
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Includi il tuo profilo nell'elenco pubblico?"
+#: ../../boot.php:920
+#, php-format
+msgid "Update %s failed. See error logs."
+msgstr "aggiornamento %s fallito. Guarda i log di errore."
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "La registrazione su questo sito è solo su invito."
+#: ../../boot.php:922
+#, php-format
+msgid "Update Error at %s"
+msgstr "Errore aggiornamento a %s"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "L'ID del tuo invito:"
+#: ../../boot.php:1032
+msgid "Create a New Account"
+msgstr "Crea un nuovo account"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Il tuo nome completo (es. Mario Rossi): "
+#: ../../boot.php:1057 ../../include/nav.php:73
+msgid "Logout"
+msgstr "Esci"
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "Il tuo indirizzo email: "
+#: ../../boot.php:1058 ../../include/nav.php:91
+msgid "Login"
+msgstr "Accedi"
 
-#: ../../mod/register.php:271
-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 "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@$sitename</strong>'."
+#: ../../boot.php:1060
+msgid "Nickname or Email address: "
+msgstr "Nome utente o indirizzo email: "
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "Scegli un nome utente: "
+#: ../../boot.php:1061
+msgid "Password: "
+msgstr "Password: "
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Applicazioni"
+#: ../../boot.php:1062
+msgid "Remember me"
+msgstr "Ricordati di me"
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Nessuna applicazione installata."
+#: ../../boot.php:1065
+msgid "Or login using OpenID: "
+msgstr "O entra con OpenID:"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Account approvato."
+#: ../../boot.php:1071
+msgid "Forgot your password?"
+msgstr "Hai dimenticato la password?"
 
-#: ../../mod/regmod.php:100
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrazione revocata per %s"
+#: ../../boot.php:1074
+msgid "Website Terms of Service"
+msgstr "Condizioni di servizio del sito web "
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Accedi."
+#: ../../boot.php:1075
+msgid "terms of service"
+msgstr "condizioni del servizio"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Oggetto non disponibile."
+#: ../../boot.php:1077
+msgid "Website Privacy Policy"
+msgstr "Politiche di privacy del sito"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Oggetto non trovato."
+#: ../../boot.php:1078
+msgid "privacy policy"
+msgstr "politiche di privacy"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Rimuovi il mio account"
+#: ../../boot.php:1207
+msgid "Requested account is not available."
+msgstr "L'account richiesto non è disponibile."
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo."
+#: ../../boot.php:1286 ../../boot.php:1390
+msgid "Edit profile"
+msgstr "Modifica il profilo"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Inserisci la tua password per verifica:"
+#: ../../boot.php:1352
+msgid "Message"
+msgstr "Messaggio"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "Testo sorgente (bbcode):"
+#: ../../boot.php:1360 ../../include/nav.php:169
+msgid "Profiles"
+msgstr "Profili"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr ""
+#: ../../boot.php:1360
+msgid "Manage/edit profiles"
+msgstr "Gestisci/modifica i profili"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr ""
+#: ../../boot.php:1489 ../../boot.php:1575
+msgid "g A l F d"
+msgstr "g A l d F"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr ""
+#: ../../boot.php:1490 ../../boot.php:1576
+msgid "F d"
+msgstr "d F"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr ""
+#: ../../boot.php:1535 ../../boot.php:1616
+msgid "[today]"
+msgstr "[oggi]"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr ""
+#: ../../boot.php:1547
+msgid "Birthday Reminders"
+msgstr "Promemoria compleanni"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr ""
+#: ../../boot.php:1548
+msgid "Birthdays this week:"
+msgstr "Compleanni questa settimana:"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr ""
+#: ../../boot.php:1609
+msgid "[No description]"
+msgstr "[Nessuna descrizione]"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr ""
+#: ../../boot.php:1627
+msgid "Event Reminders"
+msgstr "Promemoria"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr ""
+#: ../../boot.php:1628
+msgid "Events this week:"
+msgstr "Eventi di questa settimana:"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr ""
+#: ../../boot.php:1861 ../../include/nav.php:76
+msgid "Status"
+msgstr "Stato"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr ""
+#: ../../boot.php:1864
+msgid "Status Messages and Posts"
+msgstr "Messaggi di stato e post"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Amici in comune"
+#: ../../boot.php:1871
+msgid "Profile Details"
+msgstr "Dettagli del profilo"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr ""
+#: ../../boot.php:1888
+msgid "Events and Calendar"
+msgstr "Eventi e calendario"
 
-#: ../../mod/search.php:21 ../../mod/network.php:224
-msgid "Remove term"
-msgstr "Rimuovi termine"
+#: ../../boot.php:1895
+msgid "Only You Can See This"
+msgstr "Solo tu puoi vedere questo"
 
-#: ../../mod/search.php:162 ../../mod/search.php:188
-#: ../../mod/community.php:61 ../../mod/community.php:86
-msgid "No results."
-msgstr "Nessun risultato."
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "Funzionalità generali"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Non disponibile."
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "Profili multipli"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Non è possibile accedere al contatto."
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "Possibilità di creare profili multipli"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Non riesco a trovare il profilo selezionato."
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "Funzionalità di composizione dei post"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Contatto aggiornato."
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "Editor visuale"
 
-#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
-msgid "Failed to update contact record."
-msgstr "Errore nell'aggiornamento del contatto."
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "Abilita l'editor visuale"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Il contatto è stato bloccato"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "Anteprima dei post"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Il contatto è stato sbloccato"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Il contatto è ignorato"
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr "Widget della barra laterale nella pagina Rete"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Il contatto non è più ignorato"
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "Cerca per data"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr ""
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr "Permette di filtrare i post per data"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "Il contatto è stato dearchiviato"
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "Filtra gruppi"
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr ""
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "Abilita il widget per filtrare i post solo per il gruppo selezionato"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "Il contatto è stato rimosso."
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr "Filtro reti"
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Sei amico reciproco con %s"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "Abilita il widget per mostare i post solo per la rete selezionata"
 
-#: ../../mod/contacts.php:305
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Stai condividendo con %s"
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr "Salva i termini cercati per riutilizzarli"
 
-#: ../../mod/contacts.php:310
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s sta condividendo con te"
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr "Schede pagina Rete"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "Le comunicazioni private non sono disponibili per questo contatto."
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr "Scheda Personali"
 
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Mai"
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "Abilita la scheda per mostrare solo i post a cui hai partecipato"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(L'aggiornamento è stato completato)"
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr "Scheda Nuovi"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(L'aggiornamento non è stato completato)"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Suggerisci amici"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr "Scheda Link Condivisi"
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "Tipo di rete: %s"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "Abilita la scheda per mostrare solo i post che contengono link"
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Vedi tutti i contatti"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr "Strumenti per mesasggi/commenti"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr "Inverti stato \"Blocca\""
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr "Eliminazione multipla"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Non ignorare"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr "Seleziona ed elimina vari messagi e commenti in una volta sola"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
-msgid "Ignore"
-msgstr "Ignora"
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr "Modifica i post inviati"
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
-msgstr "Inverti stato \"Ignora\""
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr "Modifica e correggi messaggi e commenti dopo averli inviati"
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "Dearchivia"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "Aggiunta tag"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Archivia"
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr "Permette di aggiungere tag ai post già esistenti"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
-msgstr "Inverti stato \"Archiviato\""
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr "Cateorie post"
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Ripara"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "Aggiungi categorie ai tuoi post"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Impostazioni avanzate Contatto"
+#: ../../include/features.php:59 ../../include/contact_widgets.php:103
+msgid "Saved Folders"
+msgstr "Cartelle Salvate"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr ""
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr "Permette di archiviare i post in cartelle"
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Editor dei Contatti"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr "Non mi piace"
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Visibilità del profilo"
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr "Permetti di inviare \"non mi piace\" ai messaggi"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro."
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "Post preferiti"
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Informazioni / Note sul contatto"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr "Permette di segnare i post preferiti con una stella"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Modifica note contatto"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Uscita effettuata."
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Blocca/Sblocca contatto"
+#: ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto."
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignora il contatto"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Il messaggio riportato era:"
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "Impostazioni riparazione URL"
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
+msgid "Starts:"
+msgstr "Inizia:"
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Vedi conversazioni"
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
+msgid "Finishes:"
+msgstr "Finisce:"
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Rimuovi contatto"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F Y"
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "Ultimo aggiornamento:"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Aggiorna messaggi pubblici"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Compleanno:"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Bloccato"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Età:"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Ignorato"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "per %1$d %2$s"
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Al momento archiviato"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tag:"
 
-#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
-#: ../../mod/notifications.php:204
-msgid "Hide this contact from others"
-msgstr "Nascondi questo contatto agli altri"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religione:"
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili"
-
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Suggerimenti"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Interessi:"
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Suggerisci potenziali amici"
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informazioni su contatti e social network:"
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Tutti i contatti"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Interessi musicali:"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Mostra tutti i contatti"
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Libri, letteratura:"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Sbloccato"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "Televisione:"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Mostra solo contatti non bloccati"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/danza/cultura/intrattenimento:"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Bloccato"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Amore:"
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Mostra solo contatti bloccati"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Lavoro:"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Ignorato"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Scuola:"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Mostra solo contatti ignorati"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[nessun oggetto]"
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "Achiviato"
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "su Last.fm"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Mostra solo contatti archiviati"
+#: ../../include/text.php:276
+msgid "prev"
+msgstr "prec"
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Nascosto"
+#: ../../include/text.php:278
+msgid "first"
+msgstr "primo"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Mostra solo contatti nascosti"
+#: ../../include/text.php:307
+msgid "last"
+msgstr "ultimo"
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Amicizia reciproca"
+#: ../../include/text.php:310
+msgid "next"
+msgstr "succ"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "è un tuo fan"
+#: ../../include/text.php:328
+msgid "newer"
+msgstr "nuovi"
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "sei un fan di"
+#: ../../include/text.php:332
+msgid "older"
+msgstr "vecchi"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Cerca nei tuoi contatti"
+#: ../../include/text.php:697
+msgid "No contacts"
+msgstr "Nessun contatto"
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr ""
+#: ../../include/text.php:706
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d contatto"
+msgstr[1] "%d contatti"
 
-#: ../../mod/settings.php:40 ../../mod/uexport.php:14
-msgid "Display settings"
-msgstr "Impostazioni grafiche"
+#: ../../include/text.php:819
+msgid "poke"
+msgstr "stuzzica"
 
-#: ../../mod/settings.php:46 ../../mod/uexport.php:20
-msgid "Connector settings"
-msgstr "Impostazioni connettori"
+#: ../../include/text.php:819 ../../include/conversation.php:211
+msgid "poked"
+msgstr "toccato"
 
-#: ../../mod/settings.php:51 ../../mod/uexport.php:25
-msgid "Plugin settings"
-msgstr "Impostazioni plugin"
+#: ../../include/text.php:820
+msgid "ping"
+msgstr "invia un ping"
 
-#: ../../mod/settings.php:56 ../../mod/uexport.php:30
-msgid "Connected apps"
-msgstr "Applicazioni collegate"
+#: ../../include/text.php:820
+msgid "pinged"
+msgstr "inviato un ping"
 
-#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
-msgid "Export personal data"
-msgstr "Esporta dati personali"
+#: ../../include/text.php:821
+msgid "prod"
+msgstr "pungola"
 
-#: ../../mod/settings.php:66 ../../mod/uexport.php:40
-msgid "Remove account"
-msgstr "Rimuovi account"
+#: ../../include/text.php:821
+msgid "prodded"
+msgstr "pungolato"
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "Mancano alcuni dati importanti!"
+#: ../../include/text.php:822
+msgid "slap"
+msgstr "schiaffeggia"
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:586
-msgid "Update"
-msgstr "Aggiorna"
+#: ../../include/text.php:822
+msgid "slapped"
+msgstr "schiaffeggiato"
 
-#: ../../mod/settings.php:227
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Impossibile collegarsi all'account email con i parametri forniti."
+#: ../../include/text.php:823
+msgid "finger"
+msgstr "tocca"
 
-#: ../../mod/settings.php:232
-msgid "Email settings updated."
-msgstr "Impostazioni e-mail aggiornate."
+#: ../../include/text.php:823
+msgid "fingered"
+msgstr "toccato"
 
-#: ../../mod/settings.php:247
-msgid "Features updated"
-msgstr ""
+#: ../../include/text.php:824
+msgid "rebuff"
+msgstr "respingi"
 
-#: ../../mod/settings.php:307
-msgid "Passwords do not match. Password unchanged."
-msgstr "Le password non corrispondono. Password non cambiata."
+#: ../../include/text.php:824
+msgid "rebuffed"
+msgstr "respinto"
 
-#: ../../mod/settings.php:312
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Le password non possono essere vuote. Password non cambiata."
+#: ../../include/text.php:836
+msgid "happy"
+msgstr "felice"
 
-#: ../../mod/settings.php:323
-msgid "Password changed."
-msgstr "Password cambiata."
+#: ../../include/text.php:837
+msgid "sad"
+msgstr "triste"
 
-#: ../../mod/settings.php:325
-msgid "Password update failed. Please try again."
-msgstr "Aggiornamento password fallito. Prova ancora."
+#: ../../include/text.php:838
+msgid "mellow"
+msgstr "rilassato"
 
-#: ../../mod/settings.php:390
-msgid " Please use a shorter name."
-msgstr " Usa un nome più corto."
+#: ../../include/text.php:839
+msgid "tired"
+msgstr "stanco"
 
-#: ../../mod/settings.php:392
-msgid " Name too short."
-msgstr " Nome troppo corto."
+#: ../../include/text.php:840
+msgid "perky"
+msgstr "vivace"
 
-#: ../../mod/settings.php:398
-msgid " Not valid email."
-msgstr " Email non valida."
+#: ../../include/text.php:841
+msgid "angry"
+msgstr "arrabbiato"
 
-#: ../../mod/settings.php:400
-msgid " Cannot change to that email."
-msgstr "Non puoi usare quella email."
+#: ../../include/text.php:842
+msgid "stupified"
+msgstr "stupefatto"
 
-#: ../../mod/settings.php:454
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr ""
+#: ../../include/text.php:843
+msgid "puzzled"
+msgstr "confuso"
 
-#: ../../mod/settings.php:458
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr ""
+#: ../../include/text.php:844
+msgid "interested"
+msgstr "interessato"
 
-#: ../../mod/settings.php:559 ../../mod/settings.php:585
-#: ../../mod/settings.php:621
-msgid "Add application"
-msgstr "Aggiungi applicazione"
+#: ../../include/text.php:845
+msgid "bitter"
+msgstr "risentito"
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Redirect"
-msgstr "Redirect"
+#: ../../include/text.php:846
+msgid "cheerful"
+msgstr "giocoso"
 
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
-msgid "Icon url"
-msgstr "Url icona"
+#: ../../include/text.php:847
+msgid "alive"
+msgstr "vivo"
 
-#: ../../mod/settings.php:577
-msgid "You can't edit this application."
-msgstr "Non puoi modificare questa applicazione."
+#: ../../include/text.php:848
+msgid "annoyed"
+msgstr "annoiato"
 
-#: ../../mod/settings.php:620
-msgid "Connected Apps"
-msgstr "Applicazioni Collegate"
+#: ../../include/text.php:849
+msgid "anxious"
+msgstr "ansioso"
 
-#: ../../mod/settings.php:622 ../../mod/content.php:728
-#: ../../mod/editpost.php:109 ../../object/Item.php:110
-msgid "Edit"
-msgstr "Modifica"
+#: ../../include/text.php:850
+msgid "cranky"
+msgstr "irritabile"
 
-#: ../../mod/settings.php:624
-msgid "Client key starts with"
-msgstr "Chiave del client inizia con"
+#: ../../include/text.php:851
+msgid "disturbed"
+msgstr "disturbato"
 
-#: ../../mod/settings.php:625
-msgid "No name"
-msgstr "Nessun nome"
+#: ../../include/text.php:852
+msgid "frustrated"
+msgstr "frustato"
 
-#: ../../mod/settings.php:626
-msgid "Remove authorization"
-msgstr "Rimuovi l'autorizzazione"
+#: ../../include/text.php:853
+msgid "motivated"
+msgstr "motivato"
 
-#: ../../mod/settings.php:638
-msgid "No Plugin settings configured"
-msgstr "Nessun plugin ha impostazioni modificabili"
+#: ../../include/text.php:854
+msgid "relaxed"
+msgstr "rilassato"
 
-#: ../../mod/settings.php:660
-msgid "Off"
-msgstr ""
+#: ../../include/text.php:855
+msgid "surprised"
+msgstr "sorpreso"
 
-#: ../../mod/settings.php:660
-msgid "On"
-msgstr ""
+#: ../../include/text.php:1015
+msgid "Monday"
+msgstr "Lunedì"
 
-#: ../../mod/settings.php:668
-msgid "Additional Features"
-msgstr ""
-
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "Il supporto integrato per la connettività con %s è %s"
+#: ../../include/text.php:1015
+msgid "Tuesday"
+msgstr "Martedì"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "abilitato"
+#: ../../include/text.php:1015
+msgid "Wednesday"
+msgstr "Mercoledì"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "disabilitato"
+#: ../../include/text.php:1015
+msgid "Thursday"
+msgstr "Giovedì"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../include/text.php:1015
+msgid "Friday"
+msgstr "Venerdì"
 
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "L'accesso email è disabilitato su questo sito."
+#: ../../include/text.php:1015
+msgid "Saturday"
+msgstr "Sabato"
 
-#: ../../mod/settings.php:721
-msgid "Connector Settings"
-msgstr "Impostazioni Connettore"
+#: ../../include/text.php:1015
+msgid "Sunday"
+msgstr "Domenica"
 
-#: ../../mod/settings.php:726
-msgid "Email/Mailbox Setup"
-msgstr "Impostazioni email"
+#: ../../include/text.php:1019
+msgid "January"
+msgstr "Gennaio"
 
-#: ../../mod/settings.php:727
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"
+#: ../../include/text.php:1019
+msgid "February"
+msgstr "Febbraio"
 
-#: ../../mod/settings.php:728
-msgid "Last successful email check:"
-msgstr "Ultimo controllo email eseguito con successo:"
+#: ../../include/text.php:1019
+msgid "March"
+msgstr "Marzo"
 
-#: ../../mod/settings.php:730
-msgid "IMAP server name:"
-msgstr "Nome server IMAP:"
+#: ../../include/text.php:1019
+msgid "April"
+msgstr "Aprile"
 
-#: ../../mod/settings.php:731
-msgid "IMAP port:"
-msgstr "Porta IMAP:"
+#: ../../include/text.php:1019
+msgid "May"
+msgstr "Maggio"
 
-#: ../../mod/settings.php:732
-msgid "Security:"
-msgstr "Sicurezza:"
+#: ../../include/text.php:1019
+msgid "June"
+msgstr "Giugno"
 
-#: ../../mod/settings.php:733
-msgid "Email login name:"
-msgstr "Nome utente email:"
+#: ../../include/text.php:1019
+msgid "July"
+msgstr "Luglio"
 
-#: ../../mod/settings.php:734
-msgid "Email password:"
-msgstr "Password email:"
+#: ../../include/text.php:1019
+msgid "August"
+msgstr "Agosto"
 
-#: ../../mod/settings.php:735
-msgid "Reply-to address:"
-msgstr "Indirizzo di risposta:"
+#: ../../include/text.php:1019
+msgid "September"
+msgstr "Settembre"
 
-#: ../../mod/settings.php:736
-msgid "Send public posts to all email contacts:"
-msgstr "Invia i messaggi pubblici ai contatti email:"
+#: ../../include/text.php:1019
+msgid "October"
+msgstr "Ottobre"
 
-#: ../../mod/settings.php:737
-msgid "Action after import:"
-msgstr "Azione post importazione:"
+#: ../../include/text.php:1019
+msgid "November"
+msgstr "Novembre"
 
-#: ../../mod/settings.php:737
-msgid "Mark as seen"
-msgstr "Segna come letto"
+#: ../../include/text.php:1019
+msgid "December"
+msgstr "Dicembre"
 
-#: ../../mod/settings.php:737
-msgid "Move to folder"
-msgstr "Sposta nella cartella"
+#: ../../include/text.php:1124
+msgid "bytes"
+msgstr "bytes"
 
-#: ../../mod/settings.php:738
-msgid "Move to folder:"
-msgstr "Sposta nella cartella:"
+#: ../../include/text.php:1151 ../../include/text.php:1163
+msgid "Click to open/close"
+msgstr "Clicca per aprire/chiudere"
 
-#: ../../mod/settings.php:809
-msgid "Display Settings"
-msgstr "Impostazioni Grafiche"
+#: ../../include/text.php:1336 ../../include/user.php:237
+msgid "default"
+msgstr "default"
 
-#: ../../mod/settings.php:815 ../../mod/settings.php:826
-msgid "Display Theme:"
-msgstr "Tema:"
+#: ../../include/text.php:1348
+msgid "Select an alternate language"
+msgstr "Seleziona una diversa lingua"
 
-#: ../../mod/settings.php:816
-msgid "Mobile Theme:"
-msgstr ""
+#: ../../include/text.php:1558
+msgid "activity"
+msgstr "attività"
 
-#: ../../mod/settings.php:817
-msgid "Update browser every xx seconds"
-msgstr "Aggiorna il browser ogni x secondi"
+#: ../../include/text.php:1561
+msgid "post"
+msgstr "messaggio"
 
-#: ../../mod/settings.php:817
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Minimo 10 secondi, nessun limite massimo"
+#: ../../include/text.php:1716
+msgid "Item filed"
+msgstr "Messaggio salvato"
 
-#: ../../mod/settings.php:818
-msgid "Number of items to display per page:"
-msgstr ""
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Non trovo le informazioni DNS per il database server '%s'"
 
-#: ../../mod/settings.php:818
-msgid "Maximum of 100 items"
-msgstr "Massimo 100 voci"
+#: ../../include/items.php:1764 ../../include/datetime.php:472
+#, php-format
+msgid "%s's birthday"
+msgstr "Compleanno di %s"
 
-#: ../../mod/settings.php:819
-msgid "Don't show emoticons"
-msgstr "Non mostrare le emoticons"
+#: ../../include/items.php:1765 ../../include/datetime.php:473
+#, php-format
+msgid "Happy Birthday %s"
+msgstr "Buon compleanno %s"
 
-#: ../../mod/settings.php:895
-msgid "Normal Account Page"
-msgstr "Pagina Account Normale"
+#: ../../include/items.php:3446
+msgid "A new person is sharing with you at "
+msgstr "Una nuova persona sta condividendo con te da "
 
-#: ../../mod/settings.php:896
-msgid "This account is a normal personal profile"
-msgstr "Questo account è un normale profilo personale"
+#: ../../include/items.php:3446
+msgid "You have a new follower at "
+msgstr "Una nuova persona ti segue su "
 
-#: ../../mod/settings.php:899
-msgid "Soapbox Page"
-msgstr "Pagina Sandbox"
+#: ../../include/items.php:3965
+msgid "Do you really want to delete this item?"
+msgstr "Vuoi veramente cancellare questo elemento?"
 
-#: ../../mod/settings.php:900
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà solamente leggere la bacheca"
+#: ../../include/items.php:4160
+msgid "Archives"
+msgstr "Archivi"
 
-#: ../../mod/settings.php:903
-msgid "Community Forum/Celebrity Account"
-msgstr "Account Celebrità/Forum comunitario"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "(nessun oggetto)"
 
-#: ../../mod/settings.php:904
-msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come fan che potrà leggere e scrivere sulla bacheca"
+#: ../../include/delivery.php:468 ../../include/notifier.php:785
+#: ../../include/enotify.php:28
+msgid "noreply"
+msgstr "nessuna risposta"
 
-#: ../../mod/settings.php:907
-msgid "Automatic Friend Page"
-msgstr "Pagina con amicizia automatica"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Notifica di condivisione dal network Diaspora*"
 
-#: ../../mod/settings.php:908
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Chi richiede la connessione/amicizia sarà accettato automaticamente come amico"
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "Allegati:"
 
-#: ../../mod/settings.php:911
-msgid "Private Forum [Experimental]"
-msgstr "Forum privato [sperimentale]"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "URL di connessione mancante."
 
-#: ../../mod/settings.php:912
-msgid "Private forum - approved members only"
-msgstr "Forum privato - solo membri approvati"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Questo sito non è configurato per permettere la comunicazione con altri network."
 
-#: ../../mod/settings.php:924
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili."
 
-#: ../../mod/settings.php:924
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID"
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni."
 
-#: ../../mod/settings.php:934
-msgid "Publish your default profile in your local site directory?"
-msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Non è stato trovato un nome o un autore"
 
-#: ../../mod/settings.php:940
-msgid "Publish your default profile in the global social directory?"
-msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Nessun URL puo' essere associato a questo indirizzo."
 
-#: ../../mod/settings.php:948
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email."
 
-#: ../../mod/settings.php:952
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email."
 
-#: ../../mod/settings.php:957
-msgid "Allow friends to post to your profile page?"
-msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito."
 
-#: ../../mod/settings.php:963
-msgid "Allow friends to tag your posts?"
-msgstr "Permetti agli amici di taggare i tuoi messaggi?"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te."
 
-#: ../../mod/settings.php:969
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "Ci permetti di suggerirti come potenziale amico ai nuovi membri?"
-
-#: ../../mod/settings.php:975
-msgid "Permit unknown people to send you private mail?"
-msgstr "Permetti a utenti sconosciuti di inviarti messaggi privati?"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Impossibile recuperare informazioni sul contatto."
 
-#: ../../mod/settings.php:983
-msgid "Profile is <strong>not published</strong>."
-msgstr "Il profilo <strong>non è pubblicato</strong>."
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "segue"
 
-#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "o"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Ciao"
 
-#: ../../mod/settings.php:991
-msgid "Your Identity Address is"
-msgstr "L'indirizzo della tua identità è"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Carica una foto per il profilo."
 
-#: ../../mod/settings.php:1002
-msgid "Automatically expire posts after this many days:"
-msgstr "Fai scadere i post automaticamente dopo x giorni:"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Ciao "
 
-#: ../../mod/settings.php:1002
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Se lasciato vuoto, i messaggi non verranno cancellati."
+#: ../../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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla."
 
-#: ../../mod/settings.php:1003
-msgid "Advanced expiration settings"
-msgstr "Impostazioni avanzate di scandenza"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Maschio"
 
-#: ../../mod/settings.php:1004
-msgid "Advanced Expiration"
-msgstr "Scadenza avanzata"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Femmina"
 
-#: ../../mod/settings.php:1005
-msgid "Expire posts:"
-msgstr "Fai scadere i post:"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "Al momento maschio"
 
-#: ../../mod/settings.php:1006
-msgid "Expire personal notes:"
-msgstr "Fai scadere le Note personali:"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Al momento femmina"
 
-#: ../../mod/settings.php:1007
-msgid "Expire starred posts:"
-msgstr "Fai scadere i post Speciali:"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Prevalentemente maschio"
 
-#: ../../mod/settings.php:1008
-msgid "Expire photos:"
-msgstr "Fai scadere le foto:"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Prevalentemente femmina"
 
-#: ../../mod/settings.php:1009
-msgid "Only expire posts by others:"
-msgstr "Fai scadere solo i post degli altri:"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transgender"
 
-#: ../../mod/settings.php:1035
-msgid "Account Settings"
-msgstr "Impostazioni account"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Intersex"
 
-#: ../../mod/settings.php:1043
-msgid "Password Settings"
-msgstr "Impostazioni password"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "Transessuale"
 
-#: ../../mod/settings.php:1044
-msgid "New Password:"
-msgstr "Nuova password:"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Ermafrodito"
 
-#: ../../mod/settings.php:1045
-msgid "Confirm:"
-msgstr "Conferma:"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Neutro"
 
-#: ../../mod/settings.php:1045
-msgid "Leave password fields blank unless changing"
-msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Non specificato"
 
-#: ../../mod/settings.php:1049
-msgid "Basic Settings"
-msgstr "Impostazioni base"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Altro"
 
-#: ../../mod/settings.php:1051
-msgid "Email Address:"
-msgstr "Indirizzo Email:"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Indeciso"
 
-#: ../../mod/settings.php:1052
-msgid "Your Timezone:"
-msgstr "Il tuo fuso orario:"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Maschi"
 
-#: ../../mod/settings.php:1053
-msgid "Default Post Location:"
-msgstr "Località predefinita:"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Femmine"
 
-#: ../../mod/settings.php:1054
-msgid "Use Browser Location:"
-msgstr "Usa la località rilevata dal browser:"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gay"
 
-#: ../../mod/settings.php:1057
-msgid "Security and Privacy Settings"
-msgstr "Impostazioni di sicurezza e privacy"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbica"
 
-#: ../../mod/settings.php:1059
-msgid "Maximum Friend Requests/Day:"
-msgstr "Numero massimo di richieste di amicizia al giorno:"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Nessuna preferenza"
 
-#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
-msgid "(to prevent spam abuse)"
-msgstr "(per prevenire lo spam)"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Bisessuale"
 
-#: ../../mod/settings.php:1060
-msgid "Default Post Permissions"
-msgstr "Permessi predefiniti per i messaggi"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Autosessuale"
 
-#: ../../mod/settings.php:1061
-msgid "(click to open/close)"
-msgstr "(clicca per aprire/chiudere)"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Astinente"
 
-#: ../../mod/settings.php:1072
-msgid "Default Private Post"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Vergine"
 
-#: ../../mod/settings.php:1073
-msgid "Default Public Post"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Deviato"
 
-#: ../../mod/settings.php:1077
-msgid "Default Permissions for New Posts"
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetish"
 
-#: ../../mod/settings.php:1089
-msgid "Maximum private messages per day from unknown people:"
-msgstr "Numero massimo di messaggi privati da utenti sconosciuti per giorno:"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Un sacco"
 
-#: ../../mod/settings.php:1092
-msgid "Notification Settings"
-msgstr "Impostazioni notifiche"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Asessuato"
 
-#: ../../mod/settings.php:1093
-msgid "By default post a status message when:"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Single"
 
-#: ../../mod/settings.php:1094
-msgid "accepting a friend request"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Solitario"
 
-#: ../../mod/settings.php:1095
-msgid "joining a forum/community"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Disponibile"
 
-#: ../../mod/settings.php:1096
-msgid "making an <em>interesting</em> profile change"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Non disponibile"
 
-#: ../../mod/settings.php:1097
-msgid "Send a notification email when:"
-msgstr "Invia una mail di notifica quando:"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "è cotto/a"
 
-#: ../../mod/settings.php:1098
-msgid "You receive an introduction"
-msgstr "Ricevi una presentazione"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "infatuato/a"
 
-#: ../../mod/settings.php:1099
-msgid "Your introductions are confirmed"
-msgstr "Le tue presentazioni sono confermate"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Disponibile a un incontro"
 
-#: ../../mod/settings.php:1100
-msgid "Someone writes on your profile wall"
-msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Infedele"
 
-#: ../../mod/settings.php:1101
-msgid "Someone writes a followup comment"
-msgstr "Qualcuno scrive un commento a un tuo messaggio"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Sesso-dipendente"
 
-#: ../../mod/settings.php:1102
-msgid "You receive a private message"
-msgstr "Ricevi un messaggio privato"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "Amici"
 
-#: ../../mod/settings.php:1103
-msgid "You receive a friend suggestion"
-msgstr "Hai ricevuto un suggerimento di amicizia"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Amici con benefici"
 
-#: ../../mod/settings.php:1104
-msgid "You are tagged in a post"
-msgstr "Sei stato taggato in un post"
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Casual"
 
-#: ../../mod/settings.php:1105
-msgid "You are poked/prodded/etc. in a post"
-msgstr ""
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Impegnato"
 
-#: ../../mod/settings.php:1108
-msgid "Advanced Account/Page Type Settings"
-msgstr "Impostazioni avanzate Account/Tipo di pagina"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Sposato"
 
-#: ../../mod/settings.php:1109
-msgid "Change the behaviour of this account for special situations"
-msgstr "Modifica il comportamento di questo account in situazioni speciali"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "immaginariamente sposato/a"
 
-#: ../../mod/content.php:119 ../../mod/network.php:596
-msgid "No such group"
-msgstr "Nessun gruppo"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partners"
 
-#: ../../mod/content.php:130 ../../mod/network.php:607
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Coinquilino"
 
-#: ../../mod/content.php:134 ../../mod/network.php:611
-msgid "Group: "
-msgstr "Gruppo: "
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "diritto comune"
 
-#: ../../mod/content.php:603 ../../object/Item.php:313
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d commento"
-msgstr[1] "%d commenti"
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Felice"
 
-#: ../../mod/content.php:684 ../../object/Item.php:204
-msgid "like"
-msgstr "mi piace"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "Non guarda"
 
-#: ../../mod/content.php:685 ../../object/Item.php:205
-msgid "dislike"
-msgstr "non mi piace"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Scambista"
 
-#: ../../mod/content.php:687 ../../object/Item.php:207
-msgid "Share this"
-msgstr "Condividi questo"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Tradito"
 
-#: ../../mod/content.php:687 ../../object/Item.php:207
-msgid "share"
-msgstr "condividi"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "Separato"
 
-#: ../../mod/content.php:711 ../../object/Item.php:605
-msgid "Bold"
-msgstr "Grassetto"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Instabile"
 
-#: ../../mod/content.php:712 ../../object/Item.php:606
-msgid "Italic"
-msgstr "Corsivo"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Divorziato"
 
-#: ../../mod/content.php:713 ../../object/Item.php:607
-msgid "Underline"
-msgstr "Sottolineato"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "immaginariamente divorziato/a"
 
-#: ../../mod/content.php:714 ../../object/Item.php:608
-msgid "Quote"
-msgstr "Citazione"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Vedovo"
 
-#: ../../mod/content.php:715 ../../object/Item.php:609
-msgid "Code"
-msgstr "Codice"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Incerto"
 
-#: ../../mod/content.php:716 ../../object/Item.php:610
-msgid "Image"
-msgstr "Immagine"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "E' complicato"
 
-#: ../../mod/content.php:717 ../../object/Item.php:611
-msgid "Link"
-msgstr "Link"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Non interessa"
 
-#: ../../mod/content.php:718 ../../object/Item.php:612
-msgid "Video"
-msgstr "Video"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Chiedimelo"
 
-#: ../../mod/content.php:753 ../../object/Item.php:183
-msgid "add star"
-msgstr "aggiungi a speciali"
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr "Errore decodificando il file account"
 
-#: ../../mod/content.php:754 ../../object/Item.php:184
-msgid "remove star"
-msgstr "rimuovi da speciali"
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?"
 
-#: ../../mod/content.php:755 ../../object/Item.php:185
-msgid "toggle star status"
-msgstr "Inverti stato preferito"
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr "Errore! Non posso importare questo file: la versione dello schema del database non è compatibile."
 
-#: ../../mod/content.php:758 ../../object/Item.php:188
-msgid "starred"
-msgstr "preferito"
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr "Errore! Non posso controllare il nickname"
 
-#: ../../mod/content.php:759 ../../object/Item.php:193
-msgid "add tag"
-msgstr "aggiungi tag"
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "L'utente '%s' esiste già su questo server!"
 
-#: ../../mod/content.php:763 ../../object/Item.php:123
-msgid "save to folder"
-msgstr "salva nella cartella"
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr "Errore creando l'utente"
 
-#: ../../mod/content.php:854 ../../object/Item.php:260
-msgid "to"
-msgstr "a"
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr "Errore creando il profile dell'utente"
 
-#: ../../mod/content.php:855 ../../object/Item.php:262
-msgid "Wall-to-Wall"
-msgstr "Da bacheca a bacheca"
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d contatto non importato"
+msgstr[1] "%d contatti non importati"
 
-#: ../../mod/content.php:856 ../../object/Item.php:263
-msgid "via Wall-To-Wall:"
-msgstr "da bacheca a bacheca"
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr "Fatto. Ora puoi entrare con il tuo nome utente e la tua password"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "collegamento"
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "Clicca qui per aggiornare."
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Contatto modificato."
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "Questa azione eccede i limiti del tuo piano di sottoscrizione."
 
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Le modifiche al contatto non sono state salvate."
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione."
 
-#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
-#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
-msgid "Contact not found."
-msgstr "Contatto non trovato."
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s ha stuzzicato %2$s"
 
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Ripara il contatto"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "post/elemento"
 
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr "%1$s ha segnato il/la %3$s di %2$s come preferito"
 
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina."
+#: ../../include/conversation.php:728
+msgid "remove"
+msgstr "rimuovi"
 
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Ritorna alla modifica contatto"
+#: ../../include/conversation.php:732
+msgid "Delete Selected Items"
+msgstr "Cancella elementi selezionati"
 
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Nome utente"
+#: ../../include/conversation.php:831
+msgid "Follow Thread"
+msgstr "Segui la discussione"
 
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@TagName - al posto del nome utente"
+#: ../../include/conversation.php:832 ../../include/Contact.php:226
+msgid "View Status"
+msgstr "Visualizza stato"
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL dell'utente"
+#: ../../include/conversation.php:833 ../../include/Contact.php:227
+msgid "View Profile"
+msgstr "Visualizza profilo"
 
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL Richiesta Amicizia"
+#: ../../include/conversation.php:834 ../../include/Contact.php:228
+msgid "View Photos"
+msgstr "Visualizza foto"
 
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL Conferma Amicizia"
+#: ../../include/conversation.php:835 ../../include/Contact.php:229
+#: ../../include/Contact.php:251
+msgid "Network Posts"
+msgstr "Post della Rete"
 
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "URL Notifiche"
+#: ../../include/conversation.php:836 ../../include/Contact.php:230
+#: ../../include/Contact.php:251
+msgid "Edit Contact"
+msgstr "Modifica contatti"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "URL Feed"
+#: ../../include/conversation.php:837 ../../include/Contact.php:231
+#: ../../include/Contact.php:251
+msgid "Send PM"
+msgstr "Invia messaggio privato"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nuova foto da questo URL"
+#: ../../include/conversation.php:838 ../../include/Contact.php:225
+msgid "Poke"
+msgstr "Stuzzica"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "Nessun potenziale delegato per la pagina è stato trovato."
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s likes this."
+msgstr "Piace a %s."
 
-#: ../../mod/delegate.php:123
-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 "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente."
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s doesn't like this."
+msgstr "Non piace a %s."
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "Gestori Pagina Esistenti"
+#: ../../include/conversation.php:905
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "Piace a <span %1$s>%2$d persone</span>."
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "Delegati Pagina Esistenti"
+#: ../../include/conversation.php:908
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "Non piace a <span %1$s>%2$d persone</span>."
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "Delegati Potenziali"
+#: ../../include/conversation.php:922
+msgid "and"
+msgstr "e"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Aggiungi"
+#: ../../include/conversation.php:928
+#, php-format
+msgid ", and %d other people"
+msgstr "e altre %d persone"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Nessun articolo."
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s like this."
+msgstr "Piace a %s."
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s don't like this."
+msgstr "Non piace a %s."
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr ""
+#: ../../include/conversation.php:957 ../../include/conversation.php:975
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Visibile a <strong>tutti</strong>"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr ""
+#: ../../include/conversation.php:959 ../../include/conversation.php:977
+msgid "Please enter a video link/URL:"
+msgstr "Inserisci un collegamento video / URL:"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr ""
+#: ../../include/conversation.php:960 ../../include/conversation.php:978
+msgid "Please enter an audio link/URL:"
+msgstr "Inserisci un collegamento audio / URL:"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr ""
+#: ../../include/conversation.php:961 ../../include/conversation.php:979
+msgid "Tag term:"
+msgstr "Tag:"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata."
+#: ../../include/conversation.php:963 ../../include/conversation.php:981
+msgid "Where are you right now?"
+msgstr "Dove sei ora?"
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Errore di comunicazione con l'altro sito."
+#: ../../include/conversation.php:964
+msgid "Delete item(s)?"
+msgstr "Cancellare questo elemento/i?"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "La risposta dell'altro sito non può essere gestita: "
+#: ../../include/conversation.php:1006
+msgid "Post to Email"
+msgstr "Invia a email"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Conferma completata con successo."
+#: ../../include/conversation.php:1062
+msgid "permissions"
+msgstr "permessi"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Il sito remoto riporta: "
+#: ../../include/conversation.php:1086
+msgid "Post to Groups"
+msgstr "Invia ai Gruppi"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Problema temporaneo. Attendi e riprova."
+#: ../../include/conversation.php:1087
+msgid "Post to Contacts"
+msgstr "Invia ai Contatti"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "La presentazione ha generato un errore o è stata revocata."
+#: ../../include/conversation.php:1088
+msgid "Private post"
+msgstr "Post privato"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Impossibile impostare la foto del contatto."
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Aggiungi nuovo contatto"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Nessun utente trovato '%s'"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Inserisci posizione o indirizzo web"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "La nostra chiave di criptazione del sito sembra essere corrotta."
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Esempio: bob@example.com, http://example.com/barbara"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo."
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d invito disponibile"
+msgstr[1] "%d inviti disponibili"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Il contatto non è stato trovato sul nostro sito."
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Trova persone"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "La chiave pubblica del sito non è disponibile per l'URL %s"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Inserisci un nome o un interesse"
 
-#: ../../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 "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare."
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Connetti/segui"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Esempi: Mario Rossi, Pesca"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Profilo causale"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Connession accettata su %s"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Reti"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr ""
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Tutte le Reti"
 
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr ""
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Tutto"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "Questa presentazione è già stata accettata."
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Categorie"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "L'indirizzo del profilo non è valido o non contiene un profilo."
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Finisci questa sessione"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario."
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Entra"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Attenzione: l'indirizzo del profilo non ha una foto."
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Home Page"
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, 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 parametro richiesto non è stato trovato all'indirizzo dato"
-msgstr[1] "%d parametri richiesti non sono stati trovati all'indirizzo dato"
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Crea un account"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "Presentazione completa."
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Guida e documentazione"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Errore di comunicazione."
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Applicazioni"
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profilo non disponibile."
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Applicazioni, utilità e giochi aggiuntivi"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Cerca nel contenuto del sito"
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Sono state attivate le misure di protezione contro lo spam."
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Conversazioni su questo sito"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Gli amici sono pregati di riprovare tra 24 ore."
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Elenco"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "Elenco delle persone"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Indirizzo email non valido."
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Conversazioni dai tuoi amici"
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "Questo account non è stato configurato per l'email. Richiesta fallita."
+#: ../../include/nav.php:141
+msgid "Network Reset"
+msgstr "Reset pagina Rete"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr "Carica la pagina Rete senza nessun filtro"
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Ti sei già presentato qui."
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Richieste di amicizia"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Pare che tu e %s siate già amici."
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Vedi tutte le notifiche"
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Indirizzo profilo non valido."
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "Segna tutte le notifiche come viste"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "La tua presentazione è stata inviata."
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Posta privata"
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Accedi per confermare la presentazione."
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "In arrivo"
 
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo."
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Inviati"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Nascondi questo contatto"
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Gestisci"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Bentornato a casa %s."
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Gestisci altre pagine"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Conferma la tua richiesta di connessione con %s."
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr "Delegazioni"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Conferma"
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr "Gestisci/Modifica i profili"
 
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Gestisci/modifica amici e contatti"
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>Connetti un email come follower</strike> (in arrivo)"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Configurazione del sito"
 
-#: ../../mod/dfrn_request.php:829
-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 "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>"
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr "Navigazione"
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Richieste di amicizia/connessione"
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr "Mappa del sito"
 
-#: ../../mod/dfrn_request.php:833
-msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
-msgstr "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Sconosciuto | non categorizzato"
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Rispondi:"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Blocca immediatamente"
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s ti conosce?"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "Shady, spammer, self-marketer"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Aggiungi una nota personale:"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Lo conosco, ma non ho un'opinione particolare"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "E' ok, probabilmente innocuo"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora."
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Rispettabile, ha la mia fiducia"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "L'indirizzo della tua identità:"
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Frequentemente"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Invia richiesta"
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Ogni ora"
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr ""
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Due volte al dì"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr ""
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Giornalmente"
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore."
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Settimanalmente"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignora / Nascondi"
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Mensilmente"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Cerca persone"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "Ostatus"
 
-#: ../../mod/dirfind.php:60 ../../mod/match.php:65
-msgid "No matches"
-msgstr "Nessun risultato"
+#: ../../include/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS / Atom"
 
-#: ../../mod/display.php:99 ../../mod/profile.php:155
-msgid "Access to this profile has been restricted."
-msgstr "L'accesso a questo profilo è stato limitato."
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/display.php:177
-msgid "Item has been removed."
-msgstr "L'oggetto è stato rimosso."
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag rimosso"
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Rimuovi il tag"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Seleziona un tag da rimuovere: "
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Oggetto non trovato"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Notifica Friendica"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Modifica messaggio"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Grazie,"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "Titolo e ora di inizio dell'evento sono richiesti."
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "Amministratore %s"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l j F"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Modifca l'evento"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Crea un nuovo evento"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s ti ha inviato un nuovo messaggio privato su %2$s."
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "ora:minuti"
-
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Dettagli dell'evento"
-
-#: ../../mod/events.php:457
+#: ../../include/enotify.php:47
 #, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "Il formato è %s %s. Data di inizio e Titolo sono richiesti."
+msgid "%1$s sent you %2$s."
+msgstr "%1$s ti ha inviato %2$s"
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "L'evento inizia:"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "un messaggio privato"
 
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Richiesto"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Visita %s per vedere e/o rispodere ai tuoi messaggi privati."
 
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "La data/ora di fine non è definita"
+#: ../../include/enotify.php:90
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr "%1$s ha commentato [url=%2$s]%3$s[/url]"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "L'evento finisce:"
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr "%1$s ha commentato [url=%2$s]%4$s di %3$s[/url]"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Visualizza con il fuso orario di chi legge"
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s ha commentato un [url=%2$s]tuo %3$s[/url]"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Descrizione:"
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notifica] Commento di %2$s alla conversazione #%1$d"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Titolo:"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s ha commentato un elemento che stavi seguendo."
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Condividi questo evento"
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Visita %s per vedere e/o commentare la conversazione"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr ""
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notifica] %s ha scritto sulla tua bacheca"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr ""
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s ha scritto sulla tua bacheca su %2$s"
 
-#: ../../mod/uexport.php:72
-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 ""
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s ha inviato un messaggio sulla [url=%2$s]tua bacheca[/url]"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr ""
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notifica] %s ti ha taggato"
 
-#: ../../mod/uexport.php:73
-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 ""
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s ti ha taggato su %2$s"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- seleziona -"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s [url=%2$s]ti ha taggato[/url]."
 
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr ""
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr ""
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "%1$s ti ha stuzzicato su %2$s"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr ""
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s [url=%2$s]ti ha stuzzicato[/url]."
 
-#: ../../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 ""
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio"
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
-msgstr ""
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s ha taggato il tuo post su %2$s"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr ""
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s ha taggato [url=%2$s]il tuo post[/url]"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
-msgstr ""
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notifica] Hai ricevuto una presentazione"
 
-#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
-#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
-#: ../../mod/update_profile.php:41
-msgid "[Embedded content - reload page to view]"
-msgstr "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "Hai ricevuto un'introduzione da '%1$s' su %2$s"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Contatto aggiunto"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "Hai ricevuto [url=%1$s]un'introduzione[/url] da %2$s."
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "Questo è Friendica, versione"
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Puoi visitare il suo profilo presso %s"
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "in esecuzione all'indirizzo web"
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Visita %s per approvare o rifiutare la presentazione."
 
-#: ../../mod/friendica.php:58
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica."
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Segnalazioni di bug e problemi: visita"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "Hai ricevuto un suggerimento di amicizia da '%1$s' su %2$s"
 
-#: ../../mod/friendica.php:61
+#: ../../include/enotify.php:201
+#, php-format
 msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com"
-
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "Plugin/addon/applicazioni instalate"
-
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Nessun plugin/addons/applicazione installata"
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "Hai ricevuto [url=%1$s]un suggerimento di amicizia[/url] per %2$s su %3$s"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggerimento di amicizia inviato."
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Nome:"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggerisci amici"
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "Foto:"
 
-#: ../../mod/fsuggest.php:99
+#: ../../include/enotify.php:210
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggerisci un amico a %s"
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "Visita %s per approvare o rifiutare il suggerimento."
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Gruppo creato."
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "E' richiesto un invito."
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "L'invito non puo' essere verificato."
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Gruppo non trovato."
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Url OpenID non valido"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Il nome del gruppo è cambiato."
-
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
-
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
-
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Gruppo rimosso."
-
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
-
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Modifica gruppo"
-
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Membri"
-
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Nessun profilo"
-
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Guida:"
-
-#: ../../mod/help.php:90 ../../index.php:226
-msgid "Not Found"
-msgstr "Non trovato"
-
-#: ../../mod/help.php:93 ../../index.php:229
-msgid "Page not found."
-msgstr "Pagina non trovata."
-
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "Nessun contatto."
-
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Accesso negato."
-
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Il file supera la dimensione massima di %d"
-
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Caricamento del file non riuscito."
-
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Friendica Social Communications Server - Setup"
-
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr " Impossibile collegarsi con il database."
-
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Impossibile creare le tabelle."
-
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "Il tuo Friendica è stato installato."
-
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"
-
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:506
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Leggi il file \"INSTALL.txt\"."
-
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Controllo sistema"
-
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Controlla ancora"
-
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Connessione al database"
-
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "Per installare Friendica dobbiamo sapere come collegarci al tuo database."
-
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."
-
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."
-
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Nome del database server"
-
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Nome utente database"
-
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Password utente database"
-
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Nome database"
-
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Indirizzo email dell'amministratore del sito"
-
-#: ../../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 "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione web."
-
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Seleziona il fuso orario predefinito per il tuo sito web"
-
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Impostazioni sito"
-
-#: ../../mod/install.php:320
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web"
-
-#: ../../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 background polling via cron. See <a "
-"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
-msgstr ""
-
-#: ../../mod/install.php:325
-msgid "PHP executable path"
-msgstr "Percorso eseguibile PHP"
-
-#: ../../mod/install.php:325
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione."
-
-#: ../../mod/install.php:330
-msgid "Command line PHP"
-msgstr "PHP da riga di comando"
-
-#: ../../mod/install.php:339
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."
-
-#: ../../mod/install.php:340
-msgid "This is required for message delivery to work."
-msgstr "E' obbligatorio per far funzionare la consegna dei messaggi."
-
-#: ../../mod/install.php:342
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
-
-#: ../../mod/install.php:363
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"
-
-#: ../../mod/install.php:364
-msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: ../../mod/install.php:366
-msgid "Generate encryption keys"
-msgstr "Genera chiavi di criptazione"
-
-#: ../../mod/install.php:373
-msgid "libCurl PHP module"
-msgstr "modulo PHP libCurl"
-
-#: ../../mod/install.php:374
-msgid "GD graphics PHP module"
-msgstr "modulo PHP GD graphics"
-
-#: ../../mod/install.php:375
-msgid "OpenSSL PHP module"
-msgstr "modulo PHP OpenSSL"
-
-#: ../../mod/install.php:376
-msgid "mysqli PHP module"
-msgstr "modulo PHP mysqli"
-
-#: ../../mod/install.php:377
-msgid "mb_string PHP module"
-msgstr "modulo PHP mb_string"
-
-#: ../../mod/install.php:382 ../../mod/install.php:384
-msgid "Apache mod_rewrite module"
-msgstr ""
-
-#: ../../mod/install.php:382
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato"
-
-#: ../../mod/install.php:390
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:394
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:398
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:402
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato"
-
-#: ../../mod/install.php:406
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato."
-
-#: ../../mod/install.php:423
-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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo."
-
-#: ../../mod/install.php:424
-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 "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi."
-
-#: ../../mod/install.php:425
-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/install.php:426
-msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr ""
-
-#: ../../mod/install.php:429
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php è scrivibile"
-
-#: ../../mod/install.php:439
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
-msgstr ""
-
-#: ../../mod/install.php:440
-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 ""
-
-#: ../../mod/install.php:441
-msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
-msgstr ""
-
-#: ../../mod/install.php:442
-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/install.php:445
-msgid "view/smarty3 is writable"
-msgstr ""
-
-#: ../../mod/install.php:457
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr ""
-
-#: ../../mod/install.php:459
-msgid "Url rewrite is working"
-msgstr ""
-
-#: ../../mod/install.php:469
-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 "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito."
-
-#: ../../mod/install.php:493
-msgid "Errors encountered creating database tables."
-msgstr "La creazione delle tabelle del database ha generato errori."
-
-#: ../../mod/install.php:504
-msgid "<h1>What next</h1>"
-msgstr ""
-
-#: ../../mod/install.php:505
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller."
-
-#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "La dimensione dell'immagine supera il limite di %d"
-
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr ""
-
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: non è un indirizzo email valido."
-
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Unisiciti a noi su Friendica"
-
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr ""
-
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: la consegna del messaggio fallita."
-
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d messaggio inviato."
-msgstr[1] "%d messaggi inviati."
-
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Non hai altri inviti disponibili"
-
-#: ../../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 "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network."
-
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico."
-
-#: ../../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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti."
-
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri."
-
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Invia inviti"
-
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Inserisci gli indirizzi email, uno per riga:"
-
-#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:329 ../../mod/message.php:558
-msgid "Your message:"
-msgstr "Il tuo messaggio:"
-
-#: ../../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 "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore."
-
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Sarà necessario fornire questo codice invito: $invite_code"
-
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Una volta registrato, connettiti con me dal mio profilo:"
-
-#: ../../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 "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com"
-
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "Numero giornaliero di messaggi per %s superato. Invio fallito."
-
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Nessun destinatario selezionato."
-
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr ""
-
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Il messaggio non puo' essere inviato."
-
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "Errore recuperando il messaggio."
-
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Messaggio inviato."
-
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Nessun destinatario."
-
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Invia un messaggio privato"
-
-#: ../../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 "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti."
-
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "A:"
-
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Oggetto:"
-
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Conversione Ora"
-
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
-
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Ora UTC: %s"
-
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Fuso orario corrente: %s"
-
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Ora locale convertita: %s"
-
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Selezionare il tuo fuso orario:"
-
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informazioni remote sulla privacy non disponibili."
-
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Nessun account valido trovato."
-
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."
-
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Richiesta reimpostazione password su %s"
-
-#: ../../mod/lostpass.php:66
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita."
-
-#: ../../mod/lostpass.php:84 ../../boot.php:1051
-msgid "Password Reset"
-msgstr "Reimpostazione password"
-
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "La tua password è stata reimpostata come richiesto."
-
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "La tua nuova password è"
-
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Salva o copia la tua nuova password, quindi"
-
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "clicca qui per entrare"
-
-#: ../../mod/lostpass.php:89
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso."
-
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr ""
-
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Hai dimenticato la password?"
-
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Inserisci il tuo indirizzo email per reimpostare la password."
-
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Nome utente o email: "
-
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Reimposta"
-
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr ""
-
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Gestisci indentità e/o pagine"
-
-#: ../../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 "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione"
-
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Seleziona un'identità da gestire:"
-
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profili corrispondenti"
-
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito."
-
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "è interessato a:"
-
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Impossibile trovare le informazioni del contatto."
-
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr ""
-
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Messaggio eliminato."
-
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Conversazione rimossa."
-
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Nessun messaggio."
-
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "Mittente sconosciuto - %s"
-
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Tu e %s"
-
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s e Tu"
-
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Elimina la conversazione"
-
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D d M Y - G:i"
-
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d messaggio"
-msgstr[1] "%d messaggi"
-
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Messaggio non disponibile."
-
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Elimina il messaggio"
-
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente."
-
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Invia la risposta"
-
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr ""
-
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr ""
-
-#: ../../mod/item.php:104
-msgid "Unable to locate original post."
-msgstr "Impossibile trovare il messaggio originale."
-
-#: ../../mod/item.php:292
-msgid "Empty post discarded."
-msgstr "Messaggio vuoto scartato."
-
-#: ../../mod/item.php:841
-msgid "System error. Post not saved."
-msgstr "Errore di sistema. Messaggio non salvato."
-
-#: ../../mod/item.php:866
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Questo messaggio ti è stato inviato da %s, un membro del social network Friendica."
-
-#: ../../mod/item.php:868
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Puoi visitarli online su %s"
-
-#: ../../mod/item.php:869
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi."
-
-#: ../../mod/item.php:873
-#, php-format
-msgid "%s posted an update."
-msgstr "%s ha inviato un aggiornamento."
-
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr "Cerca risultati per:"
-
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "Ordina per commento"
-
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr "Ordina per data commento"
-
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "Ordina per invio"
-
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr "Ordina per data messaggio"
-
-#: ../../mod/network.php:444 ../../mod/notifications.php:88
-msgid "Personal"
-msgstr "Personale"
-
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr "Messaggi che ti citano o coinvolgono"
-
-#: ../../mod/network.php:453
-msgid "New"
-msgstr "Nuovo"
-
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr "Activity Stream - per data"
-
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr "Links condivisi"
-
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr "Link Interessanti"
-
-#: ../../mod/network.php:471
-msgid "Starred"
-msgstr "Preferiti"
-
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr "Messaggi preferiti"
-
-#: ../../mod/network.php:546
-#, 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] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
-msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
-
-#: ../../mod/network.php:549
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "I messaggi privati su questo gruppo potrebbero risultare visibili anche pubblicamente."
-
-#: ../../mod/network.php:621
-msgid "Contact: "
-msgstr "Contatto:"
-
-#: ../../mod/network.php:623
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente."
-
-#: ../../mod/network.php:628
-msgid "Invalid contact."
-msgstr "Contatto non valido."
-
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Benvenuto su Friendica"
-
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Cose da fare per i Nuovi Utenti"
-
-#: ../../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 "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione."
-
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr ""
-
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-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 ""
-
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-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 "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero."
-
-#: ../../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 "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti."
-
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Carica la foto del profilo"
-
-#: ../../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 "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno."
-
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-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 "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti."
-
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-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 "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie."
-
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-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 "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da Facebook."
-
-#: ../../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>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero."
-
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-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 "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo"
-
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr ""
-
-#: ../../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 "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>"
-
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-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 "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto."
-
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-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 "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore."
-
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-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 "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete"
-
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-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 ""
-
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr ""
-
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr ""
-
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse."
-
-#: ../../mod/profile.php:21 ../../boot.php:1225
-msgid "Requested profile is not available."
-msgstr "Profilo richiesto non disponibile."
-
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Consigli per i Nuovi Utenti"
-
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "L'identificativo della richiesta non è valido."
-
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Scarta"
-
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "Sistema"
-
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Mostra richieste ignorate"
-
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Nascondi richieste ignorate"
-
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Tipo di notifica: "
-
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Amico suggerito"
-
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerito da %s"
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "Invia una attività \"è ora amico con\""
-
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "se applicabile"
-
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Dice di conoscerti: "
-
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "si"
-
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "no"
-
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Approva come: "
-
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Amico"
-
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "Condivisore"
-
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan/Ammiratore"
-
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Richiesta amicizia/connessione"
-
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Qualcuno inizia a seguirti"
-
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Nessuna presentazione."
-
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "a %s è piaciuto il messaggio di %s"
-
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "a %s non è piaciuto il messaggio di %s"
-
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s è ora amico di %s"
-
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s a creato un nuovo messaggio"
-
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s ha commentato il messaggio di %s"
-
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Nessuna nuova."
-
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Notifiche dalla rete"
-
-#: ../../mod/notifications.php:332 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr "Nessuna nuova notifica di sistema."
-
-#: ../../mod/notifications.php:336 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr "Notifiche di sistema"
-
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Nessuna nuova."
-
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Notifiche personali"
-
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Nessuna nuova."
-
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Notifiche bacheca"
-
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Inviato!"
-
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "Errore protocollo OpenID. Nessun ID ricevuto."
-
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito."
-
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."
-
-#: ../../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 "Il ridimensionamento del'immagine [%s] è fallito."
-
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente."
-
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Impossibile elaborare l'immagine"
-
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Carica un file:"
-
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr ""
-
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "salta questo passaggio"
-
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "seleziona una foto dai tuoi album"
-
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Ritaglia immagine"
-
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Ritaglia l'imagine per una visualizzazione migliore."
-
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Finito"
-
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Immagine caricata con successo."
-
-#: ../../object/Item.php:261
-msgid "via"
-msgstr ""
-
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
-msgid "Theme settings"
-msgstr "Impostazioni tema"
-
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "Dimensione immagini in messaggi e commenti (larghezza e altezza)"
-
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "Dimensione del carattere di messaggi e commenti"
-
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr ""
-
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr "Schema colori"
-
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "Altezza della linea di testo di messaggi e commenti"
-
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:159
-#: ../../view/theme/diabook/theme.php:609
-msgid "Set twitter search term"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:161
-#: ../../view/theme/diabook/theme.php:578
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:162
-#: ../../view/theme/diabook/theme.php:579
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:163
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
-msgid "Community Pages"
-msgstr "Pagine Comunitarie"
-
-#: ../../view/theme/diabook/config.php:164
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-msgid "Earth Layers"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:165
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-msgid "Community Profiles"
-msgstr ""
-
-#: ../../view/theme/diabook/config.php:166
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-msgid "Help or @NewHere ?"
-msgstr "Serve aiuto? Sei nuovo?"
-
-#: ../../view/theme/diabook/config.php:167
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
-msgid "Connect Services"
-msgstr "Servizi di conessione"
-
-#: ../../view/theme/diabook/config.php:168
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-msgid "Find Friends"
-msgstr "Trova Amici"
-
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr ""
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "Inserisci le informazioni richieste."
 
-#: ../../view/theme/diabook/config.php:170
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
-msgid "Last users"
-msgstr "Ultimi utenti"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "Usa un nome più corto."
 
-#: ../../view/theme/diabook/config.php:171
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
-msgid "Last photos"
-msgstr "Ultime foto"
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "Il nome è troppo corto."
 
-#: ../../view/theme/diabook/config.php:172
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-msgid "Last likes"
-msgstr "Ultimi \"mi piace\""
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr "I tuoi contatti"
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Il dominio della tua email non è tra quelli autorizzati su questo sito."
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr "Elenco Locale"
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "L'indirizzo email non è valido."
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "Non puoi usare quell'email."
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr ""
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera."
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
-msgstr ""
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "Nome utente già registrato. Scegline un altro."
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Imposta schema colori"
+#: ../../include/user.php:138
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "Allineamento"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Sinistra"
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "C'è stato un errore durante la registrazione. Prova ancora."
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Centrato"
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "C'è stato un errore nella creazione del tuo profilo. Prova ancora."
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr ""
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Visibile a tutti"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr ""
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
+msgid "Image/photo"
+msgstr "Immagine/foto"
 
-#: ../../index.php:400
-msgid "toggle mobile"
-msgstr ""
+#: ../../include/bbcode.php:272
+#, php-format
+msgid ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"external-link\">post</a>"
 
-#: ../../boot.php:640
-msgid "Delete this item?"
-msgstr "Cancellare questo elemento?"
+#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
+msgid "$1 wrote:"
+msgstr "$1 ha scritto:"
 
-#: ../../boot.php:643
-msgid "show fewer"
-msgstr "mostra di meno"
+#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
+msgid "Encrypted content"
+msgstr "Contenuto criptato"
 
-#: ../../boot.php:899
-#, php-format
-msgid "Update %s failed. See error logs."
-msgstr "aggiornamento %s fallito. Guarda i log di errore."
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Contenuto incorporato"
 
-#: ../../boot.php:901
-#, php-format
-msgid "Update Error at %s"
-msgstr "Errore aggiornamento a %s"
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Embed disabilitato"
 
-#: ../../boot.php:1011
-msgid "Create a New Account"
-msgstr "Crea un nuovo account"
+#: ../../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 "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso."
 
-#: ../../boot.php:1039
-msgid "Nickname or Email address: "
-msgstr "Nome utente o indirizzo email: "
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Gruppo predefinito per i nuovi contatti"
 
-#: ../../boot.php:1040
-msgid "Password: "
-msgstr "Password: "
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Tutti"
 
-#: ../../boot.php:1041
-msgid "Remember me"
-msgstr ""
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "modifica"
 
-#: ../../boot.php:1044
-msgid "Or login using OpenID: "
-msgstr "O entra con OpenID:"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Modifica gruppo"
 
-#: ../../boot.php:1050
-msgid "Forgot your password?"
-msgstr "Hai dimenticato la password?"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Crea un nuovo gruppo"
 
-#: ../../boot.php:1053
-msgid "Website Terms of Service"
-msgstr ""
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Contatti in nessun gruppo."
 
-#: ../../boot.php:1054
-msgid "terms of service"
-msgstr ""
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "tolto dai seguiti"
 
-#: ../../boot.php:1056
-msgid "Website Privacy Policy"
-msgstr ""
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Varie"
 
-#: ../../boot.php:1057
-msgid "privacy policy"
-msgstr ""
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "anno"
 
-#: ../../boot.php:1186
-msgid "Requested account is not available."
-msgstr ""
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "mese"
 
-#: ../../boot.php:1265 ../../boot.php:1369
-msgid "Edit profile"
-msgstr "Modifica il profilo"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "giorno"
 
-#: ../../boot.php:1331
-msgid "Message"
-msgstr "Messaggio"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "mai"
 
-#: ../../boot.php:1339
-msgid "Manage/edit profiles"
-msgstr "Gestisci/modifica i profili"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "meno di un secondo fa"
 
-#: ../../boot.php:1468 ../../boot.php:1554
-msgid "g A l F d"
-msgstr "g A l d F"
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "anni"
 
-#: ../../boot.php:1469 ../../boot.php:1555
-msgid "F d"
-msgstr "d F"
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "mesi"
 
-#: ../../boot.php:1514 ../../boot.php:1595
-msgid "[today]"
-msgstr "[oggi]"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "settimana"
 
-#: ../../boot.php:1526
-msgid "Birthday Reminders"
-msgstr "Promemoria compleanni"
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "settimane"
 
-#: ../../boot.php:1527
-msgid "Birthdays this week:"
-msgstr "Compleanni questa settimana:"
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "giorni"
 
-#: ../../boot.php:1588
-msgid "[No description]"
-msgstr "[Nessuna descrizione]"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "ora"
 
-#: ../../boot.php:1606
-msgid "Event Reminders"
-msgstr "Promemoria"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "ore"
 
-#: ../../boot.php:1607
-msgid "Events this week:"
-msgstr "Eventi di questa settimana:"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuto"
 
-#: ../../boot.php:1843
-msgid "Status Messages and Posts"
-msgstr ""
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minuti"
 
-#: ../../boot.php:1850
-msgid "Profile Details"
-msgstr ""
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "secondo"
 
-#: ../../boot.php:1867
-msgid "Events and Calendar"
-msgstr ""
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "secondi"
 
-#: ../../boot.php:1874
-msgid "Only You Can See This"
-msgstr ""
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s fa"
+
+#: ../../include/network.php:875
+msgid "view full size"
+msgstr "vedi a schermo intero"
index c46047d087153ba9fa108d8dc679868346856958..79d7c19b3f74c505abc245ebb3a2db9b9ac1aa75 100644 (file)
 <?php
 
+if(! function_exists("string_plural_select_it")) {
 function string_plural_select_it($n){
        return ($n != 1);;
-}
+}}
 ;
-$a->strings["Altpager settings updated."] = "Impostazioni Altpager aggiornate.";
-$a->strings["Alternate Pagination Setting"] = "Impostazioni Paginatore Alternativo";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "Usa i collegamenti \"nuovi\" e \"vecchi\" al posto dei numeri di pagina?";
-$a->strings["Submit"] = "Invia";
-$a->strings["Bg settings updated."] = "Impostazioni Bg aggiornate.";
-$a->strings["Bg Settings"] = "Impostazioni Bg.";
-$a->strings["How many contacts to display on profile sidebar"] = "Quanti contatti visualizzare nella barra laterale del profilo";
-$a->strings["\"Blockem\" Settings"] = "Impostazioni \"Blockem\"";
-$a->strings["Comma separated profile URLS to block"] = "Lista, separata da virgola, di indirizzi da bloccare";
-$a->strings["BLOCKEM Settings saved."] = "Impostazioni salvate.";
-$a->strings["Blocked %s - Click to open/close"] = "%s bloccato - Clicca per aprire/chiudere";
-$a->strings["Unblock Author"] = "Sblocca autore";
-$a->strings["Block Author"] = "Blocca autore";
-$a->strings["blockem settings updated"] = "Impostazioni 'blockem' aggiornate.";
-$a->strings["Post to blogger"] = "Posta su blogger";
-$a->strings["Blogger Post Settings"] = "Impostazioni post per blogger";
-$a->strings["Enable Blogger Post Plugin"] = "Abilita il plugin Blogger";
-$a->strings["Blogger username"] = "Blogger username";
-$a->strings["Blogger password"] = "Blogger password";
-$a->strings["Blogger API URL"] = "Blogger API URL";
-$a->strings["Post to Blogger by default"] = "Invia sempre a Blogger";
-$a->strings["Post from Friendica"] = "Messaggio da Friendica";
-$a->strings["Report Bug"] = "Segnala un Bug";
-$a->strings["Login"] = "Accedi";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Ultimi utenti";
-$a->strings["Most active users"] = "Utenti più attivi";
-$a->strings["Latest photos"] = "Ultime foto";
-$a->strings["Contact Photos"] = "Foto dei contatti";
-$a->strings["Profile Photos"] = "Foto del profilo";
-$a->strings["Latest likes"] = "Ultimi \"mi piace\"";
-$a->strings["event"] = "l'evento";
-$a->strings["status"] = "stato";
-$a->strings["photo"] = "foto";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
-$a->strings["Welcome to %s"] = "Benvenuto su %s";
-$a->strings["Private Events"] = "";
-$a->strings["Private Addressbooks"] = "";
-$a->strings["No access"] = "Nessun accesso";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Formato data americano (mm/gg/AAAA)";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "Formato data europeo (gg.mm.AAAA)";
-$a->strings["Could not open component for editing"] = "";
-$a->strings["Go back to the calendar"] = "Torna al calendario";
-$a->strings["Event data"] = "";
-$a->strings["Calendar"] = "Calendario";
-$a->strings["Special color"] = "";
-$a->strings["Subject"] = "";
-$a->strings["Starts"] = "";
-$a->strings["Ends"] = "";
-$a->strings["Location"] = "Posizione";
-$a->strings["Description"] = "Descrizione";
-$a->strings["Recurrence"] = "";
-$a->strings["Frequency"] = "";
-$a->strings["None"] = "Nessuna";
-$a->strings["Daily"] = "Giornalmente";
-$a->strings["Weekly"] = "Settimanalmente";
-$a->strings["Monthly"] = "Mensilmente";
-$a->strings["Yearly"] = "";
-$a->strings["days"] = "giorni";
-$a->strings["weeks"] = "settimane";
-$a->strings["months"] = "mesi";
-$a->strings["years"] = "anni";
-$a->strings["Interval"] = "";
-$a->strings["All %select% %time%"] = "";
-$a->strings["Days"] = "Giorni";
-$a->strings["Sunday"] = "Domenica";
-$a->strings["Monday"] = "Lunedì";
-$a->strings["Tuesday"] = "Martedì";
-$a->strings["Wednesday"] = "Mercoledì";
-$a->strings["Thursday"] = "Giovedì";
-$a->strings["Friday"] = "Venerdì";
-$a->strings["Saturday"] = "Sabato";
-$a->strings["First day of week:"] = "";
-$a->strings["Day of month"] = "";
-$a->strings["#num#th of each month"] = "";
-$a->strings["#num#th-last of each month"] = "";
-$a->strings["#num#th #wkday# of each month"] = "";
-$a->strings["#num#th-last #wkday# of each month"] = "";
-$a->strings["Month"] = "Mese";
-$a->strings["#num#th of the given month"] = "";
-$a->strings["#num#th-last of the given month"] = "";
-$a->strings["#num#th #wkday# of the given month"] = "";
-$a->strings["#num#th-last #wkday# of the given month"] = "";
-$a->strings["Repeat until"] = "";
-$a->strings["Infinite"] = "";
-$a->strings["Until the following date"] = "";
-$a->strings["Number of times"] = "";
-$a->strings["Exceptions"] = "";
-$a->strings["none"] = "";
-$a->strings["Notification"] = "Notifica";
-$a->strings["Notify by"] = "";
-$a->strings["Remove"] = "Rimuovi";
-$a->strings["E-Mail"] = "";
-$a->strings["On Friendica / Display"] = "";
-$a->strings["Time"] = "";
-$a->strings["Hours"] = "Ore";
-$a->strings["Minutes"] = "Minuti";
-$a->strings["Seconds"] = "";
-$a->strings["Weeks"] = "";
-$a->strings["before the"] = "";
-$a->strings["start of the event"] = "";
-$a->strings["end of the event"] = "";
-$a->strings["Add a notification"] = "";
-$a->strings["The event #name# will start at #date"] = "";
-$a->strings["#name# is about to begin."] = "";
-$a->strings["Saved"] = "";
-$a->strings["Private Calendar"] = "";
-$a->strings["Friendica Events: Mine"] = "";
-$a->strings["Friendica Events: Contacts"] = "";
-$a->strings["Private Addresses"] = "";
-$a->strings["Friendica Contacts"] = "";
-$a->strings["Friendica-Native events"] = "";
-$a->strings["Friendica-Contacts"] = "Contatti Friendica";
-$a->strings["Your Friendica-Contacts"] = "I tuoi contatti Friendica";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
-$a->strings["The ICS-File has been imported."] = "";
-$a->strings["No file was uploaded."] = "";
-$a->strings["Import a ICS-file"] = "";
-$a->strings["ICS-File"] = "";
-$a->strings["Overwrite all #num# existing events"] = "";
-$a->strings["Upload"] = "Carica";
-$a->strings["Settings"] = "Impostazioni";
-$a->strings["Help"] = "Guida";
-$a->strings["New event"] = "";
-$a->strings["Today"] = "Oggi";
-$a->strings["Day"] = "";
-$a->strings["Week"] = "Settimana";
-$a->strings["Reload"] = "Ricarica";
-$a->strings["Previous"] = "Precendente";
-$a->strings["Next"] = "Successivo";
-$a->strings["Date"] = "Data";
-$a->strings["Error"] = "Errore";
-$a->strings["Permission denied."] = "Permesso negato.";
-$a->strings["The new values have been saved."] = "I nuovi valori sono stati salvati.";
-$a->strings["The calendar has been updated."] = "";
-$a->strings["The new calendar has been created."] = "";
-$a->strings["The calendar has been deleted."] = "";
-$a->strings["Calendar Settings"] = "Impostazioni Calendario";
-$a->strings["Date format"] = "Formato data";
-$a->strings["Time zone"] = "Fuso orario";
-$a->strings["Save"] = "Salva";
-$a->strings["Calendars"] = "";
-$a->strings["Create a new calendar"] = "";
-$a->strings["Limitations"] = "Limitazioni";
-$a->strings["Warning"] = "Attenzione";
-$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "Sincronizzazione (iPhone, Thunderbird Lightning, Android, ...)";
-$a->strings["Synchronizing this calendar with the iPhone"] = "Sincronizzare questo calendario con l'iPhone";
-$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "Sincronizzare i tuoi contatti di Friendica con l'iPhone";
-$a->strings["The current version of this plugin has not been set up correctly. Please contact the system administrator of your installation of friendica to fix this."] = "";
-$a->strings["Extended calendar with CalDAV-support"] = "Calendario esteso con supporto CalDAV";
-$a->strings["noreply"] = "nessuna risposta";
-$a->strings["Notification: "] = "";
-$a->strings["The database tables have been installed."] = "Le tabelle del database sono state installate.";
-$a->strings["An error occurred during the installation."] = "Errore durante l'installazione.";
-$a->strings["The database tables have been updated."] = "";
-$a->strings["An error occurred during the update."] = "";
-$a->strings["No system-wide settings yet."] = "Nessun settaggio di sistema ancora.";
-$a->strings["Database status"] = "Stato database";
-$a->strings["Installed"] = "Installato";
-$a->strings["Upgrade needed"] = "Aggiornamento richiesto";
-$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events <i>should</i> be converted to the new database structure, it's always safe to have a backup. Below, you can have a look at the database-queries that will be made when pressing the 'update'-button."] = "";
-$a->strings["Upgrade"] = "";
-$a->strings["Not installed"] = "";
-$a->strings["Install"] = "";
-$a->strings["Unknown"] = "";
-$a->strings["Something really went wrong. I cannot recover from this state automatically, sorry. Please go to the database backend, back up the data, and delete all tables beginning with 'dav_' manually. Afterwards, this installation routine should be able to reinitialize the tables automatically."] = "";
-$a->strings["Troubleshooting"] = "";
-$a->strings["Manual creation of the database tables:"] = "";
-$a->strings["Show SQL-statements"] = "";
-$a->strings["Post to Drupal"] = "Invia a Drupal";
-$a->strings["Drupal Post Settings"] = "Impostazioni invio a Drupal";
-$a->strings["Enable Drupal Post Plugin"] = "Abilita il plugin di invio a Drupal";
-$a->strings["Drupal username"] = "Drupal username";
-$a->strings["Drupal password"] = "Drupal password";
-$a->strings["Post Type - article,page,or blog"] = "Tipo di post - article,page o blog";
-$a->strings["Drupal site URL"] = "Indirizzo del sito Drupal";
-$a->strings["Drupal site uses clean URLS"] = "Il sito Drupal usa URL puliti";
-$a->strings["Post to Drupal by default"] = "Invia a Drupal per impostazione predefinita";
-$a->strings["Post to Dreamwidth"] = "Posta su Dreamwidth";
-$a->strings["Dreamwidth Post Settings"] = "Impostazioni post Dreamwidth";
-$a->strings["Enable dreamwidth Post Plugin"] = "Abilita il plugin dreamwidth";
-$a->strings["dreamwidth username"] = "dreamwidth username";
-$a->strings["dreamwidth password"] = "Password dreamwidth";
-$a->strings["Post to dreamwidth by default"] = "Invia a dreamwidth per impostazione predefinita";
-$a->strings["Editplain settings updated."] = "Impostazioni 'Editplain' aggiornate.";
-$a->strings["Editplain Settings"] = "Impostazioni Editplain";
-$a->strings["Disable richtext status editor"] = "Disabilita l'editor di testo visuale";
-$a->strings["Settings updated."] = "Impostazioni aggiornate.";
-$a->strings["Facebook disabled"] = "Facebook disabilitato";
-$a->strings["Updating contacts"] = "Aggiornamento contatti";
-$a->strings["Facebook API key is missing."] = "Chiave API Facebook mancante.";
-$a->strings["Facebook Connect"] = "Facebook Connect";
-$a->strings["Install Facebook connector for this account."] = "Installa Facebook connector per questo account";
-$a->strings["Remove Facebook connector"] = "Rimuovi Facebook connector";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ri-autentica [Questo è necessario ogni volta che cambia la password di Facebook.]";
-$a->strings["Post to Facebook by default"] = "Invia sempre a Facebook";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te.";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito.";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te";
-$a->strings["Do not import your Facebook profile wall conversations"] = "Non importare le conversazione sulla tua bacheca di Facebook";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni.";
-$a->strings["Comma separated applications to ignore"] = "Elenco separato da virgola di applicazioni da ignorare";
-$a->strings["Problems with Facebook Real-Time Updates"] = "Problemi con gli aggiornamenti in tempo reale con Facebook";
-$a->strings["Administrator"] = "Amministratore";
-$a->strings["Facebook"] = "Facebook";
-$a->strings["Facebook Connector Settings"] = "Impostazioni del connettore Facebook";
-$a->strings["Facebook API Key"] = "Facebook API Key";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "Error: the given API Key seems to be incorrect (the application access token could not be retrieved).";
-$a->strings["The given API Key seems to work correctly."] = "L' API Key fornita sembra funzionare correttamente.";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "L' API Key non puo' essere verificata. Sta succedendo qualcosa di strano.";
-$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
-$a->strings["Application secret"] = "Application secret";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "Intervallo di poling in minuti (minimo %1\$s minuti)";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "Sincronizza i commenti (non vengono persi commenti su Facebook, al prezzo di un maggior carico di sistema)";
-$a->strings["Real-Time Updates"] = "Aggiornamenti Real-Time";
-$a->strings["Real-Time Updates are activated."] = "Gli aggiornamenti in tempo reale sono attivi";
-$a->strings["Deactivate Real-Time Updates"] = "Disattiva gli aggiornamenti in tempo reale";
-$a->strings["Real-Time Updates not activated."] = "Gli aggiornamenti in tempo reale non sono attivi";
-$a->strings["Activate Real-Time Updates"] = "Attiva gli aggiornamenti in tempo reale";
-$a->strings["Post to Facebook"] = "Invia a Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Invio su Facebook annullato per un conflitto nei permessi di accesso.";
-$a->strings["View on Friendica"] = "Vedi su Friendica";
-$a->strings["Facebook post failed. Queued for retry."] = "Invio a Facebook fallito. In attesa di riprovare.";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "La tua connessione con Facebook è diventata invalida. Per favore ri-autenticati.";
-$a->strings["Facebook connection became invalid"] = "La connessione Facebook è diventata invalida.";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "Ciao %1\$s,\n\nLa tua connesione tra il tuo account su %2\$s e Facebook è diventata invalida. Questo succede di solito dopo che hai cambiato la tua password su Facebook. Per abilitare nuovamente la connessione, devi %3\$sri-autenticare il connettore Facebook%4\$s";
-$a->strings["Facebook Post disabled"] = "";
-$a->strings["Facebook Post"] = "";
-$a->strings["Install Facebook Post connector for this account."] = "";
-$a->strings["Remove Facebook Post connector"] = "";
-$a->strings["Facebook Post Settings"] = "";
-$a->strings["Forums"] = "Forum";
-$a->strings["show/hide"] = "";
-$a->strings["No forum subscriptions"] = "";
-$a->strings["Forums:"] = "Forum:";
-$a->strings["Forumlist settings updated."] = "";
-$a->strings["Forumlist Settings"] = "";
-$a->strings["Randomise forum list"] = "";
-$a->strings["Show forums on profile page"] = "";
-$a->strings["Show forums on network page"] = "";
-$a->strings["Fromapp settings updated."] = "";
-$a->strings["FromApp Settings"] = "";
-$a->strings["The application name you would like to show your posts originating from."] = "";
-$a->strings["Use this application name even if another application was used."] = "";
-$a->strings["Google+ Import Settings"] = "";
-$a->strings["Enable Google+ Import"] = "";
-$a->strings["Google Account ID"] = "ID Google Account";
-$a->strings["Google+ Import Settings saved."] = "Impostazioni Importa Google+ salvate";
-$a->strings["Geonames settings updated."] = "Impostazioni di geonames aggiornate.";
-$a->strings["Geonames Settings"] = "Impostazioni Geonames";
-$a->strings["Enable Geonames Plugin"] = "Abilita plugin Geonames";
-$a->strings["Gnot settings updated."] = "Impostazioni di \"Gnot\" aggiornate.";
-$a->strings["Gnot Settings"] = "Impostazioni Gnot";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "Permetti di raggruppare le notifiche dei commenti in thread su Gmail e anonimizza l'oggetto";
-$a->strings["Enable this plugin/addon?"] = "Abilita questo plugin?";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notifica] Commento alla conversazione #%d";
-$a->strings["generic profile image"] = "immagine generica del profilo";
-$a->strings["random geometric pattern"] = "schema geometrico casuale";
-$a->strings["monster face"] = "faccia di mostro";
-$a->strings["computer generated face"] = "";
-$a->strings["retro arcade style face"] = "";
-$a->strings["Information"] = "Informazione";
-$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "I'addon Libravatar è installto. Disabilita l'addon Libravatar o questo addon Gravatar<br>L'addon Libravatar si appoggerà a Gravatar se non trova nulla su Libravatar.";
-$a->strings["Default avatar image"] = "";
-$a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
-$a->strings["Rating of images"] = "";
-$a->strings["Select the appropriate avatar rating for your site. See README"] = "";
-$a->strings["Gravatar settings updated."] = "";
-$a->strings["Group Text"] = "";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
-$a->strings["Post to Insanejournal"] = "Invia a Insanejournal";
-$a->strings["InsaneJournal Post Settings"] = "Impostazioni Invio a InsaneJournal ";
-$a->strings["Enable InsaneJournal Post Plugin"] = "Abilita il plugin Invio a InsaneJournal";
-$a->strings["InsaneJournal username"] = "Nome utente InsaneJournal";
-$a->strings["InsaneJournal password"] = "Password InsaneJournal";
-$a->strings["Post to InsaneJournal by default"] = "Invia sempre a InsaneJournal";
-$a->strings["Impressum"] = "Impressum";
-$a->strings["Site Owner"] = "Proprietario del sito";
-$a->strings["Email Address"] = "Indirizzo email";
-$a->strings["Postal Address"] = "Indirizzo";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito.";
-$a->strings["The page operators name."] = "Nome del gestore della pagina.";
-$a->strings["Site Owners Profile"] = "Profilo del proprietario del sito";
-$a->strings["Profile address of the operator."] = "Indirizzo del profilo del gestore della pagina";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
-$a->strings["Notes"] = "Note";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "Come contattare l'operatore via email. (verrà mostrato offuscato)";
-$a->strings["Footer note"] = "Footer delle note";
-$a->strings["Text for the footer. You can use BBCode here."] = "";
-$a->strings["Infinite Improbability Drive"] = "";
-$a->strings["IRC Settings"] = "Impostazioni IRC";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "Canali a cui autocollegarsi (separati da virgola)";
-$a->strings["Popular Channels (comma separated)"] = "Canali popolari (separati da virgola)";
-$a->strings["IRC settings saved."] = "Impostazioni IRC salvate.";
-$a->strings["IRC Chatroom"] = "Stanza IRC";
-$a->strings["Popular Channels"] = "Canali Popolari";
-$a->strings["Jappix Mini addon settings"] = "";
-$a->strings["Activate addon"] = "";
-$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
-$a->strings["Jabber username"] = "";
-$a->strings["Jabber server"] = "";
-$a->strings["Jabber BOSH host"] = "";
-$a->strings["Jabber password"] = "";
-$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "";
-$a->strings["Friendica password"] = "";
-$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
-$a->strings["Subscribe to Friendica contacts automatically"] = "";
-$a->strings["Purge internal list of jabber addresses of contacts"] = "";
-$a->strings["Add contact"] = "";
-$a->strings["Upload a file"] = "Carica un file";
-$a->strings["Drop files here to upload"] = "Trascina un file qui per caricarlo";
-$a->strings["Cancel"] = "Annulla";
-$a->strings["Failed"] = "Caricamento fallito";
-$a->strings["No files were uploaded."] = "Nessun file è stato caricato.";
-$a->strings["Uploaded file is empty"] = "Il file caricato è vuoto";
-$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
-$a->strings["File has an invalid extension, it should be one of "] = "Il file ha un'estensione non valida, dovrebbe essere una tra ";
-$a->strings["Upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server";
-$a->strings["Post to libertree"] = "";
-$a->strings["libertree Post Settings"] = "";
-$a->strings["Enable Libertree Post Plugin"] = "";
-$a->strings["Libertree API token"] = "";
-$a->strings["Libertree site URL"] = "";
-$a->strings["Post to Libertree by default"] = "";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "Non è possibile installare Libravatar.<br>Richiede PHP >= 5.3";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "La tua versione %s è minore della richiesta PHP >= 5.3.";
-$a->strings["This addon is not functional on your server."] = "Questo addon non è funzionante sul tuo server.";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'addon Gravatar è installato. Disabilita l'addon Gravatar.<br>\nL'addon Libravatar si appoggerà a Gravatar se non trova nulla su Libravatar.";
-$a->strings["Select default avatar image if none was found. See README"] = "Seleziona l'immagine di default se non viene  trovato niente. Vedi README";
-$a->strings["Libravatar settings updated."] = "Impostazioni Libravatar aggiornate.";
-$a->strings["Post to LiveJournal"] = "Posta su LiveJournal";
-$a->strings["LiveJournal Post Settings"] = "Impostazioni post LiveJournal";
-$a->strings["Enable LiveJournal Post Plugin"] = "Abilita il plugin LiveJournal";
-$a->strings["LiveJournal username"] = "LiveJournal username";
-$a->strings["LiveJournal password"] = "LiveJournal password";
-$a->strings["Post to LiveJournal by default"] = "Posta su LiveJournal di default";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
-$a->strings["Use the MathJax renderer"] = "";
-$a->strings["MathJax Base URL"] = "";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
-$a->strings["Member since:"] = "Membro dal:";
-$a->strings["bitchslap"] = "";
-$a->strings["bitchslapped"] = "";
-$a->strings["shag"] = "";
-$a->strings["shagged"] = "";
-$a->strings["do something obscenely biological to"] = "";
-$a->strings["did something obscenely biological to"] = "";
-$a->strings["point out the poke feature to"] = "";
-$a->strings["pointed out the poke feature to"] = "";
-$a->strings["declare undying love for"] = "";
-$a->strings["declared undying love for"] = "";
-$a->strings["patent"] = "";
-$a->strings["patented"] = "";
-$a->strings["stroke beard"] = "";
-$a->strings["stroked their beard at"] = "";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["hug"] = "abbraccia";
-$a->strings["hugged"] = "ha abbracciato";
-$a->strings["kiss"] = "bacia";
-$a->strings["kissed"] = "ha baciato";
-$a->strings["raise eyebrows at"] = "solleva un sopracciglio a";
-$a->strings["raised their eyebrows at"] = "ha sollevato un sopracciglio a";
-$a->strings["insult"] = "insulta";
-$a->strings["insulted"] = "ha insultato";
-$a->strings["praise"] = "prega";
-$a->strings["praised"] = "ha pregato";
-$a->strings["be dubious of"] = "è dubbioso di";
-$a->strings["was dubious of"] = "";
-$a->strings["eat"] = "mangia";
-$a->strings["ate"] = "ha mangiato";
-$a->strings["giggle and fawn at"] = "";
-$a->strings["giggled and fawned at"] = "";
-$a->strings["doubt"] = "";
-$a->strings["doubted"] = "";
-$a->strings["glare"] = "";
-$a->strings["glared at"] = "";
-$a->strings["No Timeline settings updated."] = "";
-$a->strings["No Timeline Settings"] = "";
-$a->strings["Disable Archive selector on profile wall"] = "";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Impostazioni per NSWF (Filtro Contenuti Generico)";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "Questo plugin cerca nei messagi le parole/testo che inserisci qui sotto, e collassa i messaggi che li contengono, per non mostrare contenuto inappropriato nel momento sbagliato, come contenuto a sfondo sessuale che puo' essere inappropriato in un ambiente di lavoro. E' educato (e consigliato) taggare i messaggi che contengono nudità con #NSFW (Not Safe For Work: Non Sicuro Per il Lavoro). Questo filtro puo' cercare anche qualsiasi parola che inserisci, quindi puo' essere usato come filtro di contenuti generico.";
-$a->strings["Enable Content filter"] = "Abilita il Filtro Contenuti";
-$a->strings["Comma separated list of keywords to hide"] = "Elenco separato da virgole di parole da nascondere";
-$a->strings["Use /expression/ to provide regular expressions"] = "Utilizza /espressione/ per inserire espressioni regolari";
-$a->strings["NSFW Settings saved."] = "Impostazioni NSFW salvate.";
-$a->strings["%s - Click to open/close"] = "%s - Clicca per aprire / chiudere";
-$a->strings["Numfriends settings updated."] = "Impostazioni \"Numfriends' aggiornate.";
-$a->strings["Numfriends Settings"] = "Impostazioni Numfriends";
-$a->strings["OEmbed settings updated"] = "Impostazioni OEmbed aggiornate";
-$a->strings["Use OEmbed for YouTube videos"] = "Usa OEmbed per i video di YouTube";
-$a->strings["URL to embed:"] = "URL da incorporare:";
-$a->strings["Tile Server URL"] = "";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
-$a->strings["Default zoom"] = "Default zoom";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
-$a->strings["show more"] = "mostra di più";
-$a->strings["Page settings updated."] = "";
-$a->strings["Page Settings"] = "";
-$a->strings["How many forums to display on sidebar without paging"] = "";
-$a->strings["Randomise Page/Forum list"] = "";
-$a->strings["Show pages/forums on profile page"] = "Mostra pagine/forum sulla pagina profilo";
-$a->strings["\"pageheader\" Settings"] = "Impostazioni \"pageheader\"";
-$a->strings["pageheader Settings saved."] = "Impostazioni salvate.";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Questo sito è monitorato con lo strumento di analisi <a href='http://www.piwik.org'>Piwik</a>.";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Se non vuoi che le tue visite vengono registrate in questo modo è  possibile <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito</a> (opt-out).";
-$a->strings["Piwik Base URL"] = "Piwik Base URL";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "Percorso assoluto alla tua installazione di Piwik, senza il protocollo (http/https), con la barra alla fine";
-$a->strings["Site ID"] = "Site ID";
-$a->strings["Show opt-out cookie link?"] = "Mostra il link per il cookie opt-out?";
-$a->strings["Asynchronous tracking"] = "Tracciamento asincrono";
-$a->strings["Planets Settings"] = "Impostazioni Planet";
-$a->strings["Enable Planets Plugin"] = "Abilita plugin Planet";
-$a->strings["Post to Posterous"] = "Invia a Posterous";
-$a->strings["Posterous Post Settings"] = "Impostazioni di invio a Posterous";
-$a->strings["Enable Posterous Post Plugin"] = "Abilita il plugin di invio a Posterous";
-$a->strings["Posterous login"] = "Posterous login";
-$a->strings["Posterous password"] = "Posterous password";
-$a->strings["Posterous site ID"] = "";
-$a->strings["Posterous API token"] = "";
-$a->strings["Post to Posterous by default"] = "Invia sempre a Posterous";
-$a->strings["Lifetime of the cache (in hours)"] = "";
-$a->strings["Cache Statistics"] = "";
-$a->strings["Number of items"] = "";
-$a->strings["Size of the cache"] = "";
-$a->strings["Delete the whole cache"] = "";
-$a->strings["Your account on %s will expire in a few days."] = "";
-$a->strings["Your Friendica account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
-$a->strings[":-)"] = ":-)";
-$a->strings[":-("] = ":-(";
-$a->strings["lol"] = "lol";
-$a->strings["Quick Comment Settings"] = "Impostazioni commento rapido";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Trovi i commenti rapidi vicino al box dei commenti, a volte nascosti. Cliccali per inviare semplici risposte.";
-$a->strings["Enter quick comments, one per line"] = "Inserire un commento rapido, uno per linea";
-$a->strings["Quick Comment settings saved."] = "Impostazioni commento rapido salvate.";
-$a->strings["Randplace Settings"] = "Impostazioni Randplace";
-$a->strings["Enable Randplace Plugin"] = "Abilita il plugin Randplace";
-$a->strings["\"Show more\" Settings"] = "Impostazioni \"Mostra altro\"";
-$a->strings["Enable Show More"] = "Abilita \"Mostra altro\"";
-$a->strings["Cutting posts after how much characters"] = "Dopo quanti caratteri tagliare il messaggio";
-$a->strings["Show More Settings saved."] = "Impostazioni \"Mostra altro\" salvate.";
-$a->strings["StatusNet AutoFollow settings updated."] = "";
-$a->strings["StatusNet AutoFollow Settings"] = "";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Startpage Settings"] = "";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
-$a->strings["Post to StatusNet"] = "Invia a StatusNet";
-$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito.";
-$a->strings["StatusNet settings updated."] = "Impostazioni StatusNet aggiornate.";
-$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "OAuthKeys globali di StatusNet";
-$a->strings["There are preconfigured OAuth key pairs for some StatusNet servers available. If you are useing one of them, please use these credentials. If not feel free to connect to any other StatusNet instance (see below)."] = "Esistono coppie di chiavi OAuth precofigurate per alcuni server StatusNet. Se usi uno di questi server, per favore scegli queste credenziali. Altrimenti sei libero di collegarti a un'altra installazione di StatusNet (vedi sotto).";
-$a->strings["Provide your own OAuth Credentials"] = "Fornisci le tue credenziali OAuth";
-$a->strings["No consumer key pair for StatusNet found. Register your Friendica Account as an desktop client on your StatusNet account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Friendica installation at your favorited StatusNet installation."] = "Nessuna coppia di chiavi consumer trovate per StatusNet. Registra il tuo account Friendica come un client desktop nel tuo account StatusNet, copia la coppia di chiavi consumer qui e inserisci l'url base delle API.<br/>Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questo sito Friendica presso la tua installazione StatusNet preferita.";
-$a->strings["OAuth Consumer Key"] = "OAuth Consumer Key";
-$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
-$a->strings["Base API Path (remember the trailing /)"] = "Indirizzo di base per le API (ricorda la / alla fine)";
-$a->strings["To connect to your StatusNet account click the button below to get a security code from StatusNet which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to StatusNet."] = "Per collegare il tuo account StatusNet, clicca sul bottone per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box sottostante e poi inviare la form. Solo i tuoi messaggi <strong>pubblici</strong> saranno inviati a StatusNet.";
-$a->strings["Log in with StatusNet"] = "Accedi con StatuNet";
-$a->strings["Copy the security code from StatusNet here"] = "Copia il codice di sicurezza da StatusNet qui";
-$a->strings["Cancel Connection Process"] = "Annulla il processo di connessione";
-$a->strings["Current StatusNet API is"] = "Le API StatusNet correnti sono";
-$a->strings["Cancel StatusNet Connection"] = "Annulla la connessione a StatusNet";
-$a->strings["Currently connected to: "] = "Al momento connesso con:";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Nota</strong>: A causa delle tue impostazioni di privacy(<em>Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?</em>) il link potenzialmente incluse nei messaggi pubblici inviati a StatusNet porterà i visitatori a una pagina bianca con una nota che li informa che l'accesso al tuo profilo è stato limitato.";
-$a->strings["Allow posting to StatusNet"] = "Permetti l'invio a StatusNet";
-$a->strings["Send public postings to StatusNet by default"] = "Invia sempre i messaggi pubblici a StatusNet";
-$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
-$a->strings["Clear OAuth configuration"] = "Rimuovi la configurazione OAuth";
-$a->strings["Site name"] = "Nome del sito";
-$a->strings["API URL"] = "API URL";
-$a->strings["Consumer Secret"] = "Consumer Secret";
-$a->strings["Consumer Key"] = "Consumer Key";
-$a->strings["Your Friendica test account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale";
-$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
-$a->strings["New game"] = "Nuova partita";
-$a->strings["New game with handicap"] = "Nuova partita con handicap";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Tic-tac-toe tridimensionale è come il gioco tradizionale, solo che si gioca su livelli multipli contemporaneamente.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "In questo caso ci sono tre livelli. Puoi vincere mettendo tre segni in fila su ogni livello, anche verso l'alto, il basso e diagonalmente anche attraverso i diversi livelli.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "L'handicap disabilita la casella centrale sul livello di mezzo, perchè il giocatore che si prende quella casella spesso ha un deciso vantaggio.";
-$a->strings["You go first..."] = "Cominci tu...";
-$a->strings["I'm going first this time..."] = "Comincio io questa volta...";
-$a->strings["You won!"] = "Hai vinto!";
-$a->strings["\"Cat\" game!"] = "Stallo!";
-$a->strings["I won!"] = "Ho vinto!";
-$a->strings["Post to Tumblr"] = "Pubblica su Tumblr";
-$a->strings["Tumblr Post Settings"] = "Impostazioni di invio a Tumblr";
-$a->strings["Enable Tumblr Post Plugin"] = "Abilita Plugin Tumblr";
-$a->strings["Tumblr login"] = "Tumblr login";
-$a->strings["Tumblr password"] = "Tumblr password";
-$a->strings["Post to Tumblr by default"] = "Pubblica su Tumblr di default";
-$a->strings["Post to Twitter"] = "Invia a Twitter";
-$a->strings["Twitter settings updated."] = "Impostazioni di Twitter aggiornate.";
-$a->strings["Twitter Posting Settings"] = "Impostazioni di invio a Twitter";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nessuna coppia di chiavi per Twitter trovata. Contatta l'amministratore del sito.";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "Il plugin Twitter è abilitato ma non hai ancora collegato i tuoi account Friendica e Twitter. Per farlo, clicca il bottone qui sotto per ricevere un PIN da Twitter che dovrai copiare nel campo qui sotto. Solo i tuoi post <strong>pubblici</strong> saranno inviati a Twitter.";
-$a->strings["Log in with Twitter"] = "Accedi con Twitter";
-$a->strings["Copy the PIN from Twitter here"] = "Copia il PIN da Twitter qui";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>Nota</strong>: A causa delle tue impostazioni di privacy(<em>Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?</em>) il link potenzialmente incluse nei messaggi pubblici inviati a Twitter porterà i visitatori a una pagina bianca con una nota che li informa che l'accesso al tuo profilo è stato limitato.";
-$a->strings["Allow posting to Twitter"] = "Permetti l'invio a Twitter";
-$a->strings["Send public postings to Twitter by default"] = "Invia sempre i messaggi pubblici a Twitter";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "";
-$a->strings["Consumer key"] = "Consumer key";
-$a->strings["Consumer secret"] = "Consumer secret";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
-$a->strings["Template URL (with {category})"] = "Template URL (con {category})";
-$a->strings["OAuth end-point"] = "OAuth end-point";
-$a->strings["Api"] = "Api";
-$a->strings["View Source"] = "Vedi sorgente";
-$a->strings["Get added to this list!"] = "Aggiungiti a questa lista!";
-$a->strings["Connect on Friendica!"] = "Connettiti su Friendica!";
-$a->strings["%d person likes this"] = array(
-       0 => "piace a %d persona",
-       1 => "piace a %d persone",
-);
-$a->strings["%d person doesn't like this"] = array(
-       0 => "non piace a %d persona",
-       1 => "non piace a %d persone",
-);
-$a->strings["Generate new key"] = "Genera una nuova chiave";
-$a->strings["Widgets key"] = "Chiave Widget";
-$a->strings["Widgets available"] = "Widget disponibili";
-$a->strings["Plugin Settings"] = "Impostazioni plugin";
-$a->strings["Post to Wordpress"] = "Pubblica su Wordpress";
-$a->strings["WordPress Post Settings"] = "Impostazioni invio a WordPress";
-$a->strings["Enable WordPress Post Plugin"] = "Abilita plugin \"invia a WordPress\"";
-$a->strings["WordPress username"] = "nome utente WordPress";
-$a->strings["WordPress password"] = "password WordPress";
-$a->strings["WordPress API URL"] = "WordPress API URL";
-$a->strings["Post to WordPress by default"] = "Pubblica su WordPress di default";
-$a->strings["Provide a backlink to the Friendica post"] = "";
-$a->strings["Read the original post and comment stream on Friendica"] = "Leggi il messaggio originale e i commenti su Friendica";
-$a->strings["YourLS Settings"] = "Impostazioni YourLS";
-$a->strings["URL: http://"] = "URL: http://";
-$a->strings["Username:"] = "Nome utente:";
-$a->strings["Password:"] = "Password:";
-$a->strings["Use SSL "] = "Usa SSL";
-$a->strings["yourls Settings saved."] = "Impostazioni yourls salvate.";
-$a->strings["Global"] = "";
-$a->strings["Force global use of the alternate pager"] = "";
-$a->strings["Individual"] = "";
-$a->strings["Each user chooses whether to use the alternate pager"] = "";
-$a->strings["Suppress \"View on friendica\""] = "";
-$a->strings["Mirror wall posts from facebook to friendica."] = "";
-$a->strings["Post to page/group:"] = "";
-$a->strings["%s:"] = "";
-$a->strings["Forum Directory"] = "";
-$a->strings["Public access denied."] = "Accesso negato.";
-$a->strings["Global Directory"] = "Elenco globale";
-$a->strings["Find on this site"] = "Cerca nel sito";
-$a->strings["Finding: "] = "Ricerca: ";
-$a->strings["Site Directory"] = "Elenco del sito";
-$a->strings["Find"] = "Trova";
-$a->strings["Age: "] = "Età : ";
-$a->strings["Gender: "] = "Genere:";
-$a->strings["Location:"] = "Posizione:";
-$a->strings["Gender:"] = "Genere:";
-$a->strings["Status:"] = "Stato:";
-$a->strings["Homepage:"] = "Homepage:";
-$a->strings["About:"] = "Informazioni:";
-$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
-$a->strings["Group Text settings updated."] = "";
-$a->strings["Remote Permissions Settings"] = "";
-$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
-$a->strings["Remote Permissions settings updated."] = "";
-$a->strings["Visible to:"] = "Visibile a:";
-$a->strings["Visible to"] = "";
-$a->strings["may only be a partial list"] = "";
-$a->strings["The posts of every user on this server show the post recipients"] = "";
-$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
-$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "";
-$a->strings["Shortening method that optimizes the post"] = "";
-$a->strings["You are now authenticated to tumblr."] = "";
-$a->strings["return to the connector page"] = "";
-$a->strings["(Re-)Authenticate your tumblr page"] = "";
-$a->strings["Post to page:"] = "";
-$a->strings["You are not authenticated to tumblr"] = "";
-$a->strings["Mirror all posts from twitter that are no replies or retweets"] = "";
-$a->strings["Shortening method that optimizes the tweet"] = "";
-$a->strings["Name of the Twitter Application"] = "";
-$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "";
-$a->strings["Profile"] = "Profilo";
-$a->strings["Full Name:"] = "Nome completo:";
-$a->strings["j F, Y"] = "j F Y";
-$a->strings["j F"] = "j F";
-$a->strings["Birthday:"] = "Compleanno:";
-$a->strings["Age:"] = "Età:";
-$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
-$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
-$a->strings["Hometown:"] = "Paese natale:";
-$a->strings["Tags:"] = "Tag:";
-$a->strings["Political Views:"] = "Orientamento politico:";
-$a->strings["Religion:"] = "Religione:";
-$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
-$a->strings["Likes:"] = "Mi piace:";
-$a->strings["Dislikes:"] = "Non mi piace:";
-$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
-$a->strings["Musical interests:"] = "Interessi musicali:";
-$a->strings["Books, literature:"] = "Libri, letteratura:";
-$a->strings["Television:"] = "Televisione:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
-$a->strings["Love/Romance:"] = "Amore:";
-$a->strings["Work/employment:"] = "Lavoro:";
-$a->strings["School/education:"] = "Scuola:";
-$a->strings["Male"] = "Maschio";
-$a->strings["Female"] = "Femmina";
-$a->strings["Currently Male"] = "Al momento maschio";
-$a->strings["Currently Female"] = "Al momento femmina";
-$a->strings["Mostly Male"] = "Prevalentemente maschio";
-$a->strings["Mostly Female"] = "Prevalentemente femmina";
-$a->strings["Transgender"] = "Transgender";
-$a->strings["Intersex"] = "Intersex";
-$a->strings["Transsexual"] = "Transessuale";
-$a->strings["Hermaphrodite"] = "Ermafrodito";
-$a->strings["Neuter"] = "Neutro";
-$a->strings["Non-specific"] = "Non specificato";
-$a->strings["Other"] = "Altro";
-$a->strings["Undecided"] = "Indeciso";
-$a->strings["Males"] = "Maschi";
-$a->strings["Females"] = "Femmine";
-$a->strings["Gay"] = "Gay";
-$a->strings["Lesbian"] = "Lesbica";
-$a->strings["No Preference"] = "Nessuna preferenza";
-$a->strings["Bisexual"] = "Bisessuale";
-$a->strings["Autosexual"] = "Autosessuale";
-$a->strings["Abstinent"] = "Astinente";
-$a->strings["Virgin"] = "Vergine";
-$a->strings["Deviant"] = "Deviato";
-$a->strings["Fetish"] = "Fetish";
-$a->strings["Oodles"] = "Un sacco";
-$a->strings["Nonsexual"] = "Asessuato";
-$a->strings["Single"] = "Single";
-$a->strings["Lonely"] = "Solitario";
-$a->strings["Available"] = "Disponibile";
-$a->strings["Unavailable"] = "Non disponibile";
-$a->strings["Has crush"] = "";
-$a->strings["Infatuated"] = "";
-$a->strings["Dating"] = "Disponibile a un incontro";
-$a->strings["Unfaithful"] = "Infedele";
-$a->strings["Sex Addict"] = "Sesso-dipendente";
-$a->strings["Friends"] = "Amici";
-$a->strings["Friends/Benefits"] = "Amici con benefici";
-$a->strings["Casual"] = "Casual";
-$a->strings["Engaged"] = "Impegnato";
-$a->strings["Married"] = "Sposato";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "Partners";
-$a->strings["Cohabiting"] = "Coinquilino";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "Felice";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "Scambista";
-$a->strings["Betrayed"] = "Tradito";
-$a->strings["Separated"] = "Separato";
-$a->strings["Unstable"] = "Instabile";
-$a->strings["Divorced"] = "Divorziato";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "Vedovo";
-$a->strings["Uncertain"] = "Incerto";
-$a->strings["It's complicated"] = "";
-$a->strings["Don't care"] = "Non interessa";
-$a->strings["Ask me"] = "Chiedimelo";
-$a->strings["stopped following"] = "tolto dai seguiti";
-$a->strings["Poke"] = "";
-$a->strings["View Status"] = "Visualizza stato";
-$a->strings["View Profile"] = "Visualizza profilo";
-$a->strings["View Photos"] = "Visualizza foto";
-$a->strings["Network Posts"] = "";
-$a->strings["Edit Contact"] = "Modifica contatti";
-$a->strings["Send PM"] = "Invia messaggio privato";
-$a->strings[" on Last.fm"] = "";
-$a->strings["prev"] = "prec";
-$a->strings["first"] = "primo";
-$a->strings["last"] = "ultimo";
-$a->strings["next"] = "succ";
-$a->strings["newer"] = "nuovi";
-$a->strings["older"] = "vecchi";
-$a->strings["No contacts"] = "Nessun contatto";
-$a->strings["%d Contact"] = array(
-       0 => "%d contatto",
-       1 => "%d contatti",
+$a->strings["Private Message"] = "Messaggio privato";
+$a->strings["Edit"] = "Modifica";
+$a->strings["Select"] = "Seleziona";
+$a->strings["Delete"] = "Rimuovi";
+$a->strings["save to folder"] = "salva nella cartella";
+$a->strings["add star"] = "aggiungi a speciali";
+$a->strings["remove star"] = "rimuovi da speciali";
+$a->strings["toggle star status"] = "Inverti stato preferito";
+$a->strings["starred"] = "preferito";
+$a->strings["add tag"] = "aggiungi tag";
+$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
+$a->strings["like"] = "mi piace";
+$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
+$a->strings["dislike"] = "non mi piace";
+$a->strings["Share this"] = "Condividi questo";
+$a->strings["share"] = "condividi";
+$a->strings["Categories:"] = "Categorie:";
+$a->strings["Filed under:"] = "Archiviato in:";
+$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
+$a->strings["to"] = "a";
+$a->strings["via"] = "via";
+$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
+$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
+$a->strings["%s from %s"] = "%s da %s";
+$a->strings["Comment"] = "Commento";
+$a->strings["Please wait"] = "Attendi";
+$a->strings["%d comment"] = array(
+       0 => "%d commento",
+       1 => "%d commenti",
 );
-$a->strings["View Contacts"] = "Visualizza i contatti";
-$a->strings["Search"] = "Cerca";
-$a->strings["poke"] = "";
-$a->strings["poked"] = "";
-$a->strings["ping"] = "";
-$a->strings["pinged"] = "";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
-$a->strings["slap"] = "";
-$a->strings["slapped"] = "";
-$a->strings["finger"] = "";
-$a->strings["fingered"] = "";
-$a->strings["rebuff"] = "";
-$a->strings["rebuffed"] = "";
-$a->strings["happy"] = "";
-$a->strings["sad"] = "";
-$a->strings["mellow"] = "";
-$a->strings["tired"] = "";
-$a->strings["perky"] = "";
-$a->strings["angry"] = "";
-$a->strings["stupified"] = "";
-$a->strings["puzzled"] = "";
-$a->strings["interested"] = "";
-$a->strings["bitter"] = "";
-$a->strings["cheerful"] = "";
-$a->strings["alive"] = "";
-$a->strings["annoyed"] = "";
-$a->strings["anxious"] = "";
-$a->strings["cranky"] = "";
-$a->strings["disturbed"] = "";
-$a->strings["frustrated"] = "";
-$a->strings["motivated"] = "";
-$a->strings["relaxed"] = "";
-$a->strings["surprised"] = "";
-$a->strings["January"] = "Gennaio";
-$a->strings["February"] = "Febbraio";
-$a->strings["March"] = "Marzo";
-$a->strings["April"] = "Aprile";
-$a->strings["May"] = "Maggio";
-$a->strings["June"] = "Giugno";
-$a->strings["July"] = "Luglio";
-$a->strings["August"] = "Agosto";
-$a->strings["September"] = "Settembre";
-$a->strings["October"] = "Ottobre";
-$a->strings["November"] = "Novembre";
-$a->strings["December"] = "Dicembre";
-$a->strings["bytes"] = "bytes";
-$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
-$a->strings["link to source"] = "Collegamento all'originale";
-$a->strings["default"] = "default";
-$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
-$a->strings["activity"] = "attività";
 $a->strings["comment"] = array(
        0 => "",
        1 => "commento",
 );
-$a->strings["post"] = "messaggio";
-$a->strings["Item filed"] = "Messaggio salvato";
-$a->strings["Visible to everybody"] = "Visibile a tutti";
-$a->strings["show"] = "mostra";
-$a->strings["don't show"] = "non mostrare";
-$a->strings["Logged out."] = "Uscita effettuata.";
-$a->strings["Login failed."] = "Accesso fallito.";
-$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
-$a->strings["The error message was:"] = "Il messaggio riportato era:";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
-$a->strings["Error! Cannot check nickname"] = "";
-$a->strings["User '%s' already exists on this server!"] = "";
-$a->strings["User creation error"] = "";
-$a->strings["User profile creation error"] = "";
-$a->strings["%d contact not imported"] = array(
-       0 => "",
-       1 => "",
+$a->strings["show more"] = "mostra di più";
+$a->strings["This is you"] = "Questo sei tu";
+$a->strings["Submit"] = "Invia";
+$a->strings["Bold"] = "Grassetto";
+$a->strings["Italic"] = "Corsivo";
+$a->strings["Underline"] = "Sottolineato";
+$a->strings["Quote"] = "Citazione";
+$a->strings["Code"] = "Codice";
+$a->strings["Image"] = "Immagine";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["Preview"] = "Anteprima";
+$a->strings["Not Found"] = "Non trovato";
+$a->strings["Page not found."] = "Pagina non trovata.";
+$a->strings["Permission denied"] = "Permesso negato";
+$a->strings["Permission denied."] = "Permesso negato.";
+$a->strings["toggle mobile"] = "commuta tema mobile";
+$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
+$a->strings["Contact not found."] = "Contatto non trovato.";
+$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
+$a->strings["Suggest Friends"] = "Suggerisci amici";
+$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
+$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
+$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
+       1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
 );
-$a->strings["Done. You can now login with your username and password"] = "";
-$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
-$a->strings["Starts:"] = "Inizia:";
-$a->strings["Finishes:"] = "Finisce:";
-$a->strings["Image/photo"] = "Immagine/foto";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
-$a->strings["$1 wrote:"] = "$1 ha scritto:";
-$a->strings["Encrypted content"] = "";
-$a->strings["An invitation is required."] = "E' richiesto un invito.";
-$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
-$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
-$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
-$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
-$a->strings["Name too short."] = "Il nome è troppo corto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
-$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
-$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
-$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
-$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
-$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
-$a->strings["Block immediately"] = "Blocca immediatamente";
-$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
-$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
-$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
-$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
-$a->strings["Frequently"] = "Frequentemente";
-$a->strings["Hourly"] = "Ogni ora";
-$a->strings["Twice daily"] = "Due volte al dì";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["OStatus"] = "Ostatus";
-$a->strings["RSS/Atom"] = "RSS / Atom";
-$a->strings["Email"] = "Email";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings["Zot!"] = "Zot!";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "";
-$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
-$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
-$a->strings["Connect"] = "Connetti";
-$a->strings["%d invitation available"] = array(
-       0 => "%d invito disponibile",
-       1 => "%d inviti disponibili",
-);
-$a->strings["Find People"] = "Trova persone";
-$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
-$a->strings["Connect/Follow"] = "Connetti/segui";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
-$a->strings["Friend Suggestions"] = "Contatti suggeriti";
-$a->strings["Similar Interests"] = "Interessi simili";
-$a->strings["Random Profile"] = "Profilo causale";
-$a->strings["Invite Friends"] = "Invita amici";
-$a->strings["Networks"] = "Reti";
-$a->strings["All Networks"] = "Tutte le Reti";
-$a->strings["Saved Folders"] = "Cartelle Salvate";
-$a->strings["Everything"] = "Tutto";
-$a->strings["Categories"] = "Categorie";
-$a->strings["%d contact in common"] = array(
-       0 => "%d contatto in comune",
-       1 => "%d contatti in comune",
-);
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["%1\$s is currently %2\$s"] = "";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
-$a->strings["post/item"] = "post/elemento";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
-$a->strings["Select"] = "Seleziona";
-$a->strings["Delete"] = "Rimuovi";
-$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s";
-$a->strings["Categories:"] = "";
-$a->strings["Filed under:"] = "";
-$a->strings["%s from %s"] = "%s da %s";
-$a->strings["View in context"] = "Vedi nel contesto";
-$a->strings["Please wait"] = "Attendi";
-$a->strings["remove"] = "rimuovi";
-$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
-$a->strings["Follow Thread"] = "";
-$a->strings["%s likes this."] = "Piace a %s.";
-$a->strings["%s doesn't like this."] = "Non piace a %s.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "";
-$a->strings["and"] = "e";
-$a->strings[", and %d other people"] = "e altre %d persone";
-$a->strings["%s like this."] = "Piace a %s.";
-$a->strings["%s don't like this."] = "Non piace a %s.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
-$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
-$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
-$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
-$a->strings["Tag term:"] = "Tag:";
-$a->strings["Save to Folder:"] = "Salva nella Cartella:";
-$a->strings["Where are you right now?"] = "Dove sei ora?";
-$a->strings["Delete item(s)?"] = "";
-$a->strings["Post to Email"] = "Invia a email";
-$a->strings["Share"] = "Condividi";
-$a->strings["Upload photo"] = "Carica foto";
-$a->strings["upload photo"] = "carica foto";
-$a->strings["Attach file"] = "Allega file";
-$a->strings["attach file"] = "allega file";
-$a->strings["Insert web link"] = "Inserisci link";
-$a->strings["web link"] = "link web";
-$a->strings["Insert video link"] = "Inserire collegamento video";
-$a->strings["video link"] = "link video";
-$a->strings["Insert audio link"] = "Inserisci collegamento audio";
-$a->strings["audio link"] = "link audio";
-$a->strings["Set your location"] = "La tua posizione";
-$a->strings["set location"] = "posizione";
-$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser";
-$a->strings["clear location"] = "canc. pos.";
-$a->strings["Set title"] = "Scegli un titolo";
-$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
-$a->strings["Permission settings"] = "Impostazioni permessi";
-$a->strings["permissions"] = "permessi";
-$a->strings["CC: email addresses"] = "CC: indirizzi email";
-$a->strings["Public post"] = "Messaggio pubblico";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
-$a->strings["Preview"] = "Anteprima";
-$a->strings["Post to Groups"] = "";
-$a->strings["Post to Contacts"] = "";
-$a->strings["Private post"] = "";
-$a->strings["Miscellaneous"] = "Varie";
-$a->strings["year"] = "anno";
-$a->strings["month"] = "mese";
-$a->strings["day"] = "giorno";
-$a->strings["never"] = "mai";
-$a->strings["less than a second ago"] = "meno di un secondo fa";
-$a->strings["week"] = "settimana";
-$a->strings["hour"] = "ora";
-$a->strings["hours"] = "ore";
-$a->strings["minute"] = "minuto";
-$a->strings["minutes"] = "minuti";
-$a->strings["second"] = "secondo";
-$a->strings["seconds"] = "secondi";
-$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
-$a->strings["%s's birthday"] = "Compleanno di %s";
-$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
-$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
-$a->strings["(no subject)"] = "(nessun oggetto)";
-$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
-$a->strings["Attachments:"] = "Allegati:";
-$a->strings["Friendica Notification"] = "Notifica Friendica";
-$a->strings["Thank You,"] = "Grazie,";
-$a->strings["%s Administrator"] = "Amministratore %s";
-$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
-$a->strings["%1\$s sent you %2\$s."] = "";
-$a->strings["a private message"] = "un messaggio privato";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s poked you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
-$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "Nome:";
-$a->strings["Photo:"] = "Foto:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
-$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"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli";
-$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["Saved Searches"] = "Ricerche salvate";
-$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)"] = "";
-$a->strings["Network Shared Links Tab"] = "";
-$a->strings["Enable tab to display only Network posts with links in them"] = "";
-$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti";
-$a->strings["Multiple Deletion"] = "";
-$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola";
-$a->strings["Edit Sent Posts"] = "";
-$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati";
-$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"] = "Permetti di inviare \"non mi piace\" ai messaggi";
-$a->strings["Star Posts"] = "";
-$a->strings["Ability to mark special posts with a star indicator"] = "";
+$a->strings["Introduction complete."] = "Presentazione completa.";
+$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
+$a->strings["Profile unavailable."] = "Profilo non disponibile.";
+$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
+$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
+$a->strings["Invalid locator"] = "Invalid locator";
+$a->strings["Invalid email address."] = "Indirizzo email non valido.";
+$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita.";
+$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
+$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
+$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
+$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
 $a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso.";
-$a->strings["Connect URL missing."] = "URL di connessione mancante.";
-$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
-$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
-$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
-$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
-$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."] = "";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
-$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
-$a->strings["following"] = "segue";
-$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."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
-$a->strings["Default privacy group for new contacts"] = "";
-$a->strings["Everybody"] = "Tutti";
-$a->strings["edit"] = "modifica";
-$a->strings["Groups"] = "Gruppi";
-$a->strings["Edit group"] = "Modifica gruppo";
-$a->strings["Create a new group"] = "Crea un nuovo gruppo";
-$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
-$a->strings["add"] = "aggiungi";
+$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
+$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
+$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
+$a->strings["Hide this contact"] = "Nascondi questo contatto";
+$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
+$a->strings["Confirm"] = "Conferma";
 $a->strings["[Name Withheld]"] = "[Nome Nascosto]";
-$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da ";
-$a->strings["You have a new follower at "] = "Una nuova persona ti segue su ";
-$a->strings["Item not found."] = "Elemento non trovato.";
-$a->strings["Do you really want to delete this item?"] = "";
+$a->strings["Public access denied."] = "Accesso negato.";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connetti un email come follower</strike> (in arrivo)";
+$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>."] = "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
+$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
+$a->strings["Please answer the following:"] = "Rispondi:";
+$a->strings["Does %s know you?"] = "%s ti conosce?";
 $a->strings["Yes"] = "Si";
-$a->strings["Archives"] = "";
-$a->strings["[no subject]"] = "[nessun oggetto]";
-$a->strings["Wall Photos"] = "Foto della bacheca";
-$a->strings["Nothing new here"] = "Niente di nuovo qui";
-$a->strings["Clear notifications"] = "";
-$a->strings["Logout"] = "Esci";
-$a->strings["End this session"] = "Finisci questa sessione";
-$a->strings["Status"] = "Stato";
-$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
-$a->strings["Your profile page"] = "Pagina del tuo profilo";
-$a->strings["Photos"] = "Foto";
-$a->strings["Your photos"] = "Le tue foto";
-$a->strings["Events"] = "Eventi";
-$a->strings["Your events"] = "I tuoi eventi";
-$a->strings["Personal notes"] = "Note personali";
-$a->strings["Your personal photos"] = "Le tue foto personali";
-$a->strings["Sign in"] = "Entra";
-$a->strings["Home"] = "Home";
-$a->strings["Home Page"] = "Home Page";
-$a->strings["Register"] = "Registrati";
-$a->strings["Create an account"] = "Crea un account";
-$a->strings["Help and documentation"] = "Guida e documentazione";
-$a->strings["Apps"] = "Applicazioni";
-$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi";
-$a->strings["Search site content"] = "Cerca nel contenuto del sito";
-$a->strings["Community"] = "Comunità";
-$a->strings["Conversations on this site"] = "Conversazioni su questo sito";
-$a->strings["Directory"] = "Elenco";
-$a->strings["People directory"] = "Elenco delle persone";
+$a->strings["No"] = "No";
+$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
+$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
+$a->strings["Submit Request"] = "Invia richiesta";
+$a->strings["Cancel"] = "Annulla";
+$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
+$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
+$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
+$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
+$a->strings["Discard"] = "Scarta";
+$a->strings["Ignore"] = "Ignora";
+$a->strings["System"] = "Sistema";
 $a->strings["Network"] = "Rete";
-$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
-$a->strings["Network Reset"] = "";
-$a->strings["Load Network page with no filters"] = "";
+$a->strings["Personal"] = "Personale";
+$a->strings["Home"] = "Home";
 $a->strings["Introductions"] = "Presentazioni";
-$a->strings["Friend Requests"] = "Richieste di amicizia";
-$a->strings["Notifications"] = "Notifiche";
-$a->strings["See all notifications"] = "Vedi tutte le notifiche";
-$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste";
 $a->strings["Messages"] = "Messaggi";
-$a->strings["Private mail"] = "Posta privata";
-$a->strings["Inbox"] = "In arrivo";
-$a->strings["Outbox"] = "Inviati";
-$a->strings["New Message"] = "Nuovo messaggio";
-$a->strings["Manage"] = "Gestisci";
-$a->strings["Manage other pages"] = "Gestisci altre pagine";
-$a->strings["Delegations"] = "";
-$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
-$a->strings["Account settings"] = "Parametri account";
-$a->strings["Profiles"] = "Profili";
-$a->strings["Manage/Edit Profiles"] = "";
-$a->strings["Contacts"] = "Contatti";
-$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
-$a->strings["Admin"] = "Amministrazione";
-$a->strings["Site setup and configuration"] = "Configurazione del sito";
-$a->strings["Navigation"] = "";
-$a->strings["Site map"] = "";
-$a->strings["view full size"] = "vedi a schermo intero";
-$a->strings["Embedded content"] = "Contenuto incorporato";
-$a->strings["Embedding disabled"] = "Embed disabilitato";
-$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
-$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione.";
-$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione.";
-$a->strings["Welcome "] = "Ciao";
-$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
-$a->strings["Welcome back "] = "Ciao ";
-$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["Profile not found."] = "Profilo non trovato.";
-$a->strings["Profile deleted."] = "Profilo elminato.";
-$a->strings["Profile-"] = "Profilo-";
-$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
-$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
-$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
-$a->strings["Marital Status"] = "";
-$a->strings["Romantic Partner"] = "";
-$a->strings["Likes"] = "Mi piace";
-$a->strings["Dislikes"] = "Non mi piace";
-$a->strings["Work/Employment"] = "";
-$a->strings["Religion"] = "Religione";
-$a->strings["Political Views"] = "Orientamento Politico";
-$a->strings["Gender"] = "Sesso";
-$a->strings["Sexual Preference"] = "Preferenza sessuale";
-$a->strings["Homepage"] = "Homepage";
-$a->strings["Interests"] = "Interessi";
-$a->strings["Address"] = "Indirizzo";
-$a->strings["Profile updated."] = "Profilo aggiornato.";
-$a->strings[" and "] = "e ";
-$a->strings["public profile"] = "profilo pubblico";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
-$a->strings[" - Visit %1\$s's %2\$s"] = "";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
-$a->strings["No"] = "No";
-$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
-$a->strings["Change Profile Photo"] = "";
-$a->strings["View this profile"] = "Visualizza questo profilo";
-$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
-$a->strings["Clone this profile"] = "Clona questo profilo";
-$a->strings["Delete this profile"] = "Elimina questo profilo";
-$a->strings["Profile Name:"] = "Nome del profilo:";
-$a->strings["Your Full Name:"] = "Il tuo nome completo:";
-$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
-$a->strings["Your Gender:"] = "Il tuo sesso:";
-$a->strings["Birthday (%s):"] = "Compleanno (%s)";
-$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
-$a->strings["Locality/City:"] = "Località:";
-$a->strings["Postal/Zip Code:"] = "CAP:";
-$a->strings["Country:"] = "Nazione:";
-$a->strings["Region/State:"] = "Regione/Stato:";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
-$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Dal [data]:";
-$a->strings["Homepage URL:"] = "Homepage:";
-$a->strings["Religious Views:"] = "Orientamento religioso:";
-$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
-$a->strings["Private Keywords:"] = "Parole chiave private:";
-$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
-$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
-$a->strings["Hobbies/Interests"] = "Hobby/interessi";
-$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
-$a->strings["Musical interests"] = "Interessi musicali";
-$a->strings["Books, literature"] = "Libri, letteratura";
-$a->strings["Television"] = "Televisione";
-$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
-$a->strings["Love/romance"] = "Amore";
-$a->strings["Work/employment"] = "Lavoro/impiego";
-$a->strings["School/education"] = "Scuola/educazione";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
-$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
-$a->strings["Change profile photo"] = "Cambia la foto del profilo";
-$a->strings["Create New Profile"] = "Crea un nuovo profilo";
-$a->strings["Profile Image"] = "Immagine del Profilo";
-$a->strings["visible to everybody"] = "visibile a tutti";
-$a->strings["Edit visibility"] = "Modifica visibilità";
-$a->strings["Permission denied"] = "Permesso negato";
-$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
-$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
-$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
-$a->strings["Visible To"] = "Visibile a";
-$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
-$a->strings["Personal Notes"] = "Note personali";
-$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
-$a->strings["Edit contact"] = "Modifca contatto";
-$a->strings["Contacts who are not members of a group"] = "";
-$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
-$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
-$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
-$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
-$a->strings["{0} liked %s's post"] = "a {0} piace il post di  %s";
-$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
-$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
-$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
-$a->strings["Theme settings updated."] = "";
+$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
+$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
+$a->strings["Notification type: "] = "Tipo di notifica: ";
+$a->strings["Friend Suggestion"] = "Amico suggerito";
+$a->strings["suggested by %s"] = "sugerito da %s";
+$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
+$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\"";
+$a->strings["if applicable"] = "se applicabile";
+$a->strings["Approve"] = "Approva";
+$a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
+$a->strings["yes"] = "si";
+$a->strings["no"] = "no";
+$a->strings["Approve as: "] = "Approva come: ";
+$a->strings["Friend"] = "Amico";
+$a->strings["Sharer"] = "Condivisore";
+$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
+$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione";
+$a->strings["New Follower"] = "Qualcuno inizia a seguirti";
+$a->strings["No introductions."] = "Nessuna presentazione.";
+$a->strings["Notifications"] = "Notifiche";
+$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
+$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
+$a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
+$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio";
+$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s";
+$a->strings["No more network notifications."] = "Nessuna nuova.";
+$a->strings["Network Notifications"] = "Notifiche dalla rete";
+$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema.";
+$a->strings["System Notifications"] = "Notifiche di sistema";
+$a->strings["No more personal notifications."] = "Nessuna nuova.";
+$a->strings["Personal Notifications"] = "Notifiche personali";
+$a->strings["No more home notifications."] = "Nessuna nuova.";
+$a->strings["Home Notifications"] = "Notifiche bacheca";
+$a->strings["photo"] = "foto";
+$a->strings["status"] = "stato";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
+$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
+$a->strings["Login failed."] = "Accesso fallito.";
+$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "Testo sorgente (da Diaspora) da convertire in BBcode:";
+$a->strings["Source input: "] = "Sorgente:";
+$a->strings["bb2html (raw HTML): "] = "bb2html (HTML grezzo):";
+$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): "] = "Sorgente (formato Diaspora):";
+$a->strings["diaspora2bb: "] = "diaspora2bb: ";
+$a->strings["Theme settings updated."] = "Impostazioni del tema aggiornate.";
 $a->strings["Site"] = "Sito";
 $a->strings["Users"] = "Utenti";
 $a->strings["Plugins"] = "Plugin";
 $a->strings["Themes"] = "Temi";
 $a->strings["DB updates"] = "Aggiornamenti Database";
 $a->strings["Logs"] = "Log";
-$a->strings["Plugin Features"] = "";
+$a->strings["Admin"] = "Amministrazione";
+$a->strings["Plugin Features"] = "Impostazioni Plugins";
 $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma";
+$a->strings["Item not found."] = "Elemento non trovato.";
 $a->strings["Normal Account"] = "Account normale";
 $a->strings["Soapbox Account"] = "Account per comunicati e annunci";
 $a->strings["Community/Celebrity Account"] = "Account per celebrità o per comunità";
 $a->strings["Automatic Friend Account"] = "Account per amicizia automatizzato";
 $a->strings["Blog Account"] = "Account Blog";
 $a->strings["Private Forum"] = "Forum Privato";
-$a->strings["Message queues"] = "";
+$a->strings["Message queues"] = "Code messaggi";
 $a->strings["Administration"] = "Amministrazione";
 $a->strings["Summary"] = "Sommario";
 $a->strings["Registered users"] = "Utenti registrati";
@@ -1208,7 +199,8 @@ $a->strings["Pending registrations"] = "Registrazioni in attesa";
 $a->strings["Version"] = "Versione";
 $a->strings["Active plugins"] = "Plugin attivi";
 $a->strings["Site settings updated."] = "Impostazioni del sito aggiornate.";
-$a->strings["No special theme for mobile devices"] = "";
+$a->strings["No special theme for mobile devices"] = "Nessun tema speciale per i dispositivi mobili";
+$a->strings["Multi user instance"] = "Istanza multi utente";
 $a->strings["Closed"] = "Chiusa";
 $a->strings["Requires approval"] = "Richiede l'approvazione";
 $a->strings["Open"] = "Aperta";
@@ -1219,26 +211,31 @@ $a->strings["Registration"] = "Registrazione";
 $a->strings["File upload"] = "Caricamento file";
 $a->strings["Policies"] = "Politiche";
 $a->strings["Advanced"] = "Avanzate";
-$a->strings["Performance"] = "";
+$a->strings["Performance"] = "Performance";
+$a->strings["Site name"] = "Nome del sito";
 $a->strings["Banner/Logo"] = "Banner/Logo";
 $a->strings["System language"] = "Lingua di sistema";
 $a->strings["System theme"] = "Tema di sistema";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "";
-$a->strings["Theme for mobile devices"] = "";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - <a href='#' id='cnftheme'>cambia le impostazioni del tema</a>";
+$a->strings["Mobile system theme"] = "Tema mobile di sistema";
+$a->strings["Theme for mobile devices"] = "Tema per dispositivi mobili";
 $a->strings["SSL link policy"] = "Gestione link SSL";
 $a->strings["Determines whether generated links should be forced to use SSL"] = "Determina se i link generati devono essere forzati a usare SSL";
-$a->strings["'Share' element"] = "";
-$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
+$a->strings["'Share' element"] = "Elemento 'Share'";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "Attiva l'elemento bbcode 'share' per i post condivisi.";
+$a->strings["Hide help entry from navigation menu"] = "Nascondi la voce 'Guida' dal menu di navigazione";
+$a->strings["Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly."] = "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente.";
+$a->strings["Single user instance"] = "Instanza a singolo utente";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "Rendi questa istanza multi utente o a singolo utente per l'utente selezionato";
 $a->strings["Maximum image size"] = "Massima dimensione immagini";
 $a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite.";
-$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."] = "";
-$a->strings["JPEG image quality"] = "";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Maximum image length"] = "Massima lunghezza immagine";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Massima lunghezza in pixel del lato più lungo delle immagini caricate. Predefinito a -1, ovvero nessun limite.";
+$a->strings["JPEG image quality"] = "Qualità immagini JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "Le immagini JPEG caricate verranno salvate con questa qualità [0-100]. Predefinito è 100, ovvero qualità piena.";
 $a->strings["Register policy"] = "Politica di registrazione";
-$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["Maximum Daily Registrations"] = "Massime registrazioni giornaliere";
+$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."] = "Se la registrazione è permessa, qui si definisce il massimo numero di nuovi utenti registrati da accettare giornalmente. Se la registrazione è chiusa, questa impostazione non ha effetto.";
 $a->strings["Register text"] = "Testo registrazione";
 $a->strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione.";
 $a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni";
@@ -1253,10 +250,12 @@ $a->strings["Force publish"] = "Forza publicazione";
 $a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per forzare tutti i profili di questo sito ad essere compresi  nell'elenco di questo sito.";
 $a->strings["Global directory update URL"] = "URL aggiornamento Elenco Globale";
 $a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "URL dell'elenco globale. Se vuoto, l'elenco globale sarà completamente disabilitato.";
-$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["Allow threaded items"] = "Permetti commenti nidificati";
+$a->strings["Allow infinite level threading for items on this site."] = "Permette un infinito livello di nidificazione dei commenti su questo sito.";
+$a->strings["Private posts by default for new users"] = "Post privati di default per i nuovi utenti";
+$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "Imposta i permessi predefiniti dei post per tutti i nuovi utenti come privati per il gruppo predefinito, invece che pubblici.";
+$a->strings["Don't include post content in email notifications"] = "Non includere il contenuto dei post nelle notifiche via email";
+$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."] = "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy";
 $a->strings["Block multiple registrations"] = "Blocca registrazioni multiple";
 $a->strings["Disallow users to register additional accounts for use as pages."] = "Non permette all'utente di registrare account extra da usare come pagine.";
 $a->strings["OpenID support"] = "Supporto OpenID";
@@ -1281,18 +280,18 @@ $a->strings["Network timeout"] = "Timeout rete";
 $a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (non raccomandato).";
 $a->strings["Delivery interval"] = "Intervallo di invio";
 $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."] = "Ritarda il processo di invio in background  di n secondi per ridurre il carico di sistema. Raccomandato:  4-5 per host condivisit, 2-3 per VPS. 0-1 per grandi server dedicati.";
-$a->strings["Poll interval"] = "";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Use MySQL full text engine"] = "";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
-$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)."] = "";
-$a->strings["Path for lock file"] = "";
-$a->strings["Temp path"] = "";
-$a->strings["Base path to installation"] = "";
+$a->strings["Poll interval"] = "Intervallo di poll";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Ritarda il processo di poll in background di n secondi per ridurre il carico di sistema. Se 0, usa l'intervallo di invio.";
+$a->strings["Maximum Load Average"] = "Massimo carico medio";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Massimo carico di sistema prima che i processi di invio e di poll siano ritardati. Predefinito a 50.";
+$a->strings["Use MySQL full text engine"] = "Usa il motore MySQL full text";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "Attiva il motore full text. Velocizza la ricerca, ma puo' cercare solo per quattro o più caratteri.";
+$a->strings["Path to item cache"] = "Percorso cache elementi";
+$a->strings["Cache duration in seconds"] = "Durata della cache in secondi";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "Quanto a lungo devono essere mantenuti i file di cache? Il valore predefinito è 86400 secondi (un giorno).";
+$a->strings["Path for lock file"] = "Percorso al file di lock";
+$a->strings["Temp path"] = "Percorso file temporanei";
+$a->strings["Base path to installation"] = "Percorso base all'installazione";
 $a->strings["Update has been marked successful"] = "L'aggiornamento è stato segnato come  di successo";
 $a->strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Controlla i log di sistema.";
 $a->strings["Update %s was successfully applied."] = "L'aggiornamento %s è stato applicato con successo";
@@ -1300,9 +299,9 @@ $a->strings["Update %s did not return a status. Unknown if it succeeded."] = "L'
 $a->strings["Update function %s could not be found."] = "La funzione di aggiornamento %s non puo' essere trovata.";
 $a->strings["No failed updates."] = "Nessun aggiornamento fallito.";
 $a->strings["Failed Updates"] = "Aggiornamenti falliti";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
-$a->strings["Mark success (if update was manually applied)"] = "";
-$a->strings["Attempt to execute this update step automatically"] = "";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato.";
+$a->strings["Mark success (if update was manually applied)"] = "Segna completato (se l'update è stato applicato manualmente)";
+$a->strings["Attempt to execute this update step automatically"] = "Cerco di eseguire questo aggiornamento in automatico";
 $a->strings["%s user blocked/unblocked"] = array(
        0 => "%s utente bloccato/sbloccato",
        1 => "%s utenti bloccati/sbloccati",
@@ -1318,12 +317,13 @@ $a->strings["select all"] = "seleziona tutti";
 $a->strings["User registrations waiting for confirm"] = "Richieste di registrazione in attesa di conferma";
 $a->strings["Request date"] = "Data richiesta";
 $a->strings["Name"] = "Nome";
+$a->strings["Email"] = "Email";
 $a->strings["No registrations."] = "Nessuna registrazione.";
-$a->strings["Approve"] = "Approva";
 $a->strings["Deny"] = "Nega";
 $a->strings["Block"] = "Blocca";
 $a->strings["Unblock"] = "Sblocca";
-$a->strings["Site admin"] = "";
+$a->strings["Site admin"] = "Amministrazione sito";
+$a->strings["Account expired"] = "Account scaduto";
 $a->strings["Register date"] = "Data registrazione";
 $a->strings["Last login"] = "Ultimo accesso";
 $a->strings["Last item"] = "Ultimo elemento";
@@ -1335,6 +335,7 @@ $a->strings["Plugin %s enabled."] = "Plugin %s abilitato.";
 $a->strings["Disable"] = "Disabilita";
 $a->strings["Enable"] = "Abilita";
 $a->strings["Toggle"] = "Inverti";
+$a->strings["Settings"] = "Impostazioni";
 $a->strings["Author: "] = "Autore: ";
 $a->strings["Maintainer: "] = "Manutentore: ";
 $a->strings["No themes found."] = "Nessun tema trovato.";
@@ -1353,20 +354,142 @@ $a->strings["FTP Host"] = "Indirizzo FTP";
 $a->strings["FTP Path"] = "Percorso FTP";
 $a->strings["FTP User"] = "Utente FTP";
 $a->strings["FTP Password"] = "Pasword FTP";
+$a->strings["New Message"] = "Nuovo messaggio";
+$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
+$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
+$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
+$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
+$a->strings["Message sent."] = "Messaggio inviato.";
+$a->strings["Do you really want to delete this message?"] = "Vuoi veramente cancellare questo messaggio?";
+$a->strings["Message deleted."] = "Messaggio eliminato.";
+$a->strings["Conversation removed."] = "Conversazione rimossa.";
+$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:";
+$a->strings["Send Private Message"] = "Invia un messaggio privato";
+$a->strings["To:"] = "A:";
+$a->strings["Subject:"] = "Oggetto:";
+$a->strings["Your message:"] = "Il tuo messaggio:";
+$a->strings["Upload photo"] = "Carica foto";
+$a->strings["Insert web link"] = "Inserisci link";
+$a->strings["No messages."] = "Nessun messaggio.";
+$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
+$a->strings["You and %s"] = "Tu e %s";
+$a->strings["%s and You"] = "%s e Tu";
+$a->strings["Delete conversation"] = "Elimina la conversazione";
+$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
+$a->strings["%d message"] = array(
+       0 => "%d messaggio",
+       1 => "%d messaggi",
+);
+$a->strings["Message not available."] = "Messaggio non disponibile.";
+$a->strings["Delete message"] = "Elimina il messaggio";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
+$a->strings["Send Reply"] = "Invia la risposta";
+$a->strings["Item not found"] = "Oggetto non trovato";
+$a->strings["Edit post"] = "Modifica messaggio";
+$a->strings["upload photo"] = "carica foto";
+$a->strings["Attach file"] = "Allega file";
+$a->strings["attach file"] = "allega file";
+$a->strings["web link"] = "link web";
+$a->strings["Insert video link"] = "Inserire collegamento video";
+$a->strings["video link"] = "link video";
+$a->strings["Insert audio link"] = "Inserisci collegamento audio";
+$a->strings["audio link"] = "link audio";
+$a->strings["Set your location"] = "La tua posizione";
+$a->strings["set location"] = "posizione";
+$a->strings["Clear browser location"] = "Rimuovi la localizzazione data dal browser";
+$a->strings["clear location"] = "canc. pos.";
+$a->strings["Permission settings"] = "Impostazioni permessi";
+$a->strings["CC: email addresses"] = "CC: indirizzi email";
+$a->strings["Public post"] = "Messaggio pubblico";
+$a->strings["Set title"] = "Scegli un titolo";
+$a->strings["Categories (comma-separated list)"] = "Categorie (lista separata da virgola)";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Esempio: bob@example.com, mary@example.com";
+$a->strings["Profile not found."] = "Profilo non trovato.";
+$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
+$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
+$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
+$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
+$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
+$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
+$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
+$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s e %2\$s adesso sono amici";
+$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
+$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
+$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
+$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
+$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
+$a->strings["Connection accepted at %s"] = "Connession accettata su %s";
+$a->strings["%1\$s has joined %2\$s"] = "%1\$s si è unito a %2\$s";
+$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
+$a->strings["l, F j"] = "l j F";
+$a->strings["Edit event"] = "Modifca l'evento";
+$a->strings["link to source"] = "Collegamento all'originale";
+$a->strings["Events"] = "Eventi";
+$a->strings["Create New Event"] = "Crea un nuovo evento";
+$a->strings["Previous"] = "Precendente";
+$a->strings["Next"] = "Successivo";
+$a->strings["hour:minute"] = "ora:minuti";
+$a->strings["Event details"] = "Dettagli dell'evento";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti.";
+$a->strings["Event Starts:"] = "L'evento inizia:";
+$a->strings["Required"] = "Richiesto";
+$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
+$a->strings["Event Finishes:"] = "L'evento finisce:";
+$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
+$a->strings["Description:"] = "Descrizione:";
+$a->strings["Location:"] = "Posizione:";
+$a->strings["Title:"] = "Titolo:";
+$a->strings["Share this event"] = "Condividi questo evento";
+$a->strings["Photos"] = "Foto";
+$a->strings["Files"] = "File";
+$a->strings["Welcome to %s"] = "Benvenuto su %s";
+$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
+$a->strings["Visible to:"] = "Visibile a:";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
+$a->strings["Unable to check your home location."] = "Impossibile controllare la tua posizione di origine.";
+$a->strings["No recipient."] = "Nessun destinatario.";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
+$a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]";
+$a->strings["Edit contact"] = "Modifca contatto";
+$a->strings["Contacts who are not members of a group"] = "Contatti che non sono membri di un gruppo";
+$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
+$a->strings["running at web location"] = "in esecuzione all'indirizzo web";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com";
+$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
+$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
+$a->strings["Remove My Account"] = "Rimuovi il mio account";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
+$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
+$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
+$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
+$a->strings["Wall Photos"] = "Foto della bacheca";
+$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
+$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
+$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
+$a->strings["Please login to continue."] = "Effettua il login per continuare.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s";
 $a->strings["Photo Albums"] = "Album foto";
+$a->strings["Contact Photos"] = "Foto dei contatti";
 $a->strings["Upload New Photos"] = "Carica nuove foto";
 $a->strings["everybody"] = "tutti";
 $a->strings["Contact information unavailable"] = "I dati di questo contatto non sono disponibili";
+$a->strings["Profile Photos"] = "Foto del profilo";
 $a->strings["Album not found."] = "Album non trovato.";
 $a->strings["Delete Album"] = "Rimuovi album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "Vuoi davvero cancellare questo album e tutte le sue foto?";
 $a->strings["Delete Photo"] = "Rimuovi foto";
-$a->strings["Do you really want to delete this photo?"] = "";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
-$a->strings["a photo"] = "";
+$a->strings["Do you really want to delete this photo?"] = "Vuoi veramente cancellare questa foto?";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s è stato taggato in %2\$s da %3\$s";
+$a->strings["a photo"] = "una foto";
+$a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di";
 $a->strings["Image file is empty."] = "Il file dell'immagine è vuoto.";
-$a->strings["Unable to process image."] = "Impossibile caricare l'immagine.";
-$a->strings["Image upload failed."] = "Caricamento immagine fallito.";
 $a->strings["No photos selected"] = "Nessuna foto selezionata";
 $a->strings["Access to this item is restricted."] = "Questo oggetto non è visibile a tutti.";
 $a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "Hai usato %1$.2f MBytes su %2$.2f disponibili.";
@@ -1375,43 +498,34 @@ $a->strings["New album name: "] = "Nome nuovo album: ";
 $a->strings["or existing album name: "] = "o nome di un album esistente: ";
 $a->strings["Do not show a status post for this upload"] = "Non creare un post per questo upload";
 $a->strings["Permissions"] = "Permessi";
-$a->strings["Show to Groups"] = "";
-$a->strings["Show to Contacts"] = "";
-$a->strings["Private Photo"] = "";
-$a->strings["Public Photo"] = "";
+$a->strings["Show to Groups"] = "Mostra ai gruppi";
+$a->strings["Show to Contacts"] = "Mostra ai contatti";
+$a->strings["Private Photo"] = "Foto privata";
+$a->strings["Public Photo"] = "Foto pubblica";
 $a->strings["Edit Album"] = "Modifica album";
-$a->strings["Show Newest First"] = "";
-$a->strings["Show Oldest First"] = "";
+$a->strings["Show Newest First"] = "Mostra nuove foto per prime";
+$a->strings["Show Oldest First"] = "Mostra vecchie foto per prime";
 $a->strings["View Photo"] = "Vedi foto";
 $a->strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere limitato.";
 $a->strings["Photo not available"] = "Foto non disponibile";
 $a->strings["View photo"] = "Vedi foto";
 $a->strings["Edit photo"] = "Modifica foto";
 $a->strings["Use as profile photo"] = "Usa come foto del profilo";
-$a->strings["Private Message"] = "Messaggio privato";
 $a->strings["View Full Size"] = "Vedi dimensione intera";
 $a->strings["Tags: "] = "Tag: ";
 $a->strings["[Remove any tag]"] = "[Rimuovi tutti i tag]";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
+$a->strings["Rotate CW (right)"] = "Ruota a destra";
+$a->strings["Rotate CCW (left)"] = "Ruota a sinistra";
 $a->strings["New album name"] = "Nuovo nome dell'album";
 $a->strings["Caption"] = "Titolo";
 $a->strings["Add a Tag"] = "Aggiungi tag";
 $a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "";
-$a->strings["Public photo"] = "";
-$a->strings["I like this (toggle)"] = "Mi piace (clic per cambiare)";
-$a->strings["I don't like this (toggle)"] = "Non mi piace (clic per cambiare)";
-$a->strings["This is you"] = "Questo sei tu";
-$a->strings["Comment"] = "Commento";
+$a->strings["Private photo"] = "Foto privata";
+$a->strings["Public photo"] = "Foto pubblica";
+$a->strings["Share"] = "Condividi";
 $a->strings["View Album"] = "Sfoglia l'album";
 $a->strings["Recent Photos"] = "Foto recenti";
-$a->strings["Friends of %s"] = "Amici di %s";
-$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
-$a->strings["Authorize application connection"] = "Autorizza la connessione dell'applicazione";
-$a->strings["Return to your app and insert this Securty Code:"] = "Torna alla tua applicazione e inserisci questo codice di sicurezza:";
-$a->strings["Please login to continue."] = "Effettua il login per continuare.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti, e / o creare nuovi messaggi per te?";
+$a->strings["No profile"] = "Nessun profilo";
 $a->strings["Registration details for %s"] = "Dettagli della registrazione di %s";
 $a->strings["Registration successful. Please check your email for further instructions."] = "Registrazione completata. Controlla la tua mail per ulteriori informazioni.";
 $a->strings["Failed to send email message. Here is the message that failed."] = "Errore nell'invio del messaggio email. Questo è il messaggio non inviato.";
@@ -1429,44 +543,39 @@ $a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo nome completo (es. Ma
 $a->strings["Your Email Address: "] = "Il tuo indirizzo email: ";
 $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>'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
 $a->strings["Choose a nickname: "] = "Scegli un nome utente: ";
-$a->strings["Applications"] = "Applicazioni";
-$a->strings["No installed applications."] = "Nessuna applicazione installata.";
-$a->strings["Account approved."] = "Account approvato.";
-$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
-$a->strings["Please login."] = "Accedi.";
+$a->strings["Register"] = "Registrati";
+$a->strings["No valid account found."] = "Nessun account valido trovato.";
+$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
+$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
+$a->strings["Password Reset"] = "Reimpostazione password";
+$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
+$a->strings["Your new password is"] = "La tua nuova password è";
+$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
+$a->strings["click here to login"] = "clicca qui per entrare";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
+$a->strings["Your password has been changed at %s"] = "La tua password presso %s è stata cambiata";
+$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password.";
+$a->strings["Nickname or Email: "] = "Nome utente o email: ";
+$a->strings["Reset"] = "Reimposta";
+$a->strings["System down for maintenance"] = "Sistema in manutenzione";
 $a->strings["Item not available."] = "Oggetto non disponibile.";
 $a->strings["Item was not found."] = "Oggetto non trovato.";
-$a->strings["Remove My Account"] = "Rimuovi il mio account";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo.";
-$a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:";
-$a->strings["Source (bbcode) text:"] = "Testo sorgente (bbcode):";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
-$a->strings["Source input: "] = "";
-$a->strings["bb2html (raw HTML): "] = "";
-$a->strings["bb2html: "] = "";
-$a->strings["bb2html2bb: "] = "";
-$a->strings["bb2md: "] = "";
-$a->strings["bb2md2html: "] = "";
-$a->strings["bb2dia2bb: "] = "";
-$a->strings["bb2md2html2bb: "] = "";
-$a->strings["Source input (Diaspora format): "] = "";
-$a->strings["diaspora2bb: "] = "";
-$a->strings["Common Friends"] = "Amici in comune";
-$a->strings["No contacts in common."] = "";
-$a->strings["Remove term"] = "Rimuovi termine";
-$a->strings["No results."] = "Nessun risultato.";
-$a->strings["Not available."] = "Non disponibile.";
+$a->strings["Applications"] = "Applicazioni";
+$a->strings["No installed applications."] = "Nessuna applicazione installata.";
+$a->strings["Help:"] = "Guida:";
+$a->strings["Help"] = "Guida";
 $a->strings["Could not access contact record."] = "Non è possibile accedere al contatto.";
 $a->strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato.";
 $a->strings["Contact updated."] = "Contatto aggiornato.";
-$a->strings["Failed to update contact record."] = "Errore nell'aggiornamento del contatto.";
 $a->strings["Contact has been blocked"] = "Il contatto è stato bloccato";
 $a->strings["Contact has been unblocked"] = "Il contatto è stato sbloccato";
 $a->strings["Contact has been ignored"] = "Il contatto è ignorato";
 $a->strings["Contact has been unignored"] = "Il contatto non è più ignorato";
-$a->strings["Contact has been archived"] = "";
+$a->strings["Contact has been archived"] = "Il contatto è stato archiviato";
 $a->strings["Contact has been unarchived"] = "Il contatto è stato dearchiviato";
-$a->strings["Do you really want to delete this contact?"] = "";
+$a->strings["Do you really want to delete this contact?"] = "Vuoi veramente cancellare questo contatto?";
 $a->strings["Contact has been removed."] = "Il contatto è stato rimosso.";
 $a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s";
 $a->strings["You are sharing with %s"] = "Stai condividendo con %s";
@@ -1477,17 +586,20 @@ $a->strings["(Update was successful)"] = "(L'aggiornamento è stato completato)"
 $a->strings["(Update was not successful)"] = "(L'aggiornamento non è stato completato)";
 $a->strings["Suggest friends"] = "Suggerisci amici";
 $a->strings["Network type: %s"] = "Tipo di rete: %s";
+$a->strings["%d contact in common"] = array(
+       0 => "%d contatto in comune",
+       1 => "%d contatti in comune",
+);
 $a->strings["View all contacts"] = "Vedi tutti i contatti";
 $a->strings["Toggle Blocked status"] = "Inverti stato \"Blocca\"";
 $a->strings["Unignore"] = "Non ignorare";
-$a->strings["Ignore"] = "Ignora";
 $a->strings["Toggle Ignored status"] = "Inverti stato \"Ignora\"";
 $a->strings["Unarchive"] = "Dearchivia";
 $a->strings["Archive"] = "Archivia";
 $a->strings["Toggle Archive status"] = "Inverti stato \"Archiviato\"";
 $a->strings["Repair"] = "Ripara";
 $a->strings["Advanced Contact Settings"] = "Impostazioni avanzate Contatto";
-$a->strings["Communications lost with this contact!"] = "";
+$a->strings["Communications lost with this contact!"] = "Comunicazione con questo contatto persa!";
 $a->strings["Contact Editor"] = "Editor dei Contatti";
 $a->strings["Profile Visibility"] = "Visibilità del profilo";
 $a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in modo sicuro.";
@@ -1503,7 +615,6 @@ $a->strings["Update public posts"] = "Aggiorna messaggi pubblici";
 $a->strings["Currently blocked"] = "Bloccato";
 $a->strings["Currently ignored"] = "Ignorato";
 $a->strings["Currently archived"] = "Al momento archiviato";
-$a->strings["Hide this contact from others"] = "Nascondi questo contatto agli altri";
 $a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Risposte ai tuoi post pubblici <strong>possono</strong> essere comunque visibili";
 $a->strings["Suggestions"] = "Suggerimenti";
 $a->strings["Suggest potential friends"] = "Suggerisci potenziali amici";
@@ -1522,8 +633,89 @@ $a->strings["Only show hidden contacts"] = "Mostra solo contatti nascosti";
 $a->strings["Mutual Friendship"] = "Amicizia reciproca";
 $a->strings["is a fan of yours"] = "è un tuo fan";
 $a->strings["you are a fan of"] = "sei un fan di";
+$a->strings["Contacts"] = "Contatti";
 $a->strings["Search your contacts"] = "Cerca nei tuoi contatti";
-$a->strings["Additional features"] = "";
+$a->strings["Finding: "] = "Ricerca: ";
+$a->strings["Find"] = "Trova";
+$a->strings["Common Friends"] = "Amici in comune";
+$a->strings["No contacts in common."] = "Nessun contatto in comune.";
+$a->strings["Contact added"] = "Contatto aggiunto";
+$a->strings["Import"] = "Importa";
+$a->strings["Move account"] = "Muovi account";
+$a->strings["You can import an account from another Friendica server."] = "Puoi importare un account da un altro 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."] = "Devi esportare il tuo account dal vecchio server e caricarlo qui. Noi ricreeremo il tuo vecchio account qui, con tutti i tuoi contatti. Proveremo anche a informare i tuoi amici che ti sei spostato qui.";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "Questa funzione è sperimentale. Non possiamo importare i contatti dalla rete OStatus (status.net/identi.ca) o da Diaspora";
+$a->strings["Account file"] = "File account";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Per esportare il tuo account, vai su \"Impostazioni -> Esporta i tuoi dati personali\" e seleziona \"Esporta account\"";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s";
+$a->strings["Friends of %s"] = "Amici di %s";
+$a->strings["No friends to display."] = "Nessun amico da visualizzare.";
+$a->strings["Tag removed"] = "Tag rimosso";
+$a->strings["Remove Item Tag"] = "Rimuovi il tag";
+$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
+$a->strings["Remove"] = "Rimuovi";
+$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
+$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
+$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
+$a->strings["Getting Started"] = "Come Iniziare";
+$a->strings["Friendica Walk-Through"] = "Friendica Passo-Passo";
+$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."] = "Sulla tua pagina <em>Quick Start</em> - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti.";
+$a->strings["Go to Your Settings"] = "Vai alle tue Impostazioni";
+$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."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
+$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
+$a->strings["Profile"] = "Profilo";
+$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
+$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
+$a->strings["Edit Your Profile"] = "Modifica il tuo Profilo";
+$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."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
+$a->strings["Profile Keywords"] = "Parole chiave del profilo";
+$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
+$a->strings["Connecting"] = "Collegarsi";
+$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."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da 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>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
+$a->strings["Importing Emails"] = "Importare le Email";
+$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
+$a->strings["Go to Your Contacts Page"] = "Vai alla tua pagina Contatti";
+$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."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</em>";
+$a->strings["Go to Your Site's Directory"] = "Vai all'Elenco del tuo sito";
+$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."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
+$a->strings["Finding New People"] = "Trova nuove persone";
+$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
+$a->strings["Groups"] = "Gruppi";
+$a->strings["Group Your Contacts"] = "Raggruppa i tuoi contatti";
+$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
+$a->strings["Why Aren't My Posts Public?"] = "Perchè i miei post non sono pubblici?";
+$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 rispetta la tua provacy. Per impostazione predefinita, i tuoi post sono mostrati solo alle persone che hai aggiunto come amici. Per maggiori informazioni guarda la sezione della guida dal link qui sopra.";
+$a->strings["Getting Help"] = "Ottenere Aiuto";
+$a->strings["Go to the Help Section"] = "Vai alla sezione Guida";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
+$a->strings["Remove term"] = "Rimuovi termine";
+$a->strings["Saved Searches"] = "Ricerche salvate";
+$a->strings["Search"] = "Cerca";
+$a->strings["No results."] = "Nessun risultato.";
+$a->strings["Total invitation limit exceeded."] = "Limite totale degli inviti superato.";
+$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
+$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite degli inviti superato. Contatta l'amministratore del tuo sito.";
+$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
+$a->strings["%d message sent."] = array(
+       0 => "%d messaggio inviato.",
+       1 => "%d messaggi inviati.",
+);
+$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
+$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."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network.";
+$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico.";
+$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti.";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri.";
+$a->strings["Send invitations"] = "Invia inviti";
+$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
+$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore.";
+$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com";
+$a->strings["Account settings"] = "Parametri account";
+$a->strings["Additional features"] = "Funzionalità aggiuntive";
 $a->strings["Display settings"] = "Impostazioni grafiche";
 $a->strings["Connector settings"] = "Impostazioni connettori";
 $a->strings["Plugin settings"] = "Impostazioni plugin";
@@ -1534,7 +726,7 @@ $a->strings["Missing some important data!"] = "Mancano alcuni dati importanti!";
 $a->strings["Update"] = "Aggiorna";
 $a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti.";
 $a->strings["Email settings updated."] = "Impostazioni e-mail aggiornate.";
-$a->strings["Features updated"] = "";
+$a->strings["Features updated"] = "Funzionalità aggiornate";
 $a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata.";
 $a->strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata.";
 $a->strings["Password changed."] = "Password cambiata.";
@@ -1543,21 +735,24 @@ $a->strings[" Please use a shorter name."] = " Usa un nome più corto.";
 $a->strings[" Name too short."] = " Nome troppo corto.";
 $a->strings[" Not valid email."] = " Email non valida.";
 $a->strings[" Cannot change to that email."] = "Non puoi usare quella 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["Private forum has no privacy permissions. Using default privacy group."] = "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito.";
+$a->strings["Private forum has no privacy permissions and no default privacy group."] = "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito.";
+$a->strings["Settings updated."] = "Impostazioni aggiornate.";
 $a->strings["Add application"] = "Aggiungi applicazione";
+$a->strings["Consumer Key"] = "Consumer Key";
+$a->strings["Consumer Secret"] = "Consumer Secret";
 $a->strings["Redirect"] = "Redirect";
 $a->strings["Icon url"] = "Url icona";
 $a->strings["You can't edit this application."] = "Non puoi modificare questa applicazione.";
 $a->strings["Connected Apps"] = "Applicazioni Collegate";
-$a->strings["Edit"] = "Modifica";
 $a->strings["Client key starts with"] = "Chiave del client inizia con";
 $a->strings["No name"] = "Nessun nome";
 $a->strings["Remove authorization"] = "Rimuovi l'autorizzazione";
 $a->strings["No Plugin settings configured"] = "Nessun plugin ha impostazioni modificabili";
-$a->strings["Off"] = "";
-$a->strings["On"] = "";
-$a->strings["Additional Features"] = "";
+$a->strings["Plugin Settings"] = "Impostazioni plugin";
+$a->strings["Off"] = "Spento";
+$a->strings["On"] = "Acceso";
+$a->strings["Additional Features"] = "Funzionalità aggiuntive";
 $a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s";
 $a->strings["enabled"] = "abilitato";
 $a->strings["disabled"] = "disabilitato";
@@ -1570,6 +765,7 @@ $a->strings["Last successful email check:"] = "Ultimo controllo email eseguito c
 $a->strings["IMAP server name:"] = "Nome server IMAP:";
 $a->strings["IMAP port:"] = "Porta IMAP:";
 $a->strings["Security:"] = "Sicurezza:";
+$a->strings["None"] = "Nessuna";
 $a->strings["Email login name:"] = "Nome utente email:";
 $a->strings["Email password:"] = "Password email:";
 $a->strings["Reply-to address:"] = "Indirizzo di risposta:";
@@ -1580,10 +776,10 @@ $a->strings["Move to folder"] = "Sposta nella cartella";
 $a->strings["Move to folder:"] = "Sposta nella cartella:";
 $a->strings["Display Settings"] = "Impostazioni Grafiche";
 $a->strings["Display Theme:"] = "Tema:";
-$a->strings["Mobile Theme:"] = "";
+$a->strings["Mobile Theme:"] = "Tema mobile:";
 $a->strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi";
 $a->strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo";
-$a->strings["Number of items to display per page:"] = "";
+$a->strings["Number of items to display per page:"] = "Numero di elementi da mostrare per pagina:";
 $a->strings["Maximum of 100 items"] = "Massimo 100 voci";
 $a->strings["Don't show emoticons"] = "Non mostrare le emoticons";
 $a->strings["Normal Account Page"] = "Pagina Account Normale";
@@ -1624,6 +820,7 @@ $a->strings["New Password:"] = "Nuova password:";
 $a->strings["Confirm:"] = "Conferma:";
 $a->strings["Leave password fields blank unless changing"] = "Lascia questi campi in bianco per non effettuare variazioni alla password";
 $a->strings["Basic Settings"] = "Impostazioni base";
+$a->strings["Full Name:"] = "Nome completo:";
 $a->strings["Email Address:"] = "Indirizzo Email:";
 $a->strings["Your Timezone:"] = "Il tuo fuso orario:";
 $a->strings["Default Post Location:"] = "Località predefinita:";
@@ -1635,13 +832,13 @@ $a->strings["Default Post Permissions"] = "Permessi predefiniti per i messaggi";
 $a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)";
 $a->strings["Default Private Post"] = "";
 $a->strings["Default Public Post"] = "";
-$a->strings["Default Permissions for New Posts"] = "";
+$a->strings["Default Permissions for New Posts"] = "Permessi predefiniti per i nuovi post";
 $a->strings["Maximum private messages per day from unknown people:"] = "Numero massimo di messaggi privati da utenti sconosciuti per giorno:";
 $a->strings["Notification Settings"] = "Impostazioni notifiche";
-$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["By default post a status message when:"] = "Invia un messaggio di stato quando:";
+$a->strings["accepting a friend request"] = "accetti una richiesta di amicizia";
+$a->strings["joining a forum/community"] = "ti unisci a un forum/comunità";
+$a->strings["making an <em>interesting</em> profile change"] = "fai un <em>interessante</em> modifica al profilo";
 $a->strings["Send a notification email when:"] = "Invia una mail di notifica quando:";
 $a->strings["You receive an introduction"] = "Ricevi una presentazione";
 $a->strings["Your introductions are confirmed"] = "Le tue presentazioni sono confermate";
@@ -1650,195 +847,172 @@ $a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento
 $a->strings["You receive a private message"] = "Ricevi un messaggio privato";
 $a->strings["You receive a friend suggestion"] = "Hai ricevuto un suggerimento di amicizia";
 $a->strings["You are tagged in a post"] = "Sei stato taggato in un post";
-$a->strings["You are poked/prodded/etc. in a post"] = "";
+$a->strings["You are poked/prodded/etc. in a post"] = "Sei 'toccato'/'spronato'/ecc. in un post";
 $a->strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate Account/Tipo di pagina";
 $a->strings["Change the behaviour of this account for special situations"] = "Modifica il comportamento di questo account in situazioni speciali";
-$a->strings["No such group"] = "Nessun gruppo";
-$a->strings["Group is empty"] = "Il gruppo è vuoto";
-$a->strings["Group: "] = "Gruppo: ";
-$a->strings["%d comment"] = array(
-       0 => "%d commento",
-       1 => "%d commenti",
-);
-$a->strings["like"] = "mi piace";
-$a->strings["dislike"] = "non mi piace";
-$a->strings["Share this"] = "Condividi questo";
-$a->strings["share"] = "condividi";
-$a->strings["Bold"] = "Grassetto";
-$a->strings["Italic"] = "Corsivo";
-$a->strings["Underline"] = "Sottolineato";
-$a->strings["Quote"] = "Citazione";
-$a->strings["Code"] = "Codice";
-$a->strings["Image"] = "Immagine";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["add star"] = "aggiungi a speciali";
-$a->strings["remove star"] = "rimuovi da speciali";
-$a->strings["toggle star status"] = "Inverti stato preferito";
-$a->strings["starred"] = "preferito";
-$a->strings["add tag"] = "aggiungi tag";
-$a->strings["save to folder"] = "salva nella cartella";
-$a->strings["to"] = "a";
-$a->strings["Wall-to-Wall"] = "Da bacheca a bacheca";
-$a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca";
-$a->strings["link"] = "collegamento";
-$a->strings["Contact settings applied."] = "Contatto modificato.";
-$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
-$a->strings["Contact not found."] = "Contatto non trovato.";
-$a->strings["Repair Contact Settings"] = "Ripara il contatto";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
-$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
-$a->strings["Account Nickname"] = "Nome utente";
-$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
-$a->strings["Account URL"] = "URL dell'utente";
-$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
-$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
-$a->strings["Notification Endpoint URL"] = "URL Notifiche";
-$a->strings["Poll/Feed URL"] = "URL Feed";
-$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
-$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
-$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
-$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
-$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
-$a->strings["Potential Delegates"] = "Delegati Potenziali";
-$a->strings["Add"] = "Aggiungi";
-$a->strings["No entries."] = "Nessun articolo.";
-$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["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Questo puo' accadere occasionalmente se la richiesta di contatto era stata inviata da entrambe le persone e  già approvata.";
-$a->strings["Response from remote site was not understood."] = "Errore di comunicazione con l'altro sito.";
-$a->strings["Unexpected response from remote site: "] = "La risposta dell'altro sito non può essere gestita: ";
-$a->strings["Confirmation completed successfully."] = "Conferma completata con successo.";
-$a->strings["Remote site reported: "] = "Il sito remoto riporta: ";
-$a->strings["Temporary failure. Please wait and try again."] = "Problema temporaneo. Attendi e riprova.";
-$a->strings["Introduction failed or was revoked."] = "La presentazione ha generato un errore o è stata revocata.";
-$a->strings["Unable to set contact photo."] = "Impossibile impostare la foto del contatto.";
-$a->strings["No user record found for '%s' "] = "Nessun utente trovato '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito sembra essere corrotta.";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decrittare l'indirizzo.";
-$a->strings["Contact record was not found for you on our site."] = "Il contatto non è stato trovato sul nostro sito.";
-$a->strings["Site public key not available in contact record for URL %s."] = "La chiave pubblica del sito non è disponibile per l'URL %s";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Se riprovi dovrebbe funzionare.";
-$a->strings["Unable to set your contact credentials on our system."] = "Impossibile impostare le credenziali del tuo contatto sul nostro sistema.";
-$a->strings["Unable to update your contact profile details on our system"] = "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema";
-$a->strings["Connection accepted at %s"] = "Connession accettata su %s";
-$a->strings["%1\$s has joined %2\$s"] = "";
-$a->strings["%1\$s welcomes %2\$s"] = "";
-$a->strings["This introduction has already been accepted."] = "Questa presentazione è già stata accettata.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "L'indirizzo del profilo non è valido o non contiene un profilo.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: l'indirizzo del profilo non riporta il nome del proprietario.";
-$a->strings["Warning: profile location has no profile photo."] = "Attenzione: l'indirizzo del profilo non ha una foto.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d parametro richiesto non è stato trovato all'indirizzo dato",
-       1 => "%d parametri richiesti non sono stati trovati all'indirizzo dato",
-);
-$a->strings["Introduction complete."] = "Presentazione completa.";
-$a->strings["Unrecoverable protocol error."] = "Errore di comunicazione.";
-$a->strings["Profile unavailable."] = "Profilo non disponibile.";
-$a->strings["%s has received too many connection requests today."] = "%s ha ricevuto troppe richieste di connessione per oggi.";
-$a->strings["Spam protection measures have been invoked."] = "Sono state attivate le misure di protezione contro lo spam.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Gli amici sono pregati di riprovare tra 24 ore.";
-$a->strings["Invalid locator"] = "Invalid locator";
-$a->strings["Invalid email address."] = "Indirizzo email non valido.";
-$a->strings["This account has not been configured for email. Request failed."] = "Questo account non è stato configurato per l'email. Richiesta fallita.";
-$a->strings["Unable to resolve your name at the provided location."] = "Impossibile risolvere il tuo nome nella posizione indicata.";
-$a->strings["You have already introduced yourself here."] = "Ti sei già presentato qui.";
-$a->strings["Apparently you are already friends with %s."] = "Pare che tu e %s siate già amici.";
-$a->strings["Invalid profile URL."] = "Indirizzo profilo non valido.";
-$a->strings["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
-$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a <strong>questo</strong> profilo.";
-$a->strings["Hide this contact"] = "Nascondi questo contatto";
-$a->strings["Welcome home %s."] = "Bentornato a casa %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Conferma la tua richiesta di connessione con %s.";
-$a->strings["Confirm"] = "Conferma";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "Inserisci il tuo 'Indirizzo Identità' da uno dei seguenti network supportati:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>Connetti un email come follower</strike> (in arrivo)";
-$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>."] = "Se non sei un membro del web sociale libero,  <a href=\"http://dir.friendica.com/siteinfo\">segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi</a>";
-$a->strings["Friend/Connection Request"] = "Richieste di amicizia/connessione";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca";
-$a->strings["Please answer the following:"] = "Rispondi:";
-$a->strings["Does %s know you?"] = "%s ti conosce?";
-$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
-$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."] = " - per favore non usare questa form. Invece, inserisci %s nella tua barra di ricerca su Diaspora.";
-$a->strings["Your Identity Address:"] = "L'indirizzo della tua identità:";
-$a->strings["Submit Request"] = "Invia richiesta";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$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."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
-$a->strings["Ignore/Hide"] = "Ignora / Nascondi";
+$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
 $a->strings["People Search"] = "Cerca persone";
 $a->strings["No matches"] = "Nessun risultato";
-$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
-$a->strings["Item has been removed."] = "L'oggetto è stato rimosso.";
-$a->strings["Tag removed"] = "Tag rimosso";
-$a->strings["Remove Item Tag"] = "Rimuovi il tag";
-$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: ";
-$a->strings["Item not found"] = "Oggetto non trovato";
-$a->strings["Edit post"] = "Modifica messaggio";
-$a->strings["Event title and start time are required."] = "Titolo e ora di inizio dell'evento sono richiesti.";
-$a->strings["l, F j"] = "l j F";
-$a->strings["Edit event"] = "Modifca l'evento";
-$a->strings["Create New Event"] = "Crea un nuovo evento";
-$a->strings["hour:minute"] = "ora:minuti";
-$a->strings["Event details"] = "Dettagli dell'evento";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "Il formato è %s %s. Data di inizio e Titolo sono richiesti.";
-$a->strings["Event Starts:"] = "L'evento inizia:";
-$a->strings["Required"] = "Richiesto";
-$a->strings["Finish date/time is not known or not relevant"] = "La data/ora di fine non è definita";
-$a->strings["Event Finishes:"] = "L'evento finisce:";
-$a->strings["Adjust for viewer timezone"] = "Visualizza con il fuso orario di chi legge";
-$a->strings["Description:"] = "Descrizione:";
-$a->strings["Title:"] = "Titolo:";
-$a->strings["Share this event"] = "Condividi questo evento";
-$a->strings["Files"] = "";
-$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)"] = "";
-$a->strings["- select -"] = "- seleziona -";
-$a->strings["Import"] = "";
-$a->strings["Move account"] = "";
-$a->strings["You can import an account from another Friendica server."] = "";
-$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"] = "";
-$a->strings["Account file"] = "";
-$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
-$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]";
-$a->strings["Contact added"] = "Contatto aggiunto";
-$a->strings["This is Friendica, version"] = "Questo è Friendica, versione";
-$a->strings["running at web location"] = "in esecuzione all'indirizzo web";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">Friendica.com</a> per saperne di più sul progetto Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "Suggerimenti, lodi, donazioni, ecc -  e-mail a  \"Info\" at Friendica punto com";
-$a->strings["Installed plugins/addons/apps:"] = "Plugin/addon/applicazioni instalate";
-$a->strings["No installed plugins/addons/apps"] = "Nessun plugin/addons/applicazione installata";
-$a->strings["Friend suggestion sent."] = "Suggerimento di amicizia inviato.";
-$a->strings["Suggest Friends"] = "Suggerisci amici";
-$a->strings["Suggest a friend for %s"] = "Suggerisci un amico a %s";
-$a->strings["Group created."] = "Gruppo creato.";
-$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
-$a->strings["Group not found."] = "Gruppo non trovato.";
-$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
-$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
-$a->strings["Group Name: "] = "Nome del gruppo:";
-$a->strings["Group removed."] = "Gruppo rimosso.";
-$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
-$a->strings["Group Editor"] = "Modifica gruppo";
-$a->strings["Members"] = "Membri";
-$a->strings["No profile"] = "Nessun profilo";
-$a->strings["Help:"] = "Guida:";
-$a->strings["Not Found"] = "Non trovato";
-$a->strings["Page not found."] = "Pagina non trovata.";
-$a->strings["No contacts."] = "Nessun contatto.";
-$a->strings["Access denied."] = "Accesso negato.";
+$a->strings["Profile deleted."] = "Profilo elminato.";
+$a->strings["Profile-"] = "Profilo-";
+$a->strings["New profile created."] = "Il nuovo profilo è stato creato.";
+$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo.";
+$a->strings["Profile Name is required."] = "Il nome profilo è obbligatorio .";
+$a->strings["Marital Status"] = "Stato civile";
+$a->strings["Romantic Partner"] = "Partner romantico";
+$a->strings["Likes"] = "Mi piace";
+$a->strings["Dislikes"] = "Non mi piace";
+$a->strings["Work/Employment"] = "Lavoro/Impiego";
+$a->strings["Religion"] = "Religione";
+$a->strings["Political Views"] = "Orientamento Politico";
+$a->strings["Gender"] = "Sesso";
+$a->strings["Sexual Preference"] = "Preferenza sessuale";
+$a->strings["Homepage"] = "Homepage";
+$a->strings["Interests"] = "Interessi";
+$a->strings["Address"] = "Indirizzo";
+$a->strings["Location"] = "Posizione";
+$a->strings["Profile updated."] = "Profilo aggiornato.";
+$a->strings[" and "] = "e ";
+$a->strings["public profile"] = "profilo pubblico";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s ha cambiato %2\$s in &ldquo;%3\$s&rdquo;";
+$a->strings[" - Visit %1\$s's %2\$s"] = "- Visita  %2\$s di %1\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha un %2\$s aggiornato. Ha cambiato %3\$s";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?";
+$a->strings["Edit Profile Details"] = "Modifica i dettagli del profilo";
+$a->strings["Change Profile Photo"] = "Cambia la foto del profilo";
+$a->strings["View this profile"] = "Visualizza questo profilo";
+$a->strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
+$a->strings["Clone this profile"] = "Clona questo profilo";
+$a->strings["Delete this profile"] = "Elimina questo profilo";
+$a->strings["Profile Name:"] = "Nome del profilo:";
+$a->strings["Your Full Name:"] = "Il tuo nome completo:";
+$a->strings["Title/Description:"] = "Breve descrizione (es. titolo, posizione, altro):";
+$a->strings["Your Gender:"] = "Il tuo sesso:";
+$a->strings["Birthday (%s):"] = "Compleanno (%s)";
+$a->strings["Street Address:"] = "Indirizzo (via/piazza):";
+$a->strings["Locality/City:"] = "Località:";
+$a->strings["Postal/Zip Code:"] = "CAP:";
+$a->strings["Country:"] = "Nazione:";
+$a->strings["Region/State:"] = "Regione/Stato:";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
+$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Dal [data]:";
+$a->strings["Sexual Preference:"] = "Preferenze sessuali:";
+$a->strings["Homepage URL:"] = "Homepage:";
+$a->strings["Hometown:"] = "Paese natale:";
+$a->strings["Political Views:"] = "Orientamento politico:";
+$a->strings["Religious Views:"] = "Orientamento religioso:";
+$a->strings["Public Keywords:"] = "Parole chiave visibili a tutti:";
+$a->strings["Private Keywords:"] = "Parole chiave private:";
+$a->strings["Likes:"] = "Mi piace:";
+$a->strings["Dislikes:"] = "Non mi piace:";
+$a->strings["Example: fishing photography software"] = "Esempio: pesca fotografia programmazione";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Usato per cercare tra i profili, non è mai visibile agli altri)";
+$a->strings["Tell us about yourself..."] = "Raccontaci di te...";
+$a->strings["Hobbies/Interests"] = "Hobby/interessi";
+$a->strings["Contact information and Social Networks"] = "Informazioni su contatti e social network";
+$a->strings["Musical interests"] = "Interessi musicali";
+$a->strings["Books, literature"] = "Libri, letteratura";
+$a->strings["Television"] = "Televisione";
+$a->strings["Film/dance/culture/entertainment"] = "Film/danza/cultura/intrattenimento";
+$a->strings["Love/romance"] = "Amore";
+$a->strings["Work/employment"] = "Lavoro/impiego";
+$a->strings["School/education"] = "Scuola/educazione";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
+$a->strings["Age: "] = "Età : ";
+$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
+$a->strings["Change profile photo"] = "Cambia la foto del profilo";
+$a->strings["Create New Profile"] = "Crea un nuovo profilo";
+$a->strings["Profile Image"] = "Immagine del Profilo";
+$a->strings["visible to everybody"] = "visibile a tutti";
+$a->strings["Edit visibility"] = "Modifica visibilità";
+$a->strings["link"] = "collegamento";
+$a->strings["Export account"] = "Esporta 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."] = "Esporta le informazioni del tuo account e dei contatti. Usa questa funzione per fare un backup del tuo account o per spostarlo in un altro server.";
+$a->strings["Export all"] = "Esporta tutto";
+$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)"] = "Esporta le informazioni del tuo account, i tuoi contatti e tutti i tuoi elementi in json. Puo' diventare un file veramente molto grosso e metterci un sacco di tempo. Usa questa funzione per fare un backup completo del tuo account (le foto non sono esportate)";
+$a->strings["{0} wants to be your friend"] = "{0} vuole essere tuo amico";
+$a->strings["{0} sent you a message"] = "{0} ti ha inviato un messaggio";
+$a->strings["{0} requested registration"] = "{0} chiede la registrazione";
+$a->strings["{0} commented %s's post"] = "{0} ha commentato il post di %s";
+$a->strings["{0} liked %s's post"] = "a {0} piace il post di  %s";
+$a->strings["{0} disliked %s's post"] = "a {0} non piace il post di %s";
+$a->strings["{0} is now friends with %s"] = "{0} ora è amico di %s";
+$a->strings["{0} posted"] = "{0} ha inviato un nuovo messaggio";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} ha taggato il post di %s con #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} ti ha citato in un post";
+$a->strings["Nothing new here"] = "Niente di nuovo qui";
+$a->strings["Clear notifications"] = "Pulisci le notifiche";
+$a->strings["Not available."] = "Non disponibile.";
+$a->strings["Community"] = "Comunità";
+$a->strings["Save to Folder:"] = "Salva nella Cartella:";
+$a->strings["- select -"] = "- seleziona -";
+$a->strings["Save"] = "Salva";
 $a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d";
 $a->strings["File upload failed."] = "Caricamento del file non riuscito.";
+$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido.";
+$a->strings["Profile Visibility Editor"] = "Modifica visibilità del profilo";
+$a->strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo.";
+$a->strings["Visible To"] = "Visibile a";
+$a->strings["All Contacts (with secure profile access)"] = "Tutti i contatti (con profilo ad accesso sicuro)";
+$a->strings["Do you really want to delete this suggestion?"] = "Vuoi veramente cancellare questo suggerimento?";
+$a->strings["Friend Suggestions"] = "Contatti suggeriti";
+$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo è un sito nuovo, riprova tra 24 ore.";
+$a->strings["Connect"] = "Connetti";
+$a->strings["Ignore/Hide"] = "Ignora / Nascondi";
+$a->strings["Access denied."] = "Accesso negato.";
+$a->strings["%1\$s welcomes %2\$s"] = "%s dà il benvenuto a %s";
+$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
+$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
+$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
+$a->strings["No potential page delegates located."] = "Nessun potenziale delegato per la pagina è stato trovato.";
+$a->strings["Delegate Page Management"] = "Gestione delegati per la pagina";
+$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."] = "I Delegati sono in grando di gestire tutti gli aspetti di questa pagina, tranne per i settaggi di base dell'account. Non delegare il tuo account personale a nessuno di cui non ti fidi ciecamente.";
+$a->strings["Existing Page Managers"] = "Gestori Pagina Esistenti";
+$a->strings["Existing Page Delegates"] = "Delegati Pagina Esistenti";
+$a->strings["Potential Delegates"] = "Delegati Potenziali";
+$a->strings["Add"] = "Aggiungi";
+$a->strings["No entries."] = "Nessun articolo.";
+$a->strings["No contacts."] = "Nessun contatto.";
+$a->strings["View Contacts"] = "Visualizza i contatti";
+$a->strings["Personal Notes"] = "Note personali";
+$a->strings["Poke/Prod"] = "Tocca/Pungola";
+$a->strings["poke, prod or do other things to somebody"] = "tocca, pungola o fai altre cose a qualcuno";
+$a->strings["Recipient"] = "Destinatario";
+$a->strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi fare al destinatario";
+$a->strings["Make this post private"] = "Rendi questo post privato";
+$a->strings["Global Directory"] = "Elenco globale";
+$a->strings["Find on this site"] = "Cerca nel sito";
+$a->strings["Site Directory"] = "Elenco del sito";
+$a->strings["Gender: "] = "Genere:";
+$a->strings["Gender:"] = "Genere:";
+$a->strings["Status:"] = "Stato:";
+$a->strings["Homepage:"] = "Homepage:";
+$a->strings["About:"] = "Informazioni:";
+$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
+$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i";
+$a->strings["Time Conversion"] = "Conversione Ora";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendica fornisce questo servizio per la condivisione di eventi con altre reti e amici in fusi orari sconosciuti.";
+$a->strings["UTC time: %s"] = "Ora UTC: %s";
+$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
+$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
+$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
+$a->strings["Post successful."] = "Inviato!";
+$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
+$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
+$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
+$a->strings["Upload File:"] = "Carica un file:";
+$a->strings["Select a profile:"] = "Seleziona un profilo:";
+$a->strings["Upload"] = "Carica";
+$a->strings["skip this step"] = "salta questo passaggio";
+$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
+$a->strings["Crop Image"] = "Ritaglia immagine";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
+$a->strings["Done Editing"] = "Finito";
+$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
 $a->strings["Friendica Social Communications Server - Setup"] = "Friendica Social Communications Server - Setup";
 $a->strings["Could not connect to database."] = " Impossibile collegarsi con il database.";
 $a->strings["Could not create table."] = "Impossibile creare le tabelle.";
@@ -1860,7 +1034,7 @@ $a->strings["Your account email address must match this in order to use the web
 $a->strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo sito web";
 $a->strings["Site settings"] = "Impostazioni sito";
 $a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare la versione di PHP da riga di comando nel PATH del server web";
-$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>"] = "";
+$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>"] = "Se non hai una versione a linea di comando di PHP installata sul tuo server, non sarai in grado di avviare il processo di poll in background via cron. Vedi <a href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>";
 $a->strings["PHP executable path"] = "Percorso eseguibile PHP";
 $a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso completo all'eseguibile di php. Puoi lasciare bianco questo campo per continuare l'installazione.";
 $a->strings["Command line PHP"] = "PHP da riga di comando";
@@ -1875,7 +1049,7 @@ $a->strings["GD graphics PHP module"] = "modulo PHP GD graphics";
 $a->strings["OpenSSL PHP module"] = "modulo PHP OpenSSL";
 $a->strings["mysqli PHP module"] = "modulo PHP mysqli";
 $a->strings["mb_string PHP module"] = "modulo PHP mb_string";
-$a->strings["Apache mod_rewrite module"] = "";
+$a->strings["Apache mod_rewrite module"] = "Modulo mod_rewrite di Apache";
 $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: E' il modulo mod-rewrite di Apache è richiesto, ma non risulta installato";
 $a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto, ma non risulta installato.";
 $a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto, ma non risulta installato.";
@@ -1884,102 +1058,40 @@ $a->strings["Error: mysqli PHP module required but not installed."] = "Errore: i
 $a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato.";
 $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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
 $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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi.";
-$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."] = "";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$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."] = "Alla fine di questa procedura, di daremo un testo da salvare in un file chiamato .htconfig.php nella tua cartella principale di Friendica";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni.";
 $a->strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile";
-$a->strings["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."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$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."] = "";
-$a->strings["view/smarty3 is writable"] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Friendica usa il motore di template Smarty3 per renderizzare le sue pagine web. Smarty3 compila i template in PHP per velocizzare il 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."] = "Per salvare questi template compilati, il server werb ha bisogno dell'accesso in scrittura alla cartella view/smarty3/ nella cartella principale dei Friendica.";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Per favore, controlla che l'utente con cui il tuo server web gira (es www-data) ha accesso in scrittura a questa cartella.";
+$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."] = "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene.";
+$a->strings["view/smarty3 is writable"] = "view/smarty3 è scrivibile";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server.";
+$a->strings["Url rewrite is working"] = "La riscrittura degli url funziona";
 $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."] = "Il file di configurazione del database \".htconfig.php\" non può essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.";
 $a->strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori.";
-$a->strings["<h1>What next</h1>"] = "";
+$a->strings["<h1>What next</h1>"] = "<h1>Cosa fare ora</h1>";
 $a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller.";
-$a->strings["Image exceeds size limit of %d"] = "La dimensione dell'immagine supera il limite di %d";
-$a->strings["Total invitation limit exceeded."] = "";
-$a->strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido.";
-$a->strings["Please join us on Friendica"] = "Unisiciti a noi su Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
-$a->strings["%s : Message delivery failed."] = "%s: la consegna del messaggio fallita.";
-$a->strings["%d message sent."] = array(
-       0 => "%d messaggio inviato.",
-       1 => "%d messaggi inviati.",
-);
-$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili";
-$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."] = "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network.";
-$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "Per accettare questo invito, visita e resitrati su %s o su un'altro sito web Friendica aperto al pubblico.";
-$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."] = "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti.";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri.";
-$a->strings["Send invitations"] = "Invia inviti";
-$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:";
-$a->strings["Your message:"] = "Il tuo messaggio:";
-$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Sei cordialmente invitato a unirti a me ed ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore.";
-$a->strings["You will need to supply this invitation code: \$invite_code"] = "Sarà necessario fornire questo codice invito: \$invite_code";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Una volta registrato, connettiti con me dal mio profilo:";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "Per maggiori informazioni sul progetto Friendica e perchè pensiamo sia importante, visita http://friendica.com";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Numero giornaliero di messaggi per %s superato. Invio fallito.";
-$a->strings["No recipient selected."] = "Nessun destinatario selezionato.";
-$a->strings["Unable to check your home location."] = "";
-$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato.";
-$a->strings["Message collection failure."] = "Errore recuperando il messaggio.";
-$a->strings["Message sent."] = "Messaggio inviato.";
-$a->strings["No recipient."] = "Nessun destinatario.";
-$a->strings["Send Private Message"] = "Invia un messaggio privato";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Se vuoi che %s ti risponda, controlla che le tue impostazioni di privacy permettano la ricezione di messaggi privati da mittenti sconosciuti.";
-$a->strings["To:"] = "A:";
-$a->strings["Subject:"] = "Oggetto:";
-$a->strings["Time Conversion"] = "Conversione Ora";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
-$a->strings["UTC time: %s"] = "Ora UTC: %s";
-$a->strings["Current timezone: %s"] = "Fuso orario corrente: %s";
-$a->strings["Converted localtime: %s"] = "Ora locale convertita: %s";
-$a->strings["Please select your timezone:"] = "Selezionare il tuo fuso orario:";
-$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili.";
-$a->strings["No valid account found."] = "Nessun account valido trovato.";
-$a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email.";
-$a->strings["Password reset requested at %s"] = "Richiesta reimpostazione password su %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata. (Puoi averla già richiesta precendentemente). Reimpostazione password fallita.";
-$a->strings["Password Reset"] = "Reimpostazione password";
-$a->strings["Your password has been reset as requested."] = "La tua password è stata reimpostata come richiesto.";
-$a->strings["Your new password is"] = "La tua nuova password è";
-$a->strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi";
-$a->strings["click here to login"] = "clicca qui per entrare";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo aver effettuato l'accesso.";
-$a->strings["Your password has been changed at %s"] = "";
-$a->strings["Forgot your Password?"] = "Hai dimenticato la password?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password.";
-$a->strings["Nickname or Email: "] = "Nome utente o email: ";
-$a->strings["Reset"] = "Reimposta";
-$a->strings["System down for maintenance"] = "";
-$a->strings["Manage Identities and/or Pages"] = "Gestisci indentità e/o pagine";
-$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Cambia tra differenti identità o pagine comunità/gruppi che condividono il tuo account o per cui hai i permessi di gestione";
-$a->strings["Select an identity to manage: "] = "Seleziona un'identità da gestire:";
+$a->strings["Group created."] = "Gruppo creato.";
+$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
+$a->strings["Group not found."] = "Gruppo non trovato.";
+$a->strings["Group name changed."] = "Il nome del gruppo è cambiato.";
+$a->strings["Create a group of contacts/friends."] = "Crea un gruppo di amici/contatti.";
+$a->strings["Group Name: "] = "Nome del gruppo:";
+$a->strings["Group removed."] = "Gruppo rimosso.";
+$a->strings["Unable to remove group."] = "Impossibile rimuovere il gruppo.";
+$a->strings["Group Editor"] = "Modifica gruppo";
+$a->strings["Members"] = "Membri";
+$a->strings["No such group"] = "Nessun gruppo";
+$a->strings["Group is empty"] = "Il gruppo è vuoto";
+$a->strings["Group: "] = "Gruppo: ";
+$a->strings["View in context"] = "Vedi nel contesto";
+$a->strings["Account approved."] = "Account approvato.";
+$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
+$a->strings["Please login."] = "Accedi.";
 $a->strings["Profile Match"] = "Profili corrispondenti";
 $a->strings["No keywords to match. Please add keywords to your default profile."] = "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo profilo predefinito.";
 $a->strings["is interested in:"] = "è interessato a:";
-$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto.";
-$a->strings["Do you really want to delete this message?"] = "";
-$a->strings["Message deleted."] = "Messaggio eliminato.";
-$a->strings["Conversation removed."] = "Conversazione rimossa.";
-$a->strings["No messages."] = "Nessun messaggio.";
-$a->strings["Unknown sender - %s"] = "Mittente sconosciuto - %s";
-$a->strings["You and %s"] = "Tu e %s";
-$a->strings["%s and You"] = "%s e Tu";
-$a->strings["Delete conversation"] = "Elimina la conversazione";
-$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
-$a->strings["%d message"] = array(
-       0 => "%d messaggio",
-       1 => "%d messaggi",
-);
-$a->strings["Message not available."] = "Messaggio non disponibile.";
-$a->strings["Delete message"] = "Elimina il messaggio";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, <strong>Potresti</strong> essere in grado di rispondere dalla pagina del profilo del mittente.";
-$a->strings["Send Reply"] = "Invia la risposta";
-$a->strings["Mood"] = "";
-$a->strings["Set your current mood and tell your friends"] = "";
 $a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
 $a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
 $a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato.";
@@ -1987,12 +1099,15 @@ $a->strings["This message was sent to you by %s, a member of the Friendica socia
 $a->strings["You may visit them online at %s"] = "Puoi visitarli online su %s";
 $a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Contatta il mittente rispondendo a questo post se non vuoi ricevere questi messaggi.";
 $a->strings["%s posted an update."] = "%s ha inviato un aggiornamento.";
+$a->strings["%1\$s is currently %2\$s"] = "%1\$s al momento è %2\$s";
+$a->strings["Mood"] = "Umore";
+$a->strings["Set your current mood and tell your friends"] = "Condividi il tuo umore con i tuoi amici";
 $a->strings["Search Results For:"] = "Cerca risultati per:";
+$a->strings["add"] = "aggiungi";
 $a->strings["Commented Order"] = "Ordina per commento";
 $a->strings["Sort by Comment Date"] = "Ordina per data commento";
 $a->strings["Posted Order"] = "Ordina per invio";
 $a->strings["Sort by Post Date"] = "Ordina per data messaggio";
-$a->strings["Personal"] = "Personale";
 $a->strings["Posts that mention or involve you"] = "Messaggi che ti citano o coinvolgono";
 $a->strings["New"] = "Nuovo";
 $a->strings["Activity Stream - by date"] = "Activity Stream - per data";
@@ -2008,141 +1123,84 @@ $a->strings["Private messages to this group are at risk of public disclosure."]
 $a->strings["Contact: "] = "Contatto:";
 $a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati a questa persona potrebbero risultare visibili anche pubblicamente.";
 $a->strings["Invalid contact."] = "Contatto non valido.";
-$a->strings["Welcome to Friendica"] = "Benvenuto su Friendica";
-$a->strings["New Member Checklist"] = "Cose da fare per i Nuovi Utenti";
-$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."] = "Vorremmo offrirti qualche trucco e dei link alla guida per aiutarti ad avere un'esperienza divertente. Clicca su un qualsiasi elemento per visitare la relativa pagina. Un link a questa pagina sarà visibile nella tua home per due settimane dopo la tua registrazione.";
-$a->strings["Getting Started"] = "";
-$a->strings["Friendica Walk-Through"] = "";
-$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."] = "";
-$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."] = "Nella tua pagina <em>Impostazioni</em> - cambia la tua password iniziale. Prendi anche nota del tuo Indirizzo Identità. Assomiglia a un indirizzo email e sarà utile per stringere amicizie nel web sociale libero.";
-$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."] = "Guarda le altre impostazioni, in particolare le impostazioni della privacy. Un profilo non pubblicato è come un numero di telefono non in elenco. In genere, dovresti pubblicare il tuo profilo - a meno che tutti i tuoi amici e potenziali tali sappiano esattamente come trovarti.";
-$a->strings["Upload Profile Photo"] = "Carica la foto del profilo";
-$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."] = "Carica una foto del profilo se non l'hai ancora fatto. Studi hanno mostrato che persone che hanno vere foto di se stessi hanno dieci volte più probabilità di fare amicizie rispetto alle persone che non ce l'hanno.";
-$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."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
-$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."] = "Inserisci qualche parola chiave pubblica nel tuo profilo predefinito che descriva i tuoi interessi. Potremmo essere in grado di trovare altre persone con interessi similari e suggerirti delle amicizie.";
-$a->strings["Connecting"] = "";
-$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "Autorizza il Facebook Connector se hai un account Facebook, e noi (opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da 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>Se</em questo è il tuo server personale, installare il plugin per Facebook puo' aiutarti nella transizione verso il web sociale libero.";
-$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"] = "Inserisci i tuoi dati di accesso all'email nella tua pagina Impostazioni Connettori se vuoi importare e interagire con amici o mailing list dalla tua casella di posta in arrivo";
-$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."] = "La tua pagina Contatti è il mezzo per gestire le amicizie e collegarsi con amici su altre reti. Di solito, basta inserire l'indirizzo nel campo <em>Aggiungi Nuovo Contatto</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."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
-$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."] = "Nel pannello laterale nella pagina \"Contatti\", ci sono diversi strumenti per trovare nuovi amici. Possiamo confrontare le persone per interessi, cercare le persone per nome e fornire suggerimenti basati sui tuoi contatti esistenti. Su un sito nuovo, i suggerimenti sono di solito presenti dopo 24 ore.";
-$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."] = "Quando avrai alcuni amici, organizzali in gruppi di conversazioni private dalla barra laterale della tua pagina Contatti. Potrai interagire privatamente con ogni gruppo nella tua pagina Rete";
-$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."] = "";
-$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."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
-$a->strings["Requested profile is not available."] = "Profilo richiesto non disponibile.";
-$a->strings["Tips for New Members"] = "Consigli per i Nuovi Utenti";
-$a->strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido.";
-$a->strings["Discard"] = "Scarta";
-$a->strings["System"] = "Sistema";
-$a->strings["Show Ignored Requests"] = "Mostra richieste ignorate";
-$a->strings["Hide Ignored Requests"] = "Nascondi richieste ignorate";
-$a->strings["Notification type: "] = "Tipo di notifica: ";
-$a->strings["Friend Suggestion"] = "Amico suggerito";
-$a->strings["suggested by %s"] = "sugerito da %s";
-$a->strings["Post a new friend activity"] = "Invia una attività \"è ora amico con\"";
-$a->strings["if applicable"] = "se applicabile";
-$a->strings["Claims to be known to you: "] = "Dice di conoscerti: ";
-$a->strings["yes"] = "si";
-$a->strings["no"] = "no";
-$a->strings["Approve as: "] = "Approva come: ";
-$a->strings["Friend"] = "Amico";
-$a->strings["Sharer"] = "Condivisore";
-$a->strings["Fan/Admirer"] = "Fan/Ammiratore";
-$a->strings["Friend/Connect Request"] = "Richiesta amicizia/connessione";
-$a->strings["New Follower"] = "Qualcuno inizia a seguirti";
-$a->strings["No introductions."] = "Nessuna presentazione.";
-$a->strings["%s liked %s's post"] = "a %s è piaciuto il messaggio di %s";
-$a->strings["%s disliked %s's post"] = "a %s non è piaciuto il messaggio di %s";
-$a->strings["%s is now friends with %s"] = "%s è ora amico di %s";
-$a->strings["%s created a new post"] = "%s a creato un nuovo messaggio";
-$a->strings["%s commented on %s's post"] = "%s ha commentato il messaggio di %s";
-$a->strings["No more network notifications."] = "Nessuna nuova.";
-$a->strings["Network Notifications"] = "Notifiche dalla rete";
-$a->strings["No more system notifications."] = "Nessuna nuova notifica di sistema.";
-$a->strings["System Notifications"] = "Notifiche di sistema";
-$a->strings["No more personal notifications."] = "Nessuna nuova.";
-$a->strings["Personal Notifications"] = "Notifiche personali";
-$a->strings["No more home notifications."] = "Nessuna nuova.";
-$a->strings["Home Notifications"] = "Notifiche bacheca";
-$a->strings["Post successful."] = "Inviato!";
-$a->strings["OpenID protocol error. No ID returned."] = "Errore protocollo OpenID. Nessun ID ricevuto.";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "L'account non è stato trovato, e la registrazione via OpenID non è permessa su questo sito.";
-$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla.";
-$a->strings["Image size reduction [%s] failed."] = "Il ridimensionamento del'immagine [%s] è fallito.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente.";
-$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine";
-$a->strings["Upload File:"] = "Carica un file:";
-$a->strings["Select a profile:"] = "";
-$a->strings["skip this step"] = "salta questo passaggio";
-$a->strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album";
-$a->strings["Crop Image"] = "Ritaglia immagine";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'imagine per una visualizzazione migliore.";
-$a->strings["Done Editing"] = "Finito";
-$a->strings["Image uploaded successfully."] = "Immagine caricata con successo.";
-$a->strings["via"] = "";
-$a->strings["Theme settings"] = "Impostazioni tema";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)";
-$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti";
-$a->strings["Set theme width"] = "";
-$a->strings["Color scheme"] = "Schema colori";
-$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Set color scheme"] = "";
-$a->strings["Set twitter search term"] = "";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Set longitude (X) for Earth Layers"] = "";
-$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Contact settings applied."] = "Contatto modificato.";
+$a->strings["Contact update failed."] = "Le modifiche al contatto non sono state salvate.";
+$a->strings["Repair Contact Settings"] = "Ripara il contatto";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
+$a->strings["Return to contact editor"] = "Ritorna alla modifica contatto";
+$a->strings["Account Nickname"] = "Nome utente";
+$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - al posto del nome utente";
+$a->strings["Account URL"] = "URL dell'utente";
+$a->strings["Friend Request URL"] = "URL Richiesta Amicizia";
+$a->strings["Friend Confirm URL"] = "URL Conferma Amicizia";
+$a->strings["Notification Endpoint URL"] = "URL Notifiche";
+$a->strings["Poll/Feed URL"] = "URL Feed";
+$a->strings["New photo from this URL"] = "Nuova foto da questo URL";
+$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni";
+$a->strings["Your profile page"] = "Pagina del tuo profilo";
+$a->strings["Your contacts"] = "I tuoi contatti";
+$a->strings["Your photos"] = "Le tue foto";
+$a->strings["Your events"] = "I tuoi eventi";
+$a->strings["Personal notes"] = "Note personali";
+$a->strings["Your personal photos"] = "Le tue foto personali";
 $a->strings["Community Pages"] = "Pagine Comunitarie";
-$a->strings["Earth Layers"] = "";
-$a->strings["Community Profiles"] = "";
-$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?";
-$a->strings["Connect Services"] = "Servizi di conessione";
-$a->strings["Find Friends"] = "Trova Amici";
-$a->strings["Last tweets"] = "";
+$a->strings["Community Profiles"] = "Profili Comunità";
 $a->strings["Last users"] = "Ultimi utenti";
-$a->strings["Last photos"] = "Ultime foto";
 $a->strings["Last likes"] = "Ultimi \"mi piace\"";
-$a->strings["Your contacts"] = "I tuoi contatti";
+$a->strings["event"] = "l'evento";
+$a->strings["Last photos"] = "Ultime foto";
+$a->strings["Find Friends"] = "Trova Amici";
 $a->strings["Local Directory"] = "Elenco Locale";
+$a->strings["Similar Interests"] = "Interessi simili";
+$a->strings["Invite Friends"] = "Invita amici";
+$a->strings["Earth Layers"] = "";
 $a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Set longitude (X) for Earth Layers"] = "";
+$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Help or @NewHere ?"] = "Serve aiuto? Sei nuovo?";
+$a->strings["Connect Services"] = "Servizi di conessione";
 $a->strings["Last Tweets"] = "";
+$a->strings["Set twitter search term"] = "";
+$a->strings["don't show"] = "non mostrare";
+$a->strings["show"] = "mostra";
 $a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Theme settings"] = "Impostazioni tema";
+$a->strings["Set font-size for posts and comments"] = "Dimensione del carattere di messaggi e commenti";
+$a->strings["Set line-height for posts and comments"] = "Altezza della linea di testo di messaggi e commenti";
+$a->strings["Set resolution for middle column"] = "";
+$a->strings["Set color scheme"] = "";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Last tweets"] = "";
 $a->strings["Set colour scheme"] = "Imposta schema colori";
 $a->strings["Alignment"] = "Allineamento";
 $a->strings["Left"] = "Sinistra";
 $a->strings["Center"] = "Centrato";
-$a->strings["Posts font size"] = "";
-$a->strings["Textareas font size"] = "";
-$a->strings["toggle mobile"] = "";
+$a->strings["Color scheme"] = "Schema colori";
+$a->strings["Posts font size"] = "Dimensione caratteri post";
+$a->strings["Textareas font size"] = "Dimensione caratteri nelle aree di testo";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "Dimensione immagini in messaggi e commenti (larghezza e altezza)";
+$a->strings["Set theme width"] = "Imposta la larghezza del tema";
 $a->strings["Delete this item?"] = "Cancellare questo elemento?";
 $a->strings["show fewer"] = "mostra di meno";
 $a->strings["Update %s failed. See error logs."] = "aggiornamento %s fallito. Guarda i log di errore.";
 $a->strings["Update Error at %s"] = "Errore aggiornamento a %s";
 $a->strings["Create a New Account"] = "Crea un nuovo account";
+$a->strings["Logout"] = "Esci";
+$a->strings["Login"] = "Accedi";
 $a->strings["Nickname or Email address: "] = "Nome utente o indirizzo email: ";
 $a->strings["Password: "] = "Password: ";
-$a->strings["Remember me"] = "";
+$a->strings["Remember me"] = "Ricordati di me";
 $a->strings["Or login using OpenID: "] = "O entra con OpenID:";
 $a->strings["Forgot your password?"] = "Hai dimenticato la 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["Website Terms of Service"] = "Condizioni di servizio del sito web ";
+$a->strings["terms of service"] = "condizioni del servizio";
+$a->strings["Website Privacy Policy"] = "Politiche di privacy del sito";
+$a->strings["privacy policy"] = "politiche di privacy";
+$a->strings["Requested account is not available."] = "L'account richiesto non è disponibile.";
 $a->strings["Edit profile"] = "Modifica il profilo";
 $a->strings["Message"] = "Messaggio";
+$a->strings["Profiles"] = "Profili";
 $a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili";
 $a->strings["g A l F d"] = "g A l d F";
 $a->strings["F d"] = "d F";
@@ -2152,7 +1210,421 @@ $a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
 $a->strings["[No description]"] = "[Nessuna descrizione]";
 $a->strings["Event Reminders"] = "Promemoria";
 $a->strings["Events this week:"] = "Eventi di questa settimana:";
-$a->strings["Status Messages and Posts"] = "";
-$a->strings["Profile Details"] = "";
-$a->strings["Events and Calendar"] = "";
-$a->strings["Only You Can See This"] = "";
+$a->strings["Status"] = "Stato";
+$a->strings["Status Messages and Posts"] = "Messaggi di stato e post";
+$a->strings["Profile Details"] = "Dettagli del profilo";
+$a->strings["Events and Calendar"] = "Eventi e calendario";
+$a->strings["Only You Can See This"] = "Solo tu puoi vedere questo";
+$a->strings["General Features"] = "Funzionalità generali";
+$a->strings["Multiple Profiles"] = "Profili multipli";
+$a->strings["Ability to create multiple profiles"] = "Possibilità di creare profili multipli";
+$a->strings["Post Composition Features"] = "Funzionalità di composizione dei post";
+$a->strings["Richtext Editor"] = "Editor visuale";
+$a->strings["Enable richtext editor"] = "Abilita l'editor visuale";
+$a->strings["Post Preview"] = "Anteprima dei post";
+$a->strings["Allow previewing posts and comments before publishing them"] = "Permetti di avere un'anteprima di messaggi e commenti prima di pubblicarli";
+$a->strings["Network Sidebar Widgets"] = "Widget della barra laterale nella pagina Rete";
+$a->strings["Search by Date"] = "Cerca per data";
+$a->strings["Ability to select posts by date ranges"] = "Permette di filtrare i post per data";
+$a->strings["Group Filter"] = "Filtra gruppi";
+$a->strings["Enable widget to display Network posts only from selected group"] = "Abilita il widget per filtrare i post solo per il gruppo selezionato";
+$a->strings["Network Filter"] = "Filtro reti";
+$a->strings["Enable widget to display Network posts only from selected network"] = "Abilita il widget per mostare i post solo per la rete selezionata";
+$a->strings["Save search terms for re-use"] = "Salva i termini cercati per riutilizzarli";
+$a->strings["Network Tabs"] = "Schede pagina Rete";
+$a->strings["Network Personal Tab"] = "Scheda Personali";
+$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita la scheda per mostrare solo i post a cui hai partecipato";
+$a->strings["Network New Tab"] = "Scheda Nuovi";
+$a->strings["Enable tab to display only new Network posts (from the last 12 hours)"] = "Abilita la scheda per mostrare solo i post nuovi (nelle ultime 12 ore)";
+$a->strings["Network Shared Links Tab"] = "Scheda Link Condivisi";
+$a->strings["Enable tab to display only Network posts with links in them"] = "Abilita la scheda per mostrare solo i post che contengono link";
+$a->strings["Post/Comment Tools"] = "Strumenti per mesasggi/commenti";
+$a->strings["Multiple Deletion"] = "Eliminazione multipla";
+$a->strings["Select and delete multiple posts/comments at once"] = "Seleziona ed elimina vari messagi e commenti in una volta sola";
+$a->strings["Edit Sent Posts"] = "Modifica i post inviati";
+$a->strings["Edit and correct posts and comments after sending"] = "Modifica e correggi messaggi e commenti dopo averli inviati";
+$a->strings["Tagging"] = "Aggiunta tag";
+$a->strings["Ability to tag existing posts"] = "Permette di aggiungere tag ai post già esistenti";
+$a->strings["Post Categories"] = "Cateorie post";
+$a->strings["Add categories to your posts"] = "Aggiungi categorie ai tuoi post";
+$a->strings["Saved Folders"] = "Cartelle Salvate";
+$a->strings["Ability to file posts under folders"] = "Permette di archiviare i post in cartelle";
+$a->strings["Dislike Posts"] = "Non mi piace";
+$a->strings["Ability to dislike posts/comments"] = "Permetti di inviare \"non mi piace\" ai messaggi";
+$a->strings["Star Posts"] = "Post preferiti";
+$a->strings["Ability to mark special posts with a star indicator"] = "Permette di segnare i post preferiti con una stella";
+$a->strings["Logged out."] = "Uscita effettuata.";
+$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto.";
+$a->strings["The error message was:"] = "Il messaggio riportato era:";
+$a->strings["Starts:"] = "Inizia:";
+$a->strings["Finishes:"] = "Finisce:";
+$a->strings["j F, Y"] = "j F Y";
+$a->strings["j F"] = "j F";
+$a->strings["Birthday:"] = "Compleanno:";
+$a->strings["Age:"] = "Età:";
+$a->strings["for %1\$d %2\$s"] = "per %1\$d %2\$s";
+$a->strings["Tags:"] = "Tag:";
+$a->strings["Religion:"] = "Religione:";
+$a->strings["Hobbies/Interests:"] = "Hobby/Interessi:";
+$a->strings["Contact information and Social Networks:"] = "Informazioni su contatti e social network:";
+$a->strings["Musical interests:"] = "Interessi musicali:";
+$a->strings["Books, literature:"] = "Libri, letteratura:";
+$a->strings["Television:"] = "Televisione:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/danza/cultura/intrattenimento:";
+$a->strings["Love/Romance:"] = "Amore:";
+$a->strings["Work/employment:"] = "Lavoro:";
+$a->strings["School/education:"] = "Scuola:";
+$a->strings["[no subject]"] = "[nessun oggetto]";
+$a->strings[" on Last.fm"] = "su Last.fm";
+$a->strings["prev"] = "prec";
+$a->strings["first"] = "primo";
+$a->strings["last"] = "ultimo";
+$a->strings["next"] = "succ";
+$a->strings["newer"] = "nuovi";
+$a->strings["older"] = "vecchi";
+$a->strings["No contacts"] = "Nessun contatto";
+$a->strings["%d Contact"] = array(
+       0 => "%d contatto",
+       1 => "%d contatti",
+);
+$a->strings["poke"] = "stuzzica";
+$a->strings["poked"] = "toccato";
+$a->strings["ping"] = "invia un ping";
+$a->strings["pinged"] = "inviato un ping";
+$a->strings["prod"] = "pungola";
+$a->strings["prodded"] = "pungolato";
+$a->strings["slap"] = "schiaffeggia";
+$a->strings["slapped"] = "schiaffeggiato";
+$a->strings["finger"] = "tocca";
+$a->strings["fingered"] = "toccato";
+$a->strings["rebuff"] = "respingi";
+$a->strings["rebuffed"] = "respinto";
+$a->strings["happy"] = "felice";
+$a->strings["sad"] = "triste";
+$a->strings["mellow"] = "rilassato";
+$a->strings["tired"] = "stanco";
+$a->strings["perky"] = "vivace";
+$a->strings["angry"] = "arrabbiato";
+$a->strings["stupified"] = "stupefatto";
+$a->strings["puzzled"] = "confuso";
+$a->strings["interested"] = "interessato";
+$a->strings["bitter"] = "risentito";
+$a->strings["cheerful"] = "giocoso";
+$a->strings["alive"] = "vivo";
+$a->strings["annoyed"] = "annoiato";
+$a->strings["anxious"] = "ansioso";
+$a->strings["cranky"] = "irritabile";
+$a->strings["disturbed"] = "disturbato";
+$a->strings["frustrated"] = "frustato";
+$a->strings["motivated"] = "motivato";
+$a->strings["relaxed"] = "rilassato";
+$a->strings["surprised"] = "sorpreso";
+$a->strings["Monday"] = "Lunedì";
+$a->strings["Tuesday"] = "Martedì";
+$a->strings["Wednesday"] = "Mercoledì";
+$a->strings["Thursday"] = "Giovedì";
+$a->strings["Friday"] = "Venerdì";
+$a->strings["Saturday"] = "Sabato";
+$a->strings["Sunday"] = "Domenica";
+$a->strings["January"] = "Gennaio";
+$a->strings["February"] = "Febbraio";
+$a->strings["March"] = "Marzo";
+$a->strings["April"] = "Aprile";
+$a->strings["May"] = "Maggio";
+$a->strings["June"] = "Giugno";
+$a->strings["July"] = "Luglio";
+$a->strings["August"] = "Agosto";
+$a->strings["September"] = "Settembre";
+$a->strings["October"] = "Ottobre";
+$a->strings["November"] = "Novembre";
+$a->strings["December"] = "Dicembre";
+$a->strings["bytes"] = "bytes";
+$a->strings["Click to open/close"] = "Clicca per aprire/chiudere";
+$a->strings["default"] = "default";
+$a->strings["Select an alternate language"] = "Seleziona una diversa lingua";
+$a->strings["activity"] = "attività";
+$a->strings["post"] = "messaggio";
+$a->strings["Item filed"] = "Messaggio salvato";
+$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
+$a->strings["%s's birthday"] = "Compleanno di %s";
+$a->strings["Happy Birthday %s"] = "Buon compleanno %s";
+$a->strings["A new person is sharing with you at "] = "Una nuova persona sta condividendo con te da ";
+$a->strings["You have a new follower at "] = "Una nuova persona ti segue su ";
+$a->strings["Do you really want to delete this item?"] = "Vuoi veramente cancellare questo elemento?";
+$a->strings["Archives"] = "Archivi";
+$a->strings["(no subject)"] = "(nessun oggetto)";
+$a->strings["noreply"] = "nessuna risposta";
+$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*";
+$a->strings["Attachments:"] = "Allegati:";
+$a->strings["Connect URL missing."] = "URL di connessione mancante.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Questo sito non è configurato per permettere la comunicazione con altri network.";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati protocolli di comunicazione o feed compatibili.";
+$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
+$a->strings["An author or name was not found."] = "Non è stato trovato un nome o un autore";
+$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo.";
+$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email.";
+$a->strings["Use mailto: in front of address to force email check."] = "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email.";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "L'indirizzo del profilo specificato appartiene a un network che è stato disabilitato su questo sito.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te.";
+$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
+$a->strings["following"] = "segue";
+$a->strings["Welcome "] = "Ciao";
+$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
+$a->strings["Welcome back "] = "Ciao ";
+$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."] = "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla.";
+$a->strings["Male"] = "Maschio";
+$a->strings["Female"] = "Femmina";
+$a->strings["Currently Male"] = "Al momento maschio";
+$a->strings["Currently Female"] = "Al momento femmina";
+$a->strings["Mostly Male"] = "Prevalentemente maschio";
+$a->strings["Mostly Female"] = "Prevalentemente femmina";
+$a->strings["Transgender"] = "Transgender";
+$a->strings["Intersex"] = "Intersex";
+$a->strings["Transsexual"] = "Transessuale";
+$a->strings["Hermaphrodite"] = "Ermafrodito";
+$a->strings["Neuter"] = "Neutro";
+$a->strings["Non-specific"] = "Non specificato";
+$a->strings["Other"] = "Altro";
+$a->strings["Undecided"] = "Indeciso";
+$a->strings["Males"] = "Maschi";
+$a->strings["Females"] = "Femmine";
+$a->strings["Gay"] = "Gay";
+$a->strings["Lesbian"] = "Lesbica";
+$a->strings["No Preference"] = "Nessuna preferenza";
+$a->strings["Bisexual"] = "Bisessuale";
+$a->strings["Autosexual"] = "Autosessuale";
+$a->strings["Abstinent"] = "Astinente";
+$a->strings["Virgin"] = "Vergine";
+$a->strings["Deviant"] = "Deviato";
+$a->strings["Fetish"] = "Fetish";
+$a->strings["Oodles"] = "Un sacco";
+$a->strings["Nonsexual"] = "Asessuato";
+$a->strings["Single"] = "Single";
+$a->strings["Lonely"] = "Solitario";
+$a->strings["Available"] = "Disponibile";
+$a->strings["Unavailable"] = "Non disponibile";
+$a->strings["Has crush"] = "è cotto/a";
+$a->strings["Infatuated"] = "infatuato/a";
+$a->strings["Dating"] = "Disponibile a un incontro";
+$a->strings["Unfaithful"] = "Infedele";
+$a->strings["Sex Addict"] = "Sesso-dipendente";
+$a->strings["Friends"] = "Amici";
+$a->strings["Friends/Benefits"] = "Amici con benefici";
+$a->strings["Casual"] = "Casual";
+$a->strings["Engaged"] = "Impegnato";
+$a->strings["Married"] = "Sposato";
+$a->strings["Imaginarily married"] = "immaginariamente sposato/a";
+$a->strings["Partners"] = "Partners";
+$a->strings["Cohabiting"] = "Coinquilino";
+$a->strings["Common law"] = "diritto comune";
+$a->strings["Happy"] = "Felice";
+$a->strings["Not looking"] = "Non guarda";
+$a->strings["Swinger"] = "Scambista";
+$a->strings["Betrayed"] = "Tradito";
+$a->strings["Separated"] = "Separato";
+$a->strings["Unstable"] = "Instabile";
+$a->strings["Divorced"] = "Divorziato";
+$a->strings["Imaginarily divorced"] = "immaginariamente divorziato/a";
+$a->strings["Widowed"] = "Vedovo";
+$a->strings["Uncertain"] = "Incerto";
+$a->strings["It's complicated"] = "E' complicato";
+$a->strings["Don't care"] = "Non interessa";
+$a->strings["Ask me"] = "Chiedimelo";
+$a->strings["Error decoding account file"] = "Errore decodificando il file account";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Errore! Nessuna informazione di versione nel file! Potrebbe non essere un file account di Friendica?";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Errore! Non posso importare questo file: la versione dello schema del database non è compatibile.";
+$a->strings["Error! Cannot check nickname"] = "Errore! Non posso controllare il nickname";
+$a->strings["User '%s' already exists on this server!"] = "L'utente '%s' esiste già su questo server!";
+$a->strings["User creation error"] = "Errore creando l'utente";
+$a->strings["User profile creation error"] = "Errore creando il profile dell'utente";
+$a->strings["%d contact not imported"] = array(
+       0 => "%d contatto non importato",
+       1 => "%d contatti non importati",
+);
+$a->strings["Done. You can now login with your username and password"] = "Fatto. Ora puoi entrare con il tuo nome utente e la tua password";
+$a->strings["Click here to upgrade."] = "Clicca qui per aggiornare.";
+$a->strings["This action exceeds the limits set by your subscription plan."] = "Questa azione eccede i limiti del tuo piano di sottoscrizione.";
+$a->strings["This action is not available under your subscription plan."] = "Questa azione non è disponibile nel tuo piano di sottoscrizione.";
+$a->strings["%1\$s poked %2\$s"] = "%1\$s ha stuzzicato %2\$s";
+$a->strings["post/item"] = "post/elemento";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "%1\$s ha segnato il/la %3\$s di %2\$s come preferito";
+$a->strings["remove"] = "rimuovi";
+$a->strings["Delete Selected Items"] = "Cancella elementi selezionati";
+$a->strings["Follow Thread"] = "Segui la discussione";
+$a->strings["View Status"] = "Visualizza stato";
+$a->strings["View Profile"] = "Visualizza profilo";
+$a->strings["View Photos"] = "Visualizza foto";
+$a->strings["Network Posts"] = "Post della Rete";
+$a->strings["Edit Contact"] = "Modifica contatti";
+$a->strings["Send PM"] = "Invia messaggio privato";
+$a->strings["Poke"] = "Stuzzica";
+$a->strings["%s likes this."] = "Piace a %s.";
+$a->strings["%s doesn't like this."] = "Non piace a %s.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "Piace a <span %1\$s>%2\$d persone</span>.";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "Non piace a <span %1\$s>%2\$d persone</span>.";
+$a->strings["and"] = "e";
+$a->strings[", and %d other people"] = "e altre %d persone";
+$a->strings["%s like this."] = "Piace a %s.";
+$a->strings["%s don't like this."] = "Non piace a %s.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>";
+$a->strings["Please enter a video link/URL:"] = "Inserisci un collegamento video / URL:";
+$a->strings["Please enter an audio link/URL:"] = "Inserisci un collegamento audio / URL:";
+$a->strings["Tag term:"] = "Tag:";
+$a->strings["Where are you right now?"] = "Dove sei ora?";
+$a->strings["Delete item(s)?"] = "Cancellare questo elemento/i?";
+$a->strings["Post to Email"] = "Invia a email";
+$a->strings["permissions"] = "permessi";
+$a->strings["Post to Groups"] = "Invia ai Gruppi";
+$a->strings["Post to Contacts"] = "Invia ai Contatti";
+$a->strings["Private post"] = "Post privato";
+$a->strings["Add New Contact"] = "Aggiungi nuovo contatto";
+$a->strings["Enter address or web location"] = "Inserisci posizione o indirizzo web";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara";
+$a->strings["%d invitation available"] = array(
+       0 => "%d invito disponibile",
+       1 => "%d inviti disponibili",
+);
+$a->strings["Find People"] = "Trova persone";
+$a->strings["Enter name or interest"] = "Inserisci un nome o un interesse";
+$a->strings["Connect/Follow"] = "Connetti/segui";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Esempi: Mario Rossi, Pesca";
+$a->strings["Random Profile"] = "Profilo causale";
+$a->strings["Networks"] = "Reti";
+$a->strings["All Networks"] = "Tutte le Reti";
+$a->strings["Everything"] = "Tutto";
+$a->strings["Categories"] = "Categorie";
+$a->strings["End this session"] = "Finisci questa sessione";
+$a->strings["Sign in"] = "Entra";
+$a->strings["Home Page"] = "Home Page";
+$a->strings["Create an account"] = "Crea un account";
+$a->strings["Help and documentation"] = "Guida e documentazione";
+$a->strings["Apps"] = "Applicazioni";
+$a->strings["Addon applications, utilities, games"] = "Applicazioni, utilità e giochi aggiuntivi";
+$a->strings["Search site content"] = "Cerca nel contenuto del sito";
+$a->strings["Conversations on this site"] = "Conversazioni su questo sito";
+$a->strings["Directory"] = "Elenco";
+$a->strings["People directory"] = "Elenco delle persone";
+$a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici";
+$a->strings["Network Reset"] = "Reset pagina Rete";
+$a->strings["Load Network page with no filters"] = "Carica la pagina Rete senza nessun filtro";
+$a->strings["Friend Requests"] = "Richieste di amicizia";
+$a->strings["See all notifications"] = "Vedi tutte le notifiche";
+$a->strings["Mark all system notifications seen"] = "Segna tutte le notifiche come viste";
+$a->strings["Private mail"] = "Posta privata";
+$a->strings["Inbox"] = "In arrivo";
+$a->strings["Outbox"] = "Inviati";
+$a->strings["Manage"] = "Gestisci";
+$a->strings["Manage other pages"] = "Gestisci altre pagine";
+$a->strings["Delegations"] = "Delegazioni";
+$a->strings["Manage/Edit Profiles"] = "Gestisci/Modifica i profili";
+$a->strings["Manage/edit friends and contacts"] = "Gestisci/modifica amici e contatti";
+$a->strings["Site setup and configuration"] = "Configurazione del sito";
+$a->strings["Navigation"] = "Navigazione";
+$a->strings["Site map"] = "Mappa del sito";
+$a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato";
+$a->strings["Block immediately"] = "Blocca immediatamente";
+$a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer";
+$a->strings["Known to me, but no opinion"] = "Lo conosco, ma non ho un'opinione particolare";
+$a->strings["OK, probably harmless"] = "E' ok, probabilmente innocuo";
+$a->strings["Reputable, has my trust"] = "Rispettabile, ha la mia fiducia";
+$a->strings["Frequently"] = "Frequentemente";
+$a->strings["Hourly"] = "Ogni ora";
+$a->strings["Twice daily"] = "Due volte al dì";
+$a->strings["Daily"] = "Giornalmente";
+$a->strings["Weekly"] = "Settimanalmente";
+$a->strings["Monthly"] = "Mensilmente";
+$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["Friendica Notification"] = "Notifica Friendica";
+$a->strings["Thank You,"] = "Grazie,";
+$a->strings["%s Administrator"] = "Amministratore %s";
+$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s ti ha inviato un nuovo messaggio privato su %2\$s.";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s ti ha inviato %2\$s";
+$a->strings["a private message"] = "un messaggio privato";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per vedere e/o rispodere ai tuoi messaggi privati.";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "%1\$s ha commentato [url=%2\$s]%4\$s di %3\$s[/url]";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "%1\$s ha commentato un [url=%2\$s]tuo %3\$s[/url]";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Friendica:Notifica] Commento di %2\$s alla conversazione #%1\$d";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s ha commentato un elemento che stavi seguendo.";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per vedere e/o commentare la conversazione";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notifica] %s ha scritto sulla tua bacheca";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s ha scritto sulla tua bacheca su %2\$s";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s ha inviato un messaggio sulla [url=%2\$s]tua bacheca[/url]";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notifica] %s ti ha taggato";
+$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s ti ha taggato su %2\$s";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "%1\$s [url=%2\$s]ti ha taggato[/url].";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "[Friendica:Notifica] %1\$s ti ha stuzzicato";
+$a->strings["%1\$s poked you at %2\$s"] = "%1\$s ti ha stuzzicato su %2\$s";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]ti ha stuzzicato[/url].";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "[Friendica:Notifica] %s ha taggato un tuo messaggio";
+$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s ha taggato il tuo post su %2\$s";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s ha taggato [url=%2\$s]il tuo post[/url]";
+$a->strings["[Friendica:Notify] Introduction received"] = "[Friendica:Notifica] Hai ricevuto una presentazione";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Hai ricevuto un'introduzione da '%1\$s' su %2\$s";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Hai ricevuto [url=%1\$s]un'introduzione[/url] da %2\$s.";
+$a->strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo presso %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Visita %s per approvare o rifiutare la presentazione.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Hai ricevuto un suggerimento di amicizia da '%1\$s' su %2\$s";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Hai ricevuto [url=%1\$s]un suggerimento di amicizia[/url] per %2\$s su %3\$s";
+$a->strings["Name:"] = "Nome:";
+$a->strings["Photo:"] = "Foto:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento.";
+$a->strings["An invitation is required."] = "E' richiesto un invito.";
+$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
+$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
+$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
+$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
+$a->strings["Name too short."] = "Il nome è troppo corto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
+$a->strings["Not a valid email address."] = "L'indirizzo email non è valido.";
+$a->strings["Cannot use that email."] = "Non puoi usare quell'email.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo nome utente puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
+$a->strings["Nickname is already registered. Please choose another."] = "Nome utente già registrato. Scegline un altro.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Questo nome utente stato già registrato. Per favore, sceglierne uno nuovo.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita.";
+$a->strings["An error occurred during registration. Please try again."] = "C'è stato un errore durante la registrazione. Prova ancora.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "C'è stato un errore nella creazione del tuo profilo. Prova ancora.";
+$a->strings["Visible to everybody"] = "Visibile a tutti";
+$a->strings["Image/photo"] = "Immagine/foto";
+$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a> ha scritto il seguente <a href=\"%s\" target=\"external-link\">post</a>";
+$a->strings["$1 wrote:"] = "$1 ha scritto:";
+$a->strings["Encrypted content"] = "Contenuto criptato";
+$a->strings["Embedded content"] = "Contenuto incorporato";
+$a->strings["Embedding disabled"] = "Embed disabilitato";
+$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."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi  esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
+$a->strings["Default privacy group for new contacts"] = "Gruppo predefinito per i nuovi contatti";
+$a->strings["Everybody"] = "Tutti";
+$a->strings["edit"] = "modifica";
+$a->strings["Edit group"] = "Modifica gruppo";
+$a->strings["Create a new group"] = "Crea un nuovo gruppo";
+$a->strings["Contacts not in any group"] = "Contatti in nessun gruppo.";
+$a->strings["stopped following"] = "tolto dai seguiti";
+$a->strings["Miscellaneous"] = "Varie";
+$a->strings["year"] = "anno";
+$a->strings["month"] = "mese";
+$a->strings["day"] = "giorno";
+$a->strings["never"] = "mai";
+$a->strings["less than a second ago"] = "meno di un secondo fa";
+$a->strings["years"] = "anni";
+$a->strings["months"] = "mesi";
+$a->strings["week"] = "settimana";
+$a->strings["weeks"] = "settimane";
+$a->strings["days"] = "giorni";
+$a->strings["hour"] = "ora";
+$a->strings["hours"] = "ore";
+$a->strings["minute"] = "minuto";
+$a->strings["minutes"] = "minuti";
+$a->strings["second"] = "secondo";
+$a->strings["seconds"] = "secondi";
+$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s fa";
+$a->strings["view full size"] = "vedi a schermo intero";
index c2b32ec7c61ef44e48b11ef5dd4f55e38748e02c..8f10fcea14428295de3ec5463f2436753f27ec5f 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_nb_no")) {
 function string_plural_select_nb_no($n){
        return ($n != 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Innlegg vellykket.";
 $a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]";
index dd107db441efecb83c275c1ba764069f620938ea..4334a3c01e11ab409ab99dafe36cecc607fb65a7 100644 (file)
@@ -28,9 +28,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-02-07 10:00-0800\n"
-"PO-Revision-Date: 2013-02-17 11:50+0000\n"
-"Last-Translator: Piszu <mariusz.pisz@zhp.net.pl>\n"
+"POT-Creation-Date: 2013-02-26 00:00-0800\n"
+"PO-Revision-Date: 2013-02-26 10:30+0000\n"
+"Last-Translator: Cyryl Sochacki <cyrylsochacki@gmail.com>\n"
 "Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -38,204 +38,55 @@ msgstr ""
 "Language: pl\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "Post dodany pomyślnie"
-
-#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
-#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
+#: ../../addon.old/altpager/altpager.php:46
+#: ../../addon/altpager/altpager.php:46
+msgid "Altpager settings updated."
 msgstr ""
 
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "Ustawienia kontaktu zaktualizowane."
-
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "Nie udało się zaktualizować kontaktu."
-
-#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
-#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1041
-#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/manage.php:96 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
-#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/item.php:139
-#: ../../mod/item.php:155 ../../mod/mood.php:114
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
-#: ../../mod/display.php:180 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:567 ../../mod/delegate.php:6
-#: ../../mod/suggest.php:56 ../../mod/invite.php:15 ../../mod/invite.php:101
-#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:512
-#: ../../addon/facebook/facebook.php:518 ../../addon/fbpost/fbpost.php:170
-#: ../../addon/fbpost/fbpost.php:176
-#: ../../addon/dav/friendica/layout.fnk.php:354
-#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4015
-#: ../../index.php:341 ../../addon.old/facebook/facebook.php:510
-#: ../../addon.old/facebook/facebook.php:516
-#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
-#: ../../addon.old/dav/friendica/layout.fnk.php:354
-msgid "Permission denied."
-msgstr "Brak uprawnień."
-
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
-msgid "Contact not found."
-msgstr "Kontakt nie znaleziony"
-
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "Napraw ustawienia kontaktów"
-
-#: ../../mod/crepair.php:137
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact may stop working."
-msgstr "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."
-
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce."
-
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "Wróć do edytora kontaktów"
-
-#: ../../mod/crepair.php:148 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
-msgid "Name"
-msgstr "Imię"
-
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "Nazwa konta"
-
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
+#: ../../addon.old/altpager/altpager.php:79
+#: ../../addon/altpager/altpager.php:83
+msgid "Alternate Pagination Setting"
 msgstr ""
 
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "URL konta"
-
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "URL żądajacy znajomości"
-
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "URL potwierdzający znajomość"
-
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "Zgłoszenie Punktu Końcowego URL"
-
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "Adres Ankiety / RSS"
-
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "Nowe zdjęcie z tej ścieżki"
+#: ../../addon.old/altpager/altpager.php:81
+#: ../../addon/altpager/altpager.php:85
+msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
+msgstr ""
 
-#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:478 ../../mod/photos.php:1075
-#: ../../mod/photos.php:1196 ../../mod/photos.php:1498
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:710 ../../mod/contacts.php:386
-#: ../../mod/settings.php:560 ../../mod/settings.php:670
-#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/manage.php:110 ../../mod/group.php:87
-#: ../../mod/mood.php:137 ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/admin.php:461 ../../mod/admin.php:728 ../../mod/admin.php:865
-#: ../../mod/admin.php:1068 ../../mod/admin.php:1155
-#: ../../mod/profiles.php:626 ../../mod/invite.php:140
-#: ../../addon/fromgplus/fromgplus.php:44
-#: ../../addon/facebook/facebook.php:621
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/fbpost/fbpost.php:280 ../../addon/yourls/yourls.php:76
-#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
-#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/remote_permissions/remote_permissions.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:196
-#: ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187
-#: ../../addon/forumlist/forumlist.php:178
-#: ../../addon/impressum/impressum.php:83
-#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/openstreetmap/openstreetmap.php:94
-#: ../../addon/group_text/group_text.php:84
-#: ../../addon/libravatar/libravatar.php:99
-#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
-#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
-#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:99
-#: ../../addon/gravatar/gravatar.php:95
-#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/jappixmini/jappixmini.php:307
-#: ../../addon/statusnet/statusnet.php:290
-#: ../../addon/statusnet/statusnet.php:304
-#: ../../addon/statusnet/statusnet.php:330
-#: ../../addon/statusnet/statusnet.php:337
-#: ../../addon/statusnet/statusnet.php:374
-#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
-#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
-#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
-#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:191
-#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:556
-#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
-#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:642
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:604 ../../addon.old/fromgplus/fromgplus.php:40
-#: ../../addon.old/facebook/facebook.php:619
-#: ../../addon.old/snautofollow/snautofollow.php:64
-#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
-#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
-#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
-#: ../../addon.old/planets/planets.php:158
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
-#: ../../addon.old/randplace/randplace.php:177
-#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
-#: ../../addon.old/startpage/startpage.php:92
-#: ../../addon.old/geonames/geonames.php:187
-#: ../../addon.old/oembed.old/oembed.php:41
-#: ../../addon.old/forumlist/forumlist.php:175
-#: ../../addon.old/impressum/impressum.php:83
-#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/altpager/altpager.php:87 ../../addon.old/bg/bg.php:90
+#: ../../addon.old/blackout/blackout.php:98
 #: ../../addon.old/blockem/blockem.php:57
-#: ../../addon.old/qcomment/qcomment.php:61
-#: ../../addon.old/openstreetmap/openstreetmap.php:70
-#: ../../addon.old/group_text/group_text.php:84
-#: ../../addon.old/libravatar/libravatar.php:99
-#: ../../addon.old/libertree/libertree.php:90
-#: ../../addon.old/altpager/altpager.php:87
-#: ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/blogger/blogger.php:102
+#: ../../addon.old/drpost/drpost.php:110 ../../addon.old/dwpost/dwpost.php:93
 #: ../../addon.old/editplain/editplain.php:84
-#: ../../addon.old/blackout/blackout.php:98
+#: ../../addon.old/facebook/facebook.php:619
+#: ../../addon.old/fbpost/fbpost.php:226
+#: ../../addon.old/forumlist/forumlist.php:175
+#: ../../addon.old/fromapp/fromapp.php:77
+#: ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../addon.old/geonames/geonames.php:187 ../../addon.old/gnot/gnot.php:88
 #: ../../addon.old/gravatar/gravatar.php:95
-#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/group_text/group_text.php:84
 #: ../../addon.old/ijpost/ijpost.php:93
+#: ../../addon.old/impressum/impressum.php:83 ../../addon.old/irc/irc.php:55
 #: ../../addon.old/jappixmini/jappixmini.php:307
+#: ../../addon.old/libertree/libertree.php:90
+#: ../../addon.old/libravatar/libravatar.php:99
+#: ../../addon.old/ljpost/ljpost.php:93 ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/nsfw/nsfw.php:88
+#: ../../addon.old/numfriends/numfriends.php:85
+#: ../../addon.old/oembed.old/oembed.php:41
+#: ../../addon.old/openstreetmap/openstreetmap.php:70
+#: ../../addon.old/page/page.php:211
+#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/piwik/piwik.php:89 ../../addon.old/planets/planets.php:158
+#: ../../addon.old/posterous/posterous.php:103
+#: ../../addon.old/qcomment/qcomment.php:61
+#: ../../addon.old/randplace/randplace.php:177
+#: ../../addon.old/showmore/showmore.php:48
+#: ../../addon.old/snautofollow/snautofollow.php:64
+#: ../../addon.old/startpage/startpage.php:92
 #: ../../addon.old/statusnet/statusnet.php:278
 #: ../../addon.old/statusnet/statusnet.php:292
 #: ../../addon.old/statusnet/statusnet.php:318
@@ -243,9741 +94,9908 @@ msgstr "Nowe zdjęcie z tej ścieżki"
 #: ../../addon.old/statusnet/statusnet.php:353
 #: ../../addon.old/statusnet/statusnet.php:576
 #: ../../addon.old/tumblr/tumblr.php:90
-#: ../../addon.old/numfriends/numfriends.php:85
-#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
-#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
 #: ../../addon.old/twitter/twitter.php:180
 #: ../../addon.old/twitter/twitter.php:209
-#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
-#: ../../addon.old/fromapp/fromapp.php:77
-#: ../../addon.old/blogger/blogger.php:102
-#: ../../addon.old/posterous/posterous.php:103
+#: ../../addon.old/twitter/twitter.php:394
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
+#: ../../addon.old/wppost/wppost.php:110 ../../addon.old/yourls/yourls.php:76
+#: ../../addon/altpager/altpager.php:91 ../../addon/altpager/altpager.php:98
+#: ../../addon/blackout/blackout.php:99 ../../addon/blockem/blockem.php:57
+#: ../../addon/blogger/blogger.php:102 ../../addon/dwpost/dwpost.php:93
+#: ../../addon/editplain/editplain.php:84
+#: ../../addon/facebook/facebook.php:621 ../../addon/fbpost/fbpost.php:280
+#: ../../addon/forumlist/forumlist.php:178 ../../addon/fromapp/fromapp.php:77
+#: ../../addon/fromgplus/fromgplus.php:44
+#: ../../addon/geonames/geonames.php:187 ../../addon/gnot/gnot.php:88
+#: ../../addon/gravatar/gravatar.php:95
+#: ../../addon/group_text/group_text.php:84 ../../addon/ijpost/ijpost.php:93
+#: ../../addon/impressum/impressum.php:83 ../../addon/irc/irc.php:55
+#: ../../addon/jappixmini/jappixmini.php:307
+#: ../../addon/libertree/libertree.php:90
+#: ../../addon/libravatar/libravatar.php:99 ../../addon/ljpost/ljpost.php:93
+#: ../../addon/mathjax/mathjax.php:42 ../../addon/notimeline/notimeline.php:64
+#: ../../addon/nsfw/nsfw.php:88 ../../addon/numfriends/numfriends.php:85
+#: ../../addon/openstreetmap/openstreetmap.php:94
+#: ../../addon/page/page.php:211 ../../addon/pageheader/pageheader.php:55
+#: ../../addon/piwik/piwik.php:89 ../../addon/planets/planets.php:158
+#: ../../addon/posterous/posterous.php:103
+#: ../../addon/qcomment/qcomment.php:61
+#: ../../addon/randplace/randplace.php:177
+#: ../../addon/remote_permissions/remote_permissions.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:196
+#: ../../addon/showmore/showmore.php:48
+#: ../../addon/snautofollow/snautofollow.php:64
+#: ../../addon/startpage/startpage.php:92
+#: ../../addon/statusnet/statusnet.php:290
+#: ../../addon/statusnet/statusnet.php:304
+#: ../../addon/statusnet/statusnet.php:330
+#: ../../addon/statusnet/statusnet.php:337
+#: ../../addon/statusnet/statusnet.php:374
+#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
+#: ../../addon/twitter/twitter.php:191 ../../addon/twitter/twitter.php:229
+#: ../../addon/twitter/twitter.php:556
+#: ../../addon/uhremotestorage/uhremotestorage.php:89
+#: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
+#: ../../mod/profiles.php:626 ../../mod/admin.php:475 ../../mod/admin.php:744
+#: ../../mod/admin.php:882 ../../mod/admin.php:1082 ../../mod/admin.php:1169
+#: ../../mod/contacts.php:386 ../../mod/settings.php:560
+#: ../../mod/settings.php:670 ../../mod/settings.php:739
+#: ../../mod/settings.php:811 ../../mod/settings.php:1037
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/install.php:248
+#: ../../mod/install.php:286 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/content.php:733 ../../object/Item.php:643
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
+#: ../../view/theme/quattro/config.php:64
 msgid "Submit"
 msgstr "Potwierdź"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "Pomoc:"
-
-#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:113 ../../addon.old/dav/friendica/layout.fnk.php:225
-msgid "Help"
-msgstr "Pomoc"
-
-#: ../../mod/help.php:90 ../../index.php:226
-msgid "Not Found"
-msgstr "Nie znaleziono"
+#: ../../addon.old/bg/bg.php:51
+msgid "Bg settings updated."
+msgstr ""
 
-#: ../../mod/help.php:93 ../../index.php:229
-msgid "Page not found."
-msgstr "Strona nie znaleziona."
+#: ../../addon.old/bg/bg.php:82
+msgid "Bg Settings"
+msgstr ""
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "Plik przekracza dozwolony rozmiar %d"
+#: ../../addon.old/bg/bg.php:84 ../../addon.old/numfriends/numfriends.php:79
+#: ../../addon/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
+msgstr ""
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "Przesyłanie pliku nie powiodło się."
+#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
+msgid "\"Blockem\" Settings"
+msgstr ""
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Propozycja znajomych wysłana."
+#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
+msgid "Comma separated profile URLS to block"
+msgstr ""
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Zaproponuj znajomych"
+#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
+msgid "BLOCKEM Settings saved."
+msgstr ""
 
-#: ../../mod/fsuggest.php:99
+#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "Zaproponuj znajomych dla %s"
-
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
+msgid "Blocked %s - Click to open/close"
 msgstr ""
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "d, M d "
+#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
+msgid "Unblock Author"
+msgstr "Odblokuj autora"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "Edytuj wydarzenie"
+#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
+msgid "Block Author"
+msgstr "Zablokuj autora"
 
-#: ../../mod/events.php:335 ../../include/text.php:1258
-msgid "link to source"
-msgstr "link do źródła"
+#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
+msgid "blockem settings updated"
+msgstr ""
 
-#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
-#: ../../include/nav.php:79 ../../boot.php:1857
-msgid "Events"
-msgstr "Wydarzenia"
+#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
+msgid "Post to blogger"
+msgstr "Post na blogger"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "Stwórz nowe wydarzenie"
+#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
+msgid "Blogger Post Settings"
+msgstr "Ustawienia postów na Blogger"
 
-#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
-#: ../../addon.old/dav/friendica/layout.fnk.php:263
-msgid "Previous"
-msgstr "Poprzedni"
+#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
+msgid "Enable Blogger Post Plugin"
+msgstr ""
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-#: ../../addon/dav/friendica/layout.fnk.php:266
-#: ../../addon.old/dav/friendica/layout.fnk.php:266
-msgid "Next"
-msgstr "Następny"
+#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
+msgid "Blogger username"
+msgstr "Nazwa użytkownika na Blogger"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "godzina:minuta"
+#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
+msgid "Blogger password"
+msgstr "Hasło do Blogger"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "Szczegóły wydarzenia"
+#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
+msgid "Blogger API URL"
+msgstr "Blogger API URL"
 
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
+#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
+msgid "Post to Blogger by default"
 msgstr ""
 
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "Rozpoczęcie wydarzenia:"
-
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "Wymagany"
-
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
+#: ../../addon.old/blogger/blogger.php:172
+#: ../../addon.old/drpost/drpost.php:184
+#: ../../addon.old/posterous/posterous.php:189
+#: ../../addon.old/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
+#: ../../addon/posterous/posterous.php:189 ../../addon/wppost/wppost.php:201
+msgid "Post from Friendica"
+msgstr "Post z Friendica"
 
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "Zakończenie wydarzenia:"
+#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
+msgid "Report Bug"
+msgstr "Zgłoś problem"
 
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "Dopasuj dla strefy czasowej widza"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:28
+#: ../../addon.old/communityhome/twillingham/communityhome.php:34
+#: ../../addon.old/communityhome/communityhome.php:28
+#: ../../addon.old/communityhome/communityhome.php:34
+#: ../../addon/communityhome/communityhome.php:28
+#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
+#: ../../boot.php:1058
+msgid "Login"
+msgstr "Login"
 
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "Opis:"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:29
+#: ../../addon.old/communityhome/communityhome.php:29
+#: ../../addon/communityhome/communityhome.php:29
+msgid "OpenID"
+msgstr "OpenID"
 
-#: ../../mod/events.php:471 ../../mod/directory.php:134
-#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-#: ../../boot.php:1379
-msgid "Location:"
-msgstr "Lokalizacja"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:38
+#: ../../addon.old/communityhome/communityhome.php:38
+#: ../../addon/communityhome/communityhome.php:39
+msgid "Latest users"
+msgstr "Ostatni użytkownicy"
 
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "Tytuł:"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:81
+#: ../../addon.old/communityhome/communityhome.php:81
+#: ../../addon/communityhome/communityhome.php:84
+msgid "Most active users"
+msgstr "najaktywniejsi użytkownicy"
 
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "Udostępnij te wydarzenie"
+#: ../../addon.old/communityhome/communityhome.php:98
+#: ../../addon/communityhome/communityhome.php:102
+msgid "Latest photos"
+msgstr "Ostatnie zdjęcia"
 
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr ""
+#: ../../addon.old/communityhome/communityhome.php:110
+#: ../../addon/communityhome/communityhome.php:115 ../../mod/photos.php:59
+#: ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
+msgid "Contact Photos"
+msgstr "Zdjęcia kontaktu"
 
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/photos.php:202
-#: ../../mod/photos.php:289 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249
-#: ../../mod/settings.php:561 ../../mod/settings.php:587
-#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
-#: ../../mod/message.php:212 ../../mod/suggest.php:32
-#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3897
-#: ../../include/conversation.php:1062
-#: ../../addon.old/js_upload/js_upload.php:45
-msgid "Cancel"
-msgstr "Anuluj"
+#: ../../addon.old/communityhome/communityhome.php:111
+#: ../../addon/communityhome/communityhome.php:116 ../../include/user.php:325
+#: ../../include/user.php:332 ../../include/user.php:339
+#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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 ../../view/theme/diabook/theme.php:493
+msgid "Profile Photos"
+msgstr "Zdjęcia profilowe"
 
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "Tag usunięty"
+#: ../../addon.old/communityhome/communityhome.php:133
+#: ../../addon/communityhome/communityhome.php:141
+msgid "Latest likes"
+msgstr "Ostatnie polubienia"
 
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Usuń pozycję Tag"
+#: ../../addon.old/communityhome/communityhome.php:155
+#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1554
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+#: ../../view/theme/diabook/theme.php:456
+msgid "event"
+msgstr "wydarzenie"
 
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Wybierz tag do usunięcia"
+#: ../../addon.old/communityhome/communityhome.php:158
+#: ../../addon.old/communityhome/communityhome.php:167
+#: ../../addon.old/facebook/facebook.php:1598
+#: ../../addon/communityhome/communityhome.php:166
+#: ../../addon/communityhome/communityhome.php:175
+#: ../../addon/facebook/facebook.php:1600 ../../include/diaspora.php:1874
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../mod/like.php:322 ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468
+msgid "status"
+msgstr "status"
 
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-#: ../../addon/dav/common/wdcal_edit.inc.php:468
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
-msgid "Remove"
-msgstr "Usuń"
+#: ../../addon.old/communityhome/communityhome.php:163
+#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1556
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
+#: ../../include/conversation.php:254 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../view/theme/diabook/theme.php:464
+msgid "photo"
+msgstr "zdjęcie"
 
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#: ../../addon.old/communityhome/communityhome.php:172
+#: ../../addon.old/facebook/facebook.php:1602
+#: ../../addon/communityhome/communityhome.php:180
+#: ../../addon/facebook/facebook.php:1604 ../../include/diaspora.php:1890
+#: ../../include/conversation.php:137 ../../mod/like.php:168
+#: ../../view/theme/diabook/theme.php:473
 #, php-format
-msgid "%1$s welcomes %2$s"
-msgstr ""
-
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "Autoryzacja połączenia aplikacji"
-
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"
-
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "Zaloguj się aby kontynuować."
-
-#: ../../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 "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"
-
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
-#: ../../mod/contacts.php:246 ../../mod/settings.php:934
-#: ../../mod/settings.php:940 ../../mod/settings.php:948
-#: ../../mod/settings.php:952 ../../mod/settings.php:957
-#: ../../mod/settings.php:963 ../../mod/settings.php:969
-#: ../../mod/settings.php:975 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
-#: ../../mod/register.php:239 ../../mod/message.php:209
-#: ../../mod/profiles.php:606 ../../mod/suggest.php:29
-#: ../../include/items.php:3894
-msgid "Yes"
-msgstr "Tak"
-
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:837
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/register.php:240
-#: ../../mod/profiles.php:607
-msgid "No"
-msgstr "Nie"
-
-#: ../../mod/photos.php:51 ../../boot.php:1850
-msgid "Photo Albums"
-msgstr "Albumy zdjęć"
-
-#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1055
-#: ../../mod/photos.php:1180 ../../mod/photos.php:1203
-#: ../../mod/photos.php:1733 ../../mod/photos.php:1745
-#: ../../addon/communityhome/communityhome.php:115
-#: ../../view/theme/diabook/theme.php:492
-#: ../../addon.old/communityhome/communityhome.php:110
-msgid "Contact Photos"
-msgstr "Zdjęcia kontaktu"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s lubi %2$s's %3$s"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
-msgid "Upload New Photos"
-msgstr "Wyślij nowe zdjęcie"
+#: ../../addon.old/communityhome/communityhome.php:179
+#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "Witamy w %s"
 
-#: ../../mod/photos.php:79 ../../mod/settings.php:23
-msgid "everybody"
-msgstr "wszyscy"
+#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
+#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
+msgid "Private Events"
+msgstr "Prywatne wydarzenia"
 
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "Informacje o kontakcie nie dostępne."
+#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
+#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
+msgid "Private Addressbooks"
+msgstr ""
 
-#: ../../mod/photos.php:154 ../../mod/photos.php:722 ../../mod/photos.php:1180
-#: ../../mod/photos.php:1203 ../../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
-#: ../../addon/communityhome/communityhome.php:116
-#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:325
-#: ../../include/user.php:332 ../../include/user.php:339
-#: ../../addon.old/communityhome/communityhome.php:111
-msgid "Profile Photos"
-msgstr "Zdjęcia profilowe"
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
+#: ../../addon/dav/common/wdcal_backend.inc.php:92
+#: ../../addon/dav/common/wdcal_backend.inc.php:166
+#: ../../addon/dav/common/wdcal_backend.inc.php:178
+#: ../../addon/dav/common/wdcal_backend.inc.php:206
+#: ../../addon/dav/common/wdcal_backend.inc.php:214
+#: ../../addon/dav/common/wdcal_backend.inc.php:229
+msgid "No access"
+msgstr "Brak dostępu"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "Album nie znaleziony"
+#: ../../addon.old/dav/common/wdcal_configuration.php:148
+#: ../../addon/dav/common/wdcal_configuration.php:148
+msgid "U.S. Time Format (mm/dd/YYYY)"
+msgstr "Amerykański format daty (mm/dd/YYYY)"
 
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
-msgid "Delete Album"
-msgstr "Usuń album"
+#: ../../addon.old/dav/common/wdcal_configuration.php:243
+#: ../../addon/dav/common/wdcal_configuration.php:243
+msgid "German Time Format (dd.mm.YYYY)"
+msgstr "Niemiecki format daty (dd.mm.YYYY)"
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
+#: ../../addon/dav/common/wdcal_edit.inc.php:30
+#: ../../addon/dav/common/wdcal_edit.inc.php:738
+msgid "Could not open component for editing"
 msgstr ""
 
-#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
-msgid "Delete Photo"
-msgstr "Usuń zdjęcie"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
+#: ../../addon.old/dav/friendica/layout.fnk.php:143
+#: ../../addon.old/dav/friendica/layout.fnk.php:422
+#: ../../addon/dav/common/wdcal_edit.inc.php:140
+#: ../../addon/dav/friendica/layout.fnk.php:143
+#: ../../addon/dav/friendica/layout.fnk.php:422
+msgid "Go back to the calendar"
+msgstr "Wróć do kalendarza"
 
-#: ../../mod/photos.php:284
-msgid "Do you really want to delete this photo?"
-msgstr ""
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
+#: ../../addon/dav/common/wdcal_edit.inc.php:144
+msgid "Event data"
+msgstr "Data wydarzenia"
 
-#: ../../mod/photos.php:653
-#, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
+#: ../../addon.old/dav/friendica/main.php:239
+#: ../../addon/dav/common/wdcal_edit.inc.php:146
+#: ../../addon/dav/friendica/main.php:239
+msgid "Calendar"
+msgstr "Kalendarz"
+
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
+#: ../../addon/dav/common/wdcal_edit.inc.php:163
+msgid "Special color"
 msgstr ""
 
-#: ../../mod/photos.php:653
-msgid "a photo"
-msgstr "zdjęcie"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
+#: ../../addon/dav/common/wdcal_edit.inc.php:169
+msgid "Subject"
+msgstr "Temat"
 
-#: ../../mod/photos.php:758 ../../addon/js_upload/js_upload.php:321
-#: ../../addon.old/js_upload/js_upload.php:315
-msgid "Image exceeds size limit of "
-msgstr "obrazek przekracza limit rozmiaru"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
+#: ../../addon/dav/common/wdcal_edit.inc.php:173
+msgid "Starts"
+msgstr "Zaczyna się"
 
-#: ../../mod/photos.php:766
-msgid "Image file is empty."
-msgstr "Plik obrazka jest pusty."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
+#: ../../addon/dav/common/wdcal_edit.inc.php:178
+msgid "Ends"
+msgstr "Kończy się"
 
-#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:112
-msgid "Unable to process image."
-msgstr "Przetwarzanie obrazu nie powiodło się."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
+#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
+msgid "Location"
+msgstr "Położenie"
 
-#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:138
-msgid "Image upload failed."
-msgstr "Przesyłanie obrazu nie powiodło się"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
+#: ../../addon/dav/common/wdcal_edit.inc.php:185
+msgid "Description"
+msgstr "Opis"
 
-#: ../../mod/photos.php:911 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:19 ../../mod/search.php:89 ../../mod/directory.php:31
-#: ../../addon/forumdirectory/forumdirectory.php:53
-msgid "Public access denied."
-msgstr "Publiczny dostęp zabroniony"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
+#: ../../addon/dav/common/wdcal_edit.inc.php:188
+msgid "Recurrence"
+msgstr ""
 
-#: ../../mod/photos.php:921
-msgid "No photos selected"
-msgstr "Nie zaznaczono zdjęć"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
+#: ../../addon/dav/common/wdcal_edit.inc.php:190
+msgid "Frequency"
+msgstr "często"
 
-#: ../../mod/photos.php:1022
-msgid "Access to this item is restricted."
-msgstr "Dostęp do tego obiektu jest ograniczony."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
+#: ../../addon/dav/common/wdcal_edit.inc.php:191
+#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
+#: ../../mod/settings.php:732 ../../mod/settings.php:737
+msgid "None"
+msgstr "Brak"
 
-#: ../../mod/photos.php:1085
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr ""
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
+#: ../../addon/dav/common/wdcal_edit.inc.php:194
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "Dziennie"
 
-#: ../../mod/photos.php:1120
-msgid "Upload Photos"
-msgstr "Prześlij zdjęcia"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
+#: ../../addon/dav/common/wdcal_edit.inc.php:197
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "Tygodniowo"
 
-#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
-msgid "New album name: "
-msgstr "Nazwa nowego albumu:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
+#: ../../addon/dav/common/wdcal_edit.inc.php:200
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "Miesięcznie"
 
-#: ../../mod/photos.php:1125
-msgid "or existing album name: "
-msgstr "lub istniejąca nazwa albumu:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
+#: ../../addon/dav/common/wdcal_edit.inc.php:203
+msgid "Yearly"
+msgstr "raz na rok"
 
-#: ../../mod/photos.php:1126
-msgid "Do not show a status post for this upload"
-msgstr "Nie pokazuj postów statusu dla tego wysłania"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
+#: ../../addon/dav/common/wdcal_edit.inc.php:214
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "dni"
 
-#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
-msgid "Permissions"
-msgstr "Uprawnienia"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
+#: ../../addon/dav/common/wdcal_edit.inc.php:215
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "tygodnie"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
-#: ../../mod/settings.php:1070
-msgid "Show to Groups"
-msgstr ""
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
+#: ../../addon/dav/common/wdcal_edit.inc.php:216
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "miesiące"
 
-#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
-#: ../../mod/settings.php:1071
-msgid "Show to Contacts"
-msgstr ""
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
+#: ../../addon/dav/common/wdcal_edit.inc.php:217
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "lata"
 
-#: ../../mod/photos.php:1139
-msgid "Private Photo"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
+#: ../../addon/dav/common/wdcal_edit.inc.php:218
+msgid "Interval"
 msgstr ""
 
-#: ../../mod/photos.php:1140
-msgid "Public Photo"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
+#: ../../addon/dav/common/wdcal_edit.inc.php:218
+msgid "All %select% %time%"
 msgstr ""
 
-#: ../../mod/photos.php:1207
-msgid "Edit Album"
-msgstr "Edytuj album"
-
-#: ../../mod/photos.php:1213
-msgid "Show Newest First"
-msgstr "Najpierw pokaż najnowsze"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
+#: ../../addon/dav/common/wdcal_edit.inc.php:222
+#: ../../addon/dav/common/wdcal_edit.inc.php:260
+#: ../../addon/dav/common/wdcal_edit.inc.php:481
+msgid "Days"
+msgstr "Dni"
 
-#: ../../mod/photos.php:1215
-msgid "Show Oldest First"
-msgstr "Najpierw pokaż najstarsze"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
+#: ../../addon/dav/common/wdcal_edit.inc.php:231
+#: ../../addon/dav/common/wdcal_edit.inc.php:254
+#: ../../addon/dav/common/wdcal_edit.inc.php:270
+#: ../../addon/dav/common/wdcal_edit.inc.php:293
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:1015
+msgid "Sunday"
+msgstr "Niedziela"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
-msgid "View Photo"
-msgstr "Zobacz zdjęcie"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
+#: ../../addon/dav/common/wdcal_edit.inc.php:235
+#: ../../addon/dav/common/wdcal_edit.inc.php:274
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:1015
+msgid "Monday"
+msgstr "Poniedziałek"
 
-#: ../../mod/photos.php:1283
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
+#: ../../addon/dav/common/wdcal_edit.inc.php:238
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:1015
+msgid "Tuesday"
+msgstr "Wtorek"
 
-#: ../../mod/photos.php:1285
-msgid "Photo not available"
-msgstr "Zdjęcie niedostępne"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
+#: ../../addon/dav/common/wdcal_edit.inc.php:241
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:1015
+msgid "Wednesday"
+msgstr "Środa"
 
-#: ../../mod/photos.php:1341
-msgid "View photo"
-msgstr "Zobacz zdjęcie"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
+#: ../../addon/dav/common/wdcal_edit.inc.php:244
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:1015
+msgid "Thursday"
+msgstr "Czwartek"
 
-#: ../../mod/photos.php:1341
-msgid "Edit photo"
-msgstr "Edytuj zdjęcie"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
+#: ../../addon/dav/common/wdcal_edit.inc.php:247
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:1015
+msgid "Friday"
+msgstr "Piątek"
 
-#: ../../mod/photos.php:1342
-msgid "Use as profile photo"
-msgstr "Ustaw jako zdjęcie profilowe"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
+#: ../../addon/dav/common/wdcal_edit.inc.php:250
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:1015
+msgid "Saturday"
+msgstr "Sobota"
 
-#: ../../mod/photos.php:1348 ../../mod/content.php:620
-#: ../../object/Item.php:106
-msgid "Private Message"
-msgstr "Wiadomość prywatna"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
+#: ../../addon/dav/common/wdcal_edit.inc.php:297
+msgid "First day of week:"
+msgstr "Pierwszy dzień tygodnia:"
 
-#: ../../mod/photos.php:1367
-msgid "View Full Size"
-msgstr "Zobacz w pełnym rozmiarze"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
+#: ../../addon/dav/common/wdcal_edit.inc.php:350
+#: ../../addon/dav/common/wdcal_edit.inc.php:373
+msgid "Day of month"
+msgstr "Dzień miesiąca"
 
-#: ../../mod/photos.php:1441
-msgid "Tags: "
-msgstr "Tagi:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
+#: ../../addon/dav/common/wdcal_edit.inc.php:354
+msgid "#num#th of each month"
+msgstr ""
 
-#: ../../mod/photos.php:1444
-msgid "[Remove any tag]"
-msgstr "[Usunąć znacznik]"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
+#: ../../addon/dav/common/wdcal_edit.inc.php:357
+msgid "#num#th-last of each month"
+msgstr ""
 
-#: ../../mod/photos.php:1484
-msgid "Rotate CW (right)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
+#: ../../addon/dav/common/wdcal_edit.inc.php:360
+msgid "#num#th #wkday# of each month"
 msgstr ""
 
-#: ../../mod/photos.php:1485
-msgid "Rotate CCW (left)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
+#: ../../addon/dav/common/wdcal_edit.inc.php:363
+msgid "#num#th-last #wkday# of each month"
 msgstr ""
 
-#: ../../mod/photos.php:1487
-msgid "New album name"
-msgstr "Nazwa nowego albumu"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
+#: ../../addon.old/dav/friendica/layout.fnk.php:255
+#: ../../addon/dav/common/wdcal_edit.inc.php:372
+#: ../../addon/dav/friendica/layout.fnk.php:255
+msgid "Month"
+msgstr "Miesiąc"
 
-#: ../../mod/photos.php:1490
-msgid "Caption"
-msgstr "Zawartość"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
+#: ../../addon/dav/common/wdcal_edit.inc.php:377
+msgid "#num#th of the given month"
+msgstr ""
 
-#: ../../mod/photos.php:1492
-msgid "Add a Tag"
-msgstr "Dodaj tag"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
+#: ../../addon/dav/common/wdcal_edit.inc.php:380
+msgid "#num#th-last of the given month"
+msgstr ""
 
-#: ../../mod/photos.php:1496
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
+#: ../../addon/dav/common/wdcal_edit.inc.php:383
+msgid "#num#th #wkday# of the given month"
+msgstr ""
 
-#: ../../mod/photos.php:1505
-msgid "Private photo"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
+#: ../../addon/dav/common/wdcal_edit.inc.php:386
+msgid "#num#th-last #wkday# of the given month"
 msgstr ""
 
-#: ../../mod/photos.php:1506
-msgid "Public photo"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
+#: ../../addon/dav/common/wdcal_edit.inc.php:413
+msgid "Repeat until"
+msgstr "Powtarzaj do"
+
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
+#: ../../addon/dav/common/wdcal_edit.inc.php:417
+msgid "Infinite"
 msgstr ""
 
-#: ../../mod/photos.php:1526 ../../mod/content.php:684
-#: ../../object/Item.php:204
-msgid "I like this (toggle)"
-msgstr "Lubię to (zmień)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
+#: ../../addon/dav/common/wdcal_edit.inc.php:420
+msgid "Until the following date"
+msgstr "Do tej daty"
 
-#: ../../mod/photos.php:1527 ../../mod/content.php:685
-#: ../../object/Item.php:205
-msgid "I don't like this (toggle)"
-msgstr "Nie lubię (zmień)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
+#: ../../addon/dav/common/wdcal_edit.inc.php:423
+msgid "Number of times"
+msgstr ""
 
-#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
-msgid "Share"
-msgstr "Podziel się"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
+#: ../../addon/dav/common/wdcal_edit.inc.php:429
+msgid "Exceptions"
+msgstr "Wyjątki"
+
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
+#: ../../addon/dav/common/wdcal_edit.inc.php:432
+msgid "none"
+msgstr ""
 
-#: ../../mod/photos.php:1529 ../../mod/editpost.php:124
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../include/conversation.php:646
-#: ../../include/conversation.php:1042 ../../object/Item.php:293
-msgid "Please wait"
-msgstr "Proszę czekać"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
+#: ../../addon/dav/common/wdcal_edit.inc.php:449
+msgid "Notification"
+msgstr "Powiadomienie"
 
-#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
-#: ../../mod/photos.php:1673 ../../mod/content.php:707
-#: ../../object/Item.php:601
-msgid "This is you"
-msgstr "To jesteś ty"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
+#: ../../addon/dav/common/wdcal_edit.inc.php:466
+msgid "Notify by"
+msgstr ""
 
-#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
-#: ../../mod/photos.php:1675 ../../mod/content.php:709 ../../boot.php:641
-#: ../../object/Item.php:290 ../../object/Item.php:603
-msgid "Comment"
-msgstr "Komentarz"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
+#: ../../addon/dav/common/wdcal_edit.inc.php:468 ../../mod/delegate.php:130
+#: ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Usuń"
 
-#: ../../mod/photos.php:1550 ../../mod/photos.php:1594
-#: ../../mod/photos.php:1677 ../../mod/editpost.php:145
-#: ../../mod/content.php:719 ../../include/conversation.php:1059
-#: ../../object/Item.php:613
-msgid "Preview"
-msgstr "Podgląd"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
+#: ../../addon/dav/common/wdcal_edit.inc.php:469
+msgid "E-Mail"
+msgstr "E-Mail"
 
-#: ../../mod/photos.php:1634 ../../mod/content.php:439
-#: ../../mod/content.php:741 ../../mod/settings.php:623
-#: ../../mod/group.php:171 ../../mod/admin.php:735
-#: ../../include/conversation.php:570 ../../object/Item.php:120
-msgid "Delete"
-msgstr "Usuń"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
+#: ../../addon/dav/common/wdcal_edit.inc.php:470
+msgid "On Friendica / Display"
+msgstr ""
 
-#: ../../mod/photos.php:1781
-msgid "View Album"
-msgstr "Zobacz album"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
+#: ../../addon/dav/common/wdcal_edit.inc.php:474
+msgid "Time"
+msgstr ""
 
-#: ../../mod/photos.php:1790
-msgid "Recent Photos"
-msgstr "Ostatnio dodane zdjęcia"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
+#: ../../addon/dav/common/wdcal_edit.inc.php:478
+msgid "Hours"
+msgstr "Godzin"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "Niedostępne."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
+#: ../../addon/dav/common/wdcal_edit.inc.php:479
+msgid "Minutes"
+msgstr "Minut"
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "Społeczność"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
+#: ../../addon/dav/common/wdcal_edit.inc.php:480
+msgid "Seconds"
+msgstr ""
 
-#: ../../mod/community.php:61 ../../mod/community.php:86
-#: ../../mod/search.php:162 ../../mod/search.php:188
-msgid "No results."
-msgstr "Brak wyników."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
+#: ../../addon/dav/common/wdcal_edit.inc.php:482
+msgid "Weeks"
+msgstr ""
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "To jest Friendica, wersja"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
+#: ../../addon/dav/common/wdcal_edit.inc.php:485
+msgid "before the"
+msgstr ""
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "otwierane na serwerze"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
+#: ../../addon/dav/common/wdcal_edit.inc.php:486
+msgid "start of the event"
+msgstr "rozpoczęcie wydarzenia"
 
-#: ../../mod/friendica.php:58
-msgid ""
-"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
-"more about the Friendica project."
-msgstr "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica."
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
+#: ../../addon/dav/common/wdcal_edit.inc.php:487
+msgid "end of the event"
+msgstr "zakończenie wydarzenia"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "Reportowanie błędów i problemów: proszę odwiedź"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
+#: ../../addon/dav/common/wdcal_edit.inc.php:492
+msgid "Add a notification"
+msgstr "Dodaj powiadomienie"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
+#: ../../addon/dav/common/wdcal_edit.inc.php:687
+msgid "The event #name# will start at #date"
 msgstr ""
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
+#: ../../addon/dav/common/wdcal_edit.inc.php:696
+msgid "#name# is about to begin."
 msgstr ""
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji"
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Artykuł nie znaleziony"
-
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "Edytuj post"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
+#: ../../addon/dav/common/wdcal_edit.inc.php:769
+msgid "Saved"
+msgstr "Zapisano"
 
-#: ../../mod/editpost.php:109 ../../mod/content.php:728
-#: ../../mod/settings.php:622 ../../object/Item.php:110
-msgid "Edit"
-msgstr "Edytuj"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
+msgid "Private Calendar"
+msgstr "Kalendarz prywatny"
 
-#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1024
-msgid "Upload photo"
-msgstr "Wyślij zdjęcie"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
+msgid "Friendica Events: Mine"
+msgstr "Wydarzenia Friendici: Moje"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
-msgid "upload photo"
-msgstr "dodaj zdjęcie"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
+msgid "Friendica Events: Contacts"
+msgstr "Wydarzenia Friendici: Kontakty"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
-msgid "Attach file"
-msgstr "Przyłącz plik"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
+msgid "Private Addresses"
+msgstr ""
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
-msgid "attach file"
-msgstr "załącz plik"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
+msgid "Friendica Contacts"
+msgstr "Kontakty Friendica"
 
-#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1028
-msgid "Insert web link"
-msgstr "Wstaw link"
+#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+msgid "Friendica-Native events"
+msgstr ""
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
-msgid "web link"
-msgstr "Adres www"
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+msgid "Friendica-Contacts"
+msgstr "Kontakty friendica"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
-msgid "Insert video link"
-msgstr "Wstaw link wideo"
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+msgid "Your Friendica-Contacts"
+msgstr "Twoje kontakty friendica"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
-msgid "video link"
-msgstr "link do filmu"
+#: ../../addon.old/dav/friendica/layout.fnk.php:99
+#: ../../addon.old/dav/friendica/layout.fnk.php:136
+#: ../../addon/dav/friendica/layout.fnk.php:99
+#: ../../addon/dav/friendica/layout.fnk.php:136
+msgid ""
+"Something went wrong when trying to import the file. Sorry. Maybe some "
+"events were imported anyway."
+msgstr ""
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
-msgid "Insert audio link"
-msgstr "Wstaw link audio"
+#: ../../addon.old/dav/friendica/layout.fnk.php:131
+#: ../../addon/dav/friendica/layout.fnk.php:131
+msgid "Something went wrong when trying to import the file. Sorry."
+msgstr ""
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
-msgid "audio link"
-msgstr "Link audio"
+#: ../../addon.old/dav/friendica/layout.fnk.php:134
+#: ../../addon/dav/friendica/layout.fnk.php:134
+msgid "The ICS-File has been imported."
+msgstr ""
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
-msgid "Set your location"
-msgstr "Ustaw swoje położenie"
+#: ../../addon.old/dav/friendica/layout.fnk.php:138
+#: ../../addon/dav/friendica/layout.fnk.php:138
+msgid "No file was uploaded."
+msgstr "Nie wgrano pliku."
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
-msgid "set location"
-msgstr "wybierz lokalizację"
+#: ../../addon.old/dav/friendica/layout.fnk.php:147
+#: ../../addon/dav/friendica/layout.fnk.php:147
+msgid "Import a ICS-file"
+msgstr ""
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
-msgid "Clear browser location"
-msgstr "Wyczyść położenie przeglądarki"
+#: ../../addon.old/dav/friendica/layout.fnk.php:150
+#: ../../addon/dav/friendica/layout.fnk.php:150
+msgid "ICS-File"
+msgstr ""
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
-msgid "clear location"
-msgstr "wyczyść lokalizację"
+#: ../../addon.old/dav/friendica/layout.fnk.php:151
+#: ../../addon/dav/friendica/layout.fnk.php:151
+msgid "Overwrite all #num# existing events"
+msgstr ""
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
-msgid "Permission settings"
-msgstr "Ustawienia uprawnień"
+#: ../../addon.old/dav/friendica/layout.fnk.php:152
+#: ../../addon/dav/friendica/layout.fnk.php:152
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "Załaduj"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
-msgid "CC: email addresses"
-msgstr "CC: adresy e-mail"
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon.old/mathjax/mathjax.php:36
+#: ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
+#: ../../mod/admin.php:841 ../../mod/admin.php:1049 ../../mod/settings.php:74
+#: ../../mod/uexport.php:48 ../../mod/newmember.php:22
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658
+msgid "Settings"
+msgstr "Ustawienia"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
-msgid "Public post"
-msgstr "Publiczny post"
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon/dav/friendica/layout.fnk.php:225 ../../include/nav.php:113
+#: ../../mod/help.php:84
+msgid "Help"
+msgstr "Pomoc"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
-msgid "Set title"
-msgstr "Ustaw tytuł"
+#: ../../addon.old/dav/friendica/layout.fnk.php:228
+#: ../../addon/dav/friendica/layout.fnk.php:228
+msgid "New event"
+msgstr "Nowe wydarzenie"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
-msgid "Categories (comma-separated list)"
-msgstr ""
+#: ../../addon.old/dav/friendica/layout.fnk.php:232
+#: ../../addon/dav/friendica/layout.fnk.php:232
+msgid "Today"
+msgstr "Dzisiaj"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "Przykład: bob@example.com, mary@example.com"
+#: ../../addon.old/dav/friendica/layout.fnk.php:241
+#: ../../addon/dav/friendica/layout.fnk.php:241
+msgid "Day"
+msgstr "Dzień"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "To wprowadzenie zostało już zaakceptowane."
+#: ../../addon.old/dav/friendica/layout.fnk.php:248
+#: ../../addon/dav/friendica/layout.fnk.php:248
+msgid "Week"
+msgstr "Tydzień"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."
+#: ../../addon.old/dav/friendica/layout.fnk.php:260
+#: ../../addon/dav/friendica/layout.fnk.php:260
+msgid "Reload"
+msgstr "Załaduj ponownie"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."
+#: ../../addon.old/dav/friendica/layout.fnk.php:263
+#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
+msgid "Previous"
+msgstr "Poprzedni"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."
+#: ../../addon.old/dav/friendica/layout.fnk.php:266
+#: ../../addon/dav/friendica/layout.fnk.php:266 ../../mod/events.php:373
+#: ../../mod/install.php:207
+msgid "Next"
+msgstr "Następny"
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, 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 wymagany parametr nie został znaleziony w podanej lokacji"
-msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji"
-msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji"
+#: ../../addon.old/dav/friendica/layout.fnk.php:271
+#: ../../addon/dav/friendica/layout.fnk.php:271
+msgid "Date"
+msgstr "Data"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "wprowadzanie zakończone."
+#: ../../addon.old/dav/friendica/layout.fnk.php:313
+#: ../../addon/dav/friendica/layout.fnk.php:313
+msgid "Error"
+msgstr "Błąd"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "Nieodwracalny błąd protokołu."
+#: ../../addon.old/dav/friendica/layout.fnk.php:354
+#: ../../addon.old/facebook/facebook.php:510
+#: ../../addon.old/facebook/facebook.php:516
+#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
+#: ../../addon/dav/friendica/layout.fnk.php:354
+#: ../../addon/facebook/facebook.php:512 ../../addon/facebook/facebook.php:518
+#: ../../addon/fbpost/fbpost.php:170 ../../addon/fbpost/fbpost.php:176
+#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4090
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
+#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/item.php:140
+#: ../../mod/item.php:156 ../../mod/allfriends.php:9 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/register.php:40 ../../mod/regmod.php:118
+#: ../../mod/attach.php:33 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/crepair.php:115
+#: ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/display.php:180 ../../mod/editpost.php:10
+#: ../../mod/events.php:140 ../../mod/uimport.php:23 ../../mod/follow.php:9
+#: ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/install.php:151 ../../mod/wall_upload.php:66
+#: ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/manage.php:96 ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/mood.php:114 ../../mod/network.php:6 ../../mod/photos.php:133
+#: ../../mod/photos.php:1044 ../../mod/notifications.php:66
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../index.php:341
+msgid "Permission denied."
+msgstr "Brak uprawnień."
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "Profil niedostępny."
+#: ../../addon.old/dav/friendica/layout.fnk.php:361
+#: ../../addon.old/facebook/facebook.php:799
+#: ../../addon.old/fbpost/fbpost.php:282
+#: ../../addon/dav/friendica/layout.fnk.php:361
+#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
+msgid "The new values have been saved."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s otrzymał dziś zbyt wiele żądań połączeń."
+#: ../../addon.old/dav/friendica/layout.fnk.php:380
+#: ../../addon/dav/friendica/layout.fnk.php:380
+msgid "The calendar has been updated."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "Ochrona przed spamem została wywołana."
+#: ../../addon.old/dav/friendica/layout.fnk.php:393
+#: ../../addon/dav/friendica/layout.fnk.php:393
+msgid "The new calendar has been created."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "Przyjaciele namawiają do spróbowania za 24h."
+#: ../../addon.old/dav/friendica/layout.fnk.php:417
+#: ../../addon/dav/friendica/layout.fnk.php:417
+msgid "The calendar has been deleted."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "Niewłaściwy lokalizator "
+#: ../../addon.old/dav/friendica/layout.fnk.php:424
+#: ../../addon/dav/friendica/layout.fnk.php:424
+msgid "Calendar Settings"
+msgstr "Ustawienia kalendarza"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "Nieprawidłowy adres email."
+#: ../../addon.old/dav/friendica/layout.fnk.php:430
+#: ../../addon/dav/friendica/layout.fnk.php:430
+msgid "Date format"
+msgstr "Format daty"
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr ""
+#: ../../addon.old/dav/friendica/layout.fnk.php:439
+#: ../../addon/dav/friendica/layout.fnk.php:439
+msgid "Time zone"
+msgstr "Strefa czasowa"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu."
+#: ../../addon.old/dav/friendica/layout.fnk.php:441
+#: ../../addon.old/dav/friendica/layout.fnk.php:488
+#: ../../addon.old/facebook/facebook.php:770
+#: ../../addon.old/fbpost/fbpost.php:267
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon/dav/friendica/layout.fnk.php:441
+#: ../../addon/dav/friendica/layout.fnk.php:488
+#: ../../addon/facebook/facebook.php:772 ../../addon/fbpost/fbpost.php:322
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
+#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "Zapisz"
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "Już się tu przedstawiłeś."
+#: ../../addon.old/dav/friendica/layout.fnk.php:445
+#: ../../addon/dav/friendica/layout.fnk.php:445
+msgid "Calendars"
+msgstr "Kalendarze"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Widocznie jesteście już znajomymi z %s"
+#: ../../addon.old/dav/friendica/layout.fnk.php:487
+#: ../../addon/dav/friendica/layout.fnk.php:487
+msgid "Create a new calendar"
+msgstr "Stwórz nowy kalendarz"
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "Zły adres URL profilu."
+#: ../../addon.old/dav/friendica/layout.fnk.php:496
+#: ../../addon/dav/friendica/layout.fnk.php:496
+msgid "Limitations"
+msgstr "Ograniczenie"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "Nie dozwolony adres URL profilu."
+#: ../../addon.old/dav/friendica/layout.fnk.php:500
+#: ../../addon.old/libravatar/libravatar.php:82
+#: ../../addon/dav/friendica/layout.fnk.php:500
+#: ../../addon/libravatar/libravatar.php:82
+msgid "Warning"
+msgstr "Ostrzeżenie"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "Aktualizacja nagrania kontaktu nie powiodła się."
+#: ../../addon.old/dav/friendica/layout.fnk.php:504
+#: ../../addon/dav/friendica/layout.fnk.php:504
+msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
+msgstr "Synchronizacja (iPhone, Thunderbird Lightning, Android, ...)"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "Twoje dane zostały wysłane."
+#: ../../addon.old/dav/friendica/layout.fnk.php:511
+#: ../../addon/dav/friendica/layout.fnk.php:511
+msgid "Synchronizing this calendar with the iPhone"
+msgstr "Zsynchronizuj kalendarz z iPhone"
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "Proszę zalogować się do potwierdzenia wstępu."
+#: ../../addon.old/dav/friendica/layout.fnk.php:522
+#: ../../addon/dav/friendica/layout.fnk.php:522
+msgid "Synchronizing your Friendica-Contacts with the iPhone"
+msgstr "Zsynchronizuj kontakty friendica z iPhone"
 
-#: ../../mod/dfrn_request.php:659
+#: ../../addon.old/dav/friendica/main.php:202
+#: ../../addon/dav/friendica/main.php:202
 msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. "
+"The current version of this plugin has not been set up correctly. Please "
+"contact the system administrator of your installation of friendica to fix "
+"this."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "Ukryj kontakt"
+#: ../../addon.old/dav/friendica/main.php:242
+#: ../../addon/dav/friendica/main.php:242
+msgid "Extended calendar with CalDAV-support"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "Welcome home %s."
+#: ../../addon.old/dav/friendica/main.php:279
+#: ../../addon.old/dav/friendica/main.php:280
+#: ../../addon/dav/friendica/main.php:279
+#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
+#: ../../include/enotify.php:28 ../../include/notifier.php:785
+msgid "noreply"
+msgstr "brak odpowiedzi"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
+#: ../../addon.old/dav/friendica/main.php:282
+#: ../../addon/dav/friendica/main.php:282
+msgid "Notification: "
+msgstr "Potwierdzeni:"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "Potwierdź"
+#: ../../addon.old/dav/friendica/main.php:309
+#: ../../addon/dav/friendica/main.php:309
+msgid "The database tables have been installed."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
-msgid "[Name Withheld]"
-msgstr "[Nazwa wstrzymana]"
+#: ../../addon.old/dav/friendica/main.php:310
+#: ../../addon/dav/friendica/main.php:310
+msgid "An error occurred during the installation."
+msgstr ""
 
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
+#: ../../addon.old/dav/friendica/main.php:316
+#: ../../addon/dav/friendica/main.php:316
+msgid "The database tables have been updated."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+#: ../../addon.old/dav/friendica/main.php:317
+#: ../../addon/dav/friendica/main.php:317
+msgid "An error occurred during the update."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:829
-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>."
+#: ../../addon.old/dav/friendica/main.php:333
+#: ../../addon/dav/friendica/main.php:333
+msgid "No system-wide settings yet."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "Przyjaciel/Prośba o połączenie"
+#: ../../addon.old/dav/friendica/main.php:336
+#: ../../addon/dav/friendica/main.php:336
+msgid "Database status"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:833
+#: ../../addon.old/dav/friendica/main.php:339
+#: ../../addon/dav/friendica/main.php:339
+msgid "Installed"
+msgstr "Zainstalowany"
+
+#: ../../addon.old/dav/friendica/main.php:343
+#: ../../addon/dav/friendica/main.php:343
+msgid "Upgrade needed"
+msgstr "Wymaga uaktualnienia"
+
+#: ../../addon.old/dav/friendica/main.php:343
+#: ../../addon/dav/friendica/main.php:343
 msgid ""
-"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
-"testuser@identi.ca"
+"Please back up all calendar data (the tables beginning with dav_*) before "
+"proceeding. While all calendar events <i>should</i> be converted to the new "
+"database structure, it's always safe to have a backup. Below, you can have a"
+" look at the database-queries that will be made when pressing the "
+"'update'-button."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:834
-msgid "Please answer the following:"
-msgstr "Proszę odpowiedzieć na poniższe:"
+#: ../../addon.old/dav/friendica/main.php:343
+#: ../../addon/dav/friendica/main.php:343
+msgid "Upgrade"
+msgstr "Uaktualnienie"
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "Czy %s Cię zna?"
+#: ../../addon.old/dav/friendica/main.php:346
+#: ../../addon/dav/friendica/main.php:346
+msgid "Not installed"
+msgstr "Nie zainstalowany"
 
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "Dodaj osobistą notkę:"
+#: ../../addon.old/dav/friendica/main.php:346
+#: ../../addon/dav/friendica/main.php:346
+msgid "Install"
+msgstr "Zainstaluj"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../addon.old/dav/friendica/main.php:350
+#: ../../addon/dav/friendica/main.php:350
+msgid "Unknown"
+msgstr "Nieznany"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
+#: ../../addon.old/dav/friendica/main.php:350
+#: ../../addon/dav/friendica/main.php:350
+msgid ""
+"Something really went wrong. I cannot recover from this state automatically,"
+" sorry. Please go to the database backend, back up the data, and delete all "
+"tables beginning with 'dav_' manually. Afterwards, this installation routine"
+" should be able to reinitialize the tables automatically."
 msgstr ""
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../addon.old/dav/friendica/main.php:355
+#: ../../addon/dav/friendica/main.php:355
+msgid "Troubleshooting"
+msgstr "Rozwiązywanie problemów"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
+#: ../../addon.old/dav/friendica/main.php:356
+#: ../../addon/dav/friendica/main.php:356
+msgid "Manual creation of the database tables:"
 msgstr ""
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "Twój zidentyfikowany adres:"
+#: ../../addon.old/dav/friendica/main.php:357
+#: ../../addon/dav/friendica/main.php:357
+msgid "Show SQL-statements"
+msgstr ""
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "Wyślij zgłoszenie"
+#: ../../addon.old/drpost/drpost.php:35
+msgid "Post to Drupal"
+msgstr "Opublikuj na Drupal"
 
-#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "Ustawienia konta"
+#: ../../addon.old/drpost/drpost.php:72
+msgid "Drupal Post Settings"
+msgstr "Ustawienia wpisów Drupala"
 
-#: ../../mod/uexport.php:14 ../../mod/settings.php:40
-msgid "Display settings"
-msgstr "Wyświetl ustawienia"
+#: ../../addon.old/drpost/drpost.php:74
+msgid "Enable Drupal Post Plugin"
+msgstr "Włącz plugin wpisów Drupala"
 
-#: ../../mod/uexport.php:20 ../../mod/settings.php:46
-msgid "Connector settings"
-msgstr "Ustawienia konektora"
+#: ../../addon.old/drpost/drpost.php:79
+msgid "Drupal username"
+msgstr "Użytkownik Drupala"
 
-#: ../../mod/uexport.php:25 ../../mod/settings.php:51
-msgid "Plugin settings"
-msgstr "Ustawienia wtyczek"
+#: ../../addon.old/drpost/drpost.php:84
+msgid "Drupal password"
+msgstr "hasło do Drupal"
 
-#: ../../mod/uexport.php:30 ../../mod/settings.php:56
-msgid "Connected apps"
+#: ../../addon.old/drpost/drpost.php:89
+msgid "Post Type - article,page,or blog"
 msgstr ""
 
-#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
-msgid "Export personal data"
-msgstr "Eksportuje dane personalne"
-
-#: ../../mod/uexport.php:40 ../../mod/settings.php:66
-msgid "Remove account"
-msgstr "Usuń konto"
-
-#: ../../mod/uexport.php:48 ../../mod/settings.php:74
-#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1033
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon.old/mathjax/mathjax.php:36
-msgid "Settings"
-msgstr "Ustawienia"
+#: ../../addon.old/drpost/drpost.php:94
+msgid "Drupal site URL"
+msgstr "Adres strony Drupala"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
+#: ../../addon.old/drpost/drpost.php:99
+msgid "Drupal site uses clean URLS"
 msgstr ""
 
-#: ../../mod/uexport.php:72
-msgid ""
-"Export your account info and contacts. Use this to make a backup of your "
-"account and/or to move it to another server."
+#: ../../addon.old/drpost/drpost.php:104
+msgid "Post to Drupal by default"
 msgstr ""
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr ""
+#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
+msgid "Post to Dreamwidth"
+msgstr "Opublikuj na Dreamwidth"
 
-#: ../../mod/uexport.php:73
-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)"
+#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
+msgid "Dreamwidth Post Settings"
 msgstr ""
 
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
+#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
+msgid "Enable dreamwidth Post Plugin"
 msgstr ""
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "Nie można nawiązać połączenia z bazą danych"
-
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "Nie mogę stworzyć tabeli."
-
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
+#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
+msgid "dreamwidth username"
 msgstr ""
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
-
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:506
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
-
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "Sprawdzanie systemu"
-
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "Sprawdź ponownie"
-
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "Połączenie z bazą danych"
-
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
+#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
+msgid "dreamwidth password"
+msgstr ""
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
+#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
+msgid "Post to dreamwidth by default"
+msgstr ""
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
+#: ../../addon.old/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon/editplain/editplain.php:46
+msgid "Editplain settings updated."
+msgstr ""
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "Baza danych - Nazwa serwera"
+#: ../../addon.old/editplain/editplain.php:76
+#: ../../addon/editplain/editplain.php:76
+msgid "Editplain Settings"
+msgstr ""
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "Baza danych - Nazwa loginu"
+#: ../../addon.old/editplain/editplain.php:78
+#: ../../addon/editplain/editplain.php:78
+msgid "Disable richtext status editor"
+msgstr ""
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "Baza danych - Hasło loginu"
+#: ../../addon.old/facebook/facebook.php:495
+#: ../../addon.old/fbpost/fbpost.php:144
+#: ../../addon.old/impressum/impressum.php:78
+#: ../../addon.old/mathjax/mathjax.php:66
+#: ../../addon.old/openstreetmap/openstreetmap.php:80
+#: ../../addon.old/piwik/piwik.php:105 ../../addon.old/twitter/twitter.php:389
+#: ../../addon/altpager/altpager.php:107 ../../addon/facebook/facebook.php:497
+#: ../../addon/fbpost/fbpost.php:155 ../../addon/impressum/impressum.php:78
+#: ../../addon/mathjax/mathjax.php:66
+#: ../../addon/openstreetmap/openstreetmap.php:104
+#: ../../addon/piwik/piwik.php:105
+#: ../../addon/remote_permissions/remote_permissions.php:205
+#: ../../addon/twitter/twitter.php:550 ../../mod/settings.php:488
+msgid "Settings updated."
+msgstr "Zaktualizowano ustawienia."
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "Baza danych - Nazwa"
+#: ../../addon.old/facebook/facebook.php:523
+#: ../../addon/facebook/facebook.php:525
+msgid "Facebook disabled"
+msgstr "Facebook wyłączony"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "Adres e-mail administratora strony"
+#: ../../addon.old/facebook/facebook.php:528
+#: ../../addon/facebook/facebook.php:530
+msgid "Updating contacts"
+msgstr "Aktualizacja kontaktów"
 
-#: ../../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 ""
+#: ../../addon.old/facebook/facebook.php:551
+#: ../../addon.old/fbpost/fbpost.php:192 ../../addon/facebook/facebook.php:553
+#: ../../addon/fbpost/fbpost.php:203
+msgid "Facebook API key is missing."
+msgstr "Brakuje klucza API z facebooka."
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
+#: ../../addon.old/facebook/facebook.php:558
+#: ../../addon/facebook/facebook.php:560
+msgid "Facebook Connect"
+msgstr "Połącz konto z kontem Facebook"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "Ustawienia strony"
+#: ../../addon.old/facebook/facebook.php:564
+#: ../../addon/facebook/facebook.php:566
+msgid "Install Facebook connector for this account."
+msgstr "Zainstaluj wtyczkę Facebook "
 
-#: ../../mod/install.php:320
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
+#: ../../addon.old/facebook/facebook.php:571
+#: ../../addon/facebook/facebook.php:573
+msgid "Remove Facebook connector"
+msgstr "Usuń wtyczkę Facebook"
 
-#: ../../mod/install.php:321
+#: ../../addon.old/facebook/facebook.php:576
+#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
+#: ../../addon/fbpost/fbpost.php:228
 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 ""
+"Re-authenticate [This is necessary whenever your Facebook password is "
+"changed.]"
+msgstr "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]"
 
-#: ../../mod/install.php:325
-msgid "PHP executable path"
+#: ../../addon.old/facebook/facebook.php:583
+#: ../../addon.old/fbpost/fbpost.php:224 ../../addon/facebook/facebook.php:585
+#: ../../addon/fbpost/fbpost.php:235
+msgid "Post to Facebook by default"
+msgstr "Domyślnie opublikuj na stronie Facebook"
+
+#: ../../addon.old/facebook/facebook.php:589
+#: ../../addon/facebook/facebook.php:591
+msgid ""
+"Facebook friend linking has been disabled on this site. The following "
+"settings will have no effect."
 msgstr ""
 
-#: ../../mod/install.php:325
+#: ../../addon.old/facebook/facebook.php:593
+#: ../../addon/facebook/facebook.php:595
 msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
+"Facebook friend linking has been disabled on this site. If you disable it, "
+"you will be unable to re-enable it."
 msgstr ""
 
-#: ../../mod/install.php:330
-msgid "Command line PHP"
-msgstr "Linia komend PHP"
+#: ../../addon.old/facebook/facebook.php:596
+#: ../../addon/facebook/facebook.php:598
+msgid "Link all your Facebook friends and conversations on this website"
+msgstr "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook"
 
-#: ../../mod/install.php:339
+#: ../../addon.old/facebook/facebook.php:598
+#: ../../addon/facebook/facebook.php:600
 msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
-
-#: ../../mod/install.php:340
-msgid "This is required for message delivery to work."
-msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
+"Facebook conversations consist of your <em>profile wall</em> and your friend"
+" <em>stream</em>."
+msgstr ""
 
-#: ../../mod/install.php:342
-msgid "PHP register_argc_argv"
+#: ../../addon.old/facebook/facebook.php:599
+#: ../../addon/facebook/facebook.php:601
+msgid "On this website, your Facebook friend stream is only visible to you."
 msgstr ""
 
-#: ../../mod/install.php:363
+#: ../../addon.old/facebook/facebook.php:600
+#: ../../addon/facebook/facebook.php:602
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "Błąd : funkcja systemu  \"openssl_pkey_new\"  nie jest  w stanie wygenerować klucza szyfrującego ."
+"The following settings determine the privacy of your Facebook profile wall "
+"on this website."
+msgstr ""
 
-#: ../../mod/install.php:364
+#: ../../addon.old/facebook/facebook.php:604
+#: ../../addon/facebook/facebook.php:606
 msgid ""
-"If running under Windows, please see "
-"\"http://www.php.net/manual/en/openssl.installation.php\"."
-msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
-
-#: ../../mod/install.php:366
-msgid "Generate encryption keys"
-msgstr "Generuj klucz kodowania"
-
-#: ../../mod/install.php:373
-msgid "libCurl PHP module"
-msgstr "Moduł libCurl PHP"
-
-#: ../../mod/install.php:374
-msgid "GD graphics PHP module"
-msgstr "Moduł PHP-GD"
-
-#: ../../mod/install.php:375
-msgid "OpenSSL PHP module"
+"On this website your Facebook profile wall conversations will only be "
+"visible to you"
 msgstr ""
 
-#: ../../mod/install.php:376
-msgid "mysqli PHP module"
+#: ../../addon.old/facebook/facebook.php:609
+#: ../../addon/facebook/facebook.php:611
+msgid "Do not import your Facebook profile wall conversations"
 msgstr ""
 
-#: ../../mod/install.php:377
-msgid "mb_string PHP module"
+#: ../../addon.old/facebook/facebook.php:611
+#: ../../addon/facebook/facebook.php:613
+msgid ""
+"If you choose to link conversations and leave both of these boxes unchecked,"
+" your Facebook profile wall will be merged with your profile wall on this "
+"website and your privacy settings on this website will be used to determine "
+"who may see the conversations."
 msgstr ""
 
-#: ../../mod/install.php:382 ../../mod/install.php:384
-msgid "Apache mod_rewrite module"
+#: ../../addon.old/facebook/facebook.php:616
+#: ../../addon/facebook/facebook.php:618
+msgid "Comma separated applications to ignore"
 msgstr ""
 
-#: ../../mod/install.php:382
-msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
-
-#: ../../mod/install.php:390
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
+#: ../../addon.old/facebook/facebook.php:700
+#: ../../addon/facebook/facebook.php:702
+msgid "Problems with Facebook Real-Time Updates"
+msgstr "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a"
 
-#: ../../mod/install.php:394
-msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
+#: ../../addon.old/facebook/facebook.php:702
+#: ../../addon.old/facebook/facebook.php:1200
+#: ../../addon.old/fbpost/fbpost.php:661
+#: ../../addon.old/public_server/public_server.php:62
+#: ../../addon.old/testdrive/testdrive.php:67
+#: ../../addon/facebook/facebook.php:704
+#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
+#: ../../addon/public_server/public_server.php:62
+#: ../../addon/testdrive/testdrive.php:67
+msgid "Administrator"
+msgstr "Administrator"
 
-#: ../../mod/install.php:398
-msgid "Error: openssl PHP module required but not installed."
-msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
+#: ../../addon.old/facebook/facebook.php:728
+#: ../../addon.old/fbpost/fbpost.php:239 ../../addon/facebook/facebook.php:730
+#: ../../addon/fbpost/fbpost.php:294 ../../include/contact_selectors.php:81
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/install.php:402
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
+#: ../../addon.old/facebook/facebook.php:729
+#: ../../addon/facebook/facebook.php:731
+msgid "Facebook Connector Settings"
+msgstr "Ustawienia połączenia z Facebook"
 
-#: ../../mod/install.php:406
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "Błąd: moduł PHP mb_string  jest wymagany ale nie jest zainstalowany"
+#: ../../addon.old/facebook/facebook.php:744
+#: ../../addon.old/fbpost/fbpost.php:255 ../../addon/facebook/facebook.php:746
+#: ../../addon/fbpost/fbpost.php:310
+msgid "Facebook API Key"
+msgstr "Facebook API Key"
 
-#: ../../mod/install.php:423
+#: ../../addon.old/facebook/facebook.php:754
+#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
+#: ../../addon/fbpost/fbpost.php:317
 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 "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\"  i nie jest w stanie tego zrobić."
+"Error: it appears that you have specified the App-ID and -Secret in your "
+".htconfig.php file. As long as they are specified there, they cannot be set "
+"using this form.<br><br>"
+msgstr ""
 
-#: ../../mod/install.php:424
+#: ../../addon.old/facebook/facebook.php:759
+#: ../../addon/facebook/facebook.php:761
 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."
+"Error: the given API Key seems to be incorrect (the application access token"
+" could not be retrieved)."
 msgstr ""
 
-#: ../../mod/install.php:425
-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."
+#: ../../addon.old/facebook/facebook.php:761
+#: ../../addon/facebook/facebook.php:763
+msgid "The given API Key seems to work correctly."
 msgstr ""
 
-#: ../../mod/install.php:426
+#: ../../addon.old/facebook/facebook.php:763
+#: ../../addon/facebook/facebook.php:765
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
+"The correctness of the API Key could not be detected. Something strange's "
+"going on."
 msgstr ""
 
-#: ../../mod/install.php:429
-msgid ".htconfig.php is writable"
-msgstr ""
+#: ../../addon.old/facebook/facebook.php:766
+#: ../../addon.old/fbpost/fbpost.php:264 ../../addon/facebook/facebook.php:768
+#: ../../addon/fbpost/fbpost.php:319
+msgid "App-ID / API-Key"
+msgstr "App-ID / API-Key"
 
-#: ../../mod/install.php:439
-msgid ""
-"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
-"compiles templates to PHP to speed up rendering."
+#: ../../addon.old/facebook/facebook.php:767
+#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769
+#: ../../addon/fbpost/fbpost.php:320
+msgid "Application secret"
 msgstr ""
 
-#: ../../mod/install.php:440
-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."
+#: ../../addon.old/facebook/facebook.php:768
+#: ../../addon/facebook/facebook.php:770
+#, php-format
+msgid "Polling Interval in minutes (minimum %1$s minutes)"
 msgstr ""
 
-#: ../../mod/install.php:441
+#: ../../addon.old/facebook/facebook.php:769
+#: ../../addon/facebook/facebook.php:771
 msgid ""
-"Please ensure that the user that your web server runs as (e.g. www-data) has"
-" write access to this folder."
+"Synchronize comments (no comments on Facebook are missed, at the cost of "
+"increased system load)"
 msgstr ""
 
-#: ../../mod/install.php:442
+#: ../../addon.old/facebook/facebook.php:773
+#: ../../addon/facebook/facebook.php:775
+msgid "Real-Time Updates"
+msgstr "Aktualizacje w czasie rzeczywistym"
+
+#: ../../addon.old/facebook/facebook.php:777
+#: ../../addon/facebook/facebook.php:779
+msgid "Real-Time Updates are activated."
+msgstr "Aktualizacje w czasie rzeczywistym zostały aktywowane."
+
+#: ../../addon.old/facebook/facebook.php:778
+#: ../../addon/facebook/facebook.php:780
+msgid "Deactivate Real-Time Updates"
+msgstr "Zdezaktywuj aktualizacje w czasie rzeczywistym"
+
+#: ../../addon.old/facebook/facebook.php:780
+#: ../../addon/facebook/facebook.php:782
+msgid "Real-Time Updates not activated."
+msgstr "Aktualizacje w czasie rzeczywistym nie zostały aktywowane."
+
+#: ../../addon.old/facebook/facebook.php:780
+#: ../../addon/facebook/facebook.php:782
+msgid "Activate Real-Time Updates"
+msgstr "Aktywuj aktualizacje w czasie rzeczywistym"
+
+#: ../../addon.old/facebook/facebook.php:823
+#: ../../addon.old/fbpost/fbpost.php:301 ../../addon/facebook/facebook.php:825
+#: ../../addon/fbpost/fbpost.php:356
+msgid "Post to Facebook"
+msgstr "Post na Facebook"
+
+#: ../../addon.old/facebook/facebook.php:921
+#: ../../addon.old/fbpost/fbpost.php:399 ../../addon/facebook/facebook.php:923
+#: ../../addon/fbpost/fbpost.php:487
 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."
+"Post to Facebook cancelled because of multi-network access permission "
+"conflict."
+msgstr "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci"
+
+#: ../../addon.old/facebook/facebook.php:1149
+#: ../../addon.old/fbpost/fbpost.php:610
+#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
+msgid "View on Friendica"
+msgstr "Zobacz na Friendice"
+
+#: ../../addon.old/facebook/facebook.php:1182
+#: ../../addon.old/fbpost/fbpost.php:643
+#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
+msgid "Facebook post failed. Queued for retry."
 msgstr ""
 
-#: ../../mod/install.php:445
-msgid "view/smarty3 is writable"
+#: ../../addon.old/facebook/facebook.php:1222
+#: ../../addon.old/fbpost/fbpost.php:683
+#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
+msgid "Your Facebook connection became invalid. Please Re-authenticate."
 msgstr ""
 
-#: ../../mod/install.php:457
+#: ../../addon.old/facebook/facebook.php:1223
+#: ../../addon.old/fbpost/fbpost.php:684
+#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
+msgid "Facebook connection became invalid"
+msgstr "Błędne połączenie z Facebookiem"
+
+#: ../../addon.old/facebook/facebook.php:1224
+#: ../../addon.old/fbpost/fbpost.php:685
+#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
+#, php-format
 msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+"Hi %1$s,\n"
+"\n"
+"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
 msgstr ""
 
-#: ../../mod/install.php:459
-msgid "Url rewrite is working"
+#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
+msgid "Facebook Post disabled"
 msgstr ""
 
-#: ../../mod/install.php:469
-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 "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
-
-#: ../../mod/install.php:493
-msgid "Errors encountered creating database tables."
-msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
-
-#: ../../mod/install.php:504
-msgid "<h1>What next</h1>"
-msgstr "<h1>Co dalej</h1>"
+#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
+msgid "Facebook Post"
+msgstr "Wpis z Facebooka"
 
-#: ../../mod/install.php:505
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
+#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
+msgid "Install Facebook Post connector for this account."
 msgstr ""
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
+#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
+msgid "Remove Facebook Post connector"
 msgstr ""
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "Zmiana czasu"
+#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
+msgid "Facebook Post Settings"
+msgstr "Ustawienia wpisu z Facebooka"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr ""
+#: ../../addon.old/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon.old/page/page.php:92 ../../addon/forumlist/forumlist.php:64
+#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
+msgid "Forums"
+msgstr "Fora"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "Czas UTC %s"
+#: ../../addon.old/forumlist/forumlist.php:63
+#: ../../addon/forumlist/forumlist.php:67
+msgid "show/hide"
+msgstr "pokaż/ukryj"
 
-#: ../../mod/localtime.php:33
-#, php-format
-msgid "Current timezone: %s"
-msgstr "Obecna strefa czasowa: %s"
+#: ../../addon.old/forumlist/forumlist.php:77
+#: ../../addon/forumlist/forumlist.php:81
+msgid "No forum subscriptions"
+msgstr ""
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "Zmień strefę czasową: %s"
+#: ../../addon.old/forumlist/forumlist.php:94
+#: ../../addon.old/page/page.php:130 ../../addon/forumlist/forumlist.php:98
+#: ../../addon/page/page.php:130
+msgid "Forums:"
+msgstr ""
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "Wybierz swoją strefę czasową:"
+#: ../../addon.old/forumlist/forumlist.php:131
+#: ../../addon/forumlist/forumlist.php:134
+msgid "Forumlist settings updated."
+msgstr ""
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
+#: ../../addon.old/forumlist/forumlist.php:159
+#: ../../addon/forumlist/forumlist.php:162
+msgid "Forumlist Settings"
 msgstr ""
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
+#: ../../addon.old/forumlist/forumlist.php:161
+#: ../../addon/forumlist/forumlist.php:164
+msgid "Randomise forum list"
 msgstr ""
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
+#: ../../addon.old/forumlist/forumlist.php:164
+#: ../../addon/forumlist/forumlist.php:167
+msgid "Show forums on profile page"
 msgstr ""
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
+#: ../../addon.old/forumlist/forumlist.php:167
+#: ../../addon/forumlist/forumlist.php:170
+msgid "Show forums on network page"
 msgstr ""
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "Zrób ten post prywatnym"
+#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
+msgid "Fromapp settings updated."
+msgstr ""
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "Profil zgodny "
+#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
+msgid "FromApp Settings"
+msgstr ""
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."
+#: ../../addon.old/fromapp/fromapp.php:66 ../../addon/fromapp/fromapp.php:66
+msgid ""
+"The application name you would like to show your posts originating from."
+msgstr ""
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "interesuje się:"
+#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
+msgid "Use this application name even if another application was used."
+msgstr ""
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:88
-#: ../../include/contact_widgets.php:9 ../../boot.php:1317
-msgid "Connect"
-msgstr "Połącz"
+#: ../../addon.old/fromgplus/fromgplus.php:29
+#: ../../addon/fromgplus/fromgplus.php:33
+msgid "Google+ Import Settings"
+msgstr ""
 
-#: ../../mod/match.php:65 ../../mod/dirfind.php:60
-msgid "No matches"
-msgstr "brak dopasowań"
+#: ../../addon.old/fromgplus/fromgplus.php:32
+#: ../../addon/fromgplus/fromgplus.php:36
+msgid "Enable Google+ Import"
+msgstr ""
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Dane prywatne nie są dostępne zdalnie "
+#: ../../addon.old/fromgplus/fromgplus.php:35
+#: ../../addon/fromgplus/fromgplus.php:39
+msgid "Google Account ID"
+msgstr ""
 
-#: ../../mod/lockview.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:124
-msgid "Visible to:"
-msgstr "Widoczne dla:"
+#: ../../addon.old/fromgplus/fromgplus.php:55
+#: ../../addon/fromgplus/fromgplus.php:59
+msgid "Google+ Import Settings saved."
+msgstr ""
 
-#: ../../mod/content.php:119 ../../mod/network.php:596
-msgid "No such group"
-msgstr "Nie ma takiej grupy"
+#: ../../addon.old/geonames/geonames.php:143
+#: ../../addon/geonames/geonames.php:143
+msgid "Geonames settings updated."
+msgstr ""
 
-#: ../../mod/content.php:130 ../../mod/network.php:607
-msgid "Group is empty"
-msgstr "Grupa jest pusta"
+#: ../../addon.old/geonames/geonames.php:179
+#: ../../addon/geonames/geonames.php:179
+msgid "Geonames Settings"
+msgstr "ustawienia Geonames"
 
-#: ../../mod/content.php:134 ../../mod/network.php:611
-msgid "Group: "
-msgstr "Grupa:"
+#: ../../addon.old/geonames/geonames.php:181
+#: ../../addon/geonames/geonames.php:181
+msgid "Enable Geonames Plugin"
+msgstr ""
 
-#: ../../mod/content.php:438 ../../mod/content.php:740
-#: ../../include/conversation.php:569 ../../object/Item.php:119
-msgid "Select"
-msgstr "Wybierz"
+#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
+msgid "Gnot settings updated."
+msgstr ""
 
-#: ../../mod/content.php:472 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../include/conversation.php:609
-#: ../../object/Item.php:258 ../../object/Item.php:259
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Pokaż %s's profil @ %s"
+#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
+msgid "Gnot Settings"
+msgstr ""
 
-#: ../../mod/content.php:482 ../../mod/content.php:864
-#: ../../include/conversation.php:629 ../../object/Item.php:272
-#, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
+#: ../../addon.old/gnot/gnot.php:81 ../../addon/gnot/gnot.php:81
+msgid ""
+"Allows threading of email comment notifications on Gmail and anonymising the"
+" subject line."
+msgstr ""
 
-#: ../../mod/content.php:497 ../../include/conversation.php:644
-msgid "View in context"
-msgstr "Zobacz w kontekście"
+#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
+msgid "Enable this plugin/addon?"
+msgstr "Umożliwić tego plugina/wtyczkę?"
 
-#: ../../mod/content.php:603 ../../object/Item.php:313
+#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
 #, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] " %d komentarz"
-msgstr[1] " %d komentarzy"
-msgstr[2] " %d komentarzy"
-
-#: ../../mod/content.php:605 ../../include/text.php:1514
-#: ../../object/Item.php:315 ../../object/Item.php:328
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] "komentarz"
-
-#: ../../mod/content.php:606 ../../addon/page/page.php:77
-#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../boot.php:642
-#: ../../object/Item.php:316 ../../addon.old/page/page.php:77
-#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
-msgid "show more"
-msgstr "Pokaż więcej"
+msgid "[Friendica:Notify] Comment to conversation #%d"
+msgstr ""
 
-#: ../../mod/content.php:684 ../../object/Item.php:204
-msgid "like"
-msgstr "polub"
+#: ../../addon.old/gravatar/gravatar.php:71
+#: ../../addon.old/libravatar/libravatar.php:73
+#: ../../addon/gravatar/gravatar.php:71
+#: ../../addon/libravatar/libravatar.php:73
+msgid "generic profile image"
+msgstr "generuj obraz profilowy"
 
-#: ../../mod/content.php:685 ../../object/Item.php:205
-msgid "dislike"
-msgstr "Nie lubię"
+#: ../../addon.old/gravatar/gravatar.php:72
+#: ../../addon.old/libravatar/libravatar.php:74
+#: ../../addon/gravatar/gravatar.php:72
+#: ../../addon/libravatar/libravatar.php:74
+msgid "random geometric pattern"
+msgstr "przypadkowy wzorzec geometryczny"
 
-#: ../../mod/content.php:687 ../../object/Item.php:207
-msgid "Share this"
-msgstr "Udostępnij to"
+#: ../../addon.old/gravatar/gravatar.php:73
+#: ../../addon.old/libravatar/libravatar.php:75
+#: ../../addon/gravatar/gravatar.php:73
+#: ../../addon/libravatar/libravatar.php:75
+msgid "monster face"
+msgstr "monster face"
 
-#: ../../mod/content.php:687 ../../object/Item.php:207
-msgid "share"
-msgstr "udostępnij"
+#: ../../addon.old/gravatar/gravatar.php:74
+#: ../../addon.old/libravatar/libravatar.php:76
+#: ../../addon/gravatar/gravatar.php:74
+#: ../../addon/libravatar/libravatar.php:76
+msgid "computer generated face"
+msgstr ""
 
-#: ../../mod/content.php:711 ../../object/Item.php:605
-msgid "Bold"
-msgstr "Pogrubienie"
+#: ../../addon.old/gravatar/gravatar.php:75
+#: ../../addon.old/libravatar/libravatar.php:77
+#: ../../addon/gravatar/gravatar.php:75
+#: ../../addon/libravatar/libravatar.php:77
+msgid "retro arcade style face"
+msgstr ""
 
-#: ../../mod/content.php:712 ../../object/Item.php:606
-msgid "Italic"
-msgstr "Kursywa"
+#: ../../addon.old/gravatar/gravatar.php:89
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon/gravatar/gravatar.php:89
+#: ../../addon/libravatar/libravatar.php:93
+msgid "Information"
+msgstr ""
 
-#: ../../mod/content.php:713 ../../object/Item.php:607
-msgid "Underline"
-msgstr "Podkreślenie"
+#: ../../addon.old/gravatar/gravatar.php:89
+#: ../../addon/gravatar/gravatar.php:89
+msgid ""
+"Libravatar addon is installed, too. Please disable Libravatar addon or this "
+"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
+"nothing was found at Libravatar."
+msgstr ""
 
-#: ../../mod/content.php:714 ../../object/Item.php:608
-msgid "Quote"
-msgstr "Cytat"
+#: ../../addon.old/gravatar/gravatar.php:96
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon/gravatar/gravatar.php:96
+#: ../../addon/libravatar/libravatar.php:100
+msgid "Default avatar image"
+msgstr "Domyślny awatar"
 
-#: ../../mod/content.php:715 ../../object/Item.php:609
-msgid "Code"
-msgstr "Kod"
+#: ../../addon.old/gravatar/gravatar.php:96
+#: ../../addon/gravatar/gravatar.php:96
+msgid "Select default avatar image if none was found at Gravatar. See README"
+msgstr ""
 
-#: ../../mod/content.php:716 ../../object/Item.php:610
-msgid "Image"
-msgstr "Obraz"
+#: ../../addon.old/gravatar/gravatar.php:97
+#: ../../addon/gravatar/gravatar.php:97
+msgid "Rating of images"
+msgstr ""
 
-#: ../../mod/content.php:717 ../../object/Item.php:611
-msgid "Link"
-msgstr "Link"
+#: ../../addon.old/gravatar/gravatar.php:97
+#: ../../addon/gravatar/gravatar.php:97
+msgid "Select the appropriate avatar rating for your site. See README"
+msgstr ""
 
-#: ../../mod/content.php:718 ../../object/Item.php:612
-msgid "Video"
-msgstr "Video"
+#: ../../addon.old/gravatar/gravatar.php:111
+#: ../../addon/gravatar/gravatar.php:111
+msgid "Gravatar settings updated."
+msgstr "Zaktualizowane ustawienie Gravatara"
 
-#: ../../mod/content.php:753 ../../object/Item.php:183
-msgid "add star"
-msgstr "dodaj gwiazdkę"
+#: ../../addon.old/group_text/group_text.php:76
+#: ../../addon/group_text/group_text.php:76
+msgid "Group Text"
+msgstr ""
 
-#: ../../mod/content.php:754 ../../object/Item.php:184
-msgid "remove star"
-msgstr "anuluj gwiazdkę"
+#: ../../addon.old/group_text/group_text.php:78
+#: ../../addon/group_text/group_text.php:78
+msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
+msgstr ""
 
-#: ../../mod/content.php:755 ../../object/Item.php:185
-msgid "toggle star status"
-msgstr "włącz status gwiazdy"
+#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
+msgid "Post to Insanejournal"
+msgstr "Opublikuj na Insanejournal"
 
-#: ../../mod/content.php:758 ../../object/Item.php:188
-msgid "starred"
+#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
+msgid "InsaneJournal Post Settings"
 msgstr ""
 
-#: ../../mod/content.php:759 ../../object/Item.php:193
-msgid "add tag"
-msgstr "dodaj tag"
+#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
+msgid "Enable InsaneJournal Post Plugin"
+msgstr ""
 
-#: ../../mod/content.php:763 ../../object/Item.php:123
-msgid "save to folder"
-msgstr "zapisz w folderze"
+#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
+msgid "InsaneJournal username"
+msgstr ""
 
-#: ../../mod/content.php:854 ../../object/Item.php:260
-msgid "to"
-msgstr "do"
+#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
+msgid "InsaneJournal password"
+msgstr ""
 
-#: ../../mod/content.php:855 ../../object/Item.php:262
-msgid "Wall-to-Wall"
-msgstr "Wall-to-Wall"
+#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
+msgid "Post to InsaneJournal by default"
+msgstr ""
 
-#: ../../mod/content.php:856 ../../object/Item.php:263
-msgid "via Wall-To-Wall:"
-msgstr "via Wall-To-Wall:"
+#: ../../addon.old/impressum/impressum.php:37
+#: ../../addon/impressum/impressum.php:37
+msgid "Impressum"
+msgstr ""
 
-#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
-#: ../../addon.old/communityhome/communityhome.php:179
-#, php-format
-msgid "Welcome to %s"
-msgstr "Witamy w %s"
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:52
+#: ../../addon.old/impressum/impressum.php:84
+#: ../../addon/impressum/impressum.php:50
+#: ../../addon/impressum/impressum.php:52
+#: ../../addon/impressum/impressum.php:84
+msgid "Site Owner"
+msgstr "Właściciel strony"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Niewłaściwy identyfikator wymagania."
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:88
+#: ../../addon/impressum/impressum.php:50
+#: ../../addon/impressum/impressum.php:88
+msgid "Email Address"
+msgstr "Adres e-mail"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "Odrzuć"
+#: ../../addon.old/impressum/impressum.php:55
+#: ../../addon.old/impressum/impressum.php:86
+#: ../../addon/impressum/impressum.php:55
+#: ../../addon/impressum/impressum.php:86
+msgid "Postal Address"
+msgstr "Adres pocztowy"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
-#: ../../mod/contacts.php:413
-msgid "Ignore"
-msgstr "Ignoruj"
+#: ../../addon.old/impressum/impressum.php:61
+#: ../../addon/impressum/impressum.php:61
+msgid ""
+"The impressum addon needs to be configured!<br />Please add at least the "
+"<tt>owner</tt> variable to your config file. For other variables please "
+"refer to the README file of the addon."
+msgstr ""
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "System"
+#: ../../addon.old/impressum/impressum.php:84
+#: ../../addon/impressum/impressum.php:84
+msgid "The page operators name."
+msgstr ""
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "Sieć"
+#: ../../addon.old/impressum/impressum.php:85
+#: ../../addon/impressum/impressum.php:85
+msgid "Site Owners Profile"
+msgstr "Profil właściciela strony"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:444
-msgid "Personal"
-msgstr "Osobiste"
+#: ../../addon.old/impressum/impressum.php:85
+#: ../../addon/impressum/impressum.php:85
+msgid "Profile address of the operator."
+msgstr ""
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-#: ../../include/nav.php:104 ../../include/nav.php:143
-msgid "Home"
-msgstr "Dom"
+#: ../../addon.old/impressum/impressum.php:86
+#: ../../addon/impressum/impressum.php:86
+msgid "How to contact the operator via snail mail. You can use BBCode here."
+msgstr ""
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "Wstępy"
+#: ../../addon.old/impressum/impressum.php:87
+#: ../../addon/impressum/impressum.php:87
+msgid "Notes"
+msgstr "Notatki"
 
-#: ../../mod/notifications.php:103 ../../mod/message.php:182
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "Wiadomości"
+#: ../../addon.old/impressum/impressum.php:87
+#: ../../addon/impressum/impressum.php:87
+msgid ""
+"Additional notes that are displayed beneath the contact information. You can"
+" use BBCode here."
+msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "Pokaż ignorowane żądania"
+#: ../../addon.old/impressum/impressum.php:88
+#: ../../addon/impressum/impressum.php:88
+msgid "How to contact the operator via email. (will be displayed obfuscated)"
+msgstr ""
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "Ukryj ignorowane żądania"
+#: ../../addon.old/impressum/impressum.php:89
+#: ../../addon/impressum/impressum.php:89
+msgid "Footer note"
+msgstr "Notka w stopce"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "Typ zawiadomień:"
+#: ../../addon.old/impressum/impressum.php:89
+#: ../../addon/impressum/impressum.php:89
+msgid "Text for the footer. You can use BBCode here."
+msgstr ""
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "Propozycja znajomych"
+#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+msgid "Infinite Improbability Drive"
+msgstr ""
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "zaproponowane przez %s"
+#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
+msgid "IRC Settings"
+msgstr "Ustawienia IRC"
 
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:419
-msgid "Hide this contact from others"
-msgstr "Ukryj ten kontakt przed innymi"
+#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
+msgid "Channel(s) to auto connect (comma separated)"
+msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
+#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
+msgid "Popular Channels (comma separated)"
 msgstr ""
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "jeśli odpowiednie"
+#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
+msgid "IRC settings saved."
+msgstr "Zapisano ustawienia IRC."
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:733
-msgid "Approve"
-msgstr "Zatwierdź"
+#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
+msgid "IRC Chatroom"
+msgstr "IRC Chatroom"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "Twierdzi, że go znasz:"
+#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
+msgid "Popular Channels"
+msgstr "Popularne kanały"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "tak"
+#: ../../addon.old/jappixmini/jappixmini.php:266
+#: ../../addon/jappixmini/jappixmini.php:266
+msgid "Jappix Mini addon settings"
+msgstr ""
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr "nie"
+#: ../../addon.old/jappixmini/jappixmini.php:268
+#: ../../addon/jappixmini/jappixmini.php:268
+msgid "Activate addon"
+msgstr ""
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "Zatwierdź jako:"
+#: ../../addon.old/jappixmini/jappixmini.php:271
+#: ../../addon/jappixmini/jappixmini.php:271
+msgid ""
+"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
+msgstr ""
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "Znajomy"
+#: ../../addon.old/jappixmini/jappixmini.php:274
+#: ../../addon/jappixmini/jappixmini.php:274
+msgid "Jabber username"
+msgstr ""
+
+#: ../../addon.old/jappixmini/jappixmini.php:277
+#: ../../addon/jappixmini/jappixmini.php:277
+msgid "Jabber server"
+msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
+#: ../../addon.old/jappixmini/jappixmini.php:281
+#: ../../addon/jappixmini/jappixmini.php:281
+msgid "Jabber BOSH host"
 msgstr ""
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "Fan"
+#: ../../addon.old/jappixmini/jappixmini.php:285
+#: ../../addon/jappixmini/jappixmini.php:285
+msgid "Jabber password"
+msgstr "Hasło Jabber"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "Prośba o dodanie do przyjaciół/powiązanych"
+#: ../../addon.old/jappixmini/jappixmini.php:290
+#: ../../addon/jappixmini/jappixmini.php:290
+msgid "Encrypt Jabber password with Friendica password (recommended)"
+msgstr ""
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "Nowy obserwator"
+#: ../../addon.old/jappixmini/jappixmini.php:293
+#: ../../addon/jappixmini/jappixmini.php:293
+msgid "Friendica password"
+msgstr "Hasło Friendica"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "Brak wstępu."
+#: ../../addon.old/jappixmini/jappixmini.php:296
+#: ../../addon/jappixmini/jappixmini.php:296
+msgid "Approve subscription requests from Friendica contacts automatically"
+msgstr ""
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "Powiadomienia"
+#: ../../addon.old/jappixmini/jappixmini.php:299
+#: ../../addon/jappixmini/jappixmini.php:299
+msgid "Subscribe to Friendica contacts automatically"
+msgstr ""
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s polubił wpis %s"
+#: ../../addon.old/jappixmini/jappixmini.php:302
+#: ../../addon/jappixmini/jappixmini.php:302
+msgid "Purge internal list of jabber addresses of contacts"
+msgstr ""
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s przestał lubić post %s"
+#: ../../addon.old/jappixmini/jappixmini.php:308
+#: ../../addon/jappixmini/jappixmini.php:308
+msgid "Add contact"
+msgstr "Dodaj kontakt"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s jest teraz znajomym %s"
+#: ../../addon.old/js_upload/js_upload.php:43
+#: ../../addon/js_upload/js_upload.php:43
+msgid "Upload a file"
+msgstr "Załaduj plik"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s dodał nowy wpis"
+#: ../../addon.old/js_upload/js_upload.php:44
+#: ../../addon/js_upload/js_upload.php:44
+msgid "Drop files here to upload"
+msgstr "Wrzuć tu pliki by je załadować"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s skomentował wpis %s"
+#: ../../addon.old/js_upload/js_upload.php:45
+#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3970
+#: ../../include/conversation.php:1080 ../../mod/contacts.php:249
+#: ../../mod/settings.php:561 ../../mod/settings.php:587
+#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148
+#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
+#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "Anuluj"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "Nie ma więcej powiadomień sieciowych"
+#: ../../addon.old/js_upload/js_upload.php:46
+#: ../../addon/js_upload/js_upload.php:46
+msgid "Failed"
+msgstr "Niepowodzenie"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "Powiadomienia z sieci"
+#: ../../addon.old/js_upload/js_upload.php:297
+#: ../../addon/js_upload/js_upload.php:303
+msgid "No files were uploaded."
+msgstr "Nie załadowano żadnych plików."
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr "Nie ma więcej powiadomień systemowych."
+#: ../../addon.old/js_upload/js_upload.php:303
+#: ../../addon/js_upload/js_upload.php:309
+msgid "Uploaded file is empty"
+msgstr "Wysłany plik jest pusty"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr "Powiadomienia systemowe"
+#: ../../addon.old/js_upload/js_upload.php:315
+#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "obrazek przekracza limit rozmiaru"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "Nie ma więcej powiadomień osobistych"
+#: ../../addon.old/js_upload/js_upload.php:326
+#: ../../addon/js_upload/js_upload.php:332
+msgid "File has an invalid extension, it should be one of "
+msgstr "Pilk ma nieprawidłowe rozszerzenie, powinien być jednym z"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "Prywatne powiadomienia"
+#: ../../addon.old/js_upload/js_upload.php:337
+#: ../../addon/js_upload/js_upload.php:343
+msgid "Upload was cancelled, or server error encountered"
+msgstr "Przesyłanie zostało anulowane lub wystąpił błąd serwera."
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "Nie ma więcej powiadomień domu"
+#: ../../addon.old/libertree/libertree.php:36
+#: ../../addon/libertree/libertree.php:36
+msgid "Post to libertree"
+msgstr ""
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "Powiadomienia z instancji"
+#: ../../addon.old/libertree/libertree.php:67
+#: ../../addon/libertree/libertree.php:67
+msgid "libertree Post Settings"
+msgstr ""
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
+#: ../../addon.old/libertree/libertree.php:69
+#: ../../addon/libertree/libertree.php:69
+msgid "Enable Libertree Post Plugin"
+msgstr ""
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "Nie można znaleźć wybranego profilu."
+#: ../../addon.old/libertree/libertree.php:74
+#: ../../addon/libertree/libertree.php:74
+msgid "Libertree API token"
+msgstr ""
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "Kontakt zaktualizowany"
+#: ../../addon.old/libertree/libertree.php:79
+#: ../../addon/libertree/libertree.php:79
+msgid "Libertree site URL"
+msgstr ""
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "Kontakt został zablokowany"
+#: ../../addon.old/libertree/libertree.php:84
+#: ../../addon/libertree/libertree.php:84
+msgid "Post to Libertree by default"
+msgstr ""
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "Kontakt został odblokowany"
+#: ../../addon.old/libravatar/libravatar.php:14
+#: ../../addon/libravatar/libravatar.php:14
+msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
+msgstr ""
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "Kontakt jest ignorowany"
+#: ../../addon.old/libravatar/libravatar.php:83
+#: ../../addon/libravatar/libravatar.php:83
+#, php-format
+msgid "Your PHP version %s is lower than the required PHP >= 5.3."
+msgstr ""
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "Kontakt nie jest ignorowany"
+#: ../../addon.old/libravatar/libravatar.php:84
+#: ../../addon/libravatar/libravatar.php:84
+msgid "This addon is not functional on your server."
+msgstr ""
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "Kontakt został zarchiwizowany"
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon/libravatar/libravatar.php:93
+msgid ""
+"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
+"Libravatar addon will fall back to Gravatar if nothing was found at "
+"Libravatar."
+msgstr ""
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon/libravatar/libravatar.php:100
+msgid "Select default avatar image if none was found. See README"
 msgstr ""
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
+#: ../../addon.old/libravatar/libravatar.php:112
+#: ../../addon/libravatar/libravatar.php:112
+msgid "Libravatar settings updated."
 msgstr ""
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "Kontakt został usunięty."
+#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
+msgid "Post to LiveJournal"
+msgstr "Post do LiveJournal"
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "Jesteś już znajomym z %s"
+#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
+msgid "LiveJournal Post Settings"
+msgstr "Ustawienia postów do LiveJournal"
 
-#: ../../mod/contacts.php:305
-#, php-format
-msgid "You are sharing with %s"
-msgstr "Współdzielisz z %s"
+#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
+msgid "Enable LiveJournal Post Plugin"
+msgstr ""
 
-#: ../../mod/contacts.php:310
-#, php-format
-msgid "%s is sharing with you"
-msgstr "%s współdzieli z tobą"
+#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
+msgid "LiveJournal username"
+msgstr "Nazwa użytkownika do LiveJournal"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
+#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
+msgid "LiveJournal password"
+msgstr "Hasło do LiveJournal"
 
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr "Nigdy"
+#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
+msgid "Post to LiveJournal by default"
+msgstr "automatycznie publikuj na LiveJournal"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(Aktualizacja przebiegła pomyślnie)"
+#: ../../addon.old/mathjax/mathjax.php:37 ../../addon/mathjax/mathjax.php:37
+msgid ""
+"The MathJax addon renders mathematical formulae written using the LaTeX "
+"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
+"your wall,network tab and private mail."
+msgstr ""
+
+#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
+msgid "Use the MathJax renderer"
+msgstr ""
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(Aktualizacja nie powiodła się)"
+#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
+msgid "MathJax Base URL"
+msgstr ""
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "Osoby, które możesz znać"
+#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
+msgid ""
+"The URL for the javascript file that should be included to use MathJax. Can "
+"be either the MathJax CDN or another installation of MathJax."
+msgstr ""
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "Typ sieci: %s"
+#: ../../addon.old/membersince/membersince.php:18
+#: ../../addon/membersince/membersince.php:18
+msgid "Member since:"
+msgstr "Data dołączenia:"
 
-#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: ../../addon.old/morepokes/morepokes.php:19
+#: ../../addon/morepokes/morepokes.php:19
+msgid "bitchslap"
+msgstr ""
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "Zobacz wszystkie kontakty"
+#: ../../addon.old/morepokes/morepokes.php:19
+#: ../../addon/morepokes/morepokes.php:19
+msgid "bitchslapped"
+msgstr ""
 
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:737
-msgid "Unblock"
-msgstr "Odblokuj"
+#: ../../addon.old/morepokes/morepokes.php:20
+#: ../../addon/morepokes/morepokes.php:20
+msgid "shag"
+msgstr ""
 
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:736
-msgid "Block"
-msgstr "Zablokuj"
+#: ../../addon.old/morepokes/morepokes.php:20
+#: ../../addon/morepokes/morepokes.php:20
+msgid "shagged"
+msgstr ""
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
+#: ../../addon.old/morepokes/morepokes.php:21
+#: ../../addon/morepokes/morepokes.php:21
+msgid "do something obscenely biological to"
 msgstr ""
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "Odblokuj"
+#: ../../addon.old/morepokes/morepokes.php:21
+#: ../../addon/morepokes/morepokes.php:21
+msgid "did something obscenely biological to"
+msgstr ""
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
+#: ../../addon.old/morepokes/morepokes.php:22
+#: ../../addon/morepokes/morepokes.php:22
+msgid "point out the poke feature to"
 msgstr ""
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
+#: ../../addon.old/morepokes/morepokes.php:22
+#: ../../addon/morepokes/morepokes.php:22
+msgid "pointed out the poke feature to"
 msgstr ""
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "Archiwum"
+#: ../../addon.old/morepokes/morepokes.php:23
+#: ../../addon/morepokes/morepokes.php:23
+msgid "declare undying love for"
+msgstr ""
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
+#: ../../addon.old/morepokes/morepokes.php:23
+#: ../../addon/morepokes/morepokes.php:23
+msgid "declared undying love for"
 msgstr ""
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "Napraw"
+#: ../../addon.old/morepokes/morepokes.php:24
+#: ../../addon/morepokes/morepokes.php:24
+msgid "patent"
+msgstr ""
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "Zaawansowane ustawienia kontaktów"
+#: ../../addon.old/morepokes/morepokes.php:24
+#: ../../addon/morepokes/morepokes.php:24
+msgid "patented"
+msgstr ""
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
+#: ../../addon.old/morepokes/morepokes.php:25
+#: ../../addon/morepokes/morepokes.php:25
+msgid "stroke beard"
 msgstr ""
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "Edytor kontaktów"
+#: ../../addon.old/morepokes/morepokes.php:25
+#: ../../addon/morepokes/morepokes.php:25
+msgid "stroked their beard at"
+msgstr ""
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "Widoczność profilu"
+#: ../../addon.old/morepokes/morepokes.php:26
+#: ../../addon/morepokes/morepokes.php:26
+msgid ""
+"bemoan the declining standards of modern secondary and tertiary education to"
+msgstr ""
 
-#: ../../mod/contacts.php:388
-#, php-format
+#: ../../addon.old/morepokes/morepokes.php:26
+#: ../../addon/morepokes/morepokes.php:26
 msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
+"bemoans the declining standards of modern secondary and tertiary education "
+"to"
+msgstr ""
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "Informacja o kontakcie / Notka"
+#: ../../addon.old/morepokes/morepokes.php:27
+#: ../../addon/morepokes/morepokes.php:27
+msgid "hug"
+msgstr "przytul"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "Edytuj notatki kontaktu"
+#: ../../addon.old/morepokes/morepokes.php:27
+#: ../../addon/morepokes/morepokes.php:27
+msgid "hugged"
+msgstr "przytulony"
 
-#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Obejrzyj %s's profil [%s]"
+#: ../../addon.old/morepokes/morepokes.php:28
+#: ../../addon/morepokes/morepokes.php:28
+msgid "kiss"
+msgstr "pocałuj"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "Zablokuj/odblokuj kontakt"
+#: ../../addon.old/morepokes/morepokes.php:28
+#: ../../addon/morepokes/morepokes.php:28
+msgid "kissed"
+msgstr "pocałowany"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "Ignoruj kontakt"
+#: ../../addon.old/morepokes/morepokes.php:29
+#: ../../addon/morepokes/morepokes.php:29
+msgid "raise eyebrows at"
+msgstr ""
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "Napraw ustawienia adresu"
+#: ../../addon.old/morepokes/morepokes.php:29
+#: ../../addon/morepokes/morepokes.php:29
+msgid "raised their eyebrows at"
+msgstr ""
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "Zobacz rozmowę"
+#: ../../addon.old/morepokes/morepokes.php:30
+#: ../../addon/morepokes/morepokes.php:30
+msgid "insult"
+msgstr ""
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "Usuń kontakt"
+#: ../../addon.old/morepokes/morepokes.php:30
+#: ../../addon/morepokes/morepokes.php:30
+msgid "insulted"
+msgstr ""
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "Ostatnia aktualizacja:"
+#: ../../addon.old/morepokes/morepokes.php:31
+#: ../../addon/morepokes/morepokes.php:31
+msgid "praise"
+msgstr ""
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "Zaktualizuj publiczne posty"
+#: ../../addon.old/morepokes/morepokes.php:31
+#: ../../addon/morepokes/morepokes.php:31
+msgid "praised"
+msgstr ""
 
-#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
-msgid "Update now"
-msgstr "Aktualizuj teraz"
+#: ../../addon.old/morepokes/morepokes.php:32
+#: ../../addon/morepokes/morepokes.php:32
+msgid "be dubious of"
+msgstr ""
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "Obecnie zablokowany"
+#: ../../addon.old/morepokes/morepokes.php:32
+#: ../../addon/morepokes/morepokes.php:32
+msgid "was dubious of"
+msgstr ""
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "Obecnie zignorowany"
+#: ../../addon.old/morepokes/morepokes.php:33
+#: ../../addon/morepokes/morepokes.php:33
+msgid "eat"
+msgstr ""
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "Obecnie zarchiwizowany"
+#: ../../addon.old/morepokes/morepokes.php:33
+#: ../../addon/morepokes/morepokes.php:33
+msgid "ate"
+msgstr ""
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
+#: ../../addon.old/morepokes/morepokes.php:34
+#: ../../addon/morepokes/morepokes.php:34
+msgid "giggle and fawn at"
+msgstr ""
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "Sugestie"
+#: ../../addon.old/morepokes/morepokes.php:34
+#: ../../addon/morepokes/morepokes.php:34
+msgid "giggled and fawned at"
+msgstr ""
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "Sugerowani znajomi"
+#: ../../addon.old/morepokes/morepokes.php:35
+#: ../../addon/morepokes/morepokes.php:35
+msgid "doubt"
+msgstr ""
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "Wszystkie kontakty"
+#: ../../addon.old/morepokes/morepokes.php:35
+#: ../../addon/morepokes/morepokes.php:35
+msgid "doubted"
+msgstr ""
+
+#: ../../addon.old/morepokes/morepokes.php:36
+#: ../../addon/morepokes/morepokes.php:36
+msgid "glare"
+msgstr ""
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "Pokaż wszystkie kontakty"
+#: ../../addon.old/morepokes/morepokes.php:36
+#: ../../addon/morepokes/morepokes.php:36
+msgid "glared at"
+msgstr ""
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "Odblokowany"
+#: ../../addon.old/notimeline/notimeline.php:32
+#: ../../addon/notimeline/notimeline.php:32
+msgid "No Timeline settings updated."
+msgstr ""
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "Pokaż tylko odblokowane kontakty"
+#: ../../addon.old/notimeline/notimeline.php:56
+#: ../../addon/notimeline/notimeline.php:56
+msgid "No Timeline Settings"
+msgstr "Brak ustawień Osi czasu"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "Zablokowany"
+#: ../../addon.old/notimeline/notimeline.php:58
+#: ../../addon/notimeline/notimeline.php:58
+msgid "Disable Archive selector on profile wall"
+msgstr ""
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "Pokaż tylko zablokowane kontakty"
+#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
+msgid "Not Safe For Work (General Purpose Content Filter) settings"
+msgstr ""
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "Zignorowany"
+#: ../../addon.old/nsfw/nsfw.php:80 ../../addon/nsfw/nsfw.php:80
+msgid ""
+"This plugin looks in posts for the words/text you specify below, and "
+"collapses any content containing those keywords so it is not displayed at "
+"inappropriate times, such as sexual innuendo that may be improper in a work "
+"setting. It is polite and recommended to tag any content containing nudity "
+"with #NSFW.  This filter can also match any other word/text you specify, and"
+" can thereby be used as a general purpose content filter."
+msgstr ""
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "Pokaż tylko ignorowane kontakty"
+#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
+msgid "Enable Content filter"
+msgstr ""
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
+#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
+msgid "Comma separated list of keywords to hide"
 msgstr ""
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "Pokaż tylko zarchiwizowane kontakty"
+#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
+msgid "Use /expression/ to provide regular expressions"
+msgstr ""
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "Ukryty"
+#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
+msgid "NSFW Settings saved."
+msgstr "NSFW Ustawienia zapisane."
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "Pokaż tylko ukryte kontakty"
+#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
+#, php-format
+msgid "%s - Click to open/close"
+msgstr "%s - kliknij by otworzyć/zamknąć"
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "Wzajemna przyjaźń"
+#: ../../addon.old/numfriends/numfriends.php:46
+#: ../../addon/numfriends/numfriends.php:46
+msgid "Numfriends settings updated."
+msgstr ""
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "jest twoim fanem"
+#: ../../addon.old/numfriends/numfriends.php:77
+#: ../../addon/numfriends/numfriends.php:77
+msgid "Numfriends Settings"
+msgstr ""
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "jesteś fanem"
+#: ../../addon.old/oembed.old/oembed.php:30
+msgid "OEmbed settings updated"
+msgstr ""
 
-#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "Edytuj kontakt"
+#: ../../addon.old/oembed.old/oembed.php:43
+msgid "Use OEmbed for YouTube videos"
+msgstr ""
 
-#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "Kontakty"
+#: ../../addon.old/oembed.old/oembed.php:71
+msgid "URL to embed:"
+msgstr "URL do osadzenia"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "Wyszukaj w kontaktach"
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
+#: ../../addon/openstreetmap/openstreetmap.php:95
+msgid "Tile Server URL"
+msgstr "Nazwa URL Serwera"
 
-#: ../../mod/contacts.php:612 ../../mod/directory.php:59
-#: ../../addon/forumdirectory/forumdirectory.php:81
-msgid "Finding: "
-msgstr "Znalezione:"
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
+#: ../../addon/openstreetmap/openstreetmap.php:95
+msgid ""
+"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
+"target=\"_blank\">public tile servers</a>"
+msgstr ""
 
-#: ../../mod/contacts.php:613 ../../mod/directory.php:61
-#: ../../addon/forumdirectory/forumdirectory.php:83
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "Znajdź"
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
+#: ../../addon/openstreetmap/openstreetmap.php:96
+msgid "Default zoom"
+msgstr "Domyślne przybliżenie"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "Nie znaleziono ważnego konta."
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
+#: ../../addon/openstreetmap/openstreetmap.php:96
+msgid "The default zoom level. (1:world, 18:highest)"
+msgstr ""
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email."
+#: ../../addon.old/page/page.php:77 ../../addon.old/page/page.php:111
+#: ../../addon.old/showmore/showmore.php:119 ../../addon/page/page.php:77
+#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
+#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
+#: ../../object/Item.php:355 ../../boot.php:652
+msgid "show more"
+msgstr "Pokaż więcej"
 
-#: ../../mod/lostpass.php:44
-#, php-format
-msgid "Password reset requested at %s"
-msgstr "Prośba o reset hasła na %s"
+#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
+msgid "Page settings updated."
+msgstr "Zaktualizowano ustawienia strony."
 
-#: ../../mod/lostpass.php:66
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."
+#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
+msgid "Page Settings"
+msgstr "Ustawienia strony"
 
-#: ../../mod/lostpass.php:84 ../../boot.php:1051
-msgid "Password Reset"
-msgstr "Zresetuj hasło"
+#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
+msgid "How many forums to display on sidebar without paging"
+msgstr ""
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "Twoje hasło zostało zresetowane na twoje życzenie."
+#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
+msgid "Randomise Page/Forum list"
+msgstr ""
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "Twoje nowe hasło to"
+#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
+msgid "Show pages/forums on profile page"
+msgstr ""
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy"
+#: ../../addon.old/pageheader/pageheader.php:50
+#: ../../addon/pageheader/pageheader.php:50
+msgid "\"pageheader\" Settings"
+msgstr ""
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "Kliknij tutaj aby zalogować"
+#: ../../addon.old/pageheader/pageheader.php:68
+#: ../../addon/pageheader/pageheader.php:68
+msgid "pageheader Settings saved."
+msgstr ""
 
-#: ../../mod/lostpass.php:89
+#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu."
+"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
+"analytics tool."
+msgstr ""
 
-#: ../../mod/lostpass.php:107
+#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
 #, php-format
-msgid "Your password has been changed at %s"
+msgid ""
+"If you do not want that your visits are logged this way you <a href='%s'>can"
+" set a cookie to prevent Piwik from tracking further visits of the site</a> "
+"(opt-out)."
 msgstr ""
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "Zapomniałeś hasła?"
+#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
+msgid "Piwik Base URL"
+msgstr "Piwik podstawowy adres URL"
 
-#: ../../mod/lostpass.php:123
+#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
 msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."
+"Absolute path to your Piwik installation. (without protocol (http/s), with "
+"trailing slash)"
+msgstr ""
 
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "Pseudonim lub Email:"
+#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
+msgid "Site ID"
+msgstr "ID strony"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "Zresetuj"
+#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
+msgid "Show opt-out cookie link?"
+msgstr ""
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
+#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
+msgid "Asynchronous tracking"
 msgstr ""
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "Brakuje ważnych danych!"
+#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
+msgid "Planets Settings"
+msgstr "Ustawienia Planets"
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:586
-msgid "Update"
-msgstr "Zaktualizuj"
+#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
+msgid "Enable Planets Plugin"
+msgstr ""
 
-#: ../../mod/settings.php:227
-msgid "Failed to connect with email account using the settings provided."
-msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się."
+#: ../../addon.old/posterous/posterous.php:37
+#: ../../addon/posterous/posterous.php:37
+msgid "Post to Posterous"
+msgstr ""
 
-#: ../../mod/settings.php:232
-msgid "Email settings updated."
-msgstr "Zaktualizowano ustawienia email."
+#: ../../addon.old/posterous/posterous.php:70
+#: ../../addon/posterous/posterous.php:70
+msgid "Posterous Post Settings"
+msgstr ""
 
-#: ../../mod/settings.php:247
-msgid "Features updated"
+#: ../../addon.old/posterous/posterous.php:72
+#: ../../addon/posterous/posterous.php:72
+msgid "Enable Posterous Post Plugin"
+msgstr ""
+
+#: ../../addon.old/posterous/posterous.php:77
+#: ../../addon/posterous/posterous.php:77
+msgid "Posterous login"
+msgstr ""
+
+#: ../../addon.old/posterous/posterous.php:82
+#: ../../addon/posterous/posterous.php:82
+msgid "Posterous password"
+msgstr ""
+
+#: ../../addon.old/posterous/posterous.php:87
+#: ../../addon/posterous/posterous.php:87
+msgid "Posterous site ID"
 msgstr ""
 
-#: ../../mod/settings.php:307
-msgid "Passwords do not match. Password unchanged."
-msgstr "Hasło nie pasuje. Hasło nie zmienione."
+#: ../../addon.old/posterous/posterous.php:92
+#: ../../addon/posterous/posterous.php:92
+msgid "Posterous API token"
+msgstr ""
 
-#: ../../mod/settings.php:312
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "Brak hasła niedozwolony. Hasło nie zmienione."
+#: ../../addon.old/posterous/posterous.php:97
+#: ../../addon/posterous/posterous.php:97
+msgid "Post to Posterous by default"
+msgstr ""
 
-#: ../../mod/settings.php:323
-msgid "Password changed."
-msgstr "Hasło zostało zmianione."
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
+msgid "Lifetime of the cache (in hours)"
+msgstr ""
 
-#: ../../mod/settings.php:325
-msgid "Password update failed. Please try again."
-msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
+msgid "Cache Statistics"
+msgstr ""
 
-#: ../../mod/settings.php:390
-msgid " Please use a shorter name."
-msgstr "Proszę użyć krótszej nazwy."
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
+msgid "Number of items"
+msgstr "Numery elementów"
 
-#: ../../mod/settings.php:392
-msgid " Name too short."
-msgstr "Za krótka nazwa."
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
+msgid "Size of the cache"
+msgstr ""
 
-#: ../../mod/settings.php:398
-msgid " Not valid email."
-msgstr "Zły email."
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
+msgid "Delete the whole cache"
+msgstr ""
 
-#: ../../mod/settings.php:400
-msgid " Cannot change to that email."
-msgstr "Nie mogę zmienić na ten email."
+#: ../../addon.old/public_server/public_server.php:126
+#: ../../addon.old/testdrive/testdrive.php:94
+#: ../../addon/public_server/public_server.php:126
+#: ../../addon/testdrive/testdrive.php:94
+#, php-format
+msgid "Your account on %s will expire in a few days."
+msgstr ""
 
-#: ../../mod/settings.php:454
-msgid "Private forum has no privacy permissions. Using default privacy group."
+#: ../../addon.old/public_server/public_server.php:127
+#: ../../addon/public_server/public_server.php:127
+msgid "Your Friendica account is about to expire."
 msgstr ""
 
-#: ../../mod/settings.php:458
-msgid "Private forum has no privacy permissions and no default privacy group."
+#: ../../addon.old/public_server/public_server.php:128
+#: ../../addon/public_server/public_server.php:128
+#, php-format
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
 msgstr ""
 
-#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:497
-#: ../../addon/fbpost/fbpost.php:155
-#: ../../addon/remote_permissions/remote_permissions.php:205
-#: ../../addon/impressum/impressum.php:78
-#: ../../addon/openstreetmap/openstreetmap.php:104
-#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
-#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:550
-#: ../../addon.old/facebook/facebook.php:495
-#: ../../addon.old/fbpost/fbpost.php:144
-#: ../../addon.old/impressum/impressum.php:78
-#: ../../addon.old/openstreetmap/openstreetmap.php:80
-#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
-#: ../../addon.old/twitter/twitter.php:389
-msgid "Settings updated."
-msgstr "Zaktualizowano ustawienia."
+#: ../../addon.old/qcomment/qcomment.php:51
+#: ../../addon/qcomment/qcomment.php:51
+msgid ":-)"
+msgstr ":-)"
 
-#: ../../mod/settings.php:559 ../../mod/settings.php:585
-#: ../../mod/settings.php:621
-msgid "Add application"
-msgstr "Dodaj aplikacje"
+#: ../../addon.old/qcomment/qcomment.php:51
+#: ../../addon/qcomment/qcomment.php:51
+msgid ":-("
+msgstr ":-("
 
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
-#: ../../addon/statusnet/statusnet.php:747
-#: ../../addon.old/statusnet/statusnet.php:570
-msgid "Consumer Key"
-msgstr "Klucz konsumenta"
+#: ../../addon.old/qcomment/qcomment.php:51
+#: ../../addon/qcomment/qcomment.php:51
+msgid "lol"
+msgstr "lol"
 
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
-#: ../../addon/statusnet/statusnet.php:746
-#: ../../addon.old/statusnet/statusnet.php:569
-msgid "Consumer Secret"
-msgstr "Sekret konsumenta"
+#: ../../addon.old/qcomment/qcomment.php:54
+#: ../../addon/qcomment/qcomment.php:54
+msgid "Quick Comment Settings"
+msgstr "Ustawienia szybkiego komentowania"
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Redirect"
-msgstr "Przekierowanie"
+#: ../../addon.old/qcomment/qcomment.php:56
+#: ../../addon/qcomment/qcomment.php:56
+msgid ""
+"Quick comments are found near comment boxes, sometimes hidden. Click them to"
+" provide simple replies."
+msgstr ""
 
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
-msgid "Icon url"
-msgstr "Adres ikony"
+#: ../../addon.old/qcomment/qcomment.php:57
+#: ../../addon/qcomment/qcomment.php:57
+msgid "Enter quick comments, one per line"
+msgstr ""
 
-#: ../../mod/settings.php:577
-msgid "You can't edit this application."
-msgstr "Nie możesz edytować tej aplikacji."
+#: ../../addon.old/qcomment/qcomment.php:75
+#: ../../addon/qcomment/qcomment.php:75
+msgid "Quick Comment settings saved."
+msgstr ""
 
-#: ../../mod/settings.php:620
-msgid "Connected Apps"
-msgstr "Powiązane aplikacje"
+#: ../../addon.old/randplace/randplace.php:169
+#: ../../addon/randplace/randplace.php:169
+msgid "Randplace Settings"
+msgstr "Ustawienia Randplace"
 
-#: ../../mod/settings.php:624
-msgid "Client key starts with"
-msgstr "Klucz klienta zaczyna się od"
+#: ../../addon.old/randplace/randplace.php:171
+#: ../../addon/randplace/randplace.php:171
+msgid "Enable Randplace Plugin"
+msgstr "Włącz Randplace Plugin"
 
-#: ../../mod/settings.php:625
-msgid "No name"
-msgstr "Bez nazwy"
+#: ../../addon.old/showmore/showmore.php:38
+#: ../../addon/showmore/showmore.php:38
+msgid "\"Show more\" Settings"
+msgstr "\"Pokaż więcej\" ustawień"
 
-#: ../../mod/settings.php:626
-msgid "Remove authorization"
-msgstr "Odwołaj upoważnienie"
+#: ../../addon.old/showmore/showmore.php:41
+#: ../../addon/showmore/showmore.php:41
+msgid "Enable Show More"
+msgstr ""
 
-#: ../../mod/settings.php:638
-msgid "No Plugin settings configured"
-msgstr "Ustawienia wtyczki nieskonfigurowane"
+#: ../../addon.old/showmore/showmore.php:44
+#: ../../addon/showmore/showmore.php:44
+msgid "Cutting posts after how much characters"
+msgstr ""
 
-#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
-#: ../../addon.old/widgets/widgets.php:123
-msgid "Plugin Settings"
-msgstr "Ustawienia wtyczki"
+#: ../../addon.old/showmore/showmore.php:65
+#: ../../addon/showmore/showmore.php:65
+msgid "Show More Settings saved."
+msgstr ""
 
-#: ../../mod/settings.php:660
-msgid "Off"
-msgstr "Wyłącz"
+#: ../../addon.old/snautofollow/snautofollow.php:32
+#: ../../addon/snautofollow/snautofollow.php:32
+msgid "StatusNet AutoFollow settings updated."
+msgstr ""
 
-#: ../../mod/settings.php:660
-msgid "On"
-msgstr "Włącz"
+#: ../../addon.old/snautofollow/snautofollow.php:56
+#: ../../addon/snautofollow/snautofollow.php:56
+msgid "StatusNet AutoFollow Settings"
+msgstr ""
 
-#: ../../mod/settings.php:668
-msgid "Additional Features"
+#: ../../addon.old/snautofollow/snautofollow.php:58
+#: ../../addon/snautofollow/snautofollow.php:58
+msgid "Automatically follow any StatusNet followers/mentioners"
 msgstr ""
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-#, php-format
-msgid "Built-in support for %s connectivity is %s"
+#: ../../addon.old/startpage/startpage.php:83
+#: ../../addon/startpage/startpage.php:83
+msgid "Startpage Settings"
+msgstr "Ustawienia strony startowej"
+
+#: ../../addon.old/startpage/startpage.php:85
+#: ../../addon/startpage/startpage.php:85
+msgid "Home page to load after login  - leave blank for profile wall"
 msgstr ""
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "włączony"
+#: ../../addon.old/startpage/startpage.php:88
+#: ../../addon/startpage/startpage.php:88
+msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
+msgstr ""
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "wyłączony"
+#: ../../addon.old/statusnet/statusnet.php:134
+#: ../../addon/statusnet/statusnet.php:138
+msgid "Post to StatusNet"
+msgstr "Wyślij do sieci StatusNet"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
+#: ../../addon.old/statusnet/statusnet.php:176
+#: ../../addon/statusnet/statusnet.php:180
+msgid ""
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
+msgstr "Proszę się skontaktować z administratorem strony. <br />  API URL nie jest poprawne"
 
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"
+#: ../../addon.old/statusnet/statusnet.php:204
+#: ../../addon/statusnet/statusnet.php:208
+msgid "We could not contact the StatusNet API with the Path you entered."
+msgstr ""
 
-#: ../../mod/settings.php:721
-msgid "Connector Settings"
-msgstr "Ustawienia konektora"
+#: ../../addon.old/statusnet/statusnet.php:232
+#: ../../addon/statusnet/statusnet.php:238
+msgid "StatusNet settings updated."
+msgstr "Ustawienia StatusNet zaktualizowane"
+
+#: ../../addon.old/statusnet/statusnet.php:257
+#: ../../addon/statusnet/statusnet.php:269
+msgid "StatusNet Posting Settings"
+msgstr "Ustawienia StatusNet"
+
+#: ../../addon.old/statusnet/statusnet.php:271
+#: ../../addon/statusnet/statusnet.php:283
+msgid "Globally Available StatusNet OAuthKeys"
+msgstr ""
+
+#: ../../addon.old/statusnet/statusnet.php:272
+#: ../../addon/statusnet/statusnet.php:284
+msgid ""
+"There are preconfigured OAuth key pairs for some StatusNet servers "
+"available. If you are useing one of them, please use these credentials. If "
+"not feel free to connect to any other StatusNet instance (see below)."
+msgstr ""
 
-#: ../../mod/settings.php:726
-msgid "Email/Mailbox Setup"
-msgstr "Ustawienia  emaila/skrzynki mailowej"
+#: ../../addon.old/statusnet/statusnet.php:280
+#: ../../addon/statusnet/statusnet.php:292
+msgid "Provide your own OAuth Credentials"
+msgstr ""
 
-#: ../../mod/settings.php:727
+#: ../../addon.old/statusnet/statusnet.php:281
+#: ../../addon/statusnet/statusnet.php:293
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."
+"No consumer key pair for StatusNet found. Register your Friendica Account as"
+" an desktop client on your StatusNet account, copy the consumer key pair "
+"here and enter the API base root.<br />Before you register your own OAuth "
+"key pair ask the administrator if there is already a key pair for this "
+"Friendica installation at your favorited StatusNet installation."
+msgstr ""
 
-#: ../../mod/settings.php:728
-msgid "Last successful email check:"
-msgstr "Ostatni sprawdzony e-mail:"
+#: ../../addon.old/statusnet/statusnet.php:283
+#: ../../addon/statusnet/statusnet.php:295
+msgid "OAuth Consumer Key"
+msgstr ""
 
-#: ../../mod/settings.php:730
-msgid "IMAP server name:"
-msgstr "Nazwa serwera IMAP:"
+#: ../../addon.old/statusnet/statusnet.php:286
+#: ../../addon/statusnet/statusnet.php:298
+msgid "OAuth Consumer Secret"
+msgstr ""
 
-#: ../../mod/settings.php:731
-msgid "IMAP port:"
-msgstr "Port IMAP:"
+#: ../../addon.old/statusnet/statusnet.php:289
+#: ../../addon/statusnet/statusnet.php:301
+msgid "Base API Path (remember the trailing /)"
+msgstr ""
 
-#: ../../mod/settings.php:732
-msgid "Security:"
-msgstr "Ochrona:"
+#: ../../addon.old/statusnet/statusnet.php:310
+#: ../../addon/statusnet/statusnet.php:322
+msgid ""
+"To connect to your StatusNet account click the button below to get a "
+"security code from StatusNet which you have to copy into the input box below"
+" and submit the form. Only your <strong>public</strong> posts will be posted"
+" to StatusNet."
+msgstr "Aby uzyskać połączenie z kontem w serwisie StatusNet naciśnij przycisk poniżej aby otrzymać kod bezpieczeństwa od StatusNet, który musisz skopiować do pola poniżej i wysłać formularz. Tylko twoje <strong>publiczne</strong> posty będą publikowane na StatusNet."
 
-#: ../../mod/settings.php:732 ../../mod/settings.php:737
-#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
-#: ../../addon/dav/common/wdcal_edit.inc.php:191
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
-msgid "None"
-msgstr "Brak"
+#: ../../addon.old/statusnet/statusnet.php:311
+#: ../../addon/statusnet/statusnet.php:323
+msgid "Log in with StatusNet"
+msgstr "Zaloguj się przez StatusNet"
 
-#: ../../mod/settings.php:733
-msgid "Email login name:"
-msgstr "Login emaila:"
+#: ../../addon.old/statusnet/statusnet.php:313
+#: ../../addon/statusnet/statusnet.php:325
+msgid "Copy the security code from StatusNet here"
+msgstr "Tutaj skopiuj kod bezpieczeństwa z StatusNet"
 
-#: ../../mod/settings.php:734
-msgid "Email password:"
-msgstr "Hasło emaila:"
+#: ../../addon.old/statusnet/statusnet.php:319
+#: ../../addon/statusnet/statusnet.php:331
+msgid "Cancel Connection Process"
+msgstr "Anuluj proces łączenia"
 
-#: ../../mod/settings.php:735
-msgid "Reply-to address:"
-msgstr "Odpowiedz na adres:"
+#: ../../addon.old/statusnet/statusnet.php:321
+#: ../../addon/statusnet/statusnet.php:333
+msgid "Current StatusNet API is"
+msgstr "Aktualnym StatusNet API jest"
 
-#: ../../mod/settings.php:736
-msgid "Send public posts to all email contacts:"
-msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
+#: ../../addon.old/statusnet/statusnet.php:322
+#: ../../addon/statusnet/statusnet.php:334
+msgid "Cancel StatusNet Connection"
+msgstr "Anuluj połączenie StatusNet"
 
-#: ../../mod/settings.php:737
-msgid "Action after import:"
-msgstr "Akcja po zaimportowaniu:"
+#: ../../addon.old/statusnet/statusnet.php:333
+#: ../../addon.old/twitter/twitter.php:189
+#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
+msgid "Currently connected to: "
+msgstr "Obecnie połączone z:"
 
-#: ../../mod/settings.php:737
-msgid "Mark as seen"
-msgstr "Oznacz jako przeczytane"
+#: ../../addon.old/statusnet/statusnet.php:334
+#: ../../addon/statusnet/statusnet.php:346
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated StatusNet account. You can choose to do so by default (here) or "
+"for every posting separately in the posting options when writing the entry."
+msgstr ""
 
-#: ../../mod/settings.php:737
-msgid "Move to folder"
-msgstr "Przenieś do folderu"
+#: ../../addon.old/statusnet/statusnet.php:336
+#: ../../addon/statusnet/statusnet.php:348
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) the link potentially included in public "
+"postings relayed to StatusNet will lead the visitor to a blank page "
+"informing the visitor that the access to your profile has been restricted."
+msgstr ""
 
-#: ../../mod/settings.php:738
-msgid "Move to folder:"
-msgstr "Przenieś do folderu:"
+#: ../../addon.old/statusnet/statusnet.php:339
+#: ../../addon/statusnet/statusnet.php:351
+msgid "Allow posting to StatusNet"
+msgstr "Pozwól zamieszczać posty na StatusNet"
 
-#: ../../mod/settings.php:769 ../../mod/admin.php:420
-msgid "No special theme for mobile devices"
+#: ../../addon.old/statusnet/statusnet.php:342
+#: ../../addon/statusnet/statusnet.php:354
+msgid "Send public postings to StatusNet by default"
 msgstr ""
 
-#: ../../mod/settings.php:809
-msgid "Display Settings"
-msgstr "Wyświetl ustawienia"
-
-#: ../../mod/settings.php:815 ../../mod/settings.php:826
-msgid "Display Theme:"
-msgstr "Wyświetl motyw:"
+#: ../../addon.old/statusnet/statusnet.php:345
+#: ../../addon/statusnet/statusnet.php:366
+msgid "Send linked #-tags and @-names to StatusNet"
+msgstr ""
 
-#: ../../mod/settings.php:816
-msgid "Mobile Theme:"
+#: ../../addon.old/statusnet/statusnet.php:350
+#: ../../addon.old/twitter/twitter.php:206
+#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
+msgid "Clear OAuth configuration"
 msgstr ""
 
-#: ../../mod/settings.php:817
-msgid "Update browser every xx seconds"
-msgstr "Odświeżaj stronę co xx sekund"
+#: ../../addon.old/statusnet/statusnet.php:567
+#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484
+msgid "Site name"
+msgstr "Nazwa strony"
 
-#: ../../mod/settings.php:817
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "Dolny limit 10 sekund, brak górnego limitu"
+#: ../../addon.old/statusnet/statusnet.php:568
+#: ../../addon/statusnet/statusnet.php:745
+msgid "API URL"
+msgstr "Adres API"
 
-#: ../../mod/settings.php:818
-msgid "Number of items to display per page:"
-msgstr ""
+#: ../../addon.old/statusnet/statusnet.php:569
+#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
+#: ../../mod/settings.php:590
+msgid "Consumer Secret"
+msgstr "Sekret konsumenta"
 
-#: ../../mod/settings.php:818
-msgid "Maximum of 100 items"
-msgstr "Maksymalnie 100 elementów"
+#: ../../addon.old/statusnet/statusnet.php:570
+#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
+#: ../../mod/settings.php:589
+msgid "Consumer Key"
+msgstr "Klucz konsumenta"
 
-#: ../../mod/settings.php:819
-msgid "Don't show emoticons"
-msgstr "Nie pokazuj emotikonek"
+#: ../../addon.old/testdrive/testdrive.php:95
+#: ../../addon/testdrive/testdrive.php:95
+msgid "Your Friendica test account is about to expire."
+msgstr ""
 
-#: ../../mod/settings.php:895
-msgid "Normal Account Page"
+#: ../../addon.old/testdrive/testdrive.php:96
+#: ../../addon/testdrive/testdrive.php:96
+#, php-format
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
 msgstr ""
 
-#: ../../mod/settings.php:896
-msgid "This account is a normal personal profile"
-msgstr "To konto jest normalnym osobistym profilem"
+#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
+msgid "Three Dimensional Tic-Tac-Toe"
+msgstr "Trójwymiarowy Kółko i krzyżyk"
 
-#: ../../mod/settings.php:899
-msgid "Soapbox Page"
-msgstr ""
+#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
+msgid "3D Tic-Tac-Toe"
+msgstr "Kółko i krzyżyk 3D"
 
-#: ../../mod/settings.php:900
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"
+#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
+msgid "New game"
+msgstr "Nowa gra"
 
-#: ../../mod/settings.php:903
-msgid "Community Forum/Celebrity Account"
-msgstr ""
+#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
+msgid "New game with handicap"
+msgstr "Nowa gra z utrudnieniem"
 
-#: ../../mod/settings.php:904
+#: ../../addon.old/tictac/tictac.php:60 ../../addon/tictac/tictac.php:60
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu."
-
-#: ../../mod/settings.php:907
-msgid "Automatic Friend Page"
-msgstr ""
+"Three dimensional tic-tac-toe is just like the traditional game except that "
+"it is played on multiple levels simultaneously. "
+msgstr "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie."
 
-#: ../../mod/settings.php:908
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"
+#: ../../addon.old/tictac/tictac.php:61 ../../addon/tictac/tictac.php:61
+msgid ""
+"In this case there are three levels. You win by getting three in a row on "
+"any level, as well as up, down, and diagonally across the different levels."
+msgstr "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów."
 
-#: ../../mod/settings.php:911
-msgid "Private Forum [Experimental]"
+#: ../../addon.old/tictac/tictac.php:63 ../../addon/tictac/tictac.php:63
+msgid ""
+"The handicap game disables the center position on the middle level because "
+"the player claiming this square often has an unfair advantage."
 msgstr ""
 
-#: ../../mod/settings.php:912
-msgid "Private forum - approved members only"
-msgstr ""
+#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
+msgid "You go first..."
+msgstr "Ty pierwszy..."
 
-#: ../../mod/settings.php:924
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
+msgid "I'm going first this time..."
+msgstr "Zaczynam..."
 
-#: ../../mod/settings.php:924
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "Przeznacz to OpenID do logowania się na to konto."
+#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
+msgid "You won!"
+msgstr "Wygrałeś!"
 
-#: ../../mod/settings.php:934
-msgid "Publish your default profile in your local site directory?"
-msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?"
+#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
+#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+msgid "\"Cat\" game!"
+msgstr "Gra \"Kot\"!"
 
-#: ../../mod/settings.php:940
-msgid "Publish your default profile in the global social directory?"
-msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"
+#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
+msgid "I won!"
+msgstr "Wygrałem!"
 
-#: ../../mod/settings.php:948
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?"
+#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
+msgid "Post to Tumblr"
+msgstr "Opublikuj na Tumblrze"
 
-#: ../../mod/settings.php:952
-msgid "Hide your profile details from unknown viewers?"
-msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?"
+#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
+msgid "Tumblr Post Settings"
+msgstr "Ustawienia postu Tumblr"
 
-#: ../../mod/settings.php:957
-msgid "Allow friends to post to your profile page?"
-msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych"
+#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
+msgid "Enable Tumblr Post Plugin"
+msgstr "Zezwól na wtyczkę postu Tumblr"
 
-#: ../../mod/settings.php:963
-msgid "Allow friends to tag your posts?"
-msgstr "Zezwól na oznaczanie twoich postów przez znajomych"
+#: ../../addon.old/tumblr/tumblr.php:74
+msgid "Tumblr login"
+msgstr "Login Tumblr"
 
-#: ../../mod/settings.php:969
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr ""
+#: ../../addon.old/tumblr/tumblr.php:79
+msgid "Tumblr password"
+msgstr "Hasło do twojego Tumblra"
 
-#: ../../mod/settings.php:975
-msgid "Permit unknown people to send you private mail?"
-msgstr ""
+#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
+msgid "Post to Tumblr by default"
+msgstr "Post do Tumblr przez standard"
 
-#: ../../mod/settings.php:983
-msgid "Profile is <strong>not published</strong>."
-msgstr "Profil <strong>nie jest opublikowany</strong>"
+#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
+msgid "Post to Twitter"
+msgstr "Post na Twitter"
 
-#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "lub"
+#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
+msgid "Twitter settings updated."
+msgstr "Zaktualizowano ustawienia Twittera."
 
-#: ../../mod/settings.php:991
-msgid "Your Identity Address is"
-msgstr "Twój adres identyfikacyjny to"
+#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
+msgid "Twitter Posting Settings"
+msgstr "Ustawienia wpisów z Twittera"
 
-#: ../../mod/settings.php:1002
-msgid "Automatically expire posts after this many days:"
+#: ../../addon.old/twitter/twitter.php:153 ../../addon/twitter/twitter.php:164
+msgid ""
+"No consumer key pair for Twitter found. Please contact your site "
+"administrator."
+msgstr "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony."
+
+#: ../../addon.old/twitter/twitter.php:172 ../../addon/twitter/twitter.php:183
+msgid ""
+"At this Friendica instance the Twitter plugin was enabled but you have not "
+"yet connected your account to your Twitter account. To do so click the "
+"button below to get a PIN from Twitter which you have to copy into the input"
+" box below and submit the form. Only your <strong>public</strong> posts will"
+" be posted to Twitter."
 msgstr ""
 
-#: ../../mod/settings.php:1002
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."
+#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
+msgid "Log in with Twitter"
+msgstr "Zaloguj się przez Twitter"
 
-#: ../../mod/settings.php:1003
-msgid "Advanced expiration settings"
-msgstr ""
+#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
+msgid "Copy the PIN from Twitter here"
+msgstr "Skopiuj tutaj PIN z Twittera"
 
-#: ../../mod/settings.php:1004
-msgid "Advanced Expiration"
+#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated Twitter account. You can choose to do so by default (here) or for"
+" every posting separately in the posting options when writing the entry."
 msgstr ""
 
-#: ../../mod/settings.php:1005
-msgid "Expire posts:"
-msgstr "Wygasające posty:"
+#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) the link potentially included in public "
+"postings relayed to Twitter will lead the visitor to a blank page informing "
+"the visitor that the access to your profile has been restricted."
+msgstr ""
 
-#: ../../mod/settings.php:1006
-msgid "Expire personal notes:"
-msgstr "Wygasające notatki osobiste:"
+#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
+msgid "Allow posting to Twitter"
+msgstr "Zezwól na opublikowanie w serwisie Twitter"
 
-#: ../../mod/settings.php:1007
-msgid "Expire starred posts:"
+#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
+msgid "Send public postings to Twitter by default"
 msgstr ""
 
-#: ../../mod/settings.php:1008
-msgid "Expire photos:"
-msgstr "Wygasające zdjęcia:"
-
-#: ../../mod/settings.php:1009
-msgid "Only expire posts by others:"
+#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
+msgid "Send linked #-tags and @-names to Twitter"
 msgstr ""
 
-#: ../../mod/settings.php:1035
-msgid "Account Settings"
-msgstr "Ustawienia konta"
+#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
+msgid "Consumer key"
+msgstr "Klucz konsumenta"
 
-#: ../../mod/settings.php:1043
-msgid "Password Settings"
-msgstr "Ustawienia hasła"
+#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
+msgid "Consumer secret"
+msgstr "Sekret konsumenta"
 
-#: ../../mod/settings.php:1044
-msgid "New Password:"
-msgstr "Nowe hasło:"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
+#: ../../addon/uhremotestorage/uhremotestorage.php:84
+#, php-format
+msgid ""
+"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
+" storage (like ownCloud). See <a "
+"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
+" WebFinger</a>"
+msgstr ""
 
-#: ../../mod/settings.php:1045
-msgid "Confirm:"
-msgstr "Potwierdź:"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
+#: ../../addon/uhremotestorage/uhremotestorage.php:85
+msgid "Template URL (with {category})"
+msgstr ""
 
-#: ../../mod/settings.php:1045
-msgid "Leave password fields blank unless changing"
-msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić."
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
+#: ../../addon/uhremotestorage/uhremotestorage.php:86
+msgid "OAuth end-point"
+msgstr ""
 
-#: ../../mod/settings.php:1049
-msgid "Basic Settings"
-msgstr "Ustawienia podstawowe"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
+#: ../../addon/uhremotestorage/uhremotestorage.php:87
+msgid "Api"
+msgstr "Api"
 
-#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "Imię i nazwisko:"
+#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
+msgid "View Source"
+msgstr "Podgląd źródła"
 
-#: ../../mod/settings.php:1051
-msgid "Email Address:"
-msgstr "Adres email:"
+#: ../../addon.old/widgets/widget_friendheader.php:40
+#: ../../addon/widgets/widget_friendheader.php:40
+msgid "Get added to this list!"
+msgstr "Zostań dodany do listy!"
 
-#: ../../mod/settings.php:1052
-msgid "Your Timezone:"
-msgstr "Twoja strefa czasowa:"
+#: ../../addon.old/widgets/widget_friends.php:40
+#: ../../addon/widgets/widget_friends.php:40
+msgid "Connect on Friendica!"
+msgstr "Połączono z Friendica!"
 
-#: ../../mod/settings.php:1053
-msgid "Default Post Location:"
-msgstr "Standardowa lokalizacja wiadomości:"
+#: ../../addon.old/widgets/widget_like.php:58
+#: ../../addon/widgets/widget_like.php:59
+#, php-format
+msgid "%d person likes this"
+msgid_plural "%d people like this"
+msgstr[0] " %d osoba lubi to"
+msgstr[1] " %d osób lubi to"
+msgstr[2] " %d osób lubi to"
 
-#: ../../mod/settings.php:1054
-msgid "Use Browser Location:"
-msgstr "Użyj położenia przeglądarki:"
+#: ../../addon.old/widgets/widget_like.php:61
+#: ../../addon/widgets/widget_like.php:62
+#, php-format
+msgid "%d person doesn't like this"
+msgid_plural "%d people don't like this"
+msgstr[0] " %d osoba nie lubi tego"
+msgstr[1] " %d osób tego nie lubi"
+msgstr[2] " %d osób tego nie lubi"
 
-#: ../../mod/settings.php:1057
-msgid "Security and Privacy Settings"
-msgstr "Ustawienia bezpieczeństwa i prywatności"
+#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
+msgid "Generate new key"
+msgstr "Stwórz nowy klucz"
 
-#: ../../mod/settings.php:1059
-msgid "Maximum Friend Requests/Day:"
-msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"
+#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
+msgid "Widgets key"
+msgstr ""
 
-#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
-msgid "(to prevent spam abuse)"
-msgstr "(aby zapobiec spamowaniu)"
+#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
+msgid "Widgets available"
+msgstr "Widgety są dostępne"
 
-#: ../../mod/settings.php:1060
-msgid "Default Post Permissions"
-msgstr "Domyślne prawa dostępu wiadomości"
+#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
+#: ../../mod/settings.php:646
+msgid "Plugin Settings"
+msgstr "Ustawienia wtyczki"
 
-#: ../../mod/settings.php:1061
-msgid "(click to open/close)"
-msgstr "(kliknij by otworzyć/zamknąć)"
+#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
+msgid "Post to Wordpress"
+msgstr "Opublikuj na Wordpress"
 
-#: ../../mod/settings.php:1072
-msgid "Default Private Post"
-msgstr ""
+#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
+msgid "WordPress Post Settings"
+msgstr "Ustawienia wpisów WorldPress"
 
-#: ../../mod/settings.php:1073
-msgid "Default Public Post"
-msgstr ""
+#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
+msgid "Enable WordPress Post Plugin"
+msgstr "Włącz plugin wpisów WorldPress"
 
-#: ../../mod/settings.php:1077
-msgid "Default Permissions for New Posts"
-msgstr ""
+#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
+msgid "WordPress username"
+msgstr "nazwa użytkownika WordPress"
 
-#: ../../mod/settings.php:1089
-msgid "Maximum private messages per day from unknown people:"
-msgstr ""
+#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
+msgid "WordPress password"
+msgstr "hasło WordPress"
 
-#: ../../mod/settings.php:1092
-msgid "Notification Settings"
-msgstr "Ustawienia powiadomień"
+#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
+msgid "WordPress API URL"
+msgstr "WordPress API URL"
 
-#: ../../mod/settings.php:1093
-msgid "By default post a status message when:"
-msgstr ""
+#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
+msgid "Post to WordPress by default"
+msgstr "Domyślnie opublikuj na Wordpress"
 
-#: ../../mod/settings.php:1094
-msgid "accepting a friend request"
+#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
+msgid "Provide a backlink to the Friendica post"
 msgstr ""
 
-#: ../../mod/settings.php:1095
-msgid "joining a forum/community"
+#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
+msgid "Read the original post and comment stream on Friendica"
 msgstr ""
 
-#: ../../mod/settings.php:1096
-msgid "making an <em>interesting</em> profile change"
+#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
+msgid "YourLS Settings"
 msgstr ""
 
-#: ../../mod/settings.php:1097
-msgid "Send a notification email when:"
-msgstr "Wyślij powiadmonienia na email, kiedy:"
+#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
+msgid "URL: http://"
+msgstr "URL: http://"
 
-#: ../../mod/settings.php:1098
-msgid "You receive an introduction"
-msgstr "Otrzymałeś zaproszenie"
+#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
+msgid "Username:"
+msgstr "Nazwa użytkownika:"
 
-#: ../../mod/settings.php:1099
-msgid "Your introductions are confirmed"
-msgstr "Dane zatwierdzone"
+#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
+msgid "Password:"
+msgstr "Hasło:"
 
-#: ../../mod/settings.php:1100
-msgid "Someone writes on your profile wall"
-msgstr "Ktoś pisze na twojej ścianie profilowej"
+#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
+msgid "Use SSL "
+msgstr "Użyj SSL"
 
-#: ../../mod/settings.php:1101
-msgid "Someone writes a followup comment"
-msgstr "Ktoś pisze komentarz nawiązujący."
+#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
+msgid "yourls Settings saved."
+msgstr ""
 
-#: ../../mod/settings.php:1102
-msgid "You receive a private message"
-msgstr "Otrzymałeś prywatną wiadomość"
+#: ../../addon/altpager/altpager.php:99
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Global"
+msgstr "Ogólne"
 
-#: ../../mod/settings.php:1103
-msgid "You receive a friend suggestion"
-msgstr "Otrzymane propozycje znajomych"
+#: ../../addon/altpager/altpager.php:99
+msgid "Force global use of the alternate pager"
+msgstr ""
 
-#: ../../mod/settings.php:1104
-msgid "You are tagged in a post"
-msgstr "Jesteś oznaczony w poście"
+#: ../../addon/altpager/altpager.php:100
+#: ../../addon/remote_permissions/remote_permissions.php:198
+msgid "Individual"
+msgstr "Indywidualne"
 
-#: ../../mod/settings.php:1105
-msgid "You are poked/prodded/etc. in a post"
+#: ../../addon/altpager/altpager.php:100
+msgid "Each user chooses whether to use the alternate pager"
 msgstr ""
 
-#: ../../mod/settings.php:1108
-msgid "Advanced Account/Page Type Settings"
+#: ../../addon/fbpost/fbpost.php:239
+msgid "Suppress \"View on friendica\""
 msgstr ""
 
-#: ../../mod/settings.php:1109
-msgid "Change the behaviour of this account for special situations"
+#: ../../addon/fbpost/fbpost.php:243
+msgid "Mirror wall posts from facebook to friendica."
 msgstr ""
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "Zarządzaj Tożsamościami i/lub Stronami."
+#: ../../addon/fbpost/fbpost.php:253
+msgid "Post to page/group:"
+msgstr "Napisz na stronę/grupę:"
 
-#: ../../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"
+#: ../../addon/fbpost/fbpost.php:375
+#, php-format
+msgid "%s:"
 msgstr ""
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "Wybierz tożsamość do zarządzania:"
+#: ../../addon/forumdirectory/forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "Katalog Forum"
 
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr "Szukaj wyników dla:"
+#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
+#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
+#: ../../mod/community.php:18 ../../mod/photos.php:914
+msgid "Public access denied."
+msgstr "Publiczny dostęp zabroniony"
 
-#: ../../mod/network.php:224 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "Usuń wpis"
+#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
+#: ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "Globalne Położenie"
 
-#: ../../mod/network.php:233 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "Zapisane wyszukiwania"
+#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "Znajdź na tej stronie"
 
-#: ../../mod/network.php:234 ../../include/group.php:275
-msgid "add"
-msgstr "dodaj"
+#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
+#: ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "Znalezione:"
 
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "Porządek wg komentarzy"
+#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "Katalog Strony"
 
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr "Sortuj po dacie komentarza"
+#: ../../addon/forumdirectory/forumdirectory.php:83
+#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
+#: ../../mod/directory.php:61
+msgid "Find"
+msgstr "Znajdź"
 
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "Porządek wg wpisów"
+#: ../../addon/forumdirectory/forumdirectory.php:133
+#: ../../mod/profiles.php:682 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "Wiek: "
 
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr "Sortuj po dacie posta"
+#: ../../addon/forumdirectory/forumdirectory.php:136
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "Płeć: "
 
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr ""
+#: ../../addon/forumdirectory/forumdirectory.php:156
+#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
+msgid "Location:"
+msgstr "Lokalizacja"
 
-#: ../../mod/network.php:453
-msgid "New"
-msgstr "Nowy"
+#: ../../addon/forumdirectory/forumdirectory.php:158
+#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
+#: ../../boot.php:1408
+msgid "Gender:"
+msgstr "Płeć:"
 
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr ""
+#: ../../addon/forumdirectory/forumdirectory.php:160
+#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
+#: ../../boot.php:1411
+msgid "Status:"
+msgstr "Status"
 
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr "Współdzielone linki"
+#: ../../addon/forumdirectory/forumdirectory.php:162
+#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
+#: ../../boot.php:1413
+msgid "Homepage:"
+msgstr "Strona główna:"
 
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr "Interesujące linki"
+#: ../../addon/forumdirectory/forumdirectory.php:164
+#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
+msgid "About:"
+msgstr "O:"
 
-#: ../../mod/network.php:471
-msgid "Starred"
+#: ../../addon/forumdirectory/forumdirectory.php:201
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
+
+#: ../../addon/group_text/group_text.php:46
+msgid "Group Text settings updated."
 msgstr ""
 
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr "Ulubione posty"
+#: ../../addon/remote_permissions/remote_permissions.php:45
+msgid "Remote Permissions Settings"
+msgstr ""
 
-#: ../../mod/network.php:546
-#, 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] "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci."
-msgstr[1] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci."
-msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci."
+#: ../../addon/remote_permissions/remote_permissions.php:46
+msgid ""
+"Allow recipients of your private posts to see the other recipients of the "
+"posts"
+msgstr ""
 
-#: ../../mod/network.php:549
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia"
+#: ../../addon/remote_permissions/remote_permissions.php:58
+msgid "Remote Permissions settings updated."
+msgstr ""
 
-#: ../../mod/network.php:621
-msgid "Contact: "
-msgstr "Kontakt: "
+#: ../../addon/remote_permissions/remote_permissions.php:124
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "Widoczne dla:"
 
-#: ../../mod/network.php:623
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
+#: ../../addon/remote_permissions/remote_permissions.php:178
+msgid "Visible to"
+msgstr "Widoczne dla"
 
-#: ../../mod/network.php:628
-msgid "Invalid contact."
-msgstr "Zły kontakt"
+#: ../../addon/remote_permissions/remote_permissions.php:178
+msgid "may only be a partial list"
+msgstr ""
 
-#: ../../mod/notes.php:44 ../../boot.php:1864
-msgid "Personal Notes"
-msgstr "Osobiste notatki"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "The posts of every user on this server show the post recipients"
+msgstr ""
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31
-#: ../../addon/facebook/facebook.php:772
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
-#: ../../addon/fbpost/fbpost.php:322
-#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:741
-#: ../../addon.old/facebook/facebook.php:770
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
-#: ../../addon.old/fbpost/fbpost.php:267
-#: ../../addon.old/dav/friendica/layout.fnk.php:441
-#: ../../addon.old/dav/friendica/layout.fnk.php:488
-msgid "Save"
-msgstr "Zapisz"
+#: ../../addon/remote_permissions/remote_permissions.php:198
+msgid "Each user chooses whether his/her posts show the post recipients"
+msgstr ""
 
-#: ../../mod/uimport.php:50 ../../mod/register.php:192
+#: ../../addon/statusnet/statusnet.php:358
 msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
-
-#: ../../mod/uimport.php:64
-msgid "Import"
+"Mirror all posts from statusnet that are no replies or repeated messages"
 msgstr ""
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "Przenieś konto"
+#: ../../addon/statusnet/statusnet.php:362
+msgid "Shortening method that optimizes the post"
+msgstr ""
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
+#: ../../addon/tumblr/tumblr.php:144
+msgid "You are now authenticated to tumblr."
 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."
+#: ../../addon/tumblr/tumblr.php:145
+msgid "return to the connector page"
 msgstr ""
 
-#: ../../mod/uimport.php:69
-msgid ""
-"This feature is experimental. We can't import contacts from the OStatus "
-"network (statusnet/identi.ca) or from Diaspora"
+#: ../../addon/tumblr/tumblr.php:188
+msgid "(Re-)Authenticate your tumblr page"
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
+#: ../../addon/tumblr/tumblr.php:217
+msgid "Post to page:"
+msgstr "Napisz na stronę:"
+
+#: ../../addon/tumblr/tumblr.php:228
+msgid "You are not authenticated to tumblr"
 msgstr ""
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
+#: ../../addon/twitter/twitter.php:213
+msgid "Mirror all posts from twitter that are no replies or retweets"
 msgstr ""
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
+#: ../../addon/twitter/twitter.php:217
+msgid "Shortening method that optimizes the tweet"
 msgstr ""
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "Nie wybrano odbiorcy."
+#: ../../addon/twitter/twitter.php:560
+msgid "Name of the Twitter Application"
+msgstr ""
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
+#: ../../addon/twitter/twitter.php:560
+msgid ""
+"set this to avoid mirroring postings from ~friendica back to ~friendica"
 msgstr ""
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "Wiadomość nie może zostać wysłana"
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
+#: ../../boot.php:1868
+msgid "Profile"
+msgstr "Profil"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr ""
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
+msgid "Full Name:"
+msgstr "Imię i nazwisko:"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "Wysłano."
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "d M, R"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "Brak odbiorcy."
+#: ../../include/profile_advanced.php:23
+msgid "j F"
+msgstr "d M"
 
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../include/conversation.php:940 ../../include/conversation.php:958
-msgid "Please enter a link URL:"
-msgstr "Proszę wpisać adres URL:"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "Urodziny:"
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "Wyślij prywatną wiadomość"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
+msgstr "Wiek:"
 
-#: ../../mod/wallmessage.php:143
+#: ../../include/profile_advanced.php:43
 #, 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 ""
+msgid "for %1$d %2$s"
+msgstr "od %1$d %2$s"
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "Do:"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
+msgid "Sexual Preference:"
+msgstr "Interesują mnie:"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "Temat:"
+#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648
+msgid "Hometown:"
+msgstr "Miasto rodzinne:"
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "Twoja wiadomość:"
+#: ../../include/profile_advanced.php:52
+msgid "Tags:"
+msgstr "Tagi:"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Witamy na Friendica"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
+msgid "Political Views:"
+msgstr "Poglądy polityczne:"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "Lista nowych członków"
+#: ../../include/profile_advanced.php:56
+msgid "Religion:"
+msgstr "Religia:"
 
-#: ../../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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "Hobby/Zainteresowania:"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr ""
+#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653
+msgid "Likes:"
+msgstr "Lubi:"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
+msgid "Dislikes:"
 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 ""
+#: ../../include/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "Informacje kontaktowe i sieci społeczne"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "Idź do swoich ustawień"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+msgstr "Zainteresowania muzyczne:"
 
-#: ../../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 ""
+#: ../../include/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "Książki, literatura:"
 
-#: ../../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_advanced.php:73
+msgid "Television:"
+msgstr "Telewizja:"
 
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84 ../../include/nav.php:77
-#: ../../boot.php:1840
-msgid "Profile"
-msgstr "Profil"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+msgstr "Film/taniec/kultura/rozrywka"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "Wyślij zdjęcie profilowe"
+#: ../../include/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "Miłość/Romans:"
 
-#: ../../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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+msgstr "Praca/zatrudnienie:"
 
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "Edytuj własny profil"
+#: ../../include/profile_advanced.php:81
+msgid "School/education:"
+msgstr "Szkoła/edukacja:"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "Mężczyzna"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "Słowa kluczowe profilu"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+msgstr "Kobieta"
 
-#: ../../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:6
+msgid "Currently Male"
+msgstr "Aktualnie Mężczyzna"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "Łączę się..."
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "Aktualnie Kobieta"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../addon/facebook/facebook.php:730 ../../addon/fbpost/fbpost.php:294
-#: ../../include/contact_selectors.php:81
-#: ../../addon.old/facebook/facebook.php:728
-#: ../../addon.old/fbpost/fbpost.php:239
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "Bardziej Mężczyzna"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "Bardziej Kobieta"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "Transpłciowy"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "Importuję emaile..."
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "Międzypłciowy"
 
-#: ../../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:6
+msgid "Transsexual"
+msgstr "Transseksualista"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "Idź do strony z Twoimi kontaktami"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "Hermafrodyta"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "Bezpłciowy"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr ""
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "Niespecyficzne"
+
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "Inne"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "Niezdecydowany"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "Poszukiwanie Nowych Ludzi"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "Mężczyźni"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "Kobiety"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "Grupy"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "Gej"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "Grupuj Swoje kontakty"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "Lesbijka"
 
-#: ../../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/profile_selectors.php:23
+msgid "No Preference"
+msgstr "Brak preferencji"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "Dlaczego moje posty nie są publiczne?"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "Biseksualny"
 
-#: ../../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 ""
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "Niezidentyfikowany"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "Otrzymywanie pomocy"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "Abstynent"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "Idź do części o pomocy"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "Dziewica"
 
-#: ../../mod/newmember.php:82
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program"
-" features and resources."
-msgstr ""
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "Zboczeniec"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Element nie dostępny."
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "Fetysz"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "Element nie znaleziony."
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "Nadmiar"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "Grupa utworzona."
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "Nieseksualny"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "Nie mogę stworzyć grupy"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "Singiel"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "Nie znaleziono grupy"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "Samotny"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "Nazwa grupy zmieniona"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "Dostępny"
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340
-msgid "Permission denied"
-msgstr "Odmowa dostępu"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "Niedostępny"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "Stwórz grupę znajomych."
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr ""
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "Nazwa grupy: "
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "zakochany"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "Grupa usunięta."
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "Randki"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "Nie można usunąć grupy."
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "Niewierny"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "Edytor grupy"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "Uzależniony od seksu"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "Członkowie"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "Przyjaciele"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "Przyjaciele/Korzyści"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Nieprawidłowa nazwa użytkownika."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "Przypadkowy"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Ustawienia widoczności profilu"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "Zaręczeni"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Widoczne dla"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "Małżeństwo"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr ""
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "brak kontaktów"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "Partnerzy"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:678
-msgid "View Contacts"
-msgstr "widok kontaktów"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "Konkubinat"
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "Szczegóły rejestracji dla %s"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr ""
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
+#: ../../include/profile_selectors.php:42
+msgid "Happy"
+msgstr "Szczęśliwy"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się."
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr ""
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "Swinger"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "Prośba o rejestrację u %s"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "Zdradzony"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "W separacji"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "Niestabilny"
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "Rozwiedzeni"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "Twój OpenID (opcjonalnie):"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr ""
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "Czy dołączyć twój profil do katalogu członków?"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "Wdowiec"
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "Nieokreślony"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "Twoje zaproszenia ID:"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "To skomplikowane"
 
-#: ../../mod/register.php:261 ../../mod/admin.php:462
-msgid "Registration"
-msgstr "Rejestracja"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "Nie obchodzi mnie to"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "Imię i nazwisko (np. Jan Kowalski):"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "Zapytaj mnie "
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "Twój adres email:"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "przestań obserwować"
 
-#: ../../mod/register.php:271
-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 "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@$nazwastrony</strong>'."
+#: ../../include/Contact.php:225 ../../include/conversation.php:838
+msgid "Poke"
+msgstr "Zaczepka"
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "Wybierz pseudonim:"
+#: ../../include/Contact.php:226 ../../include/conversation.php:832
+msgid "View Status"
+msgstr "Zobacz status"
 
-#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
-msgid "Register"
-msgstr "Zarejestruj"
+#: ../../include/Contact.php:227 ../../include/conversation.php:833
+msgid "View Profile"
+msgstr "Zobacz profil"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "Szukaj osób"
+#: ../../include/Contact.php:228 ../../include/conversation.php:834
+msgid "View Photos"
+msgstr "Zobacz zdjęcia"
 
-#: ../../mod/like.php:151 ../../mod/subthread.php:87 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:171
-#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1510
-#: ../../include/diaspora.php:1860 ../../include/conversation.php:126
-#: ../../include/conversation.php:254
-#: ../../addon.old/communityhome/communityhome.php:163
-msgid "photo"
-msgstr "zdjęcie"
+#: ../../include/Contact.php:229 ../../include/Contact.php:251
+#: ../../include/conversation.php:835
+msgid "Network Posts"
+msgstr ""
 
-#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1600
-#: ../../addon/communityhome/communityhome.php:166
-#: ../../addon/communityhome/communityhome.php:175
-#: ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1860
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../addon.old/facebook/facebook.php:1598
-#: ../../addon.old/communityhome/communityhome.php:158
-#: ../../addon.old/communityhome/communityhome.php:167
-msgid "status"
-msgstr "status"
+#: ../../include/Contact.php:230 ../../include/Contact.php:251
+#: ../../include/conversation.php:836
+msgid "Edit Contact"
+msgstr "Edytuj kontakt"
 
-#: ../../mod/like.php:168 ../../addon/facebook/facebook.php:1604
-#: ../../addon/communityhome/communityhome.php:180
-#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1876
-#: ../../include/conversation.php:137
-#: ../../addon.old/facebook/facebook.php:1602
-#: ../../addon.old/communityhome/communityhome.php:172
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s lubi %2$s's %3$s"
+#: ../../include/Contact.php:231 ../../include/Contact.php:251
+#: ../../include/conversation.php:837
+msgid "Send PM"
+msgstr "Wyślij prywatną wiadomość"
 
-#: ../../mod/like.php:170 ../../include/conversation.php:140
-#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
-msgstr "%1$s nie lubi %2$s's %3$s"
+#: ../../include/text.php:276
+msgid "prev"
+msgstr "poprzedni"
 
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
-#: ../../mod/display.php:184 ../../include/items.php:3853
-msgid "Item not found."
-msgstr "Element nie znaleziony."
+#: ../../include/text.php:278
+msgid "first"
+msgstr "pierwszy"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "Brak dostępu"
+#: ../../include/text.php:307
+msgid "last"
+msgstr "ostatni"
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
-#: ../../include/nav.php:78 ../../boot.php:1847
-msgid "Photos"
-msgstr "Zdjęcia"
+#: ../../include/text.php:310
+msgid "next"
+msgstr "następny"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "Pliki"
+#: ../../include/text.php:328
+msgid "newer"
+msgstr "nowsze"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "Konto zatwierdzone."
+#: ../../include/text.php:332
+msgid "older"
+msgstr "starsze"
 
-#: ../../mod/regmod.php:100
+#: ../../include/text.php:697
+msgid "No contacts"
+msgstr "Brak kontaktów"
+
+#: ../../include/text.php:706
 #, php-format
-msgid "Registration revoked for %s"
-msgstr "Rejestracja dla %s odwołana"
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d kontakt"
+msgstr[1] "%d kontaktów"
+msgstr[2] "%d kontakty"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "Proszę się zalogować."
+#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
+msgid "View Contacts"
+msgstr "widok kontaktów"
 
-#: ../../mod/item.php:104
-msgid "Unable to locate original post."
-msgstr "Nie można zlokalizować oryginalnej wiadomości."
+#: ../../include/text.php:778 ../../include/text.php:779
+#: ../../include/nav.php:118 ../../mod/search.php:99
+msgid "Search"
+msgstr "Szukaj"
 
-#: ../../mod/item.php:292
-msgid "Empty post discarded."
-msgstr "Pusty wpis wyrzucony."
+#: ../../include/text.php:819
+msgid "poke"
+msgstr "zaczep"
 
-#: ../../mod/item.php:428 ../../mod/wall_upload.php:135
-#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "Tablica zdjęć"
+#: ../../include/text.php:819 ../../include/conversation.php:211
+msgid "poked"
+msgstr "zaczepiony"
 
-#: ../../mod/item.php:841
-msgid "System error. Post not saved."
-msgstr "Błąd. Post niezapisany."
+#: ../../include/text.php:820
+msgid "ping"
+msgstr ""
 
-#: ../../mod/item.php:866
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"
+#: ../../include/text.php:820
+msgid "pinged"
+msgstr ""
 
-#: ../../mod/item.php:868
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "Możesz ich odwiedzić online u %s"
+#: ../../include/text.php:821
+msgid "prod"
+msgstr ""
 
-#: ../../mod/item.php:869
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."
+#: ../../include/text.php:821
+msgid "prodded"
+msgstr ""
 
-#: ../../mod/item.php:871
-#, php-format
-msgid "%s posted an update."
-msgstr "%s zaktualizował wpis."
+#: ../../include/text.php:822
+msgid "slap"
+msgstr "spoliczkuj"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr ""
+#: ../../include/text.php:822
+msgid "slapped"
+msgstr "spoliczkowany"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "Nastrój"
+#: ../../include/text.php:823
+msgid "finger"
+msgstr "dotknąć"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym"
+#: ../../include/text.php:823
+msgid "fingered"
+msgstr "dotknięty"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "Obrazek załadowany, ale oprawanie powiodła się."
+#: ../../include/text.php:824
+msgid "rebuff"
+msgstr "odprawiać"
 
-#: ../../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 "Redukcja rozmiaru obrazka [%s] nie powiodła się."
+#: ../../include/text.php:824
+msgid "rebuffed"
+msgstr "odprawiony"
 
-#: ../../mod/profile_photo.php:118
-msgid ""
-"Shift-reload the page or clear browser cache if the new photo does not "
-"display immediately."
-msgstr ""
+#: ../../include/text.php:836
+msgid "happy"
+msgstr "szczęśliwy"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "Nie udało się przetworzyć obrazu."
+#: ../../include/text.php:837
+msgid "sad"
+msgstr "smutny"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "Rozmiar obrazka przekracza limit %d"
+#: ../../include/text.php:838
+msgid "mellow"
+msgstr "spokojny"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "Wyślij plik:"
+#: ../../include/text.php:839
+msgid "tired"
+msgstr "zmęczony"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "Wybierz profil:"
+#: ../../include/text.php:840
+msgid "perky"
+msgstr "pewny siebie"
 
-#: ../../mod/profile_photo.php:245
-#: ../../addon/dav/friendica/layout.fnk.php:152
-#: ../../addon.old/dav/friendica/layout.fnk.php:152
-msgid "Upload"
-msgstr "Załaduj"
+#: ../../include/text.php:841
+msgid "angry"
+msgstr "wściekły"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "Pomiń ten krok"
+#: ../../include/text.php:842
+msgid "stupified"
+msgstr "odurzony"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "wybierz zdjęcie z twojego albumu"
+#: ../../include/text.php:843
+msgid "puzzled"
+msgstr "zdziwiony"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "Przytnij zdjęcie"
+#: ../../include/text.php:844
+msgid "interested"
+msgstr "interesujący"
+
+#: ../../include/text.php:845
+msgid "bitter"
+msgstr "zajadły"
+
+#: ../../include/text.php:846
+msgid "cheerful"
+msgstr "wesoły"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."
+#: ../../include/text.php:847
+msgid "alive"
+msgstr "żywy"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "Zakończ Edycję "
+#: ../../include/text.php:848
+msgid "annoyed"
+msgstr "irytujący"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "Zdjęcie wczytano pomyślnie "
+#: ../../include/text.php:849
+msgid "anxious"
+msgstr "zazdrosny"
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "Brak profilu"
+#: ../../include/text.php:850
+msgid "cranky"
+msgstr "zepsuty"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "Usuń konto"
+#: ../../include/text.php:851
+msgid "disturbed"
+msgstr "przeszkadzający"
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane."
+#: ../../include/text.php:852
+msgid "frustrated"
+msgstr "rozbity"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "Wprowadź hasło w celu weryfikacji."
+#: ../../include/text.php:853
+msgid "motivated"
+msgstr "zmotywowany"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "Brak nowych zdarzeń"
+#: ../../include/text.php:854
+msgid "relaxed"
+msgstr "zrelaksowany"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr ""
+#: ../../include/text.php:855
+msgid "surprised"
+msgstr "zaskoczony"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "Nowa wiadomość"
+#: ../../include/text.php:1019
+msgid "January"
+msgstr "Styczeń"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "Niezdolny do uzyskania informacji kontaktowych."
+#: ../../include/text.php:1019
+msgid "February"
+msgstr "Luty"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr ""
+#: ../../include/text.php:1019
+msgid "March"
+msgstr "Marzec"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "Wiadomość usunięta."
+#: ../../include/text.php:1019
+msgid "April"
+msgstr "Kwiecień"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "Rozmowa usunięta."
+#: ../../include/text.php:1019
+msgid "May"
+msgstr "Maj"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "Brak wiadomości."
+#: ../../include/text.php:1019
+msgid "June"
+msgstr "Czerwiec"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr ""
+#: ../../include/text.php:1019
+msgid "July"
+msgstr "Lipiec"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "Ty i %s"
+#: ../../include/text.php:1019
+msgid "August"
+msgstr "Sierpień"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s i ty"
+#: ../../include/text.php:1019
+msgid "September"
+msgstr "Wrzesień"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "Usuń rozmowę"
+#: ../../include/text.php:1019
+msgid "October"
+msgstr "Październik"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M R - g:m AM/PM"
+#: ../../include/text.php:1019
+msgid "November"
+msgstr "Listopad"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] " %d wiadomość"
-msgstr[1] " %d wiadomości"
-msgstr[2] " %d wiadomości"
+#: ../../include/text.php:1019
+msgid "December"
+msgstr "Grudzień"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "Wiadomość nie jest dostępna."
+#: ../../include/text.php:1124
+msgid "bytes"
+msgstr "bajty"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "Usuń wiadomość"
+#: ../../include/text.php:1151 ../../include/text.php:1163
+msgid "Click to open/close"
+msgstr "Kliknij aby otworzyć/zamknąć"
 
-#: ../../mod/message.php:548
-msgid ""
-"No secure communications available. You <strong>may</strong> be able to "
-"respond from the sender's profile page."
-msgstr ""
+#: ../../include/text.php:1304 ../../mod/events.php:335
+msgid "link to source"
+msgstr "link do źródła"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "Odpowiedz"
+#: ../../include/text.php:1336 ../../include/user.php:237
+msgid "default"
+msgstr "standardowe"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "Znajomy %s"
+#: ../../include/text.php:1348
+msgid "Select an alternate language"
+msgstr "Wybierz alternatywny język"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "Brak znajomych do wyświetlenia"
+#: ../../include/text.php:1558
+msgid "activity"
+msgstr "aktywność"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr ""
+#: ../../include/text.php:1560 ../../mod/content.php:628
+#: ../../object/Item.php:354 ../../object/Item.php:367
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] "komentarz"
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:460
-msgid "Site"
-msgstr "Strona"
+#: ../../include/text.php:1561
+msgid "post"
+msgstr "post"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740
-msgid "Users"
-msgstr "Użytkownicy"
+#: ../../include/text.php:1716
+msgid "Item filed"
+msgstr ""
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864
-msgid "Plugins"
-msgstr "Wtyczki"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "Widoczny dla wszystkich"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
-msgid "Themes"
-msgstr "Temat"
+#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "show"
+msgstr "pokaż"
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr ""
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "don't show"
+msgstr "nie pokazuj"
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
-msgid "Logs"
-msgstr "Logi"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "Wyloguj"
 
-#: ../../mod/admin.php:120 ../../include/nav.php:178
-msgid "Admin"
-msgstr "Administator"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "Niepowodzenie logowania"
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "Polecane wtyczki"
+#: ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr ""
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "Rejestracje użytkownika czekają na potwierdzenie."
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "Komunikat o błędzie:"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:698
-msgid "Normal Account"
-msgstr "Konto normalne"
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr ""
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:699
-msgid "Soapbox Account"
-msgstr "Konto Soapbox"
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr ""
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:700
-msgid "Community/Celebrity Account"
-msgstr "Konto społeczności/gwiazdy"
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr ""
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:701
-msgid "Automatic Friend Account"
-msgstr "Automatyczny przyjaciel konta"
+#: ../../include/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr ""
 
-#: ../../mod/admin.php:187
-msgid "Blog Account"
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
 msgstr ""
 
-#: ../../mod/admin.php:188
-msgid "Private Forum"
-msgstr "Forum Prywatne"
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr ""
 
-#: ../../mod/admin.php:207
-msgid "Message queues"
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
 msgstr ""
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
-#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
-#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
-msgid "Administration"
-msgstr "Administracja"
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: ../../mod/admin.php:213
-msgid "Summary"
-msgstr "Skrót"
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."
 
-#: ../../mod/admin.php:215
-msgid "Registered users"
-msgstr "Zarejestrowani użytkownicy"
+#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr ""
 
-#: ../../mod/admin.php:217
-msgid "Pending registrations"
-msgstr "Rejestracje w toku."
+#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
+msgid "Starts:"
+msgstr "Start:"
+
+#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "Wykończenia:"
 
-#: ../../mod/admin.php:218
-msgid "Version"
-msgstr "Wersja"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
+msgid "Disallowed profile URL."
+msgstr "Nie dozwolony adres URL profilu."
 
-#: ../../mod/admin.php:220
-msgid "Active plugins"
-msgstr "Aktywne pluginy"
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "Brak adresu URL połączenia."
 
-#: ../../mod/admin.php:391
-msgid "Site settings updated."
-msgstr "Ustawienia strony zaktualizowane"
+#: ../../include/follow.php:59
+msgid ""
+"This site is not configured to allow communications with other networks."
+msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
 
-#: ../../mod/admin.php:446
-msgid "Closed"
-msgstr "Zamknięty"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr ""
 
-#: ../../mod/admin.php:447
-msgid "Requires approval"
-msgstr "Wymagane zatwierdzenie."
+#: ../../include/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
 
-#: ../../mod/admin.php:448
-msgid "Open"
-msgstr "Otwórz"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "Autor lub nazwa nie zostało znalezione."
 
-#: ../../mod/admin.php:452
-msgid "No SSL policy, links will track page SSL state"
-msgstr ""
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
 
-#: ../../mod/admin.php:453
-msgid "Force all links to use SSL"
+#: ../../include/follow.php:86
+msgid ""
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
 msgstr ""
 
-#: ../../mod/admin.php:454
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
 msgstr ""
 
-#: ../../mod/admin.php:463
-msgid "File upload"
-msgstr "Plik załadowano"
+#: ../../include/follow.php:93
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."
 
-#: ../../mod/admin.php:464
-msgid "Policies"
-msgstr "zasady"
+#: ../../include/follow.php:103
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."
 
-#: ../../mod/admin.php:465
-msgid "Advanced"
-msgstr "Zaawansowany"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "Nie można otrzymać informacji kontaktowych"
 
-#: ../../mod/admin.php:466
-msgid "Performance"
-msgstr ""
+#: ../../include/follow.php:259
+msgid "following"
+msgstr "następujący"
 
-#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744
-#: ../../addon.old/statusnet/statusnet.php:567
-msgid "Site name"
-msgstr "Nazwa strony"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "Wymagane zaproszenie."
 
-#: ../../mod/admin.php:471
-msgid "Banner/Logo"
-msgstr "Logo"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "Zaproszenie niezweryfikowane."
 
-#: ../../mod/admin.php:472
-msgid "System language"
-msgstr "Język systemu"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "Nieprawidłowy adres url OpenID"
 
-#: ../../mod/admin.php:473
-msgid "System theme"
-msgstr "Motyw systemowy"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "Wprowadź wymagane informacje"
 
-#: ../../mod/admin.php:473
-msgid ""
-"Default system theme - may be over-ridden by user profiles - <a href='#' "
-"id='cnftheme'>change theme settings</a>"
-msgstr ""
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "Użyj dłuższej nazwy."
 
-#: ../../mod/admin.php:474
-msgid "Mobile system theme"
-msgstr ""
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "Nazwa jest za krótka."
 
-#: ../../mod/admin.php:474
-msgid "Theme for mobile devices"
-msgstr ""
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)."
 
-#: ../../mod/admin.php:475
-msgid "SSL link policy"
-msgstr ""
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie."
 
-#: ../../mod/admin.php:475
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr ""
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "Niepoprawny adres e mail.."
 
-#: ../../mod/admin.php:476
-msgid "'Share' element"
-msgstr ""
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "Nie możesz użyć tego e-maila. "
 
-#: ../../mod/admin.php:476
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr ""
+#: ../../include/user.php:122
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
+msgstr "Twój login może składać się tylko z \"a-z\",  \"0-9\", \"-\", \"_\", i musi mieć na początku literę."
 
-#: ../../mod/admin.php:477
-msgid "Maximum image size"
-msgstr "Maksymalny rozmiar zdjęcia"
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "Ten login jest zajęty. Wybierz inny."
 
-#: ../../mod/admin.php:477
+#: ../../include/user.php:138
 msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."
 
-#: ../../mod/admin.php:478
-msgid "Maximum image length"
-msgstr "Maksymalna długość obrazu"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
 
-#: ../../mod/admin.php:478
-msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
 
-#: ../../mod/admin.php:479
-msgid "JPEG image quality"
-msgstr "jakość obrazu JPEG"
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."
 
-#: ../../mod/admin.php:479
-msgid ""
-"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
-"100, which is full quality."
-msgstr ""
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "Nieznany | Bez kategori"
 
-#: ../../mod/admin.php:481
-msgid "Register policy"
-msgstr "Zarejestruj polisę"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "Zablokować natychmiast "
 
-#: ../../mod/admin.php:482
-msgid "Maximum Daily Registrations"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
 msgstr ""
 
-#: ../../mod/admin.php:482
-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/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "Znam, ale nie mam zdania"
 
-#: ../../mod/admin.php:483
-msgid "Register text"
-msgstr "Zarejestruj tekst"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "Ok, bez problemów"
 
-#: ../../mod/admin.php:483
-msgid "Will be displayed prominently on the registration page."
-msgstr ""
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "Zaufane, ma moje poparcie"
 
-#: ../../mod/admin.php:484
-msgid "Accounts abandoned after x days"
-msgstr "Konto porzucone od x dni."
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "Jak najczęściej"
 
-#: ../../mod/admin.php:484
-msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr ""
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "Godzinowo"
 
-#: ../../mod/admin.php:485
-msgid "Allowed friend domains"
-msgstr "Dozwolone domeny przyjaciół"
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "Dwa razy dziennie"
 
-#: ../../mod/admin.php:485
-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/contact_selectors.php:76 ../../mod/dfrn_request.php:840
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:486
-msgid "Allowed email domains"
-msgstr "Dozwolone domeny e-mailowe"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:486
-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/contact_selectors.php:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:487
-msgid "Block public"
-msgstr "Blokuj publicznie"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747
+#: ../../mod/admin.php:757
+msgid "Email"
+msgstr "E-mail"
 
-#: ../../mod/admin.php:487
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
+#: ../../mod/dfrn_request.php:842
+msgid "Diaspora"
+msgstr "Diaspora"
+
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
 msgstr ""
 
-#: ../../mod/admin.php:488
-msgid "Force publish"
-msgstr "Wymuś publikację"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
+
+#: ../../include/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:488
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr ""
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:489
-msgid "Global directory update URL"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
 msgstr ""
 
-#: ../../mod/admin.php:489
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr ""
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "Dodaj nowy kontakt"
 
-#: ../../mod/admin.php:490
-msgid "Allow threaded items"
-msgstr ""
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "Wpisz adres lub lokalizację sieciową"
 
-#: ../../mod/admin.php:490
-msgid "Allow infinite level threading for items on this site."
-msgstr ""
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara"
 
-#: ../../mod/admin.php:491
-msgid "Private posts by default for new users"
-msgstr ""
+#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
+#: ../../mod/match.php:58 ../../boot.php:1338
+msgid "Connect"
+msgstr "Połącz"
 
-#: ../../mod/admin.php:491
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr ""
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d zaproszenie dostępne"
+msgstr[1] "%d zaproszeń dostępnych"
+msgstr[2] "%d zaproszenia dostępne"
 
-#: ../../mod/admin.php:493
-msgid "Block multiple registrations"
-msgstr ""
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "Znajdź ludzi"
 
-#: ../../mod/admin.php:493
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr ""
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "Wpisz nazwę lub zainteresowanie"
 
-#: ../../mod/admin.php:494
-msgid "OpenID support"
-msgstr "Wsparcie OpenID"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "Połącz/Obserwuj"
 
-#: ../../mod/admin.php:494
-msgid "OpenID support for registration and logins."
-msgstr ""
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "Przykładowo:  Jan Kowalski, Wędkarstwo"
 
-#: ../../mod/admin.php:495
-msgid "Fullname check"
-msgstr "Sprawdzanie pełnej nazwy"
+#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
+#: ../../view/theme/diabook/theme.php:520
+msgid "Friend Suggestions"
+msgstr "Osoby, które możesz znać"
 
-#: ../../mod/admin.php:495
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr ""
+#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
+msgid "Similar Interests"
+msgstr "Podobne zainteresowania"
 
-#: ../../mod/admin.php:496
-msgid "UTF-8 Regular expressions"
-msgstr ""
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "Domyślny profil"
 
-#: ../../mod/admin.php:496
-msgid "Use PHP UTF8 regular expressions"
-msgstr ""
+#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
+msgid "Invite Friends"
+msgstr "Zaproś znajomych"
 
-#: ../../mod/admin.php:497
-msgid "Show Community Page"
-msgstr "Pokaż stronę społeczności"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "Sieci"
 
-#: ../../mod/admin.php:497
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr ""
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "Wszystkie Sieci"
 
-#: ../../mod/admin.php:498
-msgid "Enable OStatus support"
-msgstr "Włącz wsparcie OStatus"
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "Zapisane foldery"
 
-#: ../../mod/admin.php:498
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr ""
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "Wszystko"
 
-#: ../../mod/admin.php:499
-msgid "Enable Diaspora support"
-msgstr ""
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "Kategorie"
 
-#: ../../mod/admin.php:499
-msgid "Provide built-in Diaspora network compatibility."
-msgstr ""
+#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: ../../mod/admin.php:500
-msgid "Only allow Friendica contacts"
-msgstr ""
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "na Last.fm"
 
-#: ../../mod/admin.php:500
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
+msgid "Image/photo"
+msgstr "Obrazek/zdjęcie"
+
+#: ../../include/bbcode.php:272
+#, php-format
 msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
 msgstr ""
 
-#: ../../mod/admin.php:501
-msgid "Verify SSL"
-msgstr "Weryfikacja SSL"
+#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
+msgid "$1 wrote:"
+msgstr "$1 napisał:"
 
-#: ../../mod/admin.php:501
-msgid ""
-"If you wish, you can turn on strict certificate checking. This will mean you"
-" cannot connect (at all) to self-signed SSL sites."
+#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
+msgid "Encrypted content"
 msgstr ""
 
-#: ../../mod/admin.php:502
-msgid "Proxy user"
-msgstr "Użytkownik proxy"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "Różny"
 
-#: ../../mod/admin.php:503
-msgid "Proxy URL"
-msgstr "URL Proxy"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr "rok"
 
-#: ../../mod/admin.php:504
-msgid "Network timeout"
-msgstr "Network timeout"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr "miesiąc"
 
-#: ../../mod/admin.php:504
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr ""
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr "dzień"
 
-#: ../../mod/admin.php:505
-msgid "Delivery interval"
-msgstr ""
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "nigdy"
 
-#: ../../mod/admin.php:505
-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 ""
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "mniej niż sekundę temu"
 
-#: ../../mod/admin.php:506
-msgid "Poll interval"
-msgstr ""
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "tydzień"
 
-#: ../../mod/admin.php:506
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr ""
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "godzina"
 
-#: ../../mod/admin.php:507
-msgid "Maximum Load Average"
-msgstr ""
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "godziny"
 
-#: ../../mod/admin.php:507
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr ""
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "minuta"
 
-#: ../../mod/admin.php:509
-msgid "Use MySQL full text engine"
-msgstr ""
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "minuty"
 
-#: ../../mod/admin.php:509
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr "sekunda"
+
+#: ../../include/datetime.php:291
+msgid "seconds"
+msgstr "sekundy"
+
+#: ../../include/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
 msgstr ""
 
-#: ../../mod/admin.php:510
-msgid "Path to item cache"
+#: ../../include/datetime.php:472 ../../include/items.php:1764
+#, php-format
+msgid "%s's birthday"
 msgstr ""
 
-#: ../../mod/admin.php:511
-msgid "Cache duration in seconds"
+#: ../../include/datetime.php:473 ../../include/items.php:1765
+#, php-format
+msgid "Happy Birthday %s"
 msgstr ""
 
-#: ../../mod/admin.php:511
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr ""
+#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[Nazwa wstrzymana]"
 
-#: ../../mod/admin.php:512
-msgid "Path for lock file"
+#: ../../include/items.php:3446
+msgid "A new person is sharing with you at "
 msgstr ""
 
-#: ../../mod/admin.php:513
-msgid "Temp path"
+#: ../../include/items.php:3446
+msgid "You have a new follower at "
 msgstr ""
 
-#: ../../mod/admin.php:514
-msgid "Base path to installation"
-msgstr ""
+#: ../../include/items.php:3926 ../../mod/admin.php:158
+#: ../../mod/admin.php:789 ../../mod/admin.php:989 ../../mod/display.php:51
+#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
+msgid "Item not found."
+msgstr "Element nie znaleziony."
 
-#: ../../mod/admin.php:532
-msgid "Update has been marked successful"
+#: ../../include/items.php:3965
+msgid "Do you really want to delete this item?"
 msgstr ""
 
-#: ../../mod/admin.php:542
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr ""
+#: ../../include/items.php:3967 ../../mod/profiles.php:606
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "Tak"
 
-#: ../../mod/admin.php:545
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr ""
+#: ../../include/items.php:4160
+msgid "Archives"
+msgstr "Archiwum"
 
-#: ../../mod/admin.php:549
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "Kliknij tu, aby zaktualizować."
+
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
 msgstr ""
 
-#: ../../mod/admin.php:552
-#, php-format
-msgid "Update function %s could not be found."
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
 msgstr ""
 
-#: ../../mod/admin.php:567
-msgid "No failed updates."
-msgstr "Brak błędów aktualizacji."
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "(bez tematu)"
 
-#: ../../mod/admin.php:571
-msgid "Failed Updates"
-msgstr "Błąd aktualizacji"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s jest teraz znajomym z %2$s"
 
-#: ../../mod/admin.php:572
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr ""
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "Wspólne powiadomienie z sieci Diaspora"
 
-#: ../../mod/admin.php:573
-msgid "Mark success (if update was manually applied)"
-msgstr ""
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "Załączniki:"
 
-#: ../../mod/admin.php:574
-msgid "Attempt to execute this update step automatically"
-msgstr ""
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Powiadomienia Friendica"
 
-#: ../../mod/admin.php:599
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "Dziękuję,"
 
-#: ../../mod/admin.php:606
+#: ../../include/enotify.php:21
 #, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] " %s użytkownik usunięty"
-msgstr[1] " %s użytkownicy usunięci"
-msgstr[2] " %s usuniętych użytkowników "
+msgid "%s Administrator"
+msgstr "%s administrator"
 
-#: ../../mod/admin.php:645
+#: ../../include/enotify.php:40
 #, php-format
-msgid "User '%s' deleted"
-msgstr "Użytkownik '%s' usunięty"
+msgid "%s <!item_type!>"
+msgstr ""
 
-#: ../../mod/admin.php:653
+#: ../../include/enotify.php:44
 #, php-format
-msgid "User '%s' unblocked"
-msgstr "Użytkownik '%s' odblokowany"
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s"
 
-#: ../../mod/admin.php:653
+#: ../../include/enotify.php:46
 #, php-format
-msgid "User '%s' blocked"
-msgstr "Użytkownik '%s' zablokowany"
-
-#: ../../mod/admin.php:729
-msgid "select all"
-msgstr "Zaznacz wszystko"
+msgid "%1$s sent you a new private message at %2$s."
+msgstr ""
 
-#: ../../mod/admin.php:730
-msgid "User registrations waiting for confirm"
-msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s wysyła ci %2$s"
 
-#: ../../mod/admin.php:731
-msgid "Request date"
-msgstr "Data prośby"
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "prywatna wiadomość"
 
-#: ../../mod/admin.php:731 ../../mod/admin.php:741
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "E-mail"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"
 
-#: ../../mod/admin.php:732
-msgid "No registrations."
-msgstr "brak rejestracji"
+#: ../../include/enotify.php:90
+#, php-format
+msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
+msgstr ""
 
-#: ../../mod/admin.php:734
-msgid "Deny"
-msgstr "Odmów"
+#: ../../include/enotify.php:97
+#, php-format
+msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
+msgstr ""
 
-#: ../../mod/admin.php:738
-msgid "Site admin"
-msgstr "Administracja stroną"
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr ""
 
-#: ../../mod/admin.php:741
-msgid "Register date"
-msgstr "Data rejestracji"
+#: ../../include/enotify.php:115
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:741
-msgid "Last login"
-msgstr "Ostatnie logowanie"
+#: ../../include/enotify.php:116
+#, php-format
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s skomentował rozmowę którą śledzisz"
 
-#: ../../mod/admin.php:741
-msgid "Last item"
-msgstr "Ostatni element"
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
+#, php-format
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"
 
-#: ../../mod/admin.php:741
-msgid "Account"
-msgstr "Konto"
+#: ../../include/enotify.php:126
+#, php-format
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s napisał na twoim profilu"
 
-#: ../../mod/admin.php:743
-msgid ""
-"Selected users will be deleted!\\n\\nEverything these users had posted on "
-"this site will be permanently deleted!\\n\\nAre you sure?"
-msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:744
-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 "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
+#: ../../include/enotify.php:130
+#, php-format
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr ""
 
-#: ../../mod/admin.php:785
+#: ../../include/enotify.php:141
 #, php-format
-msgid "Plugin %s disabled."
-msgstr "Wtyczka %s wyłączona."
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s oznaczył cię"
 
-#: ../../mod/admin.php:789
+#: ../../include/enotify.php:142
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "Wtyczka %s właczona."
+msgid "%1$s tagged you at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:799 ../../mod/admin.php:1001
-msgid "Disable"
-msgstr "Wyłącz"
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr ""
 
-#: ../../mod/admin.php:801 ../../mod/admin.php:1003
-msgid "Enable"
-msgstr "Zezwól"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr ""
 
-#: ../../mod/admin.php:823 ../../mod/admin.php:1032
-msgid "Toggle"
-msgstr "Włącz"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:831 ../../mod/admin.php:1042
-msgid "Author: "
-msgstr "Autor: "
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr ""
 
-#: ../../mod/admin.php:832 ../../mod/admin.php:1043
-msgid "Maintainer: "
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
 msgstr ""
 
-#: ../../mod/admin.php:961
-msgid "No themes found."
-msgstr "Nie znaleziono tematu."
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:1024
-msgid "Screenshot"
-msgstr "Zrzut ekranu"
+#: ../../include/enotify.php:174
+#, php-format
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr ""
 
-#: ../../mod/admin.php:1072
-msgid "[Experimental]"
-msgstr "[Eksperymentalne]"
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr ""
 
-#: ../../mod/admin.php:1073
-msgid "[Unsupported]"
-msgstr "[Niewspieralne]"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr ""
 
-#: ../../mod/admin.php:1100
-msgid "Log settings updated."
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
 msgstr ""
 
-#: ../../mod/admin.php:1156
-msgid "Clear"
-msgstr "Wyczyść"
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "Możesz obejrzeć ich profile na %s"
 
-#: ../../mod/admin.php:1162
-msgid "Debugging"
-msgstr "Naprawianie"
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."
 
-#: ../../mod/admin.php:1163
-msgid "Log file"
-msgstr "Plik logów"
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr ""
 
-#: ../../mod/admin.php:1163
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
 msgstr ""
 
-#: ../../mod/admin.php:1164
-msgid "Log level"
-msgstr "Poziom logów"
+#: ../../include/enotify.php:201
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr ""
 
-#: ../../mod/admin.php:1214
-msgid "Close"
-msgstr "Zamknij"
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "Imię:"
 
-#: ../../mod/admin.php:1220
-msgid "FTP Host"
-msgstr "Założyciel FTP"
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "Zdjęcie:"
 
-#: ../../mod/admin.php:1221
-msgid "FTP Path"
-msgstr "Ścieżka FTP"
+#: ../../include/enotify.php:210
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr ""
 
-#: ../../mod/admin.php:1222
-msgid "FTP User"
-msgstr "Użytkownik FTP"
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr ""
 
-#: ../../mod/admin.php:1223
-msgid "FTP Password"
-msgstr "FTP Hasło"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr ""
 
-#: ../../mod/profile.php:21 ../../boot.php:1225
-msgid "Requested profile is not available."
-msgstr "Żądany profil jest niedostępny"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr ""
 
-#: ../../mod/profile.php:155 ../../mod/display.php:99
-msgid "Access to this profile has been restricted."
-msgstr "Ograniczony dostęp do tego konta"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr ""
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "Wskazówki dla nowych użytkowników"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr ""
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0} chce być Twoim znajomym"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr ""
 
-#: ../../mod/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0} wysyła Ci wiadomość"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr ""
 
-#: ../../mod/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0} żądana rejestracja"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr ""
 
-#: ../../mod/ping.php:254
-#, php-format
-msgid "{0} commented %s's post"
-msgstr "{0} skomentował %s wpis"
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr ""
 
-#: ../../mod/ping.php:259
-#, php-format
-msgid "{0} liked %s's post"
-msgstr "{0} polubił wpis %s"
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "Szukanie wg daty"
 
-#: ../../mod/ping.php:264
-#, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0} przestał lubić post %s"
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr ""
 
-#: ../../mod/ping.php:269
-#, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0} jest teraz znajomym %s"
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr ""
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0} utworzony"
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr ""
 
-#: ../../mod/ping.php:279
-#, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0} zaznaczony %s'go post z #%s"
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr ""
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0} wspomniał Cię w swoim wpisie"
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr ""
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "Kontakty spoza członków grupy"
+#: ../../include/features.php:41 ../../mod/search.php:30
+#: ../../mod/network.php:233
+msgid "Saved Searches"
+msgstr "Zapisane wyszukiwania"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
 msgstr ""
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
+#: ../../include/features.php:46
+msgid "Network Tabs"
 msgstr ""
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "Niepowodzenie logowania"
-
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "Kontakt dodany"
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr ""
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "Wspólni znajomi"
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr ""
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
+#: ../../include/features.php:48
+msgid "Network New Tab"
 msgstr ""
 
-#: ../../mod/subthread.php:103
-#, php-format
-msgid "%1$s is following %2$s's %3$s"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
 msgstr ""
 
-#: ../../mod/share.php:44
-msgid "link"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
 msgstr ""
 
-#: ../../mod/display.php:177
-msgid "Item has been removed."
-msgstr "Przedmiot został usunięty"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr ""
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "Aplikacje"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr ""
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "Brak zainstalowanych aplikacji."
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr ""
 
-#: ../../mod/search.php:99 ../../include/text.php:738
-#: ../../include/text.php:739 ../../include/nav.php:118
-msgid "Search"
-msgstr "Szukaj"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr ""
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
-#: ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "Nie znaleziono profilu."
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr ""
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "Konto usunięte."
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr ""
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "Profil-"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr ""
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "Utworzono nowy profil."
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr ""
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "Nie można powileić profilu "
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr ""
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "Nazwa Profilu jest wymagana"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr ""
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
 msgstr ""
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
 msgstr ""
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
 msgstr ""
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
+#: ../../include/features.php:61
+msgid "Star Posts"
 msgstr ""
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "Praca/Zatrudnienie"
-
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "Religia"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr ""
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "Poglądy polityczne"
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "Płeć"
+#: ../../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 ""
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "Orientacja seksualna"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "Strona Główna"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "Wszyscy"
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "Zainteresowania"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "edytuj"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "Adres"
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr "Grupy"
 
-#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
-msgid "Location"
-msgstr "Położenie"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "Edytuj grupy"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "Konto zaktualizowane."
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "Stwórz nową grupę"
 
-#: ../../mod/profiles.php:517
-msgid " and "
-msgstr " i "
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "Kontakt nie jest w żadnej grupie"
 
-#: ../../mod/profiles.php:525
-msgid "public profile"
-msgstr "profil publiczny"
+#: ../../include/group.php:275 ../../mod/network.php:234
+msgid "add"
+msgstr "dodaj"
 
-#: ../../mod/profiles.php:528
+#: ../../include/conversation.php:140 ../../mod/like.php:170
 #, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr ""
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s nie lubi %2$s's %3$s"
 
-#: ../../mod/profiles.php:529
+#: ../../include/conversation.php:207
 #, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - Odwiedźa %1$s's %2$s"
+msgid "%1$s poked %2$s"
+msgstr ""
 
-#: ../../mod/profiles.php:532
+#: ../../include/conversation.php:227 ../../mod/mood.php:62
 #, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
+msgid "%1$s is currently %2$s"
 msgstr ""
 
-#: ../../mod/profiles.php:605
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"
-
-#: ../../mod/profiles.php:625
-msgid "Edit Profile Details"
-msgstr "Edytuj profil."
-
-#: ../../mod/profiles.php:627
-msgid "Change Profile Photo"
-msgstr "Zmień profilowe zdjęcie"
-
-#: ../../mod/profiles.php:628
-msgid "View this profile"
-msgstr "Zobacz ten profil"
+#: ../../include/conversation.php:266 ../../mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s"
 
-#: ../../mod/profiles.php:629
-msgid "Create a new profile using these settings"
-msgstr "Stwórz nowy profil wykorzystując te ustawienia"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr ""
 
-#: ../../mod/profiles.php:630
-msgid "Clone this profile"
-msgstr "Sklonuj ten profil"
+#: ../../include/conversation.php:292
+#, php-format
+msgid "%1$s marked %2$s's %3$s as favorite"
+msgstr ""
 
-#: ../../mod/profiles.php:631
-msgid "Delete this profile"
-msgstr "Usuń ten profil"
+#: ../../include/conversation.php:587 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../object/Item.php:119
+msgid "Select"
+msgstr "Wybierz"
 
-#: ../../mod/profiles.php:632
-msgid "Profile Name:"
-msgstr "Nazwa profilu :"
+#: ../../include/conversation.php:588 ../../mod/admin.php:751
+#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:120
+msgid "Delete"
+msgstr "Usuń"
 
-#: ../../mod/profiles.php:633
-msgid "Your Full Name:"
-msgstr "Twoje imię i nazwisko:"
+#: ../../include/conversation.php:627 ../../mod/content.php:495
+#: ../../mod/content.php:875 ../../mod/content.php:876
+#: ../../object/Item.php:297 ../../object/Item.php:298
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Pokaż %s's profil @ %s"
 
-#: ../../mod/profiles.php:634
-msgid "Title/Description:"
-msgstr "Tytuł/Opis :"
+#: ../../include/conversation.php:639 ../../object/Item.php:288
+msgid "Categories:"
+msgstr "Kategorie:"
 
-#: ../../mod/profiles.php:635
-msgid "Your Gender:"
-msgstr "Twoja płeć:"
+#: ../../include/conversation.php:640 ../../object/Item.php:289
+msgid "Filed under:"
+msgstr ""
 
-#: ../../mod/profiles.php:636
+#: ../../include/conversation.php:647 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../object/Item.php:311
 #, php-format
-msgid "Birthday (%s):"
-msgstr "Urodziny (%s):"
+msgid "%s from %s"
+msgstr "%s od %s"
 
-#: ../../mod/profiles.php:637
-msgid "Street Address:"
-msgstr "Ulica:"
+#: ../../include/conversation.php:662 ../../mod/content.php:520
+msgid "View in context"
+msgstr "Zobacz w kontekście"
 
-#: ../../mod/profiles.php:638
-msgid "Locality/City:"
-msgstr "Miejscowość/Miasto :"
+#: ../../include/conversation.php:664 ../../include/conversation.php:1060
+#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/photos.php:1532 ../../mod/content.php:522
+#: ../../mod/content.php:906 ../../object/Item.php:332
+msgid "Please wait"
+msgstr "Proszę czekać"
 
-#: ../../mod/profiles.php:639
-msgid "Postal/Zip Code:"
-msgstr "Kod Pocztowy :"
+#: ../../include/conversation.php:728
+msgid "remove"
+msgstr "usuń"
 
-#: ../../mod/profiles.php:640
-msgid "Country:"
-msgstr "Kraj:"
+#: ../../include/conversation.php:732
+msgid "Delete Selected Items"
+msgstr "Usuń zaznaczone elementy"
 
-#: ../../mod/profiles.php:641
-msgid "Region/State:"
-msgstr "Region / Stan :"
+#: ../../include/conversation.php:831
+msgid "Follow Thread"
+msgstr ""
 
-#: ../../mod/profiles.php:642
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Stan :"
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s likes this."
+msgstr "%s lubi to."
 
-#: ../../mod/profiles.php:643
-msgid "Who: (if applicable)"
-msgstr "Kto: (jeśli dotyczy)"
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s nie lubi tego."
 
-#: ../../mod/profiles.php:644
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com"
+#: ../../include/conversation.php:905
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr ""
 
-#: ../../mod/profiles.php:645
-msgid "Since [date]:"
-msgstr "Od [data]:"
+#: ../../include/conversation.php:908
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr ""
 
-#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-msgstr "Interesują mnie:"
+#: ../../include/conversation.php:922
+msgid "and"
+msgstr "i"
 
-#: ../../mod/profiles.php:647
-msgid "Homepage URL:"
-msgstr "Strona główna URL:"
+#: ../../include/conversation.php:928
+#, php-format
+msgid ", and %d other people"
+msgstr ", i %d innych ludzi"
 
-#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "Miasto rodzinne:"
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s like this."
+msgstr "%s lubi to."
 
-#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "Poglądy polityczne:"
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s don't like this."
+msgstr "%s nie lubi tego."
 
-#: ../../mod/profiles.php:650
-msgid "Religious Views:"
-msgstr "Poglądy religijne:"
+#: ../../include/conversation.php:957 ../../include/conversation.php:975
+msgid "Visible to <strong>everybody</strong>"
+msgstr "Widoczne dla <strong>wszystkich</strong>"
 
-#: ../../mod/profiles.php:651
-msgid "Public Keywords:"
-msgstr "Publiczne słowa kluczowe :"
+#: ../../include/conversation.php:958 ../../include/conversation.php:976
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+msgid "Please enter a link URL:"
+msgstr "Proszę wpisać adres URL:"
 
-#: ../../mod/profiles.php:652
-msgid "Private Keywords:"
-msgstr "Prywatne słowa kluczowe :"
+#: ../../include/conversation.php:959 ../../include/conversation.php:977
+msgid "Please enter a video link/URL:"
+msgstr "Podaj link do filmu"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "Lubi:"
+#: ../../include/conversation.php:960 ../../include/conversation.php:978
+msgid "Please enter an audio link/URL:"
+msgstr "Podaj link do muzyki"
 
-#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
+#: ../../include/conversation.php:961 ../../include/conversation.php:979
+msgid "Tag term:"
 msgstr ""
 
-#: ../../mod/profiles.php:655
-msgid "Example: fishing photography software"
-msgstr "Przykład: kończenie oprogramowania fotografii"
+#: ../../include/conversation.php:962 ../../include/conversation.php:980
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "Zapisz w folderze:"
 
-#: ../../mod/profiles.php:656
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"
+#: ../../include/conversation.php:963 ../../include/conversation.php:981
+msgid "Where are you right now?"
+msgstr "Gdzie teraz jesteś?"
 
-#: ../../mod/profiles.php:657
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
+#: ../../include/conversation.php:964
+msgid "Delete item(s)?"
+msgstr ""
 
-#: ../../mod/profiles.php:658
-msgid "Tell us about yourself..."
-msgstr "Napisz o sobie..."
+#: ../../include/conversation.php:1006
+msgid "Post to Email"
+msgstr "Wyślij poprzez email"
 
-#: ../../mod/profiles.php:659
-msgid "Hobbies/Interests"
-msgstr "Zainteresowania"
+#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
+msgid "Share"
+msgstr "Podziel się"
 
-#: ../../mod/profiles.php:660
-msgid "Contact information and Social Networks"
-msgstr "Informacje kontaktowe i Sieci Społeczne"
+#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
+#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "Wyślij zdjęcie"
 
-#: ../../mod/profiles.php:661
-msgid "Musical interests"
-msgstr "Muzyka"
+#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "dodaj zdjęcie"
 
-#: ../../mod/profiles.php:662
-msgid "Books, literature"
-msgstr "Literatura"
+#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "Przyłącz plik"
 
-#: ../../mod/profiles.php:663
-msgid "Television"
-msgstr "Telewizja"
+#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "załącz plik"
 
-#: ../../mod/profiles.php:664
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/taniec/kultura/rozrywka"
+#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
+#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "Wstaw link"
 
-#: ../../mod/profiles.php:665
-msgid "Love/romance"
-msgstr "Miłość/romans"
+#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "Adres www"
 
-#: ../../mod/profiles.php:666
-msgid "Work/employment"
-msgstr "Praca/zatrudnienie"
+#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "Wstaw link wideo"
 
-#: ../../mod/profiles.php:667
-msgid "School/education"
-msgstr "Szkoła/edukacja"
+#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "link do filmu"
 
-#: ../../mod/profiles.php:672
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
+#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "Wstaw link audio"
 
-#: ../../mod/profiles.php:682 ../../mod/directory.php:111
-#: ../../addon/forumdirectory/forumdirectory.php:133
-msgid "Age: "
-msgstr "Wiek: "
+#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "Link audio"
 
-#: ../../mod/profiles.php:721
-msgid "Edit/Manage Profiles"
-msgstr "Edytuj/Zarządzaj Profilami"
+#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "Ustaw swoje położenie"
 
-#: ../../mod/profiles.php:722 ../../boot.php:1345
-msgid "Change profile photo"
-msgstr "Zmień zdjęcie profilowe"
+#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "wybierz lokalizację"
 
-#: ../../mod/profiles.php:723 ../../boot.php:1346
-msgid "Create New Profile"
-msgstr "Stwórz nowy profil"
+#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "Wyczyść położenie przeglądarki"
 
-#: ../../mod/profiles.php:734 ../../boot.php:1356
-msgid "Profile Image"
-msgstr "Obraz profilowy"
+#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "wyczyść lokalizację"
 
-#: ../../mod/profiles.php:736 ../../boot.php:1359
-msgid "visible to everybody"
-msgstr "widoczne dla wszystkich"
+#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "Ustaw tytuł"
 
-#: ../../mod/profiles.php:737 ../../boot.php:1360
-msgid "Edit visibility"
-msgstr "Edytuj widoczność"
+#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr ""
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:944
-#: ../../include/conversation.php:962
-msgid "Save to Folder:"
-msgstr "Zapisz w folderze:"
+#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "Ustawienia uprawnień"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "- wybierz -"
+#: ../../include/conversation.php:1062
+msgid "permissions"
+msgstr "zezwolenia"
 
-#: ../../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 zaznaczył %2$s'go %3$s przy użyciu %4$s"
+#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "CC: adresy e-mail"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr ""
+#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "Publiczny post"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr ""
+#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "Przykład: bob@example.com, mary@example.com"
 
-#: ../../mod/delegate.php:123
-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 ""
+#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../object/Item.php:652
+msgid "Preview"
+msgstr "Podgląd"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
+#: ../../include/conversation.php:1086
+msgid "Post to Groups"
 msgstr ""
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
+#: ../../include/conversation.php:1087
+msgid "Post to Contacts"
 msgstr ""
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
+#: ../../include/conversation.php:1088
+msgid "Private post"
 msgstr ""
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "Dodaj"
-
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "Brak wpisów."
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[bez tematu]"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr ""
+#: ../../include/message.php:144 ../../mod/item.php:443
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151
+msgid "Wall Photos"
+msgstr "Tablica zdjęć"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr ""
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "Brak nowych zdarzeń"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
 msgstr ""
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr ""
+#: ../../include/nav.php:73 ../../boot.php:1057
+msgid "Logout"
+msgstr "Wyloguj się"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr ""
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "Zakończ sesję"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr ""
+#: ../../include/nav.php:76 ../../boot.php:1861
+msgid "Status"
+msgstr "Status"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr ""
+#: ../../include/nav.php:76 ../../include/nav.php:143
+#: ../../view/theme/diabook/theme.php:87
+msgid "Your posts and conversations"
+msgstr "Twoje posty i rozmowy"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr ""
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
+msgid "Your profile page"
+msgstr "Twoja strona profilowa"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr ""
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
+msgid "Photos"
+msgstr "Zdjęcia"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr ""
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
+msgid "Your photos"
+msgstr "Twoje zdjęcia"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr ""
+#: ../../include/nav.php:79 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
+msgid "Events"
+msgstr "Wydarzenia"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr ""
+#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
+msgid "Your events"
+msgstr "Twoje wydarzenia"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr ""
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Personal notes"
+msgstr "Osobiste notatki"
 
-#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "Osoby, które możesz znać"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Your personal photos"
+msgstr "Twoje osobiste zdjęcia"
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr ""
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "Zaloguj się"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "Ignoruj/Ukryj"
+#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+msgid "Home"
+msgstr "Dom"
 
-#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
-#: ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "Globalne Położenie"
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "Strona startowa"
 
-#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
-msgid "Find on this site"
-msgstr "Znajdź na tej stronie"
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
+msgid "Register"
+msgstr "Zarejestruj"
 
-#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
-msgid "Site Directory"
-msgstr "Katalog Strony"
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "Załóż konto"
 
-#: ../../mod/directory.php:114
-#: ../../addon/forumdirectory/forumdirectory.php:136
-msgid "Gender: "
-msgstr "Płeć: "
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "Pomoc i dokumentacja"
 
-#: ../../mod/directory.php:136
-#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../boot.php:1381
-msgid "Gender:"
-msgstr "Płeć:"
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "Aplikacje"
 
-#: ../../mod/directory.php:138
-#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../boot.php:1384
-msgid "Status:"
-msgstr "Status"
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "Wtyczki, aplikacje, narzędzia, gry"
 
-#: ../../mod/directory.php:140
-#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../boot.php:1386
-msgid "Homepage:"
-msgstr "Strona główna:"
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "Przeszukaj zawartość strony"
 
-#: ../../mod/directory.php:142
-#: ../../addon/forumdirectory/forumdirectory.php:164
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "O:"
+#: ../../include/nav.php:128 ../../mod/community.php:32
+#: ../../view/theme/diabook/theme.php:93
+msgid "Community"
+msgstr "Społeczność"
 
-#: ../../mod/directory.php:187
-#: ../../addon/forumdirectory/forumdirectory.php:201
-msgid "No entries (some entries may be hidden)."
-msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "Rozmowy na tej stronie"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
+#: ../../include/nav.php:130
+msgid "Directory"
+msgstr "Katalog"
+
+#: ../../include/nav.php:130
+msgid "People directory"
 msgstr ""
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : Niepoprawny adres email."
+#: ../../include/nav.php:140 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "Sieć"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "Dołącz do nas na Friendica"
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "Rozmowy Twoich przyjaciół"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
+#: ../../include/nav.php:141
+msgid "Network Reset"
 msgstr ""
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : Dostarczenie wiadomości nieudane."
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr ""
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d wiadomość wysłana."
-msgstr[1] "%d wiadomości wysłane."
-msgstr[2] "%d wysłano ."
+#: ../../include/nav.php:149 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "Wstępy"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "Nie masz więcej zaproszeń"
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "Podania o przyjęcie do grona znajomych"
 
-#: ../../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 ""
+#: ../../include/nav.php:150 ../../mod/notifications.php:220
+msgid "Notifications"
+msgstr "Powiadomienia"
 
-#: ../../mod/invite.php:122
-#, php-format
-msgid ""
-"To accept this invitation, please visit and register at %s or any other "
-"public Friendica website."
-msgstr ""
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "Zobacz wszystkie powiadomienia"
 
-#: ../../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."
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
 msgstr ""
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr ""
+#: ../../include/nav.php:156 ../../mod/message.php:182
+#: ../../mod/notifications.php:103
+msgid "Messages"
+msgstr "Wiadomości"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "Wyślij zaproszenia"
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "Prywatne maile"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "Wprowadź adresy email, jeden na linijkę:"
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "Odebrane"
 
-#: ../../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."
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "Wysłane"
+
+#: ../../include/nav.php:159 ../../mod/message.php:9
+msgid "New Message"
+msgstr "Nowa wiadomość"
+
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "Zarządzaj"
+
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "Zarządzaj innymi stronami"
+
+#: ../../include/nav.php:165
+msgid "Delegations"
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../include/nav.php:165 ../../mod/delegate.php:121
+msgid "Delegate Page Management"
 msgstr ""
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"
+#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
+msgid "Account settings"
+msgstr "Ustawienia konta"
 
-#: ../../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 ""
+#: ../../include/nav.php:169 ../../boot.php:1360
+msgid "Profiles"
+msgstr "Profile"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
 msgstr ""
 
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
+#: ../../include/nav.php:171 ../../mod/contacts.php:607
+#: ../../view/theme/diabook/theme.php:89
+msgid "Contacts"
+msgstr "Kontakty"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "Nieoczekiwana odpowiedź od strony zdalnej"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "Zarządzaj listą przyjaciół i kontaktami"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "Potwierdzenie ukończone poprawnie"
+#: ../../include/nav.php:178 ../../mod/admin.php:120
+msgid "Admin"
+msgstr "Administator"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "Zdalna strona zgłoszona:"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "Konfiguracja i ustawienia instancji"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "Nieudane lub unieważnione wprowadzenie."
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr ""
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "Nie można ustawić zdjęcia kontaktu."
+#: ../../include/network.php:875
+msgid "view full size"
+msgstr "Zobacz pełen rozmiar"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
-#: ../../include/conversation.php:172
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s jest teraz znajomym z %2$s"
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "Osadzona zawartość"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "Nie znaleziono użytkownika dla '%s'"
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "Osadzanie wyłączone"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "Klucz kodujący jest najwyraźniej zepsuty"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "Witaj "
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "Proszę dodać zdjęcie profilowe."
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "Nie znaleziono kontaktu na naszej stronie"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "Witaj ponownie "
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: ../../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/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 "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
+#: ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
+msgstr "Nie znaleziono profilu."
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "Konto usunięte."
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "Profil-"
+
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "Utworzono nowy profil."
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Połączenie zaakceptowane %s"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "Nie można powileić profilu "
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr ""
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "Nazwa Profilu jest wymagana"
 
-#: ../../addon/fromgplus/fromgplus.php:33
-#: ../../addon.old/fromgplus/fromgplus.php:29
-msgid "Google+ Import Settings"
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:36
-#: ../../addon.old/fromgplus/fromgplus.php:32
-msgid "Enable Google+ Import"
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:39
-#: ../../addon.old/fromgplus/fromgplus.php:35
-msgid "Google Account ID"
+#: ../../mod/profiles.php:325
+msgid "Likes"
 msgstr ""
 
-#: ../../addon/fromgplus/fromgplus.php:59
-#: ../../addon.old/fromgplus/fromgplus.php:55
-msgid "Google+ Import Settings saved."
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:525
-#: ../../addon.old/facebook/facebook.php:523
-msgid "Facebook disabled"
-msgstr "Facebook wyłączony"
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "Praca/Zatrudnienie"
 
-#: ../../addon/facebook/facebook.php:530
-#: ../../addon.old/facebook/facebook.php:528
-msgid "Updating contacts"
-msgstr "Aktualizacja kontaktów"
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "Religia"
 
-#: ../../addon/facebook/facebook.php:553 ../../addon/fbpost/fbpost.php:203
-#: ../../addon.old/facebook/facebook.php:551
-#: ../../addon.old/fbpost/fbpost.php:192
-msgid "Facebook API key is missing."
-msgstr "Brakuje klucza API z facebooka."
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "Poglądy polityczne"
 
-#: ../../addon/facebook/facebook.php:560
-#: ../../addon.old/facebook/facebook.php:558
-msgid "Facebook Connect"
-msgstr "Połącz konto z kontem Facebook"
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "Płeć"
 
-#: ../../addon/facebook/facebook.php:566
-#: ../../addon.old/facebook/facebook.php:564
-msgid "Install Facebook connector for this account."
-msgstr "Zainstaluj wtyczkę Facebook "
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "Orientacja seksualna"
 
-#: ../../addon/facebook/facebook.php:573
-#: ../../addon.old/facebook/facebook.php:571
-msgid "Remove Facebook connector"
-msgstr "Usuń wtyczkę Facebook"
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "Strona Główna"
 
-#: ../../addon/facebook/facebook.php:578 ../../addon/fbpost/fbpost.php:228
-#: ../../addon.old/facebook/facebook.php:576
-#: ../../addon.old/fbpost/fbpost.php:217
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]"
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "Zainteresowania"
 
-#: ../../addon/facebook/facebook.php:585 ../../addon/fbpost/fbpost.php:235
-#: ../../addon.old/facebook/facebook.php:583
-#: ../../addon.old/fbpost/fbpost.php:224
-msgid "Post to Facebook by default"
-msgstr "Domyślnie opublikuj na stronie Facebook"
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "Adres"
 
-#: ../../addon/facebook/facebook.php:591
-#: ../../addon.old/facebook/facebook.php:589
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
-msgstr ""
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr "Konto zaktualizowane."
 
-#: ../../addon/facebook/facebook.php:595
-#: ../../addon.old/facebook/facebook.php:593
-msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
-msgstr ""
+#: ../../mod/profiles.php:517
+msgid " and "
+msgstr " i "
 
-#: ../../addon/facebook/facebook.php:598
-#: ../../addon.old/facebook/facebook.php:596
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook"
+#: ../../mod/profiles.php:525
+msgid "public profile"
+msgstr "profil publiczny"
 
-#: ../../addon/facebook/facebook.php:600
-#: ../../addon.old/facebook/facebook.php:598
-msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
+#: ../../mod/profiles.php:528
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:601
-#: ../../addon.old/facebook/facebook.php:599
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr ""
+#: ../../mod/profiles.php:529
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - Odwiedźa %1$s's %2$s"
 
-#: ../../addon/facebook/facebook.php:602
-#: ../../addon.old/facebook/facebook.php:600
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
+#: ../../mod/profiles.php:532
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
 msgstr ""
 
-#: ../../addon/facebook/facebook.php:606
-#: ../../addon.old/facebook/facebook.php:604
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr ""
+#: ../../mod/profiles.php:605
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?"
 
-#: ../../addon/facebook/facebook.php:611
-#: ../../addon.old/facebook/facebook.php:609
-msgid "Do not import your Facebook profile wall conversations"
-msgstr ""
+#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
+msgid "No"
+msgstr "Nie"
 
-#: ../../addon/facebook/facebook.php:613
-#: ../../addon.old/facebook/facebook.php:611
-msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr ""
+#: ../../mod/profiles.php:625
+msgid "Edit Profile Details"
+msgstr "Edytuj profil."
 
-#: ../../addon/facebook/facebook.php:618
-#: ../../addon.old/facebook/facebook.php:616
-msgid "Comma separated applications to ignore"
-msgstr ""
+#: ../../mod/profiles.php:627
+msgid "Change Profile Photo"
+msgstr "Zmień profilowe zdjęcie"
 
-#: ../../addon/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:700
-msgid "Problems with Facebook Real-Time Updates"
-msgstr "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a"
+#: ../../mod/profiles.php:628
+msgid "View this profile"
+msgstr "Zobacz ten profil"
 
-#: ../../addon/facebook/facebook.php:704
-#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67
-#: ../../addon.old/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:1200
-#: ../../addon.old/fbpost/fbpost.php:661
-#: ../../addon.old/public_server/public_server.php:62
-#: ../../addon.old/testdrive/testdrive.php:67
-msgid "Administrator"
-msgstr "Administrator"
+#: ../../mod/profiles.php:629
+msgid "Create a new profile using these settings"
+msgstr "Stwórz nowy profil wykorzystując te ustawienia"
 
-#: ../../addon/facebook/facebook.php:731
-#: ../../addon.old/facebook/facebook.php:729
-msgid "Facebook Connector Settings"
-msgstr "Ustawienia połączenia z Facebook"
+#: ../../mod/profiles.php:630
+msgid "Clone this profile"
+msgstr "Sklonuj ten profil"
 
-#: ../../addon/facebook/facebook.php:746 ../../addon/fbpost/fbpost.php:310
-#: ../../addon.old/facebook/facebook.php:744
-#: ../../addon.old/fbpost/fbpost.php:255
-msgid "Facebook API Key"
-msgstr "Facebook API Key"
+#: ../../mod/profiles.php:631
+msgid "Delete this profile"
+msgstr "Usuń ten profil"
 
-#: ../../addon/facebook/facebook.php:756 ../../addon/fbpost/fbpost.php:317
-#: ../../addon.old/facebook/facebook.php:754
-#: ../../addon.old/fbpost/fbpost.php:262
-msgid ""
-"Error: it appears that you have specified the App-ID and -Secret in your "
-".htconfig.php file. As long as they are specified there, they cannot be set "
-"using this form.<br><br>"
-msgstr ""
+#: ../../mod/profiles.php:632
+msgid "Profile Name:"
+msgstr "Nazwa profilu :"
 
-#: ../../addon/facebook/facebook.php:761
-#: ../../addon.old/facebook/facebook.php:759
-msgid ""
-"Error: the given API Key seems to be incorrect (the application access token"
-" could not be retrieved)."
-msgstr ""
+#: ../../mod/profiles.php:633
+msgid "Your Full Name:"
+msgstr "Twoje imię i nazwisko:"
 
-#: ../../addon/facebook/facebook.php:763
-#: ../../addon.old/facebook/facebook.php:761
-msgid "The given API Key seems to work correctly."
-msgstr ""
+#: ../../mod/profiles.php:634
+msgid "Title/Description:"
+msgstr "Tytuł/Opis :"
+
+#: ../../mod/profiles.php:635
+msgid "Your Gender:"
+msgstr "Twoja płeć:"
+
+#: ../../mod/profiles.php:636
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Urodziny (%s):"
+
+#: ../../mod/profiles.php:637
+msgid "Street Address:"
+msgstr "Ulica:"
+
+#: ../../mod/profiles.php:638
+msgid "Locality/City:"
+msgstr "Miejscowość/Miasto :"
+
+#: ../../mod/profiles.php:639
+msgid "Postal/Zip Code:"
+msgstr "Kod Pocztowy :"
 
-#: ../../addon/facebook/facebook.php:765
-#: ../../addon.old/facebook/facebook.php:763
-msgid ""
-"The correctness of the API Key could not be detected. Something strange's "
-"going on."
-msgstr ""
+#: ../../mod/profiles.php:640
+msgid "Country:"
+msgstr "Kraj:"
 
-#: ../../addon/facebook/facebook.php:768 ../../addon/fbpost/fbpost.php:319
-#: ../../addon.old/facebook/facebook.php:766
-#: ../../addon.old/fbpost/fbpost.php:264
-msgid "App-ID / API-Key"
-msgstr "App-ID / API-Key"
+#: ../../mod/profiles.php:641
+msgid "Region/State:"
+msgstr "Region / Stan :"
 
-#: ../../addon/facebook/facebook.php:769 ../../addon/fbpost/fbpost.php:320
-#: ../../addon.old/facebook/facebook.php:767
-#: ../../addon.old/fbpost/fbpost.php:265
-msgid "Application secret"
-msgstr ""
+#: ../../mod/profiles.php:642
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stan :"
 
-#: ../../addon/facebook/facebook.php:770
-#: ../../addon.old/facebook/facebook.php:768
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
-msgstr ""
+#: ../../mod/profiles.php:643
+msgid "Who: (if applicable)"
+msgstr "Kto: (jeśli dotyczy)"
 
-#: ../../addon/facebook/facebook.php:771
-#: ../../addon.old/facebook/facebook.php:769
-msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
-msgstr ""
+#: ../../mod/profiles.php:644
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com"
 
-#: ../../addon/facebook/facebook.php:775
-#: ../../addon.old/facebook/facebook.php:773
-msgid "Real-Time Updates"
-msgstr "Aktualizacje w czasie rzeczywistym"
+#: ../../mod/profiles.php:645
+msgid "Since [date]:"
+msgstr "Od [data]:"
 
-#: ../../addon/facebook/facebook.php:779
-#: ../../addon.old/facebook/facebook.php:777
-msgid "Real-Time Updates are activated."
-msgstr "Aktualizacje w czasie rzeczywistym zostały aktywowane."
+#: ../../mod/profiles.php:647
+msgid "Homepage URL:"
+msgstr "Strona główna URL:"
 
-#: ../../addon/facebook/facebook.php:780
-#: ../../addon.old/facebook/facebook.php:778
-msgid "Deactivate Real-Time Updates"
-msgstr "Zdezaktywuj aktualizacje w czasie rzeczywistym"
+#: ../../mod/profiles.php:650
+msgid "Religious Views:"
+msgstr "Poglądy religijne:"
 
-#: ../../addon/facebook/facebook.php:782
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Real-Time Updates not activated."
-msgstr "Aktualizacje w czasie rzeczywistym nie zostały aktywowane."
+#: ../../mod/profiles.php:651
+msgid "Public Keywords:"
+msgstr "Publiczne słowa kluczowe :"
 
-#: ../../addon/facebook/facebook.php:782
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Activate Real-Time Updates"
-msgstr "Aktywuj aktualizacje w czasie rzeczywistym"
+#: ../../mod/profiles.php:652
+msgid "Private Keywords:"
+msgstr "Prywatne słowa kluczowe :"
 
-#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
-#: ../../addon/dav/friendica/layout.fnk.php:361
-#: ../../addon.old/facebook/facebook.php:799
-#: ../../addon.old/fbpost/fbpost.php:282
-#: ../../addon.old/dav/friendica/layout.fnk.php:361
-msgid "The new values have been saved."
-msgstr ""
+#: ../../mod/profiles.php:655
+msgid "Example: fishing photography software"
+msgstr "Przykład: kończenie oprogramowania fotografii"
 
-#: ../../addon/facebook/facebook.php:825 ../../addon/fbpost/fbpost.php:356
-#: ../../addon.old/facebook/facebook.php:823
-#: ../../addon.old/fbpost/fbpost.php:301
-msgid "Post to Facebook"
-msgstr "Post na Facebook"
+#: ../../mod/profiles.php:656
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)"
 
-#: ../../addon/facebook/facebook.php:923 ../../addon/fbpost/fbpost.php:487
-#: ../../addon.old/facebook/facebook.php:921
-#: ../../addon.old/fbpost/fbpost.php:399
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci"
+#: ../../mod/profiles.php:657
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
 
-#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
-#: ../../addon.old/facebook/facebook.php:1149
-#: ../../addon.old/fbpost/fbpost.php:610
-msgid "View on Friendica"
-msgstr "Zobacz na Friendice"
+#: ../../mod/profiles.php:658
+msgid "Tell us about yourself..."
+msgstr "Napisz o sobie..."
 
-#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
-#: ../../addon.old/facebook/facebook.php:1182
-#: ../../addon.old/fbpost/fbpost.php:643
-msgid "Facebook post failed. Queued for retry."
-msgstr ""
+#: ../../mod/profiles.php:659
+msgid "Hobbies/Interests"
+msgstr "Zainteresowania"
 
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
-#: ../../addon.old/facebook/facebook.php:1222
-#: ../../addon.old/fbpost/fbpost.php:683
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
-msgstr ""
+#: ../../mod/profiles.php:660
+msgid "Contact information and Social Networks"
+msgstr "Informacje kontaktowe i Sieci Społeczne"
 
-#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
-#: ../../addon.old/facebook/facebook.php:1223
-#: ../../addon.old/fbpost/fbpost.php:684
-msgid "Facebook connection became invalid"
-msgstr "Błędne połączenie z Facebookiem"
+#: ../../mod/profiles.php:661
+msgid "Musical interests"
+msgstr "Muzyka"
 
-#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
-#: ../../addon.old/facebook/facebook.php:1224
-#: ../../addon.old/fbpost/fbpost.php:685
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr ""
+#: ../../mod/profiles.php:662
+msgid "Books, literature"
+msgstr "Literatura"
 
-#: ../../addon/snautofollow/snautofollow.php:32
-#: ../../addon.old/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
-msgstr ""
+#: ../../mod/profiles.php:663
+msgid "Television"
+msgstr "Telewizja"
 
-#: ../../addon/snautofollow/snautofollow.php:56
-#: ../../addon.old/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
-msgstr ""
+#: ../../mod/profiles.php:664
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/taniec/kultura/rozrywka"
 
-#: ../../addon/snautofollow/snautofollow.php:58
-#: ../../addon.old/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
-msgstr ""
+#: ../../mod/profiles.php:665
+msgid "Love/romance"
+msgstr "Miłość/romans"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
-msgid "Lifetime of the cache (in hours)"
-msgstr ""
+#: ../../mod/profiles.php:666
+msgid "Work/employment"
+msgstr "Praca/zatrudnienie"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
-msgid "Cache Statistics"
-msgstr ""
+#: ../../mod/profiles.php:667
+msgid "School/education"
+msgstr "Szkoła/edukacja"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
-msgid "Number of items"
-msgstr "Numery elementów"
+#: ../../mod/profiles.php:672
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
+msgstr "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu."
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
-msgid "Size of the cache"
-msgstr ""
+#: ../../mod/profiles.php:721
+msgid "Edit/Manage Profiles"
+msgstr "Edytuj/Zarządzaj Profilami"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
-msgid "Delete the whole cache"
-msgstr ""
+#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
+msgid "Change profile photo"
+msgstr "Zmień zdjęcie profilowe"
 
-#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172
-msgid "Facebook Post disabled"
-msgstr ""
+#: ../../mod/profiles.php:723 ../../boot.php:1367
+msgid "Create New Profile"
+msgstr "Stwórz nowy profil"
 
-#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199
-msgid "Facebook Post"
-msgstr "Wpis z Facebooka"
+#: ../../mod/profiles.php:734 ../../boot.php:1377
+msgid "Profile Image"
+msgstr "Obraz profilowy"
 
-#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205
-msgid "Install Facebook Post connector for this account."
-msgstr ""
+#: ../../mod/profiles.php:736 ../../boot.php:1380
+msgid "visible to everybody"
+msgstr "widoczne dla wszystkich"
 
-#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212
-msgid "Remove Facebook Post connector"
-msgstr ""
+#: ../../mod/profiles.php:737 ../../boot.php:1381
+msgid "Edit visibility"
+msgstr "Edytuj widoczność"
 
-#: ../../addon/fbpost/fbpost.php:239
-msgid "Suppress \"View on friendica\""
-msgstr ""
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
+msgid "Permission denied"
+msgstr "Odmowa dostępu"
 
-#: ../../addon/fbpost/fbpost.php:243
-msgid "Mirror wall posts from facebook to friendica."
-msgstr ""
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Nieprawidłowa nazwa użytkownika."
 
-#: ../../addon/fbpost/fbpost.php:253
-msgid "Post to page/group:"
-msgstr "Napisz na stronę/grupę:"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Ustawienia widoczności profilu"
 
-#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240
-msgid "Facebook Post Settings"
-msgstr "Ustawienia wpisu z Facebooka"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
 
-#: ../../addon/fbpost/fbpost.php:375
-#, php-format
-msgid "%s:"
-msgstr ""
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Widoczne dla"
 
-#: ../../addon/widgets/widget_like.php:59
-#: ../../addon.old/widgets/widget_like.php:58
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] " %d osoba lubi to"
-msgstr[1] " %d osób lubi to"
-msgstr[2] " %d osób lubi to"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
+
+#: ../../mod/notes.php:44 ../../boot.php:1892
+msgid "Personal Notes"
+msgstr "Osobiste notatki"
 
-#: ../../addon/widgets/widget_like.php:62
-#: ../../addon.old/widgets/widget_like.php:61
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
 #, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] " %d osoba nie lubi tego"
-msgstr[1] " %d osób tego nie lubi"
-msgstr[2] " %d osób tego nie lubi"
+msgid "Visit %s's profile [%s]"
+msgstr "Obejrzyj %s's profil [%s]"
 
-#: ../../addon/widgets/widget_friendheader.php:40
-#: ../../addon.old/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
-msgstr "Zostań dodany do listy!"
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "Edytuj kontakt"
 
-#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56
-msgid "Generate new key"
-msgstr "Stwórz nowy klucz"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "Kontakty spoza członków grupy"
 
-#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59
-msgid "Widgets key"
-msgstr ""
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0} chce być Twoim znajomym"
 
-#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61
-msgid "Widgets available"
-msgstr "Widgety są dostępne"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0} wysyła Ci wiadomość"
 
-#: ../../addon/widgets/widget_friends.php:40
-#: ../../addon.old/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
-msgstr "Połączono z Friendica!"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0} żądana rejestracja"
 
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr ""
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} skomentował %s wpis"
 
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslapped"
-msgstr ""
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0} polubił wpis %s"
 
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shag"
-msgstr ""
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0} przestał lubić post %s"
 
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr ""
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0} jest teraz znajomym %s"
 
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "do something obscenely biological to"
-msgstr ""
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0} utworzony"
 
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "did something obscenely biological to"
-msgstr ""
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0} zaznaczony %s'go post z #%s"
 
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "point out the poke feature to"
-msgstr ""
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0} wspomniał Cię w swoim wpisie"
 
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "pointed out the poke feature to"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declare undying love for"
-msgstr ""
+#: ../../mod/admin.php:96 ../../mod/admin.php:474
+msgid "Site"
+msgstr "Strona"
 
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declared undying love for"
-msgstr ""
+#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756
+msgid "Users"
+msgstr "Użytkownicy"
 
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patent"
-msgstr ""
+#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881
+msgid "Plugins"
+msgstr "Wtyczki"
 
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patented"
-msgstr ""
+#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081
+msgid "Themes"
+msgstr "Temat"
 
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroke beard"
+#: ../../mod/admin.php:100
+msgid "DB updates"
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroked their beard at"
-msgstr ""
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168
+msgid "Logs"
+msgstr "Logi"
 
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoan the declining standards of modern secondary and tertiary education to"
-msgstr ""
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "Polecane wtyczki"
 
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoans the declining standards of modern secondary and tertiary education "
-"to"
-msgstr ""
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "Rejestracje użytkownika czekają na potwierdzenie."
 
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hug"
-msgstr "przytul"
+#: ../../mod/admin.php:182 ../../mod/admin.php:714
+msgid "Normal Account"
+msgstr "Konto normalne"
 
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hugged"
-msgstr "przytulony"
+#: ../../mod/admin.php:183 ../../mod/admin.php:715
+msgid "Soapbox Account"
+msgstr "Konto Soapbox"
 
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kiss"
-msgstr "pocałuj"
+#: ../../mod/admin.php:184 ../../mod/admin.php:716
+msgid "Community/Celebrity Account"
+msgstr "Konto społeczności/gwiazdy"
 
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kissed"
-msgstr "pocałowany"
+#: ../../mod/admin.php:185 ../../mod/admin.php:717
+msgid "Automatic Friend Account"
+msgstr "Automatyczny przyjaciel konta"
 
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raise eyebrows at"
+#: ../../mod/admin.php:186
+msgid "Blog Account"
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raised their eyebrows at"
-msgstr ""
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "Forum Prywatne"
 
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insult"
+#: ../../mod/admin.php:206
+msgid "Message queues"
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insulted"
-msgstr ""
+#: ../../mod/admin.php:211 ../../mod/admin.php:473 ../../mod/admin.php:742
+#: ../../mod/admin.php:838 ../../mod/admin.php:880 ../../mod/admin.php:1046
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1167
+msgid "Administration"
+msgstr "Administracja"
 
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praise"
-msgstr ""
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "Skrót"
 
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praised"
-msgstr ""
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "Zarejestrowani użytkownicy"
 
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "be dubious of"
-msgstr ""
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "Rejestracje w toku."
 
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "was dubious of"
-msgstr ""
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "Wersja"
 
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "eat"
-msgstr ""
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "Aktywne pluginy"
 
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "ate"
-msgstr ""
+#: ../../mod/admin.php:398
+msgid "Site settings updated."
+msgstr "Ustawienia strony zaktualizowane"
 
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggle and fawn at"
+#: ../../mod/admin.php:427 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggled and fawned at"
+#: ../../mod/admin.php:444
+msgid "Multi user instance"
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubt"
-msgstr ""
+#: ../../mod/admin.php:460
+msgid "Closed"
+msgstr "Zamknięty"
 
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubted"
-msgstr ""
+#: ../../mod/admin.php:461
+msgid "Requires approval"
+msgstr "Wymagane zatwierdzenie."
 
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glare"
+#: ../../mod/admin.php:462
+msgid "Open"
+msgstr "Otwórz"
+
+#: ../../mod/admin.php:466
+msgid "No SSL policy, links will track page SSL state"
 msgstr ""
 
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glared at"
+#: ../../mod/admin.php:467
+msgid "Force all links to use SSL"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
-msgid "YourLS Settings"
+#: ../../mod/admin.php:468
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
 msgstr ""
 
-#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
-msgid "URL: http://"
-msgstr "URL: http://"
+#: ../../mod/admin.php:476 ../../mod/register.php:261
+msgid "Registration"
+msgstr "Rejestracja"
 
-#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
-msgid "Username:"
-msgstr "Nazwa użytkownika:"
+#: ../../mod/admin.php:477
+msgid "File upload"
+msgstr "Plik załadowano"
 
-#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
-msgid "Password:"
-msgstr "Hasło:"
+#: ../../mod/admin.php:478
+msgid "Policies"
+msgstr "zasady"
 
-#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
-msgid "Use SSL "
-msgstr "Użyj SSL"
+#: ../../mod/admin.php:479
+msgid "Advanced"
+msgstr "Zaawansowany"
 
-#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
-msgid "yourls Settings saved."
+#: ../../mod/admin.php:480
+msgid "Performance"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
-msgstr "Post do LiveJournal"
+#: ../../mod/admin.php:485
+msgid "Banner/Logo"
+msgstr "Logo"
 
-#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
-msgstr "Ustawienia postów do LiveJournal"
+#: ../../mod/admin.php:486
+msgid "System language"
+msgstr "Język systemu"
 
-#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
+#: ../../mod/admin.php:487
+msgid "System theme"
+msgstr "Motyw systemowy"
+
+#: ../../mod/admin.php:487
+msgid ""
+"Default system theme - may be over-ridden by user profiles - <a href='#' "
+"id='cnftheme'>change theme settings</a>"
 msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
-msgid "LiveJournal username"
-msgstr "Nazwa użytkownika do LiveJournal"
+#: ../../mod/admin.php:488
+msgid "Mobile system theme"
+msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
-msgid "LiveJournal password"
-msgstr "Hasło do LiveJournal"
+#: ../../mod/admin.php:488
+msgid "Theme for mobile devices"
+msgstr ""
 
-#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
-msgstr "automatycznie publikuj na LiveJournal"
+#: ../../mod/admin.php:489
+msgid "SSL link policy"
+msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
+#: ../../mod/admin.php:489
+msgid "Determines whether generated links should be forced to use SSL"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
-msgid ""
-"This plugin looks in posts for the words/text you specify below, and "
-"collapses any content containing those keywords so it is not displayed at "
-"inappropriate times, such as sexual innuendo that may be improper in a work "
-"setting. It is polite and recommended to tag any content containing nudity "
-"with #NSFW.  This filter can also match any other word/text you specify, and"
-" can thereby be used as a general purpose content filter."
+#: ../../mod/admin.php:490
+msgid "'Share' element"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
-msgid "Enable Content filter"
+#: ../../mod/admin.php:490
+msgid "Activates the bbcode element 'share' for repeating items."
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
-msgid "Comma separated list of keywords to hide"
+#: ../../mod/admin.php:491
+msgid "Hide help entry from navigation menu"
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
-msgid "Use /expression/ to provide regular expressions"
+#: ../../mod/admin.php:491
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
 msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
-msgid "NSFW Settings saved."
-msgstr "NSFW Ustawienia zapisane."
+#: ../../mod/admin.php:492
+msgid "Single user instance"
+msgstr ""
 
-#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
-#, php-format
-msgid "%s - Click to open/close"
-msgstr "%s - kliknij by otworzyć/zamknąć"
+#: ../../mod/admin.php:492
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr ""
 
-#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-#: ../../addon/forumlist/forumlist.php:64 ../../addon.old/page/page.php:62
-#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
-msgid "Forums"
-msgstr "Fora"
+#: ../../mod/admin.php:493
+msgid "Maximum image size"
+msgstr "Maksymalny rozmiar zdjęcia"
 
-#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:98
-#: ../../addon.old/page/page.php:130
-#: ../../addon.old/forumlist/forumlist.php:94
-msgid "Forums:"
+#: ../../mod/admin.php:493
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
 msgstr ""
 
-#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
-msgid "Page settings updated."
-msgstr "Zaktualizowano ustawienia strony."
+#: ../../mod/admin.php:494
+msgid "Maximum image length"
+msgstr "Maksymalna długość obrazu"
 
-#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
-msgid "Page Settings"
-msgstr "Ustawienia strony"
+#: ../../mod/admin.php:494
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."
 
-#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
-msgid "How many forums to display on sidebar without paging"
-msgstr ""
+#: ../../mod/admin.php:495
+msgid "JPEG image quality"
+msgstr "jakość obrazu JPEG"
 
-#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
-msgid "Randomise Page/Forum list"
+#: ../../mod/admin.php:495
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
 msgstr ""
 
-#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
-msgid "Show pages/forums on profile page"
-msgstr ""
+#: ../../mod/admin.php:497
+msgid "Register policy"
+msgstr "Zarejestruj polisę"
 
-#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
-msgid "Planets Settings"
+#: ../../mod/admin.php:498
+msgid "Maximum Daily Registrations"
 msgstr ""
 
-#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
-msgid "Enable Planets Plugin"
+#: ../../mod/admin.php:498
+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 ""
 
-#: ../../addon/forumdirectory/forumdirectory.php:22
-msgid "Forum Directory"
-msgstr "Katalog Forum"
+#: ../../mod/admin.php:499
+msgid "Register text"
+msgstr "Zarejestruj tekst"
 
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
-#: ../../boot.php:1037 ../../addon.old/communityhome/communityhome.php:28
-#: ../../addon.old/communityhome/communityhome.php:34
-#: ../../addon.old/communityhome/twillingham/communityhome.php:28
-#: ../../addon.old/communityhome/twillingham/communityhome.php:34
-msgid "Login"
-msgstr "Login"
+#: ../../mod/admin.php:499
+msgid "Will be displayed prominently on the registration page."
+msgstr ""
 
-#: ../../addon/communityhome/communityhome.php:29
-#: ../../addon.old/communityhome/communityhome.php:29
-#: ../../addon.old/communityhome/twillingham/communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
+#: ../../mod/admin.php:500
+msgid "Accounts abandoned after x days"
+msgstr "Konto porzucone od x dni."
 
-#: ../../addon/communityhome/communityhome.php:39
-#: ../../addon.old/communityhome/communityhome.php:38
-#: ../../addon.old/communityhome/twillingham/communityhome.php:38
-msgid "Latest users"
-msgstr "Ostatni użytkownicy"
+#: ../../mod/admin.php:500
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr ""
 
-#: ../../addon/communityhome/communityhome.php:84
-#: ../../addon.old/communityhome/communityhome.php:81
-#: ../../addon.old/communityhome/twillingham/communityhome.php:81
-msgid "Most active users"
-msgstr "najaktywniejsi użytkownicy"
+#: ../../mod/admin.php:501
+msgid "Allowed friend domains"
+msgstr "Dozwolone domeny przyjaciół"
 
-#: ../../addon/communityhome/communityhome.php:102
-#: ../../addon.old/communityhome/communityhome.php:98
-msgid "Latest photos"
-msgstr "Ostatnie zdjęcia"
+#: ../../mod/admin.php:501
+msgid ""
+"Comma separated list of domains which are allowed to establish friendships "
+"with this site. Wildcards are accepted. Empty to allow any domains"
+msgstr ""
 
-#: ../../addon/communityhome/communityhome.php:141
-#: ../../addon.old/communityhome/communityhome.php:133
-msgid "Latest likes"
-msgstr "Ostatnie polubienia"
+#: ../../mod/admin.php:502
+msgid "Allowed email domains"
+msgstr "Dozwolone domeny e-mailowe"
 
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1508
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../addon.old/communityhome/communityhome.php:155
-msgid "event"
-msgstr "wydarzenie"
+#: ../../mod/admin.php:502
+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 ""
 
-#: ../../addon/dav/common/wdcal_backend.inc.php:92
-#: ../../addon/dav/common/wdcal_backend.inc.php:166
-#: ../../addon/dav/common/wdcal_backend.inc.php:178
-#: ../../addon/dav/common/wdcal_backend.inc.php:206
-#: ../../addon/dav/common/wdcal_backend.inc.php:214
-#: ../../addon/dav/common/wdcal_backend.inc.php:229
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
-msgid "No access"
-msgstr "Brak dostępu"
+#: ../../mod/admin.php:503
+msgid "Block public"
+msgstr "Blokuj publicznie"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:30
-#: ../../addon/dav/common/wdcal_edit.inc.php:738
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
-msgid "Could not open component for editing"
+#: ../../mod/admin.php:503
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:140
-#: ../../addon/dav/friendica/layout.fnk.php:143
-#: ../../addon/dav/friendica/layout.fnk.php:422
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
-#: ../../addon.old/dav/friendica/layout.fnk.php:143
-#: ../../addon.old/dav/friendica/layout.fnk.php:422
-msgid "Go back to the calendar"
-msgstr "Wróć do kalendarza"
-
-#: ../../addon/dav/common/wdcal_edit.inc.php:144
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
-msgid "Event data"
-msgstr "Data wydarzenia"
+#: ../../mod/admin.php:504
+msgid "Force publish"
+msgstr "Wymuś publikację"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:146
-#: ../../addon/dav/friendica/main.php:239
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
-#: ../../addon.old/dav/friendica/main.php:239
-msgid "Calendar"
-msgstr "Kalendarz"
+#: ../../mod/admin.php:504
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:163
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
-msgid "Special color"
+#: ../../mod/admin.php:505
+msgid "Global directory update URL"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:169
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
-msgid "Subject"
-msgstr "Temat"
+#: ../../mod/admin.php:505
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:173
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
-msgid "Starts"
-msgstr "Zaczyna się"
+#: ../../mod/admin.php:506
+msgid "Allow threaded items"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:178
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
-msgid "Ends"
-msgstr "Kończy się"
+#: ../../mod/admin.php:506
+msgid "Allow infinite level threading for items on this site."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:185
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
-msgid "Description"
-msgstr "Opis"
+#: ../../mod/admin.php:507
+msgid "Private posts by default for new users"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:188
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
-msgid "Recurrence"
+#: ../../mod/admin.php:507
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:190
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
-msgid "Frequency"
-msgstr "często"
+#: ../../mod/admin.php:509
+msgid "Block multiple registrations"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:194
-#: ../../include/contact_selectors.php:59
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
-msgid "Daily"
-msgstr "Dziennie"
+#: ../../mod/admin.php:509
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:197
-#: ../../include/contact_selectors.php:60
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
-msgid "Weekly"
-msgstr "Tygodniowo"
+#: ../../mod/admin.php:510
+msgid "OpenID support"
+msgstr "Wsparcie OpenID"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:200
-#: ../../include/contact_selectors.php:61
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
-msgid "Monthly"
-msgstr "Miesięcznie"
+#: ../../mod/admin.php:510
+msgid "OpenID support for registration and logins."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:203
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
-msgid "Yearly"
-msgstr "raz na rok"
+#: ../../mod/admin.php:511
+msgid "Fullname check"
+msgstr "Sprawdzanie pełnej nazwy"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:214
-#: ../../include/datetime.php:288
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
-msgid "days"
-msgstr "dni"
+#: ../../mod/admin.php:511
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:215
-#: ../../include/datetime.php:287
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
-msgid "weeks"
-msgstr "tygodnie"
+#: ../../mod/admin.php:512
+msgid "UTF-8 Regular expressions"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:216
-#: ../../include/datetime.php:286
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
-msgid "months"
-msgstr "miesiące"
+#: ../../mod/admin.php:512
+msgid "Use PHP UTF8 regular expressions"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:217
-#: ../../include/datetime.php:285
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
-msgid "years"
-msgstr "lata"
+#: ../../mod/admin.php:513
+msgid "Show Community Page"
+msgstr "Pokaż stronę społeczności"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "Interval"
+#: ../../mod/admin.php:513
+msgid ""
+"Display a Community page showing all recent public postings on this site."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "All %select% %time%"
-msgstr ""
+#: ../../mod/admin.php:514
+msgid "Enable OStatus support"
+msgstr "Włącz wsparcie OStatus"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:222
-#: ../../addon/dav/common/wdcal_edit.inc.php:260
-#: ../../addon/dav/common/wdcal_edit.inc.php:481
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
-msgid "Days"
-msgstr "Dni"
+#: ../../mod/admin.php:514
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:231
-#: ../../addon/dav/common/wdcal_edit.inc.php:254
-#: ../../addon/dav/common/wdcal_edit.inc.php:270
-#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
-msgid "Sunday"
-msgstr "Niedziela"
+#: ../../mod/admin.php:515
+msgid "Enable Diaspora support"
+msgstr "Włączyć obsługę Diaspory"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:235
-#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
-msgid "Monday"
-msgstr "Poniedziałek"
+#: ../../mod/admin.php:515
+msgid "Provide built-in Diaspora network compatibility."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
-msgid "Tuesday"
-msgstr "Wtorek"
+#: ../../mod/admin.php:516
+msgid "Only allow Friendica contacts"
+msgstr "Dopuść tylko kontakty Friendrica"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
-msgid "Wednesday"
-msgstr "Środa"
+#: ../../mod/admin.php:516
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
-msgid "Thursday"
-msgstr "Czwartek"
+#: ../../mod/admin.php:517
+msgid "Verify SSL"
+msgstr "Weryfikacja SSL"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
-msgid "Friday"
-msgstr "Piątek"
+#: ../../mod/admin.php:517
+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 ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
-msgid "Saturday"
-msgstr "Sobota"
+#: ../../mod/admin.php:518
+msgid "Proxy user"
+msgstr "Użytkownik proxy"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:297
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
-msgid "First day of week:"
-msgstr "Pierwszy dzień tygodnia:"
+#: ../../mod/admin.php:519
+msgid "Proxy URL"
+msgstr "URL Proxy"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:350
-#: ../../addon/dav/common/wdcal_edit.inc.php:373
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
-msgid "Day of month"
-msgstr "Dzień miesiąca"
+#: ../../mod/admin.php:520
+msgid "Network timeout"
+msgstr "Network timeout"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:354
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
-msgid "#num#th of each month"
+#: ../../mod/admin.php:520
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:357
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
-msgid "#num#th-last of each month"
+#: ../../mod/admin.php:521
+msgid "Delivery interval"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:360
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
-msgid "#num#th #wkday# of each month"
+#: ../../mod/admin.php:521
+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 ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:363
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
-msgid "#num#th-last #wkday# of each month"
+#: ../../mod/admin.php:522
+msgid "Poll interval"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:372
-#: ../../addon/dav/friendica/layout.fnk.php:255
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
-#: ../../addon.old/dav/friendica/layout.fnk.php:255
-msgid "Month"
-msgstr "Miesiąc"
+#: ../../mod/admin.php:522
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:377
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
-msgid "#num#th of the given month"
+#: ../../mod/admin.php:523
+msgid "Maximum Load Average"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:380
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
-msgid "#num#th-last of the given month"
+#: ../../mod/admin.php:523
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:383
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
-msgid "#num#th #wkday# of the given month"
+#: ../../mod/admin.php:525
+msgid "Use MySQL full text engine"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:386
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
-msgid "#num#th-last #wkday# of the given month"
+#: ../../mod/admin.php:525
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:413
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
-msgid "Repeat until"
-msgstr "Powtarzaj do"
+#: ../../mod/admin.php:526
+msgid "Path to item cache"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:417
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
-msgid "Infinite"
+#: ../../mod/admin.php:527
+msgid "Cache duration in seconds"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:420
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
-msgid "Until the following date"
-msgstr "Do tej daty"
+#: ../../mod/admin.php:527
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:423
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
-msgid "Number of times"
+#: ../../mod/admin.php:528
+msgid "Path for lock file"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:429
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
-msgid "Exceptions"
-msgstr "Wyjątki"
+#: ../../mod/admin.php:529
+msgid "Temp path"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:432
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
-msgid "none"
+#: ../../mod/admin.php:530
+msgid "Base path to installation"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:449
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
-msgid "Notification"
-msgstr "Powiadomienie"
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:466
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
-msgid "Notify by"
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:469
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
-msgid "E-Mail"
-msgstr "E-Mail"
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:470
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
-msgid "On Friendica / Display"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:474
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
-msgid "Time"
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:478
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
-msgid "Hours"
-msgstr "Godzin"
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "Brak błędów aktualizacji."
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:479
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
-msgid "Minutes"
-msgstr "Minut"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "Błąd aktualizacji"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:480
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
-msgid "Seconds"
+#: ../../mod/admin.php:588
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:482
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
-msgid "Weeks"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:485
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
-msgid "before the"
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
 msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:486
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
-msgid "start of the event"
-msgstr "rozpoczęcie wydarzenia"
+#: ../../mod/admin.php:615
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] ""
+msgstr[1] ""
+msgstr[2] ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:487
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
-msgid "end of the event"
-msgstr "zakończenie wydarzenia"
+#: ../../mod/admin.php:622
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] " %s użytkownik usunięty"
+msgstr[1] " %s użytkownicy usunięci"
+msgstr[2] " %s usuniętych użytkowników "
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:492
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
-msgid "Add a notification"
-msgstr "Dodaj powiadomienie"
+#: ../../mod/admin.php:661
+#, php-format
+msgid "User '%s' deleted"
+msgstr "Użytkownik '%s' usunięty"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:687
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
-msgid "The event #name# will start at #date"
-msgstr ""
+#: ../../mod/admin.php:669
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "Użytkownik '%s' odblokowany"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:696
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
-msgid "#name# is about to begin."
-msgstr ""
+#: ../../mod/admin.php:669
+#, php-format
+msgid "User '%s' blocked"
+msgstr "Użytkownik '%s' zablokowany"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:769
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
-msgid "Saved"
-msgstr "Zapisano"
+#: ../../mod/admin.php:745
+msgid "select all"
+msgstr "Zaznacz wszystko"
 
-#: ../../addon/dav/common/wdcal_configuration.php:148
-#: ../../addon.old/dav/common/wdcal_configuration.php:148
-msgid "U.S. Time Format (mm/dd/YYYY)"
-msgstr "Amerykański format daty (mm/dd/YYYY)"
+#: ../../mod/admin.php:746
+msgid "User registrations waiting for confirm"
+msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
 
-#: ../../addon/dav/common/wdcal_configuration.php:243
-#: ../../addon.old/dav/common/wdcal_configuration.php:243
-msgid "German Time Format (dd.mm.YYYY)"
-msgstr "Niemiecki format daty (dd.mm.YYYY)"
+#: ../../mod/admin.php:747
+msgid "Request date"
+msgstr "Data prośby"
 
-#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
-#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
-msgid "Private Events"
-msgstr "Prywatne wydarzenia"
+#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "Imię"
 
-#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
-#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
-msgid "Private Addressbooks"
-msgstr ""
+#: ../../mod/admin.php:748
+msgid "No registrations."
+msgstr "brak rejestracji"
 
-#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-msgid "Friendica-Native events"
-msgstr ""
+#: ../../mod/admin.php:749 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "Zatwierdź"
 
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-msgid "Friendica-Contacts"
-msgstr "Kontakty friendica"
+#: ../../mod/admin.php:750
+msgid "Deny"
+msgstr "Odmów"
 
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-msgid "Your Friendica-Contacts"
-msgstr "Twoje kontakty friendica"
+#: ../../mod/admin.php:752 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr "Zablokuj"
 
-#: ../../addon/dav/friendica/layout.fnk.php:99
-#: ../../addon/dav/friendica/layout.fnk.php:136
-#: ../../addon.old/dav/friendica/layout.fnk.php:99
-#: ../../addon.old/dav/friendica/layout.fnk.php:136
+#: ../../mod/admin.php:753 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "Odblokuj"
+
+#: ../../mod/admin.php:754
+msgid "Site admin"
+msgstr "Administracja stroną"
+
+#: ../../mod/admin.php:757
+msgid "Register date"
+msgstr "Data rejestracji"
+
+#: ../../mod/admin.php:757
+msgid "Last login"
+msgstr "Ostatnie logowanie"
+
+#: ../../mod/admin.php:757
+msgid "Last item"
+msgstr "Ostatni element"
+
+#: ../../mod/admin.php:757
+msgid "Account"
+msgstr "Konto"
+
+#: ../../mod/admin.php:759
 msgid ""
-"Something went wrong when trying to import the file. Sorry. Maybe some "
-"events were imported anyway."
+"Selected users will be deleted!\\n\\nEverything these users had posted on "
+"this site will be permanently deleted!\\n\\nAre you sure?"
+msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
+
+#: ../../mod/admin.php:760
+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 "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
+
+#: ../../mod/admin.php:801
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "Wtyczka %s wyłączona."
+
+#: ../../mod/admin.php:805
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "Wtyczka %s właczona."
+
+#: ../../mod/admin.php:815 ../../mod/admin.php:1018
+msgid "Disable"
+msgstr "Wyłącz"
+
+#: ../../mod/admin.php:817 ../../mod/admin.php:1020
+msgid "Enable"
+msgstr "Zezwól"
+
+#: ../../mod/admin.php:840 ../../mod/admin.php:1048
+msgid "Toggle"
+msgstr "Włącz"
+
+#: ../../mod/admin.php:848 ../../mod/admin.php:1058
+msgid "Author: "
+msgstr "Autor: "
+
+#: ../../mod/admin.php:849 ../../mod/admin.php:1059
+msgid "Maintainer: "
 msgstr ""
 
-#: ../../addon/dav/friendica/layout.fnk.php:131
-#: ../../addon.old/dav/friendica/layout.fnk.php:131
-msgid "Something went wrong when trying to import the file. Sorry."
+#: ../../mod/admin.php:978
+msgid "No themes found."
+msgstr "Nie znaleziono tematu."
+
+#: ../../mod/admin.php:1040
+msgid "Screenshot"
+msgstr "Zrzut ekranu"
+
+#: ../../mod/admin.php:1086
+msgid "[Experimental]"
+msgstr "[Eksperymentalne]"
+
+#: ../../mod/admin.php:1087
+msgid "[Unsupported]"
+msgstr "[Niewspieralne]"
+
+#: ../../mod/admin.php:1114
+msgid "Log settings updated."
 msgstr ""
 
-#: ../../addon/dav/friendica/layout.fnk.php:134
-#: ../../addon.old/dav/friendica/layout.fnk.php:134
-msgid "The ICS-File has been imported."
-msgstr ""
+#: ../../mod/admin.php:1170
+msgid "Clear"
+msgstr "Wyczyść"
 
-#: ../../addon/dav/friendica/layout.fnk.php:138
-#: ../../addon.old/dav/friendica/layout.fnk.php:138
-msgid "No file was uploaded."
-msgstr "Nie wgrano pliku."
+#: ../../mod/admin.php:1176
+msgid "Debugging"
+msgstr "Naprawianie"
 
-#: ../../addon/dav/friendica/layout.fnk.php:147
-#: ../../addon.old/dav/friendica/layout.fnk.php:147
-msgid "Import a ICS-file"
-msgstr ""
+#: ../../mod/admin.php:1177
+msgid "Log file"
+msgstr "Plik logów"
 
-#: ../../addon/dav/friendica/layout.fnk.php:150
-#: ../../addon.old/dav/friendica/layout.fnk.php:150
-msgid "ICS-File"
+#: ../../mod/admin.php:1177
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
 msgstr ""
 
-#: ../../addon/dav/friendica/layout.fnk.php:151
-#: ../../addon.old/dav/friendica/layout.fnk.php:151
-msgid "Overwrite all #num# existing events"
-msgstr ""
+#: ../../mod/admin.php:1178
+msgid "Log level"
+msgstr "Poziom logów"
 
-#: ../../addon/dav/friendica/layout.fnk.php:228
-#: ../../addon.old/dav/friendica/layout.fnk.php:228
-msgid "New event"
-msgstr "Nowe wydarzenie"
+#: ../../mod/admin.php:1227 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "Aktualizuj teraz"
 
-#: ../../addon/dav/friendica/layout.fnk.php:232
-#: ../../addon.old/dav/friendica/layout.fnk.php:232
-msgid "Today"
-msgstr "Dzisiaj"
+#: ../../mod/admin.php:1228
+msgid "Close"
+msgstr "Zamknij"
 
-#: ../../addon/dav/friendica/layout.fnk.php:241
-#: ../../addon.old/dav/friendica/layout.fnk.php:241
-msgid "Day"
-msgstr "Dzień"
+#: ../../mod/admin.php:1234
+msgid "FTP Host"
+msgstr "Założyciel FTP"
 
-#: ../../addon/dav/friendica/layout.fnk.php:248
-#: ../../addon.old/dav/friendica/layout.fnk.php:248
-msgid "Week"
-msgstr "Tydzień"
+#: ../../mod/admin.php:1235
+msgid "FTP Path"
+msgstr "Ścieżka FTP"
 
-#: ../../addon/dav/friendica/layout.fnk.php:260
-#: ../../addon.old/dav/friendica/layout.fnk.php:260
-msgid "Reload"
-msgstr "Załaduj ponownie"
+#: ../../mod/admin.php:1236
+msgid "FTP User"
+msgstr "Użytkownik FTP"
 
-#: ../../addon/dav/friendica/layout.fnk.php:271
-#: ../../addon.old/dav/friendica/layout.fnk.php:271
-msgid "Date"
-msgstr "Data"
+#: ../../mod/admin.php:1237
+msgid "FTP Password"
+msgstr "FTP Hasło"
 
-#: ../../addon/dav/friendica/layout.fnk.php:313
-#: ../../addon.old/dav/friendica/layout.fnk.php:313
-msgid "Error"
-msgstr "Błąd"
+#: ../../mod/item.php:105
+msgid "Unable to locate original post."
+msgstr "Nie można zlokalizować oryginalnej wiadomości."
 
-#: ../../addon/dav/friendica/layout.fnk.php:380
-#: ../../addon.old/dav/friendica/layout.fnk.php:380
-msgid "The calendar has been updated."
-msgstr ""
+#: ../../mod/item.php:307
+msgid "Empty post discarded."
+msgstr "Pusty wpis wyrzucony."
 
-#: ../../addon/dav/friendica/layout.fnk.php:393
-#: ../../addon.old/dav/friendica/layout.fnk.php:393
-msgid "The new calendar has been created."
-msgstr ""
+#: ../../mod/item.php:869
+msgid "System error. Post not saved."
+msgstr "Błąd. Post niezapisany."
 
-#: ../../addon/dav/friendica/layout.fnk.php:417
-#: ../../addon.old/dav/friendica/layout.fnk.php:417
-msgid "The calendar has been deleted."
-msgstr ""
+#: ../../mod/item.php:894
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica"
 
-#: ../../addon/dav/friendica/layout.fnk.php:424
-#: ../../addon.old/dav/friendica/layout.fnk.php:424
-msgid "Calendar Settings"
-msgstr "Ustawienia kalendarza"
+#: ../../mod/item.php:896
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Możesz ich odwiedzić online u %s"
 
-#: ../../addon/dav/friendica/layout.fnk.php:430
-#: ../../addon.old/dav/friendica/layout.fnk.php:430
-msgid "Date format"
-msgstr "Format daty"
+#: ../../mod/item.php:897
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości."
 
-#: ../../addon/dav/friendica/layout.fnk.php:439
-#: ../../addon.old/dav/friendica/layout.fnk.php:439
-msgid "Time zone"
-msgstr "Strefa czasowa"
+#: ../../mod/item.php:901
+#, php-format
+msgid "%s posted an update."
+msgstr "%s zaktualizował wpis."
 
-#: ../../addon/dav/friendica/layout.fnk.php:445
-#: ../../addon.old/dav/friendica/layout.fnk.php:445
-msgid "Calendars"
-msgstr "Kalendarze"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Znajomy %s"
 
-#: ../../addon/dav/friendica/layout.fnk.php:487
-#: ../../addon.old/dav/friendica/layout.fnk.php:487
-msgid "Create a new calendar"
-msgstr "Stwórz nowy kalendarz"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Brak znajomych do wyświetlenia"
 
-#: ../../addon/dav/friendica/layout.fnk.php:496
-#: ../../addon.old/dav/friendica/layout.fnk.php:496
-msgid "Limitations"
-msgstr "Ograniczenie"
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "Usuń wpis"
 
-#: ../../addon/dav/friendica/layout.fnk.php:500
-#: ../../addon/libravatar/libravatar.php:82
-#: ../../addon.old/dav/friendica/layout.fnk.php:500
-#: ../../addon.old/libravatar/libravatar.php:82
-msgid "Warning"
-msgstr "Ostrzeżenie"
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:88
+msgid "No results."
+msgstr "Brak wyników."
 
-#: ../../addon/dav/friendica/layout.fnk.php:504
-#: ../../addon.old/dav/friendica/layout.fnk.php:504
-msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
-msgstr "Synchronizacja (iPhone, Thunderbird Lightning, Android, ...)"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autoryzacja połączenia aplikacji"
 
-#: ../../addon/dav/friendica/layout.fnk.php:511
-#: ../../addon.old/dav/friendica/layout.fnk.php:511
-msgid "Synchronizing this calendar with the iPhone"
-msgstr "Zsynchronizuj kalendarz z iPhone"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:"
 
-#: ../../addon/dav/friendica/layout.fnk.php:522
-#: ../../addon.old/dav/friendica/layout.fnk.php:522
-msgid "Synchronizing your Friendica-Contacts with the iPhone"
-msgstr "Zsynchronizuj kontakty friendica z iPhone"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Zaloguj się aby kontynuować."
 
-#: ../../addon/dav/friendica/main.php:202
-#: ../../addon.old/dav/friendica/main.php:202
+#: ../../mod/api.php:104
 msgid ""
-"The current version of this plugin has not been set up correctly. Please "
-"contact the system administrator of your installation of friendica to fix "
-"this."
-msgstr ""
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
+msgstr "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"
 
-#: ../../addon/dav/friendica/main.php:242
-#: ../../addon.old/dav/friendica/main.php:242
-msgid "Extended calendar with CalDAV-support"
-msgstr ""
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "Szczegóły rejestracji dla %s"
 
-#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
-#: ../../include/enotify.php:28 ../../include/notifier.php:785
-#: ../../addon.old/dav/friendica/main.php:279
-#: ../../addon.old/dav/friendica/main.php:280
-msgid "noreply"
-msgstr "brak odpowiedzi"
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
 
-#: ../../addon/dav/friendica/main.php:282
-#: ../../addon.old/dav/friendica/main.php:282
-msgid "Notification: "
-msgstr "Potwierdzeni:"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się."
 
-#: ../../addon/dav/friendica/main.php:309
-#: ../../addon.old/dav/friendica/main.php:309
-msgid "The database tables have been installed."
-msgstr ""
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
 
-#: ../../addon/dav/friendica/main.php:310
-#: ../../addon.old/dav/friendica/main.php:310
-msgid "An error occurred during the installation."
-msgstr ""
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "Prośba o rejestrację u %s"
 
-#: ../../addon/dav/friendica/main.php:316
-#: ../../addon.old/dav/friendica/main.php:316
-msgid "The database tables have been updated."
-msgstr ""
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
 
-#: ../../addon/dav/friendica/main.php:317
-#: ../../addon.old/dav/friendica/main.php:317
-msgid "An error occurred during the update."
-msgstr ""
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro."
 
-#: ../../addon/dav/friendica/main.php:333
-#: ../../addon.old/dav/friendica/main.php:333
-msgid "No system-wide settings yet."
-msgstr ""
+#: ../../mod/register.php:220
+msgid ""
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."
+
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
+
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "Twój OpenID (opcjonalnie):"
+
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "Czy dołączyć twój profil do katalogu członków?"
+
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
 
-#: ../../addon/dav/friendica/main.php:336
-#: ../../addon.old/dav/friendica/main.php:336
-msgid "Database status"
-msgstr ""
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "Twoje zaproszenia ID:"
 
-#: ../../addon/dav/friendica/main.php:339
-#: ../../addon.old/dav/friendica/main.php:339
-msgid "Installed"
-msgstr "Zainstalowany"
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "Imię i nazwisko (np. Jan Kowalski):"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade needed"
-msgstr "Wymaga uaktualnienia"
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "Twój adres email:"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
+#: ../../mod/register.php:271
 msgid ""
-"Please back up all calendar data (the tables beginning with dav_*) before "
-"proceeding. While all calendar events <i>should</i> be converted to the new "
-"database structure, it's always safe to have a backup. Below, you can have a"
-" look at the database-queries that will be made when pressing the "
-"'update'-button."
-msgstr ""
+"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 "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@$nazwastrony</strong>'."
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade"
-msgstr "Uaktualnienie"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "Wybierz pseudonim:"
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Not installed"
-msgstr "Nie zainstalowany"
+#: ../../mod/apps.php:4
+msgid "Applications"
+msgstr "Aplikacje"
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Install"
-msgstr "Zainstaluj"
+#: ../../mod/apps.php:7
+msgid "No installed applications."
+msgstr "Brak zainstalowanych aplikacji."
 
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid "Unknown"
-msgstr "Nieznany"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "Konto zatwierdzone."
 
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid ""
-"Something really went wrong. I cannot recover from this state automatically,"
-" sorry. Please go to the database backend, back up the data, and delete all "
-"tables beginning with 'dav_' manually. Afterwards, this installation routine"
-" should be able to reinitialize the tables automatically."
-msgstr ""
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "Rejestracja dla %s odwołana"
 
-#: ../../addon/dav/friendica/main.php:355
-#: ../../addon.old/dav/friendica/main.php:355
-msgid "Troubleshooting"
-msgstr "Rozwiązywanie problemów"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "Proszę się zalogować."
 
-#: ../../addon/dav/friendica/main.php:356
-#: ../../addon.old/dav/friendica/main.php:356
-msgid "Manual creation of the database tables:"
-msgstr ""
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Element nie dostępny."
 
-#: ../../addon/dav/friendica/main.php:357
-#: ../../addon.old/dav/friendica/main.php:357
-msgid "Show SQL-statements"
-msgstr ""
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Element nie znaleziony."
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
-msgid "Private Calendar"
-msgstr "Kalendarz prywatny"
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "Usuń konto"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
-msgid "Friendica Events: Mine"
-msgstr "Wydarzenia Friendici: Moje"
+#: ../../mod/removeme.php:46
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane."
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
-msgid "Friendica Events: Contacts"
-msgstr "Wydarzenia Friendici: Kontakty"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "Wprowadź hasło w celu weryfikacji."
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
-msgid "Private Addresses"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
 msgstr ""
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
-msgid "Friendica Contacts"
-msgstr "Kontakty Friendica"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr ""
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
-#, php-format
-msgid ""
-"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud). See <a "
-"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
-" WebFinger</a>"
+#: ../../mod/babel.php:31
+msgid "Source input: "
 msgstr ""
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:85
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
 msgstr ""
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
 msgstr ""
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
-msgstr "Api"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr ""
 
-#: ../../addon/membersince/membersince.php:18
-#: ../../addon.old/membersince/membersince.php:18
-msgid "Member since:"
-msgstr "Data dołączenia:"
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr ""
 
-#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "Trójwymiarowy Kółko i krzyżyk"
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr ""
 
-#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "Kółko i krzyżyk 3D"
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr ""
 
-#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
-msgid "New game"
-msgstr "Nowa gra"
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr ""
 
-#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "Nowa gra z utrudnieniem"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr ""
 
-#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie."
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr ""
 
-#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
-msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów."
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "Wspólni znajomi"
 
-#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
-msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
 msgstr ""
 
-#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "Ty pierwszy..."
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "Nie można uzyskać dostępu do rejestru kontaktów."
 
-#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "Zaczynam..."
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "Nie można znaleźć wybranego profilu."
 
-#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
-msgid "You won!"
-msgstr "Wygrałeś!"
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "Kontakt zaktualizowany"
 
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "Gra \"Kot\"!"
+#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
+msgid "Failed to update contact record."
+msgstr "Aktualizacja nagrania kontaktu nie powiodła się."
 
-#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
-msgid "I won!"
-msgstr "Wygrałem!"
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "Kontakt został zablokowany"
 
-#: ../../addon/randplace/randplace.php:169
-#: ../../addon.old/randplace/randplace.php:169
-msgid "Randplace Settings"
-msgstr "Ustawienia Randplace"
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "Kontakt został odblokowany"
 
-#: ../../addon/randplace/randplace.php:171
-#: ../../addon.old/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
-msgstr "Włącz Randplace Plugin"
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "Kontakt jest ignorowany"
 
-#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
-msgstr "Opublikuj na Dreamwidth"
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "Kontakt nie jest ignorowany"
 
-#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
-msgstr ""
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "Kontakt został zarchiwizowany"
 
-#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
-msgid "dreamwidth username"
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
 msgstr ""
 
-#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
-msgid "dreamwidth password"
-msgstr ""
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "Kontakt został usunięty."
 
-#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
-msgstr ""
+#: ../../mod/contacts.php:301
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Jesteś już znajomym z %s"
 
-#: ../../addon/remote_permissions/remote_permissions.php:45
-msgid "Remote Permissions Settings"
-msgstr ""
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Współdzielisz z %s"
 
-#: ../../addon/remote_permissions/remote_permissions.php:46
-msgid ""
-"Allow recipients of your private posts to see the other recipients of the "
-"posts"
-msgstr ""
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s współdzieli z tobą"
 
-#: ../../addon/remote_permissions/remote_permissions.php:58
-msgid "Remote Permissions settings updated."
-msgstr ""
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu"
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "Visible to"
-msgstr "Widoczne dla"
+#: ../../mod/contacts.php:330
+msgid "Never"
+msgstr "Nigdy"
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "may only be a partial list"
-msgstr ""
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(Aktualizacja przebiegła pomyślnie)"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-#: ../../addon/altpager/altpager.php:99
-msgid "Global"
-msgstr "Ogólne"
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(Aktualizacja nie powiodła się)"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "The posts of every user on this server show the post recipients"
-msgstr ""
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "Osoby, które możesz znać"
 
-#: ../../addon/remote_permissions/remote_permissions.php:198
-#: ../../addon/altpager/altpager.php:100
-msgid "Individual"
-msgstr "Indywidualne"
+#: ../../mod/contacts.php:340
+#, php-format
+msgid "Network type: %s"
+msgstr "Typ sieci: %s"
 
-#: ../../addon/remote_permissions/remote_permissions.php:198
-msgid "Each user chooses whether his/her posts show the post recipients"
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "Zobacz wszystkie kontakty"
+
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
 msgstr ""
 
-#: ../../addon/startpage/startpage.php:83
-#: ../../addon.old/startpage/startpage.php:83
-msgid "Startpage Settings"
-msgstr "Ustawienia strony startowej"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "Odblokuj"
 
-#: ../../addon/startpage/startpage.php:85
-#: ../../addon.old/startpage/startpage.php:85
-msgid "Home page to load after login  - leave blank for profile wall"
-msgstr ""
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "Ignoruj"
 
-#: ../../addon/startpage/startpage.php:88
-#: ../../addon.old/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
 msgstr ""
 
-#: ../../addon/geonames/geonames.php:143
-#: ../../addon.old/geonames/geonames.php:143
-msgid "Geonames settings updated."
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
 msgstr ""
 
-#: ../../addon/geonames/geonames.php:179
-#: ../../addon.old/geonames/geonames.php:179
-msgid "Geonames Settings"
-msgstr "ustawienia Geonames"
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "Archiwum"
 
-#: ../../addon/geonames/geonames.php:181
-#: ../../addon.old/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
 msgstr ""
 
-#: ../../addon/public_server/public_server.php:126
-#: ../../addon/testdrive/testdrive.php:94
-#: ../../addon.old/public_server/public_server.php:126
-#: ../../addon.old/testdrive/testdrive.php:94
-#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr ""
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "Napraw"
 
-#: ../../addon/public_server/public_server.php:127
-#: ../../addon.old/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "Zaawansowane ustawienia kontaktów"
+
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
 msgstr ""
 
-#: ../../addon/public_server/public_server.php:128
-#: ../../addon.old/public_server/public_server.php:128
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "Edytor kontaktów"
+
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "Widoczność profilu"
+
+#: ../../mod/contacts.php:388
 #, php-format
 msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
-msgstr ""
-
-#: ../../addon/js_upload/js_upload.php:43
-#: ../../addon.old/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "Załaduj plik"
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "Wybierz profil, który chcesz bezpiecznie wyświetlić %s"
 
-#: ../../addon/js_upload/js_upload.php:44
-#: ../../addon.old/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "Wrzuć tu pliki by je załadować"
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "Informacja o kontakcie / Notka"
 
-#: ../../addon/js_upload/js_upload.php:46
-#: ../../addon.old/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "Niepowodzenie"
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "Edytuj notatki kontaktu"
 
-#: ../../addon/js_upload/js_upload.php:303
-#: ../../addon.old/js_upload/js_upload.php:297
-msgid "No files were uploaded."
-msgstr "Nie załadowano żadnych plików."
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "Zablokuj/odblokuj kontakt"
 
-#: ../../addon/js_upload/js_upload.php:309
-#: ../../addon.old/js_upload/js_upload.php:303
-msgid "Uploaded file is empty"
-msgstr "Wysłany plik jest pusty"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "Ignoruj kontakt"
 
-#: ../../addon/js_upload/js_upload.php:332
-#: ../../addon.old/js_upload/js_upload.php:326
-msgid "File has an invalid extension, it should be one of "
-msgstr "Pilk ma nieprawidłowe rozszerzenie, powinien być jednym z"
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "Napraw ustawienia adresu"
 
-#: ../../addon/js_upload/js_upload.php:343
-#: ../../addon.old/js_upload/js_upload.php:337
-msgid "Upload was cancelled, or server error encountered"
-msgstr "Przesyłanie zostało anulowane lub wystąpił błąd serwera."
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "Zobacz rozmowę"
 
-#: ../../addon/forumlist/forumlist.php:67
-#: ../../addon.old/forumlist/forumlist.php:63
-msgid "show/hide"
-msgstr "pokaż/ukryj"
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "Usuń kontakt"
 
-#: ../../addon/forumlist/forumlist.php:81
-#: ../../addon.old/forumlist/forumlist.php:77
-msgid "No forum subscriptions"
-msgstr ""
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "Ostatnia aktualizacja:"
 
-#: ../../addon/forumlist/forumlist.php:134
-#: ../../addon.old/forumlist/forumlist.php:131
-msgid "Forumlist settings updated."
-msgstr ""
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "Zaktualizuj publiczne posty"
 
-#: ../../addon/forumlist/forumlist.php:162
-#: ../../addon.old/forumlist/forumlist.php:159
-msgid "Forumlist Settings"
-msgstr ""
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "Obecnie zablokowany"
 
-#: ../../addon/forumlist/forumlist.php:164
-#: ../../addon.old/forumlist/forumlist.php:161
-msgid "Randomise forum list"
-msgstr ""
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "Obecnie zignorowany"
 
-#: ../../addon/forumlist/forumlist.php:167
-#: ../../addon.old/forumlist/forumlist.php:164
-msgid "Show forums on profile page"
-msgstr ""
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "Obecnie zarchiwizowany"
 
-#: ../../addon/forumlist/forumlist.php:170
-#: ../../addon.old/forumlist/forumlist.php:167
-msgid "Show forums on network page"
-msgstr ""
+#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "Ukryj ten kontakt przed innymi"
 
-#: ../../addon/impressum/impressum.php:37
-#: ../../addon.old/impressum/impressum.php:37
-msgid "Impressum"
-msgstr ""
+#: ../../mod/contacts.php:419
+msgid ""
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne"
 
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:52
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:52
-#: ../../addon.old/impressum/impressum.php:84
-msgid "Site Owner"
-msgstr "Właściciel strony"
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "Sugestie"
 
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:88
-msgid "Email Address"
-msgstr "Adres e-mail"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "Sugerowani znajomi"
 
-#: ../../addon/impressum/impressum.php:55
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:55
-#: ../../addon.old/impressum/impressum.php:86
-msgid "Postal Address"
-msgstr "Adres pocztowy"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Wszystkie kontakty"
 
-#: ../../addon/impressum/impressum.php:61
-#: ../../addon.old/impressum/impressum.php:61
-msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr ""
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "Pokaż wszystkie kontakty"
 
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:84
-msgid "The page operators name."
-msgstr ""
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "Odblokowany"
 
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Site Owners Profile"
-msgstr "Profil właściciela strony"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "Pokaż tylko odblokowane kontakty"
 
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Profile address of the operator."
-msgstr ""
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "Zablokowany"
 
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:86
-msgid "How to contact the operator via snail mail. You can use BBCode here."
-msgstr ""
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "Pokaż tylko zablokowane kontakty"
 
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid "Notes"
-msgstr "Notatki"
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "Zignorowany"
 
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid ""
-"Additional notes that are displayed beneath the contact information. You can"
-" use BBCode here."
-msgstr ""
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "Pokaż tylko ignorowane kontakty"
 
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:88
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
+#: ../../mod/contacts.php:503
+msgid "Archived"
 msgstr ""
 
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Footer note"
-msgstr "Notka w stopce"
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "Pokaż tylko zarchiwizowane kontakty"
 
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Text for the footer. You can use BBCode here."
-msgstr ""
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "Ukryty"
 
-#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr "Zgłoś problem"
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "Pokaż tylko ukryte kontakty"
 
-#: ../../addon/notimeline/notimeline.php:32
-#: ../../addon.old/notimeline/notimeline.php:32
-msgid "No Timeline settings updated."
-msgstr ""
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "Wzajemna przyjaźń"
 
-#: ../../addon/notimeline/notimeline.php:56
-#: ../../addon.old/notimeline/notimeline.php:56
-msgid "No Timeline Settings"
-msgstr "Brak ustawień Osi czasu"
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "jest twoim fanem"
 
-#: ../../addon/notimeline/notimeline.php:58
-#: ../../addon.old/notimeline/notimeline.php:58
-msgid "Disable Archive selector on profile wall"
-msgstr ""
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "jesteś fanem"
 
-#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
-msgstr ""
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "Wyszukaj w kontaktach"
 
-#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
-msgstr ""
+#: ../../mod/settings.php:23 ../../mod/photos.php:79
+msgid "everybody"
+msgstr "wszyscy"
 
-#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
+#: ../../mod/settings.php:35
+msgid "Additional features"
 msgstr ""
 
-#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
-#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr ""
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "Wyświetl ustawienia"
 
-#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr "Odblokuj autora"
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "Ustawienia konektora"
 
-#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
-msgid "Block Author"
-msgstr "Zablokuj autora"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "Ustawienia wtyczek"
 
-#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
-msgid "blockem settings updated"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
 msgstr ""
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ":-)"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "Eksportuje dane personalne"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ":-("
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "Usuń konto"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid "lol"
-msgstr "lol"
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "Brakuje ważnych danych!"
 
-#: ../../addon/qcomment/qcomment.php:54
-#: ../../addon.old/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr "Ustawienia szybkiego komentowania"
+#: ../../mod/settings.php:121 ../../mod/settings.php:586
+msgid "Update"
+msgstr "Zaktualizuj"
 
-#: ../../addon/qcomment/qcomment.php:56
-#: ../../addon.old/qcomment/qcomment.php:56
-msgid ""
-"Quick comments are found near comment boxes, sometimes hidden. Click them to"
-" provide simple replies."
-msgstr ""
+#: ../../mod/settings.php:227
+msgid "Failed to connect with email account using the settings provided."
+msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się."
 
-#: ../../addon/qcomment/qcomment.php:57
-#: ../../addon.old/qcomment/qcomment.php:57
-msgid "Enter quick comments, one per line"
-msgstr ""
+#: ../../mod/settings.php:232
+msgid "Email settings updated."
+msgstr "Zaktualizowano ustawienia email."
 
-#: ../../addon/qcomment/qcomment.php:75
-#: ../../addon.old/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
+#: ../../mod/settings.php:247
+msgid "Features updated"
 msgstr ""
 
-#: ../../addon/openstreetmap/openstreetmap.php:95
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid "Tile Server URL"
-msgstr ""
+#: ../../mod/settings.php:307
+msgid "Passwords do not match. Password unchanged."
+msgstr "Hasło nie pasuje. Hasło nie zmienione."
 
-#: ../../addon/openstreetmap/openstreetmap.php:95
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr ""
+#: ../../mod/settings.php:312
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Brak hasła niedozwolony. Hasło nie zmienione."
 
-#: ../../addon/openstreetmap/openstreetmap.php:96
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "Default zoom"
-msgstr "Domyślne przybliżenie"
+#: ../../mod/settings.php:323
+msgid "Password changed."
+msgstr "Hasło zostało zmianione."
 
-#: ../../addon/openstreetmap/openstreetmap.php:96
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "The default zoom level. (1:world, 18:highest)"
-msgstr ""
+#: ../../mod/settings.php:325
+msgid "Password update failed. Please try again."
+msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."
 
-#: ../../addon/group_text/group_text.php:46
-msgid "Group Text settings updated."
-msgstr ""
+#: ../../mod/settings.php:390
+msgid " Please use a shorter name."
+msgstr "Proszę użyć krótszej nazwy."
 
-#: ../../addon/group_text/group_text.php:76
-#: ../../addon.old/group_text/group_text.php:76
-msgid "Group Text"
+#: ../../mod/settings.php:392
+msgid " Name too short."
+msgstr "Za krótka nazwa."
+
+#: ../../mod/settings.php:398
+msgid " Not valid email."
+msgstr "Zły email."
+
+#: ../../mod/settings.php:400
+msgid " Cannot change to that email."
+msgstr "Nie mogę zmienić na ten email."
+
+#: ../../mod/settings.php:454
+msgid "Private forum has no privacy permissions. Using default privacy group."
 msgstr ""
 
-#: ../../addon/group_text/group_text.php:78
-#: ../../addon.old/group_text/group_text.php:78
-msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
+#: ../../mod/settings.php:458
+msgid "Private forum has no privacy permissions and no default privacy group."
 msgstr ""
 
-#: ../../addon/libravatar/libravatar.php:14
-#: ../../addon.old/libravatar/libravatar.php:14
-msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
-msgstr ""
+#: ../../mod/settings.php:559 ../../mod/settings.php:585
+#: ../../mod/settings.php:621
+msgid "Add application"
+msgstr "Dodaj aplikacje"
 
-#: ../../addon/libravatar/libravatar.php:73
-#: ../../addon/gravatar/gravatar.php:71
-#: ../../addon.old/libravatar/libravatar.php:73
-#: ../../addon.old/gravatar/gravatar.php:71
-msgid "generic profile image"
-msgstr "generuj obraz profilowy"
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
+msgid "Redirect"
+msgstr "Przekierowanie"
 
-#: ../../addon/libravatar/libravatar.php:74
-#: ../../addon/gravatar/gravatar.php:72
-#: ../../addon.old/libravatar/libravatar.php:74
-#: ../../addon.old/gravatar/gravatar.php:72
-msgid "random geometric pattern"
-msgstr "przypadkowy wzorzec geometryczny"
+#: ../../mod/settings.php:566 ../../mod/settings.php:592
+msgid "Icon url"
+msgstr "Adres ikony"
 
-#: ../../addon/libravatar/libravatar.php:75
-#: ../../addon/gravatar/gravatar.php:73
-#: ../../addon.old/libravatar/libravatar.php:75
-#: ../../addon.old/gravatar/gravatar.php:73
-msgid "monster face"
-msgstr "monster face"
+#: ../../mod/settings.php:577
+msgid "You can't edit this application."
+msgstr "Nie możesz edytować tej aplikacji."
 
-#: ../../addon/libravatar/libravatar.php:76
-#: ../../addon/gravatar/gravatar.php:74
-#: ../../addon.old/libravatar/libravatar.php:76
-#: ../../addon.old/gravatar/gravatar.php:74
-msgid "computer generated face"
-msgstr ""
+#: ../../mod/settings.php:620
+msgid "Connected Apps"
+msgstr "Powiązane aplikacje"
 
-#: ../../addon/libravatar/libravatar.php:77
-#: ../../addon/gravatar/gravatar.php:75
-#: ../../addon.old/libravatar/libravatar.php:77
-#: ../../addon.old/gravatar/gravatar.php:75
-msgid "retro arcade style face"
-msgstr ""
+#: ../../mod/settings.php:622 ../../mod/editpost.php:109
+#: ../../mod/content.php:751 ../../object/Item.php:110
+msgid "Edit"
+msgstr "Edytuj"
 
-#: ../../addon/libravatar/libravatar.php:83
-#: ../../addon.old/libravatar/libravatar.php:83
-#, php-format
-msgid "Your PHP version %s is lower than the required PHP >= 5.3."
-msgstr ""
+#: ../../mod/settings.php:624
+msgid "Client key starts with"
+msgstr "Klucz klienta zaczyna się od"
 
-#: ../../addon/libravatar/libravatar.php:84
-#: ../../addon.old/libravatar/libravatar.php:84
-msgid "This addon is not functional on your server."
-msgstr ""
+#: ../../mod/settings.php:625
+msgid "No name"
+msgstr "Bez nazwy"
 
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid "Information"
-msgstr ""
+#: ../../mod/settings.php:626
+msgid "Remove authorization"
+msgstr "Odwołaj upoważnienie"
 
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon.old/libravatar/libravatar.php:93
-msgid ""
-"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
-"Libravatar addon will fall back to Gravatar if nothing was found at "
-"Libravatar."
-msgstr ""
+#: ../../mod/settings.php:638
+msgid "No Plugin settings configured"
+msgstr "Ustawienia wtyczki nieskonfigurowane"
 
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Default avatar image"
-msgstr "Domyślny awatar"
+#: ../../mod/settings.php:660
+msgid "Off"
+msgstr "Wyłącz"
 
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon.old/libravatar/libravatar.php:100
-msgid "Select default avatar image if none was found. See README"
-msgstr ""
+#: ../../mod/settings.php:660
+msgid "On"
+msgstr "Włącz"
 
-#: ../../addon/libravatar/libravatar.php:112
-#: ../../addon.old/libravatar/libravatar.php:112
-msgid "Libravatar settings updated."
+#: ../../mod/settings.php:668
+msgid "Additional Features"
 msgstr ""
 
-#: ../../addon/libertree/libertree.php:36
-#: ../../addon.old/libertree/libertree.php:36
-msgid "Post to libertree"
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
 msgstr ""
 
-#: ../../addon/libertree/libertree.php:67
-#: ../../addon.old/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr ""
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "enabled"
+msgstr "włączony"
 
-#: ../../addon/libertree/libertree.php:69
-#: ../../addon.old/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr ""
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "disabled"
+msgstr "wyłączony"
 
-#: ../../addon/libertree/libertree.php:74
-#: ../../addon.old/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr ""
+#: ../../mod/settings.php:682
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../addon/libertree/libertree.php:79
-#: ../../addon.old/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr ""
+#: ../../mod/settings.php:714
+msgid "Email access is disabled on this site."
+msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"
 
-#: ../../addon/libertree/libertree.php:84
-#: ../../addon.old/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr ""
+#: ../../mod/settings.php:721
+msgid "Connector Settings"
+msgstr "Ustawienia konektora"
 
-#: ../../addon/altpager/altpager.php:46
-#: ../../addon.old/altpager/altpager.php:46
-msgid "Altpager settings updated."
-msgstr ""
+#: ../../mod/settings.php:726
+msgid "Email/Mailbox Setup"
+msgstr "Ustawienia  emaila/skrzynki mailowej"
 
-#: ../../addon/altpager/altpager.php:83
-#: ../../addon.old/altpager/altpager.php:79
-msgid "Alternate Pagination Setting"
-msgstr ""
+#: ../../mod/settings.php:727
+msgid ""
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."
 
-#: ../../addon/altpager/altpager.php:85
-#: ../../addon.old/altpager/altpager.php:81
-msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
-msgstr ""
+#: ../../mod/settings.php:728
+msgid "Last successful email check:"
+msgstr "Ostatni sprawdzony e-mail:"
 
-#: ../../addon/altpager/altpager.php:99
-msgid "Force global use of the alternate pager"
-msgstr ""
+#: ../../mod/settings.php:730
+msgid "IMAP server name:"
+msgstr "Nazwa serwera IMAP:"
 
-#: ../../addon/altpager/altpager.php:100
-msgid "Each user chooses whether to use the alternate pager"
-msgstr ""
+#: ../../mod/settings.php:731
+msgid "IMAP port:"
+msgstr "Port IMAP:"
 
-#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
-msgid ""
-"The MathJax addon renders mathematical formulae written using the LaTeX "
-"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
-"your wall,network tab and private mail."
-msgstr ""
+#: ../../mod/settings.php:732
+msgid "Security:"
+msgstr "Ochrona:"
 
-#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr ""
+#: ../../mod/settings.php:733
+msgid "Email login name:"
+msgstr "Login emaila:"
 
-#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
-msgid "MathJax Base URL"
-msgstr ""
+#: ../../mod/settings.php:734
+msgid "Email password:"
+msgstr "Hasło emaila:"
 
-#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
-msgid ""
-"The URL for the javascript file that should be included to use MathJax. Can "
-"be either the MathJax CDN or another installation of MathJax."
-msgstr ""
+#: ../../mod/settings.php:735
+msgid "Reply-to address:"
+msgstr "Odpowiedz na adres:"
 
-#: ../../addon/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon.old/editplain/editplain.php:46
-msgid "Editplain settings updated."
-msgstr ""
+#: ../../mod/settings.php:736
+msgid "Send public posts to all email contacts:"
+msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
 
-#: ../../addon/editplain/editplain.php:76
-#: ../../addon.old/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr ""
+#: ../../mod/settings.php:737
+msgid "Action after import:"
+msgstr "Akcja po zaimportowaniu:"
 
-#: ../../addon/editplain/editplain.php:78
-#: ../../addon.old/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr ""
+#: ../../mod/settings.php:737
+msgid "Mark as seen"
+msgstr "Oznacz jako przeczytane"
 
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr ""
+#: ../../mod/settings.php:737
+msgid "Move to folder"
+msgstr "Przenieś do folderu"
+
+#: ../../mod/settings.php:738
+msgid "Move to folder:"
+msgstr "Przenieś do folderu:"
+
+#: ../../mod/settings.php:809
+msgid "Display Settings"
+msgstr "Wyświetl ustawienia"
+
+#: ../../mod/settings.php:815 ../../mod/settings.php:826
+msgid "Display Theme:"
+msgstr "Wyświetl motyw:"
 
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Select default avatar image if none was found at Gravatar. See README"
+#: ../../mod/settings.php:816
+msgid "Mobile Theme:"
 msgstr ""
 
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Rating of images"
-msgstr ""
+#: ../../mod/settings.php:817
+msgid "Update browser every xx seconds"
+msgstr "Odświeżaj stronę co xx sekund"
 
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Select the appropriate avatar rating for your site. See README"
+#: ../../mod/settings.php:817
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "Dolny limit 10 sekund, brak górnego limitu"
+
+#: ../../mod/settings.php:818
+msgid "Number of items to display per page:"
 msgstr ""
 
-#: ../../addon/gravatar/gravatar.php:111
-#: ../../addon.old/gravatar/gravatar.php:111
-msgid "Gravatar settings updated."
-msgstr "Zaktualizowane ustawienie Gravatara"
+#: ../../mod/settings.php:818
+msgid "Maximum of 100 items"
+msgstr "Maksymalnie 100 elementów"
 
-#: ../../addon/testdrive/testdrive.php:95
-#: ../../addon.old/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
-msgstr ""
+#: ../../mod/settings.php:819
+msgid "Don't show emoticons"
+msgstr "Nie pokazuj emotikonek"
 
-#: ../../addon/testdrive/testdrive.php:96
-#: ../../addon.old/testdrive/testdrive.php:96
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
+#: ../../mod/settings.php:895
+msgid "Normal Account Page"
 msgstr ""
 
-#: ../../addon/pageheader/pageheader.php:50
-#: ../../addon.old/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr ""
+#: ../../mod/settings.php:896
+msgid "This account is a normal personal profile"
+msgstr "To konto jest normalnym osobistym profilem"
 
-#: ../../addon/pageheader/pageheader.php:68
-#: ../../addon.old/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
+#: ../../mod/settings.php:899
+msgid "Soapbox Page"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr "Opublikuj na Insanejournal"
+#: ../../mod/settings.php:900
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"
 
-#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
+#: ../../mod/settings.php:903
+msgid "Community Forum/Celebrity Account"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr ""
+#: ../../mod/settings.php:904
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu."
 
-#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
+#: ../../mod/settings.php:907
+msgid "Automatic Friend Page"
 msgstr ""
 
-#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr ""
+#: ../../mod/settings.php:908
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"
 
-#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
+#: ../../mod/settings.php:911
+msgid "Private Forum [Experimental]"
 msgstr ""
 
-#: ../../addon/jappixmini/jappixmini.php:266
-#: ../../addon.old/jappixmini/jappixmini.php:266
-msgid "Jappix Mini addon settings"
+#: ../../mod/settings.php:912
+msgid "Private forum - approved members only"
 msgstr ""
 
-#: ../../addon/jappixmini/jappixmini.php:268
-#: ../../addon.old/jappixmini/jappixmini.php:268
-msgid "Activate addon"
-msgstr ""
+#: ../../mod/settings.php:924
+msgid "OpenID:"
+msgstr "OpenID:"
 
-#: ../../addon/jappixmini/jappixmini.php:271
-#: ../../addon.old/jappixmini/jappixmini.php:271
-msgid ""
-"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
-msgstr ""
+#: ../../mod/settings.php:924
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "Przeznacz to OpenID do logowania się na to konto."
 
-#: ../../addon/jappixmini/jappixmini.php:274
-#: ../../addon.old/jappixmini/jappixmini.php:274
-msgid "Jabber username"
-msgstr ""
+#: ../../mod/settings.php:934
+msgid "Publish your default profile in your local site directory?"
+msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?"
 
-#: ../../addon/jappixmini/jappixmini.php:277
-#: ../../addon.old/jappixmini/jappixmini.php:277
-msgid "Jabber server"
-msgstr ""
+#: ../../mod/settings.php:940
+msgid "Publish your default profile in the global social directory?"
+msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"
 
-#: ../../addon/jappixmini/jappixmini.php:281
-#: ../../addon.old/jappixmini/jappixmini.php:281
-msgid "Jabber BOSH host"
-msgstr ""
+#: ../../mod/settings.php:948
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?"
 
-#: ../../addon/jappixmini/jappixmini.php:285
-#: ../../addon.old/jappixmini/jappixmini.php:285
-msgid "Jabber password"
-msgstr "Hasło Jabber"
+#: ../../mod/settings.php:952
+msgid "Hide your profile details from unknown viewers?"
+msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?"
 
-#: ../../addon/jappixmini/jappixmini.php:290
-#: ../../addon.old/jappixmini/jappixmini.php:290
-msgid "Encrypt Jabber password with Friendica password (recommended)"
-msgstr ""
+#: ../../mod/settings.php:957
+msgid "Allow friends to post to your profile page?"
+msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych"
 
-#: ../../addon/jappixmini/jappixmini.php:293
-#: ../../addon.old/jappixmini/jappixmini.php:293
-msgid "Friendica password"
-msgstr "Hasło Friendica"
+#: ../../mod/settings.php:963
+msgid "Allow friends to tag your posts?"
+msgstr "Zezwól na oznaczanie twoich postów przez znajomych"
 
-#: ../../addon/jappixmini/jappixmini.php:296
-#: ../../addon.old/jappixmini/jappixmini.php:296
-msgid "Approve subscription requests from Friendica contacts automatically"
+#: ../../mod/settings.php:969
+msgid "Allow us to suggest you as a potential friend to new members?"
 msgstr ""
 
-#: ../../addon/jappixmini/jappixmini.php:299
-#: ../../addon.old/jappixmini/jappixmini.php:299
-msgid "Subscribe to Friendica contacts automatically"
+#: ../../mod/settings.php:975
+msgid "Permit unknown people to send you private mail?"
 msgstr ""
 
-#: ../../addon/jappixmini/jappixmini.php:302
-#: ../../addon.old/jappixmini/jappixmini.php:302
-msgid "Purge internal list of jabber addresses of contacts"
-msgstr ""
+#: ../../mod/settings.php:983
+msgid "Profile is <strong>not published</strong>."
+msgstr "Profil <strong>nie jest opublikowany</strong>"
 
-#: ../../addon/jappixmini/jappixmini.php:308
-#: ../../addon.old/jappixmini/jappixmini.php:308
-msgid "Add contact"
-msgstr "Dodaj kontakt"
+#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "lub"
 
-#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
-msgid "View Source"
-msgstr "Podgląd źródła"
+#: ../../mod/settings.php:991
+msgid "Your Identity Address is"
+msgstr "Twój adres identyfikacyjny to"
 
-#: ../../addon/statusnet/statusnet.php:138
-#: ../../addon.old/statusnet/statusnet.php:134
-msgid "Post to StatusNet"
-msgstr "Wyślij do sieci StatusNet"
+#: ../../mod/settings.php:1002
+msgid "Automatically expire posts after this many days:"
+msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:180
-#: ../../addon.old/statusnet/statusnet.php:176
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr "Proszę się skontaktować z administratorem strony. <br />  API URL nie jest poprawne"
+#: ../../mod/settings.php:1002
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."
 
-#: ../../addon/statusnet/statusnet.php:208
-#: ../../addon.old/statusnet/statusnet.php:204
-msgid "We could not contact the StatusNet API with the Path you entered."
+#: ../../mod/settings.php:1003
+msgid "Advanced expiration settings"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:238
-#: ../../addon.old/statusnet/statusnet.php:232
-msgid "StatusNet settings updated."
-msgstr "Ustawienia StatusNet zaktualizowane"
+#: ../../mod/settings.php:1004
+msgid "Advanced Expiration"
+msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:269
-#: ../../addon.old/statusnet/statusnet.php:257
-msgid "StatusNet Posting Settings"
-msgstr "Ustawienia StatusNet"
+#: ../../mod/settings.php:1005
+msgid "Expire posts:"
+msgstr "Wygasające posty:"
 
-#: ../../addon/statusnet/statusnet.php:283
-#: ../../addon.old/statusnet/statusnet.php:271
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr ""
+#: ../../mod/settings.php:1006
+msgid "Expire personal notes:"
+msgstr "Wygasające notatki osobiste:"
 
-#: ../../addon/statusnet/statusnet.php:284
-#: ../../addon.old/statusnet/statusnet.php:272
-msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
+#: ../../mod/settings.php:1007
+msgid "Expire starred posts:"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:292
-#: ../../addon.old/statusnet/statusnet.php:280
-msgid "Provide your own OAuth Credentials"
-msgstr ""
+#: ../../mod/settings.php:1008
+msgid "Expire photos:"
+msgstr "Wygasające zdjęcia:"
 
-#: ../../addon/statusnet/statusnet.php:293
-#: ../../addon.old/statusnet/statusnet.php:281
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendica Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendica installation at your favorited StatusNet installation."
+#: ../../mod/settings.php:1009
+msgid "Only expire posts by others:"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:295
-#: ../../addon.old/statusnet/statusnet.php:283
-msgid "OAuth Consumer Key"
-msgstr ""
+#: ../../mod/settings.php:1035
+msgid "Account Settings"
+msgstr "Ustawienia konta"
+
+#: ../../mod/settings.php:1043
+msgid "Password Settings"
+msgstr "Ustawienia hasła"
+
+#: ../../mod/settings.php:1044
+msgid "New Password:"
+msgstr "Nowe hasło:"
+
+#: ../../mod/settings.php:1045
+msgid "Confirm:"
+msgstr "Potwierdź:"
+
+#: ../../mod/settings.php:1045
+msgid "Leave password fields blank unless changing"
+msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić."
 
-#: ../../addon/statusnet/statusnet.php:298
-#: ../../addon.old/statusnet/statusnet.php:286
-msgid "OAuth Consumer Secret"
-msgstr ""
+#: ../../mod/settings.php:1049
+msgid "Basic Settings"
+msgstr "Ustawienia podstawowe"
 
-#: ../../addon/statusnet/statusnet.php:301
-#: ../../addon.old/statusnet/statusnet.php:289
-msgid "Base API Path (remember the trailing /)"
-msgstr ""
+#: ../../mod/settings.php:1051
+msgid "Email Address:"
+msgstr "Adres email:"
 
-#: ../../addon/statusnet/statusnet.php:322
-#: ../../addon.old/statusnet/statusnet.php:310
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr "Aby uzyskać połączenie z kontem w serwisie StatusNet naciśnij przycisk poniżej aby otrzymać kod bezpieczeństwa od StatusNet, który musisz skopiować do pola poniżej i wysłać formularz. Tylko twoje <strong>publiczne</strong> posty będą publikowane na StatusNet."
+#: ../../mod/settings.php:1052
+msgid "Your Timezone:"
+msgstr "Twoja strefa czasowa:"
 
-#: ../../addon/statusnet/statusnet.php:323
-#: ../../addon.old/statusnet/statusnet.php:311
-msgid "Log in with StatusNet"
-msgstr "Zaloguj się przez StatusNet"
+#: ../../mod/settings.php:1053
+msgid "Default Post Location:"
+msgstr "Standardowa lokalizacja wiadomości:"
 
-#: ../../addon/statusnet/statusnet.php:325
-#: ../../addon.old/statusnet/statusnet.php:313
-msgid "Copy the security code from StatusNet here"
-msgstr "Tutaj skopiuj kod bezpieczeństwa z StatusNet"
+#: ../../mod/settings.php:1054
+msgid "Use Browser Location:"
+msgstr "Użyj położenia przeglądarki:"
 
-#: ../../addon/statusnet/statusnet.php:331
-#: ../../addon.old/statusnet/statusnet.php:319
-msgid "Cancel Connection Process"
-msgstr "Anuluj proces łączenia"
+#: ../../mod/settings.php:1057
+msgid "Security and Privacy Settings"
+msgstr "Ustawienia bezpieczeństwa i prywatności"
 
-#: ../../addon/statusnet/statusnet.php:333
-#: ../../addon.old/statusnet/statusnet.php:321
-msgid "Current StatusNet API is"
-msgstr "Aktualnym StatusNet API jest"
+#: ../../mod/settings.php:1059
+msgid "Maximum Friend Requests/Day:"
+msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"
 
-#: ../../addon/statusnet/statusnet.php:334
-#: ../../addon.old/statusnet/statusnet.php:322
-msgid "Cancel StatusNet Connection"
-msgstr "Anuluj połączenie StatusNet"
+#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
+msgid "(to prevent spam abuse)"
+msgstr "(aby zapobiec spamowaniu)"
 
-#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
-#: ../../addon.old/statusnet/statusnet.php:333
-#: ../../addon.old/twitter/twitter.php:189
-msgid "Currently connected to: "
-msgstr "Obecnie połączone z:"
+#: ../../mod/settings.php:1060
+msgid "Default Post Permissions"
+msgstr "Domyślne prawa dostępu wiadomości"
 
-#: ../../addon/statusnet/statusnet.php:346
-#: ../../addon.old/statusnet/statusnet.php:334
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr ""
+#: ../../mod/settings.php:1061
+msgid "(click to open/close)"
+msgstr "(kliknij by otworzyć/zamknąć)"
 
-#: ../../addon/statusnet/statusnet.php:348
-#: ../../addon.old/statusnet/statusnet.php:336
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to StatusNet will lead the visitor to a blank page "
-"informing the visitor that the access to your profile has been restricted."
+#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
+#: ../../mod/photos.php:1506
+msgid "Show to Groups"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:351
-#: ../../addon.old/statusnet/statusnet.php:339
-msgid "Allow posting to StatusNet"
-msgstr "Pozwól zamieszczać posty na StatusNet"
-
-#: ../../addon/statusnet/statusnet.php:354
-#: ../../addon.old/statusnet/statusnet.php:342
-msgid "Send public postings to StatusNet by default"
+#: ../../mod/settings.php:1071 ../../mod/photos.php:1141
+#: ../../mod/photos.php:1507
+msgid "Show to Contacts"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:358
-msgid ""
-"Mirror all posts from statusnet that are no replies or repeated messages"
+#: ../../mod/settings.php:1072
+msgid "Default Private Post"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:362
-msgid "Shortening method that optimizes the post"
+#: ../../mod/settings.php:1073
+msgid "Default Public Post"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:366
-#: ../../addon.old/statusnet/statusnet.php:345
-msgid "Send linked #-tags and @-names to StatusNet"
+#: ../../mod/settings.php:1077
+msgid "Default Permissions for New Posts"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
-#: ../../addon.old/statusnet/statusnet.php:350
-#: ../../addon.old/twitter/twitter.php:206
-msgid "Clear OAuth configuration"
+#: ../../mod/settings.php:1089
+msgid "Maximum private messages per day from unknown people:"
 msgstr ""
 
-#: ../../addon/statusnet/statusnet.php:745
-#: ../../addon.old/statusnet/statusnet.php:568
-msgid "API URL"
-msgstr "Adres API"
+#: ../../mod/settings.php:1092
+msgid "Notification Settings"
+msgstr "Ustawienia powiadomień"
 
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
+#: ../../mod/settings.php:1093
+msgid "By default post a status message when:"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:144
-msgid "You are now authenticated to tumblr."
+#: ../../mod/settings.php:1094
+msgid "accepting a friend request"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:145
-msgid "return to the connector page"
+#: ../../mod/settings.php:1095
+msgid "joining a forum/community"
 msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36
-msgid "Post to Tumblr"
-msgstr "Opublikuj na Tumblrze"
+#: ../../mod/settings.php:1096
+msgid "making an <em>interesting</em> profile change"
+msgstr ""
 
-#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67
-msgid "Tumblr Post Settings"
-msgstr "Ustawienia postu Tumblr"
+#: ../../mod/settings.php:1097
+msgid "Send a notification email when:"
+msgstr "Wyślij powiadmonienia na email, kiedy:"
 
-#: ../../addon/tumblr/tumblr.php:188
-msgid "(Re-)Authenticate your tumblr page"
-msgstr ""
+#: ../../mod/settings.php:1098
+msgid "You receive an introduction"
+msgstr "Otrzymałeś zaproszenie"
 
-#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69
-msgid "Enable Tumblr Post Plugin"
-msgstr "Zezwól na wtyczkę postu Tumblr"
+#: ../../mod/settings.php:1099
+msgid "Your introductions are confirmed"
+msgstr "Dane zatwierdzone"
 
-#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84
-msgid "Post to Tumblr by default"
-msgstr "Post do Tumblr przez standard"
+#: ../../mod/settings.php:1100
+msgid "Someone writes on your profile wall"
+msgstr "Ktoś pisze na twojej ścianie profilowej"
 
-#: ../../addon/tumblr/tumblr.php:217
-msgid "Post to page:"
-msgstr "Napisz na stronę:"
+#: ../../mod/settings.php:1101
+msgid "Someone writes a followup comment"
+msgstr "Ktoś pisze komentarz nawiązujący."
 
-#: ../../addon/tumblr/tumblr.php:228
-msgid "You are not authenticated to tumblr"
-msgstr ""
+#: ../../mod/settings.php:1102
+msgid "You receive a private message"
+msgstr "Otrzymałeś prywatną wiadomość"
 
-#: ../../addon/numfriends/numfriends.php:46
-#: ../../addon.old/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
-msgstr ""
+#: ../../mod/settings.php:1103
+msgid "You receive a friend suggestion"
+msgstr "Otrzymane propozycje znajomych"
 
-#: ../../addon/numfriends/numfriends.php:77
-#: ../../addon.old/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
+#: ../../mod/settings.php:1104
+msgid "You are tagged in a post"
+msgstr "Jesteś oznaczony w poście"
+
+#: ../../mod/settings.php:1105
+msgid "You are poked/prodded/etc. in a post"
 msgstr ""
 
-#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
-#: ../../addon.old/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
+#: ../../mod/settings.php:1108
+msgid "Advanced Account/Page Type Settings"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
-msgid "Gnot settings updated."
+#: ../../mod/settings.php:1109
+msgid "Change the behaviour of this account for special situations"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
-msgid "Gnot Settings"
+#: ../../mod/share.php:44
+msgid "link"
 msgstr ""
 
-#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "Ustawienia kontaktu zaktualizowane."
+
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "Nie udało się zaktualizować kontaktu."
+
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "Kontakt nie znaleziony"
+
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "Napraw ustawienia kontaktów"
+
+#: ../../mod/crepair.php:137
 msgid ""
-"Allows threading of email comment notifications on Gmail and anonymising the"
-" subject line."
-msgstr ""
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać."
 
-#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
-msgid "Enable this plugin/addon?"
-msgstr "Umożliwić tego plugina/wtyczkę?"
+#: ../../mod/crepair.php:138
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce."
 
-#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d"
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "Wróć do edytora kontaktów"
+
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "Nazwa konta"
+
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr "Opublikuj na Wordpress"
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "URL konta"
+
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "URL żądajacy znajomości"
 
-#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr "Ustawienia wpisów WorldPress"
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "URL potwierdzający znajomość"
 
-#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr "Włącz plugin wpisów WorldPress"
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "Zgłoszenie Punktu Końcowego URL"
 
-#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr "nazwa użytkownika WordPress"
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "Adres Ankiety / RSS"
 
-#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr "hasło WordPress"
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "Nowe zdjęcie z tej ścieżki"
 
-#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
-msgid "WordPress API URL"
-msgstr "WordPress API URL"
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr ""
 
-#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
-msgid "Post to WordPress by default"
+#: ../../mod/delegate.php:123
+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 ""
 
-#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
 msgstr ""
 
-#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
-#: ../../addon/posterous/posterous.php:189
-#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
-#: ../../addon.old/blogger/blogger.php:172
-#: ../../addon.old/posterous/posterous.php:189
-msgid "Post from Friendica"
-msgstr "Post z Friendica"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr ""
 
-#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
-msgid "Read the original post and comment stream on Friendica"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
 msgstr ""
 
-#: ../../addon/showmore/showmore.php:38
-#: ../../addon.old/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
-msgstr "\"Pokaż więcej\" ustawień"
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "Dodaj"
 
-#: ../../addon/showmore/showmore.php:41
-#: ../../addon.old/showmore/showmore.php:41
-msgid "Enable Show More"
-msgstr ""
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "Brak wpisów."
 
-#: ../../addon/showmore/showmore.php:44
-#: ../../addon.old/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
 msgstr ""
 
-#: ../../addon/showmore/showmore.php:65
-#: ../../addon.old/showmore/showmore.php:65
-msgid "Show More Settings saved."
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
-msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
+#: ../../mod/poke.php:194
+msgid "Recipient"
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
-#, php-format
-msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
-msgid "Piwik Base URL"
-msgstr ""
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "Zrób ten post prywatnym"
 
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
+#: ../../mod/dfrn_confirm.php:119
 msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
 msgstr ""
 
-#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
-msgid "Site ID"
-msgstr "ID strony"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "Odpowiedź do zdalnej strony nie została zrozumiana"
 
-#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "Nieoczekiwana odpowiedź od strony zdalnej"
 
-#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "Potwierdzenie ukończone poprawnie"
 
-#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73
-msgid "Post to Twitter"
-msgstr "Post na Twitter"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "Zdalna strona zgłoszona:"
 
-#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122
-msgid "Twitter settings updated."
-msgstr "Zaktualizowano ustawienia Twittera."
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."
 
-#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146
-msgid "Twitter Posting Settings"
-msgstr "Ustawienia wpisów z Twittera"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "Nieudane lub unieważnione wprowadzenie."
 
-#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony."
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "Nie można ustawić zdjęcia kontaktu."
 
-#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172
-msgid ""
-"At this Friendica instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nie znaleziono użytkownika dla '%s'"
 
-#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173
-msgid "Log in with Twitter"
-msgstr "Zaloguj się przez Twitter"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "Klucz kodujący jest najwyraźniej zepsuty"
 
-#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175
-msgid "Copy the PIN from Twitter here"
-msgstr "Skopiuj tutaj PIN z Twittera"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas."
 
-#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr ""
+#: ../../mod/dfrn_confirm.php:604
+msgid "Contact record was not found for you on our site."
+msgstr "Nie znaleziono kontaktu na naszej stronie"
 
-#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to Twitter will lead the visitor to a blank page informing "
-"the visitor that the access to your profile has been restricted."
+#: ../../mod/dfrn_confirm.php:618
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195
-msgid "Allow posting to Twitter"
-msgstr "Zezwól na opublikowanie w serwisie Twitter"
+#: ../../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 "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."
 
-#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198
-msgid "Send public postings to Twitter by default"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"
 
-#: ../../addon/twitter/twitter.php:213
-msgid "Mirror all posts from twitter that are no replies or retweets"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"
 
-#: ../../addon/twitter/twitter.php:217
-msgid "Shortening method that optimizes the tweet"
-msgstr ""
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Połączenie zaakceptowane %s"
 
-#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201
-msgid "Send linked #-tags and @-names to Twitter"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
-msgid "Consumer key"
-msgstr "Klucz konsumenta"
-
-#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
-msgid "Consumer secret"
-msgstr "Sekret konsumenta"
-
-#: ../../addon/twitter/twitter.php:560
-msgid "Name of the Twitter Application"
+#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#, php-format
+msgid "%1$s welcomes %2$s"
 msgstr ""
 
-#: ../../addon/twitter/twitter.php:560
-msgid ""
-"set this to avoid mirroring postings from ~friendica back to ~friendica"
-msgstr ""
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "To wprowadzenie zostało już zaakceptowane."
 
-#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
-msgid "IRC Settings"
-msgstr "Ustawienia IRC"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."
 
-#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
-msgstr ""
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."
 
-#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
-msgstr ""
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."
 
-#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
-msgid "IRC settings saved."
-msgstr "Zapisano ustawienia IRC."
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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 wymagany parametr nie został znaleziony w podanej lokacji"
+msgstr[1] "%d wymagane parametry nie zostały znalezione w podanej lokacji"
+msgstr[2] "%d wymagany parametr nie został znaleziony w podanej lokacji"
 
-#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
-msgid "IRC Chatroom"
-msgstr "IRC Chatroom"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "wprowadzanie zakończone."
 
-#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
-msgid "Popular Channels"
-msgstr "Popularne kanały"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "Nieodwracalny błąd protokołu."
 
-#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
-msgid "Fromapp settings updated."
-msgstr ""
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "Profil niedostępny."
 
-#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
-msgid "FromApp Settings"
-msgstr ""
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s otrzymał dziś zbyt wiele żądań połączeń."
 
-#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
-msgid ""
-"The application name you would like to show your posts originating from."
-msgstr ""
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "Ochrona przed spamem została wywołana."
 
-#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
-msgid "Use this application name even if another application was used."
-msgstr ""
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "Przyjaciele namawiają do spróbowania za 24h."
 
-#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
-msgid "Post to blogger"
-msgstr "Post na blogger"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "Niewłaściwy lokalizator "
 
-#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
-msgid "Blogger Post Settings"
-msgstr "Ustawienia postów na Blogger"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "Nieprawidłowy adres email."
 
-#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
 msgstr ""
 
-#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
-msgid "Blogger username"
-msgstr "Nazwa użytkownika na Blogger"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu."
 
-#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
-msgid "Blogger password"
-msgstr "Hasło do Blogger"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "Już się tu przedstawiłeś."
 
-#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
-msgid "Blogger API URL"
-msgstr ""
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "Widocznie jesteście już znajomymi z %s"
 
-#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
-msgid "Post to Blogger by default"
-msgstr ""
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "Zły adres URL profilu."
 
-#: ../../addon/posterous/posterous.php:37
-#: ../../addon.old/posterous/posterous.php:37
-msgid "Post to Posterous"
-msgstr ""
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "Twoje dane zostały wysłane."
 
-#: ../../addon/posterous/posterous.php:70
-#: ../../addon.old/posterous/posterous.php:70
-msgid "Posterous Post Settings"
-msgstr ""
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "Proszę zalogować się do potwierdzenia wstępu."
 
-#: ../../addon/posterous/posterous.php:72
-#: ../../addon.old/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
-msgstr ""
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. "
 
-#: ../../addon/posterous/posterous.php:77
-#: ../../addon.old/posterous/posterous.php:77
-msgid "Posterous login"
-msgstr ""
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "Ukryj kontakt"
 
-#: ../../addon/posterous/posterous.php:82
-#: ../../addon.old/posterous/posterous.php:82
-msgid "Posterous password"
-msgstr ""
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "Welcome home %s."
 
-#: ../../addon/posterous/posterous.php:87
-#: ../../addon.old/posterous/posterous.php:87
-msgid "Posterous site ID"
-msgstr ""
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
 
-#: ../../addon/posterous/posterous.php:92
-#: ../../addon.old/posterous/posterous.php:92
-msgid "Posterous API token"
-msgstr ""
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "Potwierdź"
 
-#: ../../addon/posterous/posterous.php:97
-#: ../../addon.old/posterous/posterous.php:97
-msgid "Post to Posterous by default"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
-msgstr "Ustawienia motywu"
-
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
 msgstr ""
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "Ustaw rozmiar fontów dla postów i komentarzy"
-
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
+#: ../../mod/dfrn_request.php:829
+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 ""
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "Przyjaciel/Prośba o połączenie"
+
+#: ../../mod/dfrn_request.php:833
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
-#: ../../include/nav.php:143
-msgid "Your posts and conversations"
-msgstr "Twoje posty i rozmowy"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "Proszę odpowiedzieć na poniższe:"
 
-#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "Twoja strona profilowa"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "Czy %s Cię zna?"
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr "Twoje kontakty"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "Dodaj osobistą notkę:"
 
-#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "Twoje zdjęcia"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Sieć społeczna"
 
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
-msgid "Your events"
-msgstr "Twoje wydarzenia"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr ""
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "Osobiste notatki"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "Twój zidentyfikowany adres:"
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "Twoje osobiste zdjęcia"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "Wyślij zgłoszenie"
 
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:163
-msgid "Community Pages"
-msgstr "Strony społecznościowe"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr ""
 
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-#: ../../view/theme/diabook/config.php:165
-msgid "Community Profiles"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
-#: ../../view/theme/diabook/config.php:170
-msgid "Last users"
-msgstr "Ostatni użytkownicy"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr ""
 
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-#: ../../view/theme/diabook/config.php:172
-msgid "Last likes"
-msgstr "Ostatnie polubienia"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "Ignoruj/Ukryj"
 
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
-#: ../../view/theme/diabook/config.php:171
-msgid "Last photos"
-msgstr "Ostatnie zdjęcia"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "Szukaj osób"
 
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-#: ../../view/theme/diabook/config.php:168
-msgid "Find Friends"
-msgstr "Znajdź znajomych"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "brak dopasowań"
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr ""
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "Ograniczony dostęp do tego konta"
 
-#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "Podobne zainteresowania"
+#: ../../mod/display.php:177
+msgid "Item has been removed."
+msgstr "Przedmiot został usunięty"
 
-#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "Zaproś znajomych"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "Tag usunięty"
 
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:164
-msgid "Earth Layers"
-msgstr ""
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Usuń pozycję Tag"
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr ""
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Wybierz tag do usunięcia"
 
-#: ../../view/theme/diabook/theme.php:578
-#: ../../view/theme/diabook/config.php:161
-msgid "Set longitude (X) for Earth Layers"
-msgstr ""
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Artykuł nie znaleziony"
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/config.php:162
-msgid "Set latitude (Y) for Earth Layers"
-msgstr ""
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "Edytuj post"
 
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-#: ../../view/theme/diabook/config.php:166
-msgid "Help or @NewHere ?"
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
 msgstr ""
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
-#: ../../view/theme/diabook/config.php:167
-msgid "Connect Services"
-msgstr ""
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "d, M d "
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr "Ostatnie Tweetnięcie"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "Edytuj wydarzenie"
 
-#: ../../view/theme/diabook/theme.php:609
-#: ../../view/theme/diabook/config.php:159
-msgid "Set twitter search term"
-msgstr ""
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "Stwórz nowe wydarzenie"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
-msgid "don't show"
-msgstr "nie pokazuj"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "godzina:minuta"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
-msgid "show"
-msgstr "pokaż"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "Szczegóły wydarzenia"
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
 msgstr ""
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr ""
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "Rozpoczęcie wydarzenia:"
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr ""
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "Wymagany"
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr "Zestaw kolorów"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr ""
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "Zakończenie wydarzenia:"
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr "Ostatnie tweetnięcie"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "Dopasuj dla strefy czasowej widza"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr ""
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "Opis:"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "Lewo"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "Tytuł:"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "Środek"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "Udostępnij te wydarzenie"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr ""
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "Pliki"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
+#: ../../mod/uexport.php:72
+msgid "Export account"
 msgstr ""
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "Zestaw kolorów"
+#: ../../mod/uexport.php:72
+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 ""
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "d M, R"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr ""
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "d M"
+#: ../../mod/uexport.php:73
+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 ""
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "Urodziny:"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "- wybierz -"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "Wiek:"
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr ""
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "od %1$d %2$s"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "Przenieś konto"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "Tagi:"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr ""
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "Religia:"
+#: ../../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 ""
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "Hobby/Zainteresowania:"
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
+msgstr ""
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "Informacje kontaktowe i sieci społeczne"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr ""
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "Zainteresowania muzyczne:"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr ""
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "Książki, literatura:"
+#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
+#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr ""
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "Telewizja:"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "Kontakt dodany"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "Film/taniec/kultura/rozrywka"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "To jest Friendica, wersja"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "Miłość/Romans:"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "otwierane na serwerze"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "Praca/zatrudnienie:"
+#: ../../mod/friendica.php:58
+msgid ""
+"Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn "
+"more about the Friendica project."
+msgstr "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica."
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "Szkoła/edukacja:"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "Reportowanie błędów i problemów: proszę odwiedź"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "Nieznany | Bez kategori"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr ""
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "Zablokować natychmiast "
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "Zainstalowane pluginy/dodatki/aplikacje:"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-msgstr ""
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "Znam, ale nie mam zdania"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "Propozycja znajomych wysłana."
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "Ok, bez problemów"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "Zaproponuj znajomych"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "Zaufane, ma moje poparcie"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "Zaproponuj znajomych dla %s"
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "Jak najczęściej"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "Grupa utworzona."
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "Godzinowo"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "Nie mogę stworzyć grupy"
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "Dwa razy dziennie"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "Nie znaleziono grupy"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "Nazwa grupy zmieniona"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "Stwórz grupę znajomych."
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr ""
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "Nazwa grupy: "
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "Grupa usunięta."
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "Nie można usunąć grupy."
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "Edytor grupy"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr ""
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "Członkowie"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "Mężczyzna"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Brak profilu"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "Kobieta"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "Pomoc:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "Aktualnie Mężczyzna"
+#: ../../mod/help.php:90 ../../index.php:226
+msgid "Not Found"
+msgstr "Nie znaleziono"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "Aktualnie Kobieta"
+#: ../../mod/help.php:93 ../../index.php:229
+msgid "Page not found."
+msgstr "Strona nie znaleziona."
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "Bardziej Mężczyzna"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "brak kontaktów"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "Bardziej Kobieta"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "Brak dostępu"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "Transpłciowy"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "Plik przekracza dozwolony rozmiar %d"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "Międzypłciowy"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "Przesyłanie pliku nie powiodło się."
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "Transseksualista"
+#: ../../mod/install.php:117
+msgid "Friendica Social Communications Server - Setup"
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "Hermafrodyta"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "Nie można nawiązać połączenia z bazą danych"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "Bezpłciowy"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "Nie mogę stworzyć tabeli."
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "Niespecyficzne"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr ""
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "Inne"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "Niezdecydowany"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:506
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "Mężczyźni"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "Sprawdzanie systemu"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "Kobiety"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "Sprawdź ponownie"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "Gej"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "Połączenie z bazą danych"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "Lesbijka"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "Brak preferencji"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "Biseksualny"
+#: ../../mod/install.php:230
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
+msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "Niezidentyfikowany"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "Baza danych - Nazwa serwera"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "Abstynent"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "Baza danych - Nazwa loginu"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "Dziewica"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "Baza danych - Hasło loginu"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "Zboczeniec"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "Baza danych - Nazwa"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "Fetysz"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "Adres e-mail administratora strony"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "Nadmiar"
+#: ../../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/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "Nieseksualny"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "Singiel"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "Ustawienia strony"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "Samotny"
+#: ../../mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "Dostępny"
+#: ../../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 background polling via cron. See <a "
+"href='http://friendica.com/node/27'>'Activating scheduled tasks'</a>"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "Niedostępny"
+#: ../../mod/install.php:325
+msgid "PHP executable path"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
+#: ../../mod/install.php:325
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "zakochany"
+#: ../../mod/install.php:330
+msgid "Command line PHP"
+msgstr "Linia komend PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "Randki"
+#: ../../mod/install.php:339
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "Niewierny"
+#: ../../mod/install.php:340
+msgid "This is required for message delivery to work."
+msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "Uzależniony od seksu"
+#: ../../mod/install.php:342
+msgid "PHP register_argc_argv"
+msgstr ""
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:279
-#: ../../include/user.php:283
-msgid "Friends"
-msgstr "Przyjaciele"
+#: ../../mod/install.php:363
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "Błąd : funkcja systemu  \"openssl_pkey_new\"  nie jest  w stanie wygenerować klucza szyfrującego ."
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "Przyjaciele/Korzyści"
+#: ../../mod/install.php:364
+msgid ""
+"If running under Windows, please see "
+"\"http://www.php.net/manual/en/openssl.installation.php\"."
+msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
 
-#: ../../include/profile_selectors.php:42
-msgid "Casual"
-msgstr "Przypadkowy"
+#: ../../mod/install.php:366
+msgid "Generate encryption keys"
+msgstr "Generuj klucz kodowania"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "Zaręczeni"
+#: ../../mod/install.php:373
+msgid "libCurl PHP module"
+msgstr "Moduł libCurl PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "Małżeństwo"
+#: ../../mod/install.php:374
+msgid "GD graphics PHP module"
+msgstr "Moduł PHP-GD"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
+#: ../../mod/install.php:375
+msgid "OpenSSL PHP module"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "Partnerzy"
+#: ../../mod/install.php:376
+msgid "mysqli PHP module"
+msgstr "Moduł mysql PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "Konkubinat"
+#: ../../mod/install.php:377
+msgid "mb_string PHP module"
+msgstr "Moduł mb_string PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
+#: ../../mod/install.php:382 ../../mod/install.php:384
+msgid "Apache mod_rewrite module"
 msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "Szczęśliwy"
+#: ../../mod/install.php:382
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr ""
+#: ../../mod/install.php:390
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "Swinger"
+#: ../../mod/install.php:394
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "Zdradzony"
+#: ../../mod/install.php:398
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "W separacji"
+#: ../../mod/install.php:402
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "Niestabilny"
+#: ../../mod/install.php:406
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "Błąd: moduł PHP mb_string  jest wymagany ale nie jest zainstalowany"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "Rozwiedzeni"
+#: ../../mod/install.php:423
+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 "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\"  i nie jest w stanie tego zrobić."
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
+#: ../../mod/install.php:424
+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 ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "Wdowiec"
-
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "Nieokreślony"
-
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "To skomplikowane"
+#: ../../mod/install.php:425
+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 ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "Nie obchodzi mnie to"
+#: ../../mod/install.php:426
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr ""
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "Zapytaj mnie "
+#: ../../mod/install.php:429
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php jest zapisywalny"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "Start:"
+#: ../../mod/install.php:439
+msgid ""
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr ""
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "Wykończenia:"
+#: ../../mod/install.php:440
+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 ""
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "(bez tematu)"
+#: ../../mod/install.php:441
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr ""
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "na Last.fm"
+#: ../../mod/install.php:442
+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 ""
 
-#: ../../include/text.php:262
-msgid "prev"
-msgstr "poprzedni"
+#: ../../mod/install.php:445
+msgid "view/smarty3 is writable"
+msgstr ""
 
-#: ../../include/text.php:264
-msgid "first"
-msgstr "pierwszy"
+#: ../../mod/install.php:457
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
 
-#: ../../include/text.php:293
-msgid "last"
-msgstr "ostatni"
+#: ../../mod/install.php:459
+msgid "Url rewrite is working"
+msgstr ""
 
-#: ../../include/text.php:296
-msgid "next"
-msgstr "następny"
+#: ../../mod/install.php:469
+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 "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
 
-#: ../../include/text.php:314
-msgid "newer"
-msgstr "nowsze"
+#: ../../mod/install.php:493
+msgid "Errors encountered creating database tables."
+msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
 
-#: ../../include/text.php:318
-msgid "older"
-msgstr "starsze"
+#: ../../mod/install.php:504
+msgid "<h1>What next</h1>"
+msgstr "<h1>Co dalej</h1>"
 
-#: ../../include/text.php:657
-msgid "No contacts"
-msgstr "Brak kontaktów"
+#: ../../mod/install.php:505
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller."
 
-#: ../../include/text.php:666
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
 #, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d kontakt"
-msgstr[1] "%d kontaktów"
-msgstr[2] "%d kontakty"
+msgid "Image exceeds size limit of %d"
+msgstr "Rozmiar obrazka przekracza limit %d"
 
-#: ../../include/text.php:779
-msgid "poke"
-msgstr "zaczep"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "Przetwarzanie obrazu nie powiodło się."
 
-#: ../../include/text.php:779 ../../include/conversation.php:211
-msgid "poked"
-msgstr "zaczepiony"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "Przesyłanie obrazu nie powiodło się"
 
-#: ../../include/text.php:780
-msgid "ping"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
 msgstr ""
 
-#: ../../include/text.php:780
-msgid "pinged"
-msgstr ""
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : Niepoprawny adres email."
 
-#: ../../include/text.php:781
-msgid "prod"
-msgstr ""
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "Dołącz do nas na Friendica"
 
-#: ../../include/text.php:781
-msgid "prodded"
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
 msgstr ""
 
-#: ../../include/text.php:782
-msgid "slap"
-msgstr "spoliczkuj"
-
-#: ../../include/text.php:782
-msgid "slapped"
-msgstr "spoliczkowany"
-
-#: ../../include/text.php:783
-msgid "finger"
-msgstr "dotknąć"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : Dostarczenie wiadomości nieudane."
 
-#: ../../include/text.php:783
-msgid "fingered"
-msgstr "dotknięty"
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d wiadomość wysłana."
+msgstr[1] "%d wiadomości wysłane."
+msgstr[2] "%d wysłano ."
 
-#: ../../include/text.php:784
-msgid "rebuff"
-msgstr "odprawiać"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "Nie masz więcej zaproszeń"
 
-#: ../../include/text.php:784
-msgid "rebuffed"
-msgstr "odprawiony"
+#: ../../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 ""
 
-#: ../../include/text.php:796
-msgid "happy"
-msgstr "szczęśliwy"
+#: ../../mod/invite.php:122
+#, php-format
+msgid ""
+"To accept this invitation, please visit and register at %s or any other "
+"public Friendica website."
+msgstr ""
 
-#: ../../include/text.php:797
-msgid "sad"
-msgstr "smutny"
+#: ../../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 ""
 
-#: ../../include/text.php:798
-msgid "mellow"
-msgstr "spokojny"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr ""
 
-#: ../../include/text.php:799
-msgid "tired"
-msgstr "zmęczony"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "Wyślij zaproszenia"
 
-#: ../../include/text.php:800
-msgid "perky"
-msgstr "pewny siebie"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "Wprowadź adresy email, jeden na linijkę:"
 
-#: ../../include/text.php:801
-msgid "angry"
-msgstr "wściekły"
+#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "Twoja wiadomość:"
 
-#: ../../include/text.php:802
-msgid "stupified"
-msgstr "odurzony"
+#: ../../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 ""
 
-#: ../../include/text.php:803
-msgid "puzzled"
-msgstr "zdziwiony"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr ""
 
-#: ../../include/text.php:804
-msgid "interested"
-msgstr "interesujący"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :"
 
-#: ../../include/text.php:805
-msgid "bitter"
-msgstr "zajadły"
+#: ../../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 ""
 
-#: ../../include/text.php:806
-msgid "cheerful"
-msgstr "wesoły"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr ""
 
-#: ../../include/text.php:807
-msgid "alive"
-msgstr "żywy"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "Nie wybrano odbiorcy."
 
-#: ../../include/text.php:808
-msgid "annoyed"
-msgstr "irytujący"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr ""
 
-#: ../../include/text.php:809
-msgid "anxious"
-msgstr "zazdrosny"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "Wiadomość nie może zostać wysłana"
 
-#: ../../include/text.php:810
-msgid "cranky"
-msgstr "zepsuty"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr ""
 
-#: ../../include/text.php:811
-msgid "disturbed"
-msgstr "przeszkadzający"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "Wysłano."
 
-#: ../../include/text.php:812
-msgid "frustrated"
-msgstr "rozbity"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "Brak odbiorcy."
 
-#: ../../include/text.php:813
-msgid "motivated"
-msgstr "zmotywowany"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "Wyślij prywatną wiadomość"
 
-#: ../../include/text.php:814
-msgid "relaxed"
-msgstr "zrelaksowany"
+#: ../../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 ""
 
-#: ../../include/text.php:815
-msgid "surprised"
-msgstr "zaskoczony"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "Do:"
 
-#: ../../include/text.php:979
-msgid "January"
-msgstr "Styczeń"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "Temat:"
 
-#: ../../include/text.php:979
-msgid "February"
-msgstr "Luty"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Zmiana czasu"
 
-#: ../../include/text.php:979
-msgid "March"
-msgstr "Marzec"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
 
-#: ../../include/text.php:979
-msgid "April"
-msgstr "Kwiecień"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Czas UTC %s"
 
-#: ../../include/text.php:979
-msgid "May"
-msgstr "Maj"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Obecna strefa czasowa: %s"
 
-#: ../../include/text.php:979
-msgid "June"
-msgstr "Czerwiec"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Zmień strefę czasową: %s"
 
-#: ../../include/text.php:979
-msgid "July"
-msgstr "Lipiec"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Wybierz swoją strefę czasową:"
 
-#: ../../include/text.php:979
-msgid "August"
-msgstr "Sierpień"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Dane prywatne nie są dostępne zdalnie "
 
-#: ../../include/text.php:979
-msgid "September"
-msgstr "Wrzesień"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "Nie znaleziono ważnego konta."
 
-#: ../../include/text.php:979
-msgid "October"
-msgstr "Październik"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email."
 
-#: ../../include/text.php:979
-msgid "November"
-msgstr "Listopad"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "Prośba o reset hasła na %s"
 
-#: ../../include/text.php:979
-msgid "December"
-msgstr "Grudzień"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."
 
-#: ../../include/text.php:1078
-msgid "bytes"
-msgstr "bajty"
+#: ../../mod/lostpass.php:84 ../../boot.php:1072
+msgid "Password Reset"
+msgstr "Zresetuj hasło"
 
-#: ../../include/text.php:1105 ../../include/text.php:1117
-msgid "Click to open/close"
-msgstr "Kliknij aby otworzyć/zamknąć"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "Twoje hasło zostało zresetowane na twoje życzenie."
 
-#: ../../include/text.php:1290 ../../include/user.php:237
-msgid "default"
-msgstr "standardowe"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "Twoje nowe hasło to"
 
-#: ../../include/text.php:1302
-msgid "Select an alternate language"
-msgstr "Wybierz alternatywny język"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy"
 
-#: ../../include/text.php:1512
-msgid "activity"
-msgstr "aktywność"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "Kliknij tutaj aby zalogować"
 
-#: ../../include/text.php:1515
-msgid "post"
-msgstr "post"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu."
 
-#: ../../include/text.php:1670
-msgid "Item filed"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
 msgstr ""
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "Wspólne powiadomienie z sieci Diaspora"
-
-#: ../../include/diaspora.php:2248
-msgid "Attachments:"
-msgstr "Załączniki:"
-
-#: ../../include/network.php:850
-msgid "view full size"
-msgstr "Zobacz pełen rozmiar"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "Zapomniałeś hasła?"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr ""
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "Osadzanie wyłączone"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "Pseudonim lub Email:"
 
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr ""
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "Zresetuj"
 
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
 msgstr ""
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr ""
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "Zarządzaj Tożsamościami i/lub Stronami."
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
+#: ../../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/uimport.php:85
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr ""
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+msgstr "Wybierz tożsamość do zarządzania:"
 
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr ""
+#: ../../mod/match.php:12
+msgid "Profile Match"
+msgstr "Profil zgodny "
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr ""
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu."
 
-#: ../../include/uimport.php:167
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "interesuje się:"
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła."
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "Niezdolny do uzyskania informacji kontaktowych."
 
-#: ../../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."
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
 msgstr ""
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "Wiadomość usunięta."
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "Wszyscy"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "Rozmowa usunięta."
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "edytuj"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "Brak wiadomości."
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "Edytuj grupy"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr ""
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "Stwórz nową grupę"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "Ty i %s"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "Kontakt nie jest w żadnej grupie"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s i ty"
 
-#: ../../include/nav.php:73 ../../boot.php:1036
-msgid "Logout"
-msgstr "Wyloguj się"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "Usuń rozmowę"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "Zakończ sesję"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M R - g:m AM/PM"
 
-#: ../../include/nav.php:76 ../../boot.php:1833
-msgid "Status"
-msgstr "Status"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] " %d wiadomość"
+msgstr[1] " %d wiadomości"
+msgstr[2] " %d wiadomości"
 
-#: ../../include/nav.php:91
-msgid "Sign in"
-msgstr "Zaloguj się"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "Wiadomość nie jest dostępna."
 
-#: ../../include/nav.php:104
-msgid "Home Page"
-msgstr "Strona startowa"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "Usuń wiadomość"
 
-#: ../../include/nav.php:108
-msgid "Create an account"
-msgstr "Załóż konto"
+#: ../../mod/message.php:548
+msgid ""
+"No secure communications available. You <strong>may</strong> be able to "
+"respond from the sender's profile page."
+msgstr ""
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
-msgstr "Pomoc i dokumentacja"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "Odpowiedz"
 
-#: ../../include/nav.php:116
-msgid "Apps"
-msgstr "Aplikacje"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "Nastrój"
 
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
-msgstr "Wtyczki, aplikacje, narzędzia, gry"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym"
 
-#: ../../include/nav.php:118
-msgid "Search site content"
-msgstr "Przeszukaj zawartość strony"
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "Szukaj wyników dla:"
 
-#: ../../include/nav.php:128
-msgid "Conversations on this site"
-msgstr "Rozmowy na tej stronie"
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "Porządek wg komentarzy"
 
-#: ../../include/nav.php:130
-msgid "Directory"
-msgstr "Katalog"
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "Sortuj po dacie komentarza"
 
-#: ../../include/nav.php:130
-msgid "People directory"
-msgstr ""
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "Porządek wg wpisów"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "Rozmowy Twoich przyjaciół"
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "Sortuj po dacie posta"
 
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr ""
+#: ../../mod/network.php:444 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "Osobiste"
 
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
 msgstr ""
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "Podania o przyjęcie do grona znajomych"
-
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "Zobacz wszystkie powiadomienia"
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "Nowy"
 
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
 msgstr ""
 
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "Prywatne maile"
-
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "Odebrane"
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "Współdzielone linki"
 
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "Wysłane"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "Interesujące linki"
 
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "Zarządzaj"
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr ""
 
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "Zarządzaj innymi stronami"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "Ulubione posty"
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr ""
+#: ../../mod/network.php:546
+#, 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] "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci."
+msgstr[1] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci."
+msgstr[2] "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci."
 
-#: ../../include/nav.php:169 ../../boot.php:1339
-msgid "Profiles"
-msgstr "Profile"
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia"
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr ""
+#: ../../mod/network.php:596 ../../mod/content.php:119
+msgid "No such group"
+msgstr "Nie ma takiej grupy"
 
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "Zarządzaj listą przyjaciół i kontaktami"
+#: ../../mod/network.php:607 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "Grupa jest pusta"
 
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "Konfiguracja i ustawienia instancji"
+#: ../../mod/network.php:611 ../../mod/content.php:134
+msgid "Group: "
+msgstr "Grupa:"
 
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr ""
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "Kontakt: "
 
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr ""
+#: ../../mod/network.php:623
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "Dodaj nowy kontakt"
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "y kontakt"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "Wpisz adres lub lokalizację sieciową"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "Niedostępne."
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara"
+#: ../../mod/photos.php:51 ../../boot.php:1878
+msgid "Photo Albums"
+msgstr "Albumy zdjęć"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d zaproszenie dostępne"
-msgstr[1] "%d zaproszeń dostępnych"
-msgstr[2] "%d zaproszenia dostępne"
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "Wyślij nowe zdjęcie"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "Znajdź ludzi"
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "Informacje o kontakcie nie dostępne."
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "Wpisz nazwę lub zainteresowanie"
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "Album nie znaleziony"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "Połącz/Obserwuj"
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "Usuń album"
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "Przykładowo:  Jan Kowalski, Wędkarstwo"
+#: ../../mod/photos.php:197
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr ""
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "Domyślny profil"
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "Usuń zdjęcie"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "Sieci"
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr ""
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "Wszystkie Sieci"
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr ""
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "Zapisane foldery"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "zdjęcie"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "Wszystko"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "Plik obrazka jest pusty."
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "Kategorie"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "Nie zaznaczono zdjęć"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "Wyloguj"
+#: ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "Dostęp do tego obiektu jest ograniczony."
 
-#: ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
+#: ../../mod/photos.php:1088
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
 msgstr ""
 
-#: ../../include/auth.php:128
-msgid "The error message was:"
-msgstr ""
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "Prześlij zdjęcia"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "Różny"
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "Nazwa nowego albumu:"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr "rok"
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "lub istniejąca nazwa albumu:"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "miesiąc"
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "Nie pokazuj postów statusu dla tego wysłania"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr "dzień"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "Uprawnienia"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "nigdy"
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr ""
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "mniej niż sekundę temu"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr ""
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "tydzień"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "Edytuj album"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "godzina"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "Najpierw pokaż najnowsze"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "godziny"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "Najpierw pokaż najstarsze"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "minuta"
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "Zobacz zdjęcie"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "minuty"
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr "sekunda"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "Zdjęcie niedostępne"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "sekundy"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "Zobacz zdjęcie"
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr ""
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "Edytuj zdjęcie"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1705
-#, php-format
-msgid "%s's birthday"
-msgstr ""
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "Ustaw jako zdjęcie profilowe"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1706
-#, php-format
-msgid "Happy Birthday %s"
-msgstr ""
+#: ../../mod/photos.php:1351 ../../mod/content.php:643
+#: ../../object/Item.php:106
+msgid "Private Message"
+msgstr "Wiadomość prywatna"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
-msgid "Image/photo"
-msgstr "Obrazek/zdjęcie"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "Zobacz w pełnym rozmiarze"
 
-#: ../../include/bbcode.php:272
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr ""
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "Tagi:"
 
-#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
-msgid "$1 wrote:"
-msgstr "$1 napisał:"
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[Usunąć znacznik]"
 
-#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
-msgid "Encrypted content"
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
 msgstr ""
 
-#: ../../include/features.php:23
-msgid "General Features"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
 msgstr ""
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr ""
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "Nazwa nowego albumu"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr ""
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "Zawartość"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr ""
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "Dodaj tag"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr ""
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
+#: ../../mod/photos.php:1508
+msgid "Private photo"
 msgstr ""
 
-#: ../../include/features.php:32
-msgid "Post Preview"
+#: ../../mod/photos.php:1509
+msgid "Public photo"
 msgstr ""
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr ""
+#: ../../mod/photos.php:1529 ../../mod/content.php:707
+#: ../../object/Item.php:223
+msgid "I like this (toggle)"
+msgstr "Lubię to (zmień)"
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr ""
+#: ../../mod/photos.php:1530 ../../mod/content.php:708
+#: ../../object/Item.php:224
+msgid "I don't like this (toggle)"
+msgstr "Nie lubię (zmień)"
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "Szukanie wg daty"
+#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
+#: ../../mod/photos.php:1676 ../../mod/content.php:730
+#: ../../object/Item.php:640
+msgid "This is you"
+msgstr "To jesteś ty"
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr ""
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732
+#: ../../object/Item.php:329 ../../object/Item.php:642 ../../boot.php:651
+msgid "Comment"
+msgstr "Komentarz"
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr ""
+#: ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "Zobacz album"
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr ""
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "Ostatnio dodane zdjęcia"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr ""
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Witamy na Friendica"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr ""
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "Lista nowych członków"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-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 "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie."
 
-#: ../../include/features.php:46
-msgid "Network Tabs"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
 msgstr ""
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
 msgstr ""
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
+#: ../../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 ""
 
-#: ../../include/features.php:48
-msgid "Network New Tab"
-msgstr ""
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "Idź do swoich ustawień"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+#: ../../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 ""
 
-#: ../../include/features.php:49
-msgid "Network Shared Links Tab"
+#: ../../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/features.php:49
-msgid "Enable tab to display only Network posts with links in them"
-msgstr ""
+#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "Wyślij zdjęcie profilowe"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-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 "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty."
 
-#: ../../include/features.php:55
-msgid "Multiple Deletion"
-msgstr ""
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "Edytuj własny profil"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
+#: ../../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 ""
 
-#: ../../include/features.php:56
-msgid "Edit Sent Posts"
-msgstr ""
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "Słowa kluczowe profilu"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
+#: ../../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/features.php:57
-msgid "Tagging"
-msgstr ""
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "Łączę się..."
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
+#: ../../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 ""
 
-#: ../../include/features.php:58
-msgid "Post Categories"
+#: ../../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 ""
 
-#: ../../include/features.php:58
-msgid "Add categories to your posts"
-msgstr ""
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "Importuję emaile..."
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
+#: ../../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/features.php:60
-msgid "Dislike Posts"
-msgstr ""
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "Idź do strony z Twoimi kontaktami"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
+#: ../../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 ""
 
-#: ../../include/features.php:61
-msgid "Star Posts"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
 msgstr ""
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
+#: ../../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 ""
 
-#: ../../include/dba.php:41
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "Nie można zlokalizować serwera DNS dla bazy danych '%s'"
-
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-msgstr "[bez tematu]"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "Poszukiwanie Nowych Ludzi"
 
-#: ../../include/acl_selectors.php:325
-msgid "Visible to everybody"
-msgstr "Widoczny dla wszystkich"
+#: ../../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 ""
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Powiadomienia Friendica"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "Grupuj Swoje kontakty"
 
-#: ../../include/enotify.php:19
-msgid "Thank You,"
-msgstr "Dziękuję,"
+#: ../../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/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s administrator"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "Dlaczego moje posty nie są publiczne?"
 
-#: ../../include/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
+#: ../../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 ""
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify] Nowa wiadomość otrzymana od %s"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "Otrzymywanie pomocy"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "Idź do części o pomocy"
+
+#: ../../mod/newmember.php:82
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program"
+" features and resources."
 msgstr ""
 
-#: ../../include/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s wysyła ci %2$s"
+#: ../../mod/profile.php:21 ../../boot.php:1246
+msgid "Requested profile is not available."
+msgstr "Żądany profil jest niedostępny"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "prywatna wiadomość"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "Wskazówki dla nowych użytkowników"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "Niewłaściwy identyfikator wymagania."
 
-#: ../../include/enotify.php:90
-#, php-format
-msgid "%1$s commented on [url=%2$s]a %3$s[/url]"
-msgstr ""
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "Odrzuć"
 
-#: ../../include/enotify.php:97
-#, php-format
-msgid "%1$s commented on [url=%2$s]%3$s's %4$s[/url]"
-msgstr ""
+#: ../../mod/notifications.php:78
+msgid "System"
+msgstr "System"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr ""
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "Pokaż ignorowane żądania"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr ""
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "Ukryj ignorowane żądania"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s skomentował rozmowę którą śledzisz"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "Typ zawiadomień:"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "Propozycja znajomych"
 
-#: ../../include/enotify.php:126
+#: ../../mod/notifications.php:152
 #, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s napisał na twoim profilu"
+msgid "suggested by %s"
+msgstr "zaproponowane przez %s"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
 msgstr ""
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr ""
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "jeśli odpowiednie"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s oznaczył cię"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "Twierdzi, że go znasz:"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "tak"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr ""
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "nie"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr ""
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "Zatwierdź jako:"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr ""
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "Znajomy"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
+#: ../../mod/notifications.php:190
+msgid "Sharer"
 msgstr ""
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr ""
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "Fan"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr ""
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "Prośba o dodanie do przyjaciół/powiązanych"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr ""
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "Nowy obserwator"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr ""
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "Brak wstępu."
 
-#: ../../include/enotify.php:186
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr ""
+msgid "%s liked %s's post"
+msgstr "%s polubił wpis %s"
 
-#: ../../include/enotify.php:187
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr ""
+msgid "%s disliked %s's post"
+msgstr "%s przestał lubić post %s"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "Możesz obejrzeć ich profile na %s"
+msgid "%s is now friends with %s"
+msgstr "%s jest teraz znajomym %s"
 
-#: ../../include/enotify.php:192
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie."
-
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr ""
+msgid "%s created a new post"
+msgstr "%s dodał nowy wpis"
 
-#: ../../include/enotify.php:200
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr ""
+msgid "%s commented on %s's post"
+msgstr "%s skomentował wpis %s"
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr ""
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "Nie ma więcej powiadomień sieciowych"
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "Imię:"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "Powiadomienia z sieci"
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "Zdjęcie:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "Nie ma więcej powiadomień systemowych."
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr ""
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "Powiadomienia systemowe"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr ""
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "Nie ma więcej powiadomień osobistych"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami"
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "Prywatne powiadomienia"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr ""
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "Nie ma więcej powiadomień domu"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "Dany adres profilu nie dostarcza odpowiednich informacji."
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "Powiadomienia z instancji"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "Autor lub nazwa nie zostało znalezione."
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "Post dodany pomyślnie"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr ""
 
-#: ../../include/follow.php:86
+#: ../../mod/openid.php:53
 msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
+"Account not found and OpenID registration is not permitted on this site."
 msgstr ""
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr ""
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "Obrazek załadowany, ale oprawanie powiodła się."
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-msgstr "Określony adres profilu należy do sieci, która została wyłączona na tej stronie."
+#: ../../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 "Redukcja rozmiaru obrazka [%s] nie powiodła się."
 
-#: ../../include/follow.php:103
+#: ../../mod/profile_photo.php:118
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie."
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr ""
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "Nie można otrzymać informacji kontaktowych"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "Nie udało się przetworzyć obrazu."
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "następujący"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "Wyślij plik:"
 
-#: ../../include/items.php:3373
-msgid "A new person is sharing with you at "
-msgstr ""
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "Wybierz profil:"
 
-#: ../../include/items.php:3373
-msgid "You have a new follower at "
-msgstr ""
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "Pomiń ten krok"
 
-#: ../../include/items.php:3892
-msgid "Do you really want to delete this item?"
-msgstr ""
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "wybierz zdjęcie z twojego albumu"
 
-#: ../../include/items.php:4085
-msgid "Archives"
-msgstr "Archiwum"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "Przytnij zdjęcie"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "Wymagane zaproszenie."
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania."
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "Zaproszenie niezweryfikowane."
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "Zakończ Edycję "
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "Nieprawidłowy adres url OpenID"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "Zdjęcie wczytano pomyślnie "
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "Wprowadź wymagane informacje"
+#: ../../mod/content.php:626 ../../object/Item.php:352
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] " %d komentarz"
+msgstr[1] " %d komentarzy"
+msgstr[2] " %d komentarzy"
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "Użyj dłuższej nazwy."
+#: ../../mod/content.php:707 ../../object/Item.php:223
+msgid "like"
+msgstr "polub"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "Nazwa jest za krótka."
+#: ../../mod/content.php:708 ../../object/Item.php:224
+msgid "dislike"
+msgstr "Nie lubię"
 
-#: ../../include/user.php:98
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko)."
+#: ../../mod/content.php:710 ../../object/Item.php:226
+msgid "Share this"
+msgstr "Udostępnij to"
 
-#: ../../include/user.php:103
-msgid "Your email domain is not among those allowed on this site."
-msgstr "Twoja domena internetowa nie jest obsługiwana na tej stronie."
+#: ../../mod/content.php:710 ../../object/Item.php:226
+msgid "share"
+msgstr "udostępnij"
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "Niepoprawny adres e mail.."
+#: ../../mod/content.php:734 ../../object/Item.php:644
+msgid "Bold"
+msgstr "Pogrubienie"
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "Nie możesz użyć tego e-maila. "
+#: ../../mod/content.php:735 ../../object/Item.php:645
+msgid "Italic"
+msgstr "Kursywa"
 
-#: ../../include/user.php:122
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "Twój login może składać się tylko z \"a-z\",  \"0-9\", \"-\", \"_\", i musi mieć na początku literę."
+#: ../../mod/content.php:736 ../../object/Item.php:646
+msgid "Underline"
+msgstr "Podkreślenie"
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "Ten login jest zajęty. Wybierz inny."
+#: ../../mod/content.php:737 ../../object/Item.php:647
+msgid "Quote"
+msgstr "Cytat"
 
-#: ../../include/user.php:138
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie."
+#: ../../mod/content.php:738 ../../object/Item.php:648
+msgid "Code"
+msgstr "Kod"
 
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń."
+#: ../../mod/content.php:739 ../../object/Item.php:649
+msgid "Image"
+msgstr "Obraz"
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie."
+#: ../../mod/content.php:740 ../../object/Item.php:650
+msgid "Link"
+msgstr "Link"
 
-#: ../../include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie."
+#: ../../mod/content.php:741 ../../object/Item.php:651
+msgid "Video"
+msgstr "Video"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "Witaj "
+#: ../../mod/content.php:776 ../../object/Item.php:202
+msgid "add star"
+msgstr "dodaj gwiazdkę"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "Proszę dodać zdjęcie profilowe."
+#: ../../mod/content.php:777 ../../object/Item.php:203
+msgid "remove star"
+msgstr "anuluj gwiazdkę"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "Witaj ponownie "
+#: ../../mod/content.php:778 ../../object/Item.php:204
+msgid "toggle star status"
+msgstr "włącz status gwiazdy"
 
-#: ../../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."
+#: ../../mod/content.php:781 ../../object/Item.php:207
+msgid "starred"
 msgstr ""
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "przestań obserwować"
+#: ../../mod/content.php:782 ../../object/Item.php:212
+msgid "add tag"
+msgstr "dodaj tag"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:820
-msgid "Poke"
-msgstr "Zaczepka"
+#: ../../mod/content.php:786 ../../object/Item.php:123
+msgid "save to folder"
+msgstr "zapisz w folderze"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:814
-msgid "View Status"
-msgstr "Zobacz status"
+#: ../../mod/content.php:877 ../../object/Item.php:299
+msgid "to"
+msgstr "do"
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:815
-msgid "View Profile"
-msgstr "Zobacz profil"
+#: ../../mod/content.php:878 ../../object/Item.php:301
+msgid "Wall-to-Wall"
+msgstr "Wall-to-Wall"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:816
-msgid "View Photos"
-msgstr "Zobacz zdjęcia"
+#: ../../mod/content.php:879 ../../object/Item.php:302
+msgid "via Wall-To-Wall:"
+msgstr "via Wall-To-Wall:"
+
+#: ../../object/Item.php:300
+msgid "via"
+msgstr ""
+
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+msgid "Theme settings"
+msgstr "Ustawienia motywu"
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:251
-#: ../../include/conversation.php:817
-msgid "Network Posts"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
 msgstr ""
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:251
-#: ../../include/conversation.php:818
-msgid "Edit Contact"
-msgstr "Edytuj kontakt"
-
-#: ../../include/Contact.php:231 ../../include/Contact.php:251
-#: ../../include/conversation.php:819
-msgid "Send PM"
-msgstr "Wyślij prywatną wiadomość"
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "Ustaw rozmiar fontów dla postów i komentarzy"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
 msgstr ""
 
-#: ../../include/conversation.php:291
-msgid "post/item"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr "Zestaw kolorów"
+
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
 msgstr ""
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
 msgstr ""
 
-#: ../../include/conversation.php:621 ../../object/Item.php:249
-msgid "Categories:"
-msgstr "Kategorie:"
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr "Zestaw kolorów"
 
-#: ../../include/conversation.php:622 ../../object/Item.php:250
-msgid "Filed under:"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:609
+msgid "Set twitter search term"
 msgstr ""
 
-#: ../../include/conversation.php:710
-msgid "remove"
-msgstr "usuń"
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr ""
 
-#: ../../include/conversation.php:714
-msgid "Delete Selected Items"
-msgstr "Usuń zaznaczone elementy"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:578
+msgid "Set longitude (X) for Earth Layers"
+msgstr ""
 
-#: ../../include/conversation.php:813
-msgid "Follow Thread"
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:579
+msgid "Set latitude (Y) for Earth Layers"
 msgstr ""
 
-#: ../../include/conversation.php:882
-#, php-format
-msgid "%s likes this."
-msgstr "%s lubi to."
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+msgid "Community Pages"
+msgstr "Strony społecznościowe"
 
-#: ../../include/conversation.php:882
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s nie lubi tego."
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+msgid "Earth Layers"
+msgstr ""
 
-#: ../../include/conversation.php:887
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+msgid "Community Profiles"
 msgstr ""
 
-#: ../../include/conversation.php:890
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+msgid "Help or @NewHere ?"
 msgstr ""
 
-#: ../../include/conversation.php:904
-msgid "and"
-msgstr "i"
+#: ../../view/theme/diabook/config.php:167
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+msgid "Connect Services"
+msgstr "Połączone serwisy"
 
-#: ../../include/conversation.php:910
-#, php-format
-msgid ", and %d other people"
-msgstr ", i %d innych ludzi"
+#: ../../view/theme/diabook/config.php:168
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+msgid "Find Friends"
+msgstr "Znajdź znajomych"
 
-#: ../../include/conversation.php:912
-#, php-format
-msgid "%s like this."
-msgstr "%s lubi to."
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr "Ostatnie tweetnięcie"
 
-#: ../../include/conversation.php:912
-#, php-format
-msgid "%s don't like this."
-msgstr "%s nie lubi tego."
+#: ../../view/theme/diabook/config.php:170
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+msgid "Last users"
+msgstr "Ostatni użytkownicy"
 
-#: ../../include/conversation.php:939 ../../include/conversation.php:957
-msgid "Visible to <strong>everybody</strong>"
-msgstr "Widoczne dla <strong>wszystkich</strong>"
+#: ../../view/theme/diabook/config.php:171
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+msgid "Last photos"
+msgstr "Ostatnie zdjęcia"
 
-#: ../../include/conversation.php:941 ../../include/conversation.php:959
-msgid "Please enter a video link/URL:"
-msgstr "Podaj link do filmu"
+#: ../../view/theme/diabook/config.php:172
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+msgid "Last likes"
+msgstr "Ostatnie polubienia"
 
-#: ../../include/conversation.php:942 ../../include/conversation.php:960
-msgid "Please enter an audio link/URL:"
-msgstr "Podaj link do muzyki"
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "Twoje kontakty"
 
-#: ../../include/conversation.php:943 ../../include/conversation.php:961
-msgid "Tag term:"
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
 msgstr ""
 
-#: ../../include/conversation.php:945 ../../include/conversation.php:963
-msgid "Where are you right now?"
-msgstr "Gdzie teraz jesteś?"
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
+msgstr ""
 
-#: ../../include/conversation.php:946
-msgid "Delete item(s)?"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
+msgstr "Ostatnie Tweetnięcie"
+
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
 msgstr ""
 
-#: ../../include/conversation.php:988
-msgid "Post to Email"
-msgstr "Wyślij poprzez email"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "Zestaw kolorów"
 
-#: ../../include/conversation.php:1044
-msgid "permissions"
-msgstr "zezwolenia"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "Wyrównanie"
 
-#: ../../include/conversation.php:1068
-msgid "Post to Groups"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "Lewo"
 
-#: ../../include/conversation.php:1069
-msgid "Post to Contacts"
-msgstr ""
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "Środek"
 
-#: ../../include/conversation.php:1070
-msgid "Private post"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
 msgstr ""
 
-#: ../../include/plugin.php:429 ../../include/plugin.php:431
-msgid "Click here to upgrade."
-msgstr "Kliknij tu, aby zaktualizować."
-
-#: ../../include/plugin.php:437
-msgid "This action exceeds the limits set by your subscription plan."
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
 msgstr ""
 
-#: ../../include/plugin.php:442
-msgid "This action is not available under your subscription plan."
+#: ../../index.php:400
+msgid "toggle mobile"
 msgstr ""
 
-#: ../../boot.php:640
+#: ../../boot.php:650
 msgid "Delete this item?"
 msgstr "Usunąć ten element?"
 
-#: ../../boot.php:643
+#: ../../boot.php:653
 msgid "show fewer"
 msgstr "Pokaż mniej"
 
-#: ../../boot.php:899
+#: ../../boot.php:920
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr ""
 
-#: ../../boot.php:901
+#: ../../boot.php:922
 #, php-format
 msgid "Update Error at %s"
 msgstr ""
 
-#: ../../boot.php:1011
+#: ../../boot.php:1032
 msgid "Create a New Account"
 msgstr "Załóż nowe konto"
 
-#: ../../boot.php:1039
+#: ../../boot.php:1060
 msgid "Nickname or Email address: "
 msgstr "Nick lub adres email:"
 
-#: ../../boot.php:1040
+#: ../../boot.php:1061
 msgid "Password: "
 msgstr "Hasło:"
 
-#: ../../boot.php:1041
+#: ../../boot.php:1062
 msgid "Remember me"
 msgstr "Zapamiętaj mnie"
 
-#: ../../boot.php:1044
+#: ../../boot.php:1065
 msgid "Or login using OpenID: "
 msgstr "Lub zaloguj się korzystając z OpenID:"
 
-#: ../../boot.php:1050
+#: ../../boot.php:1071
 msgid "Forgot your password?"
 msgstr "Zapomniałeś swojego hasła?"
 
-#: ../../boot.php:1053
+#: ../../boot.php:1074
 msgid "Website Terms of Service"
 msgstr ""
 
-#: ../../boot.php:1054
+#: ../../boot.php:1075
 msgid "terms of service"
 msgstr ""
 
-#: ../../boot.php:1056
+#: ../../boot.php:1077
 msgid "Website Privacy Policy"
 msgstr ""
 
-#: ../../boot.php:1057
+#: ../../boot.php:1078
 msgid "privacy policy"
 msgstr ""
 
-#: ../../boot.php:1186
+#: ../../boot.php:1207
 msgid "Requested account is not available."
 msgstr ""
 
-#: ../../boot.php:1265
+#: ../../boot.php:1286 ../../boot.php:1390
 msgid "Edit profile"
 msgstr "Edytuj profil"
 
-#: ../../boot.php:1331
+#: ../../boot.php:1352
 msgid "Message"
 msgstr "Wiadomość"
 
-#: ../../boot.php:1339
+#: ../../boot.php:1360
 msgid "Manage/edit profiles"
 msgstr "Zarządzaj profilami"
 
-#: ../../boot.php:1461 ../../boot.php:1547
+#: ../../boot.php:1489 ../../boot.php:1575
 msgid "g A l F d"
 msgstr "g A I F d"
 
-#: ../../boot.php:1462 ../../boot.php:1548
+#: ../../boot.php:1490 ../../boot.php:1576
 msgid "F d"
 msgstr ""
 
-#: ../../boot.php:1507 ../../boot.php:1588
+#: ../../boot.php:1535 ../../boot.php:1616
 msgid "[today]"
 msgstr "[dziś]"
 
-#: ../../boot.php:1519
+#: ../../boot.php:1547
 msgid "Birthday Reminders"
 msgstr "Przypomnienia o urodzinach"
 
-#: ../../boot.php:1520
+#: ../../boot.php:1548
 msgid "Birthdays this week:"
 msgstr "Urodziny w tym tygodniu:"
 
-#: ../../boot.php:1581
+#: ../../boot.php:1609
 msgid "[No description]"
 msgstr "[Brak opisu]"
 
-#: ../../boot.php:1599
+#: ../../boot.php:1627
 msgid "Event Reminders"
 msgstr "Przypominacze wydarzeń"
 
-#: ../../boot.php:1600
+#: ../../boot.php:1628
 msgid "Events this week:"
 msgstr "Wydarzenia w tym tygodniu:"
 
-#: ../../boot.php:1836
+#: ../../boot.php:1864
 msgid "Status Messages and Posts"
 msgstr "Status wiadomości i postów"
 
-#: ../../boot.php:1843
+#: ../../boot.php:1871
 msgid "Profile Details"
 msgstr "Szczegóły profilu"
 
-#: ../../boot.php:1860
+#: ../../boot.php:1888
 msgid "Events and Calendar"
 msgstr "Wydarzenia i kalendarz"
 
-#: ../../boot.php:1867
+#: ../../boot.php:1895
 msgid "Only You Can See This"
 msgstr "Tylko ty możesz to zobaczyć"
-
-#: ../../object/Item.php:261
-msgid "via"
-msgstr ""
-
-#: ../../index.php:400
-msgid "toggle mobile"
-msgstr ""
-
-#: ../../addon.old/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr ""
-
-#: ../../addon.old/bg/bg.php:82
-msgid "Bg Settings"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr "Opublikuj na Drupal"
-
-#: ../../addon.old/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr "Ustawienia wpisów Drupala"
-
-#: ../../addon.old/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "Włącz plugin wpisów Drupala"
-
-#: ../../addon.old/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Użytkownik Drupala"
-
-#: ../../addon.old/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "hasło do Drupal"
-
-#: ../../addon.old/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "Adres strony Drupala"
-
-#: ../../addon.old/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr ""
-
-#: ../../addon.old/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr ""
-
-#: ../../addon.old/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr ""
-
-#: ../../addon.old/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr ""
-
-#: ../../addon.old/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL do osadzenia"
-
-#: ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr "Login Tumblr"
-
-#: ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr "Hasło do twojego Tumblra"
index b070090d5c9cb5ec07dc284bf0a38ad82e5b25fe..fafe11ebe6c88ac360f056c551cdd20611d93a73 100644 (file)
 <?php
 
+if(! function_exists("string_plural_select_pl")) {
 function string_plural_select_pl($n){
        return ($n==1 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);;
-}
+}}
 ;
-$a->strings["Post successful."] = "Post dodany pomyślnie";
-$a->strings["[Embedded content - reload page to view]"] = "";
-$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane.";
-$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu.";
-$a->strings["Permission denied."] = "Brak uprawnień.";
-$a->strings["Contact not found."] = "Kontakt nie znaleziony";
-$a->strings["Repair Contact Settings"] = "Napraw ustawienia kontaktów";
-$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce.";
-$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów";
-$a->strings["Name"] = "Imię";
-$a->strings["Account Nickname"] = "Nazwa konta";
-$a->strings["@Tagname - overrides Name/Nickname"] = "";
-$a->strings["Account URL"] = "URL konta";
-$a->strings["Friend Request URL"] = "URL żądajacy znajomości";
-$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość";
-$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL";
-$a->strings["Poll/Feed URL"] = "Adres Ankiety / RSS";
-$a->strings["New photo from this URL"] = "Nowe zdjęcie z tej ścieżki";
+$a->strings["Altpager settings updated."] = "";
+$a->strings["Alternate Pagination Setting"] = "";
+$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
 $a->strings["Submit"] = "Potwierdź";
-$a->strings["Help:"] = "Pomoc:";
+$a->strings["Bg settings updated."] = "";
+$a->strings["Bg Settings"] = "";
+$a->strings["How many contacts to display on profile sidebar"] = "";
+$a->strings["\"Blockem\" Settings"] = "";
+$a->strings["Comma separated profile URLS to block"] = "";
+$a->strings["BLOCKEM Settings saved."] = "";
+$a->strings["Blocked %s - Click to open/close"] = "";
+$a->strings["Unblock Author"] = "Odblokuj autora";
+$a->strings["Block Author"] = "Zablokuj autora";
+$a->strings["blockem settings updated"] = "";
+$a->strings["Post to blogger"] = "Post na blogger";
+$a->strings["Blogger Post Settings"] = "Ustawienia postów na Blogger";
+$a->strings["Enable Blogger Post Plugin"] = "";
+$a->strings["Blogger username"] = "Nazwa użytkownika na Blogger";
+$a->strings["Blogger password"] = "Hasło do Blogger";
+$a->strings["Blogger API URL"] = "Blogger API URL";
+$a->strings["Post to Blogger by default"] = "";
+$a->strings["Post from Friendica"] = "Post z Friendica";
+$a->strings["Report Bug"] = "Zgłoś problem";
+$a->strings["Login"] = "Login";
+$a->strings["OpenID"] = "OpenID";
+$a->strings["Latest users"] = "Ostatni użytkownicy";
+$a->strings["Most active users"] = "najaktywniejsi użytkownicy";
+$a->strings["Latest photos"] = "Ostatnie zdjęcia";
+$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
+$a->strings["Profile Photos"] = "Zdjęcia profilowe";
+$a->strings["Latest likes"] = "Ostatnie polubienia";
+$a->strings["event"] = "wydarzenie";
+$a->strings["status"] = "status";
+$a->strings["photo"] = "zdjęcie";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s";
+$a->strings["Welcome to %s"] = "Witamy w %s";
+$a->strings["Private Events"] = "Prywatne wydarzenia";
+$a->strings["Private Addressbooks"] = "";
+$a->strings["No access"] = "Brak dostępu";
+$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Amerykański format daty (mm/dd/YYYY)";
+$a->strings["German Time Format (dd.mm.YYYY)"] = "Niemiecki format daty (dd.mm.YYYY)";
+$a->strings["Could not open component for editing"] = "";
+$a->strings["Go back to the calendar"] = "Wróć do kalendarza";
+$a->strings["Event data"] = "Data wydarzenia";
+$a->strings["Calendar"] = "Kalendarz";
+$a->strings["Special color"] = "";
+$a->strings["Subject"] = "Temat";
+$a->strings["Starts"] = "Zaczyna się";
+$a->strings["Ends"] = "Kończy się";
+$a->strings["Location"] = "Położenie";
+$a->strings["Description"] = "Opis";
+$a->strings["Recurrence"] = "";
+$a->strings["Frequency"] = "często";
+$a->strings["None"] = "Brak";
+$a->strings["Daily"] = "Dziennie";
+$a->strings["Weekly"] = "Tygodniowo";
+$a->strings["Monthly"] = "Miesięcznie";
+$a->strings["Yearly"] = "raz na rok";
+$a->strings["days"] = "dni";
+$a->strings["weeks"] = "tygodnie";
+$a->strings["months"] = "miesiące";
+$a->strings["years"] = "lata";
+$a->strings["Interval"] = "";
+$a->strings["All %select% %time%"] = "";
+$a->strings["Days"] = "Dni";
+$a->strings["Sunday"] = "Niedziela";
+$a->strings["Monday"] = "Poniedziałek";
+$a->strings["Tuesday"] = "Wtorek";
+$a->strings["Wednesday"] = "Środa";
+$a->strings["Thursday"] = "Czwartek";
+$a->strings["Friday"] = "Piątek";
+$a->strings["Saturday"] = "Sobota";
+$a->strings["First day of week:"] = "Pierwszy dzień tygodnia:";
+$a->strings["Day of month"] = "Dzień miesiąca";
+$a->strings["#num#th of each month"] = "";
+$a->strings["#num#th-last of each month"] = "";
+$a->strings["#num#th #wkday# of each month"] = "";
+$a->strings["#num#th-last #wkday# of each month"] = "";
+$a->strings["Month"] = "Miesiąc";
+$a->strings["#num#th of the given month"] = "";
+$a->strings["#num#th-last of the given month"] = "";
+$a->strings["#num#th #wkday# of the given month"] = "";
+$a->strings["#num#th-last #wkday# of the given month"] = "";
+$a->strings["Repeat until"] = "Powtarzaj do";
+$a->strings["Infinite"] = "";
+$a->strings["Until the following date"] = "Do tej daty";
+$a->strings["Number of times"] = "";
+$a->strings["Exceptions"] = "Wyjątki";
+$a->strings["none"] = "";
+$a->strings["Notification"] = "Powiadomienie";
+$a->strings["Notify by"] = "";
+$a->strings["Remove"] = "Usuń";
+$a->strings["E-Mail"] = "E-Mail";
+$a->strings["On Friendica / Display"] = "";
+$a->strings["Time"] = "";
+$a->strings["Hours"] = "Godzin";
+$a->strings["Minutes"] = "Minut";
+$a->strings["Seconds"] = "";
+$a->strings["Weeks"] = "";
+$a->strings["before the"] = "";
+$a->strings["start of the event"] = "rozpoczęcie wydarzenia";
+$a->strings["end of the event"] = "zakończenie wydarzenia";
+$a->strings["Add a notification"] = "Dodaj powiadomienie";
+$a->strings["The event #name# will start at #date"] = "";
+$a->strings["#name# is about to begin."] = "";
+$a->strings["Saved"] = "Zapisano";
+$a->strings["Private Calendar"] = "Kalendarz prywatny";
+$a->strings["Friendica Events: Mine"] = "Wydarzenia Friendici: Moje";
+$a->strings["Friendica Events: Contacts"] = "Wydarzenia Friendici: Kontakty";
+$a->strings["Private Addresses"] = "";
+$a->strings["Friendica Contacts"] = "Kontakty Friendica";
+$a->strings["Friendica-Native events"] = "";
+$a->strings["Friendica-Contacts"] = "Kontakty friendica";
+$a->strings["Your Friendica-Contacts"] = "Twoje kontakty friendica";
+$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
+$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
+$a->strings["The ICS-File has been imported."] = "";
+$a->strings["No file was uploaded."] = "Nie wgrano pliku.";
+$a->strings["Import a ICS-file"] = "";
+$a->strings["ICS-File"] = "";
+$a->strings["Overwrite all #num# existing events"] = "";
+$a->strings["Upload"] = "Załaduj";
+$a->strings["Settings"] = "Ustawienia";
 $a->strings["Help"] = "Pomoc";
-$a->strings["Not Found"] = "Nie znaleziono";
-$a->strings["Page not found."] = "Strona nie znaleziona.";
-$a->strings["File exceeds size limit of %d"] = "Plik przekracza dozwolony rozmiar %d";
-$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się.";
-$a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana.";
-$a->strings["Suggest Friends"] = "Zaproponuj znajomych";
-$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s";
-$a->strings["Event title and start time are required."] = "";
-$a->strings["l, F j"] = "d, M d ";
-$a->strings["Edit event"] = "Edytuj wydarzenie";
-$a->strings["link to source"] = "link do źródła";
-$a->strings["Events"] = "Wydarzenia";
-$a->strings["Create New Event"] = "Stwórz nowe wydarzenie";
+$a->strings["New event"] = "Nowe wydarzenie";
+$a->strings["Today"] = "Dzisiaj";
+$a->strings["Day"] = "Dzień";
+$a->strings["Week"] = "Tydzień";
+$a->strings["Reload"] = "Załaduj ponownie";
 $a->strings["Previous"] = "Poprzedni";
 $a->strings["Next"] = "Następny";
-$a->strings["hour:minute"] = "godzina:minuta";
-$a->strings["Event details"] = "Szczegóły wydarzenia";
-$a->strings["Format is %s %s. Starting date and Title are required."] = "";
-$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:";
-$a->strings["Required"] = "Wymagany";
-$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna";
-$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:";
-$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza";
-$a->strings["Description:"] = "Opis:";
-$a->strings["Location:"] = "Lokalizacja";
-$a->strings["Title:"] = "Tytuł:";
-$a->strings["Share this event"] = "Udostępnij te wydarzenie";
-$a->strings["System down for maintenance"] = "";
-$a->strings["Cancel"] = "Anuluj";
-$a->strings["Tag removed"] = "Tag usunięty";
-$a->strings["Remove Item Tag"] = "Usuń pozycję Tag";
-$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
-$a->strings["Remove"] = "Usuń";
-$a->strings["%1\$s welcomes %2\$s"] = "";
-$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji";
-$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
-$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować.";
-$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?";
-$a->strings["Yes"] = "Tak";
-$a->strings["No"] = "Nie";
-$a->strings["Photo Albums"] = "Albumy zdjęć";
-$a->strings["Contact Photos"] = "Zdjęcia kontaktu";
-$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie";
-$a->strings["everybody"] = "wszyscy";
-$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne.";
-$a->strings["Profile Photos"] = "Zdjęcia profilowe";
-$a->strings["Album not found."] = "Album nie znaleziony";
-$a->strings["Delete Album"] = "Usuń album";
-$a->strings["Do you really want to delete this photo album and all its photos?"] = "";
-$a->strings["Delete Photo"] = "Usuń zdjęcie";
-$a->strings["Do you really want to delete this photo?"] = "";
-$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
-$a->strings["a photo"] = "zdjęcie";
-$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru";
-$a->strings["Image file is empty."] = "Plik obrazka jest pusty.";
-$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się.";
-$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się";
-$a->strings["Public access denied."] = "Publiczny dostęp zabroniony";
-$a->strings["No photos selected"] = "Nie zaznaczono zdjęć";
-$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony.";
-$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
-$a->strings["Upload Photos"] = "Prześlij zdjęcia";
-$a->strings["New album name: "] = "Nazwa nowego albumu:";
-$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
-$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania";
-$a->strings["Permissions"] = "Uprawnienia";
-$a->strings["Show to Groups"] = "";
-$a->strings["Show to Contacts"] = "";
-$a->strings["Private Photo"] = "";
-$a->strings["Public Photo"] = "";
-$a->strings["Edit Album"] = "Edytuj album";
-$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
-$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze";
-$a->strings["View Photo"] = "Zobacz zdjęcie";
-$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony.";
-$a->strings["Photo not available"] = "Zdjęcie niedostępne";
-$a->strings["View photo"] = "Zobacz zdjęcie";
-$a->strings["Edit photo"] = "Edytuj zdjęcie";
-$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe";
-$a->strings["Private Message"] = "Wiadomość prywatna";
-$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze";
-$a->strings["Tags: "] = "Tagi:";
-$a->strings["[Remove any tag]"] = "[Usunąć znacznik]";
-$a->strings["Rotate CW (right)"] = "";
-$a->strings["Rotate CCW (left)"] = "";
-$a->strings["New album name"] = "Nazwa nowego albumu";
-$a->strings["Caption"] = "Zawartość";
-$a->strings["Add a Tag"] = "Dodaj tag";
-$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
-$a->strings["Private photo"] = "";
-$a->strings["Public photo"] = "";
-$a->strings["I like this (toggle)"] = "Lubię to (zmień)";
-$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)";
-$a->strings["Share"] = "Podziel się";
-$a->strings["Please wait"] = "Proszę czekać";
-$a->strings["This is you"] = "To jesteś ty";
-$a->strings["Comment"] = "Komentarz";
-$a->strings["Preview"] = "Podgląd";
-$a->strings["Delete"] = "Usuń";
-$a->strings["View Album"] = "Zobacz album";
-$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia";
-$a->strings["Not available."] = "Niedostępne.";
-$a->strings["Community"] = "Społeczność";
-$a->strings["No results."] = "Brak wyników.";
-$a->strings["This is Friendica, version"] = "To jest Friendica, wersja";
-$a->strings["running at web location"] = "otwierane na serwerze";
-$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica.";
-$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
-$a->strings["Installed plugins/addons/apps:"] = "";
-$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji";
-$a->strings["Item not found"] = "Artykuł nie znaleziony";
-$a->strings["Edit post"] = "Edytuj post";
-$a->strings["Edit"] = "Edytuj";
-$a->strings["Upload photo"] = "Wyślij zdjęcie";
-$a->strings["upload photo"] = "dodaj zdjęcie";
-$a->strings["Attach file"] = "Przyłącz plik";
-$a->strings["attach file"] = "załącz plik";
-$a->strings["Insert web link"] = "Wstaw link";
-$a->strings["web link"] = "Adres www";
-$a->strings["Insert video link"] = "Wstaw link wideo";
-$a->strings["video link"] = "link do filmu";
-$a->strings["Insert audio link"] = "Wstaw link audio";
-$a->strings["audio link"] = "Link audio";
-$a->strings["Set your location"] = "Ustaw swoje położenie";
-$a->strings["set location"] = "wybierz lokalizację";
-$a->strings["Clear browser location"] = "Wyczyść położenie przeglądarki";
-$a->strings["clear location"] = "wyczyść lokalizację";
-$a->strings["Permission settings"] = "Ustawienia uprawnień";
-$a->strings["CC: email addresses"] = "CC: adresy e-mail";
-$a->strings["Public post"] = "Publiczny post";
-$a->strings["Set title"] = "Ustaw tytuł";
-$a->strings["Categories (comma-separated list)"] = "";
-$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com";
-$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane.";
-$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji.";
-$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik.";
-$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia.";
-$a->strings["%d required parameter was not found at the given location"] = array(
-       0 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
-       1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji",
-       2 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
-);
-$a->strings["Introduction complete."] = "wprowadzanie zakończone.";
-$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu.";
-$a->strings["Profile unavailable."] = "Profil niedostępny.";
-$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń.";
-$a->strings["Spam protection measures have been invoked."] = "Ochrona przed spamem została wywołana.";
-$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h.";
-$a->strings["Invalid locator"] = "Niewłaściwy lokalizator ";
-$a->strings["Invalid email address."] = "Nieprawidłowy adres email.";
-$a->strings["This account has not been configured for email. Request failed."] = "";
-$a->strings["Unable to resolve your name at the provided location."] = "Nie można rozpoznać twojej nazwy w przewidzianym miejscu.";
-$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś.";
-$a->strings["Apparently you are already friends with %s."] = "Widocznie jesteście już znajomymi z %s";
-$a->strings["Invalid profile URL."] = "Zły adres URL profilu.";
-$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu.";
-$a->strings["Failed to update contact record."] = "Aktualizacja nagrania kontaktu nie powiodła się.";
-$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane.";
-$a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. ";
-$a->strings["Hide this contact"] = "Ukryj kontakt";
-$a->strings["Welcome home %s."] = "Welcome home %s.";
-$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s.";
-$a->strings["Confirm"] = "Potwierdź";
-$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
-$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->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie";
-$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "";
-$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:";
-$a->strings["Does %s know you?"] = "Czy %s Cię zna?";
-$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:";
-$a->strings["Friendica"] = "Friendica";
-$a->strings["StatusNet/Federated Social Web"] = "";
-$a->strings["Diaspora"] = "Diaspora";
-$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
-$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:";
-$a->strings["Submit Request"] = "Wyślij zgłoszenie";
-$a->strings["Account settings"] = "Ustawienia konta";
-$a->strings["Display settings"] = "Wyświetl ustawienia";
-$a->strings["Connector settings"] = "Ustawienia konektora";
-$a->strings["Plugin settings"] = "Ustawienia wtyczek";
-$a->strings["Connected apps"] = "";
-$a->strings["Export personal data"] = "Eksportuje dane personalne";
-$a->strings["Remove account"] = "Usuń konto";
-$a->strings["Settings"] = "Ustawienia";
-$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)"] = "";
-$a->strings["Friendica Social Communications Server - Setup"] = "";
-$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
-$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
-$a->strings["Your Friendica site database has been installed."] = "";
-$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
-$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
-$a->strings["System check"] = "Sprawdzanie systemu";
-$a->strings["Check again"] = "Sprawdź ponownie";
-$a->strings["Database connection"] = "Połączenie z bazą danych";
-$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
-$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
-$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
-$a->strings["Database Server Name"] = "Baza danych - Nazwa serwera";
-$a->strings["Database Login Name"] = "Baza danych - Nazwa loginu";
-$a->strings["Database Login Password"] = "Baza danych - Hasło loginu";
-$a->strings["Database Name"] = "Baza danych - Nazwa";
-$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
-$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"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
-$a->strings["Site settings"] = "Ustawienia strony";
-$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze 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>"] = "";
-$a->strings["PHP executable path"] = "";
-$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
-$a->strings["Command line PHP"] = "Linia komend PHP";
-$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
-$a->strings["This is required for message delivery to work."] = "To jest wymagane do dostarczenia wiadomości do pracy.";
-$a->strings["PHP register_argc_argv"] = "";
-$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd : funkcja systemu  \"openssl_pkey_new\"  nie jest  w stanie wygenerować klucza szyfrującego .";
-$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
-$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
-$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
-$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
-$a->strings["OpenSSL PHP module"] = "";
-$a->strings["mysqli PHP module"] = "";
-$a->strings["mb_string PHP module"] = "";
-$a->strings["Apache mod_rewrite module"] = "";
-$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany.";
-$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany.";
-$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany.";
-$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
-$a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany.";
-$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string  jest wymagany ale nie jest zainstalowany";
-$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."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\"  i nie jest w stanie tego zrobić.";
-$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."] = "";
-$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
-$a->strings[".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."] = "";
-$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."] = "";
-$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
-$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."] = "";
-$a->strings["view/smarty3 is writable"] = "";
-$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
-$a->strings["Url rewrite is working"] = "";
-$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."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
-$a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych.";
-$a->strings["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
-$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
-$a->strings["l F d, Y \\@ g:i A"] = "";
-$a->strings["Time Conversion"] = "Zmiana czasu";
-$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
-$a->strings["UTC time: %s"] = "Czas UTC %s";
-$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s";
-$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s";
-$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:";
-$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"] = "Zrób ten post prywatnym";
-$a->strings["Profile Match"] = "Profil zgodny ";
-$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu.";
-$a->strings["is interested in:"] = "interesuje się:";
-$a->strings["Connect"] = "Połącz";
-$a->strings["No matches"] = "brak dopasowań";
-$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie ";
-$a->strings["Visible to:"] = "Widoczne dla:";
-$a->strings["No such group"] = "Nie ma takiej grupy";
-$a->strings["Group is empty"] = "Grupa jest pusta";
-$a->strings["Group: "] = "Grupa:";
-$a->strings["Select"] = "Wybierz";
-$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s";
-$a->strings["%s from %s"] = "%s od %s";
-$a->strings["View in context"] = "Zobacz w kontekście";
-$a->strings["%d comment"] = array(
-       0 => " %d komentarz",
-       1 => " %d komentarzy",
-       2 => " %d komentarzy",
-);
-$a->strings["comment"] = array(
-       0 => "",
-       1 => "",
-       2 => "komentarz",
-);
-$a->strings["show more"] = "Pokaż więcej";
-$a->strings["like"] = "polub";
-$a->strings["dislike"] = "Nie lubię";
-$a->strings["Share this"] = "Udostępnij to";
-$a->strings["share"] = "udostępnij";
-$a->strings["Bold"] = "Pogrubienie";
-$a->strings["Italic"] = "Kursywa";
-$a->strings["Underline"] = "Podkreślenie";
-$a->strings["Quote"] = "Cytat";
-$a->strings["Code"] = "Kod";
-$a->strings["Image"] = "Obraz";
-$a->strings["Link"] = "Link";
-$a->strings["Video"] = "Video";
-$a->strings["add star"] = "dodaj gwiazdkę";
-$a->strings["remove star"] = "anuluj gwiazdkę";
-$a->strings["toggle star status"] = "włącz status gwiazdy";
-$a->strings["starred"] = "";
-$a->strings["add tag"] = "dodaj tag";
-$a->strings["save to folder"] = "zapisz w folderze";
-$a->strings["to"] = "do";
-$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
-$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
-$a->strings["Welcome to %s"] = "Witamy w %s";
-$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania.";
-$a->strings["Discard"] = "Odrzuć";
-$a->strings["Ignore"] = "Ignoruj";
-$a->strings["System"] = "System";
-$a->strings["Network"] = "Sieć";
-$a->strings["Personal"] = "Osobiste";
-$a->strings["Home"] = "Dom";
-$a->strings["Introductions"] = "Wstępy";
-$a->strings["Messages"] = "Wiadomości";
-$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
-$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania";
-$a->strings["Notification type: "] = "Typ zawiadomień:";
-$a->strings["Friend Suggestion"] = "Propozycja znajomych";
-$a->strings["suggested by %s"] = "zaproponowane przez %s";
-$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi";
-$a->strings["Post a new friend activity"] = "";
-$a->strings["if applicable"] = "jeśli odpowiednie";
-$a->strings["Approve"] = "Zatwierdź";
-$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:";
-$a->strings["yes"] = "tak";
-$a->strings["no"] = "nie";
-$a->strings["Approve as: "] = "Zatwierdź jako:";
-$a->strings["Friend"] = "Znajomy";
-$a->strings["Sharer"] = "";
-$a->strings["Fan/Admirer"] = "Fan";
-$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych";
-$a->strings["New Follower"] = "Nowy obserwator";
-$a->strings["No introductions."] = "Brak wstępu.";
-$a->strings["Notifications"] = "Powiadomienia";
-$a->strings["%s liked %s's post"] = "%s polubił wpis %s";
-$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s";
-$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
-$a->strings["%s created a new post"] = "%s dodał nowy wpis";
-$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
-$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych";
-$a->strings["Network Notifications"] = "Powiadomienia z sieci";
-$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych.";
-$a->strings["System Notifications"] = "Powiadomienia systemowe";
-$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych";
-$a->strings["Personal Notifications"] = "Prywatne powiadomienia";
-$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu";
-$a->strings["Home Notifications"] = "Powiadomienia z instancji";
-$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
-$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
-$a->strings["Contact updated."] = "Kontakt zaktualizowany";
-$a->strings["Contact has been blocked"] = "Kontakt został zablokowany";
-$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany";
-$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany";
-$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany";
-$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany";
-$a->strings["Contact has been unarchived"] = "";
-$a->strings["Do you really want to delete this contact?"] = "";
-$a->strings["Contact has been removed."] = "Kontakt został usunięty.";
-$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s";
-$a->strings["You are sharing with %s"] = "Współdzielisz z %s";
-$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
-$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
-$a->strings["Never"] = "Nigdy";
-$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)";
-$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)";
-$a->strings["Suggest friends"] = "Osoby, które możesz znać";
-$a->strings["Network type: %s"] = "Typ sieci: %s";
-$a->strings["%d contact in common"] = array(
-       0 => "",
-       1 => "",
-       2 => "",
-);
-$a->strings["View all contacts"] = "Zobacz wszystkie kontakty";
-$a->strings["Unblock"] = "Odblokuj";
-$a->strings["Block"] = "Zablokuj";
-$a->strings["Toggle Blocked status"] = "";
-$a->strings["Unignore"] = "Odblokuj";
-$a->strings["Toggle Ignored status"] = "";
-$a->strings["Unarchive"] = "";
-$a->strings["Archive"] = "Archiwum";
-$a->strings["Toggle Archive status"] = "";
-$a->strings["Repair"] = "Napraw";
-$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów";
-$a->strings["Communications lost with this contact!"] = "";
-$a->strings["Contact Editor"] = "Edytor kontaktów";
-$a->strings["Profile Visibility"] = "Widoczność profilu";
-$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s";
-$a->strings["Contact Information / Notes"] = "Informacja o kontakcie / Notka";
-$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu";
-$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]";
-$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
-$a->strings["Ignore contact"] = "Ignoruj kontakt";
-$a->strings["Repair URL settings"] = "Napraw ustawienia adresu";
-$a->strings["View conversations"] = "Zobacz rozmowę";
-$a->strings["Delete contact"] = "Usuń kontakt";
-$a->strings["Last update:"] = "Ostatnia aktualizacja:";
-$a->strings["Update public posts"] = "Zaktualizuj publiczne posty";
-$a->strings["Update now"] = "Aktualizuj teraz";
-$a->strings["Currently blocked"] = "Obecnie zablokowany";
-$a->strings["Currently ignored"] = "Obecnie zignorowany";
-$a->strings["Currently archived"] = "Obecnie zarchiwizowany";
-$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne";
-$a->strings["Suggestions"] = "Sugestie";
-$a->strings["Suggest potential friends"] = "Sugerowani znajomi";
-$a->strings["All Contacts"] = "Wszystkie kontakty";
-$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty";
-$a->strings["Unblocked"] = "Odblokowany";
-$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty";
-$a->strings["Blocked"] = "Zablokowany";
-$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
-$a->strings["Ignored"] = "Zignorowany";
-$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
-$a->strings["Archived"] = "";
-$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
-$a->strings["Hidden"] = "Ukryty";
-$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty";
-$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń";
-$a->strings["is a fan of yours"] = "jest twoim fanem";
-$a->strings["you are a fan of"] = "jesteś fanem";
-$a->strings["Edit contact"] = "Edytuj kontakt";
-$a->strings["Contacts"] = "Kontakty";
-$a->strings["Search your contacts"] = "Wyszukaj w kontaktach";
-$a->strings["Finding: "] = "Znalezione:";
-$a->strings["Find"] = "Znajdź";
-$a->strings["No valid account found."] = "Nie znaleziono ważnego konta.";
-$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email.";
-$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s";
-$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się.";
-$a->strings["Password Reset"] = "Zresetuj hasło";
-$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane na twoje życzenie.";
-$a->strings["Your new password is"] = "Twoje nowe hasło to";
-$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj swoje nowe hasło - i wtedy";
-$a->strings["click here to login"] = "Kliknij tutaj aby zalogować";
-$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu.";
-$a->strings["Your password has been changed at %s"] = "";
-$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?";
-$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji.";
-$a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
-$a->strings["Reset"] = "Zresetuj";
-$a->strings["Additional features"] = "";
-$a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
-$a->strings["Update"] = "Zaktualizuj";
-$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się.";
-$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email.";
-$a->strings["Features updated"] = "";
-$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione.";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione.";
-$a->strings["Password changed."] = "Hasło zostało zmianione.";
-$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie.";
-$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy.";
-$a->strings[" Name too short."] = "Za krótka nazwa.";
-$a->strings[" Not valid email."] = "Zły email.";
-$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten 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."] = "Zaktualizowano ustawienia.";
-$a->strings["Add application"] = "Dodaj aplikacje";
-$a->strings["Consumer Key"] = "Klucz konsumenta";
-$a->strings["Consumer Secret"] = "Sekret konsumenta";
-$a->strings["Redirect"] = "Przekierowanie";
-$a->strings["Icon url"] = "Adres ikony";
-$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
-$a->strings["Connected Apps"] = "Powiązane aplikacje";
-$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od";
-$a->strings["No name"] = "Bez nazwy";
-$a->strings["Remove authorization"] = "Odwołaj upoważnienie";
-$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane";
-$a->strings["Plugin Settings"] = "Ustawienia wtyczki";
-$a->strings["Off"] = "Wyłącz";
-$a->strings["On"] = "Włącz";
-$a->strings["Additional Features"] = "";
-$a->strings["Built-in support for %s connectivity is %s"] = "";
-$a->strings["enabled"] = "włączony";
-$a->strings["disabled"] = "wyłączony";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie";
-$a->strings["Connector Settings"] = "Ustawienia konektora";
-$a->strings["Email/Mailbox Setup"] = "Ustawienia  emaila/skrzynki mailowej";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email.";
-$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:";
-$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:";
-$a->strings["IMAP port:"] = "Port IMAP:";
-$a->strings["Security:"] = "Ochrona:";
-$a->strings["None"] = "Brak";
-$a->strings["Email login name:"] = "Login emaila:";
-$a->strings["Email password:"] = "Hasło emaila:";
-$a->strings["Reply-to address:"] = "Odpowiedz na adres:";
-$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail";
-$a->strings["Action after import:"] = "Akcja po zaimportowaniu:";
-$a->strings["Mark as seen"] = "Oznacz jako przeczytane";
-$a->strings["Move to folder"] = "Przenieś do folderu";
-$a->strings["Move to folder:"] = "Przenieś do folderu:";
-$a->strings["No special theme for mobile devices"] = "";
-$a->strings["Display Settings"] = "Wyświetl ustawienia";
-$a->strings["Display Theme:"] = "Wyświetl motyw:";
-$a->strings["Mobile Theme:"] = "";
-$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund";
-$a->strings["Minimum of 10 seconds, no maximum"] = "Dolny limit 10 sekund, brak górnego limitu";
-$a->strings["Number of items to display per page:"] = "";
-$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów";
-$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek";
-$a->strings["Normal Account Page"] = "";
-$a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem";
-$a->strings["Soapbox Page"] = "";
-$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'";
-$a->strings["Community Forum/Celebrity Account"] = "";
-$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu.";
-$a->strings["Automatic Friend Page"] = "";
-$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół";
-$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."] = "Przeznacz to OpenID do logowania się na to konto.";
-$a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?";
-$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?";
-$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?";
-$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?";
-$a->strings["Allow friends to post to your profile page?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych";
-$a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich postów przez znajomych";
-$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>."] = "Profil <strong>nie jest opublikowany</strong>";
-$a->strings["or"] = "lub";
-$a->strings["Your Identity Address is"] = "Twój adres identyfikacyjny to";
-$a->strings["Automatically expire posts after this many days:"] = "";
-$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte.";
-$a->strings["Advanced expiration settings"] = "";
-$a->strings["Advanced Expiration"] = "";
-$a->strings["Expire posts:"] = "Wygasające posty:";
-$a->strings["Expire personal notes:"] = "Wygasające notatki osobiste:";
-$a->strings["Expire starred posts:"] = "";
-$a->strings["Expire photos:"] = "Wygasające zdjęcia:";
-$a->strings["Only expire posts by others:"] = "";
-$a->strings["Account Settings"] = "Ustawienia konta";
-$a->strings["Password Settings"] = "Ustawienia hasła";
-$a->strings["New Password:"] = "Nowe hasło:";
-$a->strings["Confirm:"] = "Potwierdź:";
-$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić.";
-$a->strings["Basic Settings"] = "Ustawienia podstawowe";
-$a->strings["Full Name:"] = "Imię i nazwisko:";
-$a->strings["Email Address:"] = "Adres email:";
-$a->strings["Your Timezone:"] = "Twoja strefa czasowa:";
-$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:";
-$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:";
-$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności";
-$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:";
-$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)";
-$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości";
-$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)";
-$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"] = "Ustawienia powiadomień";
-$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:"] = "Wyślij powiadmonienia na email, kiedy:";
-$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie";
-$a->strings["Your introductions are confirmed"] = "Dane zatwierdzone";
-$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ścianie profilowej";
-$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący.";
-$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość";
-$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych";
-$a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście";
-$a->strings["You are poked/prodded/etc. in a post"] = "";
-$a->strings["Advanced Account/Page Type Settings"] = "";
-$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami.";
-$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: "] = "Wybierz tożsamość do zarządzania:";
-$a->strings["Search Results For:"] = "Szukaj wyników dla:";
-$a->strings["Remove term"] = "Usuń wpis";
-$a->strings["Saved Searches"] = "Zapisane wyszukiwania";
-$a->strings["add"] = "dodaj";
-$a->strings["Commented Order"] = "Porządek wg komentarzy";
-$a->strings["Sort by Comment Date"] = "Sortuj po dacie komentarza";
-$a->strings["Posted Order"] = "Porządek wg wpisów";
-$a->strings["Sort by Post Date"] = "Sortuj po dacie posta";
-$a->strings["Posts that mention or involve you"] = "";
-$a->strings["New"] = "Nowy";
-$a->strings["Activity Stream - by date"] = "";
-$a->strings["Shared Links"] = "Współdzielone linki";
-$a->strings["Interesting Links"] = "Interesujące linki";
-$a->strings["Starred"] = "";
-$a->strings["Favourite Posts"] = "Ulubione posty";
-$a->strings["Warning: This group contains %s member from an insecure network."] = array(
-       0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.",
-       1 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
-       2 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia";
-$a->strings["Contact: "] = "Kontakt: ";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
-$a->strings["Invalid contact."] = "Zły kontakt";
-$a->strings["Personal Notes"] = "Osobiste notatki";
-$a->strings["Save"] = "Zapisz";
-$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.";
-$a->strings["Import"] = "";
-$a->strings["Move account"] = "Przenieś konto";
-$a->strings["You can import an account from another Friendica server."] = "";
-$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"] = "";
-$a->strings["Account file"] = "";
-$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
-$a->strings["No recipient selected."] = "Nie wybrano odbiorcy.";
-$a->strings["Unable to check your home location."] = "";
-$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana";
-$a->strings["Message collection failure."] = "";
-$a->strings["Message sent."] = "Wysłano.";
-$a->strings["No recipient."] = "Brak odbiorcy.";
-$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:";
-$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość";
-$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
-$a->strings["To:"] = "Do:";
-$a->strings["Subject:"] = "Temat:";
-$a->strings["Your message:"] = "Twoja wiadomość:";
-$a->strings["Welcome to Friendica"] = "Witamy na Friendica";
-$a->strings["New Member Checklist"] = "Lista nowych członków";
-$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie.";
-$a->strings["Getting Started"] = "";
-$a->strings["Friendica Walk-Through"] = "";
-$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."] = "";
-$a->strings["Go to Your Settings"] = "Idź do swoich ustawień";
-$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."] = "";
-$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["Profile"] = "Profil";
-$a->strings["Upload Profile Photo"] = "Wyślij zdjęcie profilowe";
-$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty.";
-$a->strings["Edit Your Profile"] = "Edytuj własny 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."] = "";
-$a->strings["Profile Keywords"] = "Słowa kluczowe profilu";
-$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"] = "Łączę się...";
-$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."] = "";
-$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
-$a->strings["Importing Emails"] = "Importuję emaile...";
-$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"] = "Idź do strony z Twoimi kontaktami";
-$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."] = "";
-$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."] = "";
-$a->strings["Finding New People"] = "Poszukiwanie Nowych Ludzi";
-$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."] = "";
-$a->strings["Groups"] = "Grupy";
-$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty";
-$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?"] = "Dlaczego moje posty nie są publiczne?";
-$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."] = "";
-$a->strings["Getting Help"] = "Otrzymywanie pomocy";
-$a->strings["Go to the Help Section"] = "Idź do części o pomocy";
-$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
-$a->strings["Item not available."] = "Element nie dostępny.";
-$a->strings["Item was not found."] = "Element nie znaleziony.";
-$a->strings["Group created."] = "Grupa utworzona.";
-$a->strings["Could not create group."] = "Nie mogę stworzyć grupy";
-$a->strings["Group not found."] = "Nie znaleziono grupy";
-$a->strings["Group name changed."] = "Nazwa grupy zmieniona";
-$a->strings["Permission denied"] = "Odmowa dostępu";
-$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych.";
-$a->strings["Group Name: "] = "Nazwa grupy: ";
-$a->strings["Group removed."] = "Grupa usunięta.";
-$a->strings["Unable to remove group."] = "Nie można usunąć grupy.";
-$a->strings["Group Editor"] = "Edytor grupy";
-$a->strings["Members"] = "Członkowie";
-$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia.";
-$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika.";
-$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu";
-$a->strings["Visible To"] = "Widoczne dla";
-$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)";
-$a->strings["No contacts."] = "brak kontaktów";
-$a->strings["View Contacts"] = "widok kontaktów";
-$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila.";
-$a->strings["Failed to send email message. Here is the message that failed."] = "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się.";
-$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. ";
-$a->strings["Registration request at %s"] = "Prośba o rejestrację u %s";
-$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'.";
-$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.";
-$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):";
-$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
-$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu.";
-$a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:";
-$a->strings["Registration"] = "Rejestracja";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):";
-$a->strings["Your Email Address: "] = "Twój adres email:";
-$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>'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@\$nazwastrony</strong>'.";
-$a->strings["Choose a nickname: "] = "Wybierz pseudonim:";
-$a->strings["Register"] = "Zarejestruj";
-$a->strings["People Search"] = "Szukaj osób";
-$a->strings["photo"] = "zdjęcie";
-$a->strings["status"] = "status";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s lubi %2\$s's %3\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s";
-$a->strings["Item not found."] = "Element nie znaleziony.";
-$a->strings["Access denied."] = "Brak dostępu";
-$a->strings["Photos"] = "Zdjęcia";
-$a->strings["Files"] = "Pliki";
-$a->strings["Account approved."] = "Konto zatwierdzone.";
-$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana";
-$a->strings["Please login."] = "Proszę się zalogować.";
-$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości.";
-$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony.";
-$a->strings["Wall Photos"] = "Tablica zdjęć";
-$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany.";
-$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica";
-$a->strings["You may visit them online at %s"] = "Możesz ich odwiedzić online u %s";
-$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości.";
-$a->strings["%s posted an update."] = "%s zaktualizował wpis.";
-$a->strings["%1\$s is currently %2\$s"] = "";
-$a->strings["Mood"] = "Nastrój";
-$a->strings["Set your current mood and tell your friends"] = "Wskaż swój obecny nastrój i powiedz o tym znajomym";
-$a->strings["Image uploaded but image cropping failed."] = "Obrazek załadowany, ale oprawanie powiodła się.";
-$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się.";
-$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
-$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
-$a->strings["Image exceeds size limit of %d"] = "Rozmiar obrazka przekracza limit %d";
-$a->strings["Upload File:"] = "Wyślij plik:";
-$a->strings["Select a profile:"] = "Wybierz profil:";
-$a->strings["Upload"] = "Załaduj";
-$a->strings["skip this step"] = "Pomiń ten krok";
-$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
-$a->strings["Crop Image"] = "Przytnij zdjęcie";
-$a->strings["Please adjust the image cropping for optimum viewing."] = "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania.";
-$a->strings["Done Editing"] = "Zakończ Edycję ";
-$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie ";
-$a->strings["No profile"] = "Brak profilu";
-$a->strings["Remove My Account"] = "Usuń konto";
-$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane.";
-$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji.";
-$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
-$a->strings["Clear notifications"] = "";
-$a->strings["New Message"] = "Nowa wiadomość";
-$a->strings["Unable to locate contact information."] = "Niezdolny do uzyskania informacji kontaktowych.";
-$a->strings["Do you really want to delete this message?"] = "";
-$a->strings["Message deleted."] = "Wiadomość usunięta.";
-$a->strings["Conversation removed."] = "Rozmowa usunięta.";
-$a->strings["No messages."] = "Brak wiadomości.";
-$a->strings["Unknown sender - %s"] = "";
-$a->strings["You and %s"] = "Ty i %s";
-$a->strings["%s and You"] = "%s i ty";
-$a->strings["Delete conversation"] = "Usuń rozmowę";
-$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM";
-$a->strings["%d message"] = array(
-       0 => " %d wiadomość",
-       1 => " %d wiadomości",
-       2 => " %d wiadomości",
-);
-$a->strings["Message not available."] = "Wiadomość nie jest dostępna.";
-$a->strings["Delete message"] = "Usuń wiadomość";
-$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
-$a->strings["Send Reply"] = "Odpowiedz";
-$a->strings["Friends of %s"] = "Znajomy %s";
-$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia";
-$a->strings["Theme settings updated."] = "";
-$a->strings["Site"] = "Strona";
-$a->strings["Users"] = "Użytkownicy";
-$a->strings["Plugins"] = "Wtyczki";
-$a->strings["Themes"] = "Temat";
-$a->strings["DB updates"] = "";
-$a->strings["Logs"] = "Logi";
-$a->strings["Admin"] = "Administator";
-$a->strings["Plugin Features"] = "Polecane wtyczki";
-$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
-$a->strings["Normal Account"] = "Konto normalne";
-$a->strings["Soapbox Account"] = "Konto Soapbox";
-$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
-$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
-$a->strings["Blog Account"] = "";
-$a->strings["Private Forum"] = "Forum Prywatne";
-$a->strings["Message queues"] = "";
-$a->strings["Administration"] = "Administracja";
-$a->strings["Summary"] = "Skrót";
-$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
-$a->strings["Pending registrations"] = "Rejestracje w toku.";
-$a->strings["Version"] = "Wersja";
-$a->strings["Active plugins"] = "Aktywne pluginy";
-$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
-$a->strings["Closed"] = "Zamknięty";
-$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
-$a->strings["Open"] = "Otwórz";
-$a->strings["No SSL policy, links will track page SSL state"] = "";
-$a->strings["Force all links to use SSL"] = "";
-$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
-$a->strings["File upload"] = "Plik załadowano";
-$a->strings["Policies"] = "zasady";
-$a->strings["Advanced"] = "Zaawansowany";
-$a->strings["Performance"] = "";
-$a->strings["Site name"] = "Nazwa strony";
-$a->strings["Banner/Logo"] = "Logo";
-$a->strings["System language"] = "Język systemu";
-$a->strings["System theme"] = "Motyw systemowy";
-$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
-$a->strings["Mobile system theme"] = "";
-$a->strings["Theme for mobile devices"] = "";
-$a->strings["SSL link policy"] = "";
-$a->strings["Determines whether generated links should be forced to use SSL"] = "";
-$a->strings["'Share' element"] = "";
-$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
-$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia";
-$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
-$a->strings["Maximum image length"] = "Maksymalna długość obrazu";
-$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu.";
-$a->strings["JPEG image quality"] = "jakość obrazu JPEG";
-$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
-$a->strings["Register policy"] = "Zarejestruj polisę";
-$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"] = "Zarejestruj tekst";
-$a->strings["Will be displayed prominently on the registration page."] = "";
-$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni.";
-$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
-$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół";
-$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"] = "Dozwolone domeny e-mailowe";
-$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"] = "Blokuj publicznie";
-$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"] = "Wymuś publikację";
-$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
-$a->strings["Global directory update URL"] = "";
-$a->strings["URL to update 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["Block multiple registrations"] = "";
-$a->strings["Disallow users to register additional accounts for use as pages."] = "";
-$a->strings["OpenID support"] = "Wsparcie OpenID";
-$a->strings["OpenID support for registration and logins."] = "";
-$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
-$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"] = "";
-$a->strings["Use PHP UTF8 regular expressions"] = "";
-$a->strings["Show Community Page"] = "Pokaż stronę społeczności";
-$a->strings["Display a Community page showing all recent public postings on this site."] = "";
-$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
-$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
-$a->strings["Enable Diaspora support"] = "";
-$a->strings["Provide built-in Diaspora network compatibility."] = "";
-$a->strings["Only allow Friendica contacts"] = "";
-$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
-$a->strings["Verify SSL"] = "Weryfikacja 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."] = "";
-$a->strings["Proxy user"] = "Użytkownik proxy";
-$a->strings["Proxy URL"] = "URL Proxy";
-$a->strings["Network timeout"] = "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."] = "";
-$a->strings["Poll interval"] = "";
-$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
-$a->strings["Maximum Load Average"] = "";
-$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
-$a->strings["Use MySQL full text engine"] = "";
-$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
-$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)."] = "";
-$a->strings["Path for lock file"] = "";
-$a->strings["Temp path"] = "";
-$a->strings["Base path to installation"] = "";
-$a->strings["Update has been marked successful"] = "";
-$a->strings["Executing %s failed. Check system logs."] = "";
-$a->strings["Update %s was successfully applied."] = "";
-$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
-$a->strings["Update function %s could not be found."] = "";
-$a->strings["No failed updates."] = "Brak błędów aktualizacji.";
-$a->strings["Failed Updates"] = "Błąd aktualizacji";
-$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
-$a->strings["Mark success (if update was manually applied)"] = "";
-$a->strings["Attempt to execute this update step automatically"] = "";
-$a->strings["%s user blocked/unblocked"] = array(
-       0 => "",
-       1 => "",
-       2 => "",
-);
-$a->strings["%s user deleted"] = array(
-       0 => " %s użytkownik usunięty",
-       1 => " %s użytkownicy usunięci",
-       2 => " %s usuniętych użytkowników ",
-);
-$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty";
-$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany";
-$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany";
-$a->strings["select all"] = "Zaznacz wszystko";
-$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie";
-$a->strings["Request date"] = "Data prośby";
-$a->strings["Email"] = "E-mail";
-$a->strings["No registrations."] = "brak rejestracji";
-$a->strings["Deny"] = "Odmów";
-$a->strings["Site admin"] = "Administracja stroną";
-$a->strings["Register date"] = "Data rejestracji";
-$a->strings["Last login"] = "Ostatnie logowanie";
-$a->strings["Last item"] = "Ostatni element";
-$a->strings["Account"] = "Konto";
-$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
-$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?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
-$a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona.";
-$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona.";
-$a->strings["Disable"] = "Wyłącz";
-$a->strings["Enable"] = "Zezwól";
-$a->strings["Toggle"] = "Włącz";
-$a->strings["Author: "] = "Autor: ";
-$a->strings["Maintainer: "] = "";
-$a->strings["No themes found."] = "Nie znaleziono tematu.";
-$a->strings["Screenshot"] = "Zrzut ekranu";
-$a->strings["[Experimental]"] = "[Eksperymentalne]";
-$a->strings["[Unsupported]"] = "[Niewspieralne]";
-$a->strings["Log settings updated."] = "";
-$a->strings["Clear"] = "Wyczyść";
-$a->strings["Debugging"] = "Naprawianie";
-$a->strings["Log file"] = "Plik logów";
-$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
-$a->strings["Log level"] = "Poziom logów";
-$a->strings["Close"] = "Zamknij";
-$a->strings["FTP Host"] = "Założyciel FTP";
-$a->strings["FTP Path"] = "Ścieżka FTP";
-$a->strings["FTP User"] = "Użytkownik FTP";
-$a->strings["FTP Password"] = "FTP Hasło";
-$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny";
-$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta";
-$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników";
-$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym";
-$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość";
-$a->strings["{0} requested registration"] = "{0} żądana rejestracja";
-$a->strings["{0} commented %s's post"] = "{0} skomentował %s wpis";
-$a->strings["{0} liked %s's post"] = "{0} polubił wpis %s";
-$a->strings["{0} disliked %s's post"] = "{0} przestał lubić post %s";
-$a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s";
-$a->strings["{0} posted"] = "{0} utworzony";
-$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s";
-$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie";
-$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy";
-$a->strings["OpenID protocol error. No ID returned."] = "";
-$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
-$a->strings["Login failed."] = "Niepowodzenie logowania";
-$a->strings["Contact added"] = "Kontakt dodany";
-$a->strings["Common Friends"] = "Wspólni znajomi";
-$a->strings["No contacts in common."] = "";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
-$a->strings["link"] = "";
-$a->strings["Item has been removed."] = "Przedmiot został usunięty";
-$a->strings["Applications"] = "Aplikacje";
-$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
-$a->strings["Search"] = "Szukaj";
-$a->strings["Profile not found."] = "Nie znaleziono profilu.";
-$a->strings["Profile deleted."] = "Konto usunięte.";
-$a->strings["Profile-"] = "Profil-";
-$a->strings["New profile created."] = "Utworzono nowy profil.";
-$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
-$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana";
-$a->strings["Marital Status"] = "";
-$a->strings["Romantic Partner"] = "";
-$a->strings["Likes"] = "";
-$a->strings["Dislikes"] = "";
-$a->strings["Work/Employment"] = "Praca/Zatrudnienie";
-$a->strings["Religion"] = "Religia";
-$a->strings["Political Views"] = "Poglądy polityczne";
-$a->strings["Gender"] = "Płeć";
-$a->strings["Sexual Preference"] = "Orientacja seksualna";
-$a->strings["Homepage"] = "Strona Główna";
-$a->strings["Interests"] = "Zainteresowania";
-$a->strings["Address"] = "Adres";
-$a->strings["Location"] = "Położenie";
-$a->strings["Profile updated."] = "Konto zaktualizowane.";
-$a->strings[" and "] = " i ";
-$a->strings["public profile"] = "profil publiczny";
-$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
-$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s";
-$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
-$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?";
-$a->strings["Edit Profile Details"] = "Edytuj profil.";
-$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie";
-$a->strings["View this profile"] = "Zobacz ten profil";
-$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia";
-$a->strings["Clone this profile"] = "Sklonuj ten profil";
-$a->strings["Delete this profile"] = "Usuń ten profil";
-$a->strings["Profile Name:"] = "Nazwa profilu :";
-$a->strings["Your Full Name:"] = "Twoje imię i nazwisko:";
-$a->strings["Title/Description:"] = "Tytuł/Opis :";
-$a->strings["Your Gender:"] = "Twoja płeć:";
-$a->strings["Birthday (%s):"] = "Urodziny (%s):";
-$a->strings["Street Address:"] = "Ulica:";
-$a->strings["Locality/City:"] = "Miejscowość/Miasto :";
-$a->strings["Postal/Zip Code:"] = "Kod Pocztowy :";
-$a->strings["Country:"] = "Kraj:";
-$a->strings["Region/State:"] = "Region / Stan :";
-$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stan :";
-$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady : cathy123, Cathy Williams, cathy@example.com";
-$a->strings["Since [date]:"] = "Od [data]:";
-$a->strings["Sexual Preference:"] = "Interesują mnie:";
-$a->strings["Homepage URL:"] = "Strona główna URL:";
-$a->strings["Hometown:"] = "Miasto rodzinne:";
-$a->strings["Political Views:"] = "Poglądy polityczne:";
-$a->strings["Religious Views:"] = "Poglądy religijne:";
-$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :";
-$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :";
-$a->strings["Likes:"] = "Lubi:";
-$a->strings["Dislikes:"] = "";
-$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii";
-$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)";
-$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)";
-$a->strings["Tell us about yourself..."] = "Napisz o sobie...";
-$a->strings["Hobbies/Interests"] = "Zainteresowania";
-$a->strings["Contact information and Social Networks"] = "Informacje kontaktowe i Sieci Społeczne";
-$a->strings["Musical interests"] = "Muzyka";
-$a->strings["Books, literature"] = "Literatura";
-$a->strings["Television"] = "Telewizja";
-$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka";
-$a->strings["Love/romance"] = "Miłość/romans";
-$a->strings["Work/employment"] = "Praca/zatrudnienie";
-$a->strings["School/education"] = "Szkoła/edukacja";
-$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu.";
-$a->strings["Age: "] = "Wiek: ";
-$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami";
-$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe";
-$a->strings["Create New Profile"] = "Stwórz nowy profil";
-$a->strings["Profile Image"] = "Obraz profilowy";
-$a->strings["visible to everybody"] = "widoczne dla wszystkich";
-$a->strings["Edit visibility"] = "Edytuj widoczność";
-$a->strings["Save to Folder:"] = "Zapisz w folderze:";
-$a->strings["- select -"] = "- wybierz -";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'go %3\$s przy użyciu %4\$s";
-$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"] = "Dodaj";
-$a->strings["No entries."] = "Brak wpisów.";
-$a->strings["Source (bbcode) text:"] = "";
-$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
-$a->strings["Source input: "] = "";
-$a->strings["bb2html (raw HTML): "] = "";
-$a->strings["bb2html: "] = "";
-$a->strings["bb2html2bb: "] = "";
-$a->strings["bb2md: "] = "";
-$a->strings["bb2md2html: "] = "";
-$a->strings["bb2dia2bb: "] = "";
-$a->strings["bb2md2html2bb: "] = "";
-$a->strings["Source input (Diaspora format): "] = "";
-$a->strings["diaspora2bb: "] = "";
-$a->strings["Do you really want to delete this suggestion?"] = "";
-$a->strings["Friend Suggestions"] = "Osoby, które możesz znać";
-$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "";
-$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj";
-$a->strings["Global Directory"] = "Globalne Położenie";
-$a->strings["Find on this site"] = "Znajdź na tej stronie";
-$a->strings["Site Directory"] = "Katalog Strony";
-$a->strings["Gender: "] = "Płeć: ";
-$a->strings["Gender:"] = "Płeć:";
-$a->strings["Status:"] = "Status";
-$a->strings["Homepage:"] = "Strona główna:";
-$a->strings["About:"] = "O:";
-$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
-$a->strings["Total invitation limit exceeded."] = "";
-$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email.";
-$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica";
-$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
-$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane.";
-$a->strings["%d message sent."] = array(
-       0 => "%d wiadomość wysłana.",
-       1 => "%d wiadomości wysłane.",
-       2 => "%d wysłano .",
-);
-$a->strings["You have no more invitations available"] = "Nie masz więcej zaproszeń";
-$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."] = "";
-$a->strings["To accept this invitation, please visit and register 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."] = "";
-$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
-$a->strings["Send invitations"] = "Wyślij zaproszenia";
-$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy email, jeden na linijkę:";
-$a->strings["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"] = "";
-$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :";
-$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
-$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."] = "Odpowiedź do zdalnej strony nie została zrozumiana";
-$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej";
-$a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie";
-$a->strings["Remote site reported: "] = "Zdalna strona zgłoszona:";
-$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później.";
-$a->strings["Introduction failed or was revoked."] = "Nieudane lub unieważnione wprowadzenie.";
-$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu.";
-$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s";
-$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'";
-$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej zepsuty";
-$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas.";
-$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie";
-$a->strings["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."] = "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie.";
-$a->strings["Unable to set your contact credentials on our system."] = "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie";
-$a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie";
-$a->strings["Connection accepted at %s"] = "Połączenie zaakceptowane %s";
-$a->strings["%1\$s has joined %2\$s"] = "";
-$a->strings["Google+ Import Settings"] = "";
-$a->strings["Enable Google+ Import"] = "";
-$a->strings["Google Account ID"] = "";
-$a->strings["Google+ Import Settings saved."] = "";
-$a->strings["Facebook disabled"] = "Facebook wyłączony";
-$a->strings["Updating contacts"] = "Aktualizacja kontaktów";
-$a->strings["Facebook API key is missing."] = "Brakuje klucza API z facebooka.";
-$a->strings["Facebook Connect"] = "Połącz konto z kontem Facebook";
-$a->strings["Install Facebook connector for this account."] = "Zainstaluj wtyczkę Facebook ";
-$a->strings["Remove Facebook connector"] = "Usuń wtyczkę Facebook";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]";
-$a->strings["Post to Facebook by default"] = "Domyślnie opublikuj na stronie Facebook";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
-$a->strings["Do not import your Facebook profile wall conversations"] = "";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
-$a->strings["Comma separated applications to ignore"] = "";
-$a->strings["Problems with Facebook Real-Time Updates"] = "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a";
-$a->strings["Administrator"] = "Administrator";
-$a->strings["Facebook Connector Settings"] = "Ustawienia połączenia z Facebook";
-$a->strings["Facebook API Key"] = "Facebook API Key";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
-$a->strings["The given API Key seems to work correctly."] = "";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
-$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
-$a->strings["Application secret"] = "";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
-$a->strings["Real-Time Updates"] = "Aktualizacje w czasie rzeczywistym";
-$a->strings["Real-Time Updates are activated."] = "Aktualizacje w czasie rzeczywistym zostały aktywowane.";
-$a->strings["Deactivate Real-Time Updates"] = "Zdezaktywuj aktualizacje w czasie rzeczywistym";
-$a->strings["Real-Time Updates not activated."] = "Aktualizacje w czasie rzeczywistym nie zostały aktywowane.";
-$a->strings["Activate Real-Time Updates"] = "Aktywuj aktualizacje w czasie rzeczywistym";
-$a->strings["The new values have been saved."] = "";
-$a->strings["Post to Facebook"] = "Post na Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci";
-$a->strings["View on Friendica"] = "Zobacz na Friendice";
-$a->strings["Facebook post failed. Queued for retry."] = "";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
-$a->strings["Facebook connection became invalid"] = "Błędne połączenie z Facebookiem";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
-$a->strings["StatusNet AutoFollow settings updated."] = "";
-$a->strings["StatusNet AutoFollow Settings"] = "";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
-$a->strings["Lifetime of the cache (in hours)"] = "";
-$a->strings["Cache Statistics"] = "";
-$a->strings["Number of items"] = "Numery elementów";
-$a->strings["Size of the cache"] = "";
-$a->strings["Delete the whole cache"] = "";
-$a->strings["Facebook Post disabled"] = "";
-$a->strings["Facebook Post"] = "Wpis z Facebooka";
-$a->strings["Install Facebook Post connector for this account."] = "";
-$a->strings["Remove Facebook Post connector"] = "";
-$a->strings["Suppress \"View on friendica\""] = "";
-$a->strings["Mirror wall posts from facebook to friendica."] = "";
-$a->strings["Post to page/group:"] = "Napisz na stronę/grupę:";
-$a->strings["Facebook Post Settings"] = "Ustawienia wpisu z Facebooka";
-$a->strings["%s:"] = "";
-$a->strings["%d person likes this"] = array(
-       0 => " %d osoba lubi to",
-       1 => " %d osób lubi to",
-       2 => " %d osób lubi to",
-);
-$a->strings["%d person doesn't like this"] = array(
-       0 => " %d osoba nie lubi tego",
-       1 => " %d osób tego nie lubi",
-       2 => " %d osób tego nie lubi",
-);
-$a->strings["Get added to this list!"] = "Zostań dodany do listy!";
-$a->strings["Generate new key"] = "Stwórz nowy klucz";
-$a->strings["Widgets key"] = "";
-$a->strings["Widgets available"] = "Widgety są dostępne";
-$a->strings["Connect on Friendica!"] = "Połączono z Friendica!";
-$a->strings["bitchslap"] = "";
-$a->strings["bitchslapped"] = "";
-$a->strings["shag"] = "";
-$a->strings["shagged"] = "";
-$a->strings["do something obscenely biological to"] = "";
-$a->strings["did something obscenely biological to"] = "";
-$a->strings["point out the poke feature to"] = "";
-$a->strings["pointed out the poke feature to"] = "";
-$a->strings["declare undying love for"] = "";
-$a->strings["declared undying love for"] = "";
-$a->strings["patent"] = "";
-$a->strings["patented"] = "";
-$a->strings["stroke beard"] = "";
-$a->strings["stroked their beard at"] = "";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
-$a->strings["hug"] = "przytul";
-$a->strings["hugged"] = "przytulony";
-$a->strings["kiss"] = "pocałuj";
-$a->strings["kissed"] = "pocałowany";
-$a->strings["raise eyebrows at"] = "";
-$a->strings["raised their eyebrows at"] = "";
-$a->strings["insult"] = "";
-$a->strings["insulted"] = "";
-$a->strings["praise"] = "";
-$a->strings["praised"] = "";
-$a->strings["be dubious of"] = "";
-$a->strings["was dubious of"] = "";
-$a->strings["eat"] = "";
-$a->strings["ate"] = "";
-$a->strings["giggle and fawn at"] = "";
-$a->strings["giggled and fawned at"] = "";
-$a->strings["doubt"] = "";
-$a->strings["doubted"] = "";
-$a->strings["glare"] = "";
-$a->strings["glared at"] = "";
-$a->strings["YourLS Settings"] = "";
-$a->strings["URL: http://"] = "URL: http://";
-$a->strings["Username:"] = "Nazwa użytkownika:";
-$a->strings["Password:"] = "Hasło:";
-$a->strings["Use SSL "] = "Użyj SSL";
-$a->strings["yourls Settings saved."] = "";
-$a->strings["Post to LiveJournal"] = "Post do LiveJournal";
-$a->strings["LiveJournal Post Settings"] = "Ustawienia postów do LiveJournal";
-$a->strings["Enable LiveJournal Post Plugin"] = "";
-$a->strings["LiveJournal username"] = "Nazwa użytkownika do LiveJournal";
-$a->strings["LiveJournal password"] = "Hasło do LiveJournal";
-$a->strings["Post to LiveJournal by default"] = "automatycznie publikuj na LiveJournal";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
-$a->strings["Enable Content filter"] = "";
-$a->strings["Comma separated list of keywords to hide"] = "";
-$a->strings["Use /expression/ to provide regular expressions"] = "";
-$a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";
-$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";
-$a->strings["Forums"] = "Fora";
-$a->strings["Forums:"] = "";
-$a->strings["Page settings updated."] = "Zaktualizowano ustawienia strony.";
-$a->strings["Page Settings"] = "Ustawienia strony";
-$a->strings["How many forums to display on sidebar without paging"] = "";
-$a->strings["Randomise Page/Forum list"] = "";
-$a->strings["Show pages/forums on profile page"] = "";
-$a->strings["Planets Settings"] = "";
-$a->strings["Enable Planets Plugin"] = "";
-$a->strings["Forum Directory"] = "Katalog Forum";
-$a->strings["Login"] = "Login";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "Ostatni użytkownicy";
-$a->strings["Most active users"] = "najaktywniejsi użytkownicy";
-$a->strings["Latest photos"] = "Ostatnie zdjęcia";
-$a->strings["Latest likes"] = "Ostatnie polubienia";
-$a->strings["event"] = "wydarzenie";
-$a->strings["No access"] = "Brak dostępu";
-$a->strings["Could not open component for editing"] = "";
-$a->strings["Go back to the calendar"] = "Wróć do kalendarza";
-$a->strings["Event data"] = "Data wydarzenia";
-$a->strings["Calendar"] = "Kalendarz";
-$a->strings["Special color"] = "";
-$a->strings["Subject"] = "Temat";
-$a->strings["Starts"] = "Zaczyna się";
-$a->strings["Ends"] = "Kończy się";
-$a->strings["Description"] = "Opis";
-$a->strings["Recurrence"] = "";
-$a->strings["Frequency"] = "często";
-$a->strings["Daily"] = "Dziennie";
-$a->strings["Weekly"] = "Tygodniowo";
-$a->strings["Monthly"] = "Miesięcznie";
-$a->strings["Yearly"] = "raz na rok";
-$a->strings["days"] = "dni";
-$a->strings["weeks"] = "tygodnie";
-$a->strings["months"] = "miesiące";
-$a->strings["years"] = "lata";
-$a->strings["Interval"] = "";
-$a->strings["All %select% %time%"] = "";
-$a->strings["Days"] = "Dni";
-$a->strings["Sunday"] = "Niedziela";
-$a->strings["Monday"] = "Poniedziałek";
-$a->strings["Tuesday"] = "Wtorek";
-$a->strings["Wednesday"] = "Środa";
-$a->strings["Thursday"] = "Czwartek";
-$a->strings["Friday"] = "Piątek";
-$a->strings["Saturday"] = "Sobota";
-$a->strings["First day of week:"] = "Pierwszy dzień tygodnia:";
-$a->strings["Day of month"] = "Dzień miesiąca";
-$a->strings["#num#th of each month"] = "";
-$a->strings["#num#th-last of each month"] = "";
-$a->strings["#num#th #wkday# of each month"] = "";
-$a->strings["#num#th-last #wkday# of each month"] = "";
-$a->strings["Month"] = "Miesiąc";
-$a->strings["#num#th of the given month"] = "";
-$a->strings["#num#th-last of the given month"] = "";
-$a->strings["#num#th #wkday# of the given month"] = "";
-$a->strings["#num#th-last #wkday# of the given month"] = "";
-$a->strings["Repeat until"] = "Powtarzaj do";
-$a->strings["Infinite"] = "";
-$a->strings["Until the following date"] = "Do tej daty";
-$a->strings["Number of times"] = "";
-$a->strings["Exceptions"] = "Wyjątki";
-$a->strings["none"] = "";
-$a->strings["Notification"] = "Powiadomienie";
-$a->strings["Notify by"] = "";
-$a->strings["E-Mail"] = "E-Mail";
-$a->strings["On Friendica / Display"] = "";
-$a->strings["Time"] = "";
-$a->strings["Hours"] = "Godzin";
-$a->strings["Minutes"] = "Minut";
-$a->strings["Seconds"] = "";
-$a->strings["Weeks"] = "";
-$a->strings["before the"] = "";
-$a->strings["start of the event"] = "rozpoczęcie wydarzenia";
-$a->strings["end of the event"] = "zakończenie wydarzenia";
-$a->strings["Add a notification"] = "Dodaj powiadomienie";
-$a->strings["The event #name# will start at #date"] = "";
-$a->strings["#name# is about to begin."] = "";
-$a->strings["Saved"] = "Zapisano";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "Amerykański format daty (mm/dd/YYYY)";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "Niemiecki format daty (dd.mm.YYYY)";
-$a->strings["Private Events"] = "Prywatne wydarzenia";
-$a->strings["Private Addressbooks"] = "";
-$a->strings["Friendica-Native events"] = "";
-$a->strings["Friendica-Contacts"] = "Kontakty friendica";
-$a->strings["Your Friendica-Contacts"] = "Twoje kontakty friendica";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "";
-$a->strings["The ICS-File has been imported."] = "";
-$a->strings["No file was uploaded."] = "Nie wgrano pliku.";
-$a->strings["Import a ICS-file"] = "";
-$a->strings["ICS-File"] = "";
-$a->strings["Overwrite all #num# existing events"] = "";
-$a->strings["New event"] = "Nowe wydarzenie";
-$a->strings["Today"] = "Dzisiaj";
-$a->strings["Day"] = "Dzień";
-$a->strings["Week"] = "Tydzień";
-$a->strings["Reload"] = "Załaduj ponownie";
 $a->strings["Date"] = "Data";
 $a->strings["Error"] = "Błąd";
+$a->strings["Permission denied."] = "Brak uprawnień.";
+$a->strings["The new values have been saved."] = "";
 $a->strings["The calendar has been updated."] = "";
 $a->strings["The new calendar has been created."] = "";
 $a->strings["The calendar has been deleted."] = "";
 $a->strings["Calendar Settings"] = "Ustawienia kalendarza";
 $a->strings["Date format"] = "Format daty";
 $a->strings["Time zone"] = "Strefa czasowa";
+$a->strings["Save"] = "Zapisz";
 $a->strings["Calendars"] = "Kalendarze";
 $a->strings["Create a new calendar"] = "Stwórz nowy kalendarz";
 $a->strings["Limitations"] = "Ograniczenie";
@@ -1402,153 +175,139 @@ $a->strings["Something really went wrong. I cannot recover from this state autom
 $a->strings["Troubleshooting"] = "Rozwiązywanie problemów";
 $a->strings["Manual creation of the database tables:"] = "";
 $a->strings["Show SQL-statements"] = "";
-$a->strings["Private Calendar"] = "Kalendarz prywatny";
-$a->strings["Friendica Events: Mine"] = "Wydarzenia Friendici: Moje";
-$a->strings["Friendica Events: Contacts"] = "Wydarzenia Friendici: Kontakty";
-$a->strings["Private Addresses"] = "";
-$a->strings["Friendica Contacts"] = "Kontakty Friendica";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
-$a->strings["Template URL (with {category})"] = "";
-$a->strings["OAuth end-point"] = "";
-$a->strings["Api"] = "Api";
-$a->strings["Member since:"] = "Data dołączenia:";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Kółko i krzyżyk";
-$a->strings["3D Tic-Tac-Toe"] = "Kółko i krzyżyk 3D";
-$a->strings["New game"] = "Nowa gra";
-$a->strings["New game with handicap"] = "Nowa gra z utrudnieniem";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie.";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów.";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
-$a->strings["You go first..."] = "Ty pierwszy...";
-$a->strings["I'm going first this time..."] = "Zaczynam...";
-$a->strings["You won!"] = "Wygrałeś!";
-$a->strings["\"Cat\" game!"] = "Gra \"Kot\"!";
-$a->strings["I won!"] = "Wygrałem!";
-$a->strings["Randplace Settings"] = "Ustawienia Randplace";
-$a->strings["Enable Randplace Plugin"] = "Włącz Randplace Plugin";
+$a->strings["Post to Drupal"] = "Opublikuj na Drupal";
+$a->strings["Drupal Post Settings"] = "Ustawienia wpisów Drupala";
+$a->strings["Enable Drupal Post Plugin"] = "Włącz plugin wpisów Drupala";
+$a->strings["Drupal username"] = "Użytkownik Drupala";
+$a->strings["Drupal password"] = "hasło do Drupal";
+$a->strings["Post Type - article,page,or blog"] = "";
+$a->strings["Drupal site URL"] = "Adres strony Drupala";
+$a->strings["Drupal site uses clean URLS"] = "";
+$a->strings["Post to Drupal by default"] = "";
 $a->strings["Post to Dreamwidth"] = "Opublikuj na Dreamwidth";
 $a->strings["Dreamwidth Post Settings"] = "";
 $a->strings["Enable dreamwidth Post Plugin"] = "";
 $a->strings["dreamwidth username"] = "";
 $a->strings["dreamwidth password"] = "";
 $a->strings["Post to dreamwidth by default"] = "";
-$a->strings["Remote Permissions Settings"] = "";
-$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
-$a->strings["Remote Permissions settings updated."] = "";
-$a->strings["Visible to"] = "Widoczne dla";
-$a->strings["may only be a partial list"] = "";
-$a->strings["Global"] = "Ogólne";
-$a->strings["The posts of every user on this server show the post recipients"] = "";
-$a->strings["Individual"] = "Indywidualne";
-$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
-$a->strings["Startpage Settings"] = "Ustawienia strony startowej";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
-$a->strings["Geonames settings updated."] = "";
-$a->strings["Geonames Settings"] = "ustawienia Geonames";
-$a->strings["Enable Geonames Plugin"] = "";
-$a->strings["Your account on %s will expire in a few days."] = "";
-$a->strings["Your Friendica account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
-$a->strings["Upload a file"] = "Załaduj plik";
-$a->strings["Drop files here to upload"] = "Wrzuć tu pliki by je załadować";
-$a->strings["Failed"] = "Niepowodzenie";
-$a->strings["No files were uploaded."] = "Nie załadowano żadnych plików.";
-$a->strings["Uploaded file is empty"] = "Wysłany plik jest pusty";
-$a->strings["File has an invalid extension, it should be one of "] = "Pilk ma nieprawidłowe rozszerzenie, powinien być jednym z";
-$a->strings["Upload was cancelled, or server error encountered"] = "Przesyłanie zostało anulowane lub wystąpił błąd serwera.";
+$a->strings["Editplain settings updated."] = "";
+$a->strings["Editplain Settings"] = "";
+$a->strings["Disable richtext status editor"] = "";
+$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
+$a->strings["Facebook disabled"] = "Facebook wyłączony";
+$a->strings["Updating contacts"] = "Aktualizacja kontaktów";
+$a->strings["Facebook API key is missing."] = "Brakuje klucza API z facebooka.";
+$a->strings["Facebook Connect"] = "Połącz konto z kontem Facebook";
+$a->strings["Install Facebook connector for this account."] = "Zainstaluj wtyczkę Facebook ";
+$a->strings["Remove Facebook connector"] = "Usuń wtyczkę Facebook";
+$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]";
+$a->strings["Post to Facebook by default"] = "Domyślnie opublikuj na stronie Facebook";
+$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "";
+$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "";
+$a->strings["Link all your Facebook friends and conversations on this website"] = "Połącz wszystkie twoje kontakty i konwersacje na tej stronie z serwisem Facebook";
+$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "";
+$a->strings["On this website, your Facebook friend stream is only visible to you."] = "";
+$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "";
+$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "";
+$a->strings["Do not import your Facebook profile wall conversations"] = "";
+$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
+$a->strings["Comma separated applications to ignore"] = "";
+$a->strings["Problems with Facebook Real-Time Updates"] = "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a";
+$a->strings["Administrator"] = "Administrator";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Facebook Connector Settings"] = "Ustawienia połączenia z Facebook";
+$a->strings["Facebook API Key"] = "Facebook API Key";
+$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
+$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "";
+$a->strings["The given API Key seems to work correctly."] = "";
+$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "";
+$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
+$a->strings["Application secret"] = "";
+$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
+$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
+$a->strings["Real-Time Updates"] = "Aktualizacje w czasie rzeczywistym";
+$a->strings["Real-Time Updates are activated."] = "Aktualizacje w czasie rzeczywistym zostały aktywowane.";
+$a->strings["Deactivate Real-Time Updates"] = "Zdezaktywuj aktualizacje w czasie rzeczywistym";
+$a->strings["Real-Time Updates not activated."] = "Aktualizacje w czasie rzeczywistym nie zostały aktywowane.";
+$a->strings["Activate Real-Time Updates"] = "Aktywuj aktualizacje w czasie rzeczywistym";
+$a->strings["Post to Facebook"] = "Post na Facebook";
+$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci";
+$a->strings["View on Friendica"] = "Zobacz na Friendice";
+$a->strings["Facebook post failed. Queued for retry."] = "";
+$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "";
+$a->strings["Facebook connection became invalid"] = "Błędne połączenie z Facebookiem";
+$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "";
+$a->strings["Facebook Post disabled"] = "";
+$a->strings["Facebook Post"] = "Wpis z Facebooka";
+$a->strings["Install Facebook Post connector for this account."] = "";
+$a->strings["Remove Facebook Post connector"] = "";
+$a->strings["Facebook Post Settings"] = "Ustawienia wpisu z Facebooka";
+$a->strings["Forums"] = "Fora";
 $a->strings["show/hide"] = "pokaż/ukryj";
 $a->strings["No forum subscriptions"] = "";
+$a->strings["Forums:"] = "";
 $a->strings["Forumlist settings updated."] = "";
 $a->strings["Forumlist Settings"] = "";
 $a->strings["Randomise forum list"] = "";
 $a->strings["Show forums on profile page"] = "";
 $a->strings["Show forums on network page"] = "";
-$a->strings["Impressum"] = "";
-$a->strings["Site Owner"] = "Właściciel strony";
-$a->strings["Email Address"] = "Adres e-mail";
-$a->strings["Postal Address"] = "Adres pocztowy";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "";
-$a->strings["The page operators name."] = "";
-$a->strings["Site Owners Profile"] = "Profil właściciela strony";
-$a->strings["Profile address of the operator."] = "";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
-$a->strings["Notes"] = "Notatki";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
-$a->strings["Footer note"] = "Notka w stopce";
-$a->strings["Text for the footer. You can use BBCode here."] = "";
-$a->strings["Report Bug"] = "Zgłoś problem";
-$a->strings["No Timeline settings updated."] = "";
-$a->strings["No Timeline Settings"] = "Brak ustawień Osi czasu";
-$a->strings["Disable Archive selector on profile wall"] = "";
-$a->strings["\"Blockem\" Settings"] = "";
-$a->strings["Comma separated profile URLS to block"] = "";
-$a->strings["BLOCKEM Settings saved."] = "";
-$a->strings["Blocked %s - Click to open/close"] = "";
-$a->strings["Unblock Author"] = "Odblokuj autora";
-$a->strings["Block Author"] = "Zablokuj autora";
-$a->strings["blockem settings updated"] = "";
-$a->strings[":-)"] = ":-)";
-$a->strings[":-("] = ":-(";
-$a->strings["lol"] = "lol";
-$a->strings["Quick Comment Settings"] = "Ustawienia szybkiego komentowania";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
-$a->strings["Enter quick comments, one per line"] = "";
-$a->strings["Quick Comment settings saved."] = "";
-$a->strings["Tile Server URL"] = "";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
-$a->strings["Default zoom"] = "Domyślne przybliżenie";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
-$a->strings["Group Text settings updated."] = "";
-$a->strings["Group Text"] = "";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
+$a->strings["Fromapp settings updated."] = "";
+$a->strings["FromApp Settings"] = "";
+$a->strings["The application name you would like to show your posts originating from."] = "";
+$a->strings["Use this application name even if another application was used."] = "";
+$a->strings["Google+ Import Settings"] = "";
+$a->strings["Enable Google+ Import"] = "";
+$a->strings["Google Account ID"] = "";
+$a->strings["Google+ Import Settings saved."] = "";
+$a->strings["Geonames settings updated."] = "";
+$a->strings["Geonames Settings"] = "ustawienia Geonames";
+$a->strings["Enable Geonames Plugin"] = "";
+$a->strings["Gnot settings updated."] = "";
+$a->strings["Gnot Settings"] = "";
+$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
+$a->strings["Enable this plugin/addon?"] = "Umożliwić tego plugina/wtyczkę?";
+$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
 $a->strings["generic profile image"] = "generuj obraz profilowy";
 $a->strings["random geometric pattern"] = "przypadkowy wzorzec geometryczny";
 $a->strings["monster face"] = "monster face";
 $a->strings["computer generated face"] = "";
 $a->strings["retro arcade style face"] = "";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
-$a->strings["This addon is not functional on your server."] = "";
 $a->strings["Information"] = "";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
-$a->strings["Default avatar image"] = "Domyślny awatar";
-$a->strings["Select default avatar image if none was found. See README"] = "";
-$a->strings["Libravatar settings updated."] = "";
-$a->strings["Post to libertree"] = "";
-$a->strings["libertree Post Settings"] = "";
-$a->strings["Enable Libertree Post Plugin"] = "";
-$a->strings["Libertree API token"] = "";
-$a->strings["Libertree site URL"] = "";
-$a->strings["Post to Libertree by default"] = "";
-$a->strings["Altpager settings updated."] = "";
-$a->strings["Alternate Pagination Setting"] = "";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "";
-$a->strings["Force global use of the alternate pager"] = "";
-$a->strings["Each user chooses whether to use the alternate pager"] = "";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
-$a->strings["Use the MathJax renderer"] = "";
-$a->strings["MathJax Base URL"] = "";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
-$a->strings["Editplain settings updated."] = "";
-$a->strings["Editplain Settings"] = "";
-$a->strings["Disable richtext status editor"] = "";
 $a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
+$a->strings["Default avatar image"] = "Domyślny awatar";
 $a->strings["Select default avatar image if none was found at Gravatar. See README"] = "";
 $a->strings["Rating of images"] = "";
 $a->strings["Select the appropriate avatar rating for your site. See README"] = "";
 $a->strings["Gravatar settings updated."] = "Zaktualizowane ustawienie Gravatara";
-$a->strings["Your Friendica test account is about to expire."] = "";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
-$a->strings["\"pageheader\" Settings"] = "";
-$a->strings["pageheader Settings saved."] = "";
+$a->strings["Group Text"] = "";
+$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "";
 $a->strings["Post to Insanejournal"] = "Opublikuj na Insanejournal";
 $a->strings["InsaneJournal Post Settings"] = "";
 $a->strings["Enable InsaneJournal Post Plugin"] = "";
 $a->strings["InsaneJournal username"] = "";
 $a->strings["InsaneJournal password"] = "";
 $a->strings["Post to InsaneJournal by default"] = "";
+$a->strings["Impressum"] = "";
+$a->strings["Site Owner"] = "Właściciel strony";
+$a->strings["Email Address"] = "Adres e-mail";
+$a->strings["Postal Address"] = "Adres pocztowy";
+$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "";
+$a->strings["The page operators name."] = "";
+$a->strings["Site Owners Profile"] = "Profil właściciela strony";
+$a->strings["Profile address of the operator."] = "";
+$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "";
+$a->strings["Notes"] = "Notatki";
+$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "";
+$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
+$a->strings["Footer note"] = "Notka w stopce";
+$a->strings["Text for the footer. You can use BBCode here."] = "";
+$a->strings["Infinite Improbability Drive"] = "";
+$a->strings["IRC Settings"] = "Ustawienia IRC";
+$a->strings["Channel(s) to auto connect (comma separated)"] = "";
+$a->strings["Popular Channels (comma separated)"] = "";
+$a->strings["IRC settings saved."] = "Zapisano ustawienia IRC.";
+$a->strings["IRC Chatroom"] = "IRC Chatroom";
+$a->strings["Popular Channels"] = "Popularne kanały";
 $a->strings["Jappix Mini addon settings"] = "";
 $a->strings["Activate addon"] = "";
 $a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "";
@@ -1562,7 +321,145 @@ $a->strings["Approve subscription requests from Friendica contacts automatically
 $a->strings["Subscribe to Friendica contacts automatically"] = "";
 $a->strings["Purge internal list of jabber addresses of contacts"] = "";
 $a->strings["Add contact"] = "Dodaj kontakt";
-$a->strings["View Source"] = "Podgląd źródła";
+$a->strings["Upload a file"] = "Załaduj plik";
+$a->strings["Drop files here to upload"] = "Wrzuć tu pliki by je załadować";
+$a->strings["Cancel"] = "Anuluj";
+$a->strings["Failed"] = "Niepowodzenie";
+$a->strings["No files were uploaded."] = "Nie załadowano żadnych plików.";
+$a->strings["Uploaded file is empty"] = "Wysłany plik jest pusty";
+$a->strings["Image exceeds size limit of "] = "obrazek przekracza limit rozmiaru";
+$a->strings["File has an invalid extension, it should be one of "] = "Pilk ma nieprawidłowe rozszerzenie, powinien być jednym z";
+$a->strings["Upload was cancelled, or server error encountered"] = "Przesyłanie zostało anulowane lub wystąpił błąd serwera.";
+$a->strings["Post to libertree"] = "";
+$a->strings["libertree Post Settings"] = "";
+$a->strings["Enable Libertree Post Plugin"] = "";
+$a->strings["Libertree API token"] = "";
+$a->strings["Libertree site URL"] = "";
+$a->strings["Post to Libertree by default"] = "";
+$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "";
+$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "";
+$a->strings["This addon is not functional on your server."] = "";
+$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "";
+$a->strings["Select default avatar image if none was found. See README"] = "";
+$a->strings["Libravatar settings updated."] = "";
+$a->strings["Post to LiveJournal"] = "Post do LiveJournal";
+$a->strings["LiveJournal Post Settings"] = "Ustawienia postów do LiveJournal";
+$a->strings["Enable LiveJournal Post Plugin"] = "";
+$a->strings["LiveJournal username"] = "Nazwa użytkownika do LiveJournal";
+$a->strings["LiveJournal password"] = "Hasło do LiveJournal";
+$a->strings["Post to LiveJournal by default"] = "automatycznie publikuj na LiveJournal";
+$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "";
+$a->strings["Use the MathJax renderer"] = "";
+$a->strings["MathJax Base URL"] = "";
+$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "";
+$a->strings["Member since:"] = "Data dołączenia:";
+$a->strings["bitchslap"] = "";
+$a->strings["bitchslapped"] = "";
+$a->strings["shag"] = "";
+$a->strings["shagged"] = "";
+$a->strings["do something obscenely biological to"] = "";
+$a->strings["did something obscenely biological to"] = "";
+$a->strings["point out the poke feature to"] = "";
+$a->strings["pointed out the poke feature to"] = "";
+$a->strings["declare undying love for"] = "";
+$a->strings["declared undying love for"] = "";
+$a->strings["patent"] = "";
+$a->strings["patented"] = "";
+$a->strings["stroke beard"] = "";
+$a->strings["stroked their beard at"] = "";
+$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "";
+$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "";
+$a->strings["hug"] = "przytul";
+$a->strings["hugged"] = "przytulony";
+$a->strings["kiss"] = "pocałuj";
+$a->strings["kissed"] = "pocałowany";
+$a->strings["raise eyebrows at"] = "";
+$a->strings["raised their eyebrows at"] = "";
+$a->strings["insult"] = "";
+$a->strings["insulted"] = "";
+$a->strings["praise"] = "";
+$a->strings["praised"] = "";
+$a->strings["be dubious of"] = "";
+$a->strings["was dubious of"] = "";
+$a->strings["eat"] = "";
+$a->strings["ate"] = "";
+$a->strings["giggle and fawn at"] = "";
+$a->strings["giggled and fawned at"] = "";
+$a->strings["doubt"] = "";
+$a->strings["doubted"] = "";
+$a->strings["glare"] = "";
+$a->strings["glared at"] = "";
+$a->strings["No Timeline settings updated."] = "";
+$a->strings["No Timeline Settings"] = "Brak ustawień Osi czasu";
+$a->strings["Disable Archive selector on profile wall"] = "";
+$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
+$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
+$a->strings["Enable Content filter"] = "";
+$a->strings["Comma separated list of keywords to hide"] = "";
+$a->strings["Use /expression/ to provide regular expressions"] = "";
+$a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";
+$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";
+$a->strings["Numfriends settings updated."] = "";
+$a->strings["Numfriends Settings"] = "";
+$a->strings["OEmbed settings updated"] = "";
+$a->strings["Use OEmbed for YouTube videos"] = "";
+$a->strings["URL to embed:"] = "URL do osadzenia";
+$a->strings["Tile Server URL"] = "Nazwa URL Serwera";
+$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "";
+$a->strings["Default zoom"] = "Domyślne przybliżenie";
+$a->strings["The default zoom level. (1:world, 18:highest)"] = "";
+$a->strings["show more"] = "Pokaż więcej";
+$a->strings["Page settings updated."] = "Zaktualizowano ustawienia strony.";
+$a->strings["Page Settings"] = "Ustawienia strony";
+$a->strings["How many forums to display on sidebar without paging"] = "";
+$a->strings["Randomise Page/Forum list"] = "";
+$a->strings["Show pages/forums on profile page"] = "";
+$a->strings["\"pageheader\" Settings"] = "";
+$a->strings["pageheader Settings saved."] = "";
+$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
+$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
+$a->strings["Piwik Base URL"] = "Piwik podstawowy adres URL";
+$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
+$a->strings["Site ID"] = "ID strony";
+$a->strings["Show opt-out cookie link?"] = "";
+$a->strings["Asynchronous tracking"] = "";
+$a->strings["Planets Settings"] = "Ustawienia Planets";
+$a->strings["Enable Planets Plugin"] = "";
+$a->strings["Post to Posterous"] = "";
+$a->strings["Posterous Post Settings"] = "";
+$a->strings["Enable Posterous Post Plugin"] = "";
+$a->strings["Posterous login"] = "";
+$a->strings["Posterous password"] = "";
+$a->strings["Posterous site ID"] = "";
+$a->strings["Posterous API token"] = "";
+$a->strings["Post to Posterous by default"] = "";
+$a->strings["Lifetime of the cache (in hours)"] = "";
+$a->strings["Cache Statistics"] = "";
+$a->strings["Number of items"] = "Numery elementów";
+$a->strings["Size of the cache"] = "";
+$a->strings["Delete the whole cache"] = "";
+$a->strings["Your account on %s will expire in a few days."] = "";
+$a->strings["Your Friendica account is about to expire."] = "";
+$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "";
+$a->strings[":-)"] = ":-)";
+$a->strings[":-("] = ":-(";
+$a->strings["lol"] = "lol";
+$a->strings["Quick Comment Settings"] = "Ustawienia szybkiego komentowania";
+$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
+$a->strings["Enter quick comments, one per line"] = "";
+$a->strings["Quick Comment settings saved."] = "";
+$a->strings["Randplace Settings"] = "Ustawienia Randplace";
+$a->strings["Enable Randplace Plugin"] = "Włącz Randplace Plugin";
+$a->strings["\"Show more\" Settings"] = "\"Pokaż więcej\" ustawień";
+$a->strings["Enable Show More"] = "";
+$a->strings["Cutting posts after how much characters"] = "";
+$a->strings["Show More Settings saved."] = "";
+$a->strings["StatusNet AutoFollow settings updated."] = "";
+$a->strings["StatusNet AutoFollow Settings"] = "";
+$a->strings["Automatically follow any StatusNet followers/mentioners"] = "";
+$a->strings["Startpage Settings"] = "Ustawienia strony startowej";
+$a->strings["Home page to load after login  - leave blank for profile wall"] = "";
+$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "";
 $a->strings["Post to StatusNet"] = "Wyślij do sieci StatusNet";
 $a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Proszę się skontaktować z administratorem strony. <br />  API URL nie jest poprawne";
 $a->strings["We could not contact the StatusNet API with the Path you entered."] = "";
@@ -1586,542 +483,1669 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
 $a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
 $a->strings["Allow posting to StatusNet"] = "Pozwól zamieszczać posty na StatusNet";
 $a->strings["Send public postings to StatusNet by default"] = "";
+$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
+$a->strings["Clear OAuth configuration"] = "";
+$a->strings["Site name"] = "Nazwa strony";
+$a->strings["API URL"] = "Adres API";
+$a->strings["Consumer Secret"] = "Sekret konsumenta";
+$a->strings["Consumer Key"] = "Klucz konsumenta";
+$a->strings["Your Friendica test account is about to expire."] = "";
+$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "";
+$a->strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Kółko i krzyżyk";
+$a->strings["3D Tic-Tac-Toe"] = "Kółko i krzyżyk 3D";
+$a->strings["New game"] = "Nowa gra";
+$a->strings["New game with handicap"] = "Nowa gra z utrudnieniem";
+$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie.";
+$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów.";
+$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
+$a->strings["You go first..."] = "Ty pierwszy...";
+$a->strings["I'm going first this time..."] = "Zaczynam...";
+$a->strings["You won!"] = "Wygrałeś!";
+$a->strings["\"Cat\" game!"] = "Gra \"Kot\"!";
+$a->strings["I won!"] = "Wygrałem!";
+$a->strings["Post to Tumblr"] = "Opublikuj na Tumblrze";
+$a->strings["Tumblr Post Settings"] = "Ustawienia postu Tumblr";
+$a->strings["Enable Tumblr Post Plugin"] = "Zezwól na wtyczkę postu Tumblr";
+$a->strings["Tumblr login"] = "Login Tumblr";
+$a->strings["Tumblr password"] = "Hasło do twojego Tumblra";
+$a->strings["Post to Tumblr by default"] = "Post do Tumblr przez standard";
+$a->strings["Post to Twitter"] = "Post na Twitter";
+$a->strings["Twitter settings updated."] = "Zaktualizowano ustawienia Twittera.";
+$a->strings["Twitter Posting Settings"] = "Ustawienia wpisów z Twittera";
+$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony.";
+$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
+$a->strings["Log in with Twitter"] = "Zaloguj się przez Twitter";
+$a->strings["Copy the PIN from Twitter here"] = "Skopiuj tutaj PIN z Twittera";
+$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
+$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
+$a->strings["Allow posting to Twitter"] = "Zezwól na opublikowanie w serwisie Twitter";
+$a->strings["Send public postings to Twitter by default"] = "";
+$a->strings["Send linked #-tags and @-names to Twitter"] = "";
+$a->strings["Consumer key"] = "Klucz konsumenta";
+$a->strings["Consumer secret"] = "Sekret konsumenta";
+$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "";
+$a->strings["Template URL (with {category})"] = "";
+$a->strings["OAuth end-point"] = "";
+$a->strings["Api"] = "Api";
+$a->strings["View Source"] = "Podgląd źródła";
+$a->strings["Get added to this list!"] = "Zostań dodany do listy!";
+$a->strings["Connect on Friendica!"] = "Połączono z Friendica!";
+$a->strings["%d person likes this"] = array(
+       0 => " %d osoba lubi to",
+       1 => " %d osób lubi to",
+       2 => " %d osób lubi to",
+);
+$a->strings["%d person doesn't like this"] = array(
+       0 => " %d osoba nie lubi tego",
+       1 => " %d osób tego nie lubi",
+       2 => " %d osób tego nie lubi",
+);
+$a->strings["Generate new key"] = "Stwórz nowy klucz";
+$a->strings["Widgets key"] = "";
+$a->strings["Widgets available"] = "Widgety są dostępne";
+$a->strings["Plugin Settings"] = "Ustawienia wtyczki";
+$a->strings["Post to Wordpress"] = "Opublikuj na Wordpress";
+$a->strings["WordPress Post Settings"] = "Ustawienia wpisów WorldPress";
+$a->strings["Enable WordPress Post Plugin"] = "Włącz plugin wpisów WorldPress";
+$a->strings["WordPress username"] = "nazwa użytkownika WordPress";
+$a->strings["WordPress password"] = "hasło WordPress";
+$a->strings["WordPress API URL"] = "WordPress API URL";
+$a->strings["Post to WordPress by default"] = "Domyślnie opublikuj na Wordpress";
+$a->strings["Provide a backlink to the Friendica post"] = "";
+$a->strings["Read the original post and comment stream on Friendica"] = "";
+$a->strings["YourLS Settings"] = "";
+$a->strings["URL: http://"] = "URL: http://";
+$a->strings["Username:"] = "Nazwa użytkownika:";
+$a->strings["Password:"] = "Hasło:";
+$a->strings["Use SSL "] = "Użyj SSL";
+$a->strings["yourls Settings saved."] = "";
+$a->strings["Global"] = "Ogólne";
+$a->strings["Force global use of the alternate pager"] = "";
+$a->strings["Individual"] = "Indywidualne";
+$a->strings["Each user chooses whether to use the alternate pager"] = "";
+$a->strings["Suppress \"View on friendica\""] = "";
+$a->strings["Mirror wall posts from facebook to friendica."] = "";
+$a->strings["Post to page/group:"] = "Napisz na stronę/grupę:";
+$a->strings["%s:"] = "";
+$a->strings["Forum Directory"] = "Katalog Forum";
+$a->strings["Public access denied."] = "Publiczny dostęp zabroniony";
+$a->strings["Global Directory"] = "Globalne Położenie";
+$a->strings["Find on this site"] = "Znajdź na tej stronie";
+$a->strings["Finding: "] = "Znalezione:";
+$a->strings["Site Directory"] = "Katalog Strony";
+$a->strings["Find"] = "Znajdź";
+$a->strings["Age: "] = "Wiek: ";
+$a->strings["Gender: "] = "Płeć: ";
+$a->strings["Location:"] = "Lokalizacja";
+$a->strings["Gender:"] = "Płeć:";
+$a->strings["Status:"] = "Status";
+$a->strings["Homepage:"] = "Strona główna:";
+$a->strings["About:"] = "O:";
+$a->strings["No entries (some entries may be hidden)."] = "Brak odwiedzin (niektóre odwiedziny mogą być ukryte).";
+$a->strings["Group Text settings updated."] = "";
+$a->strings["Remote Permissions Settings"] = "";
+$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "";
+$a->strings["Remote Permissions settings updated."] = "";
+$a->strings["Visible to:"] = "Widoczne dla:";
+$a->strings["Visible to"] = "Widoczne dla";
+$a->strings["may only be a partial list"] = "";
+$a->strings["The posts of every user on this server show the post recipients"] = "";
+$a->strings["Each user chooses whether his/her posts show the post recipients"] = "";
 $a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "";
 $a->strings["Shortening method that optimizes the post"] = "";
-$a->strings["Send linked #-tags and @-names to StatusNet"] = "";
-$a->strings["Clear OAuth configuration"] = "";
-$a->strings["API URL"] = "Adres API";
-$a->strings["Infinite Improbability Drive"] = "";
 $a->strings["You are now authenticated to tumblr."] = "";
 $a->strings["return to the connector page"] = "";
-$a->strings["Post to Tumblr"] = "Opublikuj na Tumblrze";
-$a->strings["Tumblr Post Settings"] = "Ustawienia postu Tumblr";
 $a->strings["(Re-)Authenticate your tumblr page"] = "";
-$a->strings["Enable Tumblr Post Plugin"] = "Zezwól na wtyczkę postu Tumblr";
-$a->strings["Post to Tumblr by default"] = "Post do Tumblr przez standard";
 $a->strings["Post to page:"] = "Napisz na stronę:";
 $a->strings["You are not authenticated to tumblr"] = "";
-$a->strings["Numfriends settings updated."] = "";
-$a->strings["Numfriends Settings"] = "";
-$a->strings["How many contacts to display on profile sidebar"] = "";
-$a->strings["Gnot settings updated."] = "";
-$a->strings["Gnot Settings"] = "";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
-$a->strings["Enable this plugin/addon?"] = "Umożliwić tego plugina/wtyczkę?";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
-$a->strings["Post to Wordpress"] = "Opublikuj na Wordpress";
-$a->strings["WordPress Post Settings"] = "Ustawienia wpisów WorldPress";
-$a->strings["Enable WordPress Post Plugin"] = "Włącz plugin wpisów WorldPress";
-$a->strings["WordPress username"] = "nazwa użytkownika WordPress";
-$a->strings["WordPress password"] = "hasło WordPress";
-$a->strings["WordPress API URL"] = "WordPress API URL";
-$a->strings["Post to WordPress by default"] = "";
-$a->strings["Provide a backlink to the Friendica post"] = "";
-$a->strings["Post from Friendica"] = "Post z Friendica";
-$a->strings["Read the original post and comment stream on Friendica"] = "";
-$a->strings["\"Show more\" Settings"] = "\"Pokaż więcej\" ustawień";
-$a->strings["Enable Show More"] = "";
-$a->strings["Cutting posts after how much characters"] = "";
-$a->strings["Show More Settings saved."] = "";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "";
-$a->strings["Piwik Base URL"] = "";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "";
-$a->strings["Site ID"] = "ID strony";
-$a->strings["Show opt-out cookie link?"] = "";
-$a->strings["Asynchronous tracking"] = "";
-$a->strings["Post to Twitter"] = "Post na Twitter";
-$a->strings["Twitter settings updated."] = "Zaktualizowano ustawienia Twittera.";
-$a->strings["Twitter Posting Settings"] = "Ustawienia wpisów z Twittera";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony.";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
-$a->strings["Log in with Twitter"] = "Zaloguj się przez Twitter";
-$a->strings["Copy the PIN from Twitter here"] = "Skopiuj tutaj PIN z Twittera";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "";
-$a->strings["Allow posting to Twitter"] = "Zezwól na opublikowanie w serwisie Twitter";
-$a->strings["Send public postings to Twitter by default"] = "";
 $a->strings["Mirror all posts from twitter that are no replies or retweets"] = "";
 $a->strings["Shortening method that optimizes the tweet"] = "";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "";
-$a->strings["Consumer key"] = "Klucz konsumenta";
-$a->strings["Consumer secret"] = "Sekret konsumenta";
 $a->strings["Name of the Twitter Application"] = "";
 $a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "";
-$a->strings["IRC Settings"] = "Ustawienia IRC";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "";
-$a->strings["Popular Channels (comma separated)"] = "";
-$a->strings["IRC settings saved."] = "Zapisano ustawienia IRC.";
-$a->strings["IRC Chatroom"] = "IRC Chatroom";
-$a->strings["Popular Channels"] = "Popularne kanały";
-$a->strings["Fromapp settings updated."] = "";
-$a->strings["FromApp Settings"] = "";
-$a->strings["The application name you would like to show your posts originating from."] = "";
-$a->strings["Use this application name even if another application was used."] = "";
-$a->strings["Post to blogger"] = "Post na blogger";
-$a->strings["Blogger Post Settings"] = "Ustawienia postów na Blogger";
-$a->strings["Enable Blogger Post Plugin"] = "";
-$a->strings["Blogger username"] = "Nazwa użytkownika na Blogger";
-$a->strings["Blogger password"] = "Hasło do Blogger";
-$a->strings["Blogger API URL"] = "";
-$a->strings["Post to Blogger by default"] = "";
-$a->strings["Post to Posterous"] = "";
-$a->strings["Posterous Post Settings"] = "";
-$a->strings["Enable Posterous Post Plugin"] = "";
-$a->strings["Posterous login"] = "";
-$a->strings["Posterous password"] = "";
-$a->strings["Posterous site ID"] = "";
-$a->strings["Posterous API token"] = "";
-$a->strings["Post to Posterous by default"] = "";
-$a->strings["Theme settings"] = "Ustawienia motywu";
-$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
-$a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy";
-$a->strings["Set theme width"] = "";
-$a->strings["Color scheme"] = "";
+$a->strings["Profile"] = "Profil";
+$a->strings["Full Name:"] = "Imię i nazwisko:";
+$a->strings["j F, Y"] = "d M, R";
+$a->strings["j F"] = "d M";
+$a->strings["Birthday:"] = "Urodziny:";
+$a->strings["Age:"] = "Wiek:";
+$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s";
+$a->strings["Sexual Preference:"] = "Interesują mnie:";
+$a->strings["Hometown:"] = "Miasto rodzinne:";
+$a->strings["Tags:"] = "Tagi:";
+$a->strings["Political Views:"] = "Poglądy polityczne:";
+$a->strings["Religion:"] = "Religia:";
+$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:";
+$a->strings["Likes:"] = "Lubi:";
+$a->strings["Dislikes:"] = "";
+$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne";
+$a->strings["Musical interests:"] = "Zainteresowania muzyczne:";
+$a->strings["Books, literature:"] = "Książki, literatura:";
+$a->strings["Television:"] = "Telewizja:";
+$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka";
+$a->strings["Love/Romance:"] = "Miłość/Romans:";
+$a->strings["Work/employment:"] = "Praca/zatrudnienie:";
+$a->strings["School/education:"] = "Szkoła/edukacja:";
+$a->strings["Male"] = "Mężczyzna";
+$a->strings["Female"] = "Kobieta";
+$a->strings["Currently Male"] = "Aktualnie Mężczyzna";
+$a->strings["Currently Female"] = "Aktualnie Kobieta";
+$a->strings["Mostly Male"] = "Bardziej Mężczyzna";
+$a->strings["Mostly Female"] = "Bardziej Kobieta";
+$a->strings["Transgender"] = "Transpłciowy";
+$a->strings["Intersex"] = "Międzypłciowy";
+$a->strings["Transsexual"] = "Transseksualista";
+$a->strings["Hermaphrodite"] = "Hermafrodyta";
+$a->strings["Neuter"] = "Bezpłciowy";
+$a->strings["Non-specific"] = "Niespecyficzne";
+$a->strings["Other"] = "Inne";
+$a->strings["Undecided"] = "Niezdecydowany";
+$a->strings["Males"] = "Mężczyźni";
+$a->strings["Females"] = "Kobiety";
+$a->strings["Gay"] = "Gej";
+$a->strings["Lesbian"] = "Lesbijka";
+$a->strings["No Preference"] = "Brak preferencji";
+$a->strings["Bisexual"] = "Biseksualny";
+$a->strings["Autosexual"] = "Niezidentyfikowany";
+$a->strings["Abstinent"] = "Abstynent";
+$a->strings["Virgin"] = "Dziewica";
+$a->strings["Deviant"] = "Zboczeniec";
+$a->strings["Fetish"] = "Fetysz";
+$a->strings["Oodles"] = "Nadmiar";
+$a->strings["Nonsexual"] = "Nieseksualny";
+$a->strings["Single"] = "Singiel";
+$a->strings["Lonely"] = "Samotny";
+$a->strings["Available"] = "Dostępny";
+$a->strings["Unavailable"] = "Niedostępny";
+$a->strings["Has crush"] = "";
+$a->strings["Infatuated"] = "zakochany";
+$a->strings["Dating"] = "Randki";
+$a->strings["Unfaithful"] = "Niewierny";
+$a->strings["Sex Addict"] = "Uzależniony od seksu";
+$a->strings["Friends"] = "Przyjaciele";
+$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści";
+$a->strings["Casual"] = "Przypadkowy";
+$a->strings["Engaged"] = "Zaręczeni";
+$a->strings["Married"] = "Małżeństwo";
+$a->strings["Imaginarily married"] = "";
+$a->strings["Partners"] = "Partnerzy";
+$a->strings["Cohabiting"] = "Konkubinat";
+$a->strings["Common law"] = "";
+$a->strings["Happy"] = "Szczęśliwy";
+$a->strings["Not looking"] = "";
+$a->strings["Swinger"] = "Swinger";
+$a->strings["Betrayed"] = "Zdradzony";
+$a->strings["Separated"] = "W separacji";
+$a->strings["Unstable"] = "Niestabilny";
+$a->strings["Divorced"] = "Rozwiedzeni";
+$a->strings["Imaginarily divorced"] = "";
+$a->strings["Widowed"] = "Wdowiec";
+$a->strings["Uncertain"] = "Nieokreślony";
+$a->strings["It's complicated"] = "To skomplikowane";
+$a->strings["Don't care"] = "Nie obchodzi mnie to";
+$a->strings["Ask me"] = "Zapytaj mnie ";
+$a->strings["stopped following"] = "przestań obserwować";
+$a->strings["Poke"] = "Zaczepka";
+$a->strings["View Status"] = "Zobacz status";
+$a->strings["View Profile"] = "Zobacz profil";
+$a->strings["View Photos"] = "Zobacz zdjęcia";
+$a->strings["Network Posts"] = "";
+$a->strings["Edit Contact"] = "Edytuj kontakt";
+$a->strings["Send PM"] = "Wyślij prywatną wiadomość";
+$a->strings["prev"] = "poprzedni";
+$a->strings["first"] = "pierwszy";
+$a->strings["last"] = "ostatni";
+$a->strings["next"] = "następny";
+$a->strings["newer"] = "nowsze";
+$a->strings["older"] = "starsze";
+$a->strings["No contacts"] = "Brak kontaktów";
+$a->strings["%d Contact"] = array(
+       0 => "%d kontakt",
+       1 => "%d kontaktów",
+       2 => "%d kontakty",
+);
+$a->strings["View Contacts"] = "widok kontaktów";
+$a->strings["Search"] = "Szukaj";
+$a->strings["poke"] = "zaczep";
+$a->strings["poked"] = "zaczepiony";
+$a->strings["ping"] = "";
+$a->strings["pinged"] = "";
+$a->strings["prod"] = "";
+$a->strings["prodded"] = "";
+$a->strings["slap"] = "spoliczkuj";
+$a->strings["slapped"] = "spoliczkowany";
+$a->strings["finger"] = "dotknąć";
+$a->strings["fingered"] = "dotknięty";
+$a->strings["rebuff"] = "odprawiać";
+$a->strings["rebuffed"] = "odprawiony";
+$a->strings["happy"] = "szczęśliwy";
+$a->strings["sad"] = "smutny";
+$a->strings["mellow"] = "spokojny";
+$a->strings["tired"] = "zmęczony";
+$a->strings["perky"] = "pewny siebie";
+$a->strings["angry"] = "wściekły";
+$a->strings["stupified"] = "odurzony";
+$a->strings["puzzled"] = "zdziwiony";
+$a->strings["interested"] = "interesujący";
+$a->strings["bitter"] = "zajadły";
+$a->strings["cheerful"] = "wesoły";
+$a->strings["alive"] = "żywy";
+$a->strings["annoyed"] = "irytujący";
+$a->strings["anxious"] = "zazdrosny";
+$a->strings["cranky"] = "zepsuty";
+$a->strings["disturbed"] = "przeszkadzający";
+$a->strings["frustrated"] = "rozbity";
+$a->strings["motivated"] = "zmotywowany";
+$a->strings["relaxed"] = "zrelaksowany";
+$a->strings["surprised"] = "zaskoczony";
+$a->strings["January"] = "Styczeń";
+$a->strings["February"] = "Luty";
+$a->strings["March"] = "Marzec";
+$a->strings["April"] = "Kwiecień";
+$a->strings["May"] = "Maj";
+$a->strings["June"] = "Czerwiec";
+$a->strings["July"] = "Lipiec";
+$a->strings["August"] = "Sierpień";
+$a->strings["September"] = "Wrzesień";
+$a->strings["October"] = "Październik";
+$a->strings["November"] = "Listopad";
+$a->strings["December"] = "Grudzień";
+$a->strings["bytes"] = "bajty";
+$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć";
+$a->strings["link to source"] = "link do źródła";
+$a->strings["default"] = "standardowe";
+$a->strings["Select an alternate language"] = "Wybierz alternatywny język";
+$a->strings["activity"] = "aktywność";
+$a->strings["comment"] = array(
+       0 => "",
+       1 => "",
+       2 => "komentarz",
+);
+$a->strings["post"] = "post";
+$a->strings["Item filed"] = "";
+$a->strings["Visible to everybody"] = "Widoczny dla wszystkich";
+$a->strings["show"] = "pokaż";
+$a->strings["don't show"] = "nie pokazuj";
+$a->strings["Logged out."] = "Wyloguj";
+$a->strings["Login failed."] = "Niepowodzenie logowania";
+$a->strings["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:"] = "Komunikat o błędzie:";
+$a->strings["Error decoding account file"] = "";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
+$a->strings["Error! Cannot check nickname"] = "";
+$a->strings["User '%s' already exists on this server!"] = "";
+$a->strings["User creation error"] = "";
+$a->strings["User profile creation error"] = "";
+$a->strings["%d contact not imported"] = array(
+       0 => "",
+       1 => "",
+       2 => "",
+);
+$a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła.";
+$a->strings["l F d, Y \\@ g:i A"] = "";
+$a->strings["Starts:"] = "Start:";
+$a->strings["Finishes:"] = "Wykończenia:";
+$a->strings["Disallowed profile URL."] = "Nie dozwolony adres URL profilu.";
+$a->strings["Connect URL missing."] = "Brak adresu URL połączenia.";
+$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami";
+$a->strings["No compatible communication protocols or feeds were discovered."] = "";
+$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji.";
+$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione.";
+$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu";
+$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."] = "";
+$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie.";
+$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.";
+$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych";
+$a->strings["following"] = "następujący";
+$a->strings["An invitation is required."] = "Wymagane zaproszenie.";
+$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane.";
+$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID";
+$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje";
+$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy.";
+$a->strings["Name too short."] = "Nazwa jest za krótka.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie.";
+$a->strings["Not a valid email address."] = "Niepoprawny adres e mail..";
+$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. ";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Twój login może składać się tylko z \"a-z\",  \"0-9\", \"-\", \"_\", i musi mieć na początku literę.";
+$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny.";
+$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie.";
+$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń.";
+$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie.";
+$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie.";
+$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori";
+$a->strings["Block immediately"] = "Zablokować natychmiast ";
+$a->strings["Shady, spammer, self-marketer"] = "";
+$a->strings["Known to me, but no opinion"] = "Znam, ale nie mam zdania";
+$a->strings["OK, probably harmless"] = "Ok, bez problemów";
+$a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie";
+$a->strings["Frequently"] = "Jak najczęściej";
+$a->strings["Hourly"] = "Godzinowo";
+$a->strings["Twice daily"] = "Dwa razy dziennie";
+$a->strings["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "E-mail";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Zot!"] = "";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "";
+$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
+$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
+$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
+$a->strings["Connect"] = "Połącz";
+$a->strings["%d invitation available"] = array(
+       0 => "%d zaproszenie dostępne",
+       1 => "%d zaproszeń dostępnych",
+       2 => "%d zaproszenia dostępne",
+);
+$a->strings["Find People"] = "Znajdź ludzi";
+$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie";
+$a->strings["Connect/Follow"] = "Połącz/Obserwuj";
+$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo:  Jan Kowalski, Wędkarstwo";
+$a->strings["Friend Suggestions"] = "Osoby, które możesz znać";
+$a->strings["Similar Interests"] = "Podobne zainteresowania";
+$a->strings["Random Profile"] = "Domyślny profil";
+$a->strings["Invite Friends"] = "Zaproś znajomych";
+$a->strings["Networks"] = "Sieci";
+$a->strings["All Networks"] = "Wszystkie Sieci";
+$a->strings["Saved Folders"] = "Zapisane foldery";
+$a->strings["Everything"] = "Wszystko";
+$a->strings["Categories"] = "Kategorie";
+$a->strings["%d contact in common"] = array(
+       0 => "",
+       1 => "",
+       2 => "",
+);
+$a->strings[" on Last.fm"] = "na Last.fm";
+$a->strings["Image/photo"] = "Obrazek/zdjęcie";
+$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
+$a->strings["$1 wrote:"] = "$1 napisał:";
+$a->strings["Encrypted content"] = "";
+$a->strings["Miscellaneous"] = "Różny";
+$a->strings["year"] = "rok";
+$a->strings["month"] = "miesiąc";
+$a->strings["day"] = "dzień";
+$a->strings["never"] = "nigdy";
+$a->strings["less than a second ago"] = "mniej niż sekundę temu";
+$a->strings["week"] = "tydzień";
+$a->strings["hour"] = "godzina";
+$a->strings["hours"] = "godziny";
+$a->strings["minute"] = "minuta";
+$a->strings["minutes"] = "minuty";
+$a->strings["second"] = "sekunda";
+$a->strings["seconds"] = "sekundy";
+$a->strings["%1\$d %2\$s ago"] = "";
+$a->strings["%s's birthday"] = "";
+$a->strings["Happy Birthday %s"] = "";
+$a->strings["[Name Withheld]"] = "[Nazwa wstrzymana]";
+$a->strings["A new person is sharing with you at "] = "";
+$a->strings["You have a new follower at "] = "";
+$a->strings["Item not found."] = "Element nie znaleziony.";
+$a->strings["Do you really want to delete this item?"] = "";
+$a->strings["Yes"] = "Tak";
+$a->strings["Archives"] = "Archiwum";
+$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować.";
+$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["(no subject)"] = "(bez tematu)";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s";
+$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
+$a->strings["Attachments:"] = "Załączniki:";
+$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
+$a->strings["Thank You,"] = "Dziękuję,";
+$a->strings["%s Administrator"] = "%s administrator";
+$a->strings["%s <!item_type!>"] = "";
+$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s";
+$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
+$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
+$a->strings["a private message"] = "prywatna wiadomość";
+$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
+$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
+$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
+$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
+$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
+$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
+$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu";
+$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
+$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
+$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię";
+$a->strings["%1\$s tagged you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
+$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
+$a->strings["%1\$s poked you at %2\$s"] = "";
+$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
+$a->strings["[Friendica:Notify] %s tagged your post"] = "";
+$a->strings["%1\$s tagged your post at %2\$s"] = "";
+$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
+$a->strings["[Friendica:Notify] Introduction received"] = "";
+$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
+$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s";
+$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie.";
+$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
+$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
+$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
+$a->strings["Name:"] = "Imię:";
+$a->strings["Photo:"] = "Zdjęcie:";
+$a->strings["Please visit %s to approve or reject the suggestion."] = "";
+$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["Network Sidebar Widgets"] = "";
+$a->strings["Search by Date"] = "Szukanie wg daty";
+$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["Saved Searches"] = "Zapisane wyszukiwania";
+$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)"] = "";
+$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["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%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->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów";
+$a->strings["Everybody"] = "Wszyscy";
+$a->strings["edit"] = "edytuj";
+$a->strings["Groups"] = "Grupy";
+$a->strings["Edit group"] = "Edytuj grupy";
+$a->strings["Create a new group"] = "Stwórz nową grupę";
+$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie";
+$a->strings["add"] = "dodaj";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s nie lubi %2\$s's %3\$s";
+$a->strings["%1\$s poked %2\$s"] = "";
+$a->strings["%1\$s is currently %2\$s"] = "";
+$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s zaznaczył %2\$s'go %3\$s przy użyciu %4\$s";
+$a->strings["post/item"] = "";
+$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
+$a->strings["Select"] = "Wybierz";
+$a->strings["Delete"] = "Usuń";
+$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s";
+$a->strings["Categories:"] = "Kategorie:";
+$a->strings["Filed under:"] = "";
+$a->strings["%s from %s"] = "%s od %s";
+$a->strings["View in context"] = "Zobacz w kontekście";
+$a->strings["Please wait"] = "Proszę czekać";
+$a->strings["remove"] = "usuń";
+$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy";
+$a->strings["Follow Thread"] = "";
+$a->strings["%s likes this."] = "%s lubi to.";
+$a->strings["%s doesn't like this."] = "%s nie lubi tego.";
+$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "";
+$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "";
+$a->strings["and"] = "i";
+$a->strings[", and %d other people"] = ", i %d innych ludzi";
+$a->strings["%s like this."] = "%s lubi to.";
+$a->strings["%s don't like this."] = "%s nie lubi tego.";
+$a->strings["Visible to <strong>everybody</strong>"] = "Widoczne dla <strong>wszystkich</strong>";
+$a->strings["Please enter a link URL:"] = "Proszę wpisać adres URL:";
+$a->strings["Please enter a video link/URL:"] = "Podaj link do filmu";
+$a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki";
+$a->strings["Tag term:"] = "";
+$a->strings["Save to Folder:"] = "Zapisz w folderze:";
+$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?";
+$a->strings["Delete item(s)?"] = "";
+$a->strings["Post to Email"] = "Wyślij poprzez email";
+$a->strings["Share"] = "Podziel się";
+$a->strings["Upload photo"] = "Wyślij zdjęcie";
+$a->strings["upload photo"] = "dodaj zdjęcie";
+$a->strings["Attach file"] = "Przyłącz plik";
+$a->strings["attach file"] = "załącz plik";
+$a->strings["Insert web link"] = "Wstaw link";
+$a->strings["web link"] = "Adres www";
+$a->strings["Insert video link"] = "Wstaw link wideo";
+$a->strings["video link"] = "link do filmu";
+$a->strings["Insert audio link"] = "Wstaw link audio";
+$a->strings["audio link"] = "Link audio";
+$a->strings["Set your location"] = "Ustaw swoje położenie";
+$a->strings["set location"] = "wybierz lokalizację";
+$a->strings["Clear browser location"] = "Wyczyść położenie przeglądarki";
+$a->strings["clear location"] = "wyczyść lokalizację";
+$a->strings["Set title"] = "Ustaw tytuł";
+$a->strings["Categories (comma-separated list)"] = "";
+$a->strings["Permission settings"] = "Ustawienia uprawnień";
+$a->strings["permissions"] = "zezwolenia";
+$a->strings["CC: email addresses"] = "CC: adresy e-mail";
+$a->strings["Public post"] = "Publiczny post";
+$a->strings["Example: bob@example.com, mary@example.com"] = "Przykład: bob@example.com, mary@example.com";
+$a->strings["Preview"] = "Podgląd";
+$a->strings["Post to Groups"] = "";
+$a->strings["Post to Contacts"] = "";
+$a->strings["Private post"] = "";
+$a->strings["[no subject]"] = "[bez tematu]";
+$a->strings["Wall Photos"] = "Tablica zdjęć";
+$a->strings["Nothing new here"] = "Brak nowych zdarzeń";
+$a->strings["Clear notifications"] = "";
+$a->strings["Logout"] = "Wyloguj się";
+$a->strings["End this session"] = "Zakończ sesję";
+$a->strings["Status"] = "Status";
 $a->strings["Your posts and conversations"] = "Twoje posty i rozmowy";
 $a->strings["Your profile page"] = "Twoja strona profilowa";
-$a->strings["Your contacts"] = "Twoje kontakty";
+$a->strings["Photos"] = "Zdjęcia";
 $a->strings["Your photos"] = "Twoje zdjęcia";
+$a->strings["Events"] = "Wydarzenia";
 $a->strings["Your events"] = "Twoje wydarzenia";
 $a->strings["Personal notes"] = "Osobiste notatki";
 $a->strings["Your personal photos"] = "Twoje osobiste zdjęcia";
-$a->strings["Community Pages"] = "Strony społecznościowe";
-$a->strings["Community Profiles"] = "";
-$a->strings["Last users"] = "Ostatni użytkownicy";
-$a->strings["Last likes"] = "Ostatnie polubienia";
-$a->strings["Last photos"] = "Ostatnie zdjęcia";
-$a->strings["Find Friends"] = "Znajdź znajomych";
-$a->strings["Local Directory"] = "";
-$a->strings["Similar Interests"] = "Podobne zainteresowania";
-$a->strings["Invite Friends"] = "Zaproś znajomych";
-$a->strings["Earth Layers"] = "";
-$a->strings["Set zoomfactor for Earth Layers"] = "";
-$a->strings["Set longitude (X) for Earth Layers"] = "";
-$a->strings["Set latitude (Y) for Earth Layers"] = "";
-$a->strings["Help or @NewHere ?"] = "";
-$a->strings["Connect Services"] = "";
-$a->strings["Last Tweets"] = "Ostatnie Tweetnięcie";
-$a->strings["Set twitter search term"] = "";
-$a->strings["don't show"] = "nie pokazuj";
-$a->strings["show"] = "pokaż";
-$a->strings["Show/hide boxes at right-hand column:"] = "";
-$a->strings["Set line-height for posts and comments"] = "";
-$a->strings["Set resolution for middle column"] = "";
-$a->strings["Set color scheme"] = "Zestaw kolorów";
-$a->strings["Set zoomfactor for Earth Layer"] = "";
-$a->strings["Last tweets"] = "Ostatnie tweetnięcie";
-$a->strings["Alignment"] = "";
-$a->strings["Left"] = "Lewo";
-$a->strings["Center"] = "Środek";
-$a->strings["Posts font size"] = "";
-$a->strings["Textareas font size"] = "";
-$a->strings["Set colour scheme"] = "Zestaw kolorów";
-$a->strings["j F, Y"] = "d M, R";
-$a->strings["j F"] = "d M";
-$a->strings["Birthday:"] = "Urodziny:";
-$a->strings["Age:"] = "Wiek:";
-$a->strings["for %1\$d %2\$s"] = "od %1\$d %2\$s";
-$a->strings["Tags:"] = "Tagi:";
-$a->strings["Religion:"] = "Religia:";
-$a->strings["Hobbies/Interests:"] = "Hobby/Zainteresowania:";
-$a->strings["Contact information and Social Networks:"] = "Informacje kontaktowe i sieci społeczne";
-$a->strings["Musical interests:"] = "Zainteresowania muzyczne:";
-$a->strings["Books, literature:"] = "Książki, literatura:";
-$a->strings["Television:"] = "Telewizja:";
-$a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka";
-$a->strings["Love/Romance:"] = "Miłość/Romans:";
-$a->strings["Work/employment:"] = "Praca/zatrudnienie:";
-$a->strings["School/education:"] = "Szkoła/edukacja:";
-$a->strings["Unknown | Not categorised"] = "Nieznany | Bez kategori";
-$a->strings["Block immediately"] = "Zablokować natychmiast ";
-$a->strings["Shady, spammer, self-marketer"] = "";
-$a->strings["Known to me, but no opinion"] = "Znam, ale nie mam zdania";
-$a->strings["OK, probably harmless"] = "Ok, bez problemów";
-$a->strings["Reputable, has my trust"] = "Zaufane, ma moje poparcie";
-$a->strings["Frequently"] = "Jak najczęściej";
-$a->strings["Hourly"] = "Godzinowo";
-$a->strings["Twice daily"] = "Dwa razy dziennie";
-$a->strings["OStatus"] = "OStatus";
-$a->strings["RSS/Atom"] = "RSS/Atom";
-$a->strings["Zot!"] = "";
-$a->strings["LinkedIn"] = "LinkedIn";
-$a->strings["XMPP/IM"] = "XMPP/IM";
-$a->strings["MySpace"] = "MySpace";
-$a->strings["Google+"] = "";
-$a->strings["Male"] = "Mężczyzna";
-$a->strings["Female"] = "Kobieta";
-$a->strings["Currently Male"] = "Aktualnie Mężczyzna";
-$a->strings["Currently Female"] = "Aktualnie Kobieta";
-$a->strings["Mostly Male"] = "Bardziej Mężczyzna";
-$a->strings["Mostly Female"] = "Bardziej Kobieta";
-$a->strings["Transgender"] = "Transpłciowy";
-$a->strings["Intersex"] = "Międzypłciowy";
-$a->strings["Transsexual"] = "Transseksualista";
-$a->strings["Hermaphrodite"] = "Hermafrodyta";
-$a->strings["Neuter"] = "Bezpłciowy";
-$a->strings["Non-specific"] = "Niespecyficzne";
-$a->strings["Other"] = "Inne";
-$a->strings["Undecided"] = "Niezdecydowany";
-$a->strings["Males"] = "Mężczyźni";
-$a->strings["Females"] = "Kobiety";
-$a->strings["Gay"] = "Gej";
-$a->strings["Lesbian"] = "Lesbijka";
-$a->strings["No Preference"] = "Brak preferencji";
-$a->strings["Bisexual"] = "Biseksualny";
-$a->strings["Autosexual"] = "Niezidentyfikowany";
-$a->strings["Abstinent"] = "Abstynent";
-$a->strings["Virgin"] = "Dziewica";
-$a->strings["Deviant"] = "Zboczeniec";
-$a->strings["Fetish"] = "Fetysz";
-$a->strings["Oodles"] = "Nadmiar";
-$a->strings["Nonsexual"] = "Nieseksualny";
-$a->strings["Single"] = "Singiel";
-$a->strings["Lonely"] = "Samotny";
-$a->strings["Available"] = "Dostępny";
-$a->strings["Unavailable"] = "Niedostępny";
-$a->strings["Has crush"] = "";
-$a->strings["Infatuated"] = "zakochany";
-$a->strings["Dating"] = "Randki";
-$a->strings["Unfaithful"] = "Niewierny";
-$a->strings["Sex Addict"] = "Uzależniony od seksu";
-$a->strings["Friends"] = "Przyjaciele";
-$a->strings["Friends/Benefits"] = "Przyjaciele/Korzyści";
-$a->strings["Casual"] = "Przypadkowy";
-$a->strings["Engaged"] = "Zaręczeni";
-$a->strings["Married"] = "Małżeństwo";
-$a->strings["Imaginarily married"] = "";
-$a->strings["Partners"] = "Partnerzy";
-$a->strings["Cohabiting"] = "Konkubinat";
-$a->strings["Common law"] = "";
-$a->strings["Happy"] = "Szczęśliwy";
-$a->strings["Not looking"] = "";
-$a->strings["Swinger"] = "Swinger";
-$a->strings["Betrayed"] = "Zdradzony";
-$a->strings["Separated"] = "W separacji";
-$a->strings["Unstable"] = "Niestabilny";
-$a->strings["Divorced"] = "Rozwiedzeni";
-$a->strings["Imaginarily divorced"] = "";
-$a->strings["Widowed"] = "Wdowiec";
-$a->strings["Uncertain"] = "Nieokreślony";
-$a->strings["It's complicated"] = "To skomplikowane";
-$a->strings["Don't care"] = "Nie obchodzi mnie to";
-$a->strings["Ask me"] = "Zapytaj mnie ";
-$a->strings["Starts:"] = "Start:";
-$a->strings["Finishes:"] = "Wykończenia:";
-$a->strings["(no subject)"] = "(bez tematu)";
-$a->strings[" on Last.fm"] = "na Last.fm";
-$a->strings["prev"] = "poprzedni";
-$a->strings["first"] = "pierwszy";
-$a->strings["last"] = "ostatni";
-$a->strings["next"] = "następny";
-$a->strings["newer"] = "nowsze";
-$a->strings["older"] = "starsze";
-$a->strings["No contacts"] = "Brak kontaktów";
-$a->strings["%d Contact"] = array(
-       0 => "%d kontakt",
-       1 => "%d kontaktów",
-       2 => "%d kontakty",
+$a->strings["Sign in"] = "Zaloguj się";
+$a->strings["Home"] = "Dom";
+$a->strings["Home Page"] = "Strona startowa";
+$a->strings["Register"] = "Zarejestruj";
+$a->strings["Create an account"] = "Załóż konto";
+$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
+$a->strings["Apps"] = "Aplikacje";
+$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry";
+$a->strings["Search site content"] = "Przeszukaj zawartość strony";
+$a->strings["Community"] = "Społeczność";
+$a->strings["Conversations on this site"] = "Rozmowy na tej stronie";
+$a->strings["Directory"] = "Katalog";
+$a->strings["People directory"] = "";
+$a->strings["Network"] = "Sieć";
+$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół";
+$a->strings["Network Reset"] = "";
+$a->strings["Load Network page with no filters"] = "";
+$a->strings["Introductions"] = "Wstępy";
+$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych";
+$a->strings["Notifications"] = "Powiadomienia";
+$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia";
+$a->strings["Mark all system notifications seen"] = "";
+$a->strings["Messages"] = "Wiadomości";
+$a->strings["Private mail"] = "Prywatne maile";
+$a->strings["Inbox"] = "Odebrane";
+$a->strings["Outbox"] = "Wysłane";
+$a->strings["New Message"] = "Nowa wiadomość";
+$a->strings["Manage"] = "Zarządzaj";
+$a->strings["Manage other pages"] = "Zarządzaj innymi stronami";
+$a->strings["Delegations"] = "";
+$a->strings["Delegate Page Management"] = "";
+$a->strings["Account settings"] = "Ustawienia konta";
+$a->strings["Profiles"] = "Profile";
+$a->strings["Manage/Edit Profiles"] = "";
+$a->strings["Contacts"] = "Kontakty";
+$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami";
+$a->strings["Admin"] = "Administator";
+$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
+$a->strings["Navigation"] = "";
+$a->strings["Site map"] = "";
+$a->strings["view full size"] = "Zobacz pełen rozmiar";
+$a->strings["Embedded content"] = "Osadzona zawartość";
+$a->strings["Embedding disabled"] = "Osadzanie wyłączone";
+$a->strings["Welcome "] = "Witaj ";
+$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe.";
+$a->strings["Welcome back "] = "Witaj ponownie ";
+$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["Profile not found."] = "Nie znaleziono profilu.";
+$a->strings["Profile deleted."] = "Konto usunięte.";
+$a->strings["Profile-"] = "Profil-";
+$a->strings["New profile created."] = "Utworzono nowy profil.";
+$a->strings["Profile unavailable to clone."] = "Nie można powileić profilu ";
+$a->strings["Profile Name is required."] = "Nazwa Profilu jest wymagana";
+$a->strings["Marital Status"] = "";
+$a->strings["Romantic Partner"] = "";
+$a->strings["Likes"] = "";
+$a->strings["Dislikes"] = "";
+$a->strings["Work/Employment"] = "Praca/Zatrudnienie";
+$a->strings["Religion"] = "Religia";
+$a->strings["Political Views"] = "Poglądy polityczne";
+$a->strings["Gender"] = "Płeć";
+$a->strings["Sexual Preference"] = "Orientacja seksualna";
+$a->strings["Homepage"] = "Strona Główna";
+$a->strings["Interests"] = "Zainteresowania";
+$a->strings["Address"] = "Adres";
+$a->strings["Profile updated."] = "Konto zaktualizowane.";
+$a->strings[" and "] = " i ";
+$a->strings["public profile"] = "profil publiczny";
+$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "";
+$a->strings[" - Visit %1\$s's %2\$s"] = " - Odwiedźa %1\$s's %2\$s";
+$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "";
+$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Czy chcesz ukryć listę kontaktów dla przeglądających to konto?";
+$a->strings["No"] = "Nie";
+$a->strings["Edit Profile Details"] = "Edytuj profil.";
+$a->strings["Change Profile Photo"] = "Zmień profilowe zdjęcie";
+$a->strings["View this profile"] = "Zobacz ten profil";
+$a->strings["Create a new profile using these settings"] = "Stwórz nowy profil wykorzystując te ustawienia";
+$a->strings["Clone this profile"] = "Sklonuj ten profil";
+$a->strings["Delete this profile"] = "Usuń ten profil";
+$a->strings["Profile Name:"] = "Nazwa profilu :";
+$a->strings["Your Full Name:"] = "Twoje imię i nazwisko:";
+$a->strings["Title/Description:"] = "Tytuł/Opis :";
+$a->strings["Your Gender:"] = "Twoja płeć:";
+$a->strings["Birthday (%s):"] = "Urodziny (%s):";
+$a->strings["Street Address:"] = "Ulica:";
+$a->strings["Locality/City:"] = "Miejscowość/Miasto :";
+$a->strings["Postal/Zip Code:"] = "Kod Pocztowy :";
+$a->strings["Country:"] = "Kraj:";
+$a->strings["Region/State:"] = "Region / Stan :";
+$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stan :";
+$a->strings["Who: (if applicable)"] = "Kto: (jeśli dotyczy)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Przykłady : cathy123, Cathy Williams, cathy@example.com";
+$a->strings["Since [date]:"] = "Od [data]:";
+$a->strings["Homepage URL:"] = "Strona główna URL:";
+$a->strings["Religious Views:"] = "Poglądy religijne:";
+$a->strings["Public Keywords:"] = "Publiczne słowa kluczowe :";
+$a->strings["Private Keywords:"] = "Prywatne słowa kluczowe :";
+$a->strings["Example: fishing photography software"] = "Przykład: kończenie oprogramowania fotografii";
+$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Używany do sugerowania potencjalnych znajomych, jest widoczny dla innych)";
+$a->strings["(Used for searching profiles, never shown to others)"] = "(Używany do wyszukiwania profili, niepokazywany innym)";
+$a->strings["Tell us about yourself..."] = "Napisz o sobie...";
+$a->strings["Hobbies/Interests"] = "Zainteresowania";
+$a->strings["Contact information and Social Networks"] = "Informacje kontaktowe i Sieci Społeczne";
+$a->strings["Musical interests"] = "Muzyka";
+$a->strings["Books, literature"] = "Literatura";
+$a->strings["Television"] = "Telewizja";
+$a->strings["Film/dance/culture/entertainment"] = "Film/taniec/kultura/rozrywka";
+$a->strings["Love/romance"] = "Miłość/romans";
+$a->strings["Work/employment"] = "Praca/zatrudnienie";
+$a->strings["School/education"] = "Szkoła/edukacja";
+$a->strings["This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "To jest Twój <strong> publiczny </strong> profil. <br/><strong>Może </strong> zostać wyświetlony przez każdego kto używa internetu.";
+$a->strings["Edit/Manage Profiles"] = "Edytuj/Zarządzaj Profilami";
+$a->strings["Change profile photo"] = "Zmień zdjęcie profilowe";
+$a->strings["Create New Profile"] = "Stwórz nowy profil";
+$a->strings["Profile Image"] = "Obraz profilowy";
+$a->strings["visible to everybody"] = "widoczne dla wszystkich";
+$a->strings["Edit visibility"] = "Edytuj widoczność";
+$a->strings["Permission denied"] = "Odmowa dostępu";
+$a->strings["Invalid profile identifier."] = "Nieprawidłowa nazwa użytkownika.";
+$a->strings["Profile Visibility Editor"] = "Ustawienia widoczności profilu";
+$a->strings["Click on a contact to add or remove."] = "Kliknij na kontakt w celu dodania lub usunięcia.";
+$a->strings["Visible To"] = "Widoczne dla";
+$a->strings["All Contacts (with secure profile access)"] = "Wszystkie kontakty (z bezpiecznym dostępem do profilu)";
+$a->strings["Personal Notes"] = "Osobiste notatki";
+$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]";
+$a->strings["Edit contact"] = "Edytuj kontakt";
+$a->strings["Contacts who are not members of a group"] = "Kontakty spoza członków grupy";
+$a->strings["{0} wants to be your friend"] = "{0} chce być Twoim znajomym";
+$a->strings["{0} sent you a message"] = "{0} wysyła Ci wiadomość";
+$a->strings["{0} requested registration"] = "{0} żądana rejestracja";
+$a->strings["{0} commented %s's post"] = "{0} skomentował %s wpis";
+$a->strings["{0} liked %s's post"] = "{0} polubił wpis %s";
+$a->strings["{0} disliked %s's post"] = "{0} przestał lubić post %s";
+$a->strings["{0} is now friends with %s"] = "{0} jest teraz znajomym %s";
+$a->strings["{0} posted"] = "{0} utworzony";
+$a->strings["{0} tagged %s's post with #%s"] = "{0} zaznaczony %s'go post z #%s";
+$a->strings["{0} mentioned you in a post"] = "{0} wspomniał Cię w swoim wpisie";
+$a->strings["Theme settings updated."] = "";
+$a->strings["Site"] = "Strona";
+$a->strings["Users"] = "Użytkownicy";
+$a->strings["Plugins"] = "Wtyczki";
+$a->strings["Themes"] = "Temat";
+$a->strings["DB updates"] = "";
+$a->strings["Logs"] = "Logi";
+$a->strings["Plugin Features"] = "Polecane wtyczki";
+$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
+$a->strings["Normal Account"] = "Konto normalne";
+$a->strings["Soapbox Account"] = "Konto Soapbox";
+$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
+$a->strings["Automatic Friend Account"] = "Automatyczny przyjaciel konta";
+$a->strings["Blog Account"] = "";
+$a->strings["Private Forum"] = "Forum Prywatne";
+$a->strings["Message queues"] = "";
+$a->strings["Administration"] = "Administracja";
+$a->strings["Summary"] = "Skrót";
+$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
+$a->strings["Pending registrations"] = "Rejestracje w toku.";
+$a->strings["Version"] = "Wersja";
+$a->strings["Active plugins"] = "Aktywne pluginy";
+$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
+$a->strings["No special theme for mobile devices"] = "";
+$a->strings["Multi user instance"] = "";
+$a->strings["Closed"] = "Zamknięty";
+$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
+$a->strings["Open"] = "Otwórz";
+$a->strings["No SSL policy, links will track page SSL state"] = "";
+$a->strings["Force all links to use SSL"] = "";
+$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "";
+$a->strings["Registration"] = "Rejestracja";
+$a->strings["File upload"] = "Plik załadowano";
+$a->strings["Policies"] = "zasady";
+$a->strings["Advanced"] = "Zaawansowany";
+$a->strings["Performance"] = "";
+$a->strings["Banner/Logo"] = "Logo";
+$a->strings["System language"] = "Język systemu";
+$a->strings["System theme"] = "Motyw systemowy";
+$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
+$a->strings["Mobile system theme"] = "";
+$a->strings["Theme for mobile devices"] = "";
+$a->strings["SSL link policy"] = "";
+$a->strings["Determines whether generated links should be forced to use SSL"] = "";
+$a->strings["'Share' element"] = "";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
+$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."] = "";
+$a->strings["Single user instance"] = "";
+$a->strings["Make this instance multi-user or single-user for the named user"] = "";
+$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia";
+$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
+$a->strings["Maximum image length"] = "Maksymalna długość obrazu";
+$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu.";
+$a->strings["JPEG image quality"] = "jakość obrazu JPEG";
+$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
+$a->strings["Register policy"] = "Zarejestruj polisę";
+$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"] = "Zarejestruj tekst";
+$a->strings["Will be displayed prominently on the registration page."] = "";
+$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni.";
+$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
+$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół";
+$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"] = "Dozwolone domeny e-mailowe";
+$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"] = "Blokuj publicznie";
+$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"] = "Wymuś publikację";
+$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
+$a->strings["Global directory update URL"] = "";
+$a->strings["URL to update 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["Block multiple registrations"] = "";
+$a->strings["Disallow users to register additional accounts for use as pages."] = "";
+$a->strings["OpenID support"] = "Wsparcie OpenID";
+$a->strings["OpenID support for registration and logins."] = "";
+$a->strings["Fullname check"] = "Sprawdzanie pełnej nazwy";
+$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"] = "";
+$a->strings["Use PHP UTF8 regular expressions"] = "";
+$a->strings["Show Community Page"] = "Pokaż stronę społeczności";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "";
+$a->strings["Enable OStatus support"] = "Włącz wsparcie OStatus";
+$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "";
+$a->strings["Enable Diaspora support"] = "Włączyć obsługę Diaspory";
+$a->strings["Provide built-in Diaspora network compatibility."] = "";
+$a->strings["Only allow Friendica contacts"] = "Dopuść tylko kontakty Friendrica";
+$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
+$a->strings["Verify SSL"] = "Weryfikacja 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."] = "";
+$a->strings["Proxy user"] = "Użytkownik proxy";
+$a->strings["Proxy URL"] = "URL Proxy";
+$a->strings["Network timeout"] = "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."] = "";
+$a->strings["Poll interval"] = "";
+$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
+$a->strings["Maximum Load Average"] = "";
+$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+$a->strings["Use MySQL full text engine"] = "";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
+$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)."] = "";
+$a->strings["Path for lock file"] = "";
+$a->strings["Temp path"] = "";
+$a->strings["Base path to installation"] = "";
+$a->strings["Update has been marked successful"] = "";
+$a->strings["Executing %s failed. Check system logs."] = "";
+$a->strings["Update %s was successfully applied."] = "";
+$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "";
+$a->strings["Update function %s could not be found."] = "";
+$a->strings["No failed updates."] = "Brak błędów aktualizacji.";
+$a->strings["Failed Updates"] = "Błąd aktualizacji";
+$a->strings["This does not include updates prior to 1139, which did not return a status."] = "";
+$a->strings["Mark success (if update was manually applied)"] = "";
+$a->strings["Attempt to execute this update step automatically"] = "";
+$a->strings["%s user blocked/unblocked"] = array(
+       0 => "",
+       1 => "",
+       2 => "",
+);
+$a->strings["%s user deleted"] = array(
+       0 => " %s użytkownik usunięty",
+       1 => " %s użytkownicy usunięci",
+       2 => " %s usuniętych użytkowników ",
+);
+$a->strings["User '%s' deleted"] = "Użytkownik '%s' usunięty";
+$a->strings["User '%s' unblocked"] = "Użytkownik '%s' odblokowany";
+$a->strings["User '%s' blocked"] = "Użytkownik '%s' zablokowany";
+$a->strings["select all"] = "Zaznacz wszystko";
+$a->strings["User registrations waiting for confirm"] = "zarejestrowany użytkownik czeka na potwierdzenie";
+$a->strings["Request date"] = "Data prośby";
+$a->strings["Name"] = "Imię";
+$a->strings["No registrations."] = "brak rejestracji";
+$a->strings["Approve"] = "Zatwierdź";
+$a->strings["Deny"] = "Odmów";
+$a->strings["Block"] = "Zablokuj";
+$a->strings["Unblock"] = "Odblokuj";
+$a->strings["Site admin"] = "Administracja stroną";
+$a->strings["Register date"] = "Data rejestracji";
+$a->strings["Last login"] = "Ostatnie logowanie";
+$a->strings["Last item"] = "Ostatni element";
+$a->strings["Account"] = "Konto";
+$a->strings["Selected users will be deleted!\\n\\nEverything these users had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
+$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?"] = "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?";
+$a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona.";
+$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona.";
+$a->strings["Disable"] = "Wyłącz";
+$a->strings["Enable"] = "Zezwól";
+$a->strings["Toggle"] = "Włącz";
+$a->strings["Author: "] = "Autor: ";
+$a->strings["Maintainer: "] = "";
+$a->strings["No themes found."] = "Nie znaleziono tematu.";
+$a->strings["Screenshot"] = "Zrzut ekranu";
+$a->strings["[Experimental]"] = "[Eksperymentalne]";
+$a->strings["[Unsupported]"] = "[Niewspieralne]";
+$a->strings["Log settings updated."] = "";
+$a->strings["Clear"] = "Wyczyść";
+$a->strings["Debugging"] = "Naprawianie";
+$a->strings["Log file"] = "Plik logów";
+$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
+$a->strings["Log level"] = "Poziom logów";
+$a->strings["Update now"] = "Aktualizuj teraz";
+$a->strings["Close"] = "Zamknij";
+$a->strings["FTP Host"] = "Założyciel FTP";
+$a->strings["FTP Path"] = "Ścieżka FTP";
+$a->strings["FTP User"] = "Użytkownik FTP";
+$a->strings["FTP Password"] = "FTP Hasło";
+$a->strings["Unable to locate original post."] = "Nie można zlokalizować oryginalnej wiadomości.";
+$a->strings["Empty post discarded."] = "Pusty wpis wyrzucony.";
+$a->strings["System error. Post not saved."] = "Błąd. Post niezapisany.";
+$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Wiadomość została wysłana do ciebie od %s , członka portalu Friendica";
+$a->strings["You may visit them online at %s"] = "Możesz ich odwiedzić online u %s";
+$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości.";
+$a->strings["%s posted an update."] = "%s zaktualizował wpis.";
+$a->strings["Friends of %s"] = "Znajomy %s";
+$a->strings["No friends to display."] = "Brak znajomych do wyświetlenia";
+$a->strings["Remove term"] = "Usuń wpis";
+$a->strings["No results."] = "Brak wyników.";
+$a->strings["Authorize application connection"] = "Autoryzacja połączenia aplikacji";
+$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
+$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować.";
+$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?";
+$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila.";
+$a->strings["Failed to send email message. Here is the message that failed."] = "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się.";
+$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. ";
+$a->strings["Registration request at %s"] = "Prośba o rejestrację u %s";
+$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.";
+$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'.";
+$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.";
+$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):";
+$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
+$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu.";
+$a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):";
+$a->strings["Your Email Address: "] = "Twój adres email:";
+$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>'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@\$nazwastrony</strong>'.";
+$a->strings["Choose a nickname: "] = "Wybierz pseudonim:";
+$a->strings["Applications"] = "Aplikacje";
+$a->strings["No installed applications."] = "Brak zainstalowanych aplikacji.";
+$a->strings["Account approved."] = "Konto zatwierdzone.";
+$a->strings["Registration revoked for %s"] = "Rejestracja dla %s odwołana";
+$a->strings["Please login."] = "Proszę się zalogować.";
+$a->strings["Item not available."] = "Element nie dostępny.";
+$a->strings["Item was not found."] = "Element nie znaleziony.";
+$a->strings["Remove My Account"] = "Usuń konto";
+$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Kompletne usunięcie konta. Jeżeli zostanie wykonane, konto nie może zostać odzyskane.";
+$a->strings["Please enter your password for verification:"] = "Wprowadź hasło w celu weryfikacji.";
+$a->strings["Source (bbcode) text:"] = "";
+$a->strings["Source (Diaspora) text to convert to BBcode:"] = "";
+$a->strings["Source input: "] = "";
+$a->strings["bb2html (raw HTML): "] = "";
+$a->strings["bb2html: "] = "";
+$a->strings["bb2html2bb: "] = "";
+$a->strings["bb2md: "] = "";
+$a->strings["bb2md2html: "] = "";
+$a->strings["bb2dia2bb: "] = "";
+$a->strings["bb2md2html2bb: "] = "";
+$a->strings["Source input (Diaspora format): "] = "";
+$a->strings["diaspora2bb: "] = "";
+$a->strings["Common Friends"] = "Wspólni znajomi";
+$a->strings["No contacts in common."] = "";
+$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
+$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
+$a->strings["Contact updated."] = "Kontakt zaktualizowany";
+$a->strings["Failed to update contact record."] = "Aktualizacja nagrania kontaktu nie powiodła się.";
+$a->strings["Contact has been blocked"] = "Kontakt został zablokowany";
+$a->strings["Contact has been unblocked"] = "Kontakt został odblokowany";
+$a->strings["Contact has been ignored"] = "Kontakt jest ignorowany";
+$a->strings["Contact has been unignored"] = "Kontakt nie jest ignorowany";
+$a->strings["Contact has been archived"] = "Kontakt został zarchiwizowany";
+$a->strings["Contact has been unarchived"] = "";
+$a->strings["Do you really want to delete this contact?"] = "";
+$a->strings["Contact has been removed."] = "Kontakt został usunięty.";
+$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s";
+$a->strings["You are sharing with %s"] = "Współdzielisz z %s";
+$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
+$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
+$a->strings["Never"] = "Nigdy";
+$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)";
+$a->strings["(Update was not successful)"] = "(Aktualizacja nie powiodła się)";
+$a->strings["Suggest friends"] = "Osoby, które możesz znać";
+$a->strings["Network type: %s"] = "Typ sieci: %s";
+$a->strings["View all contacts"] = "Zobacz wszystkie kontakty";
+$a->strings["Toggle Blocked status"] = "";
+$a->strings["Unignore"] = "Odblokuj";
+$a->strings["Ignore"] = "Ignoruj";
+$a->strings["Toggle Ignored status"] = "";
+$a->strings["Unarchive"] = "";
+$a->strings["Archive"] = "Archiwum";
+$a->strings["Toggle Archive status"] = "";
+$a->strings["Repair"] = "Napraw";
+$a->strings["Advanced Contact Settings"] = "Zaawansowane ustawienia kontaktów";
+$a->strings["Communications lost with this contact!"] = "";
+$a->strings["Contact Editor"] = "Edytor kontaktów";
+$a->strings["Profile Visibility"] = "Widoczność profilu";
+$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s";
+$a->strings["Contact Information / Notes"] = "Informacja o kontakcie / Notka";
+$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu";
+$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
+$a->strings["Ignore contact"] = "Ignoruj kontakt";
+$a->strings["Repair URL settings"] = "Napraw ustawienia adresu";
+$a->strings["View conversations"] = "Zobacz rozmowę";
+$a->strings["Delete contact"] = "Usuń kontakt";
+$a->strings["Last update:"] = "Ostatnia aktualizacja:";
+$a->strings["Update public posts"] = "Zaktualizuj publiczne posty";
+$a->strings["Currently blocked"] = "Obecnie zablokowany";
+$a->strings["Currently ignored"] = "Obecnie zignorowany";
+$a->strings["Currently archived"] = "Obecnie zarchiwizowany";
+$a->strings["Hide this contact from others"] = "Ukryj ten kontakt przed innymi";
+$a->strings["Replies/likes to your public posts <strong>may</strong> still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal <strong>mogą</strong> być widoczne";
+$a->strings["Suggestions"] = "Sugestie";
+$a->strings["Suggest potential friends"] = "Sugerowani znajomi";
+$a->strings["All Contacts"] = "Wszystkie kontakty";
+$a->strings["Show all contacts"] = "Pokaż wszystkie kontakty";
+$a->strings["Unblocked"] = "Odblokowany";
+$a->strings["Only show unblocked contacts"] = "Pokaż tylko odblokowane kontakty";
+$a->strings["Blocked"] = "Zablokowany";
+$a->strings["Only show blocked contacts"] = "Pokaż tylko zablokowane kontakty";
+$a->strings["Ignored"] = "Zignorowany";
+$a->strings["Only show ignored contacts"] = "Pokaż tylko ignorowane kontakty";
+$a->strings["Archived"] = "";
+$a->strings["Only show archived contacts"] = "Pokaż tylko zarchiwizowane kontakty";
+$a->strings["Hidden"] = "Ukryty";
+$a->strings["Only show hidden contacts"] = "Pokaż tylko ukryte kontakty";
+$a->strings["Mutual Friendship"] = "Wzajemna przyjaźń";
+$a->strings["is a fan of yours"] = "jest twoim fanem";
+$a->strings["you are a fan of"] = "jesteś fanem";
+$a->strings["Search your contacts"] = "Wyszukaj w kontaktach";
+$a->strings["everybody"] = "wszyscy";
+$a->strings["Additional features"] = "";
+$a->strings["Display settings"] = "Wyświetl ustawienia";
+$a->strings["Connector settings"] = "Ustawienia konektora";
+$a->strings["Plugin settings"] = "Ustawienia wtyczek";
+$a->strings["Connected apps"] = "";
+$a->strings["Export personal data"] = "Eksportuje dane personalne";
+$a->strings["Remove account"] = "Usuń konto";
+$a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
+$a->strings["Update"] = "Zaktualizuj";
+$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się.";
+$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email.";
+$a->strings["Features updated"] = "";
+$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione.";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione.";
+$a->strings["Password changed."] = "Hasło zostało zmianione.";
+$a->strings["Password update failed. Please try again."] = "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie.";
+$a->strings[" Please use a shorter name."] = "Proszę użyć krótszej nazwy.";
+$a->strings[" Name too short."] = "Za krótka nazwa.";
+$a->strings[" Not valid email."] = "Zły email.";
+$a->strings[" Cannot change to that email."] = "Nie mogę zmienić na ten 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["Add application"] = "Dodaj aplikacje";
+$a->strings["Redirect"] = "Przekierowanie";
+$a->strings["Icon url"] = "Adres ikony";
+$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
+$a->strings["Connected Apps"] = "Powiązane aplikacje";
+$a->strings["Edit"] = "Edytuj";
+$a->strings["Client key starts with"] = "Klucz klienta zaczyna się od";
+$a->strings["No name"] = "Bez nazwy";
+$a->strings["Remove authorization"] = "Odwołaj upoważnienie";
+$a->strings["No Plugin settings configured"] = "Ustawienia wtyczki nieskonfigurowane";
+$a->strings["Off"] = "Wyłącz";
+$a->strings["On"] = "Włącz";
+$a->strings["Additional Features"] = "";
+$a->strings["Built-in support for %s connectivity is %s"] = "";
+$a->strings["enabled"] = "włączony";
+$a->strings["disabled"] = "wyłączony";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie";
+$a->strings["Connector Settings"] = "Ustawienia konektora";
+$a->strings["Email/Mailbox Setup"] = "Ustawienia  emaila/skrzynki mailowej";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email.";
+$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:";
+$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:";
+$a->strings["IMAP port:"] = "Port IMAP:";
+$a->strings["Security:"] = "Ochrona:";
+$a->strings["Email login name:"] = "Login emaila:";
+$a->strings["Email password:"] = "Hasło emaila:";
+$a->strings["Reply-to address:"] = "Odpowiedz na adres:";
+$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail";
+$a->strings["Action after import:"] = "Akcja po zaimportowaniu:";
+$a->strings["Mark as seen"] = "Oznacz jako przeczytane";
+$a->strings["Move to folder"] = "Przenieś do folderu";
+$a->strings["Move to folder:"] = "Przenieś do folderu:";
+$a->strings["Display Settings"] = "Wyświetl ustawienia";
+$a->strings["Display Theme:"] = "Wyświetl motyw:";
+$a->strings["Mobile Theme:"] = "";
+$a->strings["Update browser every xx seconds"] = "Odświeżaj stronę co xx sekund";
+$a->strings["Minimum of 10 seconds, no maximum"] = "Dolny limit 10 sekund, brak górnego limitu";
+$a->strings["Number of items to display per page:"] = "";
+$a->strings["Maximum of 100 items"] = "Maksymalnie 100 elementów";
+$a->strings["Don't show emoticons"] = "Nie pokazuj emotikonek";
+$a->strings["Normal Account Page"] = "";
+$a->strings["This account is a normal personal profile"] = "To konto jest normalnym osobistym profilem";
+$a->strings["Soapbox Page"] = "";
+$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'";
+$a->strings["Community Forum/Celebrity Account"] = "";
+$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu.";
+$a->strings["Automatic Friend Page"] = "";
+$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół";
+$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."] = "Przeznacz to OpenID do logowania się na to konto.";
+$a->strings["Publish your default profile in your local site directory?"] = "Czy publikować Twój profil w lokalnym katalogu tej instancji?";
+$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?";
+$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?";
+$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?";
+$a->strings["Allow friends to post to your profile page?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych";
+$a->strings["Allow friends to tag your posts?"] = "Zezwól na oznaczanie twoich postów przez znajomych";
+$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>."] = "Profil <strong>nie jest opublikowany</strong>";
+$a->strings["or"] = "lub";
+$a->strings["Your Identity Address is"] = "Twój adres identyfikacyjny to";
+$a->strings["Automatically expire posts after this many days:"] = "";
+$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte.";
+$a->strings["Advanced expiration settings"] = "";
+$a->strings["Advanced Expiration"] = "";
+$a->strings["Expire posts:"] = "Wygasające posty:";
+$a->strings["Expire personal notes:"] = "Wygasające notatki osobiste:";
+$a->strings["Expire starred posts:"] = "";
+$a->strings["Expire photos:"] = "Wygasające zdjęcia:";
+$a->strings["Only expire posts by others:"] = "";
+$a->strings["Account Settings"] = "Ustawienia konta";
+$a->strings["Password Settings"] = "Ustawienia hasła";
+$a->strings["New Password:"] = "Nowe hasło:";
+$a->strings["Confirm:"] = "Potwierdź:";
+$a->strings["Leave password fields blank unless changing"] = "Pozostaw pola hasła puste, chyba że chcesz je zmienić.";
+$a->strings["Basic Settings"] = "Ustawienia podstawowe";
+$a->strings["Email Address:"] = "Adres email:";
+$a->strings["Your Timezone:"] = "Twoja strefa czasowa:";
+$a->strings["Default Post Location:"] = "Standardowa lokalizacja wiadomości:";
+$a->strings["Use Browser Location:"] = "Użyj położenia przeglądarki:";
+$a->strings["Security and Privacy Settings"] = "Ustawienia bezpieczeństwa i prywatności";
+$a->strings["Maximum Friend Requests/Day:"] = "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:";
+$a->strings["(to prevent spam abuse)"] = "(aby zapobiec spamowaniu)";
+$a->strings["Default Post Permissions"] = "Domyślne prawa dostępu wiadomości";
+$a->strings["(click to open/close)"] = "(kliknij by otworzyć/zamknąć)";
+$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"] = "Ustawienia powiadomień";
+$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:"] = "Wyślij powiadmonienia na email, kiedy:";
+$a->strings["You receive an introduction"] = "Otrzymałeś zaproszenie";
+$a->strings["Your introductions are confirmed"] = "Dane zatwierdzone";
+$a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ścianie profilowej";
+$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący.";
+$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość";
+$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych";
+$a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście";
+$a->strings["You are poked/prodded/etc. in a post"] = "";
+$a->strings["Advanced Account/Page Type Settings"] = "";
+$a->strings["Change the behaviour of this account for special situations"] = "";
+$a->strings["link"] = "";
+$a->strings["Contact settings applied."] = "Ustawienia kontaktu zaktualizowane.";
+$a->strings["Contact update failed."] = "Nie udało się zaktualizować kontaktu.";
+$a->strings["Contact not found."] = "Kontakt nie znaleziony";
+$a->strings["Repair Contact Settings"] = "Napraw ustawienia kontaktów";
+$a->strings["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong> UWAGA: To jest wysoce zaawansowane</strong> i jeśli wprowadzisz niewłaściwą informację twoje komunikacje z tym kontaktem mogą przestać działać.";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj <strong>teraz</strong> przycisku 'powrót' na swojej przeglądarce.";
+$a->strings["Return to contact editor"] = "Wróć do edytora kontaktów";
+$a->strings["Account Nickname"] = "Nazwa konta";
+$a->strings["@Tagname - overrides Name/Nickname"] = "";
+$a->strings["Account URL"] = "URL konta";
+$a->strings["Friend Request URL"] = "URL żądajacy znajomości";
+$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość";
+$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL";
+$a->strings["Poll/Feed URL"] = "Adres Ankiety / RSS";
+$a->strings["New photo from this URL"] = "Nowe zdjęcie z tej ścieżki";
+$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"] = "Dodaj";
+$a->strings["No entries."] = "Brak wpisów.";
+$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"] = "Zrób ten post prywatnym";
+$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."] = "Odpowiedź do zdalnej strony nie została zrozumiana";
+$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej";
+$a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie";
+$a->strings["Remote site reported: "] = "Zdalna strona zgłoszona:";
+$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później.";
+$a->strings["Introduction failed or was revoked."] = "Nieudane lub unieważnione wprowadzenie.";
+$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu.";
+$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'";
+$a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej zepsuty";
+$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas.";
+$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie";
+$a->strings["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."] = "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie.";
+$a->strings["Unable to set your contact credentials on our system."] = "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie";
+$a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie";
+$a->strings["Connection accepted at %s"] = "Połączenie zaakceptowane %s";
+$a->strings["%1\$s has joined %2\$s"] = "";
+$a->strings["%1\$s welcomes %2\$s"] = "";
+$a->strings["This introduction has already been accepted."] = "To wprowadzenie zostało już zaakceptowane.";
+$a->strings["Profile location is not valid or does not contain profile information."] = "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji.";
+$a->strings["Warning: profile location has no identifiable owner name."] = "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik.";
+$a->strings["Warning: profile location has no profile photo."] = "Ostrzeżenie: położenie profilu nie zawiera zdjęcia.";
+$a->strings["%d required parameter was not found at the given location"] = array(
+       0 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
+       1 => "%d wymagane parametry nie zostały znalezione w podanej lokacji",
+       2 => "%d wymagany parametr nie został znaleziony w podanej lokacji",
 );
-$a->strings["poke"] = "zaczep";
-$a->strings["poked"] = "zaczepiony";
-$a->strings["ping"] = "";
-$a->strings["pinged"] = "";
-$a->strings["prod"] = "";
-$a->strings["prodded"] = "";
-$a->strings["slap"] = "spoliczkuj";
-$a->strings["slapped"] = "spoliczkowany";
-$a->strings["finger"] = "dotknąć";
-$a->strings["fingered"] = "dotknięty";
-$a->strings["rebuff"] = "odprawiać";
-$a->strings["rebuffed"] = "odprawiony";
-$a->strings["happy"] = "szczęśliwy";
-$a->strings["sad"] = "smutny";
-$a->strings["mellow"] = "spokojny";
-$a->strings["tired"] = "zmęczony";
-$a->strings["perky"] = "pewny siebie";
-$a->strings["angry"] = "wściekły";
-$a->strings["stupified"] = "odurzony";
-$a->strings["puzzled"] = "zdziwiony";
-$a->strings["interested"] = "interesujący";
-$a->strings["bitter"] = "zajadły";
-$a->strings["cheerful"] = "wesoły";
-$a->strings["alive"] = "żywy";
-$a->strings["annoyed"] = "irytujący";
-$a->strings["anxious"] = "zazdrosny";
-$a->strings["cranky"] = "zepsuty";
-$a->strings["disturbed"] = "przeszkadzający";
-$a->strings["frustrated"] = "rozbity";
-$a->strings["motivated"] = "zmotywowany";
-$a->strings["relaxed"] = "zrelaksowany";
-$a->strings["surprised"] = "zaskoczony";
-$a->strings["January"] = "Styczeń";
-$a->strings["February"] = "Luty";
-$a->strings["March"] = "Marzec";
-$a->strings["April"] = "Kwiecień";
-$a->strings["May"] = "Maj";
-$a->strings["June"] = "Czerwiec";
-$a->strings["July"] = "Lipiec";
-$a->strings["August"] = "Sierpień";
-$a->strings["September"] = "Wrzesień";
-$a->strings["October"] = "Październik";
-$a->strings["November"] = "Listopad";
-$a->strings["December"] = "Grudzień";
-$a->strings["bytes"] = "bajty";
-$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć";
-$a->strings["default"] = "standardowe";
-$a->strings["Select an alternate language"] = "Wybierz alternatywny język";
-$a->strings["activity"] = "aktywność";
-$a->strings["post"] = "post";
-$a->strings["Item filed"] = "";
-$a->strings["Sharing notification from Diaspora network"] = "Wspólne powiadomienie z sieci Diaspora";
-$a->strings["Attachments:"] = "Załączniki:";
-$a->strings["view full size"] = "Zobacz pełen rozmiar";
-$a->strings["Embedded content"] = "";
-$a->strings["Embedding disabled"] = "Osadzanie wyłączone";
-$a->strings["Error decoding account file"] = "";
-$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
-$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
-$a->strings["Error! Cannot check nickname"] = "";
-$a->strings["User '%s' already exists on this server!"] = "";
-$a->strings["User creation error"] = "";
-$a->strings["User profile creation error"] = "";
-$a->strings["%d contact not imported"] = array(
-       0 => "",
-       1 => "",
-       2 => "",
+$a->strings["Introduction complete."] = "wprowadzanie zakończone.";
+$a->strings["Unrecoverable protocol error."] = "Nieodwracalny błąd protokołu.";
+$a->strings["Profile unavailable."] = "Profil niedostępny.";
+$a->strings["%s has received too many connection requests today."] = "%s otrzymał dziś zbyt wiele żądań połączeń.";
+$a->strings["Spam protection measures have been invoked."] = "Ochrona przed spamem została wywołana.";
+$a->strings["Friends are advised to please try again in 24 hours."] = "Przyjaciele namawiają do spróbowania za 24h.";
+$a->strings["Invalid locator"] = "Niewłaściwy lokalizator ";
+$a->strings["Invalid email address."] = "Nieprawidłowy adres email.";
+$a->strings["This account has not been configured for email. Request failed."] = "";
+$a->strings["Unable to resolve your name at the provided location."] = "Nie można rozpoznać twojej nazwy w przewidzianym miejscu.";
+$a->strings["You have already introduced yourself here."] = "Już się tu przedstawiłeś.";
+$a->strings["Apparently you are already friends with %s."] = "Widocznie jesteście już znajomymi z %s";
+$a->strings["Invalid profile URL."] = "Zły adres URL profilu.";
+$a->strings["Your introduction has been sent."] = "Twoje dane zostały wysłane.";
+$a->strings["Please login to confirm introduction."] = "Proszę zalogować się do potwierdzenia wstępu.";
+$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na <strong>tego</strong> użytkownika. ";
+$a->strings["Hide this contact"] = "Ukryj kontakt";
+$a->strings["Welcome home %s."] = "Welcome home %s.";
+$a->strings["Please confirm your introduction/connection request to %s."] = "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s.";
+$a->strings["Confirm"] = "Potwierdź";
+$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "";
+$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "";
+$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->strings["Friend/Connection Request"] = "Przyjaciel/Prośba o połączenie";
+$a->strings["Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, testuser@identi.ca"] = "";
+$a->strings["Please answer the following:"] = "Proszę odpowiedzieć na poniższe:";
+$a->strings["Does %s know you?"] = "Czy %s Cię zna?";
+$a->strings["Add a personal note:"] = "Dodaj osobistą notkę:";
+$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Sieć społeczna";
+$a->strings[" - please do not use this form.  Instead, enter %s into your Diaspora search bar."] = "";
+$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:";
+$a->strings["Submit Request"] = "Wyślij zgłoszenie";
+$a->strings["%1\$s is following %2\$s's %3\$s"] = "";
+$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."] = "";
+$a->strings["Ignore/Hide"] = "Ignoruj/Ukryj";
+$a->strings["People Search"] = "Szukaj osób";
+$a->strings["No matches"] = "brak dopasowań";
+$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta";
+$a->strings["Item has been removed."] = "Przedmiot został usunięty";
+$a->strings["Tag removed"] = "Tag usunięty";
+$a->strings["Remove Item Tag"] = "Usuń pozycję Tag";
+$a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
+$a->strings["Item not found"] = "Artykuł nie znaleziony";
+$a->strings["Edit post"] = "Edytuj post";
+$a->strings["Event title and start time are required."] = "";
+$a->strings["l, F j"] = "d, M d ";
+$a->strings["Edit event"] = "Edytuj wydarzenie";
+$a->strings["Create New Event"] = "Stwórz nowe wydarzenie";
+$a->strings["hour:minute"] = "godzina:minuta";
+$a->strings["Event details"] = "Szczegóły wydarzenia";
+$a->strings["Format is %s %s. Starting date and Title are required."] = "";
+$a->strings["Event Starts:"] = "Rozpoczęcie wydarzenia:";
+$a->strings["Required"] = "Wymagany";
+$a->strings["Finish date/time is not known or not relevant"] = "Data/czas zakończenia nie jest znana lub jest nieistotna";
+$a->strings["Event Finishes:"] = "Zakończenie wydarzenia:";
+$a->strings["Adjust for viewer timezone"] = "Dopasuj dla strefy czasowej widza";
+$a->strings["Description:"] = "Opis:";
+$a->strings["Title:"] = "Tytuł:";
+$a->strings["Share this event"] = "Udostępnij te wydarzenie";
+$a->strings["Files"] = "Pliki";
+$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)"] = "";
+$a->strings["- select -"] = "- wybierz -";
+$a->strings["Import"] = "";
+$a->strings["Move account"] = "Przenieś konto";
+$a->strings["You can import an account from another Friendica server."] = "";
+$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"] = "";
+$a->strings["Account file"] = "";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
+$a->strings["[Embedded content - reload page to view]"] = "";
+$a->strings["Contact added"] = "Kontakt dodany";
+$a->strings["This is Friendica, version"] = "To jest Friendica, wersja";
+$a->strings["running at web location"] = "otwierane na serwerze";
+$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica.";
+$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź";
+$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
+$a->strings["Installed plugins/addons/apps:"] = "Zainstalowane pluginy/dodatki/aplikacje:";
+$a->strings["No installed plugins/addons/apps"] = "Brak zainstalowanych pluginów/dodatków/aplikacji";
+$a->strings["Friend suggestion sent."] = "Propozycja znajomych wysłana.";
+$a->strings["Suggest Friends"] = "Zaproponuj znajomych";
+$a->strings["Suggest a friend for %s"] = "Zaproponuj znajomych dla %s";
+$a->strings["Group created."] = "Grupa utworzona.";
+$a->strings["Could not create group."] = "Nie mogę stworzyć grupy";
+$a->strings["Group not found."] = "Nie znaleziono grupy";
+$a->strings["Group name changed."] = "Nazwa grupy zmieniona";
+$a->strings["Create a group of contacts/friends."] = "Stwórz grupę znajomych.";
+$a->strings["Group Name: "] = "Nazwa grupy: ";
+$a->strings["Group removed."] = "Grupa usunięta.";
+$a->strings["Unable to remove group."] = "Nie można usunąć grupy.";
+$a->strings["Group Editor"] = "Edytor grupy";
+$a->strings["Members"] = "Członkowie";
+$a->strings["No profile"] = "Brak profilu";
+$a->strings["Help:"] = "Pomoc:";
+$a->strings["Not Found"] = "Nie znaleziono";
+$a->strings["Page not found."] = "Strona nie znaleziona.";
+$a->strings["No contacts."] = "brak kontaktów";
+$a->strings["Access denied."] = "Brak dostępu";
+$a->strings["File exceeds size limit of %d"] = "Plik przekracza dozwolony rozmiar %d";
+$a->strings["File upload failed."] = "Przesyłanie pliku nie powiodło się.";
+$a->strings["Friendica Social Communications Server - Setup"] = "";
+$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
+$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
+$a->strings["Your Friendica site database has been installed."] = "";
+$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
+$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
+$a->strings["System check"] = "Sprawdzanie systemu";
+$a->strings["Check again"] = "Sprawdź ponownie";
+$a->strings["Database connection"] = "Połączenie z bazą danych";
+$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
+$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
+$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
+$a->strings["Database Server Name"] = "Baza danych - Nazwa serwera";
+$a->strings["Database Login Name"] = "Baza danych - Nazwa loginu";
+$a->strings["Database Login Password"] = "Baza danych - Hasło loginu";
+$a->strings["Database Name"] = "Baza danych - Nazwa";
+$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
+$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"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
+$a->strings["Site settings"] = "Ustawienia strony";
+$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nie można znaleźć wersji PHP komendy w serwerze 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>"] = "";
+$a->strings["PHP executable path"] = "";
+$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "";
+$a->strings["Command line PHP"] = "Linia komend PHP";
+$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\".";
+$a->strings["This is required for message delivery to work."] = "To jest wymagane do dostarczenia wiadomości do pracy.";
+$a->strings["PHP register_argc_argv"] = "";
+$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Błąd : funkcja systemu  \"openssl_pkey_new\"  nie jest  w stanie wygenerować klucza szyfrującego .";
+$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\".";
+$a->strings["Generate encryption keys"] = "Generuj klucz kodowania";
+$a->strings["libCurl PHP module"] = "Moduł libCurl PHP";
+$a->strings["GD graphics PHP module"] = "Moduł PHP-GD";
+$a->strings["OpenSSL PHP module"] = "";
+$a->strings["mysqli PHP module"] = "Moduł mysql PHP";
+$a->strings["mb_string PHP module"] = "Moduł mb_string PHP";
+$a->strings["Apache mod_rewrite module"] = "";
+$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany.";
+$a->strings["Error: libCURL PHP module required but not installed."] = "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany.";
+$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany.";
+$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
+$a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany.";
+$a->strings["Error: mb_string PHP module required but not installed."] = "Błąd: moduł PHP mb_string  jest wymagany ale nie jest zainstalowany";
+$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."] = "Instalator WWW musi być w stanie utworzyć plik o nazwie \". Htconfig.php\"  i nie jest w stanie tego zrobić.";
+$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."] = "";
+$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
+$a->strings[".htconfig.php is writable"] = ".htconfig.php jest zapisywalny";
+$a->strings["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."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$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."] = "";
+$a->strings["view/smarty3 is writable"] = "";
+$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
+$a->strings["Url rewrite is working"] = "";
+$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."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
+$a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych.";
+$a->strings["<h1>What next</h1>"] = "<h1>Co dalej</h1>";
+$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WAŻNE: Musisz [ręcznie] skonfigurowć zaplanowane zadanie dla poller.";
+$a->strings["Image exceeds size limit of %d"] = "Rozmiar obrazka przekracza limit %d";
+$a->strings["Unable to process image."] = "Przetwarzanie obrazu nie powiodło się.";
+$a->strings["Image upload failed."] = "Przesyłanie obrazu nie powiodło się";
+$a->strings["Total invitation limit exceeded."] = "";
+$a->strings["%s : Not a valid email address."] = "%s : Niepoprawny adres email.";
+$a->strings["Please join us on Friendica"] = "Dołącz do nas na Friendica";
+$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "";
+$a->strings["%s : Message delivery failed."] = "%s : Dostarczenie wiadomości nieudane.";
+$a->strings["%d message sent."] = array(
+       0 => "%d wiadomość wysłana.",
+       1 => "%d wiadomości wysłane.",
+       2 => "%d wysłano .",
+);
+$a->strings["You have no more invitations available"] = "Nie masz więcej zaproszeń";
+$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."] = "";
+$a->strings["To accept this invitation, please visit and register 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."] = "";
+$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "";
+$a->strings["Send invitations"] = "Wyślij zaproszenia";
+$a->strings["Enter email addresses, one per line:"] = "Wprowadź adresy email, jeden na linijkę:";
+$a->strings["Your message:"] = "Twoja wiadomość:";
+$a->strings["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"] = "";
+$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Gdy już się zarejestrujesz, skontaktuj się ze mną przez moją stronkę profilową :";
+$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendica.com"] = "";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
+$a->strings["No recipient selected."] = "Nie wybrano odbiorcy.";
+$a->strings["Unable to check your home location."] = "";
+$a->strings["Message could not be sent."] = "Wiadomość nie może zostać wysłana";
+$a->strings["Message collection failure."] = "";
+$a->strings["Message sent."] = "Wysłano.";
+$a->strings["No recipient."] = "Brak odbiorcy.";
+$a->strings["Send Private Message"] = "Wyślij prywatną wiadomość";
+$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "";
+$a->strings["To:"] = "Do:";
+$a->strings["Subject:"] = "Temat:";
+$a->strings["Time Conversion"] = "Zmiana czasu";
+$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "";
+$a->strings["UTC time: %s"] = "Czas UTC %s";
+$a->strings["Current timezone: %s"] = "Obecna strefa czasowa: %s";
+$a->strings["Converted localtime: %s"] = "Zmień strefę czasową: %s";
+$a->strings["Please select your timezone:"] = "Wybierz swoją strefę czasową:";
+$a->strings["Remote privacy information not available."] = "Dane prywatne nie są dostępne zdalnie ";
+$a->strings["No valid account found."] = "Nie znaleziono ważnego konta.";
+$a->strings["Password reset request issued. Check your email."] = "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój adres email.";
+$a->strings["Password reset requested at %s"] = "Prośba o reset hasła na %s";
+$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się.";
+$a->strings["Password Reset"] = "Zresetuj hasło";
+$a->strings["Your password has been reset as requested."] = "Twoje hasło zostało zresetowane na twoje życzenie.";
+$a->strings["Your new password is"] = "Twoje nowe hasło to";
+$a->strings["Save or copy your new password - and then"] = "Zapisz lub skopiuj swoje nowe hasło - i wtedy";
+$a->strings["click here to login"] = "Kliknij tutaj aby zalogować";
+$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Twoje hasło może być zmienione w <em>Ustawieniach</em> po udanym zalogowaniu.";
+$a->strings["Your password has been changed at %s"] = "";
+$a->strings["Forgot your Password?"] = "Zapomniałeś hasła?";
+$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji.";
+$a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
+$a->strings["Reset"] = "Zresetuj";
+$a->strings["System down for maintenance"] = "";
+$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami.";
+$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: "] = "Wybierz tożsamość do zarządzania:";
+$a->strings["Profile Match"] = "Profil zgodny ";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "Brak słów-kluczy do wyszukania. Dodaj słowa-klucze do swojego domyślnego profilu.";
+$a->strings["is interested in:"] = "interesuje się:";
+$a->strings["Unable to locate contact information."] = "Niezdolny do uzyskania informacji kontaktowych.";
+$a->strings["Do you really want to delete this message?"] = "";
+$a->strings["Message deleted."] = "Wiadomość usunięta.";
+$a->strings["Conversation removed."] = "Rozmowa usunięta.";
+$a->strings["No messages."] = "Brak wiadomości.";
+$a->strings["Unknown sender - %s"] = "";
+$a->strings["You and %s"] = "Ty i %s";
+$a->strings["%s and You"] = "%s i ty";
+$a->strings["Delete conversation"] = "Usuń rozmowę";
+$a->strings["D, d M Y - g:i A"] = "D, d M R - g:m AM/PM";
+$a->strings["%d message"] = array(
+       0 => " %d wiadomość",
+       1 => " %d wiadomości",
+       2 => " %d wiadomości",
 );
-$a->strings["Done. You can now login with your username and password"] = "Wykonano. Teraz możesz się zalogować z użyciem loginu i hasła.";
-$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->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów";
-$a->strings["Everybody"] = "Wszyscy";
-$a->strings["edit"] = "edytuj";
-$a->strings["Edit group"] = "Edytuj grupy";
-$a->strings["Create a new group"] = "Stwórz nową grupę";
-$a->strings["Contacts not in any group"] = "Kontakt nie jest w żadnej grupie";
-$a->strings["Logout"] = "Wyloguj się";
-$a->strings["End this session"] = "Zakończ sesję";
-$a->strings["Status"] = "Status";
-$a->strings["Sign in"] = "Zaloguj się";
-$a->strings["Home Page"] = "Strona startowa";
-$a->strings["Create an account"] = "Załóż konto";
-$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
-$a->strings["Apps"] = "Aplikacje";
-$a->strings["Addon applications, utilities, games"] = "Wtyczki, aplikacje, narzędzia, gry";
-$a->strings["Search site content"] = "Przeszukaj zawartość strony";
-$a->strings["Conversations on this site"] = "Rozmowy na tej stronie";
-$a->strings["Directory"] = "Katalog";
-$a->strings["People directory"] = "";
-$a->strings["Conversations from your friends"] = "Rozmowy Twoich przyjaciół";
-$a->strings["Network Reset"] = "";
-$a->strings["Load Network page with no filters"] = "";
-$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych";
-$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia";
-$a->strings["Mark all system notifications seen"] = "";
-$a->strings["Private mail"] = "Prywatne maile";
-$a->strings["Inbox"] = "Odebrane";
-$a->strings["Outbox"] = "Wysłane";
-$a->strings["Manage"] = "Zarządzaj";
-$a->strings["Manage other pages"] = "Zarządzaj innymi stronami";
-$a->strings["Delegations"] = "";
-$a->strings["Profiles"] = "Profile";
-$a->strings["Manage/Edit Profiles"] = "";
-$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami";
-$a->strings["Site setup and configuration"] = "Konfiguracja i ustawienia instancji";
-$a->strings["Navigation"] = "";
-$a->strings["Site map"] = "";
-$a->strings["Add New Contact"] = "Dodaj nowy kontakt";
-$a->strings["Enter address or web location"] = "Wpisz adres lub lokalizację sieciową";
-$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Przykład: bob@przykład.com, http://przykład.com/barbara";
-$a->strings["%d invitation available"] = array(
-       0 => "%d zaproszenie dostępne",
-       1 => "%d zaproszeń dostępnych",
-       2 => "%d zaproszenia dostępne",
+$a->strings["Message not available."] = "Wiadomość nie jest dostępna.";
+$a->strings["Delete message"] = "Usuń wiadomość";
+$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "";
+$a->strings["Send Reply"] = "Odpowiedz";
+$a->strings["Mood"] = "Nastrój";
+$a->strings["Set your current mood and tell your friends"] = "Wskaż swój obecny nastrój i powiedz o tym znajomym";
+$a->strings["Search Results For:"] = "Szukaj wyników dla:";
+$a->strings["Commented Order"] = "Porządek wg komentarzy";
+$a->strings["Sort by Comment Date"] = "Sortuj po dacie komentarza";
+$a->strings["Posted Order"] = "Porządek wg wpisów";
+$a->strings["Sort by Post Date"] = "Sortuj po dacie posta";
+$a->strings["Personal"] = "Osobiste";
+$a->strings["Posts that mention or involve you"] = "";
+$a->strings["New"] = "Nowy";
+$a->strings["Activity Stream - by date"] = "";
+$a->strings["Shared Links"] = "Współdzielone linki";
+$a->strings["Interesting Links"] = "Interesujące linki";
+$a->strings["Starred"] = "";
+$a->strings["Favourite Posts"] = "Ulubione posty";
+$a->strings["Warning: This group contains %s member from an insecure network."] = array(
+       0 => "Uwaga: Ta grupa posiada %s członka z niezabezpieczonej sieci.",
+       1 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
+       2 => "Uwaga: Ta grupa posiada %s członków z niezabezpieczonej sieci.",
+);
+$a->strings["Private messages to this group are at risk of public disclosure."] = "Prywatne wiadomości do tej grupy mogą zostać publicznego ujawnienia";
+$a->strings["No such group"] = "Nie ma takiej grupy";
+$a->strings["Group is empty"] = "Grupa jest pusta";
+$a->strings["Group: "] = "Grupa:";
+$a->strings["Contact: "] = "Kontakt: ";
+$a->strings["Private messages to this person are at risk of public disclosure."] = "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione ";
+$a->strings["Invalid contact."] = "Zły kontakt";
+$a->strings["Not available."] = "Niedostępne.";
+$a->strings["Photo Albums"] = "Albumy zdjęć";
+$a->strings["Upload New Photos"] = "Wyślij nowe zdjęcie";
+$a->strings["Contact information unavailable"] = "Informacje o kontakcie nie dostępne.";
+$a->strings["Album not found."] = "Album nie znaleziony";
+$a->strings["Delete Album"] = "Usuń album";
+$a->strings["Do you really want to delete this photo album and all its photos?"] = "";
+$a->strings["Delete Photo"] = "Usuń zdjęcie";
+$a->strings["Do you really want to delete this photo?"] = "";
+$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "";
+$a->strings["a photo"] = "zdjęcie";
+$a->strings["Image file is empty."] = "Plik obrazka jest pusty.";
+$a->strings["No photos selected"] = "Nie zaznaczono zdjęć";
+$a->strings["Access to this item is restricted."] = "Dostęp do tego obiektu jest ograniczony.";
+$a->strings["You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."] = "";
+$a->strings["Upload Photos"] = "Prześlij zdjęcia";
+$a->strings["New album name: "] = "Nazwa nowego albumu:";
+$a->strings["or existing album name: "] = "lub istniejąca nazwa albumu:";
+$a->strings["Do not show a status post for this upload"] = "Nie pokazuj postów statusu dla tego wysłania";
+$a->strings["Permissions"] = "Uprawnienia";
+$a->strings["Private Photo"] = "";
+$a->strings["Public Photo"] = "";
+$a->strings["Edit Album"] = "Edytuj album";
+$a->strings["Show Newest First"] = "Najpierw pokaż najnowsze";
+$a->strings["Show Oldest First"] = "Najpierw pokaż najstarsze";
+$a->strings["View Photo"] = "Zobacz zdjęcie";
+$a->strings["Permission denied. Access to this item may be restricted."] = "Odmowa dostępu. Dostęp do tych danych może być ograniczony.";
+$a->strings["Photo not available"] = "Zdjęcie niedostępne";
+$a->strings["View photo"] = "Zobacz zdjęcie";
+$a->strings["Edit photo"] = "Edytuj zdjęcie";
+$a->strings["Use as profile photo"] = "Ustaw jako zdjęcie profilowe";
+$a->strings["Private Message"] = "Wiadomość prywatna";
+$a->strings["View Full Size"] = "Zobacz w pełnym rozmiarze";
+$a->strings["Tags: "] = "Tagi:";
+$a->strings["[Remove any tag]"] = "[Usunąć znacznik]";
+$a->strings["Rotate CW (right)"] = "";
+$a->strings["Rotate CCW (left)"] = "";
+$a->strings["New album name"] = "Nazwa nowego albumu";
+$a->strings["Caption"] = "Zawartość";
+$a->strings["Add a Tag"] = "Dodaj tag";
+$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping";
+$a->strings["Private photo"] = "";
+$a->strings["Public photo"] = "";
+$a->strings["I like this (toggle)"] = "Lubię to (zmień)";
+$a->strings["I don't like this (toggle)"] = "Nie lubię (zmień)";
+$a->strings["This is you"] = "To jesteś ty";
+$a->strings["Comment"] = "Komentarz";
+$a->strings["View Album"] = "Zobacz album";
+$a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia";
+$a->strings["Welcome to Friendica"] = "Witamy na Friendica";
+$a->strings["New Member Checklist"] = "Lista nowych członków";
+$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."] = "Chcielibyśmy zaproponować kilka porad i linków, które pomogą uczynić twoje doświadczenie przyjemnym. Kliknij dowolny element, aby odwiedzić odpowiednią stronę. Link do tej strony będzie widoczny na stronie głównej przez dwa tygodnie od czasu rejestracji, a następnie zniknie.";
+$a->strings["Getting Started"] = "";
+$a->strings["Friendica Walk-Through"] = "";
+$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."] = "";
+$a->strings["Go to Your Settings"] = "Idź do swoich ustawień";
+$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."] = "";
+$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"] = "Wyślij zdjęcie profilowe";
+$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."] = "Dodaj swoje zdjęcie profilowe jeśli jeszcze tego nie zrobiłeś. Twoje szanse na zwiększenie liczby znajomych rosną dziesięciokrotnie, kiedy na tym zdjęciu jesteś ty.";
+$a->strings["Edit Your Profile"] = "Edytuj własny 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."] = "";
+$a->strings["Profile Keywords"] = "Słowa kluczowe profilu";
+$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"] = "Łączę się...";
+$a->strings["Authorise the Facebook Connector if you currently have a Facebook account and we will (optionally) import all your Facebook friends and conversations."] = "";
+$a->strings["<em>If</em> this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "";
+$a->strings["Importing Emails"] = "Importuję emaile...";
+$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"] = "Idź do strony z Twoimi kontaktami";
+$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."] = "";
+$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."] = "";
+$a->strings["Finding New People"] = "Poszukiwanie Nowych Ludzi";
+$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."] = "";
+$a->strings["Group Your Contacts"] = "Grupuj Swoje kontakty";
+$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?"] = "Dlaczego moje posty nie są publiczne?";
+$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."] = "";
+$a->strings["Getting Help"] = "Otrzymywanie pomocy";
+$a->strings["Go to the Help Section"] = "Idź do części o pomocy";
+$a->strings["Our <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "";
+$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny";
+$a->strings["Tips for New Members"] = "Wskazówki dla nowych użytkowników";
+$a->strings["Invalid request identifier."] = "Niewłaściwy identyfikator wymagania.";
+$a->strings["Discard"] = "Odrzuć";
+$a->strings["System"] = "System";
+$a->strings["Show Ignored Requests"] = "Pokaż ignorowane żądania";
+$a->strings["Hide Ignored Requests"] = "Ukryj ignorowane żądania";
+$a->strings["Notification type: "] = "Typ zawiadomień:";
+$a->strings["Friend Suggestion"] = "Propozycja znajomych";
+$a->strings["suggested by %s"] = "zaproponowane przez %s";
+$a->strings["Post a new friend activity"] = "";
+$a->strings["if applicable"] = "jeśli odpowiednie";
+$a->strings["Claims to be known to you: "] = "Twierdzi, że go znasz:";
+$a->strings["yes"] = "tak";
+$a->strings["no"] = "nie";
+$a->strings["Approve as: "] = "Zatwierdź jako:";
+$a->strings["Friend"] = "Znajomy";
+$a->strings["Sharer"] = "";
+$a->strings["Fan/Admirer"] = "Fan";
+$a->strings["Friend/Connect Request"] = "Prośba o dodanie do przyjaciół/powiązanych";
+$a->strings["New Follower"] = "Nowy obserwator";
+$a->strings["No introductions."] = "Brak wstępu.";
+$a->strings["%s liked %s's post"] = "%s polubił wpis %s";
+$a->strings["%s disliked %s's post"] = "%s przestał lubić post %s";
+$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
+$a->strings["%s created a new post"] = "%s dodał nowy wpis";
+$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
+$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych";
+$a->strings["Network Notifications"] = "Powiadomienia z sieci";
+$a->strings["No more system notifications."] = "Nie ma więcej powiadomień systemowych.";
+$a->strings["System Notifications"] = "Powiadomienia systemowe";
+$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych";
+$a->strings["Personal Notifications"] = "Prywatne powiadomienia";
+$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu";
+$a->strings["Home Notifications"] = "Powiadomienia z instancji";
+$a->strings["Post successful."] = "Post dodany pomyślnie";
+$a->strings["OpenID protocol error. No ID returned."] = "";
+$a->strings["Account not found and OpenID registration is not permitted on this site."] = "";
+$a->strings["Image uploaded but image cropping failed."] = "Obrazek załadowany, ale oprawanie powiodła się.";
+$a->strings["Image size reduction [%s] failed."] = "Redukcja rozmiaru obrazka [%s] nie powiodła się.";
+$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "";
+$a->strings["Unable to process image"] = "Nie udało się przetworzyć obrazu.";
+$a->strings["Upload File:"] = "Wyślij plik:";
+$a->strings["Select a profile:"] = "Wybierz profil:";
+$a->strings["skip this step"] = "Pomiń ten krok";
+$a->strings["select a photo from your photo albums"] = "wybierz zdjęcie z twojego albumu";
+$a->strings["Crop Image"] = "Przytnij zdjęcie";
+$a->strings["Please adjust the image cropping for optimum viewing."] = "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania.";
+$a->strings["Done Editing"] = "Zakończ Edycję ";
+$a->strings["Image uploaded successfully."] = "Zdjęcie wczytano pomyślnie ";
+$a->strings["%d comment"] = array(
+       0 => " %d komentarz",
+       1 => " %d komentarzy",
+       2 => " %d komentarzy",
 );
-$a->strings["Find People"] = "Znajdź ludzi";
-$a->strings["Enter name or interest"] = "Wpisz nazwę lub zainteresowanie";
-$a->strings["Connect/Follow"] = "Połącz/Obserwuj";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo:  Jan Kowalski, Wędkarstwo";
-$a->strings["Random Profile"] = "Domyślny profil";
-$a->strings["Networks"] = "Sieci";
-$a->strings["All Networks"] = "Wszystkie Sieci";
-$a->strings["Saved Folders"] = "Zapisane foldery";
-$a->strings["Everything"] = "Wszystko";
-$a->strings["Categories"] = "Kategorie";
-$a->strings["Logged out."] = "Wyloguj";
-$a->strings["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:"] = "";
-$a->strings["Miscellaneous"] = "Różny";
-$a->strings["year"] = "rok";
-$a->strings["month"] = "miesiąc";
-$a->strings["day"] = "dzień";
-$a->strings["never"] = "nigdy";
-$a->strings["less than a second ago"] = "mniej niż sekundę temu";
-$a->strings["week"] = "tydzień";
-$a->strings["hour"] = "godzina";
-$a->strings["hours"] = "godziny";
-$a->strings["minute"] = "minuta";
-$a->strings["minutes"] = "minuty";
-$a->strings["second"] = "sekunda";
-$a->strings["seconds"] = "sekundy";
-$a->strings["%1\$d %2\$s ago"] = "";
-$a->strings["%s's birthday"] = "";
-$a->strings["Happy Birthday %s"] = "";
-$a->strings["Image/photo"] = "Obrazek/zdjęcie";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "";
-$a->strings["$1 wrote:"] = "$1 napisał:";
-$a->strings["Encrypted content"] = "";
-$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["Network Sidebar Widgets"] = "";
-$a->strings["Search by Date"] = "Szukanie wg daty";
-$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)"] = "";
-$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["Cannot locate DNS info for database server '%s'"] = "Nie można zlokalizować serwera DNS dla bazy danych '%s'";
-$a->strings["[no subject]"] = "[bez tematu]";
-$a->strings["Visible to everybody"] = "Widoczny dla wszystkich";
-$a->strings["Friendica Notification"] = "Powiadomienia Friendica";
-$a->strings["Thank You,"] = "Dziękuję,";
-$a->strings["%s Administrator"] = "%s administrator";
-$a->strings["%s <!item_type!>"] = "";
-$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s";
-$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
-$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
-$a->strings["a private message"] = "prywatna wiadomość";
-$a->strings["Please visit %s to view and/or reply to your private messages."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na twoje prywatne wiadomości";
-$a->strings["%1\$s commented on [url=%2\$s]a %3\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]%3\$s's %4\$s[/url]"] = "";
-$a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
-$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
-$a->strings["%s commented on an item/conversation you have been following."] = "%s skomentował rozmowę którą śledzisz";
-$a->strings["Please visit %s to view and/or reply to the conversation."] = "Odwiedź %s żeby zobaczyć i/lub odpowiedzieć na rozmowę";
-$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu";
-$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
-$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
-$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię";
-$a->strings["%1\$s tagged you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
-$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
-$a->strings["%1\$s poked you at %2\$s"] = "";
-$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "";
-$a->strings["[Friendica:Notify] %s tagged your post"] = "";
-$a->strings["%1\$s tagged your post at %2\$s"] = "";
-$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "";
-$a->strings["[Friendica:Notify] Introduction received"] = "";
-$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "";
-$a->strings["You may visit their profile at %s"] = "Możesz obejrzeć ich profile na %s";
-$a->strings["Please visit %s to approve or reject the introduction."] = "Odwiedż %s aby zatwierdzić lub odrzucić przedstawienie.";
-$a->strings["[Friendica:Notify] Friend suggestion received"] = "";
-$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "";
-$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "";
-$a->strings["Name:"] = "Imię:";
-$a->strings["Photo:"] = "Zdjęcie:";
-$a->strings["Please visit %s to approve or reject the suggestion."] = "";
-$a->strings["Connect URL missing."] = "";
-$a->strings["This site is not configured to allow communications with other networks."] = "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami";
-$a->strings["No compatible communication protocols or feeds were discovered."] = "";
-$a->strings["The profile address specified does not provide adequate information."] = "Dany adres profilu nie dostarcza odpowiednich informacji.";
-$a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało znalezione.";
-$a->strings["No browser URL could be matched to this address."] = "Przeglądarka WWW nie może odnaleźć podanego adresu";
-$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."] = "";
-$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie.";
-$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.";
-$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych";
-$a->strings["following"] = "następujący";
-$a->strings["A new person is sharing with you at "] = "";
-$a->strings["You have a new follower at "] = "";
-$a->strings["Do you really want to delete this item?"] = "";
-$a->strings["Archives"] = "Archiwum";
-$a->strings["An invitation is required."] = "Wymagane zaproszenie.";
-$a->strings["Invitation could not be verified."] = "Zaproszenie niezweryfikowane.";
-$a->strings["Invalid OpenID url"] = "Nieprawidłowy adres url OpenID";
-$a->strings["Please enter the required information."] = "Wprowadź wymagane informacje";
-$a->strings["Please use a shorter name."] = "Użyj dłuższej nazwy.";
-$a->strings["Name too short."] = "Nazwa jest za krótka.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Zdaje mi się że to nie jest twoje pełne Imię(Nazwisko).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Twoja domena internetowa nie jest obsługiwana na tej stronie.";
-$a->strings["Not a valid email address."] = "Niepoprawny adres e mail..";
-$a->strings["Cannot use that email."] = "Nie możesz użyć tego e-maila. ";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Twój login może składać się tylko z \"a-z\",  \"0-9\", \"-\", \"_\", i musi mieć na początku literę.";
-$a->strings["Nickname is already registered. Please choose another."] = "Ten login jest zajęty. Wybierz inny.";
-$a->strings["Nickname was once registered here and may not be re-used. Please choose another."] = "Ten nick był już zarejestrowany na tej stronie i nie może być użyty ponownie.";
-$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń.";
-$a->strings["An error occurred during registration. Please try again."] = "Wystąpił bład podczas rejestracji, Spróbuj ponownie.";
-$a->strings["An error occurred creating your default profile. Please try again."] = "Wystąpił błąd podczas tworzenia profilu. Spróbuj ponownie.";
-$a->strings["Welcome "] = "Witaj ";
-$a->strings["Please upload a profile photo."] = "Proszę dodać zdjęcie profilowe.";
-$a->strings["Welcome back "] = "Witaj ponownie ";
-$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["stopped following"] = "przestań obserwować";
-$a->strings["Poke"] = "Zaczepka";
-$a->strings["View Status"] = "Zobacz status";
-$a->strings["View Profile"] = "Zobacz profil";
-$a->strings["View Photos"] = "Zobacz zdjęcia";
-$a->strings["Network Posts"] = "";
-$a->strings["Edit Contact"] = "Edytuj kontakt";
-$a->strings["Send PM"] = "Wyślij prywatną wiadomość";
-$a->strings["%1\$s poked %2\$s"] = "";
-$a->strings["post/item"] = "";
-$a->strings["%1\$s marked %2\$s's %3\$s as favorite"] = "";
-$a->strings["Categories:"] = "Kategorie:";
-$a->strings["Filed under:"] = "";
-$a->strings["remove"] = "usuń";
-$a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy";
-$a->strings["Follow Thread"] = "";
-$a->strings["%s likes this."] = "%s lubi to.";
-$a->strings["%s doesn't like this."] = "%s nie lubi tego.";
-$a->strings["<span  %1\$s>%2\$d people</span> like this"] = "";
-$a->strings["<span  %1\$s>%2\$d people</span> don't like this"] = "";
-$a->strings["and"] = "i";
-$a->strings[", and %d other people"] = ", i %d innych ludzi";
-$a->strings["%s like this."] = "%s lubi to.";
-$a->strings["%s don't like this."] = "%s nie lubi tego.";
-$a->strings["Visible to <strong>everybody</strong>"] = "Widoczne dla <strong>wszystkich</strong>";
-$a->strings["Please enter a video link/URL:"] = "Podaj link do filmu";
-$a->strings["Please enter an audio link/URL:"] = "Podaj link do muzyki";
-$a->strings["Tag term:"] = "";
-$a->strings["Where are you right now?"] = "Gdzie teraz jesteś?";
-$a->strings["Delete item(s)?"] = "";
-$a->strings["Post to Email"] = "Wyślij poprzez email";
-$a->strings["permissions"] = "zezwolenia";
-$a->strings["Post to Groups"] = "";
-$a->strings["Post to Contacts"] = "";
-$a->strings["Private post"] = "";
-$a->strings["Click here to upgrade."] = "Kliknij tu, aby zaktualizować.";
-$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["like"] = "polub";
+$a->strings["dislike"] = "Nie lubię";
+$a->strings["Share this"] = "Udostępnij to";
+$a->strings["share"] = "udostępnij";
+$a->strings["Bold"] = "Pogrubienie";
+$a->strings["Italic"] = "Kursywa";
+$a->strings["Underline"] = "Podkreślenie";
+$a->strings["Quote"] = "Cytat";
+$a->strings["Code"] = "Kod";
+$a->strings["Image"] = "Obraz";
+$a->strings["Link"] = "Link";
+$a->strings["Video"] = "Video";
+$a->strings["add star"] = "dodaj gwiazdkę";
+$a->strings["remove star"] = "anuluj gwiazdkę";
+$a->strings["toggle star status"] = "włącz status gwiazdy";
+$a->strings["starred"] = "";
+$a->strings["add tag"] = "dodaj tag";
+$a->strings["save to folder"] = "zapisz w folderze";
+$a->strings["to"] = "do";
+$a->strings["Wall-to-Wall"] = "Wall-to-Wall";
+$a->strings["via Wall-To-Wall:"] = "via Wall-To-Wall:";
+$a->strings["via"] = "";
+$a->strings["Theme settings"] = "Ustawienia motywu";
+$a->strings["Set resize level for images in posts and comments (width and height)"] = "";
+$a->strings["Set font-size for posts and comments"] = "Ustaw rozmiar fontów dla postów i komentarzy";
+$a->strings["Set theme width"] = "";
+$a->strings["Color scheme"] = "Zestaw kolorów";
+$a->strings["Set line-height for posts and comments"] = "";
+$a->strings["Set resolution for middle column"] = "";
+$a->strings["Set color scheme"] = "Zestaw kolorów";
+$a->strings["Set twitter search term"] = "";
+$a->strings["Set zoomfactor for Earth Layer"] = "";
+$a->strings["Set longitude (X) for Earth Layers"] = "";
+$a->strings["Set latitude (Y) for Earth Layers"] = "";
+$a->strings["Community Pages"] = "Strony społecznościowe";
+$a->strings["Earth Layers"] = "";
+$a->strings["Community Profiles"] = "";
+$a->strings["Help or @NewHere ?"] = "";
+$a->strings["Connect Services"] = "Połączone serwisy";
+$a->strings["Find Friends"] = "Znajdź znajomych";
+$a->strings["Last tweets"] = "Ostatnie tweetnięcie";
+$a->strings["Last users"] = "Ostatni użytkownicy";
+$a->strings["Last photos"] = "Ostatnie zdjęcia";
+$a->strings["Last likes"] = "Ostatnie polubienia";
+$a->strings["Your contacts"] = "Twoje kontakty";
+$a->strings["Local Directory"] = "";
+$a->strings["Set zoomfactor for Earth Layers"] = "";
+$a->strings["Last Tweets"] = "Ostatnie Tweetnięcie";
+$a->strings["Show/hide boxes at right-hand column:"] = "";
+$a->strings["Set colour scheme"] = "Zestaw kolorów";
+$a->strings["Alignment"] = "Wyrównanie";
+$a->strings["Left"] = "Lewo";
+$a->strings["Center"] = "Środek";
+$a->strings["Posts font size"] = "";
+$a->strings["Textareas font size"] = "";
+$a->strings["toggle mobile"] = "";
 $a->strings["Delete this item?"] = "Usunąć ten element?";
 $a->strings["show fewer"] = "Pokaż mniej";
 $a->strings["Update %s failed. See error logs."] = "";
@@ -2152,21 +2176,3 @@ $a->strings["Status Messages and Posts"] = "Status wiadomości i postów";
 $a->strings["Profile Details"] = "Szczegóły profilu";
 $a->strings["Events and Calendar"] = "Wydarzenia i kalendarz";
 $a->strings["Only You Can See This"] = "Tylko ty możesz to zobaczyć";
-$a->strings["via"] = "";
-$a->strings["toggle mobile"] = "";
-$a->strings["Bg settings updated."] = "";
-$a->strings["Bg Settings"] = "";
-$a->strings["Post to Drupal"] = "Opublikuj na Drupal";
-$a->strings["Drupal Post Settings"] = "Ustawienia wpisów Drupala";
-$a->strings["Enable Drupal Post Plugin"] = "Włącz plugin wpisów Drupala";
-$a->strings["Drupal username"] = "Użytkownik Drupala";
-$a->strings["Drupal password"] = "hasło do Drupal";
-$a->strings["Post Type - article,page,or blog"] = "";
-$a->strings["Drupal site URL"] = "Adres strony Drupala";
-$a->strings["Drupal site uses clean URLS"] = "";
-$a->strings["Post to Drupal by default"] = "";
-$a->strings["OEmbed settings updated"] = "";
-$a->strings["Use OEmbed for YouTube videos"] = "";
-$a->strings["URL to embed:"] = "URL do osadzenia";
-$a->strings["Tumblr login"] = "Login Tumblr";
-$a->strings["Tumblr password"] = "Hasło do twojego Tumblra";
index fb71c004a107485315fc6ca7be00b34356f081f8..80b27a1a621940e73e3cb32badf7f6a419d8a8ee 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_pt_br")) {
 function string_plural_select_pt_br($n){
        return ($n > 1);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Publicado com sucesso.";
 $a->strings["[Embedded content - reload page to view]"] = "[Conteúdo incorporado - recarregue a página para ver]";
index 4111fa8e534d001b226004273f800d996a8034ea..1311cb69ebfb285cd06e3daa2e9c0322df2d52a6 100644 (file)
@@ -1,8 +1,9 @@
 <?php
 
+if(! function_exists("string_plural_select_ru")) {
 function string_plural_select_ru($n){
        return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);;
-}
+}}
 ;
 $a->strings["Post successful."] = "Успешно добавлено.";
 $a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]";
index c1442202d16911c5ca5ccd22b626332e188f9ca6..30678f1bf2ea2bfe0dfecc371db417af9aacd927 100644 (file)
@@ -90,7 +90,7 @@
        {{include file="field_checkbox.tpl" field=$thread_allow}}
        {{include file="field_checkbox.tpl" field=$newuser_private}}
        {{include file="field_checkbox.tpl" field=$enotify_no_content}}
-       
+       {{include file="field_checkbox.tpl" field=$private_addons}}     
        <div class="submit"><input type="submit" name="page_site" value="{{$submit}}" /></div>
        
        <h3>{{$advanced}}</h3>
index e3fc14ac3bd9e703319cb89c2acdb13094f29c1b..80345b78bd6b98374790fedb27cc4b88f5dcc2c8 100644 (file)
@@ -75,7 +75,7 @@
                                                <td class='register_date'>{{$u.register_date}}</td>
                                                <td class='login_date'>{{$u.login_date}}</td>
                                                <td class='lastitem_date'>{{$u.lastitem_date}}</td>
-                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.accountexpired}}{{$account_expired}}{{/if}}</td>
+                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</td>
                                                <td class="checkbox"> 
                                     {{if $u.is_admin}}
                                         &nbsp;
index 336467924939bf41f469c299dcb27cfc32b614f0..c3abbeb9c089a865e1dca395b966df2a0ef97c92 100644 (file)
@@ -70,7 +70,7 @@
                                                <td class='register_date'>$u.register_date</td>
                                                <td class='login_date'>$u.login_date</td>
                                                <td class='lastitem_date'>$u.lastitem_date</td>
-                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }}</td>
+                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }}</td>
                                                <td class="checkbox"> 
                                     {{ if $u.is_admin }}
                                         &nbsp;
index 886b67dcdf4a34ac85194fd8acd1bba14ebc3a89..df795a1f4f17b2933047f414a06ddf7c9341a05c 100644 (file)
@@ -75,7 +75,7 @@
                                                <td class='register_date'>{{$u.register_date}}</td>
                                                <td class='login_date'>{{$u.login_date}}</td>
                                                <td class='lastitem_date'>{{$u.lastitem_date}}</td>
-                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}}</td>
+                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</td>
                                                <td class="checkbox"> 
                                     {{if $u.is_admin}}
                                         &nbsp;
index 609fd5ad2a76a36b4ad848597d2f5ae4b3c1c20b..b455a8c2ee81487619ae34732e0eeeba75aaab90 100644 (file)
@@ -69,7 +69,7 @@
                                                <td class='register_date'>$u.register_date</td>
                                                <td class='login_date'>$u.login_date</td>
                                                <td class='lastitem_date'>$u.lastitem_date</td>
-                                               <td class='login_date'>$u.page_flags</td>
+                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }}</td>
                                                <td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_$u.uid" name="user[]" value="$u.uid"/></td>
                                                <td class="tools" style="width:60px;">
                                                        <a href="$baseurl/admin/users/block/$u.uid?t=$form_security_token" title='{{ if $u.blocked }}$unblock{{ else }}$block{{ endif }}'><span class='icon block {{ if $u.blocked==0 }}dim{{ endif }}'></span></a>
index f870e0e7712617a94c85ef403bdc32744e12d7ce..8127944a33480598d7bb4cc886a5d9c73c8eb5c9 100644 (file)
@@ -74,7 +74,7 @@
                                                <td class='register_date'>{{$u.register_date}}</td>
                                                <td class='login_date'>{{$u.login_date}}</td>
                                                <td class='lastitem_date'>{{$u.lastitem_date}}</td>
-                                               <td class='login_date'>{{$u.page_flags}}</td>
+                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</td>
                                                <td class="checkbox"><input type="checkbox" class="users_ckbx" id="id_user_{{$u.uid}}" name="user[]" value="{{$u.uid}}"/></td>
                                                <td class="tools" style="width:60px;">
                                                        <a href="{{$baseurl}}/admin/users/block/{{$u.uid}}?t={{$form_security_token}}" title='{{if $u.blocked}}{{$unblock}}{{else}}{{$block}}{{/if}}'><span class='icon block {{if $u.blocked==0}}dim{{/if}}'></span></a>
index 0d1193434815da36aa71f0cdc81e087fb725184a..a3f6d2416f16568b4c873d729db8475fc20471fc 100644 (file)
@@ -70,7 +70,7 @@
                                                <td class='register_date'>$u.register_date</td>
                                                <td class='login_date'>$u.login_date</td>
                                                <td class='lastitem_date'>$u.lastitem_date</td>
-                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }}</td>
+                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }}</td>
                                                <td class="checkbox"> 
                                     {{ if $u.is_admin }}
                                         &nbsp;
index 9d74a5e77e4f31d4ee63b4dfaad721a740470e4b..4d88670c172a4fb754c1c1806acdc2f85848fc18 100644 (file)
@@ -75,7 +75,7 @@
                                                <td class='register_date'>{{$u.register_date}}</td>
                                                <td class='login_date'>{{$u.login_date}}</td>
                                                <td class='lastitem_date'>{{$u.lastitem_date}}</td>
-                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}}</td>
+                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</td>
                                                <td class="checkbox"> 
                                     {{if $u.is_admin}}
                                         &nbsp;
index 0d1193434815da36aa71f0cdc81e087fb725184a..a3f6d2416f16568b4c873d729db8475fc20471fc 100644 (file)
@@ -70,7 +70,7 @@
                                                <td class='register_date'>$u.register_date</td>
                                                <td class='login_date'>$u.login_date</td>
                                                <td class='lastitem_date'>$u.lastitem_date</td>
-                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }}</td>
+                                               <td class='login_date'>$u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }}</td>
                                                <td class="checkbox"> 
                                     {{ if $u.is_admin }}
                                         &nbsp;
index 9d74a5e77e4f31d4ee63b4dfaad721a740470e4b..4d88670c172a4fb754c1c1806acdc2f85848fc18 100644 (file)
@@ -75,7 +75,7 @@
                                                <td class='register_date'>{{$u.register_date}}</td>
                                                <td class='login_date'>{{$u.login_date}}</td>
                                                <td class='lastitem_date'>{{$u.lastitem_date}}</td>
-                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}}</td>
+                                               <td class='login_date'>{{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}}</td>
                                                <td class="checkbox"> 
                                     {{if $u.is_admin}}
                                         &nbsp;
diff --git a/view/theme/smoothly/images/larrow.gif b/view/theme/smoothly/images/larrow.gif
new file mode 100644 (file)
index 0000000..15bb1ea
Binary files /dev/null and b/view/theme/smoothly/images/larrow.gif differ
diff --git a/view/theme/smoothly/images/rarrow.gif b/view/theme/smoothly/images/rarrow.gif
new file mode 100644 (file)
index 0000000..2237fc6
Binary files /dev/null and b/view/theme/smoothly/images/rarrow.gif differ
index 281890f4236f5e1d1a0e76bf2936c5ffe9eea901..a2c143d39c22974d00b37fd24a6d667951179ee6 100644 (file)
@@ -1,5 +1,4 @@
 <img style="float:left; margin:5px 20px 0 0" src="/images/friendica-128.png" title="friendica">
-
 <div class="login-form">
 <form action="$dest_url" method="post" >
        <input type="hidden" name="auth-params" value="login" />
@@ -34,5 +33,4 @@
        
 </form>
 </div>
-
 <script type="text/javascript">window.loginName = "$lname.0";</script>
index 0860f66f1e00f2407bc2b2b9473c424aa79e5e00..e8ade8250957a41d04a2f47c4aeb407fce541e84 100644 (file)
@@ -4,7 +4,6 @@
  *
  *}}
 <img style="float:left; margin:5px 20px 0 0" src="/images/friendica-128.png" title="friendica">
-
 <div class="login-form">
 <form action="{{$dest_url}}" method="post" >
        <input type="hidden" name="auth-params" value="login" />
@@ -39,5 +38,4 @@
        
 </form>
 </div>
-
 <script type="text/javascript">window.loginName = "{{$lname.0}}";</script>
index ae703a85606094d5f33ac1c8c7b1d2dbe19cf15f..f652de90b8c1aa6adc14ff81508f10e6232a7765 100644 (file)
@@ -21,7 +21,7 @@
                                <a href="{{$item.owner_url}}" title="{{$item.olinktitle}}" class="wall-item-photo-link" id="wall-item-ownerphoto-link-{{$item.id}}">
                                <img src="{{$item.owner_photo}}" class="wall-item-photo{{$item.osparkle}}" id="wall-item-ownerphoto-{{$item.id}}" style="height: 80px; width: 80px;" alt="{{$item.owner_name}}" /></a>
                        </div>
-                       <div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="{{$item.wall}}" /></div>
+                       <div class="wall-item-arrowphoto-wrapper" ><img src="view/theme/smoothly/images/larrow.gif" alt="{{$item.wall}}" /></div>
                        {{/if}}
                        <div class="wall-item-photo-wrapper mframe{{if $item.owner_url}} wwfrom{{/if}}" id="wall-item-photo-wrapper-{{$item.id}}" 
                                onmouseover="if (typeof t{{$item.id}} != 'undefined') clearTimeout(t{{$item.id}}); openMenu('wall-item-photo-menu-button-{{$item.id}}')"
index cbce920e73d667a88779ac540cc1f9993bcb946f..285072d709f49cbe5b41bc1b68470f0f174ca4d1 100644 (file)
@@ -2,7 +2,7 @@
        style.css
        Smoothly
    
-       Created by alex@friendica.pixelbits.de on 2013-02-21
+       Created by alex@friendica.pixelbits.de on 2013-02-27
 
 ** Colors ** 
 Blue links - #1873a2
@@ -634,8 +634,9 @@ aside h4 {
 
 .vcard #profile-photo-wrapper {
        margin: 10px 0px;
-       padding: 6px;
-       width: auto;
+       padding: 1px;
+       width: 200px;
+       height: 200px;
        background: none repeat scroll 0 0 #FFFFFF;
        border: 1px solid #C5C5C5;
        box-shadow: 0 0 8px #BDBDBD;
@@ -1403,10 +1404,18 @@ ul .sidebar-group-li .icon {
        width: 100px;
 }
 
+.wall-item-photo {
+       width: 81px !important; 
+       height: 81px !important;
+       border-radius: 5px;
+               -webkit-border-radius: 5px;
+               -moz-border-radius: 5px;
+}
+
 .wall-item-photo-wrapper { 
        width: 80px; 
        height: 80px;
-       padding: 4px;
+       padding: 1px;
        position: relative;
        border: 1px solid #dddddd;
        border-radius: 5px;
@@ -1589,14 +1598,13 @@ ul .sidebar-group-li .icon {
 }
 
 .wallwall .wwto {
-       left: -10px;
-       margin: 0;
+       left: 0px;
        position: absolute;
-       top: 65px;
-       width: 30px;
+       margin: -1px;
+       top: 63px;
        z-index: 900;
-       width: 30px;
-       height: 30px;    
+       width: 0px;
+       height: 0px;    
 }
 
 .wallwall .wwto img { 
@@ -1610,8 +1618,8 @@ ul .sidebar-group-li .icon {
 
 .wall-item-arrowphoto-wrapper {
        position: absolute;
-       left: 20px;
-       top: 70px;
+       left: 30px;
+       top: 67px;
        z-index: 950;
 }
 
@@ -1725,8 +1733,8 @@ code {
 }
 
 .wall-item-outside-wrapper.comment .wall-item-photo {
-       width: 40px!important;
-       height: 40px!important;
+       width: 41px!important;
+       height: 41px!important;
 }
 
 .wall-item-outside-wrapper.comment .wall-item-photo-wrapper {
@@ -2013,8 +2021,11 @@ div[id$="wrapper"] br {
 }
 
 .photo {
-       height: 191px!important;
-       width: 191px!important;
+       height: 200px!important;
+       width: 200px!important;
+       border-radius: 5px;
+               -moz-border-radius: 5px;
+               -webkit-border-radius: 5px;
 }
 
 #side-bar-photos-albums {
index c88b2782740299c7b69ddeb4b118d116402a6ae6..849ad80a322893e30214d96a77b41717afba1e04 100644 (file)
@@ -3,7 +3,7 @@
 /*
  * Name: Smoothly
  * Description: Like coffee with milk. Theme optimized for iPad[2].
- * Version: Version 0.21
+ * Version: Version 2013-02-27.1
  * Author: Alex <https://friendica.pixelbits.de/profile/alex>
  * Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
  * Screenshot: <a href="screenshot.png">Screenshot</a>
index 7987a36492c88121d973f19b39d8d81a87680d47..6d1e9477543903033370e38324bed4b9cca7f38d 100644 (file)
@@ -16,7 +16,7 @@
                                <a href="$item.owner_url" title="$item.olinktitle" class="wall-item-photo-link" id="wall-item-ownerphoto-link-$item.id">
                                <img src="$item.owner_photo" class="wall-item-photo$item.osparkle" id="wall-item-ownerphoto-$item.id" style="height: 80px; width: 80px;" alt="$item.owner_name" /></a>
                        </div>
-                       <div class="wall-item-arrowphoto-wrapper" ><img src="images/larrow.gif" alt="$item.wall" /></div>
+                       <div class="wall-item-arrowphoto-wrapper" ><img src="view/theme/smoothly/images/larrow.gif" alt="$item.wall" /></div>
                        {{ endif }}
                        <div class="wall-item-photo-wrapper mframe{{ if $item.owner_url }} wwfrom{{ endif }}" id="wall-item-photo-wrapper-$item.id" 
                                onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
index 14c96d812b613c485f346de535c777282e51e900..be21353e9d0ed4527c1d7238ab552846dd2b04f5 100644 (file)
@@ -10,8 +10,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: friendica\n"
 "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2013-02-07 10:00-0800\n"
-"PO-Revision-Date: 2013-02-10 11:56+0000\n"
+"POT-Creation-Date: 2013-02-26 00:00-0800\n"
+"PO-Revision-Date: 2013-02-26 03:52+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"
 "MIME-Version: 1.0\n"
@@ -20,204 +20,55 @@ msgstr ""
 "Language: zh_CN\n"
 "Plural-Forms: nplurals=1; plural=0;\n"
 
-#: ../../mod/oexchange.php:25
-msgid "Post successful."
-msgstr "评论发表了。"
-
-#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18
-#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41
-#: ../../mod/update_display.php:22
-msgid "[Embedded content - reload page to view]"
-msgstr "[嵌入内容-重新加载页为看]"
-
-#: ../../mod/crepair.php:102
-msgid "Contact settings applied."
-msgstr "熟人设置应用了。"
-
-#: ../../mod/crepair.php:104
-msgid "Contact update failed."
-msgstr "熟人更新失败。"
-
-#: ../../mod/crepair.php:115 ../../mod/wall_attach.php:55
-#: ../../mod/fsuggest.php:78 ../../mod/events.php:140 ../../mod/api.php:26
-#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:1041
-#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
-#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:542
-#: ../../mod/settings.php:547 ../../mod/manage.php:96 ../../mod/network.php:6
-#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
-#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
-#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
-#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
-#: ../../mod/register.php:40 ../../mod/regmod.php:118 ../../mod/item.php:139
-#: ../../mod/item.php:155 ../../mod/mood.php:114
-#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
-#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
-#: ../../mod/message.php:38 ../../mod/message.php:174
-#: ../../mod/allfriends.php:9 ../../mod/nogroup.php:25
-#: ../../mod/wall_upload.php:66 ../../mod/follow.php:9
-#: ../../mod/display.php:180 ../../mod/profiles.php:146
-#: ../../mod/profiles.php:567 ../../mod/delegate.php:6
-#: ../../mod/suggest.php:56 ../../mod/invite.php:15 ../../mod/invite.php:101
-#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:512
-#: ../../addon/facebook/facebook.php:518 ../../addon/fbpost/fbpost.php:170
-#: ../../addon/fbpost/fbpost.php:176
-#: ../../addon/dav/friendica/layout.fnk.php:354
-#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4015
-#: ../../index.php:341 ../../addon.old/facebook/facebook.php:510
-#: ../../addon.old/facebook/facebook.php:516
-#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
-#: ../../addon.old/dav/friendica/layout.fnk.php:354
-msgid "Permission denied."
-msgstr "权限不够。"
-
-#: ../../mod/crepair.php:129 ../../mod/fsuggest.php:20
-#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:118
-msgid "Contact not found."
-msgstr "没找到熟人。"
-
-#: ../../mod/crepair.php:135
-msgid "Repair Contact Settings"
-msgstr "维修熟人设置"
-
-#: ../../mod/crepair.php:137
-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>,你输入错的信息你和熟人的沟通会弄失灵了。"
-
-#: ../../mod/crepair.php:138
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页"
-
-#: ../../mod/crepair.php:144
-msgid "Return to contact editor"
-msgstr "回归熟人处理器"
-
-#: ../../mod/crepair.php:148 ../../mod/settings.php:562
-#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
-msgid "Name"
-msgstr "名字"
-
-#: ../../mod/crepair.php:149
-msgid "Account Nickname"
-msgstr "帐户昵称"
-
-#: ../../mod/crepair.php:150
-msgid "@Tagname - overrides Name/Nickname"
-msgstr "@Tagname越过名/昵称"
-
-#: ../../mod/crepair.php:151
-msgid "Account URL"
-msgstr "帐户URL"
-
-#: ../../mod/crepair.php:152
-msgid "Friend Request URL"
-msgstr "朋友请求URL"
-
-#: ../../mod/crepair.php:153
-msgid "Friend Confirm URL"
-msgstr "朋友确认URL"
-
-#: ../../mod/crepair.php:154
-msgid "Notification Endpoint URL"
-msgstr "通知端URL"
+#: ../../addon.old/altpager/altpager.php:46
+#: ../../addon/altpager/altpager.php:46
+msgid "Altpager settings updated."
+msgstr "Altpager设置更新了。"
 
-#: ../../mod/crepair.php:155
-msgid "Poll/Feed URL"
-msgstr "喂URL"
+#: ../../addon.old/altpager/altpager.php:79
+#: ../../addon/altpager/altpager.php:83
+msgid "Alternate Pagination Setting"
+msgstr "供替换的分页设置"
 
-#: ../../mod/crepair.php:156
-msgid "New photo from this URL"
-msgstr "新照片从这个URL"
+#: ../../addon.old/altpager/altpager.php:81
+#: ../../addon/altpager/altpager.php:85
+msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
+msgstr "用到「更新」和「更旧」页代替页数?"
 
-#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:478 ../../mod/photos.php:1075
-#: ../../mod/photos.php:1196 ../../mod/photos.php:1498
-#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
-#: ../../mod/photos.php:1676 ../../mod/install.php:248
-#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:710 ../../mod/contacts.php:386
-#: ../../mod/settings.php:560 ../../mod/settings.php:670
-#: ../../mod/settings.php:739 ../../mod/settings.php:811
-#: ../../mod/settings.php:1037 ../../mod/manage.php:110 ../../mod/group.php:87
-#: ../../mod/mood.php:137 ../../mod/message.php:335 ../../mod/message.php:564
-#: ../../mod/admin.php:461 ../../mod/admin.php:728 ../../mod/admin.php:865
-#: ../../mod/admin.php:1068 ../../mod/admin.php:1155
-#: ../../mod/profiles.php:626 ../../mod/invite.php:140
-#: ../../addon/fromgplus/fromgplus.php:44
-#: ../../addon/facebook/facebook.php:621
-#: ../../addon/snautofollow/snautofollow.php:64
-#: ../../addon/fbpost/fbpost.php:280 ../../addon/yourls/yourls.php:76
-#: ../../addon/ljpost/ljpost.php:93 ../../addon/nsfw/nsfw.php:88
-#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
-#: ../../addon/uhremotestorage/uhremotestorage.php:89
-#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/remote_permissions/remote_permissions.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:196
-#: ../../addon/startpage/startpage.php:92
-#: ../../addon/geonames/geonames.php:187
-#: ../../addon/forumlist/forumlist.php:178
-#: ../../addon/impressum/impressum.php:83
-#: ../../addon/notimeline/notimeline.php:64 ../../addon/blockem/blockem.php:57
-#: ../../addon/qcomment/qcomment.php:61
-#: ../../addon/openstreetmap/openstreetmap.php:94
-#: ../../addon/group_text/group_text.php:84
-#: ../../addon/libravatar/libravatar.php:99
-#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
-#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
-#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:99
-#: ../../addon/gravatar/gravatar.php:95
-#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
-#: ../../addon/jappixmini/jappixmini.php:307
-#: ../../addon/statusnet/statusnet.php:290
-#: ../../addon/statusnet/statusnet.php:304
-#: ../../addon/statusnet/statusnet.php:330
-#: ../../addon/statusnet/statusnet.php:337
-#: ../../addon/statusnet/statusnet.php:374
-#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
-#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
-#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
-#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:191
-#: ../../addon/twitter/twitter.php:229 ../../addon/twitter/twitter.php:556
-#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
-#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
-#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:642
-#: ../../view/theme/diabook/config.php:152
-#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:604 ../../addon.old/fromgplus/fromgplus.php:40
-#: ../../addon.old/facebook/facebook.php:619
-#: ../../addon.old/snautofollow/snautofollow.php:64
-#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
-#: ../../addon.old/yourls/yourls.php:76 ../../addon.old/ljpost/ljpost.php:93
-#: ../../addon.old/nsfw/nsfw.php:88 ../../addon.old/page/page.php:211
-#: ../../addon.old/planets/planets.php:158
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
-#: ../../addon.old/randplace/randplace.php:177
-#: ../../addon.old/dwpost/dwpost.php:93 ../../addon.old/drpost/drpost.php:110
-#: ../../addon.old/startpage/startpage.php:92
-#: ../../addon.old/geonames/geonames.php:187
-#: ../../addon.old/oembed.old/oembed.php:41
-#: ../../addon.old/forumlist/forumlist.php:175
-#: ../../addon.old/impressum/impressum.php:83
-#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/altpager/altpager.php:87 ../../addon.old/bg/bg.php:90
+#: ../../addon.old/blackout/blackout.php:98
 #: ../../addon.old/blockem/blockem.php:57
-#: ../../addon.old/qcomment/qcomment.php:61
-#: ../../addon.old/openstreetmap/openstreetmap.php:70
-#: ../../addon.old/group_text/group_text.php:84
-#: ../../addon.old/libravatar/libravatar.php:99
-#: ../../addon.old/libertree/libertree.php:90
-#: ../../addon.old/altpager/altpager.php:87
-#: ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/blogger/blogger.php:102
+#: ../../addon.old/drpost/drpost.php:110 ../../addon.old/dwpost/dwpost.php:93
 #: ../../addon.old/editplain/editplain.php:84
-#: ../../addon.old/blackout/blackout.php:98
+#: ../../addon.old/facebook/facebook.php:619
+#: ../../addon.old/fbpost/fbpost.php:226
+#: ../../addon.old/forumlist/forumlist.php:175
+#: ../../addon.old/fromapp/fromapp.php:77
+#: ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../addon.old/geonames/geonames.php:187 ../../addon.old/gnot/gnot.php:88
 #: ../../addon.old/gravatar/gravatar.php:95
-#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/group_text/group_text.php:84
 #: ../../addon.old/ijpost/ijpost.php:93
+#: ../../addon.old/impressum/impressum.php:83 ../../addon.old/irc/irc.php:55
 #: ../../addon.old/jappixmini/jappixmini.php:307
+#: ../../addon.old/libertree/libertree.php:90
+#: ../../addon.old/libravatar/libravatar.php:99
+#: ../../addon.old/ljpost/ljpost.php:93 ../../addon.old/mathjax/mathjax.php:42
+#: ../../addon.old/notimeline/notimeline.php:64
+#: ../../addon.old/nsfw/nsfw.php:88
+#: ../../addon.old/numfriends/numfriends.php:85
+#: ../../addon.old/oembed.old/oembed.php:41
+#: ../../addon.old/openstreetmap/openstreetmap.php:70
+#: ../../addon.old/page/page.php:211
+#: ../../addon.old/pageheader/pageheader.php:55
+#: ../../addon.old/piwik/piwik.php:89 ../../addon.old/planets/planets.php:158
+#: ../../addon.old/posterous/posterous.php:103
+#: ../../addon.old/qcomment/qcomment.php:61
+#: ../../addon.old/randplace/randplace.php:177
+#: ../../addon.old/showmore/showmore.php:48
+#: ../../addon.old/snautofollow/snautofollow.php:64
+#: ../../addon.old/startpage/startpage.php:92
 #: ../../addon.old/statusnet/statusnet.php:278
 #: ../../addon.old/statusnet/statusnet.php:292
 #: ../../addon.old/statusnet/statusnet.php:318
@@ -225,9713 +76,9880 @@ msgstr "新照片从这个URL"
 #: ../../addon.old/statusnet/statusnet.php:353
 #: ../../addon.old/statusnet/statusnet.php:576
 #: ../../addon.old/tumblr/tumblr.php:90
-#: ../../addon.old/numfriends/numfriends.php:85
-#: ../../addon.old/gnot/gnot.php:88 ../../addon.old/wppost/wppost.php:110
-#: ../../addon.old/showmore/showmore.php:48 ../../addon.old/piwik/piwik.php:89
 #: ../../addon.old/twitter/twitter.php:180
 #: ../../addon.old/twitter/twitter.php:209
-#: ../../addon.old/twitter/twitter.php:394 ../../addon.old/irc/irc.php:55
-#: ../../addon.old/fromapp/fromapp.php:77
-#: ../../addon.old/blogger/blogger.php:102
-#: ../../addon.old/posterous/posterous.php:103
+#: ../../addon.old/twitter/twitter.php:394
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:89
+#: ../../addon.old/wppost/wppost.php:110 ../../addon.old/yourls/yourls.php:76
+#: ../../addon/altpager/altpager.php:91 ../../addon/altpager/altpager.php:98
+#: ../../addon/blackout/blackout.php:99 ../../addon/blockem/blockem.php:57
+#: ../../addon/blogger/blogger.php:102 ../../addon/dwpost/dwpost.php:93
+#: ../../addon/editplain/editplain.php:84
+#: ../../addon/facebook/facebook.php:621 ../../addon/fbpost/fbpost.php:280
+#: ../../addon/forumlist/forumlist.php:178 ../../addon/fromapp/fromapp.php:77
+#: ../../addon/fromgplus/fromgplus.php:44
+#: ../../addon/geonames/geonames.php:187 ../../addon/gnot/gnot.php:88
+#: ../../addon/gravatar/gravatar.php:95
+#: ../../addon/group_text/group_text.php:84 ../../addon/ijpost/ijpost.php:93
+#: ../../addon/impressum/impressum.php:83 ../../addon/irc/irc.php:55
+#: ../../addon/jappixmini/jappixmini.php:307
+#: ../../addon/libertree/libertree.php:90
+#: ../../addon/libravatar/libravatar.php:99 ../../addon/ljpost/ljpost.php:93
+#: ../../addon/mathjax/mathjax.php:42 ../../addon/notimeline/notimeline.php:64
+#: ../../addon/nsfw/nsfw.php:88 ../../addon/numfriends/numfriends.php:85
+#: ../../addon/openstreetmap/openstreetmap.php:94
+#: ../../addon/page/page.php:211 ../../addon/pageheader/pageheader.php:55
+#: ../../addon/piwik/piwik.php:89 ../../addon/planets/planets.php:158
+#: ../../addon/posterous/posterous.php:103
+#: ../../addon/qcomment/qcomment.php:61
+#: ../../addon/randplace/randplace.php:177
+#: ../../addon/remote_permissions/remote_permissions.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:196
+#: ../../addon/showmore/showmore.php:48
+#: ../../addon/snautofollow/snautofollow.php:64
+#: ../../addon/startpage/startpage.php:92
+#: ../../addon/statusnet/statusnet.php:290
+#: ../../addon/statusnet/statusnet.php:304
+#: ../../addon/statusnet/statusnet.php:330
+#: ../../addon/statusnet/statusnet.php:337
+#: ../../addon/statusnet/statusnet.php:374
+#: ../../addon/statusnet/statusnet.php:752 ../../addon/tumblr/tumblr.php:233
+#: ../../addon/twitter/twitter.php:191 ../../addon/twitter/twitter.php:229
+#: ../../addon/twitter/twitter.php:556
+#: ../../addon/uhremotestorage/uhremotestorage.php:89
+#: ../../addon/wppost/wppost.php:110 ../../addon/yourls/yourls.php:76
+#: ../../mod/profiles.php:626 ../../mod/admin.php:475 ../../mod/admin.php:744
+#: ../../mod/admin.php:882 ../../mod/admin.php:1082 ../../mod/admin.php:1169
+#: ../../mod/contacts.php:386 ../../mod/settings.php:560
+#: ../../mod/settings.php:670 ../../mod/settings.php:739
+#: ../../mod/settings.php:811 ../../mod/settings.php:1037
+#: ../../mod/crepair.php:166 ../../mod/poke.php:199 ../../mod/events.php:478
+#: ../../mod/fsuggest.php:107 ../../mod/group.php:87 ../../mod/install.php:248
+#: ../../mod/install.php:286 ../../mod/invite.php:140
+#: ../../mod/localtime.php:45 ../../mod/manage.php:110
+#: ../../mod/message.php:335 ../../mod/message.php:564 ../../mod/mood.php:137
+#: ../../mod/photos.php:1078 ../../mod/photos.php:1199
+#: ../../mod/photos.php:1501 ../../mod/photos.php:1552
+#: ../../mod/photos.php:1596 ../../mod/photos.php:1679
+#: ../../mod/content.php:733 ../../object/Item.php:643
+#: ../../view/theme/cleanzero/config.php:80
+#: ../../view/theme/diabook/config.php:152
+#: ../../view/theme/diabook/theme.php:642 ../../view/theme/dispy/config.php:70
+#: ../../view/theme/quattro/config.php:64
 msgid "Submit"
 msgstr "提交"
 
-#: ../../mod/help.php:79
-msgid "Help:"
-msgstr "帮助:"
-
-#: ../../mod/help.php:84 ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../include/nav.php:113 ../../addon.old/dav/friendica/layout.fnk.php:225
-msgid "Help"
-msgstr "帮助"
-
-#: ../../mod/help.php:90 ../../index.php:226
-msgid "Not Found"
-msgstr "未发现"
+#: ../../addon.old/bg/bg.php:51
+msgid "Bg settings updated."
+msgstr "Bg设置更新了"
 
-#: ../../mod/help.php:93 ../../index.php:229
-msgid "Page not found."
-msgstr "页发现。"
+#: ../../addon.old/bg/bg.php:82
+msgid "Bg Settings"
+msgstr "Bg设置"
 
-#: ../../mod/wall_attach.php:69
-#, php-format
-msgid "File exceeds size limit of %d"
-msgstr "文件数目超过最多%d"
+#: ../../addon.old/bg/bg.php:84 ../../addon.old/numfriends/numfriends.php:79
+#: ../../addon/numfriends/numfriends.php:79
+msgid "How many contacts to display on profile sidebar"
+msgstr "多少熟人表示在简介工具栏"
 
-#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
-msgid "File upload failed."
-msgstr "文件上传失败。"
+#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51
+msgid "\"Blockem\" Settings"
+msgstr "「Blockem」配置"
 
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "朋友建议发送了。"
+#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53
+msgid "Comma separated profile URLS to block"
+msgstr "逗号分简介URL为栏"
 
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "建议朋友们"
+#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70
+msgid "BLOCKEM Settings saved."
+msgstr "「Blockem」配置保存了。"
 
-#: ../../mod/fsuggest.php:99
+#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105
 #, php-format
-msgid "Suggest a friend for %s"
-msgstr "建议朋友给%s"
+msgid "Blocked %s - Click to open/close"
+msgstr "%s拦了-点击为开关"
 
-#: ../../mod/events.php:66
-msgid "Event title and start time are required."
-msgstr "项目标题和开始时间是必须的。"
+#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160
+msgid "Unblock Author"
+msgstr "不拦作家"
 
-#: ../../mod/events.php:291
-msgid "l, F j"
-msgstr "l, F j"
+#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162
+msgid "Block Author"
+msgstr "拦作家"
 
-#: ../../mod/events.php:313
-msgid "Edit event"
-msgstr "编项目"
+#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194
+msgid "blockem settings updated"
+msgstr "blockem设置更新了"
 
-#: ../../mod/events.php:335 ../../include/text.php:1258
-msgid "link to source"
-msgstr "链接到来源"
+#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42
+msgid "Post to blogger"
+msgstr "转播到blogger"
 
-#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91
-#: ../../include/nav.php:79 ../../boot.php:1857
-msgid "Events"
-msgstr "事件"
+#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74
+msgid "Blogger Post Settings"
+msgstr "Blogger转播设置"
 
-#: ../../mod/events.php:371
-msgid "Create New Event"
-msgstr "造成新的项目"
+#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76
+msgid "Enable Blogger Post Plugin"
+msgstr "使Blogger转播插件可用"
 
-#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263
-#: ../../addon.old/dav/friendica/layout.fnk.php:263
-msgid "Previous"
-msgstr "上"
+#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81
+msgid "Blogger username"
+msgstr "Blogger用户名"
 
-#: ../../mod/events.php:373 ../../mod/install.php:207
-#: ../../addon/dav/friendica/layout.fnk.php:266
-#: ../../addon.old/dav/friendica/layout.fnk.php:266
-msgid "Next"
-msgstr "下"
+#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86
+msgid "Blogger password"
+msgstr "Blogger密码"
 
-#: ../../mod/events.php:446
-msgid "hour:minute"
-msgstr "小时:分钟"
+#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91
+msgid "Blogger API URL"
+msgstr "Blogger API URL"
 
-#: ../../mod/events.php:456
-msgid "Event details"
-msgstr "项目内容"
-
-#: ../../mod/events.php:457
-#, php-format
-msgid "Format is %s %s. Starting date and Title are required."
-msgstr "形式是%s%s。开始时间和标题是必须的。"
-
-#: ../../mod/events.php:459
-msgid "Event Starts:"
-msgstr "事件开始:"
-
-#: ../../mod/events.php:459 ../../mod/events.php:473
-msgid "Required"
-msgstr "必须的"
-
-#: ../../mod/events.php:462
-msgid "Finish date/time is not known or not relevant"
-msgstr "结束日/时未知或无关"
-
-#: ../../mod/events.php:464
-msgid "Event Finishes:"
-msgstr "事件结束:"
-
-#: ../../mod/events.php:467
-msgid "Adjust for viewer timezone"
-msgstr "调为观众的时间"
-
-#: ../../mod/events.php:469
-msgid "Description:"
-msgstr "描述:"
-
-#: ../../mod/events.php:471 ../../mod/directory.php:134
-#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
-#: ../../boot.php:1379
-msgid "Location:"
-msgstr "位置:"
-
-#: ../../mod/events.php:473
-msgid "Title:"
-msgstr "标题:"
-
-#: ../../mod/events.php:475
-msgid "Share this event"
-msgstr "分享这个项目"
-
-#: ../../mod/maintenance.php:5
-msgid "System down for maintenance"
-msgstr "系统关闭为了维持"
-
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/photos.php:202
-#: ../../mod/photos.php:289 ../../mod/editpost.php:148
-#: ../../mod/dfrn_request.php:848 ../../mod/contacts.php:249
-#: ../../mod/settings.php:561 ../../mod/settings.php:587
-#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
-#: ../../mod/message.php:212 ../../mod/suggest.php:32
-#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3897
-#: ../../include/conversation.php:1062
-#: ../../addon.old/js_upload/js_upload.php:45
-msgid "Cancel"
-msgstr "退消"
-
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "标签去除了"
-
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "去除项目标签"
-
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "选择标签去除"
-
-#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130
-#: ../../addon/dav/common/wdcal_edit.inc.php:468
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
-msgid "Remove"
-msgstr "移走"
-
-#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
-#, php-format
-msgid "%1$s welcomes %2$s"
-msgstr "%1$s欢迎%2$s"
+#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96
+msgid "Post to Blogger by default"
+msgstr "默认地转播到Blogger"
 
-#: ../../mod/api.php:76 ../../mod/api.php:102
-msgid "Authorize application connection"
-msgstr "授权应用连接"
+#: ../../addon.old/blogger/blogger.php:172
+#: ../../addon.old/drpost/drpost.php:184
+#: ../../addon.old/posterous/posterous.php:189
+#: ../../addon.old/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
+#: ../../addon/posterous/posterous.php:189 ../../addon/wppost/wppost.php:201
+msgid "Post from Friendica"
+msgstr "文章从Friendica"
 
-#: ../../mod/api.php:77
-msgid "Return to your app and insert this Securty Code:"
-msgstr "回归您的应用和输入这个安全密码:"
+#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15
+msgid "Report Bug"
+msgstr "报案程序错误"
 
-#: ../../mod/api.php:89
-msgid "Please login to continue."
-msgstr "请登记为继续。"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:28
+#: ../../addon.old/communityhome/twillingham/communityhome.php:34
+#: ../../addon.old/communityhome/communityhome.php:28
+#: ../../addon.old/communityhome/communityhome.php:34
+#: ../../addon/communityhome/communityhome.php:28
+#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
+#: ../../boot.php:1058
+msgid "Login"
+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 "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:29
+#: ../../addon.old/communityhome/communityhome.php:29
+#: ../../addon/communityhome/communityhome.php:29
+msgid "OpenID"
+msgstr "OpenID"
 
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
-#: ../../mod/contacts.php:246 ../../mod/settings.php:934
-#: ../../mod/settings.php:940 ../../mod/settings.php:948
-#: ../../mod/settings.php:952 ../../mod/settings.php:957
-#: ../../mod/settings.php:963 ../../mod/settings.php:969
-#: ../../mod/settings.php:975 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/settings.php:1009
-#: ../../mod/register.php:239 ../../mod/message.php:209
-#: ../../mod/profiles.php:606 ../../mod/suggest.php:29
-#: ../../include/items.php:3894
-msgid "Yes"
-msgstr "是"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:38
+#: ../../addon.old/communityhome/communityhome.php:38
+#: ../../addon/communityhome/communityhome.php:39
+msgid "Latest users"
+msgstr "最近用户"
 
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:837
-#: ../../mod/settings.php:934 ../../mod/settings.php:940
-#: ../../mod/settings.php:948 ../../mod/settings.php:952
-#: ../../mod/settings.php:957 ../../mod/settings.php:963
-#: ../../mod/settings.php:969 ../../mod/settings.php:975
-#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
-#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
-#: ../../mod/settings.php:1009 ../../mod/register.php:240
-#: ../../mod/profiles.php:607
-msgid "No"
-msgstr "否"
+#: ../../addon.old/communityhome/twillingham/communityhome.php:81
+#: ../../addon.old/communityhome/communityhome.php:81
+#: ../../addon/communityhome/communityhome.php:84
+msgid "Most active users"
+msgstr "最积极用户"
 
-#: ../../mod/photos.php:51 ../../boot.php:1850
-msgid "Photo Albums"
-msgstr "相册"
+#: ../../addon.old/communityhome/communityhome.php:98
+#: ../../addon/communityhome/communityhome.php:102
+msgid "Latest photos"
+msgstr "最近照片"
 
-#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1055
-#: ../../mod/photos.php:1180 ../../mod/photos.php:1203
-#: ../../mod/photos.php:1733 ../../mod/photos.php:1745
-#: ../../addon/communityhome/communityhome.php:115
-#: ../../view/theme/diabook/theme.php:492
 #: ../../addon.old/communityhome/communityhome.php:110
+#: ../../addon/communityhome/communityhome.php:115 ../../mod/photos.php:59
+#: ../../mod/photos.php:154 ../../mod/photos.php:1058
+#: ../../mod/photos.php:1183 ../../mod/photos.php:1206
+#: ../../mod/photos.php:1736 ../../mod/photos.php:1748
+#: ../../view/theme/diabook/theme.php:492
 msgid "Contact Photos"
 msgstr "熟人照片"
 
-#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792
-msgid "Upload New Photos"
-msgstr "上传新照片"
-
-#: ../../mod/photos.php:79 ../../mod/settings.php:23
-msgid "everybody"
-msgstr "每人"
-
-#: ../../mod/photos.php:143
-msgid "Contact information unavailable"
-msgstr "熟人信息不可用"
-
-#: ../../mod/photos.php:154 ../../mod/photos.php:722 ../../mod/photos.php:1180
-#: ../../mod/photos.php:1203 ../../mod/profile_photo.php:74
+#: ../../addon.old/communityhome/communityhome.php:111
+#: ../../addon/communityhome/communityhome.php:116 ../../include/user.php:325
+#: ../../include/user.php:332 ../../include/user.php:339
+#: ../../mod/photos.php:154 ../../mod/photos.php:725 ../../mod/photos.php:1183
+#: ../../mod/photos.php:1206 ../../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
-#: ../../addon/communityhome/communityhome.php:116
-#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:325
-#: ../../include/user.php:332 ../../include/user.php:339
-#: ../../addon.old/communityhome/communityhome.php:111
+#: ../../mod/profile_photo.php:305 ../../view/theme/diabook/theme.php:493
 msgid "Profile Photos"
 msgstr "简介照片"
 
-#: ../../mod/photos.php:164
-msgid "Album not found."
-msgstr "取回不了相册."
-
-#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197
-msgid "Delete Album"
-msgstr "删除相册"
+#: ../../addon.old/communityhome/communityhome.php:133
+#: ../../addon/communityhome/communityhome.php:141
+msgid "Latest likes"
+msgstr "最近喜欢"
 
-#: ../../mod/photos.php:197
-msgid "Do you really want to delete this photo album and all its photos?"
-msgstr "您真的想删除这个相册和所有里面的照相吗?"
+#: ../../addon.old/communityhome/communityhome.php:155
+#: ../../addon/communityhome/communityhome.php:163 ../../include/text.php:1554
+#: ../../include/conversation.php:118 ../../include/conversation.php:246
+#: ../../view/theme/diabook/theme.php:456
+msgid "event"
+msgstr "项目"
 
-#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499
-msgid "Delete Photo"
-msgstr "删除照片"
+#: ../../addon.old/communityhome/communityhome.php:158
+#: ../../addon.old/communityhome/communityhome.php:167
+#: ../../addon.old/facebook/facebook.php:1598
+#: ../../addon/communityhome/communityhome.php:166
+#: ../../addon/communityhome/communityhome.php:175
+#: ../../addon/facebook/facebook.php:1600 ../../include/diaspora.php:1874
+#: ../../include/conversation.php:121 ../../include/conversation.php:130
+#: ../../include/conversation.php:249 ../../include/conversation.php:258
+#: ../../mod/subthread.php:87 ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../mod/like.php:322 ../../view/theme/diabook/theme.php:459
+#: ../../view/theme/diabook/theme.php:468
+msgid "status"
+msgstr "现状"
 
-#: ../../mod/photos.php:284
-msgid "Do you really want to delete this photo?"
-msgstr "您真的想删除这个照相吗?"
+#: ../../addon.old/communityhome/communityhome.php:163
+#: ../../addon/communityhome/communityhome.php:171 ../../include/text.php:1556
+#: ../../include/diaspora.php:1874 ../../include/conversation.php:126
+#: ../../include/conversation.php:254 ../../mod/subthread.php:87
+#: ../../mod/tagger.php:62 ../../mod/like.php:151
+#: ../../view/theme/diabook/theme.php:464
+msgid "photo"
+msgstr "照片"
 
-#: ../../mod/photos.php:653
+#: ../../addon.old/communityhome/communityhome.php:172
+#: ../../addon.old/facebook/facebook.php:1602
+#: ../../addon/communityhome/communityhome.php:180
+#: ../../addon/facebook/facebook.php:1604 ../../include/diaspora.php:1890
+#: ../../include/conversation.php:137 ../../mod/like.php:168
+#: ../../view/theme/diabook/theme.php:473
 #, php-format
-msgid "%1$s was tagged in %2$s by %3$s"
-msgstr "%1$s被%3$s标签在%2$s"
+msgid "%1$s likes %2$s's %3$s"
+msgstr "%1$s喜欢%2$s的%3$s"
 
-#: ../../mod/photos.php:653
-msgid "a photo"
-msgstr "一张照片"
+#: ../../addon.old/communityhome/communityhome.php:179
+#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34
+#, php-format
+msgid "Welcome to %s"
+msgstr "%s欢迎你"
 
-#: ../../mod/photos.php:758 ../../addon/js_upload/js_upload.php:321
-#: ../../addon.old/js_upload/js_upload.php:315
-msgid "Image exceeds size limit of "
-msgstr "图片超出最大尺寸"
+#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
+#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
+msgid "Private Events"
+msgstr "私人项目"
 
-#: ../../mod/photos.php:766
-msgid "Image file is empty."
-msgstr "图片文件空的。"
+#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
+#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
+msgid "Private Addressbooks"
+msgstr "私人通讯录"
 
-#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153
-#: ../../mod/wall_upload.php:112
-msgid "Unable to process image."
-msgstr "处理不了图像."
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
+#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
+#: ../../addon/dav/common/wdcal_backend.inc.php:92
+#: ../../addon/dav/common/wdcal_backend.inc.php:166
+#: ../../addon/dav/common/wdcal_backend.inc.php:178
+#: ../../addon/dav/common/wdcal_backend.inc.php:206
+#: ../../addon/dav/common/wdcal_backend.inc.php:214
+#: ../../addon/dav/common/wdcal_backend.inc.php:229
+msgid "No access"
+msgstr "看不了"
 
-#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301
-#: ../../mod/wall_upload.php:138
-msgid "Image upload failed."
-msgstr "图像上载失败了."
+#: ../../addon.old/dav/common/wdcal_configuration.php:148
+#: ../../addon/dav/common/wdcal_configuration.php:148
+msgid "U.S. Time Format (mm/dd/YYYY)"
+msgstr "美国时间形式(月/日/年)"
 
-#: ../../mod/photos.php:911 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
-#: ../../mod/display.php:19 ../../mod/search.php:89 ../../mod/directory.php:31
-#: ../../addon/forumdirectory/forumdirectory.php:53
-msgid "Public access denied."
-msgstr "公众看拒绝"
+#: ../../addon.old/dav/common/wdcal_configuration.php:243
+#: ../../addon/dav/common/wdcal_configuration.php:243
+msgid "German Time Format (dd.mm.YYYY)"
+msgstr "德国时间形式(日/月/年)"
 
-#: ../../mod/photos.php:921
-msgid "No photos selected"
-msgstr "没有照片挑选了"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
+#: ../../addon/dav/common/wdcal_edit.inc.php:30
+#: ../../addon/dav/common/wdcal_edit.inc.php:738
+msgid "Could not open component for editing"
+msgstr "开不了部件为编辑"
 
-#: ../../mod/photos.php:1022
-msgid "Access to this item is restricted."
-msgstr "这个项目使用权限的。"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
+#: ../../addon.old/dav/friendica/layout.fnk.php:143
+#: ../../addon.old/dav/friendica/layout.fnk.php:422
+#: ../../addon/dav/common/wdcal_edit.inc.php:140
+#: ../../addon/dav/friendica/layout.fnk.php:143
+#: ../../addon/dav/friendica/layout.fnk.php:422
+msgid "Go back to the calendar"
+msgstr "返回日历"
 
-#: ../../mod/photos.php:1085
-#, php-format
-msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
-msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
+#: ../../addon/dav/common/wdcal_edit.inc.php:144
+msgid "Event data"
+msgstr "项目内容"
 
-#: ../../mod/photos.php:1120
-msgid "Upload Photos"
-msgstr "上传照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
+#: ../../addon.old/dav/friendica/main.php:239
+#: ../../addon/dav/common/wdcal_edit.inc.php:146
+#: ../../addon/dav/friendica/main.php:239
+msgid "Calendar"
+msgstr "日历"
 
-#: ../../mod/photos.php:1124 ../../mod/photos.php:1192
-msgid "New album name: "
-msgstr "新册名:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
+#: ../../addon/dav/common/wdcal_edit.inc.php:163
+msgid "Special color"
+msgstr "特别颜色"
 
-#: ../../mod/photos.php:1125
-msgid "or existing album name: "
-msgstr "或现有册名"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
+#: ../../addon/dav/common/wdcal_edit.inc.php:169
+msgid "Subject"
+msgstr "题目"
 
-#: ../../mod/photos.php:1126
-msgid "Do not show a status post for this upload"
-msgstr "别显示现状报到关于这个上传"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
+#: ../../addon/dav/common/wdcal_edit.inc.php:173
+msgid "Starts"
+msgstr "开始"
 
-#: ../../mod/photos.php:1128 ../../mod/photos.php:1494
-msgid "Permissions"
-msgstr "权利"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
+#: ../../addon/dav/common/wdcal_edit.inc.php:178
+msgid "Ends"
+msgstr "结束"
 
-#: ../../mod/photos.php:1137 ../../mod/photos.php:1503
-#: ../../mod/settings.php:1070
-msgid "Show to Groups"
-msgstr "给组表示"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
+#: ../../addon/dav/common/wdcal_edit.inc.php:183 ../../mod/profiles.php:367
+msgid "Location"
+msgstr "位置"
 
-#: ../../mod/photos.php:1138 ../../mod/photos.php:1504
-#: ../../mod/settings.php:1071
-msgid "Show to Contacts"
-msgstr "给熟人表示"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
+#: ../../addon/dav/common/wdcal_edit.inc.php:185
+msgid "Description"
+msgstr "描述"
 
-#: ../../mod/photos.php:1139
-msgid "Private Photo"
-msgstr "私人照相"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
+#: ../../addon/dav/common/wdcal_edit.inc.php:188
+msgid "Recurrence"
+msgstr "复发"
 
-#: ../../mod/photos.php:1140
-msgid "Public Photo"
-msgstr "公开照相"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
+#: ../../addon/dav/common/wdcal_edit.inc.php:190
+msgid "Frequency"
+msgstr "频率"
 
-#: ../../mod/photos.php:1207
-msgid "Edit Album"
-msgstr "编照片册"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
+#: ../../addon/dav/common/wdcal_edit.inc.php:191
+#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
+#: ../../mod/settings.php:732 ../../mod/settings.php:737
+msgid "None"
+msgstr "没有"
 
-#: ../../mod/photos.php:1213
-msgid "Show Newest First"
-msgstr "先表示最新的"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
+#: ../../addon/dav/common/wdcal_edit.inc.php:194
+#: ../../include/contact_selectors.php:59
+msgid "Daily"
+msgstr "每日"
 
-#: ../../mod/photos.php:1215
-msgid "Show Oldest First"
-msgstr "先表示最老的"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
+#: ../../addon/dav/common/wdcal_edit.inc.php:197
+#: ../../include/contact_selectors.php:60
+msgid "Weekly"
+msgstr "每周"
 
-#: ../../mod/photos.php:1248 ../../mod/photos.php:1775
-msgid "View Photo"
-msgstr "看照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
+#: ../../addon/dav/common/wdcal_edit.inc.php:200
+#: ../../include/contact_selectors.php:61
+msgid "Monthly"
+msgstr "每月"
 
-#: ../../mod/photos.php:1283
-msgid "Permission denied. Access to this item may be restricted."
-msgstr "无权利。用这个项目可能受限制。"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
+#: ../../addon/dav/common/wdcal_edit.inc.php:203
+msgid "Yearly"
+msgstr "一年一次"
 
-#: ../../mod/photos.php:1285
-msgid "Photo not available"
-msgstr "照片不可获得的 "
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
+#: ../../addon/dav/common/wdcal_edit.inc.php:214
+#: ../../include/datetime.php:288
+msgid "days"
+msgstr "天"
 
-#: ../../mod/photos.php:1341
-msgid "View photo"
-msgstr "看照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
+#: ../../addon/dav/common/wdcal_edit.inc.php:215
+#: ../../include/datetime.php:287
+msgid "weeks"
+msgstr "星期"
 
-#: ../../mod/photos.php:1341
-msgid "Edit photo"
-msgstr "编辑照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
+#: ../../addon/dav/common/wdcal_edit.inc.php:216
+#: ../../include/datetime.php:286
+msgid "months"
+msgstr "月"
 
-#: ../../mod/photos.php:1342
-msgid "Use as profile photo"
-msgstr "用为资料图"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
+#: ../../addon/dav/common/wdcal_edit.inc.php:217
+#: ../../include/datetime.php:285
+msgid "years"
+msgstr "年"
 
-#: ../../mod/photos.php:1348 ../../mod/content.php:620
-#: ../../object/Item.php:106
-msgid "Private Message"
-msgstr "私人的新闻"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
+#: ../../addon/dav/common/wdcal_edit.inc.php:218
+msgid "Interval"
+msgstr "间隔"
 
-#: ../../mod/photos.php:1367
-msgid "View Full Size"
-msgstr "看全尺寸"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
+#: ../../addon/dav/common/wdcal_edit.inc.php:218
+msgid "All %select% %time%"
+msgstr "每%select%%time%"
 
-#: ../../mod/photos.php:1441
-msgid "Tags: "
-msgstr "标签:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
+#: ../../addon/dav/common/wdcal_edit.inc.php:222
+#: ../../addon/dav/common/wdcal_edit.inc.php:260
+#: ../../addon/dav/common/wdcal_edit.inc.php:481
+msgid "Days"
+msgstr "天"
 
-#: ../../mod/photos.php:1444
-msgid "[Remove any tag]"
-msgstr "[删除任何标签]"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
+#: ../../addon/dav/common/wdcal_edit.inc.php:231
+#: ../../addon/dav/common/wdcal_edit.inc.php:254
+#: ../../addon/dav/common/wdcal_edit.inc.php:270
+#: ../../addon/dav/common/wdcal_edit.inc.php:293
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:1015
+msgid "Sunday"
+msgstr "星期天"
 
-#: ../../mod/photos.php:1484
-msgid "Rotate CW (right)"
-msgstr "顺时针地转动(左)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
+#: ../../addon/dav/common/wdcal_edit.inc.php:235
+#: ../../addon/dav/common/wdcal_edit.inc.php:274
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:1015
+msgid "Monday"
+msgstr "星期一"
 
-#: ../../mod/photos.php:1485
-msgid "Rotate CCW (left)"
-msgstr "反顺时针地转动(右)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
+#: ../../addon/dav/common/wdcal_edit.inc.php:238
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:1015
+msgid "Tuesday"
+msgstr "星期二"
 
-#: ../../mod/photos.php:1487
-msgid "New album name"
-msgstr "新册名"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
+#: ../../addon/dav/common/wdcal_edit.inc.php:241
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:1015
+msgid "Wednesday"
+msgstr "星期三"
 
-#: ../../mod/photos.php:1490
-msgid "Caption"
-msgstr "字幕"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
+#: ../../addon/dav/common/wdcal_edit.inc.php:244
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:1015
+msgid "Thursday"
+msgstr "星期四"
 
-#: ../../mod/photos.php:1492
-msgid "Add a Tag"
-msgstr "加标签"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
+#: ../../addon/dav/common/wdcal_edit.inc.php:247
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:1015
+msgid "Friday"
+msgstr "星期五"
 
-#: ../../mod/photos.php:1496
-msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
+#: ../../addon/dav/common/wdcal_edit.inc.php:250
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:1015
+msgid "Saturday"
+msgstr "星期六"
 
-#: ../../mod/photos.php:1505
-msgid "Private photo"
-msgstr "私人照相"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
+#: ../../addon/dav/common/wdcal_edit.inc.php:297
+msgid "First day of week:"
+msgstr "星期第一天:"
 
-#: ../../mod/photos.php:1506
-msgid "Public photo"
-msgstr "公开照相"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
+#: ../../addon/dav/common/wdcal_edit.inc.php:350
+#: ../../addon/dav/common/wdcal_edit.inc.php:373
+msgid "Day of month"
+msgstr "月里天数"
 
-#: ../../mod/photos.php:1526 ../../mod/content.php:684
-#: ../../object/Item.php:204
-msgid "I like this (toggle)"
-msgstr "æ\88\91å\96\9c欢è¿\99(交æ\9b¿)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
+#: ../../addon/dav/common/wdcal_edit.inc.php:354
+msgid "#num#th of each month"
+msgstr "æ¯\8fæ\9c\88第#num#个"
 
-#: ../../mod/photos.php:1527 ../../mod/content.php:685
-#: ../../object/Item.php:205
-msgid "I don't like this (toggle)"
-msgstr "æ\88\91ä¸\8då\96\9c欢è¿\99(交æ\9b¿)"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
+#: ../../addon/dav/common/wdcal_edit.inc.php:357
+msgid "#num#th-last of each month"
+msgstr "æ¯\8fæ\9c\88第#num#个æ\9c\80å\90\8e"
 
-#: ../../mod/photos.php:1528 ../../include/conversation.php:1023
-msgid "Share"
-msgstr "分享"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
+#: ../../addon/dav/common/wdcal_edit.inc.php:360
+msgid "#num#th #wkday# of each month"
+msgstr "每月第#num#个#wkday#"
 
-#: ../../mod/photos.php:1529 ../../mod/editpost.php:124
-#: ../../mod/content.php:499 ../../mod/content.php:883
-#: ../../mod/wallmessage.php:156 ../../mod/message.php:334
-#: ../../mod/message.php:565 ../../include/conversation.php:646
-#: ../../include/conversation.php:1042 ../../object/Item.php:293
-msgid "Please wait"
-msgstr "请等一下"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
+#: ../../addon/dav/common/wdcal_edit.inc.php:363
+msgid "#num#th-last #wkday# of each month"
+msgstr "每月第#num#个最后#wkday#"
 
-#: ../../mod/photos.php:1546 ../../mod/photos.php:1590
-#: ../../mod/photos.php:1673 ../../mod/content.php:707
-#: ../../object/Item.php:601
-msgid "This is you"
-msgstr "这是你"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
+#: ../../addon.old/dav/friendica/layout.fnk.php:255
+#: ../../addon/dav/common/wdcal_edit.inc.php:372
+#: ../../addon/dav/friendica/layout.fnk.php:255
+msgid "Month"
+msgstr "月"
 
-#: ../../mod/photos.php:1548 ../../mod/photos.php:1592
-#: ../../mod/photos.php:1675 ../../mod/content.php:709 ../../boot.php:641
-#: ../../object/Item.php:290 ../../object/Item.php:603
-msgid "Comment"
-msgstr "评论"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
+#: ../../addon/dav/common/wdcal_edit.inc.php:377
+msgid "#num#th of the given month"
+msgstr "月第#num#个天"
 
-#: ../../mod/photos.php:1550 ../../mod/photos.php:1594
-#: ../../mod/photos.php:1677 ../../mod/editpost.php:145
-#: ../../mod/content.php:719 ../../include/conversation.php:1059
-#: ../../object/Item.php:613
-msgid "Preview"
-msgstr "预演"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
+#: ../../addon/dav/common/wdcal_edit.inc.php:380
+msgid "#num#th-last of the given month"
+msgstr "月第#num#个最后天"
 
-#: ../../mod/photos.php:1634 ../../mod/content.php:439
-#: ../../mod/content.php:741 ../../mod/settings.php:623
-#: ../../mod/group.php:171 ../../mod/admin.php:735
-#: ../../include/conversation.php:570 ../../object/Item.php:120
-msgid "Delete"
-msgstr "删除"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
+#: ../../addon/dav/common/wdcal_edit.inc.php:383
+msgid "#num#th #wkday# of the given month"
+msgstr "月第#num#个#wkday#"
 
-#: ../../mod/photos.php:1781
-msgid "View Album"
-msgstr "看照片册"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
+#: ../../addon/dav/common/wdcal_edit.inc.php:386
+msgid "#num#th-last #wkday# of the given month"
+msgstr "月第#num#个最后#wkday#"
 
-#: ../../mod/photos.php:1790
-msgid "Recent Photos"
-msgstr "最近的照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
+#: ../../addon/dav/common/wdcal_edit.inc.php:413
+msgid "Repeat until"
+msgstr "重复到"
 
-#: ../../mod/community.php:23
-msgid "Not available."
-msgstr "不可用的"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
+#: ../../addon/dav/common/wdcal_edit.inc.php:417
+msgid "Infinite"
+msgstr "无限的"
 
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
-#: ../../include/nav.php:128
-msgid "Community"
-msgstr "社会"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
+#: ../../addon/dav/common/wdcal_edit.inc.php:420
+msgid "Until the following date"
+msgstr "到下个日期"
 
-#: ../../mod/community.php:61 ../../mod/community.php:86
-#: ../../mod/search.php:162 ../../mod/search.php:188
-msgid "No results."
-msgstr "没有结果"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
+#: ../../addon/dav/common/wdcal_edit.inc.php:423
+msgid "Number of times"
+msgstr "多少次"
 
-#: ../../mod/friendica.php:55
-msgid "This is Friendica, version"
-msgstr "这是Friendica,版本"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
+#: ../../addon/dav/common/wdcal_edit.inc.php:429
+msgid "Exceptions"
+msgstr "除外"
 
-#: ../../mod/friendica.php:56
-msgid "running at web location"
-msgstr "运作再网址"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
+#: ../../addon/dav/common/wdcal_edit.inc.php:432
+msgid "none"
+msgstr "没有"
 
-#: ../../mod/friendica.php:58
-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工程。"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
+#: ../../addon/dav/common/wdcal_edit.inc.php:449
+msgid "Notification"
+msgstr "通知"
 
-#: ../../mod/friendica.php:60
-msgid "Bug reports and issues: please visit"
-msgstr "问题报案:请去"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
+#: ../../addon/dav/common/wdcal_edit.inc.php:466
+msgid "Notify by"
+msgstr "用地方法为通知"
 
-#: ../../mod/friendica.php:61
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
-"dot com"
-msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:468
+#: ../../addon/dav/common/wdcal_edit.inc.php:468 ../../mod/delegate.php:130
+#: ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "移走"
 
-#: ../../mod/friendica.php:75
-msgid "Installed plugins/addons/apps:"
-msgstr "安装的插件/加件/应用:"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
+#: ../../addon/dav/common/wdcal_edit.inc.php:469
+msgid "E-Mail"
+msgstr "电子邮件"
 
-#: ../../mod/friendica.php:88
-msgid "No installed plugins/addons/apps"
-msgstr "没有安装的插件/应用"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
+#: ../../addon/dav/common/wdcal_edit.inc.php:470
+msgid "On Friendica / Display"
+msgstr "在Friendica/表示"
 
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "项目没找到"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
+#: ../../addon/dav/common/wdcal_edit.inc.php:474
+msgid "Time"
+msgstr "时间"
 
-#: ../../mod/editpost.php:39
-msgid "Edit post"
-msgstr "编辑文章"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
+#: ../../addon/dav/common/wdcal_edit.inc.php:478
+msgid "Hours"
+msgstr "小时"
 
-#: ../../mod/editpost.php:109 ../../mod/content.php:728
-#: ../../mod/settings.php:622 ../../object/Item.php:110
-msgid "Edit"
-msgstr "编辑"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
+#: ../../addon/dav/common/wdcal_edit.inc.php:479
+msgid "Minutes"
+msgstr "分钟"
 
-#: ../../mod/editpost.php:110 ../../mod/wallmessage.php:154
-#: ../../mod/message.php:332 ../../mod/message.php:562
-#: ../../include/conversation.php:1024
-msgid "Upload photo"
-msgstr "上传照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
+#: ../../addon/dav/common/wdcal_edit.inc.php:480
+msgid "Seconds"
+msgstr "秒"
 
-#: ../../mod/editpost.php:111 ../../include/conversation.php:1025
-msgid "upload photo"
-msgstr "上传照片"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
+#: ../../addon/dav/common/wdcal_edit.inc.php:482
+msgid "Weeks"
+msgstr "周"
 
-#: ../../mod/editpost.php:112 ../../include/conversation.php:1026
-msgid "Attach file"
-msgstr "附上文件"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
+#: ../../addon/dav/common/wdcal_edit.inc.php:485
+msgid "before the"
+msgstr "前"
 
-#: ../../mod/editpost.php:113 ../../include/conversation.php:1027
-msgid "attach file"
-msgstr "附上文件"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
+#: ../../addon/dav/common/wdcal_edit.inc.php:486
+msgid "start of the event"
+msgstr "项目开始"
 
-#: ../../mod/editpost.php:114 ../../mod/wallmessage.php:155
-#: ../../mod/message.php:333 ../../mod/message.php:563
-#: ../../include/conversation.php:1028
-msgid "Insert web link"
-msgstr "插入网页环节"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
+#: ../../addon/dav/common/wdcal_edit.inc.php:487
+msgid "end of the event"
+msgstr "项目结束"
 
-#: ../../mod/editpost.php:115 ../../include/conversation.php:1029
-msgid "web link"
-msgstr "网页环节"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
+#: ../../addon/dav/common/wdcal_edit.inc.php:492
+msgid "Add a notification"
+msgstr "加一个通知"
 
-#: ../../mod/editpost.php:116 ../../include/conversation.php:1030
-msgid "Insert video link"
-msgstr "插入视频环节"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
+#: ../../addon/dav/common/wdcal_edit.inc.php:687
+msgid "The event #name# will start at #date"
+msgstr "项目#name#开始在#date"
 
-#: ../../mod/editpost.php:117 ../../include/conversation.php:1031
-msgid "video link"
-msgstr "视频环节"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
+#: ../../addon/dav/common/wdcal_edit.inc.php:696
+msgid "#name# is about to begin."
+msgstr "#name#快开始。"
 
-#: ../../mod/editpost.php:118 ../../include/conversation.php:1032
-msgid "Insert audio link"
-msgstr "插入录音环节"
+#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
+#: ../../addon/dav/common/wdcal_edit.inc.php:769
+msgid "Saved"
+msgstr "保存了"
 
-#: ../../mod/editpost.php:119 ../../include/conversation.php:1033
-msgid "audio link"
-msgstr "录音环节"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
+msgid "Private Calendar"
+msgstr "私人日历"
 
-#: ../../mod/editpost.php:120 ../../include/conversation.php:1034
-msgid "Set your location"
-msgstr "设定您的位置"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
+msgid "Friendica Events: Mine"
+msgstr "Friendica项目:我的"
 
-#: ../../mod/editpost.php:121 ../../include/conversation.php:1035
-msgid "set location"
-msgstr "指定位置"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
+msgid "Friendica Events: Contacts"
+msgstr "Friendica项目:熟人"
 
-#: ../../mod/editpost.php:122 ../../include/conversation.php:1036
-msgid "Clear browser location"
-msgstr "清空浏览器位置"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
+msgid "Private Addresses"
+msgstr "私人地址"
 
-#: ../../mod/editpost.php:123 ../../include/conversation.php:1037
-msgid "clear location"
-msgstr "清理出位置"
+#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
+#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
+msgid "Friendica Contacts"
+msgstr "Friendica熟人"
 
-#: ../../mod/editpost.php:125 ../../include/conversation.php:1043
-msgid "Permission settings"
-msgstr "权设置"
+#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
+msgid "Friendica-Native events"
+msgstr "本Friendica项目"
 
-#: ../../mod/editpost.php:133 ../../include/conversation.php:1052
-msgid "CC: email addresses"
-msgstr "抄送: 电子邮件地址"
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
+msgid "Friendica-Contacts"
+msgstr "Friendica熟人"
 
-#: ../../mod/editpost.php:134 ../../include/conversation.php:1053
-msgid "Public post"
-msgstr "公开的消息"
+#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
+msgid "Your Friendica-Contacts"
+msgstr "您的Friendica熟人"
 
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1039
-msgid "Set title"
-msgstr "指定标题"
+#: ../../addon.old/dav/friendica/layout.fnk.php:99
+#: ../../addon.old/dav/friendica/layout.fnk.php:136
+#: ../../addon/dav/friendica/layout.fnk.php:99
+#: ../../addon/dav/friendica/layout.fnk.php:136
+msgid ""
+"Something went wrong when trying to import the file. Sorry. Maybe some "
+"events were imported anyway."
+msgstr "进口文件出了问题。不好意思。可能一些项目却是成功地进口了。"
 
-#: ../../mod/editpost.php:139 ../../include/conversation.php:1041
-msgid "Categories (comma-separated list)"
-msgstr "种类(逗号分隔单)"
+#: ../../addon.old/dav/friendica/layout.fnk.php:131
+#: ../../addon/dav/friendica/layout.fnk.php:131
+msgid "Something went wrong when trying to import the file. Sorry."
+msgstr "进口文件出了问题。不好意思。"
 
-#: ../../mod/editpost.php:140 ../../include/conversation.php:1055
-msgid "Example: bob@example.com, mary@example.com"
-msgstr "比如: li@example.com, wang@example.com"
+#: ../../addon.old/dav/friendica/layout.fnk.php:134
+#: ../../addon/dav/friendica/layout.fnk.php:134
+msgid "The ICS-File has been imported."
+msgstr "把ICS文件进口了。"
 
-#: ../../mod/dfrn_request.php:93
-msgid "This introduction has already been accepted."
-msgstr "这个介绍已经接受了。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:138
+#: ../../addon/dav/friendica/layout.fnk.php:138
+msgid "No file was uploaded."
+msgstr "没有上传的文件。"
 
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
-msgid "Profile location is not valid or does not contain profile information."
-msgstr "简介位置失效或不包括简介信息。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:147
+#: ../../addon/dav/friendica/layout.fnk.php:147
+msgid "Import a ICS-file"
+msgstr "进口ICS文件"
 
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
-msgid "Warning: profile location has no identifiable owner name."
-msgstr "警告:简介位置没有可设别的主名。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:150
+#: ../../addon/dav/friendica/layout.fnk.php:150
+msgid "ICS-File"
+msgstr "ICS文件"
 
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
-msgid "Warning: profile location has no profile photo."
-msgstr "警告:简介位置没有简介图。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:151
+#: ../../addon/dav/friendica/layout.fnk.php:151
+msgid "Overwrite all #num# existing events"
+msgstr "替换所有#num#现有的项目"
 
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
-#, 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需要的参数没找到在输入的位置。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:152
+#: ../../addon/dav/friendica/layout.fnk.php:152
+#: ../../mod/profile_photo.php:245
+msgid "Upload"
+msgstr "上传"
 
-#: ../../mod/dfrn_request.php:170
-msgid "Introduction complete."
-msgstr "介绍完成的。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon.old/mathjax/mathjax.php:36
+#: ../../addon/dav/friendica/layout.fnk.php:225
+#: ../../addon/mathjax/mathjax.php:36 ../../include/nav.php:167
+#: ../../mod/admin.php:841 ../../mod/admin.php:1049 ../../mod/settings.php:74
+#: ../../mod/uexport.php:48 ../../mod/newmember.php:22
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:658
+msgid "Settings"
+msgstr "配置"
 
-#: ../../mod/dfrn_request.php:209
-msgid "Unrecoverable protocol error."
-msgstr "不能恢复的协议错误"
+#: ../../addon.old/dav/friendica/layout.fnk.php:225
+#: ../../addon/dav/friendica/layout.fnk.php:225 ../../include/nav.php:113
+#: ../../mod/help.php:84
+msgid "Help"
+msgstr "帮助"
 
-#: ../../mod/dfrn_request.php:237
-msgid "Profile unavailable."
-msgstr "简介无效"
+#: ../../addon.old/dav/friendica/layout.fnk.php:228
+#: ../../addon/dav/friendica/layout.fnk.php:228
+msgid "New event"
+msgstr "新项目"
 
-#: ../../mod/dfrn_request.php:262
-#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s今天已经受到了太多联络要求"
+#: ../../addon.old/dav/friendica/layout.fnk.php:232
+#: ../../addon/dav/friendica/layout.fnk.php:232
+msgid "Today"
+msgstr "今天"
 
-#: ../../mod/dfrn_request.php:263
-msgid "Spam protection measures have been invoked."
-msgstr "垃圾保护措施被用了。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:241
+#: ../../addon/dav/friendica/layout.fnk.php:241
+msgid "Day"
+msgstr "天"
 
-#: ../../mod/dfrn_request.php:264
-msgid "Friends are advised to please try again in 24 hours."
-msgstr "朋友们被建议请24小时后再试。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:248
+#: ../../addon/dav/friendica/layout.fnk.php:248
+msgid "Week"
+msgstr "周"
 
-#: ../../mod/dfrn_request.php:326
-msgid "Invalid locator"
-msgstr "无效找到物"
+#: ../../addon.old/dav/friendica/layout.fnk.php:260
+#: ../../addon/dav/friendica/layout.fnk.php:260
+msgid "Reload"
+msgstr "再装入"
 
-#: ../../mod/dfrn_request.php:335
-msgid "Invalid email address."
-msgstr "无效的邮件地址。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:263
+#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372
+msgid "Previous"
+msgstr "上"
 
-#: ../../mod/dfrn_request.php:362
-msgid "This account has not been configured for email. Request failed."
-msgstr "这个账户没有设置用电子邮件。要求没通过。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:266
+#: ../../addon/dav/friendica/layout.fnk.php:266 ../../mod/events.php:373
+#: ../../mod/install.php:207
+msgid "Next"
+msgstr "下"
 
-#: ../../mod/dfrn_request.php:458
-msgid "Unable to resolve your name at the provided location."
-msgstr "不可疏解您的名字再输入的位置。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:271
+#: ../../addon/dav/friendica/layout.fnk.php:271
+msgid "Date"
+msgstr "日期"
 
-#: ../../mod/dfrn_request.php:471
-msgid "You have already introduced yourself here."
-msgstr "您已经自我介绍这儿。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:313
+#: ../../addon/dav/friendica/layout.fnk.php:313
+msgid "Error"
+msgstr "错误"
 
-#: ../../mod/dfrn_request.php:475
-#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "看上去您已经是%s的朋友。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:354
+#: ../../addon.old/facebook/facebook.php:510
+#: ../../addon.old/facebook/facebook.php:516
+#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
+#: ../../addon/dav/friendica/layout.fnk.php:354
+#: ../../addon/facebook/facebook.php:512 ../../addon/facebook/facebook.php:518
+#: ../../addon/fbpost/fbpost.php:170 ../../addon/fbpost/fbpost.php:176
+#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:4090
+#: ../../mod/profiles.php:146 ../../mod/profiles.php:567
+#: ../../mod/notes.php:20 ../../mod/nogroup.php:25 ../../mod/item.php:140
+#: ../../mod/item.php:156 ../../mod/allfriends.php:9 ../../mod/api.php:26
+#: ../../mod/api.php:31 ../../mod/register.php:40 ../../mod/regmod.php:118
+#: ../../mod/attach.php:33 ../../mod/contacts.php:147
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/crepair.php:115
+#: ../../mod/delegate.php:6 ../../mod/poke.php:135
+#: ../../mod/dfrn_confirm.php:53 ../../mod/suggest.php:56
+#: ../../mod/display.php:180 ../../mod/editpost.php:10
+#: ../../mod/events.php:140 ../../mod/uimport.php:23 ../../mod/follow.php:9
+#: ../../mod/fsuggest.php:78 ../../mod/group.php:19
+#: ../../mod/viewcontacts.php:22 ../../mod/wall_attach.php:55
+#: ../../mod/install.php:151 ../../mod/wall_upload.php:66
+#: ../../mod/invite.php:15 ../../mod/invite.php:101
+#: ../../mod/wallmessage.php:9 ../../mod/wallmessage.php:33
+#: ../../mod/wallmessage.php:79 ../../mod/wallmessage.php:103
+#: ../../mod/manage.php:96 ../../mod/message.php:38 ../../mod/message.php:174
+#: ../../mod/mood.php:114 ../../mod/network.php:6 ../../mod/photos.php:133
+#: ../../mod/photos.php:1044 ../../mod/notifications.php:66
+#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:169
+#: ../../mod/profile_photo.php:180 ../../mod/profile_photo.php:193
+#: ../../index.php:341
+msgid "Permission denied."
+msgstr "权限不够。"
 
-#: ../../mod/dfrn_request.php:496
-msgid "Invalid profile URL."
-msgstr "无效的简介URL。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:361
+#: ../../addon.old/facebook/facebook.php:799
+#: ../../addon.old/fbpost/fbpost.php:282
+#: ../../addon/dav/friendica/layout.fnk.php:361
+#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
+msgid "The new values have been saved."
+msgstr "新的设置保存了。"
 
-#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
-msgid "Disallowed profile URL."
-msgstr "不允许的简介地址."
+#: ../../addon.old/dav/friendica/layout.fnk.php:380
+#: ../../addon/dav/friendica/layout.fnk.php:380
+msgid "The calendar has been updated."
+msgstr "日历更新了。"
 
-#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
-msgid "Failed to update contact record."
-msgstr "更新熟人记录失败了。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:393
+#: ../../addon/dav/friendica/layout.fnk.php:393
+msgid "The new calendar has been created."
+msgstr "新日历创造了。"
 
-#: ../../mod/dfrn_request.php:592
-msgid "Your introduction has been sent."
-msgstr "您的介绍发布了。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:417
+#: ../../addon/dav/friendica/layout.fnk.php:417
+msgid "The calendar has been deleted."
+msgstr "日历删除了。"
 
-#: ../../mod/dfrn_request.php:645
-msgid "Please login to confirm introduction."
-msgstr "请登记为确认介绍。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:424
+#: ../../addon/dav/friendica/layout.fnk.php:424
+msgid "Calendar Settings"
+msgstr "日历设置"
 
-#: ../../mod/dfrn_request.php:659
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr "错误的用户登记者。请用<strong>这个</strong>用户。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:430
+#: ../../addon/dav/friendica/layout.fnk.php:430
+msgid "Date format"
+msgstr "日期形式"
 
-#: ../../mod/dfrn_request.php:670
-msgid "Hide this contact"
-msgstr "隐藏这个熟人"
+#: ../../addon.old/dav/friendica/layout.fnk.php:439
+#: ../../addon/dav/friendica/layout.fnk.php:439
+msgid "Time zone"
+msgstr "时区"
 
-#: ../../mod/dfrn_request.php:673
-#, php-format
-msgid "Welcome home %s."
-msgstr "欢迎%s。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:441
+#: ../../addon.old/dav/friendica/layout.fnk.php:488
+#: ../../addon.old/facebook/facebook.php:770
+#: ../../addon.old/fbpost/fbpost.php:267
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
+#: ../../addon/dav/friendica/layout.fnk.php:441
+#: ../../addon/dav/friendica/layout.fnk.php:488
+#: ../../addon/facebook/facebook.php:772 ../../addon/fbpost/fbpost.php:322
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
+#: ../../include/text.php:781 ../../mod/notes.php:63 ../../mod/filer.php:31
+msgid "Save"
+msgstr "保存"
 
-#: ../../mod/dfrn_request.php:674
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
-msgstr "请确认您的介绍/联络要求给%s。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:445
+#: ../../addon/dav/friendica/layout.fnk.php:445
+msgid "Calendars"
+msgstr "日历"
 
-#: ../../mod/dfrn_request.php:675
-msgid "Confirm"
-msgstr "确认"
+#: ../../addon.old/dav/friendica/layout.fnk.php:487
+#: ../../addon/dav/friendica/layout.fnk.php:487
+msgid "Create a new calendar"
+msgstr "创造新日历"
 
-#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
-msgid "[Name Withheld]"
-msgstr "[名字拒给]"
+#: ../../addon.old/dav/friendica/layout.fnk.php:496
+#: ../../addon/dav/friendica/layout.fnk.php:496
+msgid "Limitations"
+msgstr "限制"
 
-#: ../../mod/dfrn_request.php:811
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"communications networks:"
-msgstr "请输入您的「同一人地址」这些支持的交通网络中:"
+#: ../../addon.old/dav/friendica/layout.fnk.php:500
+#: ../../addon.old/libravatar/libravatar.php:82
+#: ../../addon/dav/friendica/layout.fnk.php:500
+#: ../../addon/libravatar/libravatar.php:82
+msgid "Warning"
+msgstr "警告"
 
-#: ../../mod/dfrn_request.php:827
-msgid "<strike>Connect as an email follower</strike> (Coming soon)"
-msgstr "<strike>连接当邮件关注</strike>(快来)"
+#: ../../addon.old/dav/friendica/layout.fnk.php:504
+#: ../../addon/dav/friendica/layout.fnk.php:504
+msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
+msgstr "同步(iPhone,Thunderbird Lightning, 案桌,等)"
 
-#: ../../mod/dfrn_request.php:829
-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>."
+#: ../../addon.old/dav/friendica/layout.fnk.php:511
+#: ../../addon/dav/friendica/layout.fnk.php:511
+msgid "Synchronizing this calendar with the iPhone"
+msgstr "正在把这个日历跟iPhone同步"
 
-#: ../../mod/dfrn_request.php:832
-msgid "Friend/Connection Request"
-msgstr "朋友/联络要求。"
+#: ../../addon.old/dav/friendica/layout.fnk.php:522
+#: ../../addon/dav/friendica/layout.fnk.php:522
+msgid "Synchronizing your Friendica-Contacts with the iPhone"
+msgstr "正在把您的Friendica熟人跟iPhone同步"
 
-#: ../../mod/dfrn_request.php:833
+#: ../../addon.old/dav/friendica/main.php:202
+#: ../../addon/dav/friendica/main.php:202
 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:834
-msgid "Please answer the following:"
-msgstr "请回答下述的:"
+"The current version of this plugin has not been set up correctly. Please "
+"contact the system administrator of your installation of friendica to fix "
+"this."
+msgstr "现有的插件没安装好。请跟系统管理您的friendica安装联系为维修。"
 
-#: ../../mod/dfrn_request.php:835
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s是否认识你?"
-
-#: ../../mod/dfrn_request.php:838
-msgid "Add a personal note:"
-msgstr "添加个人的便条"
+#: ../../addon.old/dav/friendica/main.php:242
+#: ../../addon/dav/friendica/main.php:242
+msgid "Extended calendar with CalDAV-support"
+msgstr "增能日历跟CalDAV支持"
 
-#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
-msgid "Friendica"
-msgstr "Friendica"
+#: ../../addon.old/dav/friendica/main.php:279
+#: ../../addon.old/dav/friendica/main.php:280
+#: ../../addon/dav/friendica/main.php:279
+#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
+#: ../../include/enotify.php:28 ../../include/notifier.php:785
+msgid "noreply"
+msgstr "noreply"
 
-#: ../../mod/dfrn_request.php:841
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/联合社会化网"
+#: ../../addon.old/dav/friendica/main.php:282
+#: ../../addon/dav/friendica/main.php:282
+msgid "Notification: "
+msgstr "通知:"
 
-#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
-#: ../../include/contact_selectors.php:80
-msgid "Diaspora"
-msgstr "Diaspora"
+#: ../../addon.old/dav/friendica/main.php:309
+#: ../../addon/dav/friendica/main.php:309
+msgid "The database tables have been installed."
+msgstr "数据库表格被安装了。"
 
-#: ../../mod/dfrn_request.php:843
-#, php-format
-msgid ""
-" - please do not use this form.  Instead, enter %s into your Diaspora search"
-" bar."
-msgstr " - 请别用这个表格。反而输入%s在您的Diaspora搜索功能。"
+#: ../../addon.old/dav/friendica/main.php:310
+#: ../../addon/dav/friendica/main.php:310
+msgid "An error occurred during the installation."
+msgstr "安装出错误。"
 
-#: ../../mod/dfrn_request.php:844
-msgid "Your Identity Address:"
-msgstr "您的同一个人地址:"
+#: ../../addon.old/dav/friendica/main.php:316
+#: ../../addon/dav/friendica/main.php:316
+msgid "The database tables have been updated."
+msgstr "数据库表格更新了。"
 
-#: ../../mod/dfrn_request.php:847
-msgid "Submit Request"
-msgstr "提交要求"
+#: ../../addon.old/dav/friendica/main.php:317
+#: ../../addon/dav/friendica/main.php:317
+msgid "An error occurred during the update."
+msgstr "更新出了问题。"
 
-#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167
-msgid "Account settings"
-msgstr "帐户配置"
+#: ../../addon.old/dav/friendica/main.php:333
+#: ../../addon/dav/friendica/main.php:333
+msgid "No system-wide settings yet."
+msgstr "还没有系统设置。"
 
-#: ../../mod/uexport.php:14 ../../mod/settings.php:40
-msgid "Display settings"
-msgstr "表示设置"
+#: ../../addon.old/dav/friendica/main.php:336
+#: ../../addon/dav/friendica/main.php:336
+msgid "Database status"
+msgstr "数据库现状"
 
-#: ../../mod/uexport.php:20 ../../mod/settings.php:46
-msgid "Connector settings"
-msgstr "插销设置"
+#: ../../addon.old/dav/friendica/main.php:339
+#: ../../addon/dav/friendica/main.php:339
+msgid "Installed"
+msgstr "安装了"
 
-#: ../../mod/uexport.php:25 ../../mod/settings.php:51
-msgid "Plugin settings"
-msgstr "插件设置"
+#: ../../addon.old/dav/friendica/main.php:343
+#: ../../addon/dav/friendica/main.php:343
+msgid "Upgrade needed"
+msgstr "必须更新"
 
-#: ../../mod/uexport.php:30 ../../mod/settings.php:56
-msgid "Connected apps"
-msgstr "连接着应用"
+#: ../../addon.old/dav/friendica/main.php:343
+#: ../../addon/dav/friendica/main.php:343
+msgid ""
+"Please back up all calendar data (the tables beginning with dav_*) before "
+"proceeding. While all calendar events <i>should</i> be converted to the new "
+"database structure, it's always safe to have a backup. Below, you can have a"
+" look at the database-queries that will be made when pressing the "
+"'update'-button."
+msgstr "请备份所有的日历数据(表格有前缀「dav_」)继续之前。虽然所有的日历项目<i>应该</i>被转化成新数据库体系,备份总是最好。下边您会看数据库命令进行按「更新」按钮的时候。"
 
-#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61
-msgid "Export personal data"
-msgstr "出口私人信息"
+#: ../../addon.old/dav/friendica/main.php:343
+#: ../../addon/dav/friendica/main.php:343
+msgid "Upgrade"
+msgstr "更新"
 
-#: ../../mod/uexport.php:40 ../../mod/settings.php:66
-msgid "Remove account"
-msgstr "删除账户"
+#: ../../addon.old/dav/friendica/main.php:346
+#: ../../addon/dav/friendica/main.php:346
+msgid "Not installed"
+msgstr "没安装"
 
-#: ../../mod/uexport.php:48 ../../mod/settings.php:74
-#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1033
-#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:167
-#: ../../addon.old/dav/friendica/layout.fnk.php:225
-#: ../../addon.old/mathjax/mathjax.php:36
-msgid "Settings"
-msgstr "配置"
+#: ../../addon.old/dav/friendica/main.php:346
+#: ../../addon/dav/friendica/main.php:346
+msgid "Install"
+msgstr "安装"
 
-#: ../../mod/uexport.php:72
-msgid "Export account"
-msgstr "出口账户"
+#: ../../addon.old/dav/friendica/main.php:350
+#: ../../addon/dav/friendica/main.php:350
+msgid "Unknown"
+msgstr "不知道的"
 
-#: ../../mod/uexport.php:72
+#: ../../addon.old/dav/friendica/main.php:350
+#: ../../addon/dav/friendica/main.php:350
 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 "出口您的商户信息和熟人。这利于备份您的账户活着搬到别的服务器。"
+"Something really went wrong. I cannot recover from this state automatically,"
+" sorry. Please go to the database backend, back up the data, and delete all "
+"tables beginning with 'dav_' manually. Afterwards, this installation routine"
+" should be able to reinitialize the tables automatically."
+msgstr "出什么真糟糕的问题。我不能自动地恢复,不好意思。请看数据库系统,备份数据,而手动地把所有前缀着「dav_」表格删除。之后,这个安装程序应该能把表格自动地初始化。"
 
-#: ../../mod/uexport.php:73
-msgid "Export all"
-msgstr "出口一切"
+#: ../../addon.old/dav/friendica/main.php:355
+#: ../../addon/dav/friendica/main.php:355
+msgid "Troubleshooting"
+msgstr "调试"
 
-#: ../../mod/uexport.php:73
-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。可能是很大文件,花很多时间。用这个为创造全备份您的账户(照片没被出口)"
+#: ../../addon.old/dav/friendica/main.php:356
+#: ../../addon/dav/friendica/main.php:356
+msgid "Manual creation of the database tables:"
+msgstr "手动造成数据库表格:"
 
-#: ../../mod/install.php:117
-msgid "Friendica Social Communications Server - Setup"
-msgstr "Friendica社会交通服务器-安装"
+#: ../../addon.old/dav/friendica/main.php:357
+#: ../../addon/dav/friendica/main.php:357
+msgid "Show SQL-statements"
+msgstr "表示SQL陈述"
 
-#: ../../mod/install.php:123
-msgid "Could not connect to database."
-msgstr "解不了数据库。"
+#: ../../addon.old/drpost/drpost.php:35
+msgid "Post to Drupal"
+msgstr "发到Drupal"
 
-#: ../../mod/install.php:127
-msgid "Could not create table."
-msgstr "造成不了表格。"
+#: ../../addon.old/drpost/drpost.php:72
+msgid "Drupal Post Settings"
+msgstr "Drupal设置"
 
-#: ../../mod/install.php:133
-msgid "Your Friendica site database has been installed."
-msgstr "您Friendica网站数据库被安装了。"
+#: ../../addon.old/drpost/drpost.php:74
+msgid "Enable Drupal Post Plugin"
+msgstr "使Drupal插件能够"
 
-#: ../../mod/install.php:138
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
-msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"
+#: ../../addon.old/drpost/drpost.php:79
+msgid "Drupal username"
+msgstr "Drupal用户名"
 
-#: ../../mod/install.php:139 ../../mod/install.php:206
-#: ../../mod/install.php:506
-msgid "Please see the file \"INSTALL.txt\"."
-msgstr "请看文件「INSTALL.txt」"
+#: ../../addon.old/drpost/drpost.php:84
+msgid "Drupal password"
+msgstr "Drupal密码"
 
-#: ../../mod/install.php:203
-msgid "System check"
-msgstr "系统检测"
+#: ../../addon.old/drpost/drpost.php:89
+msgid "Post Type - article,page,or blog"
+msgstr "文章种类-文章,页,博客"
 
-#: ../../mod/install.php:208
-msgid "Check again"
-msgstr "再检测"
+#: ../../addon.old/drpost/drpost.php:94
+msgid "Drupal site URL"
+msgstr "Drupal网站URL"
 
-#: ../../mod/install.php:227
-msgid "Database connection"
-msgstr "数据库接通"
+#: ../../addon.old/drpost/drpost.php:99
+msgid "Drupal site uses clean URLS"
+msgstr "Drupal网站用整洁URL"
 
-#: ../../mod/install.php:228
-msgid ""
-"In order to install Friendica we need to know how to connect to your "
-"database."
-msgstr "为安装Friendica我们要知道怎么连接您的数据库。"
+#: ../../addon.old/drpost/drpost.php:104
+msgid "Post to Drupal by default"
+msgstr "默认地发到Drupal"
 
-#: ../../mod/install.php:229
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
-msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"
+#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39
+msgid "Post to Dreamwidth"
+msgstr "转播到Dreamwidth"
 
-#: ../../mod/install.php:230
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
-msgstr "您下边指定的数据库应该已经存在。如果还没有,请继续前造成。"
+#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70
+msgid "Dreamwidth Post Settings"
+msgstr "Dreamwidth转播设置"
 
-#: ../../mod/install.php:234
-msgid "Database Server Name"
-msgstr "数据库服务器名"
+#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72
+msgid "Enable dreamwidth Post Plugin"
+msgstr "使Dreamwidth转播插件可用"
 
-#: ../../mod/install.php:235
-msgid "Database Login Name"
-msgstr "数据库登录名"
+#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77
+msgid "dreamwidth username"
+msgstr "Dreamwidth用户名"
 
-#: ../../mod/install.php:236
-msgid "Database Login Password"
-msgstr "数据库登录密码"
+#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82
+msgid "dreamwidth password"
+msgstr "Dreamwidth密码"
 
-#: ../../mod/install.php:237
-msgid "Database Name"
-msgstr "数据库名字"
+#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87
+msgid "Post to dreamwidth by default"
+msgstr "默认地转播到Dreamwidth"
 
-#: ../../mod/install.php:238 ../../mod/install.php:277
-msgid "Site administrator email address"
-msgstr "网站行政人员邮件地址"
+#: ../../addon.old/editplain/editplain.php:46
+#: ../../addon.old/group_text/group_text.php:46
+#: ../../addon/editplain/editplain.php:46
+msgid "Editplain settings updated."
+msgstr "Editplain设置更新了"
 
-#: ../../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 "您账户邮件地址必要符合这个为用网站处理仪表板"
+#: ../../addon.old/editplain/editplain.php:76
+#: ../../addon/editplain/editplain.php:76
+msgid "Editplain Settings"
+msgstr "Editplain设置"
 
-#: ../../mod/install.php:242 ../../mod/install.php:280
-msgid "Please select a default timezone for your website"
-msgstr "请选择您网站的默认时区"
+#: ../../addon.old/editplain/editplain.php:78
+#: ../../addon/editplain/editplain.php:78
+msgid "Disable richtext status editor"
+msgstr "使richtext现状编辑 不能用"
 
-#: ../../mod/install.php:267
-msgid "Site settings"
-msgstr "网站设置"
+#: ../../addon.old/facebook/facebook.php:495
+#: ../../addon.old/fbpost/fbpost.php:144
+#: ../../addon.old/impressum/impressum.php:78
+#: ../../addon.old/mathjax/mathjax.php:66
+#: ../../addon.old/openstreetmap/openstreetmap.php:80
+#: ../../addon.old/piwik/piwik.php:105 ../../addon.old/twitter/twitter.php:389
+#: ../../addon/altpager/altpager.php:107 ../../addon/facebook/facebook.php:497
+#: ../../addon/fbpost/fbpost.php:155 ../../addon/impressum/impressum.php:78
+#: ../../addon/mathjax/mathjax.php:66
+#: ../../addon/openstreetmap/openstreetmap.php:104
+#: ../../addon/piwik/piwik.php:105
+#: ../../addon/remote_permissions/remote_permissions.php:205
+#: ../../addon/twitter/twitter.php:550 ../../mod/settings.php:488
+msgid "Settings updated."
+msgstr "设置跟新了"
 
-#: ../../mod/install.php:320
-msgid "Could not find a command line version of PHP in the web server PATH."
-msgstr "没找到命令行PHP在网服务器PATH。"
+#: ../../addon.old/facebook/facebook.php:523
+#: ../../addon/facebook/facebook.php:525
+msgid "Facebook disabled"
+msgstr "Facebook废"
 
-#: ../../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 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>"
+#: ../../addon.old/facebook/facebook.php:528
+#: ../../addon/facebook/facebook.php:530
+msgid "Updating contacts"
+msgstr "正才更新熟人"
 
-#: ../../mod/install.php:325
-msgid "PHP executable path"
-msgstr "PHP可执行路径"
+#: ../../addon.old/facebook/facebook.php:551
+#: ../../addon.old/fbpost/fbpost.php:192 ../../addon/facebook/facebook.php:553
+#: ../../addon/fbpost/fbpost.php:203
+msgid "Facebook API key is missing."
+msgstr "Facebook API钥匙失踪的。"
 
-#: ../../mod/install.php:325
-msgid ""
-"Enter full path to php executable. You can leave this blank to continue the "
-"installation."
-msgstr "输入全路线到php执行程序。您会留空白为继续安装。"
+#: ../../addon.old/facebook/facebook.php:558
+#: ../../addon/facebook/facebook.php:560
+msgid "Facebook Connect"
+msgstr "Facebook联络"
 
-#: ../../mod/install.php:330
-msgid "Command line PHP"
-msgstr "命令行PHP"
+#: ../../addon.old/facebook/facebook.php:564
+#: ../../addon/facebook/facebook.php:566
+msgid "Install Facebook connector for this account."
+msgstr "安装Facebook连接器为这个账户。"
 
-#: ../../mod/install.php:339
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr "您系统的命令行PHP没有能够「register_argc_argv」。"
+#: ../../addon.old/facebook/facebook.php:571
+#: ../../addon/facebook/facebook.php:573
+msgid "Remove Facebook connector"
+msgstr "删除Facebook连接器"
 
-#: ../../mod/install.php:340
-msgid "This is required for message delivery to work."
-msgstr "这必要为通信发布成功。"
+#: ../../addon.old/facebook/facebook.php:576
+#: ../../addon.old/fbpost/fbpost.php:217 ../../addon/facebook/facebook.php:578
+#: ../../addon/fbpost/fbpost.php:228
+msgid ""
+"Re-authenticate [This is necessary whenever your Facebook password is "
+"changed.]"
+msgstr "复认证[这是必要的每当您Facebook密码变化了]"
 
-#: ../../mod/install.php:342
-msgid "PHP register_argc_argv"
-msgstr "PHP register_argc_argv"
+#: ../../addon.old/facebook/facebook.php:583
+#: ../../addon.old/fbpost/fbpost.php:224 ../../addon/facebook/facebook.php:585
+#: ../../addon/fbpost/fbpost.php:235
+msgid "Post to Facebook by default"
+msgstr "默认地放在Facebook"
 
-#: ../../mod/install.php:363
+#: ../../addon.old/facebook/facebook.php:589
+#: ../../addon/facebook/facebook.php:591
 msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
-msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"
+"Facebook friend linking has been disabled on this site. The following "
+"settings will have no effect."
+msgstr "这个网站使Facebook朋友环节不能用。这下的设置没有印象。"
 
-#: ../../mod/install.php:364
+#: ../../addon.old/facebook/facebook.php:593
+#: ../../addon/facebook/facebook.php:595
 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:366
-msgid "Generate encryption keys"
-msgstr "产生加密钥匙"
-
-#: ../../mod/install.php:373
-msgid "libCurl PHP module"
-msgstr "libCurl PHP模块"
-
-#: ../../mod/install.php:374
-msgid "GD graphics PHP module"
-msgstr "GD显示PHP模块"
+"Facebook friend linking has been disabled on this site. If you disable it, "
+"you will be unable to re-enable it."
+msgstr "这个网站使Facebook朋友环节不能用。假如那样的话您不会再使可用的。"
 
-#: ../../mod/install.php:375
-msgid "OpenSSL PHP module"
-msgstr "OpenSSL PHP模块"
+#: ../../addon.old/facebook/facebook.php:596
+#: ../../addon/facebook/facebook.php:598
+msgid "Link all your Facebook friends and conversations on this website"
+msgstr "连接您所有的Facebook朋友们和交流在这个网站"
 
-#: ../../mod/install.php:376
-msgid "mysqli PHP module"
-msgstr "mysqli PHP模块"
+#: ../../addon.old/facebook/facebook.php:598
+#: ../../addon/facebook/facebook.php:600
+msgid ""
+"Facebook conversations consist of your <em>profile wall</em> and your friend"
+" <em>stream</em>."
+msgstr "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 "
 
-#: ../../mod/install.php:377
-msgid "mb_string PHP module"
-msgstr "mb_string PHP模块"
+#: ../../addon.old/facebook/facebook.php:599
+#: ../../addon/facebook/facebook.php:601
+msgid "On this website, your Facebook friend stream is only visible to you."
+msgstr "在这个网站,您Facebook朋友溪流是只您可见的。"
 
-#: ../../mod/install.php:382 ../../mod/install.php:384
-msgid "Apache mod_rewrite module"
-msgstr "Apache mod_rewrite部件"
+#: ../../addon.old/facebook/facebook.php:600
+#: ../../addon/facebook/facebook.php:602
+msgid ""
+"The following settings determine the privacy of your Facebook profile wall "
+"on this website."
+msgstr "下面的设置决定您在这个网站Facebook简介墙的隐私。"
 
-#: ../../mod/install.php:382
+#: ../../addon.old/facebook/facebook.php:604
+#: ../../addon/facebook/facebook.php:606
 msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
-msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"
+"On this website your Facebook profile wall conversations will only be "
+"visible to you"
+msgstr "在这个网站您Facebook简介墙交流是只您可见的。"
 
-#: ../../mod/install.php:390
-msgid "Error: libCURL PHP module required but not installed."
-msgstr "错误:libCurl PHP模块是必要的可却不安装的。"
+#: ../../addon.old/facebook/facebook.php:609
+#: ../../addon/facebook/facebook.php:611
+msgid "Do not import your Facebook profile wall conversations"
+msgstr "别进口您Facebook简介墙交流"
 
-#: ../../mod/install.php:394
+#: ../../addon.old/facebook/facebook.php:611
+#: ../../addon/facebook/facebook.php:613
 msgid ""
-"Error: GD graphics PHP module with JPEG support required but not installed."
-msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"
+"If you choose to link conversations and leave both of these boxes unchecked,"
+" your Facebook profile wall will be merged with your profile wall on this "
+"website and your privacy settings on this website will be used to determine "
+"who may see the conversations."
+msgstr "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。"
 
-#: ../../mod/install.php:398
-msgid "Error: openssl PHP module required but not installed."
-msgstr "错误:openssl PHP模块是必要的可却不安装的。"
+#: ../../addon.old/facebook/facebook.php:616
+#: ../../addon/facebook/facebook.php:618
+msgid "Comma separated applications to ignore"
+msgstr "逗号分开的应用要不理"
 
-#: ../../mod/install.php:402
-msgid "Error: mysqli PHP module required but not installed."
-msgstr "错误:mysqli PHP模块是必要的可却不安装的。"
+#: ../../addon.old/facebook/facebook.php:700
+#: ../../addon/facebook/facebook.php:702
+msgid "Problems with Facebook Real-Time Updates"
+msgstr "Facebook实时更新有问题"
 
-#: ../../mod/install.php:406
-msgid "Error: mb_string PHP module required but not installed."
-msgstr "错误:mbstring PHP模块必要可没安装的。"
+#: ../../addon.old/facebook/facebook.php:702
+#: ../../addon.old/facebook/facebook.php:1200
+#: ../../addon.old/fbpost/fbpost.php:661
+#: ../../addon.old/public_server/public_server.php:62
+#: ../../addon.old/testdrive/testdrive.php:67
+#: ../../addon/facebook/facebook.php:704
+#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
+#: ../../addon/public_server/public_server.php:62
+#: ../../addon/testdrive/testdrive.php:67
+msgid "Administrator"
+msgstr "管理员"
 
-#: ../../mod/install.php:423
-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」在网服务器主文件夹可却不能。"
+#: ../../addon.old/facebook/facebook.php:728
+#: ../../addon.old/fbpost/fbpost.php:239 ../../addon/facebook/facebook.php:730
+#: ../../addon/fbpost/fbpost.php:294 ../../include/contact_selectors.php:81
+#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
+msgid "Facebook"
+msgstr "Facebook"
 
-#: ../../mod/install.php:424
-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 "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"
+#: ../../addon.old/facebook/facebook.php:729
+#: ../../addon/facebook/facebook.php:731
+msgid "Facebook Connector Settings"
+msgstr "Facebook连接器设置"
 
-#: ../../mod/install.php:425
+#: ../../addon.old/facebook/facebook.php:744
+#: ../../addon.old/fbpost/fbpost.php:255 ../../addon/facebook/facebook.php:746
+#: ../../addon/fbpost/fbpost.php:310
+msgid "Facebook API Key"
+msgstr "Facebook API密码"
+
+#: ../../addon.old/facebook/facebook.php:754
+#: ../../addon.old/fbpost/fbpost.php:262 ../../addon/facebook/facebook.php:756
+#: ../../addon/fbpost/fbpost.php:317
 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主文件夹。"
+"Error: it appears that you have specified the App-ID and -Secret in your "
+".htconfig.php file. As long as they are specified there, they cannot be set "
+"using this form.<br><br>"
+msgstr "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。<br><br>"
 
-#: ../../mod/install.php:426
+#: ../../addon.old/facebook/facebook.php:759
+#: ../../addon/facebook/facebook.php:761
 msgid ""
-"You can alternatively skip this procedure and perform a manual installation."
-" Please see the file \"INSTALL.txt\" for instructions."
-msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"
+"Error: the given API Key seems to be incorrect (the application access token"
+" could not be retrieved)."
+msgstr "错误:输入的API密码显得不对(取回不了应用代金券)。"
 
-#: ../../mod/install.php:429
-msgid ".htconfig.php is writable"
-msgstr ".htconfig.php是可写的"
+#: ../../addon.old/facebook/facebook.php:761
+#: ../../addon/facebook/facebook.php:763
+msgid "The given API Key seems to work correctly."
+msgstr "输入的API密码显得对地运行。"
 
-#: ../../mod/install.php:439
+#: ../../addon.old/facebook/facebook.php:763
+#: ../../addon/facebook/facebook.php:765
 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为催建筑网页。"
+"The correctness of the API Key could not be detected. Something strange's "
+"going on."
+msgstr "API钥匙的正确性发现不了。什么奇怪的进行"
 
-#: ../../mod/install.php:440
-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主目录下。"
+#: ../../addon.old/facebook/facebook.php:766
+#: ../../addon.old/fbpost/fbpost.php:264 ../../addon/facebook/facebook.php:768
+#: ../../addon/fbpost/fbpost.php:319
+msgid "App-ID / API-Key"
+msgstr "App-ID / API-Key"
 
-#: ../../mod/install.php:441
-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)有这个目录的写权利。"
+#: ../../addon.old/facebook/facebook.php:767
+#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769
+#: ../../addon/fbpost/fbpost.php:320
+msgid "Application secret"
+msgstr "应用密码"
 
-#: ../../mod/install.php:442
+#: ../../addon.old/facebook/facebook.php:768
+#: ../../addon/facebook/facebook.php:770
+#, php-format
+msgid "Polling Interval in minutes (minimum %1$s minutes)"
+msgstr "核实间隔分钟(最少%1$s分钟)"
+
+#: ../../addon.old/facebook/facebook.php:769
+#: ../../addon/facebook/facebook.php:771
 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)之下。"
+"Synchronize comments (no comments on Facebook are missed, at the cost of "
+"increased system load)"
+msgstr "同步评论(无Facebook评论错过了,代价增添系统工作量)"
 
-#: ../../mod/install.php:445
-msgid "view/smarty3 is writable"
-msgstr "能写view/smarty3"
+#: ../../addon.old/facebook/facebook.php:773
+#: ../../addon/facebook/facebook.php:775
+msgid "Real-Time Updates"
+msgstr "实时更新"
 
-#: ../../mod/install.php:457
-msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
-msgstr " URL改写在.htaccess不行。检查您服务器设置。"
+#: ../../addon.old/facebook/facebook.php:777
+#: ../../addon/facebook/facebook.php:779
+msgid "Real-Time Updates are activated."
+msgstr "实时更新使活动"
 
-#: ../../mod/install.php:459
-msgid "Url rewrite is working"
-msgstr "URL改写发挥机能"
+#: ../../addon.old/facebook/facebook.php:778
+#: ../../addon/facebook/facebook.php:780
+msgid "Deactivate Real-Time Updates"
+msgstr "使实时更新不活动"
 
-#: ../../mod/install.php:469
-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」不能被写。请把包括的正文造成设置文件在网服务器子目录。"
+#: ../../addon.old/facebook/facebook.php:780
+#: ../../addon/facebook/facebook.php:782
+msgid "Real-Time Updates not activated."
+msgstr "实时更新使不活动"
 
-#: ../../mod/install.php:493
-msgid "Errors encountered creating database tables."
-msgstr "造成数据库列表相遇错误。"
+#: ../../addon.old/facebook/facebook.php:780
+#: ../../addon/facebook/facebook.php:782
+msgid "Activate Real-Time Updates"
+msgstr "使实时更新活动"
 
-#: ../../mod/install.php:504
-msgid "<h1>What next</h1>"
-msgstr "<h1>下步是什么</h1>"
+#: ../../addon.old/facebook/facebook.php:823
+#: ../../addon.old/fbpost/fbpost.php:301 ../../addon/facebook/facebook.php:825
+#: ../../addon/fbpost/fbpost.php:356
+msgid "Post to Facebook"
+msgstr "放在Facebook"
 
-#: ../../mod/install.php:505
+#: ../../addon.old/facebook/facebook.php:921
+#: ../../addon.old/fbpost/fbpost.php:399 ../../addon/facebook/facebook.php:923
+#: ../../addon/fbpost/fbpost.php:487
 msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the "
-"poller."
-msgstr "重要:您要[手工地]准备安排的任务给喂器。"
+"Post to Facebook cancelled because of multi-network access permission "
+"conflict."
+msgstr "发送到Facebook取消由于多网络准许矛盾。"
 
-#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:393
-msgid "l F d, Y \\@ g:i A"
-msgstr "l F d, Y \\@ g:i A"
+#: ../../addon.old/facebook/facebook.php:1149
+#: ../../addon.old/fbpost/fbpost.php:610
+#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
+msgid "View on Friendica"
+msgstr "看在Friendica"
 
-#: ../../mod/localtime.php:24
-msgid "Time Conversion"
-msgstr "时间装换"
+#: ../../addon.old/facebook/facebook.php:1182
+#: ../../addon.old/fbpost/fbpost.php:643
+#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
+msgid "Facebook post failed. Queued for retry."
+msgstr "Facebook发送失败了。排队着待再试。"
 
-#: ../../mod/localtime.php:26
-msgid ""
-"Friendica provides this service for sharing events with other networks and "
-"friends in unknown timezones."
-msgstr "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。"
+#: ../../addon.old/facebook/facebook.php:1222
+#: ../../addon.old/fbpost/fbpost.php:683
+#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
+msgid "Your Facebook connection became invalid. Please Re-authenticate."
+msgstr "您Facebook联系成无效的。请再认证。"
 
-#: ../../mod/localtime.php:30
-#, php-format
-msgid "UTC time: %s"
-msgstr "UTC时间: %s"
+#: ../../addon.old/facebook/facebook.php:1223
+#: ../../addon.old/fbpost/fbpost.php:684
+#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
+msgid "Facebook connection became invalid"
+msgstr "Facebook联系成无效的"
 
-#: ../../mod/localtime.php:33
+#: ../../addon.old/facebook/facebook.php:1224
+#: ../../addon.old/fbpost/fbpost.php:685
+#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
 #, php-format
-msgid "Current timezone: %s"
-msgstr "现在时区: %s"
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
+msgstr "你好%1$s,⏎ ⏎ 您账户在%2$s和Facebook的接通无效了。平时这是因为您把密码改变了。为使接通再可用,您要%3$s再认证Facebook连接器%4$s。"
 
-#: ../../mod/localtime.php:36
-#, php-format
-msgid "Converted localtime: %s"
-msgstr "装换的当地时间:%s"
+#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183
+msgid "Facebook Post disabled"
+msgstr "使Facebook文章不可用的"
 
-#: ../../mod/localtime.php:41
-msgid "Please select your timezone:"
-msgstr "请选择你的时区:"
+#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210
+msgid "Facebook Post"
+msgstr "Facebook文章"
 
-#: ../../mod/poke.php:192
-msgid "Poke/Prod"
-msgstr ""
+#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216
+msgid "Install Facebook Post connector for this account."
+msgstr "安装Facebook文章连接器为这个账户"
 
-#: ../../mod/poke.php:193
-msgid "poke, prod or do other things to somebody"
-msgstr "把人家戳或别的行动"
+#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223
+msgid "Remove Facebook Post connector"
+msgstr "把Facebook文章连接器删除"
 
-#: ../../mod/poke.php:194
-msgid "Recipient"
-msgstr "接受者"
+#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295
+msgid "Facebook Post Settings"
+msgstr "Facebook文章设置"
 
-#: ../../mod/poke.php:195
-msgid "Choose what you wish to do to recipient"
-msgstr "选择您想把别人作"
+#: ../../addon.old/forumlist/forumlist.php:60 ../../addon.old/page/page.php:62
+#: ../../addon.old/page/page.php:92 ../../addon/forumlist/forumlist.php:64
+#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
+msgid "Forums"
+msgstr "论坛"
 
-#: ../../mod/poke.php:198
-msgid "Make this post private"
-msgstr "使这个文章私人"
+#: ../../addon.old/forumlist/forumlist.php:63
+#: ../../addon/forumlist/forumlist.php:67
+msgid "show/hide"
+msgstr "表示/隐藏"
 
-#: ../../mod/match.php:12
-msgid "Profile Match"
-msgstr "简介符合"
+#: ../../addon.old/forumlist/forumlist.php:77
+#: ../../addon/forumlist/forumlist.php:81
+msgid "No forum subscriptions"
+msgstr "没有评坛订阅"
 
-#: ../../mod/match.php:20
-msgid "No keywords to match. Please add keywords to your default profile."
-msgstr "没有符合的关键字。请在您的默认简介加关键字。"
+#: ../../addon.old/forumlist/forumlist.php:94
+#: ../../addon.old/page/page.php:130 ../../addon/forumlist/forumlist.php:98
+#: ../../addon/page/page.php:130
+msgid "Forums:"
+msgstr "评坛:"
 
-#: ../../mod/match.php:57
-msgid "is interested in:"
-msgstr "感兴趣对:"
+#: ../../addon.old/forumlist/forumlist.php:131
+#: ../../addon/forumlist/forumlist.php:134
+msgid "Forumlist settings updated."
+msgstr "评坛单设置更新了。"
 
-#: ../../mod/match.php:58 ../../mod/suggest.php:88
-#: ../../include/contact_widgets.php:9 ../../boot.php:1317
-msgid "Connect"
-msgstr "è¿\9eæ\8e¥"
+#: ../../addon.old/forumlist/forumlist.php:159
+#: ../../addon/forumlist/forumlist.php:162
+msgid "Forumlist Settings"
+msgstr "è¯\84å\9d\9bå\8d\95设置"
 
-#: ../../mod/match.php:65 ../../mod/dirfind.php:60
-msgid "No matches"
-msgstr "没有结果"
+#: ../../addon.old/forumlist/forumlist.php:161
+#: ../../addon/forumlist/forumlist.php:164
+msgid "Randomise forum list"
+msgstr "洗牌评坛单"
 
-#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "摇隐私信息无效"
+#: ../../addon.old/forumlist/forumlist.php:164
+#: ../../addon/forumlist/forumlist.php:167
+msgid "Show forums on profile page"
+msgstr "表示评坛在简介页"
 
-#: ../../mod/lockview.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:124
-msgid "Visible to:"
-msgstr "可见给:"
+#: ../../addon.old/forumlist/forumlist.php:167
+#: ../../addon/forumlist/forumlist.php:170
+msgid "Show forums on network page"
+msgstr "表示评坛在网络页"
 
-#: ../../mod/content.php:119 ../../mod/network.php:596
-msgid "No such group"
-msgstr "没有这个组"
+#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38
+msgid "Fromapp settings updated."
+msgstr "Fromapp设置更新了"
 
-#: ../../mod/content.php:130 ../../mod/network.php:607
-msgid "Group is empty"
-msgstr "组没有成员"
+#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64
+msgid "FromApp Settings"
+msgstr "Fromapp设置"
 
-#: ../../mod/content.php:134 ../../mod/network.php:611
-msgid "Group: "
-msgstr "组:"
+#: ../../addon.old/fromapp/fromapp.php:66 ../../addon/fromapp/fromapp.php:66
+msgid ""
+"The application name you would like to show your posts originating from."
+msgstr "应用名您想当您文章的来源"
 
-#: ../../mod/content.php:438 ../../mod/content.php:740
-#: ../../include/conversation.php:569 ../../object/Item.php:119
-msgid "Select"
-msgstr "选择"
+#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70
+msgid "Use this application name even if another application was used."
+msgstr "连别应用是用了也用这名。"
 
-#: ../../mod/content.php:472 ../../mod/content.php:852
-#: ../../mod/content.php:853 ../../include/conversation.php:609
-#: ../../object/Item.php:258 ../../object/Item.php:259
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "看%s的简介@ %s"
+#: ../../addon.old/fromgplus/fromgplus.php:29
+#: ../../addon/fromgplus/fromgplus.php:33
+msgid "Google+ Import Settings"
+msgstr "Google+进口设置"
 
-#: ../../mod/content.php:482 ../../mod/content.php:864
-#: ../../include/conversation.php:629 ../../object/Item.php:272
-#, php-format
-msgid "%s from %s"
-msgstr "%s从%s"
+#: ../../addon.old/fromgplus/fromgplus.php:32
+#: ../../addon/fromgplus/fromgplus.php:36
+msgid "Enable Google+ Import"
+msgstr "使Google+进口可用"
 
-#: ../../mod/content.php:497 ../../include/conversation.php:644
-msgid "View in context"
-msgstr "看在上下文"
+#: ../../addon.old/fromgplus/fromgplus.php:35
+#: ../../addon/fromgplus/fromgplus.php:39
+msgid "Google Account ID"
+msgstr "Google+用户名"
 
-#: ../../mod/content.php:603 ../../object/Item.php:313
-#, php-format
-msgid "%d comment"
-msgid_plural "%d comments"
-msgstr[0] "%d评论"
+#: ../../addon.old/fromgplus/fromgplus.php:55
+#: ../../addon/fromgplus/fromgplus.php:59
+msgid "Google+ Import Settings saved."
+msgstr "把Google+进口设置保存了"
 
-#: ../../mod/content.php:605 ../../include/text.php:1514
-#: ../../object/Item.php:315 ../../object/Item.php:328
-msgid "comment"
-msgid_plural "comments"
-msgstr[0] "评论"
+#: ../../addon.old/geonames/geonames.php:143
+#: ../../addon/geonames/geonames.php:143
+msgid "Geonames settings updated."
+msgstr "Geonames设置更新了。"
 
-#: ../../mod/content.php:606 ../../addon/page/page.php:77
-#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../boot.php:642
-#: ../../object/Item.php:316 ../../addon.old/page/page.php:77
-#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
-msgid "show more"
-msgstr "看多"
+#: ../../addon.old/geonames/geonames.php:179
+#: ../../addon/geonames/geonames.php:179
+msgid "Geonames Settings"
+msgstr "Geonames设置"
 
-#: ../../mod/content.php:684 ../../object/Item.php:204
-msgid "like"
-msgstr "喜欢"
+#: ../../addon.old/geonames/geonames.php:181
+#: ../../addon/geonames/geonames.php:181
+msgid "Enable Geonames Plugin"
+msgstr "使Geonames插件能用"
 
-#: ../../mod/content.php:685 ../../object/Item.php:205
-msgid "dislike"
-msgstr "讨厌"
+#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48
+msgid "Gnot settings updated."
+msgstr "Gnot设置更新了。"
 
-#: ../../mod/content.php:687 ../../object/Item.php:207
-msgid "Share this"
-msgstr "分享这个"
+#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79
+msgid "Gnot Settings"
+msgstr "Gnot设置"
 
-#: ../../mod/content.php:687 ../../object/Item.php:207
-msgid "share"
-msgstr "分享"
+#: ../../addon.old/gnot/gnot.php:81 ../../addon/gnot/gnot.php:81
+msgid ""
+"Allows threading of email comment notifications on Gmail and anonymising the"
+" subject line."
+msgstr "允许邮件评论通知在Gmail和匿名话题行。"
 
-#: ../../mod/content.php:711 ../../object/Item.php:605
-msgid "Bold"
-msgstr "粗体字 "
+#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82
+msgid "Enable this plugin/addon?"
+msgstr "使这个插件/加件可用?"
 
-#: ../../mod/content.php:712 ../../object/Item.php:606
-msgid "Italic"
-msgstr "斜体 "
+#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97
+#, php-format
+msgid "[Friendica:Notify] Comment to conversation #%d"
+msgstr "[Friendica:Notify]评论在交流#%d"
 
-#: ../../mod/content.php:713 ../../object/Item.php:607
-msgid "Underline"
-msgstr "下划线"
+#: ../../addon.old/gravatar/gravatar.php:71
+#: ../../addon.old/libravatar/libravatar.php:73
+#: ../../addon/gravatar/gravatar.php:71
+#: ../../addon/libravatar/libravatar.php:73
+msgid "generic profile image"
+msgstr "通用简介图片"
 
-#: ../../mod/content.php:714 ../../object/Item.php:608
-msgid "Quote"
-msgstr "引语"
+#: ../../addon.old/gravatar/gravatar.php:72
+#: ../../addon.old/libravatar/libravatar.php:74
+#: ../../addon/gravatar/gravatar.php:72
+#: ../../addon/libravatar/libravatar.php:74
+msgid "random geometric pattern"
+msgstr "随机的几何图案"
 
-#: ../../mod/content.php:715 ../../object/Item.php:609
-msgid "Code"
-msgstr "源代码"
+#: ../../addon.old/gravatar/gravatar.php:73
+#: ../../addon.old/libravatar/libravatar.php:75
+#: ../../addon/gravatar/gravatar.php:73
+#: ../../addon/libravatar/libravatar.php:75
+msgid "monster face"
+msgstr "怪物面子"
 
-#: ../../mod/content.php:716 ../../object/Item.php:610
-msgid "Image"
-msgstr "图片"
+#: ../../addon.old/gravatar/gravatar.php:74
+#: ../../addon.old/libravatar/libravatar.php:76
+#: ../../addon/gravatar/gravatar.php:74
+#: ../../addon/libravatar/libravatar.php:76
+msgid "computer generated face"
+msgstr "电脑造成的面子"
 
-#: ../../mod/content.php:717 ../../object/Item.php:611
-msgid "Link"
-msgstr "环节"
+#: ../../addon.old/gravatar/gravatar.php:75
+#: ../../addon.old/libravatar/libravatar.php:77
+#: ../../addon/gravatar/gravatar.php:75
+#: ../../addon/libravatar/libravatar.php:77
+msgid "retro arcade style face"
+msgstr "复古游乐场式面子"
 
-#: ../../mod/content.php:718 ../../object/Item.php:612
-msgid "Video"
-msgstr "录像"
+#: ../../addon.old/gravatar/gravatar.php:89
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon/gravatar/gravatar.php:89
+#: ../../addon/libravatar/libravatar.php:93
+msgid "Information"
+msgstr "信息"
 
-#: ../../mod/content.php:753 ../../object/Item.php:183
-msgid "add star"
-msgstr "加星"
+#: ../../addon.old/gravatar/gravatar.php:89
+#: ../../addon/gravatar/gravatar.php:89
+msgid ""
+"Libravatar addon is installed, too. Please disable Libravatar addon or this "
+"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
+"nothing was found at Libravatar."
+msgstr "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。<br>Libravatar加件没找到在Libravatar的时候可依靠的是Gravatar"
 
-#: ../../mod/content.php:754 ../../object/Item.php:184
-msgid "remove star"
-msgstr "消星"
+#: ../../addon.old/gravatar/gravatar.php:96
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon/gravatar/gravatar.php:96
+#: ../../addon/libravatar/libravatar.php:100
+msgid "Default avatar image"
+msgstr "默认纸娃娃系统"
 
-#: ../../mod/content.php:755 ../../object/Item.php:185
-msgid "toggle star status"
-msgstr "转变星现状"
+#: ../../addon.old/gravatar/gravatar.php:96
+#: ../../addon/gravatar/gravatar.php:96
+msgid "Select default avatar image if none was found at Gravatar. See README"
+msgstr "如果Gravatar上没找到纸娃娃系统选择默认的。看README"
 
-#: ../../mod/content.php:758 ../../object/Item.php:188
-msgid "starred"
-msgstr "被贴星"
+#: ../../addon.old/gravatar/gravatar.php:97
+#: ../../addon/gravatar/gravatar.php:97
+msgid "Rating of images"
+msgstr "照相评定"
 
-#: ../../mod/content.php:759 ../../object/Item.php:193
-msgid "add tag"
-msgstr "加标签"
+#: ../../addon.old/gravatar/gravatar.php:97
+#: ../../addon/gravatar/gravatar.php:97
+msgid "Select the appropriate avatar rating for your site. See README"
+msgstr "选择适合您网站的纸娃娃系统。看README"
 
-#: ../../mod/content.php:763 ../../object/Item.php:123
-msgid "save to folder"
-msgstr "保存在文件夹"
+#: ../../addon.old/gravatar/gravatar.php:111
+#: ../../addon/gravatar/gravatar.php:111
+msgid "Gravatar settings updated."
+msgstr "Gravatar设置更新了。"
 
-#: ../../mod/content.php:854 ../../object/Item.php:260
-msgid "to"
-msgstr "至"
+#: ../../addon.old/group_text/group_text.php:76
+#: ../../addon/group_text/group_text.php:76
+msgid "Group Text"
+msgstr "组\10正文"
 
-#: ../../mod/content.php:855 ../../object/Item.php:262
-msgid "Wall-to-Wall"
-msgstr "从墙到墙"
+#: ../../addon.old/group_text/group_text.php:78
+#: ../../addon/group_text/group_text.php:78
+msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
+msgstr "用光正文(无图片)组选择器在「组编辑」单"
 
-#: ../../mod/content.php:856 ../../object/Item.php:263
-msgid "via Wall-To-Wall:"
-msgstr "通过从墙到墙"
+#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39
+msgid "Post to Insanejournal"
+msgstr "转播到Insanejournal"
 
-#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189
-#: ../../addon.old/communityhome/communityhome.php:179
-#, php-format
-msgid "Welcome to %s"
-msgstr "%s欢迎你"
+#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70
+msgid "InsaneJournal Post Settings"
+msgstr "Insanejournal转播设置"
 
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "无效要求身份号。"
+#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72
+msgid "Enable InsaneJournal Post Plugin"
+msgstr "使InsaneJournal转播插件可用"
 
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
-#: ../../mod/notifications.php:211
-msgid "Discard"
-msgstr "丢弃"
+#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77
+msgid "InsaneJournal username"
+msgstr "InsaneJournal用户名"
 
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210 ../../mod/contacts.php:359
-#: ../../mod/contacts.php:413
-msgid "Ignore"
-msgstr "忽视"
+#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82
+msgid "InsaneJournal password"
+msgstr "InsaneJournal密码"
 
-#: ../../mod/notifications.php:78
-msgid "System"
-msgstr "系统"
+#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87
+msgid "Post to InsaneJournal by default"
+msgstr "默认地转播到InsaneJournal"
 
-#: ../../mod/notifications.php:83 ../../include/nav.php:140
-msgid "Network"
-msgstr "网络"
+#: ../../addon.old/impressum/impressum.php:37
+#: ../../addon/impressum/impressum.php:37
+msgid "Impressum"
+msgstr "Impressum(法定的出版信息)"
 
-#: ../../mod/notifications.php:88 ../../mod/network.php:444
-msgid "Personal"
-msgstr "私人"
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:52
+#: ../../addon.old/impressum/impressum.php:84
+#: ../../addon/impressum/impressum.php:50
+#: ../../addon/impressum/impressum.php:52
+#: ../../addon/impressum/impressum.php:84
+msgid "Site Owner"
+msgstr "网站主"
 
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
-#: ../../include/nav.php:104 ../../include/nav.php:143
-msgid "Home"
-msgstr "主页"
+#: ../../addon.old/impressum/impressum.php:50
+#: ../../addon.old/impressum/impressum.php:88
+#: ../../addon/impressum/impressum.php:50
+#: ../../addon/impressum/impressum.php:88
+msgid "Email Address"
+msgstr "电子邮件地址"
 
-#: ../../mod/notifications.php:98 ../../include/nav.php:149
-msgid "Introductions"
-msgstr "介绍"
+#: ../../addon.old/impressum/impressum.php:55
+#: ../../addon.old/impressum/impressum.php:86
+#: ../../addon/impressum/impressum.php:55
+#: ../../addon/impressum/impressum.php:86
+msgid "Postal Address"
+msgstr "邮政邮件地址"
 
-#: ../../mod/notifications.php:103 ../../mod/message.php:182
-#: ../../include/nav.php:156
-msgid "Messages"
-msgstr "消息"
+#: ../../addon.old/impressum/impressum.php:61
+#: ../../addon/impressum/impressum.php:61
+msgid ""
+"The impressum addon needs to be configured!<br />Please add at least the "
+"<tt>owner</tt> variable to your config file. For other variables please "
+"refer to the README file of the addon."
+msgstr "Impressum插件必须被设置!<br />请加至少<tt>owner</tt>变量在您的设置文件。关于别的变量请指插件的README文件。"
 
-#: ../../mod/notifications.php:122
-msgid "Show Ignored Requests"
-msgstr "显示不理的要求"
+#: ../../addon.old/impressum/impressum.php:84
+#: ../../addon/impressum/impressum.php:84
+msgid "The page operators name."
+msgstr "也运作员名。"
 
-#: ../../mod/notifications.php:122
-msgid "Hide Ignored Requests"
-msgstr "隐藏不理的要求"
+#: ../../addon.old/impressum/impressum.php:85
+#: ../../addon/impressum/impressum.php:85
+msgid "Site Owners Profile"
+msgstr "网站主的简介"
 
-#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
-msgid "Notification type: "
-msgstr "通知种类:"
+#: ../../addon.old/impressum/impressum.php:85
+#: ../../addon/impressum/impressum.php:85
+msgid "Profile address of the operator."
+msgstr "运作员的简介地址。"
 
-#: ../../mod/notifications.php:150
-msgid "Friend Suggestion"
-msgstr "朋友建议"
+#: ../../addon.old/impressum/impressum.php:86
+#: ../../addon/impressum/impressum.php:86
+msgid "How to contact the operator via snail mail. You can use BBCode here."
+msgstr "怎么用邮政跟运作员联系。您会用BBCode。"
 
-#: ../../mod/notifications.php:152
-#, php-format
-msgid "suggested by %s"
-msgstr "由%s建议的"
-
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
-#: ../../mod/contacts.php:419
-msgid "Hide this contact from others"
-msgstr "隐藏这个熟人给别人"
+#: ../../addon.old/impressum/impressum.php:87
+#: ../../addon/impressum/impressum.php:87
+msgid "Notes"
+msgstr "便条"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "Post a new friend activity"
-msgstr "表新朋友活动"
+#: ../../addon.old/impressum/impressum.php:87
+#: ../../addon/impressum/impressum.php:87
+msgid ""
+"Additional notes that are displayed beneath the contact information. You can"
+" use BBCode here."
+msgstr "附加的便条表示在联系消息下。您会用BBCode。"
 
-#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
-msgid "if applicable"
-msgstr "或适用"
+#: ../../addon.old/impressum/impressum.php:88
+#: ../../addon/impressum/impressum.php:88
+msgid "How to contact the operator via email. (will be displayed obfuscated)"
+msgstr "怎么用电子邮件跟运作员联系。(将使混乱的表示)"
 
-#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
-#: ../../mod/admin.php:733
-msgid "Approve"
-msgstr "批准"
+#: ../../addon.old/impressum/impressum.php:89
+#: ../../addon/impressum/impressum.php:89
+msgid "Footer note"
+msgstr "页脚便条"
 
-#: ../../mod/notifications.php:181
-msgid "Claims to be known to you: "
-msgstr "声称被您认识:"
+#: ../../addon.old/impressum/impressum.php:89
+#: ../../addon/impressum/impressum.php:89
+msgid "Text for the footer. You can use BBCode here."
+msgstr "页脚征文。您会用BBCode。"
 
-#: ../../mod/notifications.php:181
-msgid "yes"
-msgstr "是"
+#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
+msgid "Infinite Improbability Drive"
+msgstr "无穷不至于机车"
 
-#: ../../mod/notifications.php:181
-msgid "no"
-msgstr ""
+#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44
+msgid "IRC Settings"
+msgstr "IRC设置"
 
-#: ../../mod/notifications.php:188
-msgid "Approve as: "
-msgstr "批准作为"
+#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46
+msgid "Channel(s) to auto connect (comma separated)"
+msgstr "频道要自动地连接(逗号分隔)"
 
-#: ../../mod/notifications.php:189
-msgid "Friend"
-msgstr "æ\9c\8bå\8f\8b"
+#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51
+msgid "Popular Channels (comma separated)"
+msgstr "æµ\81è¡\8cé¢\91é\81\93ï¼\88é\80\97å\8f·å\88\86é\9a\94ï¼\89"
 
-#: ../../mod/notifications.php:190
-msgid "Sharer"
-msgstr "分享者"
+#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69
+msgid "IRC settings saved."
+msgstr "IRC设置保存了。"
 
-#: ../../mod/notifications.php:190
-msgid "Fan/Admirer"
-msgstr "迷/赞赏者"
+#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74
+msgid "IRC Chatroom"
+msgstr "IRC聊间"
 
-#: ../../mod/notifications.php:196
-msgid "Friend/Connect Request"
-msgstr "友谊/联络要求"
+#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96
+msgid "Popular Channels"
+msgstr "流行频道"
 
-#: ../../mod/notifications.php:196
-msgid "New Follower"
-msgstr "新关注者:"
+#: ../../addon.old/jappixmini/jappixmini.php:266
+#: ../../addon/jappixmini/jappixmini.php:266
+msgid "Jappix Mini addon settings"
+msgstr "Jappix Mini加件设置"
 
-#: ../../mod/notifications.php:217
-msgid "No introductions."
-msgstr "没有介绍。"
+#: ../../addon.old/jappixmini/jappixmini.php:268
+#: ../../addon/jappixmini/jappixmini.php:268
+msgid "Activate addon"
+msgstr "使加件可用"
 
-#: ../../mod/notifications.php:220 ../../include/nav.php:150
-msgid "Notifications"
-msgstr "通知"
+#: ../../addon.old/jappixmini/jappixmini.php:271
+#: ../../addon/jappixmini/jappixmini.php:271
+msgid ""
+"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
+msgstr "<em>别</em>把Jappixmini聊小窗插入网用户界面"
 
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
-#: ../../mod/notifications.php:469
-#, php-format
-msgid "%s liked %s's post"
-msgstr "%s喜欢了%s的消息"
+#: ../../addon.old/jappixmini/jappixmini.php:274
+#: ../../addon/jappixmini/jappixmini.php:274
+msgid "Jabber username"
+msgstr "Jabber用户名"
 
-#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
-#: ../../mod/notifications.php:478
-#, php-format
-msgid "%s disliked %s's post"
-msgstr "%s不喜欢了%s的消息"
+#: ../../addon.old/jappixmini/jappixmini.php:277
+#: ../../addon/jappixmini/jappixmini.php:277
+msgid "Jabber server"
+msgstr "Jabber服务器"
 
-#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
-#: ../../mod/notifications.php:492
-#, php-format
-msgid "%s is now friends with %s"
-msgstr "%s成为%s的朋友"
+#: ../../addon.old/jappixmini/jappixmini.php:281
+#: ../../addon/jappixmini/jappixmini.php:281
+msgid "Jabber BOSH host"
+msgstr "Jabber BOSH主机"
 
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#, php-format
-msgid "%s created a new post"
-msgstr "%s造成新文章"
+#: ../../addon.old/jappixmini/jappixmini.php:285
+#: ../../addon/jappixmini/jappixmini.php:285
+msgid "Jabber password"
+msgstr "Jabber密码"
 
-#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
-#: ../../mod/notifications.php:501
-#, php-format
-msgid "%s commented on %s's post"
-msgstr "%s便条%s的文章"
+#: ../../addon.old/jappixmini/jappixmini.php:290
+#: ../../addon/jappixmini/jappixmini.php:290
+msgid "Encrypt Jabber password with Friendica password (recommended)"
+msgstr "把Jabber密码跟Friendica密码加密(推荐的)"
 
-#: ../../mod/notifications.php:302
-msgid "No more network notifications."
-msgstr "没有别的网络通信。"
+#: ../../addon.old/jappixmini/jappixmini.php:293
+#: ../../addon/jappixmini/jappixmini.php:293
+msgid "Friendica password"
+msgstr "Friendica密码"
 
-#: ../../mod/notifications.php:306
-msgid "Network Notifications"
-msgstr "网络通知"
+#: ../../addon.old/jappixmini/jappixmini.php:296
+#: ../../addon/jappixmini/jappixmini.php:296
+msgid "Approve subscription requests from Friendica contacts automatically"
+msgstr "自动地批准从Friendica熟人的订阅要求"
 
-#: ../../mod/notifications.php:332 ../../mod/notify.php:61
-msgid "No more system notifications."
-msgstr "没别系统通知。"
+#: ../../addon.old/jappixmini/jappixmini.php:299
+#: ../../addon/jappixmini/jappixmini.php:299
+msgid "Subscribe to Friendica contacts automatically"
+msgstr "自动地订阅Friendica熟人"
 
-#: ../../mod/notifications.php:336 ../../mod/notify.php:65
-msgid "System Notifications"
-msgstr "系统通知"
+#: ../../addon.old/jappixmini/jappixmini.php:302
+#: ../../addon/jappixmini/jappixmini.php:302
+msgid "Purge internal list of jabber addresses of contacts"
+msgstr "把熟人jabber地址从内部单"
 
-#: ../../mod/notifications.php:427
-msgid "No more personal notifications."
-msgstr "没有别的私人通信。"
+#: ../../addon.old/jappixmini/jappixmini.php:308
+#: ../../addon/jappixmini/jappixmini.php:308
+msgid "Add contact"
+msgstr "加熟人"
 
-#: ../../mod/notifications.php:431
-msgid "Personal Notifications"
-msgstr "私人通知"
+#: ../../addon.old/js_upload/js_upload.php:43
+#: ../../addon/js_upload/js_upload.php:43
+msgid "Upload a file"
+msgstr "上传文件"
 
-#: ../../mod/notifications.php:508
-msgid "No more home notifications."
-msgstr "没有别的家通信。"
+#: ../../addon.old/js_upload/js_upload.php:44
+#: ../../addon/js_upload/js_upload.php:44
+msgid "Drop files here to upload"
+msgstr "在这儿放文件为上传"
 
-#: ../../mod/notifications.php:512
-msgid "Home Notifications"
-msgstr "主页通知"
+#: ../../addon.old/js_upload/js_upload.php:45
+#: ../../addon/js_upload/js_upload.php:45 ../../include/items.php:3970
+#: ../../include/conversation.php:1080 ../../mod/contacts.php:249
+#: ../../mod/settings.php:561 ../../mod/settings.php:587
+#: ../../mod/dfrn_request.php:848 ../../mod/suggest.php:32
+#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:148
+#: ../../mod/fbrowser.php:81 ../../mod/fbrowser.php:116
+#: ../../mod/message.php:212 ../../mod/photos.php:202 ../../mod/photos.php:290
+msgid "Cancel"
+msgstr "退消"
 
-#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
-msgid "Could not access contact record."
-msgstr "用不了熟人记录。"
+#: ../../addon.old/js_upload/js_upload.php:46
+#: ../../addon/js_upload/js_upload.php:46
+msgid "Failed"
+msgstr "失败"
 
-#: ../../mod/contacts.php:99
-msgid "Could not locate selected profile."
-msgstr "找不到选择的简介。"
+#: ../../addon.old/js_upload/js_upload.php:297
+#: ../../addon/js_upload/js_upload.php:303
+msgid "No files were uploaded."
+msgstr "没有文件上传。"
 
-#: ../../mod/contacts.php:122
-msgid "Contact updated."
-msgstr "熟人更新了。"
+#: ../../addon.old/js_upload/js_upload.php:303
+#: ../../addon/js_upload/js_upload.php:309
+msgid "Uploaded file is empty"
+msgstr "上传的文件空的"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been blocked"
-msgstr "熟人拦了"
+#: ../../addon.old/js_upload/js_upload.php:315
+#: ../../addon/js_upload/js_upload.php:321 ../../mod/photos.php:761
+msgid "Image exceeds size limit of "
+msgstr "图片超出最大尺寸"
 
-#: ../../mod/contacts.php:187
-msgid "Contact has been unblocked"
-msgstr "熟人否拦了"
+#: ../../addon.old/js_upload/js_upload.php:326
+#: ../../addon/js_upload/js_upload.php:332
+msgid "File has an invalid extension, it should be one of "
+msgstr "文件扩展名无效的,应该是这些一个:"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been ignored"
-msgstr "熟人不理了"
+#: ../../addon.old/js_upload/js_upload.php:337
+#: ../../addon/js_upload/js_upload.php:343
+msgid "Upload was cancelled, or server error encountered"
+msgstr "上传注销了,或相遇服务器错误"
 
-#: ../../mod/contacts.php:201
-msgid "Contact has been unignored"
-msgstr "熟人否不理了"
+#: ../../addon.old/libertree/libertree.php:36
+#: ../../addon/libertree/libertree.php:36
+msgid "Post to libertree"
+msgstr "转播到libertree"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been archived"
-msgstr "把联系存档了"
+#: ../../addon.old/libertree/libertree.php:67
+#: ../../addon/libertree/libertree.php:67
+msgid "libertree Post Settings"
+msgstr "libertree转播设置"
 
-#: ../../mod/contacts.php:220
-msgid "Contact has been unarchived"
-msgstr "把联系从存档拿来了"
+#: ../../addon.old/libertree/libertree.php:69
+#: ../../addon/libertree/libertree.php:69
+msgid "Enable Libertree Post Plugin"
+msgstr "使Libertree转播插件可用"
 
-#: ../../mod/contacts.php:244
-msgid "Do you really want to delete this contact?"
-msgstr "您真的想删除这个熟人吗?"
+#: ../../addon.old/libertree/libertree.php:74
+#: ../../addon/libertree/libertree.php:74
+msgid "Libertree API token"
+msgstr "Libertree API令牌"
 
-#: ../../mod/contacts.php:263
-msgid "Contact has been removed."
-msgstr "熟人删除了。"
+#: ../../addon.old/libertree/libertree.php:79
+#: ../../addon/libertree/libertree.php:79
+msgid "Libertree site URL"
+msgstr "Libertree网站URL"
 
-#: ../../mod/contacts.php:301
-#, php-format
-msgid "You are mutual friends with %s"
-msgstr "您和%s是共同朋友们"
+#: ../../addon.old/libertree/libertree.php:84
+#: ../../addon/libertree/libertree.php:84
+msgid "Post to Libertree by default"
+msgstr "默认地转播到Libertree"
 
-#: ../../mod/contacts.php:305
-#, php-format
-msgid "You are sharing with %s"
-msgstr "您分享给%s"
+#: ../../addon.old/libravatar/libravatar.php:14
+#: ../../addon/libravatar/libravatar.php:14
+msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
+msgstr "安装不了Libravatar。<br>它要求PHP>=5.3"
 
-#: ../../mod/contacts.php:310
+#: ../../addon.old/libravatar/libravatar.php:83
+#: ../../addon/libravatar/libravatar.php:83
 #, php-format
-msgid "%s is sharing with you"
-msgstr "%s给您分享"
+msgid "Your PHP version %s is lower than the required PHP >= 5.3."
+msgstr "您PHP版体数%s是比要求的5.3少。"
 
-#: ../../mod/contacts.php:327
-msgid "Private communications are not available for this contact."
-msgstr "没有私人的沟通跟这个熟人"
+#: ../../addon.old/libravatar/libravatar.php:84
+#: ../../addon/libravatar/libravatar.php:84
+msgid "This addon is not functional on your server."
+msgstr "这个加件在您的服务器不可用的"
 
-#: ../../mod/contacts.php:330
-msgid "Never"
-msgstr "从未"
+#: ../../addon.old/libravatar/libravatar.php:93
+#: ../../addon/libravatar/libravatar.php:93
+msgid ""
+"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
+"Libravatar addon will fall back to Gravatar if nothing was found at "
+"Libravatar."
+msgstr "Gravatar加件安装着。请使Gravatar加件不可用。<br>如果找不到什么在Libravatar加件可依靠的是Gravatar。"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was successful)"
-msgstr "(更新成功)"
+#: ../../addon.old/libravatar/libravatar.php:100
+#: ../../addon/libravatar/libravatar.php:100
+msgid "Select default avatar image if none was found. See README"
+msgstr "选择默认纸娃娃系统如果一个也找不到。看README"
 
-#: ../../mod/contacts.php:334
-msgid "(Update was not successful)"
-msgstr "(更新不成功)"
+#: ../../addon.old/libravatar/libravatar.php:112
+#: ../../addon/libravatar/libravatar.php:112
+msgid "Libravatar settings updated."
+msgstr "Libravatar设置更新了。"
 
-#: ../../mod/contacts.php:336
-msgid "Suggest friends"
-msgstr "建议朋友们"
+#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39
+msgid "Post to LiveJournal"
+msgstr "转播到LiveJournal"
 
-#: ../../mod/contacts.php:340
-#, php-format
-msgid "Network type: %s"
-msgstr "网络种类: %s"
+#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70
+msgid "LiveJournal Post Settings"
+msgstr "LiveJournal转播设置"
 
-#: ../../mod/contacts.php:343 ../../include/contact_widgets.php:199
-#, php-format
-msgid "%d contact in common"
-msgid_plural "%d contacts in common"
-msgstr[0] "%d共同熟人"
+#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72
+msgid "Enable LiveJournal Post Plugin"
+msgstr "使Livejournal转播插件可用"
 
-#: ../../mod/contacts.php:348
-msgid "View all contacts"
-msgstr "看所有的熟人"
+#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77
+msgid "LiveJournal username"
+msgstr "LiveJournal用户名"
 
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:737
-msgid "Unblock"
-msgstr "不拦"
+#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82
+msgid "LiveJournal password"
+msgstr "LiveJournal密码"
 
-#: ../../mod/contacts.php:353 ../../mod/contacts.php:412
-#: ../../mod/admin.php:736
-msgid "Block"
-msgstr "拦"
+#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87
+msgid "Post to LiveJournal by default"
+msgstr "默认地转播到LiveJournal"
 
-#: ../../mod/contacts.php:356
-msgid "Toggle Blocked status"
-msgstr "交替拦配置"
+#: ../../addon.old/mathjax/mathjax.php:37 ../../addon/mathjax/mathjax.php:37
+msgid ""
+"The MathJax addon renders mathematical formulae written using the LaTeX "
+"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
+"your wall,network tab and private mail."
+msgstr "MathJax插件表示用LaTeX句法的数学公式,围绕$$或者eqnarray快,在您墙,网络分页和私人收件箱的文章。"
 
-#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
-msgid "Unignore"
-msgstr "停不理"
+#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38
+msgid "Use the MathJax renderer"
+msgstr "用MathJax表示器"
 
-#: ../../mod/contacts.php:362
-msgid "Toggle Ignored status"
-msgstr "交替忽视现状"
+#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
+msgid "MathJax Base URL"
+msgstr "MathJax基础URL"
 
-#: ../../mod/contacts.php:366
-msgid "Unarchive"
-msgstr "从存档拿来"
+#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75
+msgid ""
+"The URL for the javascript file that should be included to use MathJax. Can "
+"be either the MathJax CDN or another installation of MathJax."
+msgstr "URL JavaScript文件应该包括为用MathJax。可以MathJax CDN或者别的MathJax安装。"
 
-#: ../../mod/contacts.php:366
-msgid "Archive"
-msgstr "存档"
+#: ../../addon.old/membersince/membersince.php:18
+#: ../../addon/membersince/membersince.php:18
+msgid "Member since:"
+msgstr "客人从:"
 
-#: ../../mod/contacts.php:369
-msgid "Toggle Archive status"
-msgstr "交替档案现状"
+#: ../../addon.old/morepokes/morepokes.php:19
+#: ../../addon/morepokes/morepokes.php:19
+msgid "bitchslap"
+msgstr "恶毒掌击"
 
-#: ../../mod/contacts.php:372
-msgid "Repair"
-msgstr "维修"
+#: ../../addon.old/morepokes/morepokes.php:19
+#: ../../addon/morepokes/morepokes.php:19
+msgid "bitchslapped"
+msgstr "恶毒掌击了"
 
-#: ../../mod/contacts.php:375
-msgid "Advanced Contact Settings"
-msgstr "专家熟人设置"
+#: ../../addon.old/morepokes/morepokes.php:20
+#: ../../addon/morepokes/morepokes.php:20
+msgid "shag"
+msgstr "肏"
 
-#: ../../mod/contacts.php:381
-msgid "Communications lost with this contact!"
-msgstr "联系跟这个熟人断开了!"
+#: ../../addon.old/morepokes/morepokes.php:20
+#: ../../addon/morepokes/morepokes.php:20
+msgid "shagged"
+msgstr "肏了"
 
-#: ../../mod/contacts.php:384
-msgid "Contact Editor"
-msgstr "熟人编器"
+#: ../../addon.old/morepokes/morepokes.php:21
+#: ../../addon/morepokes/morepokes.php:21
+msgid "do something obscenely biological to"
+msgstr "做什么淫秽生物的于"
 
-#: ../../mod/contacts.php:387
-msgid "Profile Visibility"
-msgstr "简历可见量"
+#: ../../addon.old/morepokes/morepokes.php:21
+#: ../../addon/morepokes/morepokes.php:21
+msgid "did something obscenely biological to"
+msgstr "做了什么淫秽生物的于"
 
-#: ../../mod/contacts.php:388
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。"
+#: ../../addon.old/morepokes/morepokes.php:22
+#: ../../addon/morepokes/morepokes.php:22
+msgid "point out the poke feature to"
+msgstr "把戳特点指给"
 
-#: ../../mod/contacts.php:389
-msgid "Contact Information / Notes"
-msgstr "熟人信息/便条"
+#: ../../addon.old/morepokes/morepokes.php:22
+#: ../../addon/morepokes/morepokes.php:22
+msgid "pointed out the poke feature to"
+msgstr "把了戳特点指给"
 
-#: ../../mod/contacts.php:390
-msgid "Edit contact notes"
-msgstr "编辑熟人便条"
+#: ../../addon.old/morepokes/morepokes.php:23
+#: ../../addon/morepokes/morepokes.php:23
+msgid "declare undying love for"
+msgstr "表明永远的爱情为"
 
-#: ../../mod/contacts.php:395 ../../mod/contacts.php:585
-#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "看%s的简介[%s]"
+#: ../../addon.old/morepokes/morepokes.php:23
+#: ../../addon/morepokes/morepokes.php:23
+msgid "declared undying love for"
+msgstr "表明了永远的爱情为"
 
-#: ../../mod/contacts.php:396
-msgid "Block/Unblock contact"
-msgstr "拦/否拦熟人"
+#: ../../addon.old/morepokes/morepokes.php:24
+#: ../../addon/morepokes/morepokes.php:24
+msgid "patent"
+msgstr "专利"
 
-#: ../../mod/contacts.php:397
-msgid "Ignore contact"
-msgstr "忽视熟人"
+#: ../../addon.old/morepokes/morepokes.php:24
+#: ../../addon/morepokes/morepokes.php:24
+msgid "patented"
+msgstr "专利了"
 
-#: ../../mod/contacts.php:398
-msgid "Repair URL settings"
-msgstr "维修URL设置"
+#: ../../addon.old/morepokes/morepokes.php:25
+#: ../../addon/morepokes/morepokes.php:25
+msgid "stroke beard"
+msgstr "摸胡子"
 
-#: ../../mod/contacts.php:399
-msgid "View conversations"
-msgstr "看交流"
+#: ../../addon.old/morepokes/morepokes.php:25
+#: ../../addon/morepokes/morepokes.php:25
+msgid "stroked their beard at"
+msgstr "摸胡子了"
 
-#: ../../mod/contacts.php:401
-msgid "Delete contact"
-msgstr "删除熟人"
+#: ../../addon.old/morepokes/morepokes.php:26
+#: ../../addon/morepokes/morepokes.php:26
+msgid ""
+"bemoan the declining standards of modern secondary and tertiary education to"
+msgstr "哀叹现代的二三等教育规格的衰退给"
 
-#: ../../mod/contacts.php:405
-msgid "Last update:"
-msgstr "上个更新:"
+#: ../../addon.old/morepokes/morepokes.php:26
+#: ../../addon/morepokes/morepokes.php:26
+msgid ""
+"bemoans the declining standards of modern secondary and tertiary education "
+"to"
+msgstr "哀叹现代的二三等教育规格的衰退给"
 
-#: ../../mod/contacts.php:407
-msgid "Update public posts"
-msgstr "更新公开文章"
-
-#: ../../mod/contacts.php:409 ../../mod/admin.php:1213
-msgid "Update now"
-msgstr "现在更新"
+#: ../../addon.old/morepokes/morepokes.php:27
+#: ../../addon/morepokes/morepokes.php:27
+msgid "hug"
+msgstr "拥抱"
 
-#: ../../mod/contacts.php:416
-msgid "Currently blocked"
-msgstr "现在拦的"
+#: ../../addon.old/morepokes/morepokes.php:27
+#: ../../addon/morepokes/morepokes.php:27
+msgid "hugged"
+msgstr "拥抱了"
 
-#: ../../mod/contacts.php:417
-msgid "Currently ignored"
-msgstr "现在不理的"
+#: ../../addon.old/morepokes/morepokes.php:28
+#: ../../addon/morepokes/morepokes.php:28
+msgid "kiss"
+msgstr "亲吻"
 
-#: ../../mod/contacts.php:418
-msgid "Currently archived"
-msgstr "现在存档着"
+#: ../../addon.old/morepokes/morepokes.php:28
+#: ../../addon/morepokes/morepokes.php:28
+msgid "kissed"
+msgstr "亲吻了"
 
-#: ../../mod/contacts.php:419
-msgid ""
-"Replies/likes to your public posts <strong>may</strong> still be visible"
-msgstr "回答/喜欢关您公开文章<strong>会</strong>还可见的"
+#: ../../addon.old/morepokes/morepokes.php:29
+#: ../../addon/morepokes/morepokes.php:29
+msgid "raise eyebrows at"
+msgstr "举起眉毛于"
 
-#: ../../mod/contacts.php:470
-msgid "Suggestions"
-msgstr "建议"
+#: ../../addon.old/morepokes/morepokes.php:29
+#: ../../addon/morepokes/morepokes.php:29
+msgid "raised their eyebrows at"
+msgstr "举起了眉毛于"
 
-#: ../../mod/contacts.php:473
-msgid "Suggest potential friends"
-msgstr "建议潜在朋友们"
+#: ../../addon.old/morepokes/morepokes.php:30
+#: ../../addon/morepokes/morepokes.php:30
+msgid "insult"
+msgstr "侮辱"
 
-#: ../../mod/contacts.php:476 ../../mod/group.php:194
-msgid "All Contacts"
-msgstr "所有的熟人"
+#: ../../addon.old/morepokes/morepokes.php:30
+#: ../../addon/morepokes/morepokes.php:30
+msgid "insulted"
+msgstr "侮辱"
 
-#: ../../mod/contacts.php:479
-msgid "Show all contacts"
-msgstr "表示所有的熟人"
+#: ../../addon.old/morepokes/morepokes.php:31
+#: ../../addon/morepokes/morepokes.php:31
+msgid "praise"
+msgstr "赞扬"
 
-#: ../../mod/contacts.php:482
-msgid "Unblocked"
-msgstr "不拦了"
+#: ../../addon.old/morepokes/morepokes.php:31
+#: ../../addon/morepokes/morepokes.php:31
+msgid "praised"
+msgstr "赞扬了"
 
-#: ../../mod/contacts.php:485
-msgid "Only show unblocked contacts"
-msgstr "只表示不拦的熟人"
+#: ../../addon.old/morepokes/morepokes.php:32
+#: ../../addon/morepokes/morepokes.php:32
+msgid "be dubious of"
+msgstr "怀疑"
 
-#: ../../mod/contacts.php:489
-msgid "Blocked"
-msgstr "拦了"
+#: ../../addon.old/morepokes/morepokes.php:32
+#: ../../addon/morepokes/morepokes.php:32
+msgid "was dubious of"
+msgstr "怀疑了"
 
-#: ../../mod/contacts.php:492
-msgid "Only show blocked contacts"
-msgstr "只表示拦的熟人"
+#: ../../addon.old/morepokes/morepokes.php:33
+#: ../../addon/morepokes/morepokes.php:33
+msgid "eat"
+msgstr "吃"
 
-#: ../../mod/contacts.php:496
-msgid "Ignored"
-msgstr "忽视的"
+#: ../../addon.old/morepokes/morepokes.php:33
+#: ../../addon/morepokes/morepokes.php:33
+msgid "ate"
+msgstr "吃了"
 
-#: ../../mod/contacts.php:499
-msgid "Only show ignored contacts"
-msgstr "只表示忽视的熟人"
+#: ../../addon.old/morepokes/morepokes.php:34
+#: ../../addon/morepokes/morepokes.php:34
+msgid "giggle and fawn at"
+msgstr "咯咯地笑和巴结为"
 
-#: ../../mod/contacts.php:503
-msgid "Archived"
-msgstr "在存档"
+#: ../../addon.old/morepokes/morepokes.php:34
+#: ../../addon/morepokes/morepokes.php:34
+msgid "giggled and fawned at"
+msgstr "咯咯地笑和巴结为了"
 
-#: ../../mod/contacts.php:506
-msgid "Only show archived contacts"
-msgstr "只表示档案熟人"
+#: ../../addon.old/morepokes/morepokes.php:35
+#: ../../addon/morepokes/morepokes.php:35
+msgid "doubt"
+msgstr "怀疑"
 
-#: ../../mod/contacts.php:510
-msgid "Hidden"
-msgstr "隐藏的"
+#: ../../addon.old/morepokes/morepokes.php:35
+#: ../../addon/morepokes/morepokes.php:35
+msgid "doubted"
+msgstr "怀疑了"
 
-#: ../../mod/contacts.php:513
-msgid "Only show hidden contacts"
-msgstr "只表示隐藏的熟人"
+#: ../../addon.old/morepokes/morepokes.php:36
+#: ../../addon/morepokes/morepokes.php:36
+msgid "glare"
+msgstr "瞪"
 
-#: ../../mod/contacts.php:561
-msgid "Mutual Friendship"
-msgstr "共同友谊"
+#: ../../addon.old/morepokes/morepokes.php:36
+#: ../../addon/morepokes/morepokes.php:36
+msgid "glared at"
+msgstr "瞪了"
 
-#: ../../mod/contacts.php:565
-msgid "is a fan of yours"
-msgstr "是您迷"
+#: ../../addon.old/notimeline/notimeline.php:32
+#: ../../addon/notimeline/notimeline.php:32
+msgid "No Timeline settings updated."
+msgstr "没有时间链设置更新"
 
-#: ../../mod/contacts.php:569
-msgid "you are a fan of"
-msgstr "你喜欢"
+#: ../../addon.old/notimeline/notimeline.php:56
+#: ../../addon/notimeline/notimeline.php:56
+msgid "No Timeline Settings"
+msgstr "没有时间链设置"
 
-#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41
-msgid "Edit contact"
-msgstr "编熟人"
+#: ../../addon.old/notimeline/notimeline.php:58
+#: ../../addon/notimeline/notimeline.php:58
+msgid "Disable Archive selector on profile wall"
+msgstr "使在简介墙上档案选择器不能用"
 
-#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:171
-msgid "Contacts"
-msgstr "熟人"
+#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78
+msgid "Not Safe For Work (General Purpose Content Filter) settings"
+msgstr "工作不安全(通用内容过滤)设置"
 
-#: ../../mod/contacts.php:611
-msgid "Search your contacts"
-msgstr "搜索您的熟人"
+#: ../../addon.old/nsfw/nsfw.php:80 ../../addon/nsfw/nsfw.php:80
+msgid ""
+"This plugin looks in posts for the words/text you specify below, and "
+"collapses any content containing those keywords so it is not displayed at "
+"inappropriate times, such as sexual innuendo that may be improper in a work "
+"setting. It is polite and recommended to tag any content containing nudity "
+"with #NSFW.  This filter can also match any other word/text you specify, and"
+" can thereby be used as a general purpose content filter."
+msgstr "这个插件搜索您下面输入的词/正文在所有的文章里,和把包含那些关键词的内容隐藏,省得不妥当的时候表示,比如性的影射在办公室里。是礼貌和建议的把什么包括裸体的内容跟#NSFW标签。这个过滤也会符合设么别的您输入的词,从而能当通用内容过滤有用的。"
 
-#: ../../mod/contacts.php:612 ../../mod/directory.php:59
-#: ../../addon/forumdirectory/forumdirectory.php:81
-msgid "Finding: "
-msgstr "找着:"
+#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81
+msgid "Enable Content filter"
+msgstr "使内容过滤可用"
 
-#: ../../mod/contacts.php:613 ../../mod/directory.php:61
-#: ../../addon/forumdirectory/forumdirectory.php:83
-#: ../../include/contact_widgets.php:33
-msgid "Find"
-msgstr "搜索"
+#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84
+msgid "Comma separated list of keywords to hide"
+msgstr "逗号分隔单词要隐藏"
 
-#: ../../mod/lostpass.php:17
-msgid "No valid account found."
-msgstr "找不到效的账户。"
+#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89
+msgid "Use /expression/ to provide regular expressions"
+msgstr "用/<i>表达式</i>/为输入正则表达式"
 
-#: ../../mod/lostpass.php:33
-msgid "Password reset request issued. Check your email."
-msgstr "重设密码要求发布了。核对您的收件箱。"
+#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105
+msgid "NSFW Settings saved."
+msgstr "NSFW设置保持了。"
 
-#: ../../mod/lostpass.php:44
+#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157
 #, php-format
-msgid "Password reset requested at %s"
-msgstr "重设密码要求被发布%s"
+msgid "%s - Click to open/close"
+msgstr "%s - 点击为打开/关闭"
 
-#: ../../mod/lostpass.php:66
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。"
+#: ../../addon.old/numfriends/numfriends.php:46
+#: ../../addon/numfriends/numfriends.php:46
+msgid "Numfriends settings updated."
+msgstr "Numfriends设置更新了"
 
-#: ../../mod/lostpass.php:84 ../../boot.php:1051
-msgid "Password Reset"
-msgstr "复位密码"
+#: ../../addon.old/numfriends/numfriends.php:77
+#: ../../addon/numfriends/numfriends.php:77
+msgid "Numfriends Settings"
+msgstr "Numfriends设置"
 
-#: ../../mod/lostpass.php:85
-msgid "Your password has been reset as requested."
-msgstr "您的密码被重设如要求的。"
+#: ../../addon.old/oembed.old/oembed.php:30
+msgid "OEmbed settings updated"
+msgstr "OEmbed设置更新了"
 
-#: ../../mod/lostpass.php:86
-msgid "Your new password is"
-msgstr "你的新的密码是"
+#: ../../addon.old/oembed.old/oembed.php:43
+msgid "Use OEmbed for YouTube videos"
+msgstr "用OEmbed为YouTube视频"
 
-#: ../../mod/lostpass.php:87
-msgid "Save or copy your new password - and then"
-msgstr "保存或复制新密码-之后"
+#: ../../addon.old/oembed.old/oembed.php:71
+msgid "URL to embed:"
+msgstr "URL要嵌入:"
 
-#: ../../mod/lostpass.php:88
-msgid "click here to login"
-msgstr "在这儿点击"
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
+#: ../../addon/openstreetmap/openstreetmap.php:95
+msgid "Tile Server URL"
+msgstr "砖服务器URL"
 
-#: ../../mod/lostpass.php:89
+#: ../../addon.old/openstreetmap/openstreetmap.php:71
+#: ../../addon/openstreetmap/openstreetmap.php:95
 msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr "您的密码能被变化从<em>设置</em>页成功登记后。"
-
-#: ../../mod/lostpass.php:107
-#, php-format
-msgid "Your password has been changed at %s"
-msgstr "您密码被变化在%s"
+"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
+"target=\"_blank\">public tile servers</a>"
+msgstr "一单<a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">公共砖服务器</a>"
 
-#: ../../mod/lostpass.php:122
-msgid "Forgot your Password?"
-msgstr "忘记你的密码吗?"
-
-#: ../../mod/lostpass.php:123
-msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
-msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"
-
-#: ../../mod/lostpass.php:124
-msgid "Nickname or Email: "
-msgstr "昵称或邮件地址:"
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
+#: ../../addon/openstreetmap/openstreetmap.php:96
+msgid "Default zoom"
+msgstr "默认变焦距"
 
-#: ../../mod/lostpass.php:125
-msgid "Reset"
-msgstr "复位"
+#: ../../addon.old/openstreetmap/openstreetmap.php:72
+#: ../../addon/openstreetmap/openstreetmap.php:96
+msgid "The default zoom level. (1:world, 18:highest)"
+msgstr "默认变焦距。(1:世界, 18:最高)"
 
-#: ../../mod/settings.php:35
-msgid "Additional features"
-msgstr "附加的特点"
+#: ../../addon.old/page/page.php:77 ../../addon.old/page/page.php:111
+#: ../../addon.old/showmore/showmore.php:119 ../../addon/page/page.php:77
+#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
+#: ../../include/contact_widgets.php:204 ../../mod/content.php:629
+#: ../../object/Item.php:355 ../../boot.php:652
+msgid "show more"
+msgstr "看多"
 
-#: ../../mod/settings.php:118
-msgid "Missing some important data!"
-msgstr "有的重要信息失踪的!"
+#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166
+msgid "Page settings updated."
+msgstr "页设置更新了"
 
-#: ../../mod/settings.php:121 ../../mod/settings.php:586
-msgid "Update"
-msgstr "更新"
+#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195
+msgid "Page Settings"
+msgstr "页设置"
 
-#: ../../mod/settings.php:227
-msgid "Failed to connect with email account using the settings provided."
-msgstr "不能连接电子邮件账户用输入的设置。"
+#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197
+msgid "How many forums to display on sidebar without paging"
+msgstr "多少评坛要在工具栏上表示无分页"
 
-#: ../../mod/settings.php:232
-msgid "Email settings updated."
-msgstr "电子邮件设置更新了"
+#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200
+msgid "Randomise Page/Forum list"
+msgstr "把页/评坛单洗牌"
 
-#: ../../mod/settings.php:247
-msgid "Features updated"
-msgstr "特点更新了"
+#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203
+msgid "Show pages/forums on profile page"
+msgstr "表示页/评坛在简介页"
 
-#: ../../mod/settings.php:307
-msgid "Passwords do not match. Password unchanged."
-msgstr "密码们不相配。密码没未改变的。"
+#: ../../addon.old/pageheader/pageheader.php:50
+#: ../../addon/pageheader/pageheader.php:50
+msgid "\"pageheader\" Settings"
+msgstr "\"pageheader"
 
-#: ../../mod/settings.php:312
-msgid "Empty passwords are not allowed. Password unchanged."
-msgstr "空的密码禁止。密码没未改变的。"
+#: ../../addon.old/pageheader/pageheader.php:68
+#: ../../addon/pageheader/pageheader.php:68
+msgid "pageheader Settings saved."
+msgstr "pageHeader配置保存了。"
 
-#: ../../mod/settings.php:323
-msgid "Password changed."
-msgstr "密码变化了。"
+#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79
+msgid ""
+"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
+"analytics tool."
+msgstr "这个网站用<a href='http://www.piwik.org'>Piwik</a>分析工具追踪 。"
 
-#: ../../mod/settings.php:325
-msgid "Password update failed. Please try again."
-msgstr "密码更新失败了。请再试。"
+#: ../../addon.old/piwik/piwik.php:82 ../../addon/piwik/piwik.php:82
+#, php-format
+msgid ""
+"If you do not want that your visits are logged this way you <a href='%s'>can"
+" set a cookie to prevent Piwik from tracking further visits of the site</a> "
+"(opt-out)."
+msgstr "如果您不想您访问这样记录您<a href='%s'>可以用一个cookie防Piwik追踪未来的访问</a>(选择性退出)。"
 
-#: ../../mod/settings.php:390
-msgid " Please use a shorter name."
-msgstr "请用短一点个名。"
+#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
+msgid "Piwik Base URL"
+msgstr "Piwik基础URL"
 
-#: ../../mod/settings.php:392
-msgid " Name too short."
-msgstr "名字太短。"
+#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90
+msgid ""
+"Absolute path to your Piwik installation. (without protocol (http/s), with "
+"trailing slash)"
+msgstr "绝对道路到Piwik安装。(没有协议(http/s)跟斜线后缀)"
 
-#: ../../mod/settings.php:398
-msgid " Not valid email."
-msgstr " 电子邮件地址无效."
+#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91
+msgid "Site ID"
+msgstr "网站ID"
 
-#: ../../mod/settings.php:400
-msgid " Cannot change to that email."
-msgstr "不能变化到这个邮件地址。"
+#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92
+msgid "Show opt-out cookie link?"
+msgstr " 显示选择性退出cookie按钮?"
 
-#: ../../mod/settings.php:454
-msgid "Private forum has no privacy permissions. Using default privacy group."
-msgstr "私人评坛没有隐私批准。默认隐私组用者。"
+#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93
+msgid "Asynchronous tracking"
+msgstr "异步追踪"
 
-#: ../../mod/settings.php:458
-msgid "Private forum has no privacy permissions and no default privacy group."
-msgstr "私人评坛没有隐私批准或默认隐私组。"
+#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150
+msgid "Planets Settings"
+msgstr "行星设置"
 
-#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:497
-#: ../../addon/fbpost/fbpost.php:155
-#: ../../addon/remote_permissions/remote_permissions.php:205
-#: ../../addon/impressum/impressum.php:78
-#: ../../addon/openstreetmap/openstreetmap.php:104
-#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
-#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:550
-#: ../../addon.old/facebook/facebook.php:495
-#: ../../addon.old/fbpost/fbpost.php:144
-#: ../../addon.old/impressum/impressum.php:78
-#: ../../addon.old/openstreetmap/openstreetmap.php:80
-#: ../../addon.old/mathjax/mathjax.php:66 ../../addon.old/piwik/piwik.php:105
-#: ../../addon.old/twitter/twitter.php:389
-msgid "Settings updated."
-msgstr "设置跟新了"
+#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152
+msgid "Enable Planets Plugin"
+msgstr "使行星插件可用"
 
-#: ../../mod/settings.php:559 ../../mod/settings.php:585
-#: ../../mod/settings.php:621
-msgid "Add application"
-msgstr "å\8a å\85¥åº\94ç\94¨"
+#: ../../addon.old/posterous/posterous.php:37
+#: ../../addon/posterous/posterous.php:37
+msgid "Post to Posterous"
+msgstr "å\8f\91é\80\81å¾\80Posterous"
 
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
-#: ../../addon/statusnet/statusnet.php:747
-#: ../../addon.old/statusnet/statusnet.php:570
-msgid "Consumer Key"
-msgstr "钥匙(Consumer Key)"
+#: ../../addon.old/posterous/posterous.php:70
+#: ../../addon/posterous/posterous.php:70
+msgid "Posterous Post Settings"
+msgstr "Posterous发送设置"
 
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
-#: ../../addon/statusnet/statusnet.php:746
-#: ../../addon.old/statusnet/statusnet.php:569
-msgid "Consumer Secret"
-msgstr "密码(Consumer Secret)"
+#: ../../addon.old/posterous/posterous.php:72
+#: ../../addon/posterous/posterous.php:72
+msgid "Enable Posterous Post Plugin"
+msgstr "使Posterous发送插件可用的"
 
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
-msgid "Redirect"
-msgstr "重定向"
+#: ../../addon.old/posterous/posterous.php:77
+#: ../../addon/posterous/posterous.php:77
+msgid "Posterous login"
+msgstr "Posterous登记名"
 
-#: ../../mod/settings.php:566 ../../mod/settings.php:592
-msgid "Icon url"
-msgstr "图符URL"
+#: ../../addon.old/posterous/posterous.php:82
+#: ../../addon/posterous/posterous.php:82
+msgid "Posterous password"
+msgstr "Posterous密码"
 
-#: ../../mod/settings.php:577
-msgid "You can't edit this application."
-msgstr "您不能编辑这个应用。"
+#: ../../addon.old/posterous/posterous.php:87
+#: ../../addon/posterous/posterous.php:87
+msgid "Posterous site ID"
+msgstr "Posterous网站身份证明"
 
-#: ../../mod/settings.php:620
-msgid "Connected Apps"
-msgstr "连接着应用"
+#: ../../addon.old/posterous/posterous.php:92
+#: ../../addon/posterous/posterous.php:92
+msgid "Posterous API token"
+msgstr "Posterous API令牌"
 
-#: ../../mod/settings.php:624
-msgid "Client key starts with"
-msgstr "客户钥匙头字是"
+#: ../../addon.old/posterous/posterous.php:97
+#: ../../addon/posterous/posterous.php:97
+msgid "Post to Posterous by default"
+msgstr "默认地发送往Posterous"
 
-#: ../../mod/settings.php:625
-msgid "No name"
-msgstr "无名"
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
+msgid "Lifetime of the cache (in hours)"
+msgstr "缓存期(小时)"
 
-#: ../../mod/settings.php:626
-msgid "Remove authorization"
-msgstr "撤消权能"
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
+msgid "Cache Statistics"
+msgstr "缓存统计"
 
-#: ../../mod/settings.php:638
-msgid "No Plugin settings configured"
-msgstr "没插件设置配置了"
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
+msgid "Number of items"
+msgstr "项目数量"
 
-#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
-#: ../../addon.old/widgets/widgets.php:123
-msgid "Plugin Settings"
-msgstr "插件设置"
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
+msgid "Size of the cache"
+msgstr "缓存尺寸"
 
-#: ../../mod/settings.php:660
-msgid "Off"
-msgstr "关"
+#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
+msgid "Delete the whole cache"
+msgstr "删除全缓存"
 
-#: ../../mod/settings.php:660
-msgid "On"
-msgstr "开"
+#: ../../addon.old/public_server/public_server.php:126
+#: ../../addon.old/testdrive/testdrive.php:94
+#: ../../addon/public_server/public_server.php:126
+#: ../../addon/testdrive/testdrive.php:94
+#, php-format
+msgid "Your account on %s will expire in a few days."
+msgstr "您账户在%s几天后过期了。"
 
-#: ../../mod/settings.php:668
-msgid "Additional Features"
-msgstr "附加的特点"
+#: ../../addon.old/public_server/public_server.php:127
+#: ../../addon/public_server/public_server.php:127
+msgid "Your Friendica account is about to expire."
+msgstr "您Friendica账户快过期。"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#: ../../addon.old/public_server/public_server.php:128
+#: ../../addon/public_server/public_server.php:128
 #, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr "包括的支持为%s连通性是%s"
-
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "enabled"
-msgstr "能够做的"
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
+msgstr "你好%1$s,⏎ ⏎您的账户在%2$s五天内过期。您会继续您的账户经由每30天至少一次登录。"
 
-#: ../../mod/settings.php:681 ../../mod/settings.php:682
-msgid "disabled"
-msgstr "使不能用"
+#: ../../addon.old/qcomment/qcomment.php:51
+#: ../../addon/qcomment/qcomment.php:51
+msgid ":-)"
+msgstr ":-)"
 
-#: ../../mod/settings.php:682
-msgid "StatusNet"
-msgstr "StatusNet"
-
-#: ../../mod/settings.php:714
-msgid "Email access is disabled on this site."
-msgstr "这个网站没有邮件使用权"
+#: ../../addon.old/qcomment/qcomment.php:51
+#: ../../addon/qcomment/qcomment.php:51
+msgid ":-("
+msgstr ":-("
 
-#: ../../mod/settings.php:721
-msgid "Connector Settings"
-msgstr "连接器设置"
+#: ../../addon.old/qcomment/qcomment.php:51
+#: ../../addon/qcomment/qcomment.php:51
+msgid "lol"
+msgstr "lol"
 
-#: ../../mod/settings.php:726
-msgid "Email/Mailbox Setup"
-msgstr "邮件收件箱设置"
+#: ../../addon.old/qcomment/qcomment.php:54
+#: ../../addon/qcomment/qcomment.php:54
+msgid "Quick Comment Settings"
+msgstr "快捷评论设置"
 
-#: ../../mod/settings.php:727
+#: ../../addon.old/qcomment/qcomment.php:56
+#: ../../addon/qcomment/qcomment.php:56
 msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"
-
-#: ../../mod/settings.php:728
-msgid "Last successful email check:"
-msgstr "上个成功收件箱检查:"
+"Quick comments are found near comment boxes, sometimes hidden. Click them to"
+" provide simple replies."
+msgstr "快捷评论是在评论文本框,有时候隐藏。点击它们为输入简单的回答。"
 
-#: ../../mod/settings.php:730
-msgid "IMAP server name:"
-msgstr "IMAP服务器名字:"
+#: ../../addon.old/qcomment/qcomment.php:57
+#: ../../addon/qcomment/qcomment.php:57
+msgid "Enter quick comments, one per line"
+msgstr "输入快捷评论,一行一个"
 
-#: ../../mod/settings.php:731
-msgid "IMAP port:"
-msgstr "IMAP服务器端口:"
+#: ../../addon.old/qcomment/qcomment.php:75
+#: ../../addon/qcomment/qcomment.php:75
+msgid "Quick Comment settings saved."
+msgstr "快捷评论设置保存了。"
 
-#: ../../mod/settings.php:732
-msgid "Security:"
-msgstr "安全:"
+#: ../../addon.old/randplace/randplace.php:169
+#: ../../addon/randplace/randplace.php:169
+msgid "Randplace Settings"
+msgstr "随意下设置"
 
-#: ../../mod/settings.php:732 ../../mod/settings.php:737
-#: ../../addon/fbpost/fbpost.php:255 ../../addon/fbpost/fbpost.php:257
-#: ../../addon/dav/common/wdcal_edit.inc.php:191
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
-msgid "None"
-msgstr "没有"
+#: ../../addon.old/randplace/randplace.php:171
+#: ../../addon/randplace/randplace.php:171
+msgid "Enable Randplace Plugin"
+msgstr "使随意下插件能用"
 
-#: ../../mod/settings.php:733
-msgid "Email login name:"
-msgstr "邮件登记名:"
+#: ../../addon.old/showmore/showmore.php:38
+#: ../../addon/showmore/showmore.php:38
+msgid "\"Show more\" Settings"
+msgstr "「看更多」设置"
 
-#: ../../mod/settings.php:734
-msgid "Email password:"
-msgstr "邮件密码:"
+#: ../../addon.old/showmore/showmore.php:41
+#: ../../addon/showmore/showmore.php:41
+msgid "Enable Show More"
+msgstr "使看更多能用"
 
-#: ../../mod/settings.php:735
-msgid "Reply-to address:"
-msgstr "回答地址:"
+#: ../../addon.old/showmore/showmore.php:44
+#: ../../addon/showmore/showmore.php:44
+msgid "Cutting posts after how much characters"
+msgstr "剪掉文章多少字后"
 
-#: ../../mod/settings.php:736
-msgid "Send public posts to all email contacts:"
-msgstr "发公开的文章给所有的邮件熟人:"
+#: ../../addon.old/showmore/showmore.php:65
+#: ../../addon/showmore/showmore.php:65
+msgid "Show More Settings saved."
+msgstr "看更多设置保存了。"
 
-#: ../../mod/settings.php:737
-msgid "Action after import:"
-msgstr "进口后行动:"
+#: ../../addon.old/snautofollow/snautofollow.php:32
+#: ../../addon/snautofollow/snautofollow.php:32
+msgid "StatusNet AutoFollow settings updated."
+msgstr "StatusNet自动关注设置更新了。"
 
-#: ../../mod/settings.php:737
-msgid "Mark as seen"
-msgstr "标注看过"
+#: ../../addon.old/snautofollow/snautofollow.php:56
+#: ../../addon/snautofollow/snautofollow.php:56
+msgid "StatusNet AutoFollow Settings"
+msgstr "StatusNet自动关注设置"
 
-#: ../../mod/settings.php:737
-msgid "Move to folder"
-msgstr "搬到文件夹"
+#: ../../addon.old/snautofollow/snautofollow.php:58
+#: ../../addon/snautofollow/snautofollow.php:58
+msgid "Automatically follow any StatusNet followers/mentioners"
+msgstr "自动关注所有的StatusGet关注者/提及"
 
-#: ../../mod/settings.php:738
-msgid "Move to folder:"
-msgstr "搬到文件夹:"
+#: ../../addon.old/startpage/startpage.php:83
+#: ../../addon/startpage/startpage.php:83
+msgid "Startpage Settings"
+msgstr "开始页设置"
 
-#: ../../mod/settings.php:769 ../../mod/admin.php:420
-msgid "No special theme for mobile devices"
-msgstr "没专门适合手机的主题"
+#: ../../addon.old/startpage/startpage.php:85
+#: ../../addon/startpage/startpage.php:85
+msgid "Home page to load after login  - leave blank for profile wall"
+msgstr "主页登录后表示-留空白为简介墙"
 
-#: ../../mod/settings.php:809
-msgid "Display Settings"
-msgstr "表示设置"
+#: ../../addon.old/startpage/startpage.php:88
+#: ../../addon/startpage/startpage.php:88
+msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
+msgstr "例如:&quot;网络&quot;或&quot;通知/系统&quot;"
 
-#: ../../mod/settings.php:815 ../../mod/settings.php:826
-msgid "Display Theme:"
-msgstr "显示主题:"
+#: ../../addon.old/statusnet/statusnet.php:134
+#: ../../addon/statusnet/statusnet.php:138
+msgid "Post to StatusNet"
+msgstr "发送到StatusNet"
 
-#: ../../mod/settings.php:816
-msgid "Mobile Theme:"
-msgstr "手机主题:"
+#: ../../addon.old/statusnet/statusnet.php:176
+#: ../../addon/statusnet/statusnet.php:180
+msgid ""
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
+msgstr "请联系您的网站行政人员。<br />提供的API URL无效。"
 
-#: ../../mod/settings.php:817
-msgid "Update browser every xx seconds"
-msgstr "更新游览器每XX秒"
+#: ../../addon.old/statusnet/statusnet.php:204
+#: ../../addon/statusnet/statusnet.php:208
+msgid "We could not contact the StatusNet API with the Path you entered."
+msgstr "我们不能联系StatusNet API在您输入的路径。"
 
-#: ../../mod/settings.php:817
-msgid "Minimum of 10 seconds, no maximum"
-msgstr "最小10秒,没有上限"
+#: ../../addon.old/statusnet/statusnet.php:232
+#: ../../addon/statusnet/statusnet.php:238
+msgid "StatusNet settings updated."
+msgstr "StatusNet设置更新了。"
 
-#: ../../mod/settings.php:818
-msgid "Number of items to display per page:"
-msgstr "每页表示多少项目:"
+#: ../../addon.old/statusnet/statusnet.php:257
+#: ../../addon/statusnet/statusnet.php:269
+msgid "StatusNet Posting Settings"
+msgstr "StatusNet发送设置"
 
-#: ../../mod/settings.php:818
-msgid "Maximum of 100 items"
-msgstr "最多100项目"
+#: ../../addon.old/statusnet/statusnet.php:271
+#: ../../addon/statusnet/statusnet.php:283
+msgid "Globally Available StatusNet OAuthKeys"
+msgstr "综合可用的StatusNet OAuthKeys"
 
-#: ../../mod/settings.php:819
-msgid "Don't show emoticons"
-msgstr "别表示请表符号"
+#: ../../addon.old/statusnet/statusnet.php:272
+#: ../../addon/statusnet/statusnet.php:284
+msgid ""
+"There are preconfigured OAuth key pairs for some StatusNet servers "
+"available. If you are useing one of them, please use these credentials. If "
+"not feel free to connect to any other StatusNet instance (see below)."
+msgstr "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。"
 
-#: ../../mod/settings.php:895
-msgid "Normal Account Page"
-msgstr "平常账户页"
+#: ../../addon.old/statusnet/statusnet.php:280
+#: ../../addon/statusnet/statusnet.php:292
+msgid "Provide your own OAuth Credentials"
+msgstr "提供您自己的OAuth证件"
 
-#: ../../mod/settings.php:896
-msgid "This account is a normal personal profile"
-msgstr "这个帐户是正常私人简介"
+#: ../../addon.old/statusnet/statusnet.php:281
+#: ../../addon/statusnet/statusnet.php:293
+msgid ""
+"No consumer key pair for StatusNet found. Register your Friendica Account as"
+" an desktop client on your StatusNet account, copy the consumer key pair "
+"here and enter the API base root.<br />Before you register your own OAuth "
+"key pair ask the administrator if there is already a key pair for this "
+"Friendica installation at your favorited StatusNet installation."
+msgstr "找不到「consumer key」双为StatusNet。注册您Friendica账户当「desktop client」在您的StatusNet账户,粘贴「consumer key」双这儿和输入API基础根。<br />您登记您的OAuth钥匙双前问行政人员已经有没有钥匙双为这个Friendica安装在您最喜欢的StatusNet安装。"
 
-#: ../../mod/settings.php:899
-msgid "Soapbox Page"
-msgstr "演讲台页"
+#: ../../addon.old/statusnet/statusnet.php:283
+#: ../../addon/statusnet/statusnet.php:295
+msgid "OAuth Consumer Key"
+msgstr "Oauth消费者钥匙"
 
-#: ../../mod/settings.php:900
-msgid "Automatically approve all connection/friend requests as read-only fans"
-msgstr "自动批准所有联络/友谊要求当只看的迷"
+#: ../../addon.old/statusnet/statusnet.php:286
+#: ../../addon/statusnet/statusnet.php:298
+msgid "OAuth Consumer Secret"
+msgstr "Oauth消费者密码"
 
-#: ../../mod/settings.php:903
-msgid "Community Forum/Celebrity Account"
-msgstr "社会评坛/名人账户"
+#: ../../addon.old/statusnet/statusnet.php:289
+#: ../../addon/statusnet/statusnet.php:301
+msgid "Base API Path (remember the trailing /)"
+msgstr "基础API地址(注意最后的/)"
 
-#: ../../mod/settings.php:904
+#: ../../addon.old/statusnet/statusnet.php:310
+#: ../../addon/statusnet/statusnet.php:322
 msgid ""
-"Automatically approve all connection/friend requests as read-write fans"
-msgstr "自动批准所有联络/友谊要求当看写的迷"
+"To connect to your StatusNet account click the button below to get a "
+"security code from StatusNet which you have to copy into the input box below"
+" and submit the form. Only your <strong>public</strong> posts will be posted"
+" to StatusNet."
+msgstr "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。"
 
-#: ../../mod/settings.php:907
-msgid "Automatic Friend Page"
-msgstr "自动朋友页"
+#: ../../addon.old/statusnet/statusnet.php:311
+#: ../../addon/statusnet/statusnet.php:323
+msgid "Log in with StatusNet"
+msgstr "用StatusNet登记"
 
-#: ../../mod/settings.php:908
-msgid "Automatically approve all connection/friend requests as friends"
-msgstr "自动批准所有联络/友谊要求当朋友"
+#: ../../addon.old/statusnet/statusnet.php:313
+#: ../../addon/statusnet/statusnet.php:325
+msgid "Copy the security code from StatusNet here"
+msgstr "复制安全密码从StatusNet这儿"
 
-#: ../../mod/settings.php:911
-msgid "Private Forum [Experimental]"
-msgstr "隐私评坛[实验性的 ]"
+#: ../../addon.old/statusnet/statusnet.php:319
+#: ../../addon/statusnet/statusnet.php:331
+msgid "Cancel Connection Process"
+msgstr "注销连接过程 "
 
-#: ../../mod/settings.php:912
-msgid "Private forum - approved members only"
-msgstr "隐私评坛-只批准的成员"
+#: ../../addon.old/statusnet/statusnet.php:321
+#: ../../addon/statusnet/statusnet.php:333
+msgid "Current StatusNet API is"
+msgstr "现在StatusNet API是"
 
-#: ../../mod/settings.php:924
-msgid "OpenID:"
-msgstr "OpenID:"
+#: ../../addon.old/statusnet/statusnet.php:322
+#: ../../addon/statusnet/statusnet.php:334
+msgid "Cancel StatusNet Connection"
+msgstr "注销StatusNet连接"
 
-#: ../../mod/settings.php:924
-msgid "(Optional) Allow this OpenID to login to this account."
-msgstr "(可选的)许这个OpenID这个账户登记。"
+#: ../../addon.old/statusnet/statusnet.php:333
+#: ../../addon.old/twitter/twitter.php:189
+#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
+msgid "Currently connected to: "
+msgstr "现在连接到:"
 
-#: ../../mod/settings.php:934
-msgid "Publish your default profile in your local site directory?"
-msgstr "出版您默认简介在您当地的网站目录?"
+#: ../../addon.old/statusnet/statusnet.php:334
+#: ../../addon/statusnet/statusnet.php:346
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated StatusNet account. You can choose to do so by default (here) or "
+"for every posting separately in the posting options when writing the entry."
+msgstr "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"
 
-#: ../../mod/settings.php:940
-msgid "Publish your default profile in the global social directory?"
-msgstr "出版您默认简介在综合社会目录?"
+#: ../../addon.old/statusnet/statusnet.php:336
+#: ../../addon/statusnet/statusnet.php:348
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) the link potentially included in public "
+"postings relayed to StatusNet will lead the visitor to a blank page "
+"informing the visitor that the access to your profile has been restricted."
+msgstr "<strong>注意</strong>: 由于您的隐私设置(<em>隐藏您的简介内容为生看者?</em>)超链接可能包括在公文章转播到StatusNets会带领来客到空白页讲他看您的简介被限制。"
 
-#: ../../mod/settings.php:948
-msgid "Hide your contact/friend list from viewers of your default profile?"
-msgstr "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n "
+#: ../../addon.old/statusnet/statusnet.php:339
+#: ../../addon/statusnet/statusnet.php:351
+msgid "Allow posting to StatusNet"
+msgstr "许放在StatusNet"
 
-#: ../../mod/settings.php:952
-msgid "Hide your profile details from unknown viewers?"
-msgstr "使简介信息给陌生的看着看不了?"
+#: ../../addon.old/statusnet/statusnet.php:342
+#: ../../addon/statusnet/statusnet.php:354
+msgid "Send public postings to StatusNet by default"
+msgstr "默认发送公开文章在StatusNet"
 
-#: ../../mod/settings.php:957
-msgid "Allow friends to post to your profile page?"
-msgstr "允许朋友们贴文章在您的简介页?"
+#: ../../addon.old/statusnet/statusnet.php:345
+#: ../../addon/statusnet/statusnet.php:366
+msgid "Send linked #-tags and @-names to StatusNet"
+msgstr "转播连接的#标签盒@名到StatusNet"
 
-#: ../../mod/settings.php:963
-msgid "Allow friends to tag your posts?"
-msgstr "允许朋友们标签您的文章?"
+#: ../../addon.old/statusnet/statusnet.php:350
+#: ../../addon.old/twitter/twitter.php:206
+#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
+msgid "Clear OAuth configuration"
+msgstr "清理出OAuth设置"
 
-#: ../../mod/settings.php:969
-msgid "Allow us to suggest you as a potential friend to new members?"
-msgstr "允许我们建议您潜力朋友给新成员?"
+#: ../../addon.old/statusnet/statusnet.php:567
+#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484
+msgid "Site name"
+msgstr "网页名字"
 
-#: ../../mod/settings.php:975
-msgid "Permit unknown people to send you private mail?"
-msgstr "允许生人寄给您私人邮件?"
+#: ../../addon.old/statusnet/statusnet.php:568
+#: ../../addon/statusnet/statusnet.php:745
+msgid "API URL"
+msgstr "API URL"
 
-#: ../../mod/settings.php:983
-msgid "Profile is <strong>not published</strong>."
-msgstr "简介是<strong>没出版</strong>"
+#: ../../addon.old/statusnet/statusnet.php:569
+#: ../../addon/statusnet/statusnet.php:746 ../../mod/settings.php:564
+#: ../../mod/settings.php:590
+msgid "Consumer Secret"
+msgstr "密码(Consumer Secret)"
 
-#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
-msgid "or"
-msgstr "或者"
+#: ../../addon.old/statusnet/statusnet.php:570
+#: ../../addon/statusnet/statusnet.php:747 ../../mod/settings.php:563
+#: ../../mod/settings.php:589
+msgid "Consumer Key"
+msgstr "钥匙(Consumer Key)"
 
-#: ../../mod/settings.php:991
-msgid "Your Identity Address is"
-msgstr "您的同一个人地址是"
+#: ../../addon.old/testdrive/testdrive.php:95
+#: ../../addon/testdrive/testdrive.php:95
+msgid "Your Friendica test account is about to expire."
+msgstr "您Friendica化验账户快过期了。"
 
-#: ../../mod/settings.php:1002
-msgid "Automatically expire posts after this many days:"
-msgstr "自动地过期文章这数天:"
+#: ../../addon.old/testdrive/testdrive.php:96
+#: ../../addon/testdrive/testdrive.php:96
+#, php-format
+msgid ""
+"Hi %1$s,\n"
+"\n"
+"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
+msgstr "你好%1$s,⏎ ⏎您化验账户在%2$s五天内将过期。我们希望您享受了这个试车和用这个机会为您综合社会交通找持久的Friendica网站。一单公开的网站是在http://dir.friendica.com/siteinfo。为多消息安排您自己的Friendica服务器请看工程网站在http://friendica.com。"
 
-#: ../../mod/settings.php:1002
-msgid "If empty, posts will not expire. Expired posts will be deleted"
-msgstr "如果空的,文章不会过期。过期的文章被删除"
+#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20
+msgid "Three Dimensional Tic-Tac-Toe"
+msgstr "三维井字棋"
 
-#: ../../mod/settings.php:1003
-msgid "Advanced expiration settings"
-msgstr "先进的过期设置"
+#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53
+msgid "3D Tic-Tac-Toe"
+msgstr "三维井字棋"
 
-#: ../../mod/settings.php:1004
-msgid "Advanced Expiration"
-msgstr "先进的过期"
+#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58
+msgid "New game"
+msgstr "新游戏"
 
-#: ../../mod/settings.php:1005
-msgid "Expire posts:"
-msgstr "æ\8a\8aæ\96\87ç« è¿\87æ\9c\9fï¼\9a"
+#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59
+msgid "New game with handicap"
+msgstr "æ\96°æ¸¸æ\88\8fä¸\8då\88©æ\9d¡ä»¶ "
 
-#: ../../mod/settings.php:1006
-msgid "Expire personal notes:"
-msgstr "把私人便条过期:"
+#: ../../addon.old/tictac/tictac.php:60 ../../addon/tictac/tictac.php:60
+msgid ""
+"Three dimensional tic-tac-toe is just like the traditional game except that "
+"it is played on multiple levels simultaneously. "
+msgstr "三维井字棋跟传统的一样,除了完同时在多水平。"
 
-#: ../../mod/settings.php:1007
-msgid "Expire starred posts:"
-msgstr "把星的文章过期:"
+#: ../../addon.old/tictac/tictac.php:61 ../../addon/tictac/tictac.php:61
+msgid ""
+"In this case there are three levels. You win by getting three in a row on "
+"any level, as well as up, down, and diagonally across the different levels."
+msgstr "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。"
 
-#: ../../mod/settings.php:1008
-msgid "Expire photos:"
-msgstr "把照片过期:"
+#: ../../addon.old/tictac/tictac.php:63 ../../addon/tictac/tictac.php:63
+msgid ""
+"The handicap game disables the center position on the middle level because "
+"the player claiming this square often has an unfair advantage."
+msgstr "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。"
 
-#: ../../mod/settings.php:1009
-msgid "Only expire posts by others:"
-msgstr "只别人的文章过期:"
+#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182
+msgid "You go first..."
+msgstr "您先下..."
 
-#: ../../mod/settings.php:1035
-msgid "Account Settings"
-msgstr "帐户设置"
+#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187
+msgid "I'm going first this time..."
+msgstr "这次我先下..."
 
-#: ../../mod/settings.php:1043
-msgid "Password Settings"
-msgstr "密码设置"
+#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193
+msgid "You won!"
+msgstr "您赢了!"
 
-#: ../../mod/settings.php:1044
-msgid "New Password:"
-msgstr "新密码:"
+#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
+#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
+msgid "\"Cat\" game!"
+msgstr "「猫子」游戏!"
 
-#: ../../mod/settings.php:1045
-msgid "Confirm:"
-msgstr "确认:"
+#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222
+msgid "I won!"
+msgstr "我赢了!"
 
-#: ../../mod/settings.php:1045
-msgid "Leave password fields blank unless changing"
-msgstr "非变化留空密码栏"
+#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158
+msgid "Post to Tumblr"
+msgstr "发送到Tumblr"
 
-#: ../../mod/settings.php:1049
-msgid "Basic Settings"
-msgstr "基础设置"
+#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185
+msgid "Tumblr Post Settings"
+msgstr "Tumblr发送设置"
 
-#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15
-msgid "Full Name:"
-msgstr "全名:"
+#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192
+msgid "Enable Tumblr Post Plugin"
+msgstr "使Tumblr发送插件能够"
 
-#: ../../mod/settings.php:1051
-msgid "Email Address:"
-msgstr "电子邮件地址:"
+#: ../../addon.old/tumblr/tumblr.php:74
+msgid "Tumblr login"
+msgstr "Tumblr登记名"
 
-#: ../../mod/settings.php:1052
-msgid "Your Timezone:"
-msgstr "您的时区:"
+#: ../../addon.old/tumblr/tumblr.php:79
+msgid "Tumblr password"
+msgstr "Tumblr密码"
 
-#: ../../mod/settings.php:1053
-msgid "Default Post Location:"
-msgstr "默认文章位置:"
+#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197
+msgid "Post to Tumblr by default"
+msgstr "默认地给Tumblr发送"
 
-#: ../../mod/settings.php:1054
-msgid "Use Browser Location:"
-msgstr "用游览器位置:"
+#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77
+msgid "Post to Twitter"
+msgstr "发送到在Twitter"
 
-#: ../../mod/settings.php:1057
-msgid "Security and Privacy Settings"
-msgstr "安全和隐私设置"
+#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129
+msgid "Twitter settings updated."
+msgstr "Twitter设置更新了。"
 
-#: ../../mod/settings.php:1059
-msgid "Maximum Friend Requests/Day:"
-msgstr "最多友谊要求个天:"
+#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157
+msgid "Twitter Posting Settings"
+msgstr "Twitter发送设置"
 
-#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
-msgid "(to prevent spam abuse)"
-msgstr "(为防止垃圾邮件滥用)"
+#: ../../addon.old/twitter/twitter.php:153 ../../addon/twitter/twitter.php:164
+msgid ""
+"No consumer key pair for Twitter found. Please contact your site "
+"administrator."
+msgstr "找不到Twitter的消费钥匙双。请联系您的网页行政人员。"
 
-#: ../../mod/settings.php:1060
-msgid "Default Post Permissions"
-msgstr "默认文章准许"
+#: ../../addon.old/twitter/twitter.php:172 ../../addon/twitter/twitter.php:183
+msgid ""
+"At this Friendica instance the Twitter plugin was enabled but you have not "
+"yet connected your account to your Twitter account. To do so click the "
+"button below to get a PIN from Twitter which you have to copy into the input"
+" box below and submit the form. Only your <strong>public</strong> posts will"
+" be posted to Twitter."
+msgstr "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的<strong>公开</strong>文章被发送到Twitter。"
 
-#: ../../mod/settings.php:1061
-msgid "(click to open/close)"
-msgstr "(点击为打开/关闭)"
+#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184
+msgid "Log in with Twitter"
+msgstr "用Twitter登记"
 
-#: ../../mod/settings.php:1072
-msgid "Default Private Post"
-msgstr "默认私人文章"
-
-#: ../../mod/settings.php:1073
-msgid "Default Public Post"
-msgstr "默认公开文章"
+#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186
+msgid "Copy the PIN from Twitter here"
+msgstr "复制Twitter密码这儿"
 
-#: ../../mod/settings.php:1077
-msgid "Default Permissions for New Posts"
-msgstr "默认权利为新文章"
+#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated Twitter account. You can choose to do so by default (here) or for"
+" every posting separately in the posting options when writing the entry."
+msgstr "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"
 
-#: ../../mod/settings.php:1089
-msgid "Maximum private messages per day from unknown people:"
-msgstr "一天最多从生人私人邮件:"
+#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203
+msgid ""
+"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
+"details from unknown viewers?</em>) the link potentially included in public "
+"postings relayed to Twitter will lead the visitor to a blank page informing "
+"the visitor that the access to your profile has been restricted."
+msgstr "<strong>注意</strong>:由于您的隐私设置(<em>隐藏您的简介内容为生人?</em>)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。"
 
-#: ../../mod/settings.php:1092
-msgid "Notification Settings"
-msgstr "消息设置"
+#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206
+msgid "Allow posting to Twitter"
+msgstr "允许发送到Twitter"
 
-#: ../../mod/settings.php:1093
-msgid "By default post a status message when:"
-msgstr "默认地发现状通知如果:"
+#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209
+msgid "Send public postings to Twitter by default"
+msgstr "默认地发送公开文章到Twitter"
 
-#: ../../mod/settings.php:1094
-msgid "accepting a friend request"
-msgstr "接受朋友邀请"
+#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221
+msgid "Send linked #-tags and @-names to Twitter"
+msgstr "转播连接的#标签盒@名到Twitter"
 
-#: ../../mod/settings.php:1095
-msgid "joining a forum/community"
-msgstr "加入评坛/社会"
+#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558
+msgid "Consumer key"
+msgstr "钥匙(Consumer key)"
 
-#: ../../mod/settings.php:1096
-msgid "making an <em>interesting</em> profile change"
-msgstr "把简介有意思地变修改"
+#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559
+msgid "Consumer secret"
+msgstr "密码(Consumer secret)"
 
-#: ../../mod/settings.php:1097
-msgid "Send a notification email when:"
-msgstr "发一个消息要是:"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
+#: ../../addon/uhremotestorage/uhremotestorage.php:84
+#, php-format
+msgid ""
+"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
+" storage (like ownCloud). See <a "
+"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
+" WebFinger</a>"
+msgstr "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看<a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
 
-#: ../../mod/settings.php:1098
-msgid "You receive an introduction"
-msgstr "你受到一个介绍"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
+#: ../../addon/uhremotestorage/uhremotestorage.php:85
+msgid "Template URL (with {category})"
+msgstr "模板URL(根{category})"
 
-#: ../../mod/settings.php:1099
-msgid "Your introductions are confirmed"
-msgstr "你的介绍确认了"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
+#: ../../addon/uhremotestorage/uhremotestorage.php:86
+msgid "OAuth end-point"
+msgstr "OAuth 端点"
 
-#: ../../mod/settings.php:1100
-msgid "Someone writes on your profile wall"
-msgstr "某人写在你的简历墙"
+#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
+#: ../../addon/uhremotestorage/uhremotestorage.php:87
+msgid "Api"
+msgstr "API"
 
-#: ../../mod/settings.php:1101
-msgid "Someone writes a followup comment"
-msgstr "某人写一个后续的评论"
+#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39
+msgid "View Source"
+msgstr "看源代码"
 
-#: ../../mod/settings.php:1102
-msgid "You receive a private message"
-msgstr "你受到一个私消息"
+#: ../../addon.old/widgets/widget_friendheader.php:40
+#: ../../addon/widgets/widget_friendheader.php:40
+msgid "Get added to this list!"
+msgstr "被在这个单子加入!"
 
-#: ../../mod/settings.php:1103
-msgid "You receive a friend suggestion"
-msgstr "你受到一个朋友建议"
+#: ../../addon.old/widgets/widget_friends.php:40
+#: ../../addon/widgets/widget_friends.php:40
+msgid "Connect on Friendica!"
+msgstr "连接在Friendica!"
 
-#: ../../mod/settings.php:1104
-msgid "You are tagged in a post"
-msgstr "你被在新闻标签"
+#: ../../addon.old/widgets/widget_like.php:58
+#: ../../addon/widgets/widget_like.php:59
+#, php-format
+msgid "%d person likes this"
+msgid_plural "%d people like this"
+msgstr[0] "%d人喜欢这个"
 
-#: ../../mod/settings.php:1105
-msgid "You are poked/prodded/etc. in a post"
-msgstr "您在文章被戳"
+#: ../../addon.old/widgets/widget_like.php:61
+#: ../../addon/widgets/widget_like.php:62
+#, php-format
+msgid "%d person doesn't like this"
+msgid_plural "%d people don't like this"
+msgstr[0] "%d人不喜欢这个"
 
-#: ../../mod/settings.php:1108
-msgid "Advanced Account/Page Type Settings"
-msgstr "专家账户/页种设置"
+#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57
+msgid "Generate new key"
+msgstr "造成新钥匙"
 
-#: ../../mod/settings.php:1109
-msgid "Change the behaviour of this account for special situations"
-msgstr "把这个账户特别情况的时候行动变化"
+#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60
+msgid "Widgets key"
+msgstr "小窗口钥匙"
 
-#: ../../mod/manage.php:106
-msgid "Manage Identities and/or Pages"
-msgstr "管理身份或页"
+#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62
+msgid "Widgets available"
+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 "交替不同同一人或社会/组页合用您的账户或给您「管理」批准"
+#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124
+#: ../../mod/settings.php:646
+msgid "Plugin Settings"
+msgstr "插件设置"
 
-#: ../../mod/manage.php:108
-msgid "Select an identity to manage: "
-msgstr "选择同一个人管理:"
+#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42
+msgid "Post to Wordpress"
+msgstr "发送到Wordpress"
 
-#: ../../mod/network.php:181
-msgid "Search Results For:"
-msgstr "搜索结果为:"
+#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76
+msgid "WordPress Post Settings"
+msgstr "Wordpress发送设置"
 
-#: ../../mod/network.php:224 ../../mod/search.php:21
-msgid "Remove term"
-msgstr "删除关键字"
+#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78
+msgid "Enable WordPress Post Plugin"
+msgstr "使Wordpress发送插件可用"
 
-#: ../../mod/network.php:233 ../../mod/search.php:30
-#: ../../include/features.php:41
-msgid "Saved Searches"
-msgstr "保存的搜索"
+#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83
+msgid "WordPress username"
+msgstr "Wordpress用户名"
 
-#: ../../mod/network.php:234 ../../include/group.php:275
-msgid "add"
-msgstr "添加"
+#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88
+msgid "WordPress password"
+msgstr "Wordpress密码"
 
-#: ../../mod/network.php:397
-msgid "Commented Order"
-msgstr "评论时间顺序"
+#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93
+msgid "WordPress API URL"
+msgstr "WordPress API URL"
 
-#: ../../mod/network.php:400
-msgid "Sort by Comment Date"
-msgstr "按评论日期顺序排列"
+#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98
+msgid "Post to WordPress by default"
+msgstr "默认地发送到Wordpress"
 
-#: ../../mod/network.php:403
-msgid "Posted Order"
-msgstr "è´´æ\97¶é\97´é¡ºåº\8f"
+#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103
+msgid "Provide a backlink to the Friendica post"
+msgstr "è¾\93å\85¥å\8f\8då\90\91é\93¾æ\8e¥å\88°Friendicaæ\96\87ç« "
 
-#: ../../mod/network.php:406
-msgid "Sort by Post Date"
-msgstr "按发布日期顺序排列"
+#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207
+msgid "Read the original post and comment stream on Friendica"
+msgstr "看原来文章和评论溪流在Friendica"
 
-#: ../../mod/network.php:447
-msgid "Posts that mention or involve you"
-msgstr "提或关您的文章"
+#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55
+msgid "YourLS Settings"
+msgstr "YourLS配置"
 
-#: ../../mod/network.php:453
-msgid "New"
-msgstr ""
+#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57
+msgid "URL: http://"
+msgstr "URL: http://"
 
-#: ../../mod/network.php:456
-msgid "Activity Stream - by date"
-msgstr "活动河流-按日期"
+#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62
+msgid "Username:"
+msgstr "用户名:"
 
-#: ../../mod/network.php:462
-msgid "Shared Links"
-msgstr "å\85±å\90\8cç\8e¯è\8a\82"
+#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67
+msgid "Password:"
+msgstr "å¯\86ç \81ï¼\9a"
 
-#: ../../mod/network.php:465
-msgid "Interesting Links"
-msgstr "有意思的超链接"
+#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72
+msgid "Use SSL "
+msgstr "用SSL"
 
-#: ../../mod/network.php:471
-msgid "Starred"
-msgstr "被星"
+#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92
+msgid "yourls Settings saved."
+msgstr "yourls配置保存了。"
 
-#: ../../mod/network.php:474
-msgid "Favourite Posts"
-msgstr "最喜欢的文章"
+#: ../../addon/altpager/altpager.php:99
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "Global"
+msgstr "综合"
 
-#: ../../mod/network.php:546
-#, 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] "警告:这个组包括%s成员从不安全网络。"
+#: ../../addon/altpager/altpager.php:99
+msgid "Force global use of the alternate pager"
+msgstr "让大家用供替换的分页"
 
-#: ../../mod/network.php:549
-msgid "Private messages to this group are at risk of public disclosure."
-msgstr "私人通信给这组回被公开。"
+#: ../../addon/altpager/altpager.php:100
+#: ../../addon/remote_permissions/remote_permissions.php:198
+msgid "Individual"
+msgstr "一个人的"
 
-#: ../../mod/network.php:621
-msgid "Contact: "
-msgstr "熟人:"
+#: ../../addon/altpager/altpager.php:100
+msgid "Each user chooses whether to use the alternate pager"
+msgstr "每用户选择是否用供替换的分页"
 
-#: ../../mod/network.php:623
-msgid "Private messages to this person are at risk of public disclosure."
-msgstr "ç§\81人é\80\9aä¿¡ç»\99è¿\99个人å\9b\9e被å\85¬å¼\80ã\80\82"
+#: ../../addon/fbpost/fbpost.php:239
+msgid "Suppress \"View on friendica\""
+msgstr "ç¦\81æ­¢ã\80\8cç\9c\8bå\9c¨Friendicaã\80\8d"
 
-#: ../../mod/network.php:628
-msgid "Invalid contact."
-msgstr "无效熟人。"
+#: ../../addon/fbpost/fbpost.php:243
+msgid "Mirror wall posts from facebook to friendica."
+msgstr "复制墙文章从facebook到friendica。"
 
-#: ../../mod/notes.php:44 ../../boot.php:1864
-msgid "Personal Notes"
-msgstr "私人便条"
+#: ../../addon/fbpost/fbpost.php:253
+msgid "Post to page/group:"
+msgstr "放在页/组:"
 
-#: ../../mod/notes.php:63 ../../mod/filer.php:31
-#: ../../addon/facebook/facebook.php:772
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:354
-#: ../../addon/fbpost/fbpost.php:322
-#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:741
-#: ../../addon.old/facebook/facebook.php:770
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
-#: ../../addon.old/fbpost/fbpost.php:267
-#: ../../addon.old/dav/friendica/layout.fnk.php:441
-#: ../../addon.old/dav/friendica/layout.fnk.php:488
-msgid "Save"
-msgstr "保存"
+#: ../../addon/fbpost/fbpost.php:375
+#, php-format
+msgid "%s:"
+msgstr "%s:"
 
-#: ../../mod/uimport.php:50 ../../mod/register.php:192
-msgid ""
-"This site has exceeded the number of allowed daily account registrations. "
-"Please try again tomorrow."
-msgstr "这个网站超过一天最多账户注册。请明天再试。"
+#: ../../addon/forumdirectory/forumdirectory.php:22
+msgid "Forum Directory"
+msgstr "评坛目录"
 
-#: ../../mod/uimport.php:64
-msgid "Import"
-msgstr "进口"
+#: ../../addon/forumdirectory/forumdirectory.php:53 ../../mod/search.php:89
+#: ../../mod/dfrn_request.php:761 ../../mod/directory.php:31
+#: ../../mod/display.php:19 ../../mod/viewcontacts.php:17
+#: ../../mod/community.php:18 ../../mod/photos.php:914
+msgid "Public access denied."
+msgstr "公众看拒绝"
 
-#: ../../mod/uimport.php:66
-msgid "Move account"
-msgstr "把账户搬出"
+#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49
+#: ../../view/theme/diabook/theme.php:518
+msgid "Global Directory"
+msgstr "综合目录"
 
-#: ../../mod/uimport.php:67
-msgid "You can import an account from another Friendica server."
-msgstr "æ\82¨ä¼\9aä»\8eå\88«ç\9a\84Friendicaæ\9c\8då\8a¡å\99¨è¿\9bå\8f£è´¦æ\88·"
+#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57
+msgid "Find on this site"
+msgstr "æ\89¾å\9c¨è¿\99ç½\91ç«\99"
 
-#: ../../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 "您要把您老服务器账户出口才这里上传。我们重现您账户这里,包括所有您的熟人。我们再试通知您朋友们您搬到这里。"
+#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612
+#: ../../mod/directory.php:59
+msgid "Finding: "
+msgstr "找着:"
 
-#: ../../mod/uimport.php:69
-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熟人"
+#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60
+msgid "Site Directory"
+msgstr "网站目录"
 
-#: ../../mod/uimport.php:70
-msgid "Account file"
-msgstr "账户文件"
+#: ../../addon/forumdirectory/forumdirectory.php:83
+#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613
+#: ../../mod/directory.php:61
+msgid "Find"
+msgstr "搜索"
 
-#: ../../mod/uimport.php:70
-msgid ""
-"To export your accont, go to \"Settings->Export your porsonal data\" and "
-"select \"Export account\""
-msgstr "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」"
+#: ../../addon/forumdirectory/forumdirectory.php:133
+#: ../../mod/profiles.php:682 ../../mod/directory.php:111
+msgid "Age: "
+msgstr "年纪:"
 
-#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
-#, php-format
-msgid "Number of daily wall messages for %s exceeded. Message failed."
-msgstr "一天最多墙通知给%s超过了。通知没有通过 。"
+#: ../../addon/forumdirectory/forumdirectory.php:136
+#: ../../mod/directory.php:114
+msgid "Gender: "
+msgstr "性别:"
 
-#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
-msgid "No recipient selected."
-msgstr "没有选择的接受者。"
+#: ../../addon/forumdirectory/forumdirectory.php:156
+#: ../../include/bb2diaspora.php:415 ../../include/event.php:40
+#: ../../mod/directory.php:134 ../../mod/events.php:471 ../../boot.php:1406
+msgid "Location:"
+msgstr "位置:"
 
-#: ../../mod/wallmessage.php:59
-msgid "Unable to check your home location."
-msgstr "核对不了您的主页。"
+#: ../../addon/forumdirectory/forumdirectory.php:158
+#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136
+#: ../../boot.php:1408
+msgid "Gender:"
+msgstr "性别:"
 
-#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
-msgid "Message could not be sent."
-msgstr "消息发不了。"
+#: ../../addon/forumdirectory/forumdirectory.php:160
+#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138
+#: ../../boot.php:1411
+msgid "Status:"
+msgstr "现状:"
 
-#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
-msgid "Message collection failure."
-msgstr "通信受到错误。"
+#: ../../addon/forumdirectory/forumdirectory.php:162
+#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140
+#: ../../boot.php:1413
+msgid "Homepage:"
+msgstr "主页:"
 
-#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
-msgid "Message sent."
-msgstr "消息发了"
+#: ../../addon/forumdirectory/forumdirectory.php:164
+#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142
+msgid "About:"
+msgstr "关于:"
 
-#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
-msgid "No recipient."
-msgstr "没有接受者。"
+#: ../../addon/forumdirectory/forumdirectory.php:201
+#: ../../mod/directory.php:187
+msgid "No entries (some entries may be hidden)."
+msgstr "没有文章(有的文章会被隐藏)。"
 
-#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
-#: ../../mod/message.php:283 ../../mod/message.php:291
-#: ../../mod/message.php:466 ../../mod/message.php:474
-#: ../../include/conversation.php:940 ../../include/conversation.php:958
-msgid "Please enter a link URL:"
-msgstr "请输入环节URL:"
+#: ../../addon/group_text/group_text.php:46
+msgid "Group Text settings updated."
+msgstr "组正文设置更新了。"
 
-#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
-msgid "Send Private Message"
-msgstr "å\8f\91ç§\81人ç\9a\84é\80\9aä¿¡"
+#: ../../addon/remote_permissions/remote_permissions.php:45
+msgid "Remote Permissions Settings"
+msgstr "对å¤\96æ\89¹å\87\86设置"
 
-#: ../../mod/wallmessage.php:143
-#, php-format
+#: ../../addon/remote_permissions/remote_permissions.php:46
 msgid ""
-"If you wish for %s to respond, please check that the privacy settings on "
-"your site allow private mail from unknown senders."
-msgstr "å¦\82æ\9e\9cæ\82¨æ\83³%så\9b\9eç­\94ï¼\8c请核对æ\82¨ç½\91ç«\99ç\9a\84é\9a\90ç§\81设置å\85\81许ç\94\9få\8f\91é\80\81人ç\9a\84ç§\81人é\82®ä»¶。"
+"Allow recipients of your private posts to see the other recipients of the "
+"posts"
+msgstr "å\85\81许æ\82¨ç§\81人æ\96\87ç« æ\8e¥å\8f\97è\80\85ç\9c\8bå\88«æ\8e¥å\8f\97è\80\85。"
 
-#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
-#: ../../mod/message.php:553
-msgid "To:"
-msgstr "到:"
+#: ../../addon/remote_permissions/remote_permissions.php:58
+msgid "Remote Permissions settings updated."
+msgstr "对外批准设置更新了。"
 
-#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
-#: ../../mod/message.php:555
-msgid "Subject:"
-msgstr "题目:"
+#: ../../addon/remote_permissions/remote_permissions.php:124
+#: ../../mod/lockview.php:48
+msgid "Visible to:"
+msgstr "可见给:"
 
-#: ../../mod/wallmessage.php:151 ../../mod/message.php:329
-#: ../../mod/message.php:558 ../../mod/invite.php:134
-msgid "Your message:"
-msgstr "你的消息:"
+#: ../../addon/remote_permissions/remote_permissions.php:178
+msgid "Visible to"
+msgstr "可见的给"
 
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendica"
-msgstr "Friendica欢迎你"
+#: ../../addon/remote_permissions/remote_permissions.php:178
+msgid "may only be a partial list"
+msgstr "可能部分的单"
 
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
-msgstr "新的成员一览表"
+#: ../../addon/remote_permissions/remote_permissions.php:197
+msgid "The posts of every user on this server show the post recipients"
+msgstr "这网站所有用户的文章表示接受者"
 
-#: ../../mod/newmember.php:12
+#: ../../addon/remote_permissions/remote_permissions.php:198
+msgid "Each user chooses whether his/her posts show the post recipients"
+msgstr "各用户选择他问上是否表示接受者"
+
+#: ../../addon/statusnet/statusnet.php:358
 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 "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。"
+"Mirror all posts from statusnet that are no replies or repeated messages"
+msgstr "复制所有文章从statusnet除了回答或重复的通知以外"
 
-#: ../../mod/newmember.php:14
-msgid "Getting Started"
-msgstr "开始方法"
+#: ../../addon/statusnet/statusnet.php:362
+msgid "Shortening method that optimizes the post"
+msgstr "缩短方法优化文章"
 
-#: ../../mod/newmember.php:18
-msgid "Friendica Walk-Through"
-msgstr "Friendica游览"
+#: ../../addon/tumblr/tumblr.php:144
+msgid "You are now authenticated to tumblr."
+msgstr "现在tumblr证明您是真的"
 
-#: ../../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>页-看段介绍您的简介和网络分页,结新联系,而找新组为加入。"
+#: ../../addon/tumblr/tumblr.php:145
+msgid "return to the connector page"
+msgstr "会连接器页"
 
-#: ../../mod/newmember.php:26
-msgid "Go to Your Settings"
-msgstr "您的设置"
+#: ../../addon/tumblr/tumblr.php:188
+msgid "(Re-)Authenticate your tumblr page"
+msgstr "再认证您的tumblr页"
 
-#: ../../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>页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。"
+#: ../../addon/tumblr/tumblr.php:217
+msgid "Post to page:"
+msgstr "放在页:"
 
-#: ../../mod/newmember.php:28
+#: ../../addon/tumblr/tumblr.php:228
+msgid "You are not authenticated to tumblr"
+msgstr "tumblr没证明您是真的"
+
+#: ../../addon/twitter/twitter.php:213
+msgid "Mirror all posts from twitter that are no replies or retweets"
+msgstr "复制所有文章从twitter除了回答或复准文以外"
+
+#: ../../addon/twitter/twitter.php:217
+msgid "Shortening method that optimizes the tweet"
+msgstr "缩短方法优化缩短方法优化准文"
+
+#: ../../addon/twitter/twitter.php:560
+msgid "Name of the Twitter Application"
+msgstr "Twitter应用名"
+
+#: ../../addon/twitter/twitter.php:560
 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 "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。"
+"set this to avoid mirroring postings from ~friendica back to ~friendica"
+msgstr "选择这个为避免复制文章从~friendica回归~friendica"
 
-#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
-#: ../../include/profile_advanced.php:84 ../../include/nav.php:77
-#: ../../boot.php:1840
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:84
+#: ../../include/nav.php:77 ../../mod/profperm.php:103
+#: ../../mod/newmember.php:32 ../../view/theme/diabook/theme.php:88
+#: ../../boot.php:1868
 msgid "Profile"
 msgstr "简介"
 
-#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244
-msgid "Upload Profile Photo"
-msgstr "上传简历照片"
+#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050
+msgid "Full Name:"
+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 "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。"
-
-#: ../../mod/newmember.php:38
-msgid "Edit Your Profile"
-msgstr "编辑您的简介"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
+msgstr "j F, Y"
 
-#: ../../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_advanced.php:23
+msgid "j F"
+msgstr "j F"
 
-#: ../../mod/newmember.php:40
-msgid "Profile Keywords"
-msgstr "ç®\80ä»\8bå\85³é\94®å­\97"
+#: ../../include/profile_advanced.php:30
+msgid "Birthday:"
+msgstr "ç\94\9fæ\97¥ï¼\9a"
 
-#: ../../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_advanced.php:34
+msgid "Age:"
+msgstr "年纪:"
 
-#: ../../mod/newmember.php:44
-msgid "Connecting"
-msgstr "连接着"
+#: ../../include/profile_advanced.php:43
+#, php-format
+msgid "for %1$d %2$s"
+msgstr "为%1$d %2$s"
 
-#: ../../mod/newmember.php:49 ../../mod/newmember.php:51
-#: ../../addon/facebook/facebook.php:730 ../../addon/fbpost/fbpost.php:294
-#: ../../include/contact_selectors.php:81
-#: ../../addon.old/facebook/facebook.php:728
-#: ../../addon.old/fbpost/fbpost.php:239
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646
+msgid "Sexual Preference:"
+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_advanced.php:50 ../../mod/profiles.php:648
+msgid "Hometown:"
+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_advanced.php:52
+msgid "Tags:"
+msgstr "标签:"
 
-#: ../../mod/newmember.php:56
-msgid "Importing Emails"
-msgstr "进口着邮件"
+#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649
+msgid "Political Views:"
+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_advanced.php:56
+msgid "Religion:"
+msgstr "宗教:"
 
-#: ../../mod/newmember.php:58
-msgid "Go to Your Contacts Page"
-msgstr "您的熟人页"
+#: ../../include/profile_advanced.php:60
+msgid "Hobbies/Interests:"
+msgstr "爱好/兴趣"
 
-#: ../../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_advanced.php:62 ../../mod/profiles.php:653
+msgid "Likes:"
+msgstr "喜欢:"
 
-#: ../../mod/newmember.php:60
-msgid "Go to Your Site's Directory"
-msgstr "您网站的目录"
+#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654
+msgid "Dislikes:"
+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/profile_advanced.php:67
+msgid "Contact information and Social Networks:"
+msgstr "熟人消息和社会化网络"
 
-#: ../../mod/newmember.php:62
-msgid "Finding New People"
-msgstr "找新人"
+#: ../../include/profile_advanced.php:69
+msgid "Musical interests:"
+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/profile_advanced.php:71
+msgid "Books, literature:"
+msgstr "书,文学"
 
-#: ../../mod/newmember.php:66 ../../include/group.php:270
-msgid "Groups"
-msgstr "ç»\84"
+#: ../../include/profile_advanced.php:73
+msgid "Television:"
+msgstr "ç\94µè§\86ï¼\9a"
 
-#: ../../mod/newmember.php:70
-msgid "Group Your Contacts"
-msgstr "把熟人组起来"
+#: ../../include/profile_advanced.php:75
+msgid "Film/dance/culture/entertainment:"
+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/profile_advanced.php:77
+msgid "Love/Romance:"
+msgstr "爱情/浪漫"
 
-#: ../../mod/newmember.php:73
-msgid "Why Aren't My Posts Public?"
-msgstr "我文章怎么没公开的?"
+#: ../../include/profile_advanced.php:79
+msgid "Work/employment:"
+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/profile_advanced.php:81
+msgid "School/education:"
+msgstr "学院/教育"
 
-#: ../../mod/newmember.php:78
-msgid "Getting Help"
-msgstr "怎么获得帮助"
+#: ../../include/profile_selectors.php:6
+msgid "Male"
+msgstr "男的"
 
-#: ../../mod/newmember.php:82
-msgid "Go to the Help Section"
-msgstr "看帮助部分"
+#: ../../include/profile_selectors.php:6
+msgid "Female"
+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/profile_selectors.php:6
+msgid "Currently Male"
+msgstr "现在男的"
 
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "项目不可用的"
+#: ../../include/profile_selectors.php:6
+msgid "Currently Female"
+msgstr "现在女的"
 
-#: ../../mod/attach.php:20
-msgid "Item was not found."
-msgstr "找不到项目。"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Male"
+msgstr "主要男的"
 
-#: ../../mod/group.php:29
-msgid "Group created."
-msgstr "组造成了。"
+#: ../../include/profile_selectors.php:6
+msgid "Mostly Female"
+msgstr "主要女的"
 
-#: ../../mod/group.php:35
-msgid "Could not create group."
-msgstr "不能造成组。"
+#: ../../include/profile_selectors.php:6
+msgid "Transgender"
+msgstr "跨性別"
 
-#: ../../mod/group.php:47 ../../mod/group.php:140
-msgid "Group not found."
-msgstr "组找不到。"
+#: ../../include/profile_selectors.php:6
+msgid "Intersex"
+msgstr "阴阳人"
 
-#: ../../mod/group.php:60
-msgid "Group name changed."
-msgstr "组名变化了。"
+#: ../../include/profile_selectors.php:6
+msgid "Transsexual"
+msgstr "”转基因“人"
 
-#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340
-msgid "Permission denied"
-msgstr "权限不够"
+#: ../../include/profile_selectors.php:6
+msgid "Hermaphrodite"
+msgstr "两性体"
 
-#: ../../mod/group.php:93
-msgid "Create a group of contacts/friends."
-msgstr "造成组熟人/朋友们。"
+#: ../../include/profile_selectors.php:6
+msgid "Neuter"
+msgstr "中性的"
 
-#: ../../mod/group.php:94 ../../mod/group.php:180
-msgid "Group Name: "
-msgstr "组名:"
+#: ../../include/profile_selectors.php:6
+msgid "Non-specific"
+msgstr "不明确的"
 
-#: ../../mod/group.php:113
-msgid "Group removed."
-msgstr "组删除了。"
+#: ../../include/profile_selectors.php:6
+msgid "Other"
+msgstr "别的"
 
-#: ../../mod/group.php:115
-msgid "Unable to remove group."
-msgstr "不能删除组。"
+#: ../../include/profile_selectors.php:6
+msgid "Undecided"
+msgstr "未决"
 
-#: ../../mod/group.php:179
-msgid "Group Editor"
-msgstr "ç»\84ç¼\96è¾\91å\99¨"
+#: ../../include/profile_selectors.php:23
+msgid "Males"
+msgstr "ç\94·äºº"
 
-#: ../../mod/group.php:192
-msgid "Members"
-msgstr "成员"
+#: ../../include/profile_selectors.php:23
+msgid "Females"
+msgstr "女人"
 
-#: ../../mod/group.php:224 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
-msgstr "ç\82¹å\87»ç\86\9f人为添å\8a æ\88\96å\88 é\99¤ã\80\82"
+#: ../../include/profile_selectors.php:23
+msgid "Gay"
+msgstr "ç\94·å\90\8cæ\80§æ\81\8bç\9a\84"
 
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "无限的简介标识符。"
+#: ../../include/profile_selectors.php:23
+msgid "Lesbian"
+msgstr "女同性恋的"
 
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "简介能见度编辑器。"
+#: ../../include/profile_selectors.php:23
+msgid "No Preference"
+msgstr "无偏爱"
 
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "能见被"
+#: ../../include/profile_selectors.php:23
+msgid "Bisexual"
+msgstr "双性恋的"
 
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
-msgstr "所有熟人(跟安全地简介使用权)"
+#: ../../include/profile_selectors.php:23
+msgid "Autosexual"
+msgstr "自性的"
 
-#: ../../mod/viewcontacts.php:39
-msgid "No contacts."
-msgstr "没æ\9c\89ç\86\9f人ã\80\82"
+#: ../../include/profile_selectors.php:23
+msgid "Abstinent"
+msgstr "æ\9c\89è\8a\82å\88¶ç\9a\84"
 
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:678
-msgid "View Contacts"
-msgstr "看熟人"
+#: ../../include/profile_selectors.php:23
+msgid "Virgin"
+msgstr "原始的"
 
-#: ../../mod/register.php:91 ../../mod/regmod.php:54
-#, php-format
-msgid "Registration details for %s"
-msgstr "注册信息为%s"
+#: ../../include/profile_selectors.php:23
+msgid "Deviant"
+msgstr "变态"
 
-#: ../../mod/register.php:99
-msgid ""
-"Registration successful. Please check your email for further instructions."
-msgstr "注册成功了。请咨询说明再您的收件箱。"
+#: ../../include/profile_selectors.php:23
+msgid "Fetish"
+msgstr "恋物对象"
 
-#: ../../mod/register.php:103
-msgid "Failed to send email message. Here is the message that failed."
-msgstr "å\8f\91é\82®ä»¶å¤±è´¥äº\86ã\80\82è¿\99æ\9d¡è¯\95失败ç\9a\84æ¶\88æ\81¯ã\80\82"
+#: ../../include/profile_selectors.php:23
+msgid "Oodles"
+msgstr "å¤\9aå¤\9a"
 
-#: ../../mod/register.php:108
-msgid "Your registration can not be processed."
-msgstr "处理不了您的注册。"
+#: ../../include/profile_selectors.php:23
+msgid "Nonsexual"
+msgstr "无性"
 
-#: ../../mod/register.php:145
-#, php-format
-msgid "Registration request at %s"
-msgstr "注册要求再%s"
+#: ../../include/profile_selectors.php:42
+msgid "Single"
+msgstr "单身"
 
-#: ../../mod/register.php:154
-msgid "Your registration is pending approval by the site owner."
-msgstr "您的注册等网页主的批准。"
+#: ../../include/profile_selectors.php:42
+msgid "Lonely"
+msgstr "寂寞"
 
-#: ../../mod/register.php:220
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
-msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"
+#: ../../include/profile_selectors.php:42
+msgid "Available"
+msgstr "单身的"
 
-#: ../../mod/register.php:221
-msgid ""
-"If you are not familiar with OpenID, please leave that field blank and fill "
-"in the rest of the items."
-msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。"
+#: ../../include/profile_selectors.php:42
+msgid "Unavailable"
+msgstr "不可获得的"
 
-#: ../../mod/register.php:222
-msgid "Your OpenID (optional): "
-msgstr "您的OpenID(可选的):"
+#: ../../include/profile_selectors.php:42
+msgid "Has crush"
+msgstr "迷恋"
 
-#: ../../mod/register.php:236
-msgid "Include your profile in member directory?"
-msgstr "放您的简介再员目录?"
+#: ../../include/profile_selectors.php:42
+msgid "Infatuated"
+msgstr "痴迷"
 
-#: ../../mod/register.php:257
-msgid "Membership on this site is by invitation only."
-msgstr "会员身份在这个网站是光通过邀请。"
+#: ../../include/profile_selectors.php:42
+msgid "Dating"
+msgstr "约会"
 
-#: ../../mod/register.php:258
-msgid "Your invitation ID: "
-msgstr "您邀请ID:"
+#: ../../include/profile_selectors.php:42
+msgid "Unfaithful"
+msgstr "外遇"
 
-#: ../../mod/register.php:261 ../../mod/admin.php:462
-msgid "Registration"
-msgstr "注å\86\8c"
+#: ../../include/profile_selectors.php:42
+msgid "Sex Addict"
+msgstr "æ\80§äº¤å\9b æ\88\90ç\98¾è\80\85"
 
-#: ../../mod/register.php:269
-msgid "Your Full Name (e.g. Joe Smith): "
-msgstr "您姓名(例如「张三」):"
+#: ../../include/profile_selectors.php:42 ../../include/user.php:279
+#: ../../include/user.php:283
+msgid "Friends"
+msgstr "朋友"
 
-#: ../../mod/register.php:270
-msgid "Your Email Address: "
-msgstr "你的电子邮件地址:"
+#: ../../include/profile_selectors.php:42
+msgid "Friends/Benefits"
+msgstr "朋友/益"
 
-#: ../../mod/register.php:271
-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>」."
+#: ../../include/profile_selectors.php:42
+msgid "Casual"
+msgstr "休闲"
 
-#: ../../mod/register.php:272
-msgid "Choose a nickname: "
-msgstr "选择昵称:"
+#: ../../include/profile_selectors.php:42
+msgid "Engaged"
+msgstr "已订婚的"
 
-#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012
-msgid "Register"
-msgstr "注册"
+#: ../../include/profile_selectors.php:42
+msgid "Married"
+msgstr "结婚"
 
-#: ../../mod/dirfind.php:26
-msgid "People Search"
-msgstr "æ\90\9c索人ç\89©"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily married"
+msgstr "æ\83³å\83\8fç»\93å©\9a"
 
-#: ../../mod/like.php:151 ../../mod/subthread.php:87 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:171
-#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1510
-#: ../../include/diaspora.php:1860 ../../include/conversation.php:126
-#: ../../include/conversation.php:254
-#: ../../addon.old/communityhome/communityhome.php:163
-msgid "photo"
-msgstr "照片"
+#: ../../include/profile_selectors.php:42
+msgid "Partners"
+msgstr "伴侣"
 
-#: ../../mod/like.php:151 ../../mod/like.php:322 ../../mod/subthread.php:87
-#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1600
-#: ../../addon/communityhome/communityhome.php:166
-#: ../../addon/communityhome/communityhome.php:175
-#: ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1860
-#: ../../include/conversation.php:121 ../../include/conversation.php:130
-#: ../../include/conversation.php:249 ../../include/conversation.php:258
-#: ../../addon.old/facebook/facebook.php:1598
-#: ../../addon.old/communityhome/communityhome.php:158
-#: ../../addon.old/communityhome/communityhome.php:167
-msgid "status"
-msgstr "现状"
+#: ../../include/profile_selectors.php:42
+msgid "Cohabiting"
+msgstr "同居"
 
-#: ../../mod/like.php:168 ../../addon/facebook/facebook.php:1604
-#: ../../addon/communityhome/communityhome.php:180
-#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1876
-#: ../../include/conversation.php:137
-#: ../../addon.old/facebook/facebook.php:1602
-#: ../../addon.old/communityhome/communityhome.php:172
-#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "%1$s喜欢%2$s的%3$s"
+#: ../../include/profile_selectors.php:42
+msgid "Common law"
+msgstr "普通法结婚"
 
-#: ../../mod/like.php:170 ../../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/profile_selectors.php:42
+msgid "Happy"
+msgstr "幸福"
 
-#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:51
-#: ../../mod/display.php:184 ../../include/items.php:3853
-msgid "Item not found."
-msgstr "项目找不到。"
+#: ../../include/profile_selectors.php:42
+msgid "Not looking"
+msgstr "没找"
 
-#: ../../mod/viewsrc.php:7
-msgid "Access denied."
-msgstr "没有用权。"
+#: ../../include/profile_selectors.php:42
+msgid "Swinger"
+msgstr "交换性伴侣的"
 
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
-#: ../../include/nav.php:78 ../../boot.php:1847
-msgid "Photos"
-msgstr "照片"
+#: ../../include/profile_selectors.php:42
+msgid "Betrayed"
+msgstr "被背叛"
 
-#: ../../mod/fbrowser.php:113
-msgid "Files"
-msgstr "文件"
+#: ../../include/profile_selectors.php:42
+msgid "Separated"
+msgstr "分手"
 
-#: ../../mod/regmod.php:63
-msgid "Account approved."
-msgstr "账户批准了"
+#: ../../include/profile_selectors.php:42
+msgid "Unstable"
+msgstr "不稳"
 
-#: ../../mod/regmod.php:100
-#, php-format
-msgid "Registration revoked for %s"
-msgstr "%s的登记撤销了"
+#: ../../include/profile_selectors.php:42
+msgid "Divorced"
+msgstr "离婚"
 
-#: ../../mod/regmod.php:112
-msgid "Please login."
-msgstr "æ¸\85ç\99»å½\95ã\80\82"
+#: ../../include/profile_selectors.php:42
+msgid "Imaginarily divorced"
+msgstr "æ\83³å\83\8f离å©\9a"
 
-#: ../../mod/item.php:104
-msgid "Unable to locate original post."
-msgstr "找不到当初的新闻"
+#: ../../include/profile_selectors.php:42
+msgid "Widowed"
+msgstr "寡妇"
 
-#: ../../mod/item.php:292
-msgid "Empty post discarded."
-msgstr "空心的新闻丢弃了"
+#: ../../include/profile_selectors.php:42
+msgid "Uncertain"
+msgstr "不确定"
 
-#: ../../mod/item.php:428 ../../mod/wall_upload.php:135
-#: ../../mod/wall_upload.php:144 ../../mod/wall_upload.php:151
-#: ../../include/message.php:144
-msgid "Wall Photos"
-msgstr "墙照片"
+#: ../../include/profile_selectors.php:42
+msgid "It's complicated"
+msgstr "是复杂"
 
-#: ../../mod/item.php:841
-msgid "System error. Post not saved."
-msgstr "系统错误。x"
+#: ../../include/profile_selectors.php:42
+msgid "Don't care"
+msgstr "无所谓"
 
-#: ../../mod/item.php:866
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendica social "
-"network."
-msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
-
-#: ../../mod/item.php:868
-#, php-format
-msgid "You may visit them online at %s"
-msgstr "你可以网上拜访他在%s"
+#: ../../include/profile_selectors.php:42
+msgid "Ask me"
+msgstr "问我"
 
-#: ../../mod/item.php:869
-msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
-msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
+#: ../../include/Contact.php:115
+msgid "stopped following"
+msgstr "结束关注了"
 
-#: ../../mod/item.php:871
-#, php-format
-msgid "%s posted an update."
-msgstr "%s贴上一个新闻。"
+#: ../../include/Contact.php:225 ../../include/conversation.php:838
+msgid "Poke"
+msgstr "戳"
 
-#: ../../mod/mood.php:62 ../../include/conversation.php:227
-#, php-format
-msgid "%1$s is currently %2$s"
-msgstr "%1$s现在是%2$s"
+#: ../../include/Contact.php:226 ../../include/conversation.php:832
+msgid "View Status"
+msgstr "看现状"
 
-#: ../../mod/mood.php:133
-msgid "Mood"
-msgstr "心情"
+#: ../../include/Contact.php:227 ../../include/conversation.php:833
+msgid "View Profile"
+msgstr "看简介"
 
-#: ../../mod/mood.php:134
-msgid "Set your current mood and tell your friends"
-msgstr "选择现在的心情而告诉朋友们"
+#: ../../include/Contact.php:228 ../../include/conversation.php:834
+msgid "View Photos"
+msgstr "看照片"
 
-#: ../../mod/profile_photo.php:44
-msgid "Image uploaded but image cropping failed."
-msgstr "照片上传去了,但修剪失灵。"
+#: ../../include/Contact.php:229 ../../include/Contact.php:251
+#: ../../include/conversation.php:835
+msgid "Network Posts"
+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.php:230 ../../include/Contact.php:251
+#: ../../include/conversation.php:836
+msgid "Edit Contact"
+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.php:231 ../../include/Contact.php:251
+#: ../../include/conversation.php:837
+msgid "Send PM"
+msgstr "法私人的新闻"
 
-#: ../../mod/profile_photo.php:128
-msgid "Unable to process image"
-msgstr "ä¸\8dè\83½å¤\84ç\90\86ç\85§ç\89\87"
+#: ../../include/text.php:276
+msgid "prev"
+msgstr "ä¸\8a个"
 
-#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90
-#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "图像超标最大极限尺寸 %d"
+#: ../../include/text.php:278
+msgid "first"
+msgstr "首先"
 
-#: ../../mod/profile_photo.php:242
-msgid "Upload File:"
-msgstr "上传文件:"
+#: ../../include/text.php:307
+msgid "last"
+msgstr "最后"
 
-#: ../../mod/profile_photo.php:243
-msgid "Select a profile:"
-msgstr "选择一个简介"
+#: ../../include/text.php:310
+msgid "next"
+msgstr "下个"
 
-#: ../../mod/profile_photo.php:245
-#: ../../addon/dav/friendica/layout.fnk.php:152
-#: ../../addon.old/dav/friendica/layout.fnk.php:152
-msgid "Upload"
-msgstr "上传"
+#: ../../include/text.php:328
+msgid "newer"
+msgstr "更新"
 
-#: ../../mod/profile_photo.php:248
-msgid "skip this step"
-msgstr "略过这步"
+#: ../../include/text.php:332
+msgid "older"
+msgstr "更旧"
 
-#: ../../mod/profile_photo.php:248
-msgid "select a photo from your photo albums"
-msgstr "从您的照片册选择一片。"
+#: ../../include/text.php:697
+msgid "No contacts"
+msgstr "没有熟人"
 
-#: ../../mod/profile_photo.php:262
-msgid "Crop Image"
-msgstr "修剪照片"
+#: ../../include/text.php:706
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] "%d熟人"
 
-#: ../../mod/profile_photo.php:263
-msgid "Please adjust the image cropping for optimum viewing."
-msgstr "请调图片剪裁为最好看。"
+#: ../../include/text.php:718 ../../mod/viewcontacts.php:76
+msgid "View Contacts"
+msgstr "看熟人"
 
-#: ../../mod/profile_photo.php:265
-msgid "Done Editing"
-msgstr "编完了"
+#: ../../include/text.php:778 ../../include/text.php:779
+#: ../../include/nav.php:118 ../../mod/search.php:99
+msgid "Search"
+msgstr "搜索"
 
-#: ../../mod/profile_photo.php:299
-msgid "Image uploaded successfully."
-msgstr "照片成功地上传了"
+#: ../../include/text.php:819
+msgid "poke"
+msgstr ""
 
-#: ../../mod/hcard.php:10
-msgid "No profile"
-msgstr "æ\97 ç®\80ä»\8b"
+#: ../../include/text.php:819 ../../include/conversation.php:211
+msgid "poked"
+msgstr "æ\88³äº\86"
 
-#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
-msgid "Remove My Account"
-msgstr "删除我的账户"
+#: ../../include/text.php:820
+msgid "ping"
+msgstr ""
 
-#: ../../mod/removeme.php:46
-msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
-msgstr "这要完全删除您的账户。这一做过,就不能恢复。"
+#: ../../include/text.php:820
+msgid "pinged"
+msgstr "砰了"
 
-#: ../../mod/removeme.php:47
-msgid "Please enter your password for verification:"
-msgstr "请输入密码为确认:"
+#: ../../include/text.php:821
+msgid "prod"
+msgstr "柔戳"
 
-#: ../../mod/navigation.php:20 ../../include/nav.php:34
-msgid "Nothing new here"
-msgstr "这里没有什么新的"
+#: ../../include/text.php:821
+msgid "prodded"
+msgstr "柔戳了"
 
-#: ../../mod/navigation.php:24 ../../include/nav.php:38
-msgid "Clear notifications"
-msgstr "æ¸\85ç\90\86å\87ºé\80\9aç\9f¥"
+#: ../../include/text.php:822
+msgid "slap"
+msgstr "æ\8e\8cå\87»"
 
-#: ../../mod/message.php:9 ../../include/nav.php:159
-msgid "New Message"
-msgstr "æ\96°ç\9a\84æ¶\88æ\81¯"
+#: ../../include/text.php:822
+msgid "slapped"
+msgstr "æ\8e\8cå\87»äº\86"
 
-#: ../../mod/message.php:67
-msgid "Unable to locate contact information."
-msgstr "æ\89¾ä¸\8då\88°ç\86\9f人信æ\81¯ã\80\82"
+#: ../../include/text.php:823
+msgid "finger"
+msgstr "æ\8c\87"
 
-#: ../../mod/message.php:207
-msgid "Do you really want to delete this message?"
-msgstr "æ\82¨ç\9c\9fç\9a\84æ\83³å\88 é\99¤è¿\99个é\80\9aç\9f¥å\90\97ï¼\9f"
+#: ../../include/text.php:823
+msgid "fingered"
+msgstr "æ\8c\87äº\86"
 
-#: ../../mod/message.php:227
-msgid "Message deleted."
-msgstr "消息删除了。"
+#: ../../include/text.php:824
+msgid "rebuff"
+msgstr "窝脖儿"
 
-#: ../../mod/message.php:258
-msgid "Conversation removed."
-msgstr "交流删除了。"
+#: ../../include/text.php:824
+msgid "rebuffed"
+msgstr "窝脖儿了"
 
-#: ../../mod/message.php:371
-msgid "No messages."
-msgstr "没有消息"
+#: ../../include/text.php:836
+msgid "happy"
+msgstr "开心"
 
-#: ../../mod/message.php:378
-#, php-format
-msgid "Unknown sender - %s"
-msgstr "生发送人-%s"
+#: ../../include/text.php:837
+msgid "sad"
+msgstr "伤心"
 
-#: ../../mod/message.php:381
-#, php-format
-msgid "You and %s"
-msgstr "您和%s"
+#: ../../include/text.php:838
+msgid "mellow"
+msgstr "轻松"
 
-#: ../../mod/message.php:384
-#, php-format
-msgid "%s and You"
-msgstr "%s和您"
+#: ../../include/text.php:839
+msgid "tired"
+msgstr "累"
 
-#: ../../mod/message.php:405 ../../mod/message.php:546
-msgid "Delete conversation"
-msgstr "删除交谈"
+#: ../../include/text.php:840
+msgid "perky"
+msgstr "机敏"
 
-#: ../../mod/message.php:408
-msgid "D, d M Y - g:i A"
-msgstr "D, d M Y - g:i A"
+#: ../../include/text.php:841
+msgid "angry"
+msgstr "生气"
 
-#: ../../mod/message.php:411
-#, php-format
-msgid "%d message"
-msgid_plural "%d messages"
-msgstr[0] "%d通知"
+#: ../../include/text.php:842
+msgid "stupified"
+msgstr "麻醉"
 
-#: ../../mod/message.php:450
-msgid "Message not available."
-msgstr "通信不可用的"
+#: ../../include/text.php:843
+msgid "puzzled"
+msgstr "纳闷"
 
-#: ../../mod/message.php:520
-msgid "Delete message"
-msgstr "删除消息"
+#: ../../include/text.php:844
+msgid "interested"
+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/text.php:845
+msgid "bitter"
+msgstr "苦"
 
-#: ../../mod/message.php:552
-msgid "Send Reply"
-msgstr "å\8f\91å\9b\9eç­\94"
+#: ../../include/text.php:846
+msgid "cheerful"
+msgstr "å¿«ä¹\90"
 
-#: ../../mod/allfriends.php:34
-#, php-format
-msgid "Friends of %s"
-msgstr "%s的朋友们"
+#: ../../include/text.php:847
+msgid "alive"
+msgstr "活着"
 
-#: ../../mod/allfriends.php:40
-msgid "No friends to display."
-msgstr "没有朋友展示。"
+#: ../../include/text.php:848
+msgid "annoyed"
+msgstr "被烦恼"
 
-#: ../../mod/admin.php:55
-msgid "Theme settings updated."
-msgstr "主题设置更新了。"
+#: ../../include/text.php:849
+msgid "anxious"
+msgstr "心焦"
 
-#: ../../mod/admin.php:96 ../../mod/admin.php:460
-msgid "Site"
-msgstr "网站"
+#: ../../include/text.php:850
+msgid "cranky"
+msgstr "不稳"
 
-#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740
-msgid "Users"
-msgstr "用户"
+#: ../../include/text.php:851
+msgid "disturbed"
+msgstr "不安"
 
-#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864
-msgid "Plugins"
-msgstr "插件"
+#: ../../include/text.php:852
+msgid "frustrated"
+msgstr "被作梗"
 
-#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067
-msgid "Themes"
-msgstr "主题"
+#: ../../include/text.php:853
+msgid "motivated"
+msgstr "士气高涨"
 
-#: ../../mod/admin.php:100
-msgid "DB updates"
-msgstr "数据库更新"
+#: ../../include/text.php:854
+msgid "relaxed"
+msgstr "轻松"
 
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154
-msgid "Logs"
-msgstr "è®°å½\95"
+#: ../../include/text.php:855
+msgid "surprised"
+msgstr "诧å¼\82"
 
-#: ../../mod/admin.php:120 ../../include/nav.php:178
-msgid "Admin"
-msgstr "管理"
+#: ../../include/text.php:1019
+msgid "January"
+msgstr "一月"
 
-#: ../../mod/admin.php:121
-msgid "Plugin Features"
-msgstr "插件特点"
+#: ../../include/text.php:1019
+msgid "February"
+msgstr "二月"
 
-#: ../../mod/admin.php:123
-msgid "User registrations waiting for confirmation"
-msgstr "用户注册等确认"
+#: ../../include/text.php:1019
+msgid "March"
+msgstr "三月"
 
-#: ../../mod/admin.php:183 ../../mod/admin.php:698
-msgid "Normal Account"
-msgstr "正常帐户"
+#: ../../include/text.php:1019
+msgid "April"
+msgstr "四月"
 
-#: ../../mod/admin.php:184 ../../mod/admin.php:699
-msgid "Soapbox Account"
-msgstr "演讲台帐户"
+#: ../../include/text.php:1019
+msgid "May"
+msgstr "五月"
 
-#: ../../mod/admin.php:185 ../../mod/admin.php:700
-msgid "Community/Celebrity Account"
-msgstr "社会/名人帐户"
+#: ../../include/text.php:1019
+msgid "June"
+msgstr "六月"
 
-#: ../../mod/admin.php:186 ../../mod/admin.php:701
-msgid "Automatic Friend Account"
-msgstr "自动朋友帐户"
+#: ../../include/text.php:1019
+msgid "July"
+msgstr "七月"
 
-#: ../../mod/admin.php:187
-msgid "Blog Account"
-msgstr "å\8d\9a客账æ\88·"
+#: ../../include/text.php:1019
+msgid "August"
+msgstr "å\85«æ\9c\88"
 
-#: ../../mod/admin.php:188
-msgid "Private Forum"
-msgstr "私人评坛"
+#: ../../include/text.php:1019
+msgid "September"
+msgstr "九月"
 
-#: ../../mod/admin.php:207
-msgid "Message queues"
-msgstr "通知排队"
+#: ../../include/text.php:1019
+msgid "October"
+msgstr "十月"
 
-#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
-#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1030
-#: ../../mod/admin.php:1066 ../../mod/admin.php:1153
-msgid "Administration"
-msgstr "管理"
+#: ../../include/text.php:1019
+msgid "November"
+msgstr "十一月"
 
-#: ../../mod/admin.php:213
-msgid "Summary"
-msgstr "总算"
+#: ../../include/text.php:1019
+msgid "December"
+msgstr "十二月"
 
-#: ../../mod/admin.php:215
-msgid "Registered users"
-msgstr "注册的用户"
+#: ../../include/text.php:1124
+msgid "bytes"
+msgstr "字节"
 
-#: ../../mod/admin.php:217
-msgid "Pending registrations"
-msgstr "未决的注册"
+#: ../../include/text.php:1151 ../../include/text.php:1163
+msgid "Click to open/close"
+msgstr "点击为开关"
 
-#: ../../mod/admin.php:218
-msgid "Version"
-msgstr "版本"
+#: ../../include/text.php:1304 ../../mod/events.php:335
+msgid "link to source"
+msgstr "链接到来源"
 
-#: ../../mod/admin.php:220
-msgid "Active plugins"
-msgstr "活跃的插件"
+#: ../../include/text.php:1336 ../../include/user.php:237
+msgid "default"
+msgstr "默认"
 
-#: ../../mod/admin.php:391
-msgid "Site settings updated."
-msgstr "网站设置更新了。"
+#: ../../include/text.php:1348
+msgid "Select an alternate language"
+msgstr "选择别的语言"
 
-#: ../../mod/admin.php:446
-msgid "Closed"
-msgstr "关闭"
+#: ../../include/text.php:1558
+msgid "activity"
+msgstr "活动"
 
-#: ../../mod/admin.php:447
-msgid "Requires approval"
-msgstr "要批准"
+#: ../../include/text.php:1560 ../../mod/content.php:628
+#: ../../object/Item.php:354 ../../object/Item.php:367
+msgid "comment"
+msgid_plural "comments"
+msgstr[0] "评论"
 
-#: ../../mod/admin.php:448
-msgid "Open"
-msgstr "æ\89\93å¼\80"
+#: ../../include/text.php:1561
+msgid "post"
+msgstr "æ\96\87ç« "
 
-#: ../../mod/admin.php:452
-msgid "No SSL policy, links will track page SSL state"
-msgstr "没SSLæ\96¹é\92\88ï¼\8cç\8e¯è\8a\82å°\86追踪页SSLç\8e°ç\8a"
+#: ../../include/text.php:1716
+msgid "Item filed"
+msgstr "æ\8a\8a项ç\9b®å½\92æ¡£äº\86"
 
-#: ../../mod/admin.php:453
-msgid "Force all links to use SSL"
-msgstr "让所有的环节用SSL"
+#: ../../include/acl_selectors.php:325
+msgid "Visible to everybody"
+msgstr "任何人可见的"
 
-#: ../../mod/admin.php:454
-msgid "Self-signed certificate, use SSL for local links only (discouraged)"
-msgstr "自签证书,用SSL再光本地环节(劝止的)"
+#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "show"
+msgstr "著"
 
-#: ../../mod/admin.php:463
-msgid "File upload"
-msgstr "文件上传"
+#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146
+#: ../../view/theme/diabook/theme.php:629
+msgid "don't show"
+msgstr "别著"
 
-#: ../../mod/admin.php:464
-msgid "Policies"
-msgstr "æ\94¿ç­\96"
+#: ../../include/auth.php:38
+msgid "Logged out."
+msgstr "注é\94\80äº\86"
 
-#: ../../mod/admin.php:465
-msgid "Advanced"
-msgstr "高等"
+#: ../../include/auth.php:112 ../../include/auth.php:175
+#: ../../mod/openid.php:93
+msgid "Login failed."
+msgstr "登记失败了。"
 
-#: ../../mod/admin.php:466
-msgid "Performance"
-msgstr "性能"
+#: ../../include/auth.php:128
+msgid ""
+"We encountered a problem while logging in with the OpenID you provided. "
+"Please check the correct spelling of the ID."
+msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"
 
-#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744
-#: ../../addon.old/statusnet/statusnet.php:567
-msgid "Site name"
-msgstr "网页名字"
+#: ../../include/auth.php:128
+msgid "The error message was:"
+msgstr "错误通知是:"
 
-#: ../../mod/admin.php:471
-msgid "Banner/Logo"
-msgstr "标题/标志"
+#: ../../include/uimport.php:61
+msgid "Error decoding account file"
+msgstr "解码账户文件出错误"
 
-#: ../../mod/admin.php:472
-msgid "System language"
-msgstr "系统语言"
+#: ../../include/uimport.php:67
+msgid "Error! No version data in file! This is not a Friendica account file?"
+msgstr "错误!文件没有版本数!这不是Friendica账户文件吗?"
 
-#: ../../mod/admin.php:473
-msgid "System theme"
-msgstr "系统主题"
+#: ../../include/uimport.php:72
+msgid "Error! I can't import this file: DB schema version is not compatible."
+msgstr "错误!我进口不了这个文件:数据库版本不相容的。"
 
-#: ../../mod/admin.php:473
-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/uimport.php:81
+msgid "Error! Cannot check nickname"
+msgstr "错误!不能检查昵称"
 
-#: ../../mod/admin.php:474
-msgid "Mobile system theme"
-msgstr "手机系统主题"
+#: ../../include/uimport.php:85
+#, php-format
+msgid "User '%s' already exists on this server!"
+msgstr "用户「%s」已经存在这个服务器!"
 
-#: ../../mod/admin.php:474
-msgid "Theme for mobile devices"
-msgstr "主题适合手机"
+#: ../../include/uimport.php:104
+msgid "User creation error"
+msgstr "用户创造错误"
 
-#: ../../mod/admin.php:475
-msgid "SSL link policy"
-msgstr "SSL环节方针"
+#: ../../include/uimport.php:122
+msgid "User profile creation error"
+msgstr "用户简介创造错误"
 
-#: ../../mod/admin.php:475
-msgid "Determines whether generated links should be forced to use SSL"
-msgstr "决定产生的环节否则被强迫用SSL"
+#: ../../include/uimport.php:167
+#, php-format
+msgid "%d contact not imported"
+msgid_plural "%d contacts not imported"
+msgstr[0] "%d熟人没进口了"
 
-#: ../../mod/admin.php:476
-msgid "'Share' element"
-msgstr "「合用」要素"
+#: ../../include/uimport.php:245
+msgid "Done. You can now login with your username and password"
+msgstr "完了。您现在会用您用户名和密码登录"
 
-#: ../../mod/admin.php:476
-msgid "Activates the bbcode element 'share' for repeating items."
-msgstr "把bbcode要素「合用」为重复项目。"
+#: ../../include/bb2diaspora.php:393 ../../include/event.php:11
+#: ../../mod/localtime.php:12
+msgid "l F d, Y \\@ g:i A"
+msgstr "l F d, Y \\@ g:i A"
 
-#: ../../mod/admin.php:477
-msgid "Maximum image size"
-msgstr "å\9b¾ç\89\87æ\9c\80大尺寸"
+#: ../../include/bb2diaspora.php:399 ../../include/event.php:20
+msgid "Starts:"
+msgstr "å¼\80å§\8bï¼\9a"
 
-#: ../../mod/admin.php:477
-msgid ""
-"Maximum size in bytes of uploaded images. Default is 0, which means no "
-"limits."
-msgstr "最多上传照相的字节。默认是零,意思是无限。"
+#: ../../include/bb2diaspora.php:407 ../../include/event.php:30
+msgid "Finishes:"
+msgstr "结束:"
 
-#: ../../mod/admin.php:478
-msgid "Maximum image length"
-msgstr "最大图片大小"
+#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502
+msgid "Disallowed profile URL."
+msgstr "不允许的简介地址."
 
-#: ../../mod/admin.php:478
+#: ../../include/follow.php:32
+msgid "Connect URL missing."
+msgstr "连接URL失踪的。"
+
+#: ../../include/follow.php:59
 msgid ""
-"Maximum length in pixels of the longest side of uploaded images. Default is "
-"-1, which means no limits."
-msgstr "最多像素在上传图片的长度。默认-1,意思是无限。"
+"This site is not configured to allow communications with other networks."
+msgstr "这网站没配置允许跟别的网络交流."
 
-#: ../../mod/admin.php:479
-msgid "JPEG image quality"
-msgstr "JPEG图片质量"
+#: ../../include/follow.php:60 ../../include/follow.php:80
+msgid "No compatible communication protocols or feeds were discovered."
+msgstr "没有兼容协议或者摘要找到了."
 
-#: ../../mod/admin.php:479
-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/follow.php:78
+msgid "The profile address specified does not provide adequate information."
+msgstr "输入的简介地址没有够消息。"
 
-#: ../../mod/admin.php:481
-msgid "Register policy"
-msgstr "注å\86\8cæ\94¿ç­\96"
+#: ../../include/follow.php:82
+msgid "An author or name was not found."
+msgstr "æ\89¾ä¸\8då\88°ä½\9cè\80\85æ\88\96å\90\8dã\80\82"
 
-#: ../../mod/admin.php:482
-msgid "Maximum Daily Registrations"
-msgstr "一天最多注册"
+#: ../../include/follow.php:84
+msgid "No browser URL could be matched to this address."
+msgstr "这个地址没有符合什么游览器URL。"
 
-#: ../../mod/admin.php:482
+#: ../../include/follow.php:86
 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/admin.php:483
-msgid "Register text"
-msgstr "注册正文"
-
-#: ../../mod/admin.php:483
-msgid "Will be displayed prominently on the registration page."
-msgstr "被显著的在注册页表示。"
+"Unable to match @-style Identity Address with a known protocol or email "
+"contact."
+msgstr "使不了知道的相配或邮件熟人相配 "
 
-#: ../../mod/admin.php:484
-msgid "Accounts abandoned after x days"
-msgstr "è´¦æ\88·ä¸¢å¼\83X天å\90\8e"
+#: ../../include/follow.php:87
+msgid "Use mailto: in front of address to force email check."
+msgstr "è¾\93å\85¥mailto:å\9c°å\9d\80å\89\8d为è¦\81æ±\82ç\94µå­\90é\82®ä»¶æ£\80æ\9f¥ã\80\82"
 
-#: ../../mod/admin.php:484
+#: ../../include/follow.php:93
 msgid ""
-"Will not waste system resources polling external sites for abandonded "
-"accounts. Enter 0 for no time limit."
-msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"
-
-#: ../../mod/admin.php:485
-msgid "Allowed friend domains"
-msgstr "允许的朋友域"
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr "输入的简介地址属在这个网站使不可用的网络。"
 
-#: ../../mod/admin.php:485
+#: ../../include/follow.php:103
 msgid ""
-"Comma separated list of domains which are allowed to establish friendships "
-"with this site. Wildcards are accepted. Empty to allow any domains"
-msgstr "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。"
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr "有限的简介。这人不会接受直达/私人通信从您。"
 
-#: ../../mod/admin.php:486
-msgid "Allowed email domains"
-msgstr "允许的电子邮件域"
+#: ../../include/follow.php:205
+msgid "Unable to retrieve contact information."
+msgstr "不能取回熟人消息。"
 
-#: ../../mod/admin.php:486
-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/follow.php:259
+msgid "following"
+msgstr "关注"
 
-#: ../../mod/admin.php:487
-msgid "Block public"
-msgstr "拦公开"
+#: ../../include/user.php:39
+msgid "An invitation is required."
+msgstr "邀请必要的。"
 
-#: ../../mod/admin.php:487
-msgid ""
-"Check to block public access to all otherwise public personal pages on this "
-"site unless you are currently logged in."
-msgstr "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。"
+#: ../../include/user.php:44
+msgid "Invitation could not be verified."
+msgstr "不能证实邀请。"
 
-#: ../../mod/admin.php:488
-msgid "Force publish"
-msgstr "需要出版"
+#: ../../include/user.php:52
+msgid "Invalid OpenID url"
+msgstr "无效的OpenID url"
 
-#: ../../mod/admin.php:488
-msgid ""
-"Check to force all profiles on this site to be listed in the site directory."
-msgstr "让所有这网站的的简介表明在网站目录。"
+#: ../../include/user.php:67
+msgid "Please enter the required information."
+msgstr "请输入必要的信息。"
 
-#: ../../mod/admin.php:489
-msgid "Global directory update URL"
-msgstr "综合目录更新URL"
+#: ../../include/user.php:81
+msgid "Please use a shorter name."
+msgstr "请用短一点名。"
 
-#: ../../mod/admin.php:489
-msgid ""
-"URL to update the global directory. If this is not set, the global directory"
-" is completely unavailable to the application."
-msgstr "URL为更新综合目录。如果没有,这个应用用不了综合目录。"
+#: ../../include/user.php:83
+msgid "Name too short."
+msgstr "名字太短。"
 
-#: ../../mod/admin.php:490
-msgid "Allow threaded items"
-msgstr "允许线绳项目"
+#: ../../include/user.php:98
+msgid "That doesn't appear to be your full (First Last) name."
+msgstr "这看上去不是您的全姓名。"
 
-#: ../../mod/admin.php:490
-msgid "Allow infinite level threading for items on this site."
-msgstr "允许无限水平线绳为这网站的项目。"
+#: ../../include/user.php:103
+msgid "Your email domain is not among those allowed on this site."
+msgstr "这网站允许的域名中没有您的"
 
-#: ../../mod/admin.php:491
-msgid "Private posts by default for new users"
-msgstr "æ\96°ç\94¨æ\88·é»\98认å\86\99ç§\81人æ\96\87ç« "
+#: ../../include/user.php:106
+msgid "Not a valid email address."
+msgstr "æ\97 æ\95\88ç\9a\84é\82®ä»¶å\9c°å\9d\80ã\80\82"
 
-#: ../../mod/admin.php:491
-msgid ""
-"Set default post permissions for all new members to the default privacy "
-"group rather than public."
-msgstr "默认新用户文章批准使默认隐私组,没有公开。"
+#: ../../include/user.php:116
+msgid "Cannot use that email."
+msgstr "不能用这个邮件地址。"
 
-#: ../../mod/admin.php:493
-msgid "Block multiple registrations"
-msgstr "拦一人多注册"
+#: ../../include/user.php:122
+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:493
-msgid "Disallow users to register additional accounts for use as pages."
-msgstr "不允许用户注册别的账户为当页。"
+#: ../../include/user.php:128 ../../include/user.php:226
+msgid "Nickname is already registered. Please choose another."
+msgstr "昵称已经报到。请选择新的。"
 
-#: ../../mod/admin.php:494
-msgid "OpenID support"
-msgstr "OpenID支持"
+#: ../../include/user.php:138
+msgid ""
+"Nickname was once registered here and may not be re-used. Please choose "
+"another."
+msgstr "昵称曾经这里注册于是不能再用。请选择别的。"
 
-#: ../../mod/admin.php:494
-msgid "OpenID support for registration and logins."
-msgstr "OpenID支持注册和登录。"
+#: ../../include/user.php:154
+msgid "SERIOUS ERROR: Generation of security keys failed."
+msgstr "要紧错误:产生安全钥匙失败了。"
 
-#: ../../mod/admin.php:495
-msgid "Fullname check"
-msgstr "全名核实"
+#: ../../include/user.php:212
+msgid "An error occurred during registration. Please try again."
+msgstr "报到出了问题。请再试。"
 
-#: ../../mod/admin.php:495
-msgid ""
-"Force users to register with a space between firstname and lastname in Full "
-"name, as an antispam measure"
-msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。"
+#: ../../include/user.php:247
+msgid "An error occurred creating your default profile. Please try again."
+msgstr "造成默认简介出了问题。请再试。"
 
-#: ../../mod/admin.php:496
-msgid "UTF-8 Regular expressions"
-msgstr "UTF-8正则表达式"
+#: ../../include/contact_selectors.php:32
+msgid "Unknown | Not categorised"
+msgstr "未知的 |无分类"
 
-#: ../../mod/admin.php:496
-msgid "Use PHP UTF8 regular expressions"
-msgstr "ç\94¨PHP UTF8æ­£å\88\99表达å¼\8f"
+#: ../../include/contact_selectors.php:33
+msgid "Block immediately"
+msgstr "ç«\8bå\8d³æ\8b¦"
 
-#: ../../mod/admin.php:497
-msgid "Show Community Page"
-msgstr "表示社会页"
+#: ../../include/contact_selectors.php:34
+msgid "Shady, spammer, self-marketer"
+msgstr "可疑,发垃圾者,自市场开发者"
 
-#: ../../mod/admin.php:497
-msgid ""
-"Display a Community page showing all recent public postings on this site."
-msgstr "表示社会页表明这网站所有最近公开的文章"
+#: ../../include/contact_selectors.php:35
+msgid "Known to me, but no opinion"
+msgstr "我认识,但没有意见"
 
-#: ../../mod/admin.php:498
-msgid "Enable OStatus support"
-msgstr "使OStatus支持可用"
+#: ../../include/contact_selectors.php:36
+msgid "OK, probably harmless"
+msgstr "行,大概无恶意的"
 
-#: ../../mod/admin.php:498
-msgid ""
-"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
-"communications in OStatus are public, so privacy warnings will be "
-"occasionally displayed."
-msgstr "提供内装的OStatus(identi.ca, status.net, 等)兼容。OStatus内,什么通知是公开的,所以偶尔隐私警告被表示。"
+#: ../../include/contact_selectors.php:37
+msgid "Reputable, has my trust"
+msgstr "可信的,有我的信任"
 
-#: ../../mod/admin.php:499
-msgid "Enable Diaspora support"
-msgstr "使Diaspora支持能够"
+#: ../../include/contact_selectors.php:56
+msgid "Frequently"
+msgstr "时常"
 
-#: ../../mod/admin.php:499
-msgid "Provide built-in Diaspora network compatibility."
-msgstr "æ\8f\90ä¾\9bå\86\85è£\85Diasporaç½\91ç»\9cå\85¼å®¹ã\80\82"
+#: ../../include/contact_selectors.php:57
+msgid "Hourly"
+msgstr "æ¯\8få°\8fæ\97"
 
-#: ../../mod/admin.php:500
-msgid "Only allow Friendica contacts"
-msgstr "只许Friendica熟人"
+#: ../../include/contact_selectors.php:58
+msgid "Twice daily"
+msgstr "每日两次"
 
-#: ../../mod/admin.php:500
-msgid ""
-"All contacts must use Friendica protocols. All other built-in communication "
-"protocols disabled."
-msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都不能用。"
+#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840
+msgid "Friendica"
+msgstr "Friendica"
 
-#: ../../mod/admin.php:501
-msgid "Verify SSL"
-msgstr "证实"
+#: ../../include/contact_selectors.php:77
+msgid "OStatus"
+msgstr "OStatus"
 
-#: ../../mod/admin.php:501
-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:78
+msgid "RSS/Atom"
+msgstr "RSS/Atom"
 
-#: ../../mod/admin.php:502
-msgid "Proxy user"
-msgstr "代理用户"
+#: ../../include/contact_selectors.php:79
+#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747
+#: ../../mod/admin.php:757
+msgid "Email"
+msgstr "电子邮件"
 
-#: ../../mod/admin.php:503
-msgid "Proxy URL"
-msgstr "代理URL"
+#: ../../include/contact_selectors.php:80 ../../mod/settings.php:681
+#: ../../mod/dfrn_request.php:842
+msgid "Diaspora"
+msgstr "Diaspora"
 
-#: ../../mod/admin.php:504
-msgid "Network timeout"
-msgstr "网络超时"
+#: ../../include/contact_selectors.php:82
+msgid "Zot!"
+msgstr "Zot!"
 
-#: ../../mod/admin.php:504
-msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
-msgstr "输入秒数。输入零为无限(不推荐的)。"
+#: ../../include/contact_selectors.php:83
+msgid "LinkedIn"
+msgstr "LinkedIn"
 
-#: ../../mod/admin.php:505
-msgid "Delivery interval"
-msgstr "传送间隔"
-
-#: ../../mod/admin.php:505
-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/contact_selectors.php:84
+msgid "XMPP/IM"
+msgstr "XMPP/IM"
 
-#: ../../mod/admin.php:506
-msgid "Poll interval"
-msgstr "检查时间"
+#: ../../include/contact_selectors.php:85
+msgid "MySpace"
+msgstr "MySpace"
 
-#: ../../mod/admin.php:506
-msgid ""
-"Delay background polling processes by this many seconds to reduce system "
-"load. If 0, use delivery interval."
-msgstr "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。"
+#: ../../include/contact_selectors.php:87
+msgid "Google+"
+msgstr "Google+"
 
-#: ../../mod/admin.php:507
-msgid "Maximum Load Average"
-msgstr "最大负荷平均"
+#: ../../include/contact_widgets.php:6
+msgid "Add New Contact"
+msgstr "增添新的熟人"
 
-#: ../../mod/admin.php:507
-msgid ""
-"Maximum system load before delivery and poll processes are deferred - "
-"default 50."
-msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。"
+#: ../../include/contact_widgets.php:7
+msgid "Enter address or web location"
+msgstr "输入地址或网位置"
 
-#: ../../mod/admin.php:509
-msgid "Use MySQL full text engine"
-msgstr "用MySQL全正文机车"
+#: ../../include/contact_widgets.php:8
+msgid "Example: bob@example.com, http://example.com/barbara"
+msgstr "比如:li@example.com, http://example.com/li"
 
-#: ../../mod/admin.php:509
-msgid ""
-"Activates the full text engine. Speeds up search - but can only search for "
-"four and more characters."
-msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上"
+#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88
+#: ../../mod/match.php:58 ../../boot.php:1338
+msgid "Connect"
+msgstr "连接"
 
-#: ../../mod/admin.php:510
-msgid "Path to item cache"
-msgstr "路线到项目缓存"
+#: ../../include/contact_widgets.php:23
+#, php-format
+msgid "%d invitation available"
+msgid_plural "%d invitations available"
+msgstr[0] "%d邀请可用的"
 
-#: ../../mod/admin.php:511
-msgid "Cache duration in seconds"
-msgstr "缓存时间秒"
+#: ../../include/contact_widgets.php:29
+msgid "Find People"
+msgstr "找人物"
 
-#: ../../mod/admin.php:511
-msgid ""
-"How long should the cache files be hold? Default value is 86400 seconds (One"
-" day)."
-msgstr "缓存文件应该保存多久?默认是86400秒(一天)。"
+#: ../../include/contact_widgets.php:30
+msgid "Enter name or interest"
+msgstr "输入名字或兴趣"
 
-#: ../../mod/admin.php:512
-msgid "Path for lock file"
-msgstr "路线å\88°é\94\81æ\96\87件"
+#: ../../include/contact_widgets.php:31
+msgid "Connect/Follow"
+msgstr "è¿\9eæ\8e¥/å\85³æ³¨"
 
-#: ../../mod/admin.php:513
-msgid "Temp path"
-msgstr "临时文件路线"
+#: ../../include/contact_widgets.php:32
+msgid "Examples: Robert Morgenstein, Fishing"
+msgstr "比如:李某,打鱼"
 
-#: ../../mod/admin.php:514
-msgid "Base path to installation"
-msgstr "基础安装路线"
+#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66
+#: ../../view/theme/diabook/theme.php:520
+msgid "Friend Suggestions"
+msgstr "友谊建议"
 
-#: ../../mod/admin.php:532
-msgid "Update has been marked successful"
-msgstr "更新当成功标签了"
+#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519
+msgid "Similar Interests"
+msgstr "相似兴趣"
 
-#: ../../mod/admin.php:542
-#, php-format
-msgid "Executing %s failed. Check system logs."
-msgstr "把%s实行没通过了。看系统记录。"
+#: ../../include/contact_widgets.php:36
+msgid "Random Profile"
+msgstr "随机简介"
 
-#: ../../mod/admin.php:545
-#, php-format
-msgid "Update %s was successfully applied."
-msgstr "把%s更新成功地实行。"
+#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521
+msgid "Invite Friends"
+msgstr "邀请朋友们"
 
-#: ../../mod/admin.php:549
-#, php-format
-msgid "Update %s did not return a status. Unknown if it succeeded."
-msgstr "%s更新没回答现状。不知道是否成功。"
+#: ../../include/contact_widgets.php:70
+msgid "Networks"
+msgstr "网络"
 
-#: ../../mod/admin.php:552
-#, php-format
-msgid "Update function %s could not be found."
-msgstr "找不到更新功能%s。"
+#: ../../include/contact_widgets.php:73
+msgid "All Networks"
+msgstr "所有网络"
 
-#: ../../mod/admin.php:567
-msgid "No failed updates."
-msgstr "没有不通过地更新。"
+#: ../../include/contact_widgets.php:103 ../../include/features.php:59
+msgid "Saved Folders"
+msgstr "保存的文件夹"
 
-#: ../../mod/admin.php:571
-msgid "Failed Updates"
-msgstr "没通过的更新"
+#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
+msgid "Everything"
+msgstr "一切"
 
-#: ../../mod/admin.php:572
-msgid ""
-"This does not include updates prior to 1139, which did not return a status."
-msgstr "这个不包括1139号更新之前,它们没回答装线。"
+#: ../../include/contact_widgets.php:135
+msgid "Categories"
+msgstr "种类"
 
-#: ../../mod/admin.php:573
-msgid "Mark success (if update was manually applied)"
-msgstr "标注成功(如果手动地把更新实行了)"
+#: ../../include/contact_widgets.php:199 ../../mod/contacts.php:343
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] "%d共同熟人"
 
-#: ../../mod/admin.php:574
-msgid "Attempt to execute this update step automatically"
-msgstr "试图自动地把这步更新实行"
+#: ../../include/Scrape.php:583
+msgid " on Last.fm"
+msgstr "在Last.fm"
 
-#: ../../mod/admin.php:599
-#, php-format
-msgid "%s user blocked/unblocked"
-msgid_plural "%s users blocked/unblocked"
-msgstr[0] "%s用户拦/不拦了"
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:545
+msgid "Image/photo"
+msgstr "图像/照片"
 
-#: ../../mod/admin.php:606
+#: ../../include/bbcode.php:272
 #, php-format
-msgid "%s user deleted"
-msgid_plural "%s users deleted"
-msgstr[0] "%s用户删除了"
+msgid ""
+"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
+"href=\"%s\" target=\"external-link\">post</a>"
+msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>"
 
-#: ../../mod/admin.php:645
-#, php-format
-msgid "User '%s' deleted"
-msgstr "用户「%s」删除了"
+#: ../../include/bbcode.php:510 ../../include/bbcode.php:530
+msgid "$1 wrote:"
+msgstr "$1写:"
 
-#: ../../mod/admin.php:653
-#, php-format
-msgid "User '%s' unblocked"
-msgstr "用户「%s」无拦了"
+#: ../../include/bbcode.php:553 ../../include/bbcode.php:554
+msgid "Encrypted content"
+msgstr "加密的内容"
 
-#: ../../mod/admin.php:653
-#, php-format
-msgid "User '%s' blocked"
-msgstr "用户「%s」拦了"
+#: ../../include/datetime.php:43 ../../include/datetime.php:45
+msgid "Miscellaneous"
+msgstr "形形色色"
 
-#: ../../mod/admin.php:729
-msgid "select all"
-msgstr "都选"
+#: ../../include/datetime.php:153 ../../include/datetime.php:285
+msgid "year"
+msgstr ""
 
-#: ../../mod/admin.php:730
-msgid "User registrations waiting for confirm"
-msgstr "用户注册等待确认"
+#: ../../include/datetime.php:158 ../../include/datetime.php:286
+msgid "month"
+msgstr ""
 
-#: ../../mod/admin.php:731
-msgid "Request date"
-msgstr "要求日期"
+#: ../../include/datetime.php:163 ../../include/datetime.php:288
+msgid "day"
+msgstr ""
 
-#: ../../mod/admin.php:731 ../../mod/admin.php:741
-#: ../../include/contact_selectors.php:79
-#: ../../include/contact_selectors.php:86
-msgid "Email"
-msgstr "电子邮件"
+#: ../../include/datetime.php:276
+msgid "never"
+msgstr "从未"
 
-#: ../../mod/admin.php:732
-msgid "No registrations."
-msgstr "没有注册。"
+#: ../../include/datetime.php:282
+msgid "less than a second ago"
+msgstr "一秒以内"
 
-#: ../../mod/admin.php:734
-msgid "Deny"
-msgstr "否定"
+#: ../../include/datetime.php:287
+msgid "week"
+msgstr "星期"
 
-#: ../../mod/admin.php:738
-msgid "Site admin"
-msgstr "网站管理员"
+#: ../../include/datetime.php:289
+msgid "hour"
+msgstr "小时"
 
-#: ../../mod/admin.php:741
-msgid "Register date"
-msgstr "注册日期"
+#: ../../include/datetime.php:289
+msgid "hours"
+msgstr "小时"
 
-#: ../../mod/admin.php:741
-msgid "Last login"
-msgstr "上次登录"
+#: ../../include/datetime.php:290
+msgid "minute"
+msgstr "分钟"
 
-#: ../../mod/admin.php:741
-msgid "Last item"
-msgstr "上项目"
+#: ../../include/datetime.php:290
+msgid "minutes"
+msgstr "分钟"
 
-#: ../../mod/admin.php:741
-msgid "Account"
-msgstr "帐户"
+#: ../../include/datetime.php:291
+msgid "second"
+msgstr ""
 
-#: ../../mod/admin.php:743
-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/datetime.php:291
+msgid "seconds"
+msgstr "秒"
 
-#: ../../mod/admin.php:744
-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/datetime.php:300
+#, php-format
+msgid "%1$d %2$s ago"
+msgstr "%1$d %2$s以前"
 
-#: ../../mod/admin.php:785
+#: ../../include/datetime.php:472 ../../include/items.php:1764
 #, php-format
-msgid "Plugin %s disabled."
-msgstr "使插件%s不能用。"
+msgid "%s's birthday"
+msgstr "%s的生日"
 
-#: ../../mod/admin.php:789
+#: ../../include/datetime.php:473 ../../include/items.php:1765
 #, php-format
-msgid "Plugin %s enabled."
-msgstr "使插件%s能用。"
+msgid "Happy Birthday %s"
+msgstr "生日快乐%s"
 
-#: ../../mod/admin.php:799 ../../mod/admin.php:1001
-msgid "Disable"
-msgstr "使不能用"
+#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716
+msgid "[Name Withheld]"
+msgstr "[名字拒给]"
 
-#: ../../mod/admin.php:801 ../../mod/admin.php:1003
-msgid "Enable"
-msgstr "使è\83½ç\94¨"
+#: ../../include/items.php:3446
+msgid "A new person is sharing with you at "
+msgstr "ä¸\80ä½\8dæ\96°äººç»\99ä½ å\88\86享å\9c¨"
 
-#: ../../mod/admin.php:823 ../../mod/admin.php:1032
-msgid "Toggle"
-msgstr "肘节"
+#: ../../include/items.php:3446
+msgid "You have a new follower at "
+msgstr "你有新的关注者在"
 
-#: ../../mod/admin.php:831 ../../mod/admin.php:1042
-msgid "Author: "
-msgstr "作家:"
+#: ../../include/items.php:3926 ../../mod/admin.php:158
+#: ../../mod/admin.php:789 ../../mod/admin.php:989 ../../mod/display.php:51
+#: ../../mod/display.php:184 ../../mod/viewsrc.php:15 ../../mod/notice.php:15
+msgid "Item not found."
+msgstr "项目找不到。"
 
-#: ../../mod/admin.php:832 ../../mod/admin.php:1043
-msgid "Maintainer: "
-msgstr "保持员:"
+#: ../../include/items.php:3965
+msgid "Do you really want to delete this item?"
+msgstr "您真的想删除这个项目吗?"
 
-#: ../../mod/admin.php:961
-msgid "No themes found."
-msgstr "找不到主题。"
+#: ../../include/items.php:3967 ../../mod/profiles.php:606
+#: ../../mod/api.php:105 ../../mod/register.php:239 ../../mod/contacts.php:246
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:836
+#: ../../mod/suggest.php:29 ../../mod/message.php:209
+msgid "Yes"
+msgstr "是"
 
-#: ../../mod/admin.php:1024
-msgid "Screenshot"
-msgstr "æ\88ªå\9b¾"
+#: ../../include/items.php:4160
+msgid "Archives"
+msgstr "æ¡£æ¡\88"
 
-#: ../../mod/admin.php:1072
-msgid "[Experimental]"
-msgstr "[试验]"
+#: ../../include/plugin.php:439 ../../include/plugin.php:441
+msgid "Click here to upgrade."
+msgstr "这里点击为更新。"
 
-#: ../../mod/admin.php:1073
-msgid "[Unsupported]"
-msgstr "[没支持]"
+#: ../../include/plugin.php:447
+msgid "This action exceeds the limits set by your subscription plan."
+msgstr "这个行动超过您订阅的限制。"
 
-#: ../../mod/admin.php:1100
-msgid "Log settings updated."
-msgstr "日志设置更新了。"
+#: ../../include/plugin.php:452
+msgid "This action is not available under your subscription plan."
+msgstr "这个行动在您的订阅不可用的。"
 
-#: ../../mod/admin.php:1156
-msgid "Clear"
-msgstr "æ¸\85ç\90\86å\87º"
+#: ../../include/delivery.php:457 ../../include/notifier.php:775
+msgid "(no subject)"
+msgstr "æ²\92æ\9c\89é¢\98ç\9b®"
 
-#: ../../mod/admin.php:1162
-msgid "Debugging"
-msgstr "调试"
+#: ../../include/diaspora.php:621 ../../include/conversation.php:172
+#: ../../mod/dfrn_confirm.php:477
+#, php-format
+msgid "%1$s is now friends with %2$s"
+msgstr "%1$s是成为%2$s的朋友"
 
-#: ../../mod/admin.php:1163
-msgid "Log file"
-msgstr "记录文件"
+#: ../../include/diaspora.php:704
+msgid "Sharing notification from Diaspora network"
+msgstr "分享通知从Diaspora网络"
 
-#: ../../mod/admin.php:1163
-msgid ""
-"Must be writable by web server. Relative to your Friendica top-level "
-"directory."
-msgstr "必要被网页服务器可写的。相对Friendica主文件夹。"
+#: ../../include/diaspora.php:2262
+msgid "Attachments:"
+msgstr "附件:"
 
-#: ../../mod/admin.php:1164
-msgid "Log level"
-msgstr "记录水平"
+#: ../../include/enotify.php:16
+msgid "Friendica Notification"
+msgstr "Friendica 通知"
 
-#: ../../mod/admin.php:1214
-msgid "Close"
-msgstr "关闭"
+#: ../../include/enotify.php:19
+msgid "Thank You,"
+msgstr "谢谢,"
 
-#: ../../mod/admin.php:1220
-msgid "FTP Host"
-msgstr "FTP主机"
+#: ../../include/enotify.php:21
+#, php-format
+msgid "%s Administrator"
+msgstr "%s管理员"
 
-#: ../../mod/admin.php:1221
-msgid "FTP Path"
-msgstr "FTP目录"
+#: ../../include/enotify.php:40
+#, php-format
+msgid "%s <!item_type!>"
+msgstr "%s <!item_type!>"
 
-#: ../../mod/admin.php:1222
-msgid "FTP User"
-msgstr "FTP用户"
+#: ../../include/enotify.php:44
+#, php-format
+msgid "[Friendica:Notify] New mail received at %s"
+msgstr "[Friendica:Notify]收到新邮件在%s"
 
-#: ../../mod/admin.php:1223
-msgid "FTP Password"
-msgstr "FTP密码"
+#: ../../include/enotify.php:46
+#, php-format
+msgid "%1$s sent you a new private message at %2$s."
+msgstr "%1$s发给您新私人通知在%2$s."
 
-#: ../../mod/profile.php:21 ../../boot.php:1225
-msgid "Requested profile is not available."
-msgstr "要求的简介联系不上的。"
+#: ../../include/enotify.php:47
+#, php-format
+msgid "%1$s sent you %2$s."
+msgstr "%1$s发给您%2$s."
 
-#: ../../mod/profile.php:155 ../../mod/display.php:99
-msgid "Access to this profile has been restricted."
-msgstr "使ç\94¨æ\9d\83è¿\99个ç®\80ä»\8b被é\99\90å\88¶äº\86."
+#: ../../include/enotify.php:47
+msgid "a private message"
+msgstr "ä¸\80æ\9d¡ç§\81人ç\9a\84æ¶\88æ\81¯"
 
-#: ../../mod/profile.php:180
-msgid "Tips for New Members"
-msgstr "提示对新成员"
+#: ../../include/enotify.php:48
+#, php-format
+msgid "Please visit %s to view and/or reply to your private messages."
+msgstr "清去%s为了看或回答你私人的消息"
 
-#: ../../mod/ping.php:238
-msgid "{0} wants to be your friend"
-msgstr "{0}想成为您的朋友"
+#: ../../include/enotify.php:90
+#, 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/ping.php:243
-msgid "{0} sent you a message"
-msgstr "{0}发给您一个通信"
+#: ../../include/enotify.php:97
+#, 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/ping.php:248
-msgid "{0} requested registration"
-msgstr "{0}要求注册"
+#: ../../include/enotify.php:105
+#, php-format
+msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
+msgstr "%1$s于[url=%2$s]您的%3$s[/url]评论了"
 
-#: ../../mod/ping.php:254
+#: ../../include/enotify.php:115
 #, php-format
-msgid "{0} commented %s's post"
-msgstr "{0}对%s的文章发表意见"
+msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
+msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论"
 
-#: ../../mod/ping.php:259
+#: ../../include/enotify.php:116
 #, php-format
-msgid "{0} liked %s's post"
-msgstr "{0}喜欢%s的文章"
+msgid "%s commented on an item/conversation you have been following."
+msgstr "%s对你有兴趣的项目/ 交谈发表意见"
 
-#: ../../mod/ping.php:264
+#: ../../include/enotify.php:119 ../../include/enotify.php:134
+#: ../../include/enotify.php:147 ../../include/enotify.php:165
+#: ../../include/enotify.php:178
 #, php-format
-msgid "{0} disliked %s's post"
-msgstr "{0}不喜欢%s的文章"
+msgid "Please visit %s to view and/or reply to the conversation."
+msgstr "清去%s为了看或回答交谈"
 
-#: ../../mod/ping.php:269
+#: ../../include/enotify.php:126
 #, php-format
-msgid "{0} is now friends with %s"
-msgstr "{0}成为%s的朋友"
+msgid "[Friendica:Notify] %s posted to your profile wall"
+msgstr "[Friendica:Notify] %s贴在您的简介墙"
 
-#: ../../mod/ping.php:274
-msgid "{0} posted"
-msgstr "{0}陈列"
+#: ../../include/enotify.php:128
+#, php-format
+msgid "%1$s posted to your profile wall at %2$s"
+msgstr "%1$s放在您的简介墙在%2$s"
 
-#: ../../mod/ping.php:279
+#: ../../include/enotify.php:130
 #, php-format
-msgid "{0} tagged %s's post with #%s"
-msgstr "{0}用#%s标签%s的文章"
+msgid "%1$s posted to [url=%2$s]your wall[/url]"
+msgstr "%1$s放在[url=%2$s]您的墙[/url]"
 
-#: ../../mod/ping.php:285
-msgid "{0} mentioned you in a post"
-msgstr "{0}提到您在文章"
+#: ../../include/enotify.php:141
+#, php-format
+msgid "[Friendica:Notify] %s tagged you"
+msgstr "[Friendica:Notify] %s标签您"
 
-#: ../../mod/nogroup.php:59
-msgid "Contacts who are not members of a group"
-msgstr "没当成员的熟人"
+#: ../../include/enotify.php:142
+#, php-format
+msgid "%1$s tagged you at %2$s"
+msgstr "%1$s把您在%2$s标签"
 
-#: ../../mod/openid.php:24
-msgid "OpenID protocol error. No ID returned."
-msgstr "OpenID协议错误。没ID还。 "
+#: ../../include/enotify.php:143
+#, php-format
+msgid "%1$s [url=%2$s]tagged you[/url]."
+msgstr "%1$s[url=%2$s]把您标签[/url]."
 
-#: ../../mod/openid.php:53
-msgid ""
-"Account not found and OpenID registration is not permitted on this site."
-msgstr "找不到账户和OpenID注册不允许。"
+#: ../../include/enotify.php:155
+#, php-format
+msgid "[Friendica:Notify] %1$s poked you"
+msgstr "[Friendica:Notify]您被%1$s戳"
 
-#: ../../mod/openid.php:93 ../../include/auth.php:112
-#: ../../include/auth.php:175
-msgid "Login failed."
-msgstr "登记失败了。"
+#: ../../include/enotify.php:156
+#, php-format
+msgid "%1$s poked you at %2$s"
+msgstr "您被%1$s戳在%2$s"
 
-#: ../../mod/follow.php:27
-msgid "Contact added"
-msgstr "熟人添了"
+#: ../../include/enotify.php:157
+#, php-format
+msgid "%1$s [url=%2$s]poked you[/url]."
+msgstr "%1$s[url=%2$s]把您戳[/url]。"
 
-#: ../../mod/common.php:42
-msgid "Common Friends"
-msgstr "普通朋友们"
+#: ../../include/enotify.php:172
+#, php-format
+msgid "[Friendica:Notify] %s tagged your post"
+msgstr "[Friendica:Notify] %s标前您的文章"
 
-#: ../../mod/common.php:78
-msgid "No contacts in common."
-msgstr "没有共同熟人。"
+#: ../../include/enotify.php:173
+#, php-format
+msgid "%1$s tagged your post at %2$s"
+msgstr "%1$s把您的文章在%2$s标签"
 
-#: ../../mod/subthread.php:103
+#: ../../include/enotify.php:174
 #, php-format
-msgid "%1$s is following %2$s's %3$s"
-msgstr "%1$s关注着%2$s的%3$s"
+msgid "%1$s tagged [url=%2$s]your post[/url]"
+msgstr "%1$s把[url=%2$s]您的文章[/url]标签"
 
-#: ../../mod/share.php:44
-msgid "link"
-msgstr "链接"
+#: ../../include/enotify.php:185
+msgid "[Friendica:Notify] Introduction received"
+msgstr "[Friendica:Notify] 收到介绍"
 
-#: ../../mod/display.php:177
-msgid "Item has been removed."
-msgstr "项目被删除了。"
+#: ../../include/enotify.php:186
+#, php-format
+msgid "You've received an introduction from '%1$s' at %2$s"
+msgstr "您从「%1$s」受到一个介绍在%2$s"
 
-#: ../../mod/apps.php:4
-msgid "Applications"
-msgstr "应用"
+#: ../../include/enotify.php:187
+#, php-format
+msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
+msgstr "您从%2$s收到[url=%1$s]一个介绍[/url]。"
 
-#: ../../mod/apps.php:7
-msgid "No installed applications."
-msgstr "没有安装的应用"
+#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#, php-format
+msgid "You may visit their profile at %s"
+msgstr "你能看他的简介在%s"
 
-#: ../../mod/search.php:99 ../../include/text.php:738
-#: ../../include/text.php:739 ../../include/nav.php:118
-msgid "Search"
-msgstr "搜索"
+#: ../../include/enotify.php:192
+#, php-format
+msgid "Please visit %s to approve or reject the introduction."
+msgstr "请批准或拒绝介绍在%s"
 
-#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
-#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
-#: ../../mod/dfrn_confirm.php:62
-msgid "Profile not found."
-msgstr "找不到简介。"
+#: ../../include/enotify.php:199
+msgid "[Friendica:Notify] Friend suggestion received"
+msgstr "[Friendica:Notify] 收到朋友建议"
 
-#: ../../mod/profiles.php:37
-msgid "Profile deleted."
-msgstr "简介删除了。"
+#: ../../include/enotify.php:200
+#, php-format
+msgid "You've received a friend suggestion from '%1$s' at %2$s"
+msgstr "您从「%2$s」收到[url=%1$s]一个朋友建议[/url]。"
 
-#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
-msgid "Profile-"
-msgstr "简介-"
+#: ../../include/enotify.php:201
+#, php-format
+msgid ""
+"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
+msgstr "您从%2$s收到[url=%1$s]一个朋友建议[/url]为%2$s。"
 
-#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
-msgid "New profile created."
-msgstr "å\88\9bé\80 æ\96°ç\9a\84ç®\80ä»\8b"
+#: ../../include/enotify.php:206
+msgid "Name:"
+msgstr "å\90\8då­\97ï¼\9a"
 
-#: ../../mod/profiles.php:95
-msgid "Profile unavailable to clone."
-msgstr "ç®\80ä»\8bä¸\8då\8f¯ç\94¨ä¸ºå¤\8då\88¶ã\80\82"
+#: ../../include/enotify.php:207
+msgid "Photo:"
+msgstr "ç\85§ç\89\87ï¼\9a"
 
-#: ../../mod/profiles.php:170
-msgid "Profile Name is required."
-msgstr "必要简介名"
+#: ../../include/enotify.php:210
+#, php-format
+msgid "Please visit %s to approve or reject the suggestion."
+msgstr "请批准或拒绝建议在%s"
 
-#: ../../mod/profiles.php:317
-msgid "Marital Status"
-msgstr "婚姻状况 "
+#: ../../include/features.php:23
+msgid "General Features"
+msgstr "总的特点"
 
-#: ../../mod/profiles.php:321
-msgid "Romantic Partner"
-msgstr "情人"
+#: ../../include/features.php:25
+msgid "Multiple Profiles"
+msgstr "多简介"
 
-#: ../../mod/profiles.php:325
-msgid "Likes"
-msgstr "喜欢"
+#: ../../include/features.php:25
+msgid "Ability to create multiple profiles"
+msgstr "能穿凿多简介"
 
-#: ../../mod/profiles.php:329
-msgid "Dislikes"
-msgstr "不喜欢"
+#: ../../include/features.php:30
+msgid "Post Composition Features"
+msgstr "写文章特点"
 
-#: ../../mod/profiles.php:333
-msgid "Work/Employment"
-msgstr "å·¥ä½\9c"
+#: ../../include/features.php:31
+msgid "Richtext Editor"
+msgstr "å¯\8cæ\96\87æ\9c¬æ ¼å¼\8fç¼\96è¾\91"
 
-#: ../../mod/profiles.php:336
-msgid "Religion"
-msgstr "宗教"
+#: ../../include/features.php:31
+msgid "Enable richtext editor"
+msgstr "使富文本格式编辑可用"
 
-#: ../../mod/profiles.php:340
-msgid "Political Views"
-msgstr "æ\94¿æ²»è§\82念"
+#: ../../include/features.php:32
+msgid "Post Preview"
+msgstr "æ\96\87ç« é¢\84æ¼\94"
 
-#: ../../mod/profiles.php:344
-msgid "Gender"
-msgstr "性别"
+#: ../../include/features.php:32
+msgid "Allow previewing posts and comments before publishing them"
+msgstr "允许文章和评论出版前预演"
 
-#: ../../mod/profiles.php:348
-msgid "Sexual Preference"
-msgstr "性取向"
+#: ../../include/features.php:37
+msgid "Network Sidebar Widgets"
+msgstr "网络工具栏小窗口"
 
-#: ../../mod/profiles.php:352
-msgid "Homepage"
-msgstr "主页"
+#: ../../include/features.php:38
+msgid "Search by Date"
+msgstr "按日期搜索"
 
-#: ../../mod/profiles.php:356
-msgid "Interests"
-msgstr "兴趣"
+#: ../../include/features.php:38
+msgid "Ability to select posts by date ranges"
+msgstr "能按时期范围选择文章"
 
-#: ../../mod/profiles.php:360
-msgid "Address"
-msgstr "地址"
+#: ../../include/features.php:39
+msgid "Group Filter"
+msgstr "组滤器"
 
-#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:183
-msgid "Location"
-msgstr "位置"
+#: ../../include/features.php:39
+msgid "Enable widget to display Network posts only from selected group"
+msgstr "使光表示网络文章从选择的组小窗口"
 
-#: ../../mod/profiles.php:450
-msgid "Profile updated."
-msgstr "ç®\80ä»\8bæ\9b´æ\96°äº\86ã\80\82"
+#: ../../include/features.php:40
+msgid "Network Filter"
+msgstr "ç½\91ç»\9c滤å\99¨"
 
-#: ../../mod/profiles.php:517
-msgid " and "
-msgstr ""
+#: ../../include/features.php:40
+msgid "Enable widget to display Network posts only from selected network"
+msgstr "使光表示网络文章从选择的网络小窗口"
 
-#: ../../mod/profiles.php:525
-msgid "public profile"
-msgstr "公开简介"
+#: ../../include/features.php:41 ../../mod/search.php:30
+#: ../../mod/network.php:233
+msgid "Saved Searches"
+msgstr "保存的搜索"
 
-#: ../../mod/profiles.php:528
-#, php-format
-msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
-msgstr "%1$s把%2$s变化成&ldquo;%3$s&rdquo;"
+#: ../../include/features.php:41
+msgid "Save search terms for re-use"
+msgstr "保存搜索关键为再用"
 
-#: ../../mod/profiles.php:529
-#, php-format
-msgid " - Visit %1$s's %2$s"
-msgstr " - 看 %1$s的%2$s"
+#: ../../include/features.php:46
+msgid "Network Tabs"
+msgstr "网络分页"
 
-#: ../../mod/profiles.php:532
-#, php-format
-msgid "%1$s has an updated %2$s, changing %3$s."
-msgstr "%1$s有更新的%2$s,修改%3$s."
+#: ../../include/features.php:47
+msgid "Network Personal Tab"
+msgstr "网络私人分页"
 
-#: ../../mod/profiles.php:605
-msgid "Hide your contact/friend list from viewers of this profile?"
-msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?"
+#: ../../include/features.php:47
+msgid "Enable tab to display only Network posts that you've interacted on"
+msgstr "使表示光网络文章您参加了分页可用"
 
-#: ../../mod/profiles.php:625
-msgid "Edit Profile Details"
-msgstr "剪辑简介消息"
+#: ../../include/features.php:48
+msgid "Network New Tab"
+msgstr "网络新分页"
 
-#: ../../mod/profiles.php:627
-msgid "Change Profile Photo"
-msgstr "改变简介照片"
+#: ../../include/features.php:48
+msgid "Enable tab to display only new Network posts (from the last 12 hours)"
+msgstr "使表示光网络文章在12小时内分页可用"
 
-#: ../../mod/profiles.php:628
-msgid "View this profile"
-msgstr "ç\9c\8bè¿\99个ç®\80ä»\8b"
+#: ../../include/features.php:49
+msgid "Network Shared Links Tab"
+msgstr "ç½\91ç»\9cå\88\86享é\93¾æ\8e¥å\88\86页"
 
-#: ../../mod/profiles.php:629
-msgid "Create a new profile using these settings"
-msgstr "造成新的简介用这些设置"
+#: ../../include/features.php:49
+msgid "Enable tab to display only Network posts with links in them"
+msgstr "使表示光网络文章包括链接分页可用"
 
-#: ../../mod/profiles.php:630
-msgid "Clone this profile"
-msgstr "复制这个简介"
+#: ../../include/features.php:54
+msgid "Post/Comment Tools"
+msgstr "文章/评论工具"
 
-#: ../../mod/profiles.php:631
-msgid "Delete this profile"
-msgstr "å\88 é\99¤è¿\99个ç®\80ä»\8b"
+#: ../../include/features.php:55
+msgid "Multiple Deletion"
+msgstr "å¤\9aå\88 é\99¤"
 
-#: ../../mod/profiles.php:632
-msgid "Profile Name:"
-msgstr "简介名:"
+#: ../../include/features.php:55
+msgid "Select and delete multiple posts/comments at once"
+msgstr "选择和删除多文章/评论一次"
 
-#: ../../mod/profiles.php:633
-msgid "Your Full Name:"
-msgstr "你的全名:"
+#: ../../include/features.php:56
+msgid "Edit Sent Posts"
+msgstr "编辑发送的文章"
 
-#: ../../mod/profiles.php:634
-msgid "Title/Description:"
-msgstr "标题/描述:"
+#: ../../include/features.php:56
+msgid "Edit and correct posts and comments after sending"
+msgstr "编辑或修改文章和评论发送后"
 
-#: ../../mod/profiles.php:635
-msgid "Your Gender:"
-msgstr "你的性:"
+#: ../../include/features.php:57
+msgid "Tagging"
+msgstr "标签"
 
-#: ../../mod/profiles.php:636
-#, php-format
-msgid "Birthday (%s):"
-msgstr "生日(%s):"
+#: ../../include/features.php:57
+msgid "Ability to tag existing posts"
+msgstr "能把目前的文章标签"
 
-#: ../../mod/profiles.php:637
-msgid "Street Address:"
-msgstr "地址:"
+#: ../../include/features.php:58
+msgid "Post Categories"
+msgstr "文章种类"
 
-#: ../../mod/profiles.php:638
-msgid "Locality/City:"
-msgstr "现场/城市:"
-
-#: ../../mod/profiles.php:639
-msgid "Postal/Zip Code:"
-msgstr "邮政编码:"
+#: ../../include/features.php:58
+msgid "Add categories to your posts"
+msgstr "加入种类给您的文章"
 
-#: ../../mod/profiles.php:640
-msgid "Country:"
-msgstr "国家:"
+#: ../../include/features.php:59
+msgid "Ability to file posts under folders"
+msgstr "能把文章归档在文件夹 "
 
-#: ../../mod/profiles.php:641
-msgid "Region/State:"
-msgstr "区域/省"
+#: ../../include/features.php:60
+msgid "Dislike Posts"
+msgstr "不喜欢文章"
 
-#: ../../mod/profiles.php:642
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span>婚姻状况:"
+#: ../../include/features.php:60
+msgid "Ability to dislike posts/comments"
+msgstr "能不喜欢文章/评论"
 
-#: ../../mod/profiles.php:643
-msgid "Who: (if applicable)"
-msgstr "谁:(要是使用)"
+#: ../../include/features.php:61
+msgid "Star Posts"
+msgstr "文章星"
 
-#: ../../mod/profiles.php:644
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "比如:limou,李某,limou@example。com"
+#: ../../include/features.php:61
+msgid "Ability to mark special posts with a star indicator"
+msgstr "能把优秀文章跟星标注"
 
-#: ../../mod/profiles.php:645
-msgid "Since [date]:"
-msgstr "追溯[日期]:"
+#: ../../include/dba.php:44
+#, php-format
+msgid "Cannot locate DNS info for database server '%s'"
+msgstr "找不到DNS信息为数据库服务器「%s」"
 
-#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46
-msgid "Sexual Preference:"
-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/profiles.php:647
-msgid "Homepage URL:"
-msgstr "主页URL:"
+#: ../../include/group.php:207
+msgid "Default privacy group for new contacts"
+msgstr "默认隐私组为新熟人"
 
-#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50
-msgid "Hometown:"
-msgstr "æ\95\85乡ï¼\9a"
+#: ../../include/group.php:226
+msgid "Everybody"
+msgstr "æ¯\8f人"
 
-#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54
-msgid "Political Views:"
-msgstr "政治观念:"
+#: ../../include/group.php:249
+msgid "edit"
+msgstr "编辑"
 
-#: ../../mod/profiles.php:650
-msgid "Religious Views:"
-msgstr " 宗教信仰 :"
+#: ../../include/group.php:270 ../../mod/newmember.php:66
+msgid "Groups"
+msgstr ""
 
-#: ../../mod/profiles.php:651
-msgid "Public Keywords:"
-msgstr "公开关键字 :"
+#: ../../include/group.php:271
+msgid "Edit group"
+msgstr "编辑组"
 
-#: ../../mod/profiles.php:652
-msgid "Private Keywords:"
-msgstr "私人关键字"
+#: ../../include/group.php:272
+msgid "Create a new group"
+msgstr "创造新组"
 
-#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62
-msgid "Likes:"
-msgstr "喜欢:"
+#: ../../include/group.php:273
+msgid "Contacts not in any group"
+msgstr "熟人没有组"
 
-#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64
-msgid "Dislikes:"
-msgstr "不喜欢:"
+#: ../../include/group.php:275 ../../mod/network.php:234
+msgid "add"
+msgstr "添加"
 
-#: ../../mod/profiles.php:655
-msgid "Example: fishing photography software"
-msgstr "例如:钓鱼 照片 软件"
+#: ../../include/conversation.php:140 ../../mod/like.php:170
+#, php-format
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "%1$s不喜欢%2$s的%3$s"
 
-#: ../../mod/profiles.php:656
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(用于建议可能的朋友们,会被别人看)"
+#: ../../include/conversation.php:207
+#, php-format
+msgid "%1$s poked %2$s"
+msgstr "%1$s把%2$s戳"
 
-#: ../../mod/profiles.php:657
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(用于搜索简介,没有给别人看)"
+#: ../../include/conversation.php:227 ../../mod/mood.php:62
+#, php-format
+msgid "%1$s is currently %2$s"
+msgstr "%1$s现在是%2$s"
 
-#: ../../mod/profiles.php:658
-msgid "Tell us about yourself..."
-msgstr "给我们自我介绍..."
+#: ../../include/conversation.php:266 ../../mod/tagger.php:95
+#, php-format
+msgid "%1$s tagged %2$s's %3$s with %4$s"
+msgstr "%1$s把%4$s标签%2$s的%3$s"
 
-#: ../../mod/profiles.php:659
-msgid "Hobbies/Interests"
-msgstr "爱好/兴趣"
+#: ../../include/conversation.php:291
+msgid "post/item"
+msgstr "文章/项目"
 
-#: ../../mod/profiles.php:660
-msgid "Contact information and Social Networks"
-msgstr "熟人信息和社会化网络"
+#: ../../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/profiles.php:661
-msgid "Musical interests"
-msgstr "音乐兴趣"
+#: ../../include/conversation.php:587 ../../mod/content.php:461
+#: ../../mod/content.php:763 ../../object/Item.php:119
+msgid "Select"
+msgstr "选择"
 
-#: ../../mod/profiles.php:662
-msgid "Books, literature"
-msgstr "书,文学"
+#: ../../include/conversation.php:588 ../../mod/admin.php:751
+#: ../../mod/settings.php:623 ../../mod/group.php:171
+#: ../../mod/photos.php:1637 ../../mod/content.php:462
+#: ../../mod/content.php:764 ../../object/Item.php:120
+msgid "Delete"
+msgstr "删除"
 
-#: ../../mod/profiles.php:663
-msgid "Television"
-msgstr "电视"
+#: ../../include/conversation.php:627 ../../mod/content.php:495
+#: ../../mod/content.php:875 ../../mod/content.php:876
+#: ../../object/Item.php:297 ../../object/Item.php:298
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "看%s的简介@ %s"
 
-#: ../../mod/profiles.php:664
-msgid "Film/dance/culture/entertainment"
-msgstr "ç\94µå½±ï¼\8fè·³è\88\9eï¼\8fæ\96\87å\8c\96ï¼\8f娱ä¹\90"
+#: ../../include/conversation.php:639 ../../object/Item.php:288
+msgid "Categories:"
+msgstr "ç§\8dç±»ï¼\9a"
 
-#: ../../mod/profiles.php:665
-msgid "Love/romance"
-msgstr "爱情/浪漫"
+#: ../../include/conversation.php:640 ../../object/Item.php:289
+msgid "Filed under:"
+msgstr "归档在:"
 
-#: ../../mod/profiles.php:666
-msgid "Work/employment"
-msgstr "工作"
+#: ../../include/conversation.php:647 ../../mod/content.php:505
+#: ../../mod/content.php:887 ../../object/Item.php:311
+#, php-format
+msgid "%s from %s"
+msgstr "%s从%s"
 
-#: ../../mod/profiles.php:667
-msgid "School/education"
-msgstr "学院/教育"
+#: ../../include/conversation.php:662 ../../mod/content.php:520
+msgid "View in context"
+msgstr "看在上下文"
 
-#: ../../mod/profiles.php:672
-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>被所有的因特网用的看到。"
+#: ../../include/conversation.php:664 ../../include/conversation.php:1060
+#: ../../mod/editpost.php:124 ../../mod/wallmessage.php:156
+#: ../../mod/message.php:334 ../../mod/message.php:565
+#: ../../mod/photos.php:1532 ../../mod/content.php:522
+#: ../../mod/content.php:906 ../../object/Item.php:332
+msgid "Please wait"
+msgstr "请等一下"
 
-#: ../../mod/profiles.php:682 ../../mod/directory.php:111
-#: ../../addon/forumdirectory/forumdirectory.php:133
-msgid "Age: "
-msgstr "年纪:"
+#: ../../include/conversation.php:728
+msgid "remove"
+msgstr "删除"
 
-#: ../../mod/profiles.php:721
-msgid "Edit/Manage Profiles"
-msgstr "编辑/管理简介"
+#: ../../include/conversation.php:732
+msgid "Delete Selected Items"
+msgstr "删除选的项目"
 
-#: ../../mod/profiles.php:722 ../../boot.php:1345
-msgid "Change profile photo"
-msgstr "换简介照片"
+#: ../../include/conversation.php:831
+msgid "Follow Thread"
+msgstr "关注线绳"
 
-#: ../../mod/profiles.php:723 ../../boot.php:1346
-msgid "Create New Profile"
-msgstr "创造新的简介"
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s likes this."
+msgstr "%s喜欢这个."
 
-#: ../../mod/profiles.php:734 ../../boot.php:1356
-msgid "Profile Image"
-msgstr "简介图像"
+#: ../../include/conversation.php:900
+#, php-format
+msgid "%s doesn't like this."
+msgstr "%s没有喜欢这个."
 
-#: ../../mod/profiles.php:736 ../../boot.php:1359
-msgid "visible to everybody"
-msgstr "给打假可见的"
+#: ../../include/conversation.php:905
+#, php-format
+msgid "<span  %1$s>%2$d people</span> like this"
+msgstr "<span  %1$s>%2$d人们</span>喜欢这个"
 
-#: ../../mod/profiles.php:737 ../../boot.php:1360
-msgid "Edit visibility"
-msgstr "修改能见度"
+#: ../../include/conversation.php:908
+#, php-format
+msgid "<span  %1$s>%2$d people</span> don't like this"
+msgstr "<span  %1$s>%2$d人们</span>不喜欢这个"
 
-#: ../../mod/filer.php:30 ../../include/conversation.php:944
-#: ../../include/conversation.php:962
-msgid "Save to Folder:"
-msgstr "保存再文件夹:"
+#: ../../include/conversation.php:922
+msgid "and"
+msgstr "和"
 
-#: ../../mod/filer.php:30
-msgid "- select -"
-msgstr "-选择-"
+#: ../../include/conversation.php:928
+#, php-format
+msgid ", and %d other people"
+msgstr ",和%d别人"
 
-#: ../../mod/tagger.php:95 ../../include/conversation.php:266
+#: ../../include/conversation.php:930
 #, php-format
-msgid "%1$s tagged %2$s's %3$s with %4$s"
-msgstr "%1$s把%4$s标签%2$s的%3$s"
+msgid "%s like this."
+msgstr "%s喜欢这个"
 
-#: ../../mod/delegate.php:95
-msgid "No potential page delegates located."
-msgstr "找不到可能代表页人。"
+#: ../../include/conversation.php:930
+#, php-format
+msgid "%s don't like this."
+msgstr "%s不喜欢这个"
 
-#: ../../mod/delegate.php:121 ../../include/nav.php:165
-msgid "Delegate Page Management"
-msgstr "页代表管理"
+#: ../../include/conversation.php:957 ../../include/conversation.php:975
+msgid "Visible to <strong>everybody</strong>"
+msgstr "<strong>大家</strong>可见的"
 
-#: ../../mod/delegate.php:123
-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 "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。"
+#: ../../include/conversation.php:958 ../../include/conversation.php:976
+#: ../../mod/wallmessage.php:127 ../../mod/wallmessage.php:135
+#: ../../mod/message.php:283 ../../mod/message.php:291
+#: ../../mod/message.php:466 ../../mod/message.php:474
+msgid "Please enter a link URL:"
+msgstr "请输入环节URL:"
 
-#: ../../mod/delegate.php:124
-msgid "Existing Page Managers"
-msgstr "目前页管理员"
+#: ../../include/conversation.php:959 ../../include/conversation.php:977
+msgid "Please enter a video link/URL:"
+msgstr "请输入视频连接/URL:"
 
-#: ../../mod/delegate.php:126
-msgid "Existing Page Delegates"
-msgstr "目前页代表"
+#: ../../include/conversation.php:960 ../../include/conversation.php:978
+msgid "Please enter an audio link/URL:"
+msgstr "请输入音响连接/URL:"
 
-#: ../../mod/delegate.php:128
-msgid "Potential Delegates"
-msgstr "æ½\9cå\8a\9bç\9a\84代表"
+#: ../../include/conversation.php:961 ../../include/conversation.php:979
+msgid "Tag term:"
+msgstr "æ \87ç­¾:"
 
-#: ../../mod/delegate.php:131
-msgid "Add"
-msgstr "加"
+#: ../../include/conversation.php:962 ../../include/conversation.php:980
+#: ../../mod/filer.php:30
+msgid "Save to Folder:"
+msgstr "保存再文件夹:"
 
-#: ../../mod/delegate.php:132
-msgid "No entries."
-msgstr "没有项目。"
+#: ../../include/conversation.php:963 ../../include/conversation.php:981
+msgid "Where are you right now?"
+msgstr "你在哪里?"
 
-#: ../../mod/babel.php:17
-msgid "Source (bbcode) text:"
-msgstr "æº\90代ç \81ï¼\88bbcodeï¼\89æ­£æ\96\87"
+#: ../../include/conversation.php:964
+msgid "Delete item(s)?"
+msgstr "æ\8a\8a项ç\9b®å\88 é\99¤å\90\97ï¼\9f"
 
-#: ../../mod/babel.php:23
-msgid "Source (Diaspora) text to convert to BBcode:"
-msgstr "源代(Diaspora)正文要翻译成BBCode:"
+#: ../../include/conversation.php:1006
+msgid "Post to Email"
+msgstr "电邮发布"
 
-#: ../../mod/babel.php:31
-msgid "Source input: "
-msgstr "源代码输入:"
+#: ../../include/conversation.php:1041 ../../mod/photos.php:1531
+msgid "Share"
+msgstr "分享"
 
-#: ../../mod/babel.php:35
-msgid "bb2html (raw HTML): "
-msgstr "bb2html(生HTML): "
+#: ../../include/conversation.php:1042 ../../mod/editpost.php:110
+#: ../../mod/wallmessage.php:154 ../../mod/message.php:332
+#: ../../mod/message.php:562
+msgid "Upload photo"
+msgstr "上传照片"
 
-#: ../../mod/babel.php:39
-msgid "bb2html: "
-msgstr "bb2html:"
+#: ../../include/conversation.php:1043 ../../mod/editpost.php:111
+msgid "upload photo"
+msgstr "上传照片"
 
-#: ../../mod/babel.php:43
-msgid "bb2html2bb: "
-msgstr "bb2html2bb:"
+#: ../../include/conversation.php:1044 ../../mod/editpost.php:112
+msgid "Attach file"
+msgstr "附上文件"
 
-#: ../../mod/babel.php:47
-msgid "bb2md: "
-msgstr "bb2md:"
+#: ../../include/conversation.php:1045 ../../mod/editpost.php:113
+msgid "attach file"
+msgstr "附上文件"
 
-#: ../../mod/babel.php:51
-msgid "bb2md2html: "
-msgstr "bb2md2html:"
+#: ../../include/conversation.php:1046 ../../mod/editpost.php:114
+#: ../../mod/wallmessage.php:155 ../../mod/message.php:333
+#: ../../mod/message.php:563
+msgid "Insert web link"
+msgstr "插入网页环节"
 
-#: ../../mod/babel.php:55
-msgid "bb2dia2bb: "
-msgstr "bb2dia2bb:"
+#: ../../include/conversation.php:1047 ../../mod/editpost.php:115
+msgid "web link"
+msgstr "网页环节"
 
-#: ../../mod/babel.php:59
-msgid "bb2md2html2bb: "
-msgstr "bb2md2html2bb:"
+#: ../../include/conversation.php:1048 ../../mod/editpost.php:116
+msgid "Insert video link"
+msgstr "插入视频环节"
 
-#: ../../mod/babel.php:69
-msgid "Source input (Diaspora format): "
-msgstr "源代输入(Diaspora形式):"
+#: ../../include/conversation.php:1049 ../../mod/editpost.php:117
+msgid "video link"
+msgstr "视频环节"
 
-#: ../../mod/babel.php:74
-msgid "diaspora2bb: "
-msgstr "diaspora2bb: "
+#: ../../include/conversation.php:1050 ../../mod/editpost.php:118
+msgid "Insert audio link"
+msgstr "插入录音环节"
 
-#: ../../mod/suggest.php:27
-msgid "Do you really want to delete this suggestion?"
-msgstr "您真的想删除这个建议吗?"
+#: ../../include/conversation.php:1051 ../../mod/editpost.php:119
+msgid "audio link"
+msgstr "录音环节"
 
-#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520
-#: ../../include/contact_widgets.php:34
-msgid "Friend Suggestions"
-msgstr "友谊建议"
+#: ../../include/conversation.php:1052 ../../mod/editpost.php:120
+msgid "Set your location"
+msgstr "设定您的位置"
 
-#: ../../mod/suggest.php:72
-msgid ""
-"No suggestions available. If this is a new site, please try again in 24 "
-"hours."
-msgstr "没有建议。如果这是新网站,请24小时后再试。"
+#: ../../include/conversation.php:1053 ../../mod/editpost.php:121
+msgid "set location"
+msgstr "指定位置"
 
-#: ../../mod/suggest.php:90
-msgid "Ignore/Hide"
-msgstr "不理/隐藏"
+#: ../../include/conversation.php:1054 ../../mod/editpost.php:122
+msgid "Clear browser location"
+msgstr "清空浏览器位置"
 
-#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
-#: ../../view/theme/diabook/theme.php:518
-msgid "Global Directory"
-msgstr "综合目录"
+#: ../../include/conversation.php:1055 ../../mod/editpost.php:123
+msgid "clear location"
+msgstr "清理出位置"
 
-#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79
-msgid "Find on this site"
-msgstr "æ\89¾å\9c¨è¿\99ç½\91ç«\99"
+#: ../../include/conversation.php:1057 ../../mod/editpost.php:137
+msgid "Set title"
+msgstr "æ\8c\87å®\9aæ \87é¢\98"
 
-#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82
-msgid "Site Directory"
-msgstr "ç½\91ç«\99ç\9b®å½\95"
+#: ../../include/conversation.php:1059 ../../mod/editpost.php:139
+msgid "Categories (comma-separated list)"
+msgstr "ç§\8dç±»ï¼\88é\80\97å\8f·å\88\86é\9a\94å\8d\95ï¼\89"
 
-#: ../../mod/directory.php:114
-#: ../../addon/forumdirectory/forumdirectory.php:136
-msgid "Gender: "
-msgstr "性别:"
+#: ../../include/conversation.php:1061 ../../mod/editpost.php:125
+msgid "Permission settings"
+msgstr "权设置"
 
-#: ../../mod/directory.php:136
-#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../boot.php:1381
-msgid "Gender:"
-msgstr "性别:"
+#: ../../include/conversation.php:1062
+msgid "permissions"
+msgstr "权利"
 
-#: ../../mod/directory.php:138
-#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../boot.php:1384
-msgid "Status:"
-msgstr "现状:"
+#: ../../include/conversation.php:1070 ../../mod/editpost.php:133
+msgid "CC: email addresses"
+msgstr "抄送: 电子邮件地址"
 
-#: ../../mod/directory.php:140
-#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../boot.php:1386
-msgid "Homepage:"
-msgstr "主页:"
+#: ../../include/conversation.php:1071 ../../mod/editpost.php:134
+msgid "Public post"
+msgstr "公开的消息"
 
-#: ../../mod/directory.php:142
-#: ../../addon/forumdirectory/forumdirectory.php:164
-#: ../../include/profile_advanced.php:58
-msgid "About:"
-msgstr "关于:"
+#: ../../include/conversation.php:1073 ../../mod/editpost.php:140
+msgid "Example: bob@example.com, mary@example.com"
+msgstr "比如: li@example.com, wang@example.com"
 
-#: ../../mod/directory.php:187
-#: ../../addon/forumdirectory/forumdirectory.php:201
-msgid "No entries (some entries may be hidden)."
-msgstr "没有文章(有的文章会被隐藏)。"
+#: ../../include/conversation.php:1077 ../../mod/editpost.php:145
+#: ../../mod/photos.php:1553 ../../mod/photos.php:1597
+#: ../../mod/photos.php:1680 ../../mod/content.php:742
+#: ../../object/Item.php:652
+msgid "Preview"
+msgstr "预演"
 
-#: ../../mod/invite.php:27
-msgid "Total invitation limit exceeded."
-msgstr "邀请限超过了。"
+#: ../../include/conversation.php:1086
+msgid "Post to Groups"
+msgstr "发到组"
 
-#: ../../mod/invite.php:49
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s : 不是效的电子邮件地址."
+#: ../../include/conversation.php:1087
+msgid "Post to Contacts"
+msgstr "发到熟人"
 
-#: ../../mod/invite.php:73
-msgid "Please join us on Friendica"
-msgstr "请加入我们再Friendica"
+#: ../../include/conversation.php:1088
+msgid "Private post"
+msgstr "私人文章"
 
-#: ../../mod/invite.php:84
-msgid "Invitation limit exceeded. Please contact your site administrator."
-msgstr "邀请限超过了。请联系您的网站管理员。"
+#: ../../include/message.php:15 ../../include/message.php:172
+msgid "[no subject]"
+msgstr "[无题目]"
 
-#: ../../mod/invite.php:89
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s : 送消息失败了。"
+#: ../../include/message.php:144 ../../mod/item.php:443
+#: ../../mod/wall_upload.php:135 ../../mod/wall_upload.php:144
+#: ../../mod/wall_upload.php:151
+msgid "Wall Photos"
+msgstr "墙照片"
 
-#: ../../mod/invite.php:93
-#, php-format
-msgid "%d message sent."
-msgid_plural "%d messages sent."
-msgstr[0] "%d消息传送了。"
+#: ../../include/nav.php:34 ../../mod/navigation.php:20
+msgid "Nothing new here"
+msgstr "这里没有什么新的"
 
-#: ../../mod/invite.php:112
-msgid "You have no more invitations available"
-msgstr "æ\82¨æ²¡æ\9c\89å\88«ç\9a\84é\82\80请"
+#: ../../include/nav.php:38 ../../mod/navigation.php:24
+msgid "Clear notifications"
+msgstr "æ¸\85ç\90\86å\87ºé\80\9aç\9f¥"
 
-#: ../../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成员在别的网站都会互相连接,再跟很多别的社会网络。"
+#: ../../include/nav.php:73 ../../boot.php:1057
+msgid "Logout"
+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 "为接受这个邀请,请再%s或什么别的Friendica网站注册。"
+#: ../../include/nav.php:73
+msgid "End this session"
+msgstr "结束这段时间"
 
-#: ../../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网站。"
+#: ../../include/nav.php:76 ../../boot.php:1861
+msgid "Status"
+msgstr "现状"
 
-#: ../../mod/invite.php:126
-msgid ""
-"Our apologies. This system is not currently configured to connect with other"
-" public sites or invite members."
-msgstr "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"
+#: ../../include/nav.php:76 ../../include/nav.php:143
+#: ../../view/theme/diabook/theme.php:87
+msgid "Your posts and conversations"
+msgstr "你的消息和交谈"
 
-#: ../../mod/invite.php:132
-msgid "Send invitations"
-msgstr "发请柬"
+#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88
+msgid "Your profile page"
+msgstr "你的简介页"
 
-#: ../../mod/invite.php:133
-msgid "Enter email addresses, one per line:"
-msgstr "输入电子邮件地址,一行一个:"
+#: ../../include/nav.php:78 ../../mod/fbrowser.php:25
+#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875
+msgid "Photos"
+msgstr "照片"
 
-#: ../../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加入-和帮助我们造成更好的社会网络。"
+#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90
+msgid "Your photos"
+msgstr "你的照片"
 
-#: ../../mod/invite.php:137
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "您要输入这个邀请密码:$invite_code"
+#: ../../include/nav.php:79 ../../mod/events.php:370
+#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885
+msgid "Events"
+msgstr "事件"
 
-#: ../../mod/invite.php:137
-msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr "您一注册,请页跟我连接,用我的简介在:"
+#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91
+msgid "Your events"
+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"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Personal notes"
+msgstr "私人的便条"
 
-#: ../../mod/dfrn_confirm.php:119
-msgid ""
-"This may occasionally happen if contact was requested by both persons and it"
-" has already been approved."
-msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。"
-
-#: ../../mod/dfrn_confirm.php:237
-msgid "Response from remote site was not understood."
-msgstr "遥网站的回答明白不了。"
+#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92
+msgid "Your personal photos"
+msgstr "你私人的照片"
 
-#: ../../mod/dfrn_confirm.php:246
-msgid "Unexpected response from remote site: "
-msgstr "居然回答从遥网站:"
+#: ../../include/nav.php:91
+msgid "Sign in"
+msgstr "登记"
 
-#: ../../mod/dfrn_confirm.php:254
-msgid "Confirmation completed successfully."
-msgstr "确认成功完成。"
+#: ../../include/nav.php:104 ../../include/nav.php:143
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+msgid "Home"
+msgstr "主页"
 
-#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
-#: ../../mod/dfrn_confirm.php:277
-msgid "Remote site reported: "
-msgstr "遥网站报案:"
+#: ../../include/nav.php:104
+msgid "Home Page"
+msgstr "主页"
 
-#: ../../mod/dfrn_confirm.php:268
-msgid "Temporary failure. Please wait and try again."
-msgstr "临时失败。请等一会,再试。"
+#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033
+msgid "Register"
+msgstr "注册"
 
-#: ../../mod/dfrn_confirm.php:275
-msgid "Introduction failed or was revoked."
-msgstr "介绍失败或被吊销。"
+#: ../../include/nav.php:108
+msgid "Create an account"
+msgstr "注册"
 
-#: ../../mod/dfrn_confirm.php:420
-msgid "Unable to set contact photo."
-msgstr "不会指定熟人照片。"
+#: ../../include/nav.php:113
+msgid "Help and documentation"
+msgstr "帮助证件"
 
-#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621
-#: ../../include/conversation.php:172
-#, php-format
-msgid "%1$s is now friends with %2$s"
-msgstr "%1$s是成为%2$s的朋友"
+#: ../../include/nav.php:116
+msgid "Apps"
+msgstr "应用程序"
 
-#: ../../mod/dfrn_confirm.php:562
-#, php-format
-msgid "No user record found for '%s' "
-msgstr "找不到「%s」的用户记录"
+#: ../../include/nav.php:116
+msgid "Addon applications, utilities, games"
+msgstr "可加的应用,设施,游戏"
 
-#: ../../mod/dfrn_confirm.php:572
-msgid "Our site encryption key is apparently messed up."
-msgstr "看起来我们的加密钥匙失灵了。"
+#: ../../include/nav.php:118
+msgid "Search site content"
+msgstr "搜索网站内容"
 
-#: ../../mod/dfrn_confirm.php:583
-msgid "Empty site URL was provided or URL could not be decrypted by us."
-msgstr "空的URL供应,或URL解不了码。"
+#: ../../include/nav.php:128 ../../mod/community.php:32
+#: ../../view/theme/diabook/theme.php:93
+msgid "Community"
+msgstr "社会"
 
-#: ../../mod/dfrn_confirm.php:604
-msgid "Contact record was not found for you on our site."
-msgstr "熟人记录在我们的网站找不了。"
+#: ../../include/nav.php:128
+msgid "Conversations on this site"
+msgstr "这个网站的交谈"
 
-#: ../../mod/dfrn_confirm.php:618
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
-msgstr "没有网站公开钥匙在熟人记录在URL%s。"
+#: ../../include/nav.php:130
+msgid "Directory"
+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."
-msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。"
+#: ../../include/nav.php:130
+msgid "People directory"
+msgstr "人物名录"
 
-#: ../../mod/dfrn_confirm.php:649
-msgid "Unable to set your contact credentials on our system."
-msgstr "不能创作您的熟人证件在我们的系统。"
+#: ../../include/nav.php:140 ../../mod/notifications.php:83
+msgid "Network"
+msgstr "网络"
 
-#: ../../mod/dfrn_confirm.php:716
-msgid "Unable to update your contact profile details on our system"
-msgstr "ä¸\8dè\83½æ\9b´æ\96°æ\82¨ç\9a\84ç\86\9f人ç®\80ä»\8bæ¶\88æ\81¯å\9c¨æ\88\91们ç\9a\84ç³»ç»\9f"
+#: ../../include/nav.php:140
+msgid "Conversations from your friends"
+msgstr "ä»\8eä½ æ\9c\8bå\8f\8b们ç\9a\84交è°\88"
 
-#: ../../mod/dfrn_confirm.php:751
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "联络接受了在%s"
+#: ../../include/nav.php:141
+msgid "Network Reset"
+msgstr "网络重设"
 
-#: ../../mod/dfrn_confirm.php:800
-#, php-format
-msgid "%1$s has joined %2$s"
-msgstr "%1$s加入%2$s了"
+#: ../../include/nav.php:141
+msgid "Load Network page with no filters"
+msgstr "表示网络页无滤器"
 
-#: ../../addon/fromgplus/fromgplus.php:33
-#: ../../addon.old/fromgplus/fromgplus.php:29
-msgid "Google+ Import Settings"
-msgstr "Google+进口设置"
+#: ../../include/nav.php:149 ../../mod/notifications.php:98
+msgid "Introductions"
+msgstr "介绍"
 
-#: ../../addon/fromgplus/fromgplus.php:36
-#: ../../addon.old/fromgplus/fromgplus.php:32
-msgid "Enable Google+ Import"
-msgstr "使Google+进口可用"
+#: ../../include/nav.php:149
+msgid "Friend Requests"
+msgstr "友谊邀请"
 
-#: ../../addon/fromgplus/fromgplus.php:39
-#: ../../addon.old/fromgplus/fromgplus.php:35
-msgid "Google Account ID"
-msgstr "Google+用户名"
+#: ../../include/nav.php:150 ../../mod/notifications.php:220
+msgid "Notifications"
+msgstr "通知"
 
-#: ../../addon/fromgplus/fromgplus.php:59
-#: ../../addon.old/fromgplus/fromgplus.php:55
-msgid "Google+ Import Settings saved."
-msgstr "把Google+进口设置保存了"
+#: ../../include/nav.php:151
+msgid "See all notifications"
+msgstr "看所有的通知"
 
-#: ../../addon/facebook/facebook.php:525
-#: ../../addon.old/facebook/facebook.php:523
-msgid "Facebook disabled"
-msgstr "Facebook废"
+#: ../../include/nav.php:152
+msgid "Mark all system notifications seen"
+msgstr "记号各系统通知看过的"
 
-#: ../../addon/facebook/facebook.php:530
-#: ../../addon.old/facebook/facebook.php:528
-msgid "Updating contacts"
-msgstr "æ­£æ\89\8dæ\9b´æ\96°ç\86\9f人"
+#: ../../include/nav.php:156 ../../mod/message.php:182
+#: ../../mod/notifications.php:103
+msgid "Messages"
+msgstr "æ\88æ\81¯"
 
-#: ../../addon/facebook/facebook.php:553 ../../addon/fbpost/fbpost.php:203
-#: ../../addon.old/facebook/facebook.php:551
-#: ../../addon.old/fbpost/fbpost.php:192
-msgid "Facebook API key is missing."
-msgstr "Facebook API钥匙失踪的。"
+#: ../../include/nav.php:156
+msgid "Private mail"
+msgstr "私人的邮件"
 
-#: ../../addon/facebook/facebook.php:560
-#: ../../addon.old/facebook/facebook.php:558
-msgid "Facebook Connect"
-msgstr "Facebook联络"
+#: ../../include/nav.php:157
+msgid "Inbox"
+msgstr "收件箱"
 
-#: ../../addon/facebook/facebook.php:566
-#: ../../addon.old/facebook/facebook.php:564
-msgid "Install Facebook connector for this account."
-msgstr "安装Facebook连接器为这个账户。"
+#: ../../include/nav.php:158
+msgid "Outbox"
+msgstr "发件箱"
 
-#: ../../addon/facebook/facebook.php:573
-#: ../../addon.old/facebook/facebook.php:571
-msgid "Remove Facebook connector"
-msgstr "删除Facebook连接器"
+#: ../../include/nav.php:159 ../../mod/message.php:9
+msgid "New Message"
+msgstr "新的消息"
 
-#: ../../addon/facebook/facebook.php:578 ../../addon/fbpost/fbpost.php:228
-#: ../../addon.old/facebook/facebook.php:576
-#: ../../addon.old/fbpost/fbpost.php:217
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
-msgstr "复认证[这是必要的每当您Facebook密码变化了]"
+#: ../../include/nav.php:162
+msgid "Manage"
+msgstr "代用户"
 
-#: ../../addon/facebook/facebook.php:585 ../../addon/fbpost/fbpost.php:235
-#: ../../addon.old/facebook/facebook.php:583
-#: ../../addon.old/fbpost/fbpost.php:224
-msgid "Post to Facebook by default"
-msgstr "默认地放在Facebook"
+#: ../../include/nav.php:162
+msgid "Manage other pages"
+msgstr "管理别的页"
 
-#: ../../addon/facebook/facebook.php:591
-#: ../../addon.old/facebook/facebook.php:589
-msgid ""
-"Facebook friend linking has been disabled on this site. The following "
-"settings will have no effect."
-msgstr "这个网站使Facebook朋友环节不能用。这下的设置没有印象。"
+#: ../../include/nav.php:165
+msgid "Delegations"
+msgstr "代表"
 
-#: ../../addon/facebook/facebook.php:595
-#: ../../addon.old/facebook/facebook.php:593
-msgid ""
-"Facebook friend linking has been disabled on this site. If you disable it, "
-"you will be unable to re-enable it."
-msgstr "这个网站使Facebook朋友环节不能用。假如那样的话您不会再使可用的。"
+#: ../../include/nav.php:165 ../../mod/delegate.php:121
+msgid "Delegate Page Management"
+msgstr "页代表管理"
 
-#: ../../addon/facebook/facebook.php:598
-#: ../../addon.old/facebook/facebook.php:596
-msgid "Link all your Facebook friends and conversations on this website"
-msgstr "连接您所有的Facebook朋友们和交流在这个网站"
+#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9
+msgid "Account settings"
+msgstr "帐户配置"
 
-#: ../../addon/facebook/facebook.php:600
-#: ../../addon.old/facebook/facebook.php:598
-msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend"
-" <em>stream</em>."
-msgstr "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 "
+#: ../../include/nav.php:169 ../../boot.php:1360
+msgid "Profiles"
+msgstr "简介"
 
-#: ../../addon/facebook/facebook.php:601
-#: ../../addon.old/facebook/facebook.php:599
-msgid "On this website, your Facebook friend stream is only visible to you."
-msgstr "在这个网站,您Facebook朋友溪流是只您可见的。"
+#: ../../include/nav.php:169
+msgid "Manage/Edit Profiles"
+msgstr "管理/编辑简介"
 
-#: ../../addon/facebook/facebook.php:602
-#: ../../addon.old/facebook/facebook.php:600
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
-msgstr "下面的设置决定您在这个网站Facebook简介墙的隐私。"
+#: ../../include/nav.php:171 ../../mod/contacts.php:607
+#: ../../view/theme/diabook/theme.php:89
+msgid "Contacts"
+msgstr "熟人"
 
-#: ../../addon/facebook/facebook.php:606
-#: ../../addon.old/facebook/facebook.php:604
-msgid ""
-"On this website your Facebook profile wall conversations will only be "
-"visible to you"
-msgstr "在这个网站您Facebook简介墙交流是只您可见的。"
+#: ../../include/nav.php:171
+msgid "Manage/edit friends and contacts"
+msgstr "管理/编朋友们和熟人们"
 
-#: ../../addon/facebook/facebook.php:611
-#: ../../addon.old/facebook/facebook.php:609
-msgid "Do not import your Facebook profile wall conversations"
-msgstr "别进口您Facebook简介墙交流"
+#: ../../include/nav.php:178 ../../mod/admin.php:120
+msgid "Admin"
+msgstr "管理"
 
-#: ../../addon/facebook/facebook.php:613
-#: ../../addon.old/facebook/facebook.php:611
-msgid ""
-"If you choose to link conversations and leave both of these boxes unchecked,"
-" your Facebook profile wall will be merged with your profile wall on this "
-"website and your privacy settings on this website will be used to determine "
-"who may see the conversations."
-msgstr "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。"
+#: ../../include/nav.php:178
+msgid "Site setup and configuration"
+msgstr "网站开办和配置"
 
-#: ../../addon/facebook/facebook.php:618
-#: ../../addon.old/facebook/facebook.php:616
-msgid "Comma separated applications to ignore"
-msgstr "逗号分开的应用要不理"
+#: ../../include/nav.php:182
+msgid "Navigation"
+msgstr "航行"
 
-#: ../../addon/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:700
-msgid "Problems with Facebook Real-Time Updates"
-msgstr "Facebook实时更新有问题"
+#: ../../include/nav.php:182
+msgid "Site map"
+msgstr "网站地图"
 
-#: ../../addon/facebook/facebook.php:704
-#: ../../addon/facebook/facebook.php:1202 ../../addon/fbpost/fbpost.php:821
-#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67
-#: ../../addon.old/facebook/facebook.php:702
-#: ../../addon.old/facebook/facebook.php:1200
-#: ../../addon.old/fbpost/fbpost.php:661
-#: ../../addon.old/public_server/public_server.php:62
-#: ../../addon.old/testdrive/testdrive.php:67
-msgid "Administrator"
-msgstr "管理员"
+#: ../../include/network.php:875
+msgid "view full size"
+msgstr "看全尺寸"
 
-#: ../../addon/facebook/facebook.php:731
-#: ../../addon.old/facebook/facebook.php:729
-msgid "Facebook Connector Settings"
-msgstr "Facebook连接器设置"
+#: ../../include/oembed.php:138
+msgid "Embedded content"
+msgstr "嵌入内容"
 
-#: ../../addon/facebook/facebook.php:746 ../../addon/fbpost/fbpost.php:310
-#: ../../addon.old/facebook/facebook.php:744
-#: ../../addon.old/fbpost/fbpost.php:255
-msgid "Facebook API Key"
-msgstr "Facebook API密码"
+#: ../../include/oembed.php:147
+msgid "Embedding disabled"
+msgstr "嵌入不能用"
 
-#: ../../addon/facebook/facebook.php:756 ../../addon/fbpost/fbpost.php:317
-#: ../../addon.old/facebook/facebook.php:754
-#: ../../addon.old/fbpost/fbpost.php:262
-msgid ""
-"Error: it appears that you have specified the App-ID and -Secret in your "
-".htconfig.php file. As long as they are specified there, they cannot be set "
-"using this form.<br><br>"
-msgstr "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。<br><br>"
+#: ../../include/security.php:22
+msgid "Welcome "
+msgstr "欢迎"
 
-#: ../../addon/facebook/facebook.php:761
-#: ../../addon.old/facebook/facebook.php:759
-msgid ""
-"Error: the given API Key seems to be incorrect (the application access token"
-" could not be retrieved)."
-msgstr "错误:输入的API密码显得不对(取回不了应用代金券)。"
+#: ../../include/security.php:23
+msgid "Please upload a profile photo."
+msgstr "请上传一张简介照片"
 
-#: ../../addon/facebook/facebook.php:763
-#: ../../addon.old/facebook/facebook.php:761
-msgid "The given API Key seems to work correctly."
-msgstr "输入的API密码显得对地运行。"
+#: ../../include/security.php:26
+msgid "Welcome back "
+msgstr "欢迎归来"
 
-#: ../../addon/facebook/facebook.php:765
-#: ../../addon.old/facebook/facebook.php:763
+#: ../../include/security.php:366
 msgid ""
-"The correctness of the API Key could not be detected. Something strange's "
-"going on."
-msgstr "API钥匙的正确性发现不了。什么奇怪的进行"
+"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 "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。"
 
-#: ../../addon/facebook/facebook.php:768 ../../addon/fbpost/fbpost.php:319
-#: ../../addon.old/facebook/facebook.php:766
-#: ../../addon.old/fbpost/fbpost.php:264
-msgid "App-ID / API-Key"
-msgstr "App-ID / API-Key"
+#: ../../mod/profiles.php:18 ../../mod/profiles.php:133
+#: ../../mod/profiles.php:160 ../../mod/profiles.php:579
+#: ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
+msgstr "找不到简介。"
 
-#: ../../addon/facebook/facebook.php:769 ../../addon/fbpost/fbpost.php:320
-#: ../../addon.old/facebook/facebook.php:767
-#: ../../addon.old/fbpost/fbpost.php:265
-msgid "Application secret"
-msgstr "应用密码"
+#: ../../mod/profiles.php:37
+msgid "Profile deleted."
+msgstr "简介删除了。"
 
-#: ../../addon/facebook/facebook.php:770
-#: ../../addon.old/facebook/facebook.php:768
-#, php-format
-msgid "Polling Interval in minutes (minimum %1$s minutes)"
-msgstr "核实间隔分钟(最少%1$s分钟)"
+#: ../../mod/profiles.php:55 ../../mod/profiles.php:89
+msgid "Profile-"
+msgstr "简介-"
 
-#: ../../addon/facebook/facebook.php:771
-#: ../../addon.old/facebook/facebook.php:769
-msgid ""
-"Synchronize comments (no comments on Facebook are missed, at the cost of "
-"increased system load)"
-msgstr "同步评论(无Facebook评论错过了,代价增添系统工作量)"
+#: ../../mod/profiles.php:74 ../../mod/profiles.php:117
+msgid "New profile created."
+msgstr "创造新的简介"
 
-#: ../../addon/facebook/facebook.php:775
-#: ../../addon.old/facebook/facebook.php:773
-msgid "Real-Time Updates"
-msgstr "实时更新"
+#: ../../mod/profiles.php:95
+msgid "Profile unavailable to clone."
+msgstr "简介不可用为复制。"
 
-#: ../../addon/facebook/facebook.php:779
-#: ../../addon.old/facebook/facebook.php:777
-msgid "Real-Time Updates are activated."
-msgstr "实时更新使活动"
+#: ../../mod/profiles.php:170
+msgid "Profile Name is required."
+msgstr "必要简介名"
 
-#: ../../addon/facebook/facebook.php:780
-#: ../../addon.old/facebook/facebook.php:778
-msgid "Deactivate Real-Time Updates"
-msgstr "使实时更新不活动"
+#: ../../mod/profiles.php:317
+msgid "Marital Status"
+msgstr "婚姻状况 "
 
-#: ../../addon/facebook/facebook.php:782
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Real-Time Updates not activated."
-msgstr "实时更新使不活动"
+#: ../../mod/profiles.php:321
+msgid "Romantic Partner"
+msgstr "情人"
 
-#: ../../addon/facebook/facebook.php:782
-#: ../../addon.old/facebook/facebook.php:780
-msgid "Activate Real-Time Updates"
-msgstr "使实时更新活动"
+#: ../../mod/profiles.php:325
+msgid "Likes"
+msgstr "喜欢"
 
-#: ../../addon/facebook/facebook.php:801 ../../addon/fbpost/fbpost.php:337
-#: ../../addon/dav/friendica/layout.fnk.php:361
-#: ../../addon.old/facebook/facebook.php:799
-#: ../../addon.old/fbpost/fbpost.php:282
-#: ../../addon.old/dav/friendica/layout.fnk.php:361
-msgid "The new values have been saved."
-msgstr "新的设置保存了。"
+#: ../../mod/profiles.php:329
+msgid "Dislikes"
+msgstr "不喜欢"
 
-#: ../../addon/facebook/facebook.php:825 ../../addon/fbpost/fbpost.php:356
-#: ../../addon.old/facebook/facebook.php:823
-#: ../../addon.old/fbpost/fbpost.php:301
-msgid "Post to Facebook"
-msgstr "放在Facebook"
+#: ../../mod/profiles.php:333
+msgid "Work/Employment"
+msgstr "工作"
 
-#: ../../addon/facebook/facebook.php:923 ../../addon/fbpost/fbpost.php:487
-#: ../../addon.old/facebook/facebook.php:921
-#: ../../addon.old/fbpost/fbpost.php:399
-msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr "发送到Facebook取消由于多网络准许矛盾。"
+#: ../../mod/profiles.php:336
+msgid "Religion"
+msgstr "宗教"
 
-#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766
-#: ../../addon.old/facebook/facebook.php:1149
-#: ../../addon.old/fbpost/fbpost.php:610
-msgid "View on Friendica"
-msgstr "看在Friendica"
+#: ../../mod/profiles.php:340
+msgid "Political Views"
+msgstr "政治观念"
 
-#: ../../addon/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803
-#: ../../addon.old/facebook/facebook.php:1182
-#: ../../addon.old/fbpost/fbpost.php:643
-msgid "Facebook post failed. Queued for retry."
-msgstr "Facebook发送失败了。排队着待再试。"
+#: ../../mod/profiles.php:344
+msgid "Gender"
+msgstr "性别"
 
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843
-#: ../../addon.old/facebook/facebook.php:1222
-#: ../../addon.old/fbpost/fbpost.php:683
-msgid "Your Facebook connection became invalid. Please Re-authenticate."
-msgstr "您Facebook联系成无效的。请再认证。"
+#: ../../mod/profiles.php:348
+msgid "Sexual Preference"
+msgstr "性取向"
 
-#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844
-#: ../../addon.old/facebook/facebook.php:1223
-#: ../../addon.old/fbpost/fbpost.php:684
-msgid "Facebook connection became invalid"
-msgstr "Facebook联系成无效的"
+#: ../../mod/profiles.php:352
+msgid "Homepage"
+msgstr "主页"
 
-#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845
-#: ../../addon.old/facebook/facebook.php:1224
-#: ../../addon.old/fbpost/fbpost.php:685
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"The connection between your accounts on %2$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3$sre-authenticate the Facebook-connector%4$s."
-msgstr "你好%1$s,⏎ ⏎ 您账户在%2$s和Facebook的接通无效了。平时这是因为您把密码改变了。为使接通再可用,您要%3$s再认证Facebook连接器%4$s。"
+#: ../../mod/profiles.php:356
+msgid "Interests"
+msgstr "兴趣"
 
-#: ../../addon/snautofollow/snautofollow.php:32
-#: ../../addon.old/snautofollow/snautofollow.php:32
-msgid "StatusNet AutoFollow settings updated."
-msgstr "StatusNet自动关注设置更新了。"
+#: ../../mod/profiles.php:360
+msgid "Address"
+msgstr "地址"
 
-#: ../../addon/snautofollow/snautofollow.php:56
-#: ../../addon.old/snautofollow/snautofollow.php:56
-msgid "StatusNet AutoFollow Settings"
-msgstr "StatusNet自动关注设置"
+#: ../../mod/profiles.php:450
+msgid "Profile updated."
+msgstr "简介更新了。"
 
-#: ../../addon/snautofollow/snautofollow.php:58
-#: ../../addon.old/snautofollow/snautofollow.php:58
-msgid "Automatically follow any StatusNet followers/mentioners"
-msgstr "自动关注所有的StatusGet关注者/提及"
+#: ../../mod/profiles.php:517
+msgid " and "
+msgstr "和"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
-msgid "Lifetime of the cache (in hours)"
-msgstr "缓存期(小时)"
+#: ../../mod/profiles.php:525
+msgid "public profile"
+msgstr "公开简介"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:356
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
-msgid "Cache Statistics"
-msgstr "缓存统计"
+#: ../../mod/profiles.php:528
+#, php-format
+msgid "%1$s changed %2$s to &ldquo;%3$s&rdquo;"
+msgstr "%1$s把%2$s变化成&ldquo;%3$s&rdquo;"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:359
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
-msgid "Number of items"
-msgstr "项目数量"
+#: ../../mod/profiles.php:529
+#, php-format
+msgid " - Visit %1$s's %2$s"
+msgstr " - 看 %1$s的%2$s"
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:361
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
-msgid "Size of the cache"
-msgstr "缓存尺寸"
+#: ../../mod/profiles.php:532
+#, php-format
+msgid "%1$s has an updated %2$s, changing %3$s."
+msgstr "%1$s有更新的%2$s,修改%3$s."
 
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:363
-#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
-msgid "Delete the whole cache"
-msgstr "删除全缓存"
+#: ../../mod/profiles.php:605
+msgid "Hide your contact/friend list from viewers of this profile?"
+msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?"
 
-#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172
-msgid "Facebook Post disabled"
-msgstr "使Facebook文章不可用的"
+#: ../../mod/profiles.php:607 ../../mod/api.php:106 ../../mod/register.php:240
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/dfrn_request.php:837
+msgid "No"
+msgstr "否"
 
-#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199
-msgid "Facebook Post"
-msgstr "Facebook文章"
+#: ../../mod/profiles.php:625
+msgid "Edit Profile Details"
+msgstr "剪辑简介消息"
 
-#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205
-msgid "Install Facebook Post connector for this account."
-msgstr "安装Facebook文章连接器为这个账户"
+#: ../../mod/profiles.php:627
+msgid "Change Profile Photo"
+msgstr "改变简介照片"
 
-#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212
-msgid "Remove Facebook Post connector"
-msgstr "把Facebook文章连接器删除"
+#: ../../mod/profiles.php:628
+msgid "View this profile"
+msgstr "看这个简介"
 
-#: ../../addon/fbpost/fbpost.php:239
-msgid "Suppress \"View on friendica\""
-msgstr "禁止「看在Friendica」"
+#: ../../mod/profiles.php:629
+msgid "Create a new profile using these settings"
+msgstr "造成新的简介用这些设置"
 
-#: ../../addon/fbpost/fbpost.php:243
-msgid "Mirror wall posts from facebook to friendica."
-msgstr "复制墙文章从facebook到friendica。"
+#: ../../mod/profiles.php:630
+msgid "Clone this profile"
+msgstr "复制这个简介"
 
-#: ../../addon/fbpost/fbpost.php:253
-msgid "Post to page/group:"
-msgstr "放在页/组:"
+#: ../../mod/profiles.php:631
+msgid "Delete this profile"
+msgstr "删除这个简介"
 
-#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240
-msgid "Facebook Post Settings"
-msgstr "Facebook文章设置"
+#: ../../mod/profiles.php:632
+msgid "Profile Name:"
+msgstr "简介名:"
 
-#: ../../addon/fbpost/fbpost.php:375
-#, php-format
-msgid "%s:"
-msgstr "%s:"
+#: ../../mod/profiles.php:633
+msgid "Your Full Name:"
+msgstr "你的全名:"
 
-#: ../../addon/widgets/widget_like.php:59
-#: ../../addon.old/widgets/widget_like.php:58
-#, php-format
-msgid "%d person likes this"
-msgid_plural "%d people like this"
-msgstr[0] "%d人喜欢这个"
+#: ../../mod/profiles.php:634
+msgid "Title/Description:"
+msgstr "标题/描述:"
 
-#: ../../addon/widgets/widget_like.php:62
-#: ../../addon.old/widgets/widget_like.php:61
+#: ../../mod/profiles.php:635
+msgid "Your Gender:"
+msgstr "你的性:"
+
+#: ../../mod/profiles.php:636
 #, php-format
-msgid "%d person doesn't like this"
-msgid_plural "%d people don't like this"
-msgstr[0] "%d人不喜欢这个"
+msgid "Birthday (%s):"
+msgstr "生日(%s):"
 
-#: ../../addon/widgets/widget_friendheader.php:40
-#: ../../addon.old/widgets/widget_friendheader.php:40
-msgid "Get added to this list!"
-msgstr "被在这个单子加入!"
+#: ../../mod/profiles.php:637
+msgid "Street Address:"
+msgstr "地址:"
 
-#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56
-msgid "Generate new key"
-msgstr "造成新钥匙"
+#: ../../mod/profiles.php:638
+msgid "Locality/City:"
+msgstr "现场/城市:"
 
-#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59
-msgid "Widgets key"
-msgstr "小窗口钥匙"
+#: ../../mod/profiles.php:639
+msgid "Postal/Zip Code:"
+msgstr "邮政编码:"
 
-#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61
-msgid "Widgets available"
-msgstr "å\8f¯ç\94¨ç\9a\84å°\8fçª\97å\8f£"
+#: ../../mod/profiles.php:640
+msgid "Country:"
+msgstr "å\9b½å®¶ï¼\9a"
 
-#: ../../addon/widgets/widget_friends.php:40
-#: ../../addon.old/widgets/widget_friends.php:40
-msgid "Connect on Friendica!"
-msgstr "连接在Friendica!"
+#: ../../mod/profiles.php:641
+msgid "Region/State:"
+msgstr "区域/省"
 
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslap"
-msgstr "恶毒掌击"
+#: ../../mod/profiles.php:642
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span>婚姻状况:"
 
-#: ../../addon/morepokes/morepokes.php:19
-#: ../../addon.old/morepokes/morepokes.php:19
-msgid "bitchslapped"
-msgstr "恶毒掌击了"
+#: ../../mod/profiles.php:643
+msgid "Who: (if applicable)"
+msgstr "谁:(要是使用)"
 
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shag"
-msgstr "肏"
+#: ../../mod/profiles.php:644
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "比如:limou,李某,limou@example。com"
 
-#: ../../addon/morepokes/morepokes.php:20
-#: ../../addon.old/morepokes/morepokes.php:20
-msgid "shagged"
-msgstr "肏了"
+#: ../../mod/profiles.php:645
+msgid "Since [date]:"
+msgstr "追溯[日期]:"
 
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "do something obscenely biological to"
-msgstr "做什么淫秽生物的于"
+#: ../../mod/profiles.php:647
+msgid "Homepage URL:"
+msgstr "主页URL:"
 
-#: ../../addon/morepokes/morepokes.php:21
-#: ../../addon.old/morepokes/morepokes.php:21
-msgid "did something obscenely biological to"
-msgstr "做了什么淫秽生物的于"
+#: ../../mod/profiles.php:650
+msgid "Religious Views:"
+msgstr " 宗教信仰 :"
 
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "point out the poke feature to"
-msgstr "把戳特点指给"
+#: ../../mod/profiles.php:651
+msgid "Public Keywords:"
+msgstr "公开关键字 :"
 
-#: ../../addon/morepokes/morepokes.php:22
-#: ../../addon.old/morepokes/morepokes.php:22
-msgid "pointed out the poke feature to"
-msgstr "把了戳特点指给"
+#: ../../mod/profiles.php:652
+msgid "Private Keywords:"
+msgstr "私人关键字"
 
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declare undying love for"
-msgstr "表明永远的爱情为"
+#: ../../mod/profiles.php:655
+msgid "Example: fishing photography software"
+msgstr "例如:钓鱼 照片 软件"
 
-#: ../../addon/morepokes/morepokes.php:23
-#: ../../addon.old/morepokes/morepokes.php:23
-msgid "declared undying love for"
-msgstr "表明了永远的爱情为"
+#: ../../mod/profiles.php:656
+msgid "(Used for suggesting potential friends, can be seen by others)"
+msgstr "(用于建议可能的朋友们,会被别人看)"
 
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patent"
-msgstr "专利"
+#: ../../mod/profiles.php:657
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(用于搜索简介,没有给别人看)"
 
-#: ../../addon/morepokes/morepokes.php:24
-#: ../../addon.old/morepokes/morepokes.php:24
-msgid "patented"
-msgstr "专利了"
+#: ../../mod/profiles.php:658
+msgid "Tell us about yourself..."
+msgstr "给我们自我介绍..."
 
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroke beard"
-msgstr "摸胡子"
+#: ../../mod/profiles.php:659
+msgid "Hobbies/Interests"
+msgstr "爱好/兴趣"
 
-#: ../../addon/morepokes/morepokes.php:25
-#: ../../addon.old/morepokes/morepokes.php:25
-msgid "stroked their beard at"
-msgstr "摸胡子了"
+#: ../../mod/profiles.php:660
+msgid "Contact information and Social Networks"
+msgstr "熟人信息和社会化网络"
 
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoan the declining standards of modern secondary and tertiary education to"
-msgstr "哀叹现代的二三等教育规格的衰退给"
+#: ../../mod/profiles.php:661
+msgid "Musical interests"
+msgstr "音乐兴趣"
 
-#: ../../addon/morepokes/morepokes.php:26
-#: ../../addon.old/morepokes/morepokes.php:26
-msgid ""
-"bemoans the declining standards of modern secondary and tertiary education "
-"to"
-msgstr "哀叹现代的二三等教育规格的衰退给"
+#: ../../mod/profiles.php:662
+msgid "Books, literature"
+msgstr "书,文学"
 
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hug"
-msgstr "拥抱"
+#: ../../mod/profiles.php:663
+msgid "Television"
+msgstr "电视"
 
-#: ../../addon/morepokes/morepokes.php:27
-#: ../../addon.old/morepokes/morepokes.php:27
-msgid "hugged"
-msgstr "拥抱了"
+#: ../../mod/profiles.php:664
+msgid "Film/dance/culture/entertainment"
+msgstr "电影/跳舞/文化/娱乐"
 
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kiss"
-msgstr "亲吻"
-
-#: ../../addon/morepokes/morepokes.php:28
-#: ../../addon.old/morepokes/morepokes.php:28
-msgid "kissed"
-msgstr "亲吻了"
+#: ../../mod/profiles.php:665
+msgid "Love/romance"
+msgstr "爱情/浪漫"
 
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raise eyebrows at"
-msgstr "举起眉毛于"
+#: ../../mod/profiles.php:666
+msgid "Work/employment"
+msgstr "工作"
 
-#: ../../addon/morepokes/morepokes.php:29
-#: ../../addon.old/morepokes/morepokes.php:29
-msgid "raised their eyebrows at"
-msgstr "举起了眉毛于"
+#: ../../mod/profiles.php:667
+msgid "School/education"
+msgstr "学院/教育"
 
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insult"
-msgstr "侮辱"
+#: ../../mod/profiles.php:672
+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>被所有的因特网用的看到。"
 
-#: ../../addon/morepokes/morepokes.php:30
-#: ../../addon.old/morepokes/morepokes.php:30
-msgid "insulted"
-msgstr "侮辱"
+#: ../../mod/profiles.php:721
+msgid "Edit/Manage Profiles"
+msgstr "编辑/管理简介"
 
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praise"
-msgstr "赞扬"
+#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392
+msgid "Change profile photo"
+msgstr "换简介照片"
 
-#: ../../addon/morepokes/morepokes.php:31
-#: ../../addon.old/morepokes/morepokes.php:31
-msgid "praised"
-msgstr "赞扬了"
+#: ../../mod/profiles.php:723 ../../boot.php:1367
+msgid "Create New Profile"
+msgstr "创造新的简介"
 
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "be dubious of"
-msgstr "怀疑"
+#: ../../mod/profiles.php:734 ../../boot.php:1377
+msgid "Profile Image"
+msgstr "简介图像"
 
-#: ../../addon/morepokes/morepokes.php:32
-#: ../../addon.old/morepokes/morepokes.php:32
-msgid "was dubious of"
-msgstr "怀疑了"
+#: ../../mod/profiles.php:736 ../../boot.php:1380
+msgid "visible to everybody"
+msgstr "给打假可见的"
 
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "eat"
-msgstr "吃"
+#: ../../mod/profiles.php:737 ../../boot.php:1381
+msgid "Edit visibility"
+msgstr "修改能见度"
 
-#: ../../addon/morepokes/morepokes.php:33
-#: ../../addon.old/morepokes/morepokes.php:33
-msgid "ate"
-msgstr "吃了"
+#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340
+msgid "Permission denied"
+msgstr "权限不够"
 
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggle and fawn at"
-msgstr "咯咯地笑和巴结为"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "无限的简介标识符。"
 
-#: ../../addon/morepokes/morepokes.php:34
-#: ../../addon.old/morepokes/morepokes.php:34
-msgid "giggled and fawned at"
-msgstr "咯咯地笑和巴结为了"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "简介能见度编辑器。"
 
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubt"
-msgstr "怀疑"
+#: ../../mod/profperm.php:105 ../../mod/group.php:224
+msgid "Click on a contact to add or remove."
+msgstr "点击熟人为添加或删除。"
 
-#: ../../addon/morepokes/morepokes.php:35
-#: ../../addon.old/morepokes/morepokes.php:35
-msgid "doubted"
-msgstr "怀疑了"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "能见被"
 
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glare"
-msgstr "瞪"
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "所有熟人(跟安全地简介使用权)"
 
-#: ../../addon/morepokes/morepokes.php:36
-#: ../../addon.old/morepokes/morepokes.php:36
-msgid "glared at"
-msgstr "瞪了"
+#: ../../mod/notes.php:44 ../../boot.php:1892
+msgid "Personal Notes"
+msgstr "私人便条"
 
-#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55
-msgid "YourLS Settings"
-msgstr "YourLS配置"
+#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395
+#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62
+#, php-format
+msgid "Visit %s's profile [%s]"
+msgstr "看%s的简介[%s]"
 
-#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57
-msgid "URL: http://"
-msgstr "URL: http://"
+#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586
+msgid "Edit contact"
+msgstr "编熟人"
 
-#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62
-msgid "Username:"
-msgstr "用户名:"
+#: ../../mod/nogroup.php:59
+msgid "Contacts who are not members of a group"
+msgstr "没当成员的熟人"
 
-#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67
-msgid "Password:"
-msgstr "密码:"
+#: ../../mod/ping.php:238
+msgid "{0} wants to be your friend"
+msgstr "{0}想成为您的朋友"
 
-#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72
-msgid "Use SSL "
-msgstr "用SSL"
+#: ../../mod/ping.php:243
+msgid "{0} sent you a message"
+msgstr "{0}发给您一个通信"
 
-#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92
-msgid "yourls Settings saved."
-msgstr "yourls配置保存了。"
+#: ../../mod/ping.php:248
+msgid "{0} requested registration"
+msgstr "{0}要求注册"
 
-#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39
-msgid "Post to LiveJournal"
-msgstr "转播到LiveJournal"
+#: ../../mod/ping.php:254
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0}对%s的文章发表意见"
 
-#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70
-msgid "LiveJournal Post Settings"
-msgstr "LiveJournal转播设置"
+#: ../../mod/ping.php:259
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "{0}喜欢%s的文章"
 
-#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72
-msgid "Enable LiveJournal Post Plugin"
-msgstr "使Livejournal转播插件可用"
+#: ../../mod/ping.php:264
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "{0}不喜欢%s的文章"
 
-#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77
-msgid "LiveJournal username"
-msgstr "LiveJournal用户名"
+#: ../../mod/ping.php:269
+#, php-format
+msgid "{0} is now friends with %s"
+msgstr "{0}成为%s的朋友"
 
-#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82
-msgid "LiveJournal password"
-msgstr "LiveJournal密码"
+#: ../../mod/ping.php:274
+msgid "{0} posted"
+msgstr "{0}陈列"
 
-#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87
-msgid "Post to LiveJournal by default"
-msgstr "默认地转播到LiveJournal"
+#: ../../mod/ping.php:279
+#, php-format
+msgid "{0} tagged %s's post with #%s"
+msgstr "{0}用#%s标签%s的文章"
 
-#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78
-msgid "Not Safe For Work (General Purpose Content Filter) settings"
-msgstr "工作不安全(通用内容过滤)设置"
+#: ../../mod/ping.php:285
+msgid "{0} mentioned you in a post"
+msgstr "{0}提到您在文章"
 
-#: ../../addon/nsfw/nsfw.php:80 ../../addon.old/nsfw/nsfw.php:80
-msgid ""
-"This plugin looks in posts for the words/text you specify below, and "
-"collapses any content containing those keywords so it is not displayed at "
-"inappropriate times, such as sexual innuendo that may be improper in a work "
-"setting. It is polite and recommended to tag any content containing nudity "
-"with #NSFW.  This filter can also match any other word/text you specify, and"
-" can thereby be used as a general purpose content filter."
-msgstr "这个插件找您下面输入的词在所有的文章里,和把包括那些词的内容隐藏,省得不妥当的时候表示,比如性的影射在办公室里。是礼貌和建议的把什么包括裸体的内容跟#NSFW标签。这个过滤也会符合设么别的您输入的词,从而能当通用内容过滤有用的。"
+#: ../../mod/admin.php:55
+msgid "Theme settings updated."
+msgstr "主题设置更新了。"
 
-#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81
-msgid "Enable Content filter"
-msgstr "使内容过滤可用"
+#: ../../mod/admin.php:96 ../../mod/admin.php:474
+msgid "Site"
+msgstr "网站"
 
-#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84
-msgid "Comma separated list of keywords to hide"
-msgstr "逗号分隔单词要隐藏"
+#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756
+msgid "Users"
+msgstr "用户"
 
-#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89
-msgid "Use /expression/ to provide regular expressions"
-msgstr "用/<i>表达式</i>/为输入正则表达式"
+#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881
+msgid "Plugins"
+msgstr "插件"
 
-#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105
-msgid "NSFW Settings saved."
-msgstr "NSFW设置保持了。"
+#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081
+msgid "Themes"
+msgstr "主题"
 
-#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157
-#, php-format
-msgid "%s - Click to open/close"
-msgstr "%s - 点击为打开/关闭"
+#: ../../mod/admin.php:100
+msgid "DB updates"
+msgstr "数据库更新"
 
-#: ../../addon/page/page.php:62 ../../addon/page/page.php:92
-#: ../../addon/forumlist/forumlist.php:64 ../../addon.old/page/page.php:62
-#: ../../addon.old/page/page.php:92 ../../addon.old/forumlist/forumlist.php:60
-msgid "Forums"
-msgstr "论坛"
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168
+msgid "Logs"
+msgstr "记录"
 
-#: ../../addon/page/page.php:130 ../../addon/forumlist/forumlist.php:98
-#: ../../addon.old/page/page.php:130
-#: ../../addon.old/forumlist/forumlist.php:94
-msgid "Forums:"
-msgstr "评坛:"
+#: ../../mod/admin.php:121
+msgid "Plugin Features"
+msgstr "插件特点"
 
-#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166
-msgid "Page settings updated."
-msgstr "页设置更新了"
+#: ../../mod/admin.php:123
+msgid "User registrations waiting for confirmation"
+msgstr "用户注册等确认"
 
-#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195
-msgid "Page Settings"
-msgstr "页设置"
+#: ../../mod/admin.php:182 ../../mod/admin.php:714
+msgid "Normal Account"
+msgstr "正常帐户"
 
-#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197
-msgid "How many forums to display on sidebar without paging"
-msgstr "多少评坛要在工具栏上表示无分页"
+#: ../../mod/admin.php:183 ../../mod/admin.php:715
+msgid "Soapbox Account"
+msgstr "演讲台帐户"
 
-#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200
-msgid "Randomise Page/Forum list"
-msgstr "把页/评坛单洗牌"
+#: ../../mod/admin.php:184 ../../mod/admin.php:716
+msgid "Community/Celebrity Account"
+msgstr "社会/名人帐户"
 
-#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203
-msgid "Show pages/forums on profile page"
-msgstr "表示页ï¼\8fè¯\84å\9d\9bå\9c¨ç®\80ä»\8b页"
+#: ../../mod/admin.php:185 ../../mod/admin.php:717
+msgid "Automatic Friend Account"
+msgstr "è\87ªå\8a¨æ\9c\8bå\8f\8bå¸\90æ\88·"
 
-#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150
-msgid "Planets Settings"
-msgstr "行星设置"
+#: ../../mod/admin.php:186
+msgid "Blog Account"
+msgstr "博客账户"
 
-#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152
-msgid "Enable Planets Plugin"
-msgstr "使行星插件可用"
+#: ../../mod/admin.php:187
+msgid "Private Forum"
+msgstr "私人评坛"
 
-#: ../../addon/forumdirectory/forumdirectory.php:22
-msgid "Forum Directory"
-msgstr "评坛目录"
+#: ../../mod/admin.php:206
+msgid "Message queues"
+msgstr "通知排队"
 
-#: ../../addon/communityhome/communityhome.php:28
-#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:91
-#: ../../boot.php:1037 ../../addon.old/communityhome/communityhome.php:28
-#: ../../addon.old/communityhome/communityhome.php:34
-#: ../../addon.old/communityhome/twillingham/communityhome.php:28
-#: ../../addon.old/communityhome/twillingham/communityhome.php:34
-msgid "Login"
-msgstr "登录"
+#: ../../mod/admin.php:211 ../../mod/admin.php:473 ../../mod/admin.php:742
+#: ../../mod/admin.php:838 ../../mod/admin.php:880 ../../mod/admin.php:1046
+#: ../../mod/admin.php:1080 ../../mod/admin.php:1167
+msgid "Administration"
+msgstr "管理"
 
-#: ../../addon/communityhome/communityhome.php:29
-#: ../../addon.old/communityhome/communityhome.php:29
-#: ../../addon.old/communityhome/twillingham/communityhome.php:29
-msgid "OpenID"
-msgstr "OpenID"
+#: ../../mod/admin.php:212
+msgid "Summary"
+msgstr "总算"
 
-#: ../../addon/communityhome/communityhome.php:39
-#: ../../addon.old/communityhome/communityhome.php:38
-#: ../../addon.old/communityhome/twillingham/communityhome.php:38
-msgid "Latest users"
-msgstr "最近用户"
+#: ../../mod/admin.php:214
+msgid "Registered users"
+msgstr "注册的用户"
 
-#: ../../addon/communityhome/communityhome.php:84
-#: ../../addon.old/communityhome/communityhome.php:81
-#: ../../addon.old/communityhome/twillingham/communityhome.php:81
-msgid "Most active users"
-msgstr "最积极用户"
+#: ../../mod/admin.php:216
+msgid "Pending registrations"
+msgstr "未决的注册"
 
-#: ../../addon/communityhome/communityhome.php:102
-#: ../../addon.old/communityhome/communityhome.php:98
-msgid "Latest photos"
-msgstr "最近照片"
+#: ../../mod/admin.php:217
+msgid "Version"
+msgstr "版本"
 
-#: ../../addon/communityhome/communityhome.php:141
-#: ../../addon.old/communityhome/communityhome.php:133
-msgid "Latest likes"
-msgstr "最近喜欢"
+#: ../../mod/admin.php:219
+msgid "Active plugins"
+msgstr "活跃的插件"
 
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1508
-#: ../../include/conversation.php:118 ../../include/conversation.php:246
-#: ../../addon.old/communityhome/communityhome.php:155
-msgid "event"
-msgstr "项目"
+#: ../../mod/admin.php:398
+msgid "Site settings updated."
+msgstr "网站设置更新了。"
 
-#: ../../addon/dav/common/wdcal_backend.inc.php:92
-#: ../../addon/dav/common/wdcal_backend.inc.php:166
-#: ../../addon/dav/common/wdcal_backend.inc.php:178
-#: ../../addon/dav/common/wdcal_backend.inc.php:206
-#: ../../addon/dav/common/wdcal_backend.inc.php:214
-#: ../../addon/dav/common/wdcal_backend.inc.php:229
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:92
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:166
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:178
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:206
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:214
-#: ../../addon.old/dav/common/wdcal_backend.inc.php:229
-msgid "No access"
-msgstr "看不了"
+#: ../../mod/admin.php:427 ../../mod/settings.php:769
+msgid "No special theme for mobile devices"
+msgstr "没专门适合手机的主题"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:30
-#: ../../addon/dav/common/wdcal_edit.inc.php:738
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:30
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:738
-msgid "Could not open component for editing"
-msgstr "开不了部件为编辑"
+#: ../../mod/admin.php:444
+msgid "Multi user instance"
+msgstr "多用户网站"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:140
-#: ../../addon/dav/friendica/layout.fnk.php:143
-#: ../../addon/dav/friendica/layout.fnk.php:422
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:140
-#: ../../addon.old/dav/friendica/layout.fnk.php:143
-#: ../../addon.old/dav/friendica/layout.fnk.php:422
-msgid "Go back to the calendar"
-msgstr "返回日历"
+#: ../../mod/admin.php:460
+msgid "Closed"
+msgstr "关闭"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:144
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:144
-msgid "Event data"
-msgstr "项目内容"
+#: ../../mod/admin.php:461
+msgid "Requires approval"
+msgstr "要批准"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:146
-#: ../../addon/dav/friendica/main.php:239
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:146
-#: ../../addon.old/dav/friendica/main.php:239
-msgid "Calendar"
-msgstr "日历"
+#: ../../mod/admin.php:462
+msgid "Open"
+msgstr "打开"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:163
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:163
-msgid "Special color"
-msgstr "特别颜色"
+#: ../../mod/admin.php:466
+msgid "No SSL policy, links will track page SSL state"
+msgstr "没SSL方针,环节将追踪页SSL现状"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:169
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:169
-msgid "Subject"
-msgstr "题目"
+#: ../../mod/admin.php:467
+msgid "Force all links to use SSL"
+msgstr "让所有的环节用SSL"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:173
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:173
-msgid "Starts"
-msgstr "开始"
+#: ../../mod/admin.php:468
+msgid "Self-signed certificate, use SSL for local links only (discouraged)"
+msgstr "自签证书,用SSL再光本地环节(劝止的)"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:178
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:178
-msgid "Ends"
-msgstr "结束"
+#: ../../mod/admin.php:476 ../../mod/register.php:261
+msgid "Registration"
+msgstr "注册"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:185
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:185
-msgid "Description"
-msgstr "描述"
+#: ../../mod/admin.php:477
+msgid "File upload"
+msgstr "文件上传"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:188
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:188
-msgid "Recurrence"
-msgstr "复发"
+#: ../../mod/admin.php:478
+msgid "Policies"
+msgstr "政策"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:190
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:190
-msgid "Frequency"
-msgstr "频率"
+#: ../../mod/admin.php:479
+msgid "Advanced"
+msgstr "高等"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:194
-#: ../../include/contact_selectors.php:59
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:194
-msgid "Daily"
-msgstr "每日"
+#: ../../mod/admin.php:480
+msgid "Performance"
+msgstr "性能"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:197
-#: ../../include/contact_selectors.php:60
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:197
-msgid "Weekly"
-msgstr "每周"
+#: ../../mod/admin.php:485
+msgid "Banner/Logo"
+msgstr "标题/标志"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:200
-#: ../../include/contact_selectors.php:61
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:200
-msgid "Monthly"
-msgstr "每月"
+#: ../../mod/admin.php:486
+msgid "System language"
+msgstr "系统语言"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:203
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:203
-msgid "Yearly"
-msgstr "一年一次"
+#: ../../mod/admin.php:487
+msgid "System theme"
+msgstr "系统主题"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:214
-#: ../../include/datetime.php:288
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:214
-msgid "days"
-msgstr ""
+#: ../../mod/admin.php:487
+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>"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:215
-#: ../../include/datetime.php:287
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:215
-msgid "weeks"
-msgstr "星期"
+#: ../../mod/admin.php:488
+msgid "Mobile system theme"
+msgstr "手机系统主题"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:216
-#: ../../include/datetime.php:286
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:216
-msgid "months"
-msgstr "月"
+#: ../../mod/admin.php:488
+msgid "Theme for mobile devices"
+msgstr "主题适合手机"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:217
-#: ../../include/datetime.php:285
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:217
-msgid "years"
-msgstr "年"
+#: ../../mod/admin.php:489
+msgid "SSL link policy"
+msgstr "SSL环节方针"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "Interval"
-msgstr "间隔"
+#: ../../mod/admin.php:489
+msgid "Determines whether generated links should be forced to use SSL"
+msgstr "决定产生的环节否则被强迫用SSL"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:218
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:218
-msgid "All %select% %time%"
-msgstr "每%select%%time%"
+#: ../../mod/admin.php:490
+msgid "'Share' element"
+msgstr "「合用」要素"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:222
-#: ../../addon/dav/common/wdcal_edit.inc.php:260
-#: ../../addon/dav/common/wdcal_edit.inc.php:481
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:222
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:260
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:481
-msgid "Days"
-msgstr "天"
+#: ../../mod/admin.php:490
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr "把bbcode要素「合用」为重复项目。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:231
-#: ../../addon/dav/common/wdcal_edit.inc.php:254
-#: ../../addon/dav/common/wdcal_edit.inc.php:270
-#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:293
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:305
-msgid "Sunday"
-msgstr "星期天"
+#: ../../mod/admin.php:491
+msgid "Hide help entry from navigation menu"
+msgstr "隐藏帮助在航行选单"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:235
-#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
-msgid "Monday"
-msgstr "星期一"
+#: ../../mod/admin.php:491
+msgid ""
+"Hides the menu entry for the Help pages from the navigation menu. You can "
+"still access it calling /help directly."
+msgstr "隐藏帮助项目在航行选单。您还能用它经过手动的输入「/help」"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
-msgid "Tuesday"
-msgstr "星期二"
+#: ../../mod/admin.php:492
+msgid "Single user instance"
+msgstr "单用户网站"
+
+#: ../../mod/admin.php:492
+msgid "Make this instance multi-user or single-user for the named user"
+msgstr "弄这网站多用户或单用户为选择的用户"
+
+#: ../../mod/admin.php:493
+msgid "Maximum image size"
+msgstr "图片最大尺寸"
+
+#: ../../mod/admin.php:493
+msgid ""
+"Maximum size in bytes of uploaded images. Default is 0, which means no "
+"limits."
+msgstr "最多上传照相的字节。默认是零,意思是无限。"
+
+#: ../../mod/admin.php:494
+msgid "Maximum image length"
+msgstr "最大图片大小"
+
+#: ../../mod/admin.php:494
+msgid ""
+"Maximum length in pixels of the longest side of uploaded images. Default is "
+"-1, which means no limits."
+msgstr "最多像素在上传图片的长度。默认-1,意思是无限。"
+
+#: ../../mod/admin.php:495
+msgid "JPEG image quality"
+msgstr "JPEG图片质量"
+
+#: ../../mod/admin.php:495
+msgid ""
+"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
+"100, which is full quality."
+msgstr "上传的JPEG被用这质量[0-100]保存。默认100,最高。"
+
+#: ../../mod/admin.php:497
+msgid "Register policy"
+msgstr "注册政策"
+
+#: ../../mod/admin.php:498
+msgid "Maximum Daily Registrations"
+msgstr "一天最多注册"
+
+#: ../../mod/admin.php:498
+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/admin.php:499
+msgid "Register text"
+msgstr "注册正文"
+
+#: ../../mod/admin.php:499
+msgid "Will be displayed prominently on the registration page."
+msgstr "被显著的在注册页表示。"
+
+#: ../../mod/admin.php:500
+msgid "Accounts abandoned after x days"
+msgstr "账户丢弃X天后"
+
+#: ../../mod/admin.php:500
+msgid ""
+"Will not waste system resources polling external sites for abandonded "
+"accounts. Enter 0 for no time limit."
+msgstr "拒绝浪费系统资源看外网站找丢弃的账户。输入0为无时限。"
+
+#: ../../mod/admin.php:501
+msgid "Allowed friend domains"
+msgstr "允许的朋友域"
+
+#: ../../mod/admin.php:501
+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/admin.php:502
+msgid "Allowed email domains"
+msgstr "允许的电子邮件域"
+
+#: ../../mod/admin.php:502
+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 "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。"
+
+#: ../../mod/admin.php:503
+msgid "Block public"
+msgstr "拦公开"
+
+#: ../../mod/admin.php:503
+msgid ""
+"Check to block public access to all otherwise public personal pages on this "
+"site unless you are currently logged in."
+msgstr "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。"
+
+#: ../../mod/admin.php:504
+msgid "Force publish"
+msgstr "需要出版"
+
+#: ../../mod/admin.php:504
+msgid ""
+"Check to force all profiles on this site to be listed in the site directory."
+msgstr "让所有这网站的的简介表明在网站目录。"
+
+#: ../../mod/admin.php:505
+msgid "Global directory update URL"
+msgstr "综合目录更新URL"
+
+#: ../../mod/admin.php:505
+msgid ""
+"URL to update the global directory. If this is not set, the global directory"
+" is completely unavailable to the application."
+msgstr "URL为更新综合目录。如果没有,这个应用用不了综合目录。"
+
+#: ../../mod/admin.php:506
+msgid "Allow threaded items"
+msgstr "允许线绳项目"
+
+#: ../../mod/admin.php:506
+msgid "Allow infinite level threading for items on this site."
+msgstr "允许无限水平线绳为这网站的项目。"
+
+#: ../../mod/admin.php:507
+msgid "Private posts by default for new users"
+msgstr "新用户默认写私人文章"
+
+#: ../../mod/admin.php:507
+msgid ""
+"Set default post permissions for all new members to the default privacy "
+"group rather than public."
+msgstr "默认新用户文章批准使默认隐私组,没有公开。"
+
+#: ../../mod/admin.php:509
+msgid "Block multiple registrations"
+msgstr "拦一人多注册"
+
+#: ../../mod/admin.php:509
+msgid "Disallow users to register additional accounts for use as pages."
+msgstr "不允许用户注册别的账户为当页。"
+
+#: ../../mod/admin.php:510
+msgid "OpenID support"
+msgstr "OpenID支持"
+
+#: ../../mod/admin.php:510
+msgid "OpenID support for registration and logins."
+msgstr "OpenID支持注册和登录。"
+
+#: ../../mod/admin.php:511
+msgid "Fullname check"
+msgstr "全名核实"
+
+#: ../../mod/admin.php:511
+msgid ""
+"Force users to register with a space between firstname and lastname in Full "
+"name, as an antispam measure"
+msgstr "让用户注册的时候放空格姓名中间,省得垃圾注册。"
+
+#: ../../mod/admin.php:512
+msgid "UTF-8 Regular expressions"
+msgstr "UTF-8正则表达式"
+
+#: ../../mod/admin.php:512
+msgid "Use PHP UTF8 regular expressions"
+msgstr "用PHP UTF8正则表达式"
+
+#: ../../mod/admin.php:513
+msgid "Show Community Page"
+msgstr "表示社会页"
+
+#: ../../mod/admin.php:513
+msgid ""
+"Display a Community page showing all recent public postings on this site."
+msgstr "表示社会页表明这网站所有最近公开的文章"
+
+#: ../../mod/admin.php:514
+msgid "Enable OStatus support"
+msgstr "使OStatus支持可用"
+
+#: ../../mod/admin.php:514
+msgid ""
+"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
+"communications in OStatus are public, so privacy warnings will be "
+"occasionally displayed."
+msgstr "提供内装的OStatus(identi.ca, status.net, 等)兼容。OStatus内,什么通知是公开的,所以偶尔隐私警告被表示。"
+
+#: ../../mod/admin.php:515
+msgid "Enable Diaspora support"
+msgstr "使Diaspora支持能够"
+
+#: ../../mod/admin.php:515
+msgid "Provide built-in Diaspora network compatibility."
+msgstr "提供内装Diaspora网络兼容。"
+
+#: ../../mod/admin.php:516
+msgid "Only allow Friendica contacts"
+msgstr "只许Friendica熟人"
+
+#: ../../mod/admin.php:516
+msgid ""
+"All contacts must use Friendica protocols. All other built-in communication "
+"protocols disabled."
+msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都不能用。"
+
+#: ../../mod/admin.php:517
+msgid "Verify SSL"
+msgstr "证实"
+
+#: ../../mod/admin.php:517
+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网站交流。"
+
+#: ../../mod/admin.php:518
+msgid "Proxy user"
+msgstr "代理用户"
+
+#: ../../mod/admin.php:519
+msgid "Proxy URL"
+msgstr "代理URL"
+
+#: ../../mod/admin.php:520
+msgid "Network timeout"
+msgstr "网络超时"
+
+#: ../../mod/admin.php:520
+msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
+msgstr "输入秒数。输入零为无限(不推荐的)。"
+
+#: ../../mod/admin.php:521
+msgid "Delivery interval"
+msgstr "传送间隔"
+
+#: ../../mod/admin.php:521
+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在大专门服务器。"
+
+#: ../../mod/admin.php:522
+msgid "Poll interval"
+msgstr "检查时间"
+
+#: ../../mod/admin.php:522
+msgid ""
+"Delay background polling processes by this many seconds to reduce system "
+"load. If 0, use delivery interval."
+msgstr "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。"
+
+#: ../../mod/admin.php:523
+msgid "Maximum Load Average"
+msgstr "最大负荷平均"
+
+#: ../../mod/admin.php:523
+msgid ""
+"Maximum system load before delivery and poll processes are deferred - "
+"default 50."
+msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
-msgid "Wednesday"
-msgstr "星期三"
+#: ../../mod/admin.php:525
+msgid "Use MySQL full text engine"
+msgstr "用MySQL全正文机车"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
-msgid "Thursday"
-msgstr "星期四"
+#: ../../mod/admin.php:525
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
-msgid "Friday"
-msgstr "星期五"
+#: ../../mod/admin.php:526
+msgid "Path to item cache"
+msgstr "路线到项目缓存"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:975
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
-msgid "Saturday"
-msgstr "星期六"
+#: ../../mod/admin.php:527
+msgid "Cache duration in seconds"
+msgstr "缓存时间秒"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:297
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:297
-msgid "First day of week:"
-msgstr "星期第一天:"
+#: ../../mod/admin.php:527
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr "缓存文件应该保存多久?默认是86400秒(一天)。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:350
-#: ../../addon/dav/common/wdcal_edit.inc.php:373
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:350
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:373
-msgid "Day of month"
-msgstr "月里天数"
+#: ../../mod/admin.php:528
+msgid "Path for lock file"
+msgstr "路线到锁文件"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:354
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:354
-msgid "#num#th of each month"
-msgstr "每月第#num#个"
+#: ../../mod/admin.php:529
+msgid "Temp path"
+msgstr "临时文件路线"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:357
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:357
-msgid "#num#th-last of each month"
-msgstr "每月第#num#个最后"
+#: ../../mod/admin.php:530
+msgid "Base path to installation"
+msgstr "基础安装路线"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:360
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:360
-msgid "#num#th #wkday# of each month"
-msgstr "每月第#num#个#wkday#"
+#: ../../mod/admin.php:548
+msgid "Update has been marked successful"
+msgstr "更新当成功标签了"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:363
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:363
-msgid "#num#th-last #wkday# of each month"
-msgstr "æ¯\8fæ\9c\88第#num#个æ\9c\80å\90\8e#wkday#"
+#: ../../mod/admin.php:558
+#, php-format
+msgid "Executing %s failed. Check system logs."
+msgstr "æ\8a\8a%så®\9eè¡\8c没é\80\9aè¿\87äº\86ã\80\82ç\9c\8bç³»ç»\9fè®°å½\95ã\80\82"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:372
-#: ../../addon/dav/friendica/layout.fnk.php:255
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:372
-#: ../../addon.old/dav/friendica/layout.fnk.php:255
-msgid "Month"
-msgstr "月"
+#: ../../mod/admin.php:561
+#, php-format
+msgid "Update %s was successfully applied."
+msgstr "把%s更新成功地实行。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:377
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:377
-msgid "#num#th of the given month"
-msgstr "月第#num#个天"
+#: ../../mod/admin.php:565
+#, php-format
+msgid "Update %s did not return a status. Unknown if it succeeded."
+msgstr "%s更新没回答现状。不知道是否成功。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:380
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:380
-msgid "#num#th-last of the given month"
-msgstr "æ\9c\88第#num#个æ\9c\80å\90\8e天"
+#: ../../mod/admin.php:568
+#, php-format
+msgid "Update function %s could not be found."
+msgstr "æ\89¾ä¸\8då\88°æ\9b´æ\96°å\8a\9fè\83½%sã\80\82"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:383
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:383
-msgid "#num#th #wkday# of the given month"
-msgstr "月第#num#个#wkday#"
+#: ../../mod/admin.php:583
+msgid "No failed updates."
+msgstr "没有不通过地更新。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:386
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:386
-msgid "#num#th-last #wkday# of the given month"
-msgstr "月第#num#个最后#wkday#"
+#: ../../mod/admin.php:587
+msgid "Failed Updates"
+msgstr "没通过的更新"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:413
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:413
-msgid "Repeat until"
-msgstr "重复到"
+#: ../../mod/admin.php:588
+msgid ""
+"This does not include updates prior to 1139, which did not return a status."
+msgstr "这个不包括1139号更新之前,它们没回答装线。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:417
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:417
-msgid "Infinite"
-msgstr "无限的"
+#: ../../mod/admin.php:589
+msgid "Mark success (if update was manually applied)"
+msgstr "标注成功(如果手动地把更新实行了)"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:420
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:420
-msgid "Until the following date"
-msgstr "到下个日期"
+#: ../../mod/admin.php:590
+msgid "Attempt to execute this update step automatically"
+msgstr "试图自动地把这步更新实行"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:423
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:423
-msgid "Number of times"
-msgstr "多少次"
+#: ../../mod/admin.php:615
+#, php-format
+msgid "%s user blocked/unblocked"
+msgid_plural "%s users blocked/unblocked"
+msgstr[0] "%s用户拦/不拦了"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:429
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:429
-msgid "Exceptions"
-msgstr "除外"
+#: ../../mod/admin.php:622
+#, php-format
+msgid "%s user deleted"
+msgid_plural "%s users deleted"
+msgstr[0] "%s用户删除了"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:432
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:432
-msgid "none"
-msgstr "没有"
+#: ../../mod/admin.php:661
+#, php-format
+msgid "User '%s' deleted"
+msgstr "用户「%s」删除了"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:449
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:449
-msgid "Notification"
-msgstr "通知"
+#: ../../mod/admin.php:669
+#, php-format
+msgid "User '%s' unblocked"
+msgstr "用户「%s」无拦了"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:466
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:466
-msgid "Notify by"
-msgstr "用地方法为通知"
+#: ../../mod/admin.php:669
+#, php-format
+msgid "User '%s' blocked"
+msgstr "用户「%s」拦了"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:469
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:469
-msgid "E-Mail"
-msgstr "电子邮件"
+#: ../../mod/admin.php:745
+msgid "select all"
+msgstr "都选"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:470
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:470
-msgid "On Friendica / Display"
-msgstr "在Friendica/表示"
+#: ../../mod/admin.php:746
+msgid "User registrations waiting for confirm"
+msgstr "用户注册等待确认"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:474
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:474
-msgid "Time"
-msgstr "时间"
+#: ../../mod/admin.php:747
+msgid "Request date"
+msgstr "要求日期"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:478
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:478
-msgid "Hours"
-msgstr "å°\8fæ\97"
+#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/crepair.php:148
+msgid "Name"
+msgstr "å\90\8då­\97"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:479
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:479
-msgid "Minutes"
-msgstr "分钟"
+#: ../../mod/admin.php:748
+msgid "No registrations."
+msgstr "没有注册。"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:480
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:480
-msgid "Seconds"
-msgstr ""
+#: ../../mod/admin.php:749 ../../mod/notifications.php:161
+#: ../../mod/notifications.php:208
+msgid "Approve"
+msgstr "批准"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:482
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:482
-msgid "Weeks"
-msgstr "周"
+#: ../../mod/admin.php:750
+msgid "Deny"
+msgstr "否定"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:485
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:485
-msgid "before the"
-msgstr ""
+#: ../../mod/admin.php:752 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Block"
+msgstr ""
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:486
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:486
-msgid "start of the event"
-msgstr "项目开始"
+#: ../../mod/admin.php:753 ../../mod/contacts.php:353
+#: ../../mod/contacts.php:412
+msgid "Unblock"
+msgstr "不拦"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:487
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:487
-msgid "end of the event"
-msgstr "项目结束"
+#: ../../mod/admin.php:754
+msgid "Site admin"
+msgstr "网站管理员"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:492
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:492
-msgid "Add a notification"
-msgstr "加一个通知"
+#: ../../mod/admin.php:757
+msgid "Register date"
+msgstr "注册日期"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:687
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:687
-msgid "The event #name# will start at #date"
-msgstr "项目#name#开始在#date"
+#: ../../mod/admin.php:757
+msgid "Last login"
+msgstr "上次登录"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:696
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:696
-msgid "#name# is about to begin."
-msgstr "#name#快开始。"
+#: ../../mod/admin.php:757
+msgid "Last item"
+msgstr "上项目"
 
-#: ../../addon/dav/common/wdcal_edit.inc.php:769
-#: ../../addon.old/dav/common/wdcal_edit.inc.php:769
-msgid "Saved"
-msgstr "保存了"
+#: ../../mod/admin.php:757
+msgid "Account"
+msgstr "帐户"
 
-#: ../../addon/dav/common/wdcal_configuration.php:148
-#: ../../addon.old/dav/common/wdcal_configuration.php:148
-msgid "U.S. Time Format (mm/dd/YYYY)"
-msgstr "美国时间形式(月/日/年)"
+#: ../../mod/admin.php:759
+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您肯定吗?"
+
+#: ../../mod/admin.php:760
+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您肯定吗?"
 
-#: ../../addon/dav/common/wdcal_configuration.php:243
-#: ../../addon.old/dav/common/wdcal_configuration.php:243
-msgid "German Time Format (dd.mm.YYYY)"
-msgstr "德国时间形式(日/月/年)"
+#: ../../mod/admin.php:801
+#, php-format
+msgid "Plugin %s disabled."
+msgstr "使插件%s不能用。"
 
-#: ../../addon/dav/common/dav_caldav_backend_private.inc.php:39
-#: ../../addon.old/dav/common/dav_caldav_backend_private.inc.php:39
-msgid "Private Events"
-msgstr "私人项目"
+#: ../../mod/admin.php:805
+#, php-format
+msgid "Plugin %s enabled."
+msgstr "使插件%s能用。"
 
-#: ../../addon/dav/common/dav_carddav_backend_private.inc.php:46
-#: ../../addon.old/dav/common/dav_carddav_backend_private.inc.php:46
-msgid "Private Addressbooks"
-msgstr "私人通讯录"
+#: ../../mod/admin.php:815 ../../mod/admin.php:1018
+msgid "Disable"
+msgstr "使不能用"
 
-#: ../../addon/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_caldav_backend_virtual_friendica.inc.php:36
-msgid "Friendica-Native events"
-msgstr "本Friendica项目"
+#: ../../mod/admin.php:817 ../../mod/admin.php:1020
+msgid "Enable"
+msgstr "使能用"
 
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:36
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:59
-msgid "Friendica-Contacts"
-msgstr "Friendica熟人"
+#: ../../mod/admin.php:840 ../../mod/admin.php:1048
+msgid "Toggle"
+msgstr "肘节"
 
-#: ../../addon/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-#: ../../addon.old/dav/friendica/dav_carddav_backend_virtual_friendica.inc.php:60
-msgid "Your Friendica-Contacts"
-msgstr "您的Friendica熟人"
+#: ../../mod/admin.php:848 ../../mod/admin.php:1058
+msgid "Author: "
+msgstr "作家:"
 
-#: ../../addon/dav/friendica/layout.fnk.php:99
-#: ../../addon/dav/friendica/layout.fnk.php:136
-#: ../../addon.old/dav/friendica/layout.fnk.php:99
-#: ../../addon.old/dav/friendica/layout.fnk.php:136
-msgid ""
-"Something went wrong when trying to import the file. Sorry. Maybe some "
-"events were imported anyway."
-msgstr "进口文件出了问题。不好意思。可能一些项目却是成功地进口了。"
+#: ../../mod/admin.php:849 ../../mod/admin.php:1059
+msgid "Maintainer: "
+msgstr "保持员:"
 
-#: ../../addon/dav/friendica/layout.fnk.php:131
-#: ../../addon.old/dav/friendica/layout.fnk.php:131
-msgid "Something went wrong when trying to import the file. Sorry."
-msgstr "进口文件出了问题。不好意思。"
+#: ../../mod/admin.php:978
+msgid "No themes found."
+msgstr "找不到主题。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:134
-#: ../../addon.old/dav/friendica/layout.fnk.php:134
-msgid "The ICS-File has been imported."
-msgstr "把ICS文件进口了。"
+#: ../../mod/admin.php:1040
+msgid "Screenshot"
+msgstr "截图"
 
-#: ../../addon/dav/friendica/layout.fnk.php:138
-#: ../../addon.old/dav/friendica/layout.fnk.php:138
-msgid "No file was uploaded."
-msgstr "没有上传的文件。"
+#: ../../mod/admin.php:1086
+msgid "[Experimental]"
+msgstr "[试验]"
 
-#: ../../addon/dav/friendica/layout.fnk.php:147
-#: ../../addon.old/dav/friendica/layout.fnk.php:147
-msgid "Import a ICS-file"
-msgstr "进口ICS文件"
+#: ../../mod/admin.php:1087
+msgid "[Unsupported]"
+msgstr "[没支持]"
 
-#: ../../addon/dav/friendica/layout.fnk.php:150
-#: ../../addon.old/dav/friendica/layout.fnk.php:150
-msgid "ICS-File"
-msgstr "ICS文件"
+#: ../../mod/admin.php:1114
+msgid "Log settings updated."
+msgstr "日志设置更新了。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:151
-#: ../../addon.old/dav/friendica/layout.fnk.php:151
-msgid "Overwrite all #num# existing events"
-msgstr "替换所有#num#现有的项目"
+#: ../../mod/admin.php:1170
+msgid "Clear"
+msgstr "清理出"
 
-#: ../../addon/dav/friendica/layout.fnk.php:228
-#: ../../addon.old/dav/friendica/layout.fnk.php:228
-msgid "New event"
-msgstr "新项目"
+#: ../../mod/admin.php:1176
+msgid "Debugging"
+msgstr "调试"
 
-#: ../../addon/dav/friendica/layout.fnk.php:232
-#: ../../addon.old/dav/friendica/layout.fnk.php:232
-msgid "Today"
-msgstr "今天"
+#: ../../mod/admin.php:1177
+msgid "Log file"
+msgstr "记录文件"
 
-#: ../../addon/dav/friendica/layout.fnk.php:241
-#: ../../addon.old/dav/friendica/layout.fnk.php:241
-msgid "Day"
-msgstr "天"
+#: ../../mod/admin.php:1177
+msgid ""
+"Must be writable by web server. Relative to your Friendica top-level "
+"directory."
+msgstr "必要被网页服务器可写的。相对Friendica主文件夹。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:248
-#: ../../addon.old/dav/friendica/layout.fnk.php:248
-msgid "Week"
-msgstr "周"
+#: ../../mod/admin.php:1178
+msgid "Log level"
+msgstr "记录水平"
 
-#: ../../addon/dav/friendica/layout.fnk.php:260
-#: ../../addon.old/dav/friendica/layout.fnk.php:260
-msgid "Reload"
-msgstr "再装入"
+#: ../../mod/admin.php:1227 ../../mod/contacts.php:409
+msgid "Update now"
+msgstr "现在更新"
 
-#: ../../addon/dav/friendica/layout.fnk.php:271
-#: ../../addon.old/dav/friendica/layout.fnk.php:271
-msgid "Date"
-msgstr "日期"
+#: ../../mod/admin.php:1228
+msgid "Close"
+msgstr "关闭"
 
-#: ../../addon/dav/friendica/layout.fnk.php:313
-#: ../../addon.old/dav/friendica/layout.fnk.php:313
-msgid "Error"
-msgstr "错误"
+#: ../../mod/admin.php:1234
+msgid "FTP Host"
+msgstr "FTP主机"
 
-#: ../../addon/dav/friendica/layout.fnk.php:380
-#: ../../addon.old/dav/friendica/layout.fnk.php:380
-msgid "The calendar has been updated."
-msgstr "日历更新了。"
+#: ../../mod/admin.php:1235
+msgid "FTP Path"
+msgstr "FTP目录"
 
-#: ../../addon/dav/friendica/layout.fnk.php:393
-#: ../../addon.old/dav/friendica/layout.fnk.php:393
-msgid "The new calendar has been created."
-msgstr "新日历创造了。"
+#: ../../mod/admin.php:1236
+msgid "FTP User"
+msgstr "FTP用户"
 
-#: ../../addon/dav/friendica/layout.fnk.php:417
-#: ../../addon.old/dav/friendica/layout.fnk.php:417
-msgid "The calendar has been deleted."
-msgstr "日历删除了。"
+#: ../../mod/admin.php:1237
+msgid "FTP Password"
+msgstr "FTP密码"
 
-#: ../../addon/dav/friendica/layout.fnk.php:424
-#: ../../addon.old/dav/friendica/layout.fnk.php:424
-msgid "Calendar Settings"
-msgstr "日历设置"
+#: ../../mod/item.php:105
+msgid "Unable to locate original post."
+msgstr "找不到当初的新闻"
 
-#: ../../addon/dav/friendica/layout.fnk.php:430
-#: ../../addon.old/dav/friendica/layout.fnk.php:430
-msgid "Date format"
-msgstr "日期形式"
+#: ../../mod/item.php:307
+msgid "Empty post discarded."
+msgstr "空心的新闻丢弃了"
 
-#: ../../addon/dav/friendica/layout.fnk.php:439
-#: ../../addon.old/dav/friendica/layout.fnk.php:439
-msgid "Time zone"
-msgstr "时区"
+#: ../../mod/item.php:869
+msgid "System error. Post not saved."
+msgstr "系统错误。x"
 
-#: ../../addon/dav/friendica/layout.fnk.php:445
-#: ../../addon.old/dav/friendica/layout.fnk.php:445
-msgid "Calendars"
-msgstr "日历"
+#: ../../mod/item.php:894
+#, php-format
+msgid ""
+"This message was sent to you by %s, a member of the Friendica social "
+"network."
+msgstr "这个新闻是由%s,Friendica社会化网络成员之一,发给你。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:487
-#: ../../addon.old/dav/friendica/layout.fnk.php:487
-msgid "Create a new calendar"
-msgstr "创造新日历"
+#: ../../mod/item.php:896
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "你可以网上拜访他在%s"
 
-#: ../../addon/dav/friendica/layout.fnk.php:496
-#: ../../addon.old/dav/friendica/layout.fnk.php:496
-msgid "Limitations"
-msgstr "限制"
+#: ../../mod/item.php:897
+msgid ""
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
+msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:500
-#: ../../addon/libravatar/libravatar.php:82
-#: ../../addon.old/dav/friendica/layout.fnk.php:500
-#: ../../addon.old/libravatar/libravatar.php:82
-msgid "Warning"
-msgstr "警告"
+#: ../../mod/item.php:901
+#, php-format
+msgid "%s posted an update."
+msgstr "%s贴上一个新闻。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:504
-#: ../../addon.old/dav/friendica/layout.fnk.php:504
-msgid "Synchronization (iPhone, Thunderbird Lightning, Android, ...)"
-msgstr "同步(iPhone,Thunderbird Lightning, 案桌,等)"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "%s的朋友们"
 
-#: ../../addon/dav/friendica/layout.fnk.php:511
-#: ../../addon.old/dav/friendica/layout.fnk.php:511
-msgid "Synchronizing this calendar with the iPhone"
-msgstr "正在把这个日历跟iPhone同步"
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "没有朋友展示。"
 
-#: ../../addon/dav/friendica/layout.fnk.php:522
-#: ../../addon.old/dav/friendica/layout.fnk.php:522
-msgid "Synchronizing your Friendica-Contacts with the iPhone"
-msgstr "正在把您的Friendica熟人跟iPhone同步"
+#: ../../mod/search.php:21 ../../mod/network.php:224
+msgid "Remove term"
+msgstr "删除关键字"
 
-#: ../../addon/dav/friendica/main.php:202
-#: ../../addon.old/dav/friendica/main.php:202
-msgid ""
-"The current version of this plugin has not been set up correctly. Please "
-"contact the system administrator of your installation of friendica to fix "
-"this."
-msgstr "现有的插件没安装好。请跟系统管理您的friendica安装联系为维修。"
+#: ../../mod/search.php:180 ../../mod/search.php:206
+#: ../../mod/community.php:61 ../../mod/community.php:88
+msgid "No results."
+msgstr "没有结果"
 
-#: ../../addon/dav/friendica/main.php:242
-#: ../../addon.old/dav/friendica/main.php:242
-msgid "Extended calendar with CalDAV-support"
-msgstr "增能日历跟CalDAV支持"
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "授权应用连接"
 
-#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
-#: ../../include/enotify.php:28 ../../include/notifier.php:785
-#: ../../addon.old/dav/friendica/main.php:279
-#: ../../addon.old/dav/friendica/main.php:280
-msgid "noreply"
-msgstr "noreply"
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr "回归您的应用和输入这个安全密码:"
 
-#: ../../addon/dav/friendica/main.php:282
-#: ../../addon.old/dav/friendica/main.php:282
-msgid "Notification: "
-msgstr "通知:"
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "请登记为继续。"
 
-#: ../../addon/dav/friendica/main.php:309
-#: ../../addon.old/dav/friendica/main.php:309
-msgid "The database tables have been installed."
-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 "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章"
 
-#: ../../addon/dav/friendica/main.php:310
-#: ../../addon.old/dav/friendica/main.php:310
-msgid "An error occurred during the installation."
-msgstr "安装出错误。"
+#: ../../mod/register.php:91 ../../mod/regmod.php:54
+#, php-format
+msgid "Registration details for %s"
+msgstr "注册信息为%s"
 
-#: ../../addon/dav/friendica/main.php:316
-#: ../../addon.old/dav/friendica/main.php:316
-msgid "The database tables have been updated."
-msgstr "æ\95°æ\8d®åº\93表格æ\9b´æ\96°äº\86。"
+#: ../../mod/register.php:99
+msgid ""
+"Registration successful. Please check your email for further instructions."
+msgstr "注å\86\8cæ\88\90å\8a\9fäº\86ã\80\82请å\92¨è¯¢è¯´æ\98\8eå\86\8dæ\82¨ç\9a\84æ\94¶ä»¶ç®±。"
 
-#: ../../addon/dav/friendica/main.php:317
-#: ../../addon.old/dav/friendica/main.php:317
-msgid "An error occurred during the update."
-msgstr "更新出了问题。"
+#: ../../mod/register.php:103
+msgid "Failed to send email message. Here is the message that failed."
+msgstr "发邮件失败了。这条试失败的消息。"
 
-#: ../../addon/dav/friendica/main.php:333
-#: ../../addon.old/dav/friendica/main.php:333
-msgid "No system-wide settings yet."
-msgstr "还没有系统设置。"
+#: ../../mod/register.php:108
+msgid "Your registration can not be processed."
+msgstr "处理不了您的注册。"
 
-#: ../../addon/dav/friendica/main.php:336
-#: ../../addon.old/dav/friendica/main.php:336
-msgid "Database status"
-msgstr "æ\95°æ\8d®åº\93ç\8e°ç\8a"
+#: ../../mod/register.php:145
+#, php-format
+msgid "Registration request at %s"
+msgstr "注å\86\8cè¦\81æ±\82å\86\8d%s"
 
-#: ../../addon/dav/friendica/main.php:339
-#: ../../addon.old/dav/friendica/main.php:339
-msgid "Installed"
-msgstr "安装了"
+#: ../../mod/register.php:154
+msgid "Your registration is pending approval by the site owner."
+msgstr "您的注册等网页主的批准。"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade needed"
-msgstr "必须更新"
+#: ../../mod/register.php:192 ../../mod/uimport.php:50
+msgid ""
+"This site has exceeded the number of allowed daily account registrations. "
+"Please try again tomorrow."
+msgstr "这个网站超过一天最多账户注册。请明天再试。"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
+#: ../../mod/register.php:220
 msgid ""
-"Please back up all calendar data (the tables beginning with dav_*) before "
-"proceeding. While all calendar events <i>should</i> be converted to the new "
-"database structure, it's always safe to have a backup. Below, you can have a"
-" look at the database-queries that will be made when pressing the "
-"'update'-button."
-msgstr "请备份所有的日历数据(表格有前缀「dav_」)继续之前。虽然所有的日历项目<i>应该</i>被转化成新数据库体系,备份总是最好。下边您会看数据库命令进行按「更新」按钮的时候。"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
+msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。"
 
-#: ../../addon/dav/friendica/main.php:343
-#: ../../addon.old/dav/friendica/main.php:343
-msgid "Upgrade"
-msgstr "更新"
+#: ../../mod/register.php:221
+msgid ""
+"If you are not familiar with OpenID, please leave that field blank and fill "
+"in the rest of the items."
+msgstr "如果您没熟悉OpenID,请留空这个栏和填另些栏。"
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Not installed"
-msgstr "没安装"
+#: ../../mod/register.php:222
+msgid "Your OpenID (optional): "
+msgstr "您的OpenID(可选的):"
 
-#: ../../addon/dav/friendica/main.php:346
-#: ../../addon.old/dav/friendica/main.php:346
-msgid "Install"
-msgstr "安装"
+#: ../../mod/register.php:236
+msgid "Include your profile in member directory?"
+msgstr "放您的简介再员目录?"
 
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
-msgid "Unknown"
-msgstr "不知道的"
+#: ../../mod/register.php:257
+msgid "Membership on this site is by invitation only."
+msgstr "会员身份在这个网站是光通过邀请。"
 
-#: ../../addon/dav/friendica/main.php:350
-#: ../../addon.old/dav/friendica/main.php:350
+#: ../../mod/register.php:258
+msgid "Your invitation ID: "
+msgstr "您邀请ID:"
+
+#: ../../mod/register.php:269
+msgid "Your Full Name (e.g. Joe Smith): "
+msgstr "您姓名(例如「张三」):"
+
+#: ../../mod/register.php:270
+msgid "Your Email Address: "
+msgstr "你的电子邮件地址:"
+
+#: ../../mod/register.php:271
 msgid ""
-"Something really went wrong. I cannot recover from this state automatically,"
-" sorry. Please go to the database backend, back up the data, and delete all "
-"tables beginning with 'dav_' manually. Afterwards, this installation routine"
-" should be able to reinitialize the tables automatically."
-msgstr "出什么真糟糕的问题。我不能自动地恢复,不好意思。请看数据库系统,备份数据,而手动地把所有前缀着「dav_」表格删除。之后,这个安装程序应该能把表格自动地初始化。"
+"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>」."
 
-#: ../../addon/dav/friendica/main.php:355
-#: ../../addon.old/dav/friendica/main.php:355
-msgid "Troubleshooting"
-msgstr "调试"
+#: ../../mod/register.php:272
+msgid "Choose a nickname: "
+msgstr "选择昵称:"
 
-#: ../../addon/dav/friendica/main.php:356
-#: ../../addon.old/dav/friendica/main.php:356
-msgid "Manual creation of the database tables:"
-msgstr "手动造成数据库表格:"
+#: ../../mod/apps.php:4
+msgid "Applications"
+msgstr "应用"
 
-#: ../../addon/dav/friendica/main.php:357
-#: ../../addon.old/dav/friendica/main.php:357
-msgid "Show SQL-statements"
-msgstr "表示SQL陈述"
+#: ../../mod/apps.php:7
+msgid "No installed applications."
+msgstr "没有安装的应用"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206
-msgid "Private Calendar"
-msgstr "私人日历"
+#: ../../mod/regmod.php:63
+msgid "Account approved."
+msgstr "账户批准了"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207
-msgid "Friendica Events: Mine"
-msgstr "Friendica项目:我的"
+#: ../../mod/regmod.php:100
+#, php-format
+msgid "Registration revoked for %s"
+msgstr "%s的登记撤销了"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208
-msgid "Friendica Events: Contacts"
-msgstr "Friendica项目:熟人"
+#: ../../mod/regmod.php:112
+msgid "Please login."
+msgstr "清登录。"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248
-msgid "Private Addresses"
-msgstr "私人地址"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "项目不可用的"
 
-#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249
-#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249
-msgid "Friendica Contacts"
-msgstr "Friendica熟人"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "找不到项目。"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:84
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:84
-#, php-format
+#: ../../mod/removeme.php:45 ../../mod/removeme.php:48
+msgid "Remove My Account"
+msgstr "删除我的账户"
+
+#: ../../mod/removeme.php:46
 msgid ""
-"Allow to use your friendica id (%s) to connecto to external unhosted-enabled"
-" storage (like ownCloud). See <a "
-"href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage"
-" WebFinger</a>"
-msgstr "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看<a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
+msgstr "这要完全删除您的账户。这一做过,就不能恢复。"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:85
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:85
-msgid "Template URL (with {category})"
-msgstr "模板URL(根{category})"
+#: ../../mod/removeme.php:47
+msgid "Please enter your password for verification:"
+msgstr "请输入密码为确认:"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:86
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:86
-msgid "OAuth end-point"
-msgstr "OAuth 端点"
+#: ../../mod/babel.php:17
+msgid "Source (bbcode) text:"
+msgstr "源代码(bbcode)正文"
 
-#: ../../addon/uhremotestorage/uhremotestorage.php:87
-#: ../../addon.old/uhremotestorage/uhremotestorage.php:87
-msgid "Api"
-msgstr "API"
+#: ../../mod/babel.php:23
+msgid "Source (Diaspora) text to convert to BBcode:"
+msgstr "源代(Diaspora)正文要翻译成BBCode:"
 
-#: ../../addon/membersince/membersince.php:18
-#: ../../addon.old/membersince/membersince.php:18
-msgid "Member since:"
-msgstr "客人从:"
+#: ../../mod/babel.php:31
+msgid "Source input: "
+msgstr "源代码输入:"
 
-#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20
-msgid "Three Dimensional Tic-Tac-Toe"
-msgstr "三维井字棋"
+#: ../../mod/babel.php:35
+msgid "bb2html (raw HTML): "
+msgstr "bb2html(生HTML): "
 
-#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53
-msgid "3D Tic-Tac-Toe"
-msgstr "三维井字棋"
+#: ../../mod/babel.php:39
+msgid "bb2html: "
+msgstr "bb2html:"
 
-#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58
-msgid "New game"
-msgstr "新游戏"
+#: ../../mod/babel.php:43
+msgid "bb2html2bb: "
+msgstr "bb2html2bb:"
+
+#: ../../mod/babel.php:47
+msgid "bb2md: "
+msgstr "bb2md:"
+
+#: ../../mod/babel.php:51
+msgid "bb2md2html: "
+msgstr "bb2md2html:"
+
+#: ../../mod/babel.php:55
+msgid "bb2dia2bb: "
+msgstr "bb2dia2bb:"
 
-#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59
-msgid "New game with handicap"
-msgstr "新游戏不利条件 "
+#: ../../mod/babel.php:59
+msgid "bb2md2html2bb: "
+msgstr "bb2md2html2bb:"
 
-#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60
-msgid ""
-"Three dimensional tic-tac-toe is just like the traditional game except that "
-"it is played on multiple levels simultaneously. "
-msgstr "三维井字棋跟传统的一样,除了完同时在多水平。"
+#: ../../mod/babel.php:69
+msgid "Source input (Diaspora format): "
+msgstr "源代输入(Diaspora形式):"
 
-#: ../../addon/tictac/tictac.php:61 ../../addon.old/tictac/tictac.php:61
-msgid ""
-"In this case there are three levels. You win by getting three in a row on "
-"any level, as well as up, down, and diagonally across the different levels."
-msgstr "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。"
+#: ../../mod/babel.php:74
+msgid "diaspora2bb: "
+msgstr "diaspora2bb: "
 
-#: ../../addon/tictac/tictac.php:63 ../../addon.old/tictac/tictac.php:63
-msgid ""
-"The handicap game disables the center position on the middle level because "
-"the player claiming this square often has an unfair advantage."
-msgstr "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。"
+#: ../../mod/common.php:42
+msgid "Common Friends"
+msgstr "普通朋友们"
 
-#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182
-msgid "You go first..."
-msgstr "æ\82¨å\85\88ä¸\8b..."
+#: ../../mod/common.php:78
+msgid "No contacts in common."
+msgstr "没æ\9c\89å\85±å\90\8cç\86\9f人ã\80\82"
 
-#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187
-msgid "I'm going first this time..."
-msgstr "这次我先下..."
+#: ../../mod/contacts.php:85 ../../mod/contacts.php:165
+msgid "Could not access contact record."
+msgstr "用不了熟人记录。"
 
-#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193
-msgid "You won!"
-msgstr "æ\82¨èµ¢äº\86ï¼\81"
+#: ../../mod/contacts.php:99
+msgid "Could not locate selected profile."
+msgstr "æ\89¾ä¸\8då\88°é\80\89æ\8b©ç\9a\84ç®\80ä»\8bã\80\82"
 
-#: ../../addon/tictac/tictac.php:199 ../../addon/tictac/tictac.php:224
-#: ../../addon.old/tictac/tictac.php:199 ../../addon.old/tictac/tictac.php:224
-msgid "\"Cat\" game!"
-msgstr "「猫子」游戏!"
+#: ../../mod/contacts.php:122
+msgid "Contact updated."
+msgstr "熟人更新了。"
 
-#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222
-msgid "I won!"
-msgstr "æ\88\91èµ¢äº\86ï¼\81"
+#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571
+msgid "Failed to update contact record."
+msgstr "æ\9b´æ\96°ç\86\9f人记å½\95失败äº\86ã\80\82"
 
-#: ../../addon/randplace/randplace.php:169
-#: ../../addon.old/randplace/randplace.php:169
-msgid "Randplace Settings"
-msgstr "随意下设置"
+#: ../../mod/contacts.php:187
+msgid "Contact has been blocked"
+msgstr "熟人拦了"
 
-#: ../../addon/randplace/randplace.php:171
-#: ../../addon.old/randplace/randplace.php:171
-msgid "Enable Randplace Plugin"
-msgstr "使随意下插件能用"
+#: ../../mod/contacts.php:187
+msgid "Contact has been unblocked"
+msgstr "熟人否拦了"
 
-#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39
-msgid "Post to Dreamwidth"
-msgstr "转播到Dreamwidth"
+#: ../../mod/contacts.php:201
+msgid "Contact has been ignored"
+msgstr "熟人不理了"
 
-#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70
-msgid "Dreamwidth Post Settings"
-msgstr "Dreamwidth转播设置"
+#: ../../mod/contacts.php:201
+msgid "Contact has been unignored"
+msgstr "熟人否不理了"
 
-#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72
-msgid "Enable dreamwidth Post Plugin"
-msgstr "使Dreamwidth转播插件可用"
+#: ../../mod/contacts.php:220
+msgid "Contact has been archived"
+msgstr "把联系存档了"
 
-#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77
-msgid "dreamwidth username"
-msgstr "Dreamwidth用户名"
+#: ../../mod/contacts.php:220
+msgid "Contact has been unarchived"
+msgstr "把联系从存档拿来了"
 
-#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82
-msgid "dreamwidth password"
-msgstr "Dreamwidth密码"
+#: ../../mod/contacts.php:244
+msgid "Do you really want to delete this contact?"
+msgstr "您真的想删除这个熟人吗?"
 
-#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87
-msgid "Post to dreamwidth by default"
-msgstr "默认地转播到Dreamwidth"
+#: ../../mod/contacts.php:263
+msgid "Contact has been removed."
+msgstr "熟人删除了。"
 
-#: ../../addon/remote_permissions/remote_permissions.php:45
-msgid "Remote Permissions Settings"
-msgstr "对外批准设置"
+#: ../../mod/contacts.php:301
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "您和%s是共同朋友们"
 
-#: ../../addon/remote_permissions/remote_permissions.php:46
-msgid ""
-"Allow recipients of your private posts to see the other recipients of the "
-"posts"
-msgstr "允许您私人文章接受者看别接受者。"
+#: ../../mod/contacts.php:305
+#, php-format
+msgid "You are sharing with %s"
+msgstr "您分享给%s"
 
-#: ../../addon/remote_permissions/remote_permissions.php:58
-msgid "Remote Permissions settings updated."
-msgstr "对外批准设置更新了。"
+#: ../../mod/contacts.php:310
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s给您分享"
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "Visible to"
-msgstr "可见的给"
+#: ../../mod/contacts.php:327
+msgid "Private communications are not available for this contact."
+msgstr "没有私人的沟通跟这个熟人"
 
-#: ../../addon/remote_permissions/remote_permissions.php:178
-msgid "may only be a partial list"
-msgstr "可能部分的单"
+#: ../../mod/contacts.php:330
+msgid "Never"
+msgstr "从未"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-#: ../../addon/altpager/altpager.php:99
-msgid "Global"
-msgstr "综合"
+#: ../../mod/contacts.php:334
+msgid "(Update was successful)"
+msgstr "(更新成功)"
 
-#: ../../addon/remote_permissions/remote_permissions.php:197
-msgid "The posts of every user on this server show the post recipients"
-msgstr "这网站所有用户的文章表示接受者"
+#: ../../mod/contacts.php:334
+msgid "(Update was not successful)"
+msgstr "(更新不成功)"
 
-#: ../../addon/remote_permissions/remote_permissions.php:198
-#: ../../addon/altpager/altpager.php:100
-msgid "Individual"
-msgstr "一个人的"
+#: ../../mod/contacts.php:336
+msgid "Suggest friends"
+msgstr "建议朋友们"
 
-#: ../../addon/remote_permissions/remote_permissions.php:198
-msgid "Each user chooses whether his/her posts show the post recipients"
-msgstr "各用户选择他问上是否表示接受者"
+#: ../../mod/contacts.php:340
+#, php-format
+msgid "Network type: %s"
+msgstr "网络种类: %s"
 
-#: ../../addon/startpage/startpage.php:83
-#: ../../addon.old/startpage/startpage.php:83
-msgid "Startpage Settings"
-msgstr "开始页设置"
+#: ../../mod/contacts.php:348
+msgid "View all contacts"
+msgstr "看所有的熟人"
 
-#: ../../addon/startpage/startpage.php:85
-#: ../../addon.old/startpage/startpage.php:85
-msgid "Home page to load after login  - leave blank for profile wall"
-msgstr "主页登录后表示-留空白为简介墙"
+#: ../../mod/contacts.php:356
+msgid "Toggle Blocked status"
+msgstr "交替拦配置"
 
-#: ../../addon/startpage/startpage.php:88
-#: ../../addon.old/startpage/startpage.php:88
-msgid "Examples: &quot;network&quot; or &quot;notifications/system&quot;"
-msgstr "例如:&quot;网络&quot;或&quot;通知/系统&quot;"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+msgid "Unignore"
+msgstr "停不理"
 
-#: ../../addon/geonames/geonames.php:143
-#: ../../addon.old/geonames/geonames.php:143
-msgid "Geonames settings updated."
-msgstr "Geonames设置更新了。"
+#: ../../mod/contacts.php:359 ../../mod/contacts.php:413
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210
+msgid "Ignore"
+msgstr "忽视"
 
-#: ../../addon/geonames/geonames.php:179
-#: ../../addon.old/geonames/geonames.php:179
-msgid "Geonames Settings"
-msgstr "Geonames设置"
+#: ../../mod/contacts.php:362
+msgid "Toggle Ignored status"
+msgstr "交替忽视现状"
 
-#: ../../addon/geonames/geonames.php:181
-#: ../../addon.old/geonames/geonames.php:181
-msgid "Enable Geonames Plugin"
-msgstr "使Geonames插件能用"
+#: ../../mod/contacts.php:366
+msgid "Unarchive"
+msgstr "从存档拿来"
 
-#: ../../addon/public_server/public_server.php:126
-#: ../../addon/testdrive/testdrive.php:94
-#: ../../addon.old/public_server/public_server.php:126
-#: ../../addon.old/testdrive/testdrive.php:94
-#, php-format
-msgid "Your account on %s will expire in a few days."
-msgstr "您账户在%s几天后过期了。"
+#: ../../mod/contacts.php:366
+msgid "Archive"
+msgstr "存档"
 
-#: ../../addon/public_server/public_server.php:127
-#: ../../addon.old/public_server/public_server.php:127
-msgid "Your Friendica account is about to expire."
-msgstr "您Friendica账户快过期。"
+#: ../../mod/contacts.php:369
+msgid "Toggle Archive status"
+msgstr "交替档案现状"
 
-#: ../../addon/public_server/public_server.php:128
-#: ../../addon.old/public_server/public_server.php:128
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your account on %2$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"
-msgstr "你好%1$s,⏎ ⏎您的账户在%2$s五天内过期。您会继续您的账户经由每30天至少一次登录。"
+#: ../../mod/contacts.php:372
+msgid "Repair"
+msgstr "维修"
 
-#: ../../addon/js_upload/js_upload.php:43
-#: ../../addon.old/js_upload/js_upload.php:43
-msgid "Upload a file"
-msgstr "上传文件"
+#: ../../mod/contacts.php:375
+msgid "Advanced Contact Settings"
+msgstr "专家熟人设置"
 
-#: ../../addon/js_upload/js_upload.php:44
-#: ../../addon.old/js_upload/js_upload.php:44
-msgid "Drop files here to upload"
-msgstr "在这儿放文件为上传"
+#: ../../mod/contacts.php:381
+msgid "Communications lost with this contact!"
+msgstr "联系跟这个熟人断开了!"
 
-#: ../../addon/js_upload/js_upload.php:46
-#: ../../addon.old/js_upload/js_upload.php:46
-msgid "Failed"
-msgstr "失败"
+#: ../../mod/contacts.php:384
+msgid "Contact Editor"
+msgstr "熟人编器"
 
-#: ../../addon/js_upload/js_upload.php:303
-#: ../../addon.old/js_upload/js_upload.php:297
-msgid "No files were uploaded."
-msgstr "没有文件上传。"
+#: ../../mod/contacts.php:387
+msgid "Profile Visibility"
+msgstr "简历可见量"
 
-#: ../../addon/js_upload/js_upload.php:309
-#: ../../addon.old/js_upload/js_upload.php:303
-msgid "Uploaded file is empty"
-msgstr "上传的文件空的"
+#: ../../mod/contacts.php:388
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr "请选择简介您想给%s显示他安全地看您的简介的时候。"
 
-#: ../../addon/js_upload/js_upload.php:332
-#: ../../addon.old/js_upload/js_upload.php:326
-msgid "File has an invalid extension, it should be one of "
-msgstr "文件扩展名无效的,应该是这些一个:"
+#: ../../mod/contacts.php:389
+msgid "Contact Information / Notes"
+msgstr "熟人信息/便条"
 
-#: ../../addon/js_upload/js_upload.php:343
-#: ../../addon.old/js_upload/js_upload.php:337
-msgid "Upload was cancelled, or server error encountered"
-msgstr "上传注销了,或相遇服务器错误"
+#: ../../mod/contacts.php:390
+msgid "Edit contact notes"
+msgstr "编辑熟人便条"
 
-#: ../../addon/forumlist/forumlist.php:67
-#: ../../addon.old/forumlist/forumlist.php:63
-msgid "show/hide"
-msgstr "表示/隐藏"
+#: ../../mod/contacts.php:396
+msgid "Block/Unblock contact"
+msgstr "拦/否拦熟人"
 
-#: ../../addon/forumlist/forumlist.php:81
-#: ../../addon.old/forumlist/forumlist.php:77
-msgid "No forum subscriptions"
-msgstr "没有评坛订阅"
+#: ../../mod/contacts.php:397
+msgid "Ignore contact"
+msgstr "忽视熟人"
 
-#: ../../addon/forumlist/forumlist.php:134
-#: ../../addon.old/forumlist/forumlist.php:131
-msgid "Forumlist settings updated."
-msgstr "评坛单设置更新了。"
+#: ../../mod/contacts.php:398
+msgid "Repair URL settings"
+msgstr "维修URL设置"
 
-#: ../../addon/forumlist/forumlist.php:162
-#: ../../addon.old/forumlist/forumlist.php:159
-msgid "Forumlist Settings"
-msgstr "评坛单设置"
+#: ../../mod/contacts.php:399
+msgid "View conversations"
+msgstr "看交流"
 
-#: ../../addon/forumlist/forumlist.php:164
-#: ../../addon.old/forumlist/forumlist.php:161
-msgid "Randomise forum list"
-msgstr "洗牌评坛单"
+#: ../../mod/contacts.php:401
+msgid "Delete contact"
+msgstr "删除熟人"
 
-#: ../../addon/forumlist/forumlist.php:167
-#: ../../addon.old/forumlist/forumlist.php:164
-msgid "Show forums on profile page"
-msgstr "表示评坛在简介页"
+#: ../../mod/contacts.php:405
+msgid "Last update:"
+msgstr "上个更新:"
 
-#: ../../addon/forumlist/forumlist.php:170
-#: ../../addon.old/forumlist/forumlist.php:167
-msgid "Show forums on network page"
-msgstr "表示评坛在网络页"
+#: ../../mod/contacts.php:407
+msgid "Update public posts"
+msgstr "更新公开文章"
 
-#: ../../addon/impressum/impressum.php:37
-#: ../../addon.old/impressum/impressum.php:37
-msgid "Impressum"
-msgstr "Impressum(法定的出版信息)"
+#: ../../mod/contacts.php:416
+msgid "Currently blocked"
+msgstr "现在拦的"
 
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:52
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:52
-#: ../../addon.old/impressum/impressum.php:84
-msgid "Site Owner"
-msgstr "网站主"
+#: ../../mod/contacts.php:417
+msgid "Currently ignored"
+msgstr "现在不理的"
 
-#: ../../addon/impressum/impressum.php:50
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:50
-#: ../../addon.old/impressum/impressum.php:88
-msgid "Email Address"
-msgstr "电子邮件地址"
+#: ../../mod/contacts.php:418
+msgid "Currently archived"
+msgstr "现在存档着"
 
-#: ../../addon/impressum/impressum.php:55
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:55
-#: ../../addon.old/impressum/impressum.php:86
-msgid "Postal Address"
-msgstr "邮政邮件地址"
+#: ../../mod/contacts.php:419 ../../mod/notifications.php:157
+#: ../../mod/notifications.php:204
+msgid "Hide this contact from others"
+msgstr "隐藏这个熟人给别人"
 
-#: ../../addon/impressum/impressum.php:61
-#: ../../addon.old/impressum/impressum.php:61
+#: ../../mod/contacts.php:419
 msgid ""
-"The impressum addon needs to be configured!<br />Please add at least the "
-"<tt>owner</tt> variable to your config file. For other variables please "
-"refer to the README file of the addon."
-msgstr "Impressum插件必须被设置!<br />请加至少<tt>owner</tt>变量在您的设置文件。关于别的变量请指插件的README文件。"
+"Replies/likes to your public posts <strong>may</strong> still be visible"
+msgstr "回答/喜欢关您公开文章<strong>会</strong>还可见的"
 
-#: ../../addon/impressum/impressum.php:84
-#: ../../addon.old/impressum/impressum.php:84
-msgid "The page operators name."
-msgstr "也运作员名。"
+#: ../../mod/contacts.php:470
+msgid "Suggestions"
+msgstr "建议"
 
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Site Owners Profile"
-msgstr "网站主的简介"
+#: ../../mod/contacts.php:473
+msgid "Suggest potential friends"
+msgstr "建议潜在朋友们"
 
-#: ../../addon/impressum/impressum.php:85
-#: ../../addon.old/impressum/impressum.php:85
-msgid "Profile address of the operator."
-msgstr "运作员的简介地址。"
+#: ../../mod/contacts.php:476 ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "所有的熟人"
 
-#: ../../addon/impressum/impressum.php:86
-#: ../../addon.old/impressum/impressum.php:86
-msgid "How to contact the operator via snail mail. You can use BBCode here."
-msgstr "怎么用邮政跟运作员联系。您会用BBCode。"
+#: ../../mod/contacts.php:479
+msgid "Show all contacts"
+msgstr "表示所有的熟人"
 
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid "Notes"
-msgstr "便条"
+#: ../../mod/contacts.php:482
+msgid "Unblocked"
+msgstr "不拦了"
 
-#: ../../addon/impressum/impressum.php:87
-#: ../../addon.old/impressum/impressum.php:87
-msgid ""
-"Additional notes that are displayed beneath the contact information. You can"
-" use BBCode here."
-msgstr "附加的便条表示在联系消息下。您会用BBCode。"
+#: ../../mod/contacts.php:485
+msgid "Only show unblocked contacts"
+msgstr "只表示不拦的熟人"
 
-#: ../../addon/impressum/impressum.php:88
-#: ../../addon.old/impressum/impressum.php:88
-msgid "How to contact the operator via email. (will be displayed obfuscated)"
-msgstr "怎么用电子邮件跟运作员联系。(将使混乱的表示)"
+#: ../../mod/contacts.php:489
+msgid "Blocked"
+msgstr "拦了"
 
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Footer note"
-msgstr "页脚便条"
+#: ../../mod/contacts.php:492
+msgid "Only show blocked contacts"
+msgstr "只表示拦的熟人"
 
-#: ../../addon/impressum/impressum.php:89
-#: ../../addon.old/impressum/impressum.php:89
-msgid "Text for the footer. You can use BBCode here."
-msgstr "页脚征文。您会用BBCode。"
+#: ../../mod/contacts.php:496
+msgid "Ignored"
+msgstr "忽视的"
 
-#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15
-msgid "Report Bug"
-msgstr "报案程序错误"
+#: ../../mod/contacts.php:499
+msgid "Only show ignored contacts"
+msgstr "只表示忽视的熟人"
 
-#: ../../addon/notimeline/notimeline.php:32
-#: ../../addon.old/notimeline/notimeline.php:32
-msgid "No Timeline settings updated."
-msgstr "没有时间链设置更新"
+#: ../../mod/contacts.php:503
+msgid "Archived"
+msgstr "在存档"
 
-#: ../../addon/notimeline/notimeline.php:56
-#: ../../addon.old/notimeline/notimeline.php:56
-msgid "No Timeline Settings"
-msgstr "没有时间链设置"
+#: ../../mod/contacts.php:506
+msgid "Only show archived contacts"
+msgstr "只表示档案熟人"
 
-#: ../../addon/notimeline/notimeline.php:58
-#: ../../addon.old/notimeline/notimeline.php:58
-msgid "Disable Archive selector on profile wall"
-msgstr "使在简介墙上档案选择器不能用"
+#: ../../mod/contacts.php:510
+msgid "Hidden"
+msgstr "隐藏的"
 
-#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51
-msgid "\"Blockem\" Settings"
-msgstr "「Blockem」配置"
+#: ../../mod/contacts.php:513
+msgid "Only show hidden contacts"
+msgstr "只表示隐藏的熟人"
 
-#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53
-msgid "Comma separated profile URLS to block"
-msgstr "逗号分简介URL为栏"
+#: ../../mod/contacts.php:561
+msgid "Mutual Friendship"
+msgstr "共同友谊"
 
-#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70
-msgid "BLOCKEM Settings saved."
-msgstr "「Blockem」配置保存了。"
+#: ../../mod/contacts.php:565
+msgid "is a fan of yours"
+msgstr "是您迷"
 
-#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105
-#, php-format
-msgid "Blocked %s - Click to open/close"
-msgstr "%s拦了-点击为开关"
+#: ../../mod/contacts.php:569
+msgid "you are a fan of"
+msgstr "你喜欢"
 
-#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160
-msgid "Unblock Author"
-msgstr "不拦作家"
+#: ../../mod/contacts.php:611
+msgid "Search your contacts"
+msgstr "搜索您的熟人"
 
-#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162
-msgid "Block Author"
-msgstr "æ\8b¦ä½\9c家"
+#: ../../mod/settings.php:23 ../../mod/photos.php:79
+msgid "everybody"
+msgstr "æ¯\8f人"
 
-#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194
-msgid "blockem settings updated"
-msgstr "blockem设置更新了"
+#: ../../mod/settings.php:35
+msgid "Additional features"
+msgstr "附加的特点"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-)"
-msgstr ":-)"
+#: ../../mod/settings.php:40 ../../mod/uexport.php:14
+msgid "Display settings"
+msgstr "表示设置"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid ":-("
-msgstr ":-("
+#: ../../mod/settings.php:46 ../../mod/uexport.php:20
+msgid "Connector settings"
+msgstr "插销设置"
 
-#: ../../addon/qcomment/qcomment.php:51
-#: ../../addon.old/qcomment/qcomment.php:51
-msgid "lol"
-msgstr "lol"
+#: ../../mod/settings.php:51 ../../mod/uexport.php:25
+msgid "Plugin settings"
+msgstr "插件设置"
 
-#: ../../addon/qcomment/qcomment.php:54
-#: ../../addon.old/qcomment/qcomment.php:54
-msgid "Quick Comment Settings"
-msgstr "快捷评论设置"
+#: ../../mod/settings.php:56 ../../mod/uexport.php:30
+msgid "Connected apps"
+msgstr "连接着应用"
 
-#: ../../addon/qcomment/qcomment.php:56
-#: ../../addon.old/qcomment/qcomment.php:56
-msgid ""
-"Quick comments are found near comment boxes, sometimes hidden. Click them to"
-" provide simple replies."
-msgstr "快捷评论是在评论文本框,有时候隐藏。点击它们为输入简单的回答。"
+#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80
+msgid "Export personal data"
+msgstr "出口私人信息"
 
-#: ../../addon/qcomment/qcomment.php:57
-#: ../../addon.old/qcomment/qcomment.php:57
-msgid "Enter quick comments, one per line"
-msgstr "输入快捷评论,一行一个"
+#: ../../mod/settings.php:66 ../../mod/uexport.php:40
+msgid "Remove account"
+msgstr "删除账户"
 
-#: ../../addon/qcomment/qcomment.php:75
-#: ../../addon.old/qcomment/qcomment.php:75
-msgid "Quick Comment settings saved."
-msgstr "快捷评论设置保存了。"
+#: ../../mod/settings.php:118
+msgid "Missing some important data!"
+msgstr "有的重要信息失踪的!"
 
-#: ../../addon/openstreetmap/openstreetmap.php:95
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid "Tile Server URL"
-msgstr "砖服务器URL"
+#: ../../mod/settings.php:121 ../../mod/settings.php:586
+msgid "Update"
+msgstr "更新"
 
-#: ../../addon/openstreetmap/openstreetmap.php:95
-#: ../../addon.old/openstreetmap/openstreetmap.php:71
-msgid ""
-"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" "
-"target=\"_blank\">public tile servers</a>"
-msgstr "一单<a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">公共砖服务器</a>"
+#: ../../mod/settings.php:227
+msgid "Failed to connect with email account using the settings provided."
+msgstr "不能连接电子邮件账户用输入的设置。"
 
-#: ../../addon/openstreetmap/openstreetmap.php:96
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "Default zoom"
-msgstr "默认变焦距"
+#: ../../mod/settings.php:232
+msgid "Email settings updated."
+msgstr "电子邮件设置更新了"
 
-#: ../../addon/openstreetmap/openstreetmap.php:96
-#: ../../addon.old/openstreetmap/openstreetmap.php:72
-msgid "The default zoom level. (1:world, 18:highest)"
-msgstr "默认变焦距。(1:世界, 18:最高)"
+#: ../../mod/settings.php:247
+msgid "Features updated"
+msgstr "特点更新了"
 
-#: ../../addon/group_text/group_text.php:46
-msgid "Group Text settings updated."
-msgstr "组正文设置更新了。"
+#: ../../mod/settings.php:307
+msgid "Passwords do not match. Password unchanged."
+msgstr "密码们不相配。密码没未改变的。"
 
-#: ../../addon/group_text/group_text.php:76
-#: ../../addon.old/group_text/group_text.php:76
-msgid "Group Text"
-msgstr "组\10正文"
+#: ../../mod/settings.php:312
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "空的密码禁止。密码没未改变的。"
 
-#: ../../addon/group_text/group_text.php:78
-#: ../../addon.old/group_text/group_text.php:78
-msgid "Use a text only (non-image) group selector in the \"group edit\" menu"
-msgstr "用光正文(无图片)组选择器在「组编辑」单"
+#: ../../mod/settings.php:323
+msgid "Password changed."
+msgstr "密码变化了。"
 
-#: ../../addon/libravatar/libravatar.php:14
-#: ../../addon.old/libravatar/libravatar.php:14
-msgid "Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"
-msgstr "安装不了Libravatar。<br>它要求PHP>=5.3"
+#: ../../mod/settings.php:325
+msgid "Password update failed. Please try again."
+msgstr "密码更新失败了。请再试。"
 
-#: ../../addon/libravatar/libravatar.php:73
-#: ../../addon/gravatar/gravatar.php:71
-#: ../../addon.old/libravatar/libravatar.php:73
-#: ../../addon.old/gravatar/gravatar.php:71
-msgid "generic profile image"
-msgstr "通用简介图片"
+#: ../../mod/settings.php:390
+msgid " Please use a shorter name."
+msgstr "请用短一点个名。"
 
-#: ../../addon/libravatar/libravatar.php:74
-#: ../../addon/gravatar/gravatar.php:72
-#: ../../addon.old/libravatar/libravatar.php:74
-#: ../../addon.old/gravatar/gravatar.php:72
-msgid "random geometric pattern"
-msgstr "随机的几何图案"
+#: ../../mod/settings.php:392
+msgid " Name too short."
+msgstr "名字太短。"
 
-#: ../../addon/libravatar/libravatar.php:75
-#: ../../addon/gravatar/gravatar.php:73
-#: ../../addon.old/libravatar/libravatar.php:75
-#: ../../addon.old/gravatar/gravatar.php:73
-msgid "monster face"
-msgstr "怪物面子"
+#: ../../mod/settings.php:398
+msgid " Not valid email."
+msgstr " 电子邮件地址无效."
 
-#: ../../addon/libravatar/libravatar.php:76
-#: ../../addon/gravatar/gravatar.php:74
-#: ../../addon.old/libravatar/libravatar.php:76
-#: ../../addon.old/gravatar/gravatar.php:74
-msgid "computer generated face"
-msgstr "电脑造成的面子"
+#: ../../mod/settings.php:400
+msgid " Cannot change to that email."
+msgstr "不能变化到这个邮件地址。"
 
-#: ../../addon/libravatar/libravatar.php:77
-#: ../../addon/gravatar/gravatar.php:75
-#: ../../addon.old/libravatar/libravatar.php:77
-#: ../../addon.old/gravatar/gravatar.php:75
-msgid "retro arcade style face"
-msgstr "复古游乐场式面子"
+#: ../../mod/settings.php:454
+msgid "Private forum has no privacy permissions. Using default privacy group."
+msgstr "私人评坛没有隐私批准。默认隐私组用者。"
 
-#: ../../addon/libravatar/libravatar.php:83
-#: ../../addon.old/libravatar/libravatar.php:83
-#, php-format
-msgid "Your PHP version %s is lower than the required PHP >= 5.3."
-msgstr "您PHP版体数%s是比要求的5.3少。"
+#: ../../mod/settings.php:458
+msgid "Private forum has no privacy permissions and no default privacy group."
+msgstr "私人评坛没有隐私批准或默认隐私组。"
 
-#: ../../addon/libravatar/libravatar.php:84
-#: ../../addon.old/libravatar/libravatar.php:84
-msgid "This addon is not functional on your server."
-msgstr "这个加件在您的服务器不可用的"
+#: ../../mod/settings.php:559 ../../mod/settings.php:585
+#: ../../mod/settings.php:621
+msgid "Add application"
+msgstr "加入应用"
 
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/libravatar/libravatar.php:93
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid "Information"
-msgstr "信息"
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
+msgid "Redirect"
+msgstr "重定向"
 
-#: ../../addon/libravatar/libravatar.php:93
-#: ../../addon.old/libravatar/libravatar.php:93
-msgid ""
-"Gravatar addon is installed. Please disable the Gravatar addon.<br>The "
-"Libravatar addon will fall back to Gravatar if nothing was found at "
-"Libravatar."
-msgstr "Gravatar加件安装着。请使Gravatar加件不可用。<br>如果找不到什么在Libravatar加件可依靠的是Gravatar。"
+#: ../../mod/settings.php:566 ../../mod/settings.php:592
+msgid "Icon url"
+msgstr "图符URL"
 
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/libravatar/libravatar.php:100
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Default avatar image"
-msgstr "默认纸娃娃系统"
+#: ../../mod/settings.php:577
+msgid "You can't edit this application."
+msgstr "您不能编辑这个应用。"
 
-#: ../../addon/libravatar/libravatar.php:100
-#: ../../addon.old/libravatar/libravatar.php:100
-msgid "Select default avatar image if none was found. See README"
-msgstr "选择默认纸娃娃系统如果一个也找不到。看README"
+#: ../../mod/settings.php:620
+msgid "Connected Apps"
+msgstr "连接着应用"
 
-#: ../../addon/libravatar/libravatar.php:112
-#: ../../addon.old/libravatar/libravatar.php:112
-msgid "Libravatar settings updated."
-msgstr "Libravatar设置更新了。"
+#: ../../mod/settings.php:622 ../../mod/editpost.php:109
+#: ../../mod/content.php:751 ../../object/Item.php:110
+msgid "Edit"
+msgstr "编辑"
 
-#: ../../addon/libertree/libertree.php:36
-#: ../../addon.old/libertree/libertree.php:36
-msgid "Post to libertree"
-msgstr "转播到libertree"
+#: ../../mod/settings.php:624
+msgid "Client key starts with"
+msgstr "客户钥匙头字是"
 
-#: ../../addon/libertree/libertree.php:67
-#: ../../addon.old/libertree/libertree.php:67
-msgid "libertree Post Settings"
-msgstr "libertree转播设置"
+#: ../../mod/settings.php:625
+msgid "No name"
+msgstr "无名"
 
-#: ../../addon/libertree/libertree.php:69
-#: ../../addon.old/libertree/libertree.php:69
-msgid "Enable Libertree Post Plugin"
-msgstr "使Libertree转播插件可用"
+#: ../../mod/settings.php:626
+msgid "Remove authorization"
+msgstr "撤消权能"
 
-#: ../../addon/libertree/libertree.php:74
-#: ../../addon.old/libertree/libertree.php:74
-msgid "Libertree API token"
-msgstr "Libertree API令牌"
+#: ../../mod/settings.php:638
+msgid "No Plugin settings configured"
+msgstr "没插件设置配置了"
 
-#: ../../addon/libertree/libertree.php:79
-#: ../../addon.old/libertree/libertree.php:79
-msgid "Libertree site URL"
-msgstr "Libertree网站URL"
+#: ../../mod/settings.php:660
+msgid "Off"
+msgstr "关"
 
-#: ../../addon/libertree/libertree.php:84
-#: ../../addon.old/libertree/libertree.php:84
-msgid "Post to Libertree by default"
-msgstr "默认地转播到Libertree"
+#: ../../mod/settings.php:660
+msgid "On"
+msgstr "开"
 
-#: ../../addon/altpager/altpager.php:46
-#: ../../addon.old/altpager/altpager.php:46
-msgid "Altpager settings updated."
-msgstr "Altpager设置更新了。"
+#: ../../mod/settings.php:668
+msgid "Additional Features"
+msgstr "附加的特点"
 
-#: ../../addon/altpager/altpager.php:83
-#: ../../addon.old/altpager/altpager.php:79
-msgid "Alternate Pagination Setting"
-msgstr "供替换的分页设置"
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
+msgstr "包括的支持为%s连通性是%s"
 
-#: ../../addon/altpager/altpager.php:85
-#: ../../addon.old/altpager/altpager.php:81
-msgid "Use links to \"newer\" and \"older\" pages in place of page numbers?"
-msgstr "用到「更新」和「更旧」页代替页数?"
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "enabled"
+msgstr "能够做的"
 
-#: ../../addon/altpager/altpager.php:99
-msgid "Force global use of the alternate pager"
-msgstr "让大家用供替换的分页"
+#: ../../mod/settings.php:681 ../../mod/settings.php:682
+msgid "disabled"
+msgstr "使不能用"
 
-#: ../../addon/altpager/altpager.php:100
-msgid "Each user chooses whether to use the alternate pager"
-msgstr "每用户选择是否用供替换的分页"
+#: ../../mod/settings.php:682
+msgid "StatusNet"
+msgstr "StatusNet"
 
-#: ../../addon/mathjax/mathjax.php:37 ../../addon.old/mathjax/mathjax.php:37
-msgid ""
-"The MathJax addon renders mathematical formulae written using the LaTeX "
-"syntax surrounded by the usual $$ or an eqnarray block in the postings of "
-"your wall,network tab and private mail."
-msgstr "MathJax插件表示用LaTeX句法的数学公式,围绕$$或者eqnarray快,在您墙,网络分页和私人收件箱的文章。"
+#: ../../mod/settings.php:714
+msgid "Email access is disabled on this site."
+msgstr "这个网站没有邮件使用权"
 
-#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38
-msgid "Use the MathJax renderer"
-msgstr "用MathJax表示器"
+#: ../../mod/settings.php:721
+msgid "Connector Settings"
+msgstr "连接器设置"
 
-#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
-msgid "MathJax Base URL"
-msgstr "MathJax基础URL"
+#: ../../mod/settings.php:726
+msgid "Email/Mailbox Setup"
+msgstr "邮件收件箱设置"
 
-#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
+#: ../../mod/settings.php:727
 msgid ""
-"The URL for the javascript file that should be included to use MathJax. Can "
-"be either the MathJax CDN or another installation of MathJax."
-msgstr "URL JavaScript文件应该包括为用MathJax。可以MathJax CDN或者别的MathJax安装。"
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
+msgstr "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。"
 
-#: ../../addon/editplain/editplain.php:46
-#: ../../addon.old/group_text/group_text.php:46
-#: ../../addon.old/editplain/editplain.php:46
-msgid "Editplain settings updated."
-msgstr "Editplain设置更新了"
+#: ../../mod/settings.php:728
+msgid "Last successful email check:"
+msgstr "上个成功收件箱检查:"
 
-#: ../../addon/editplain/editplain.php:76
-#: ../../addon.old/editplain/editplain.php:76
-msgid "Editplain Settings"
-msgstr "Editplain设置"
+#: ../../mod/settings.php:730
+msgid "IMAP server name:"
+msgstr "IMAP服务器名字:"
 
-#: ../../addon/editplain/editplain.php:78
-#: ../../addon.old/editplain/editplain.php:78
-msgid "Disable richtext status editor"
-msgstr "使richtext现状编辑 不能用"
+#: ../../mod/settings.php:731
+msgid "IMAP port:"
+msgstr "IMAP服务器端口:"
 
-#: ../../addon/gravatar/gravatar.php:89
-#: ../../addon.old/gravatar/gravatar.php:89
-msgid ""
-"Libravatar addon is installed, too. Please disable Libravatar addon or this "
-"Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if "
-"nothing was found at Libravatar."
-msgstr "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。<br>Libravatar加件没找到在Libravatar的时候可依靠的是Gravatar"
+#: ../../mod/settings.php:732
+msgid "Security:"
+msgstr "安全:"
 
-#: ../../addon/gravatar/gravatar.php:96
-#: ../../addon.old/gravatar/gravatar.php:96
-msgid "Select default avatar image if none was found at Gravatar. See README"
-msgstr "如果Gravatar上没找到纸娃娃系统选择默认的。看README"
+#: ../../mod/settings.php:733
+msgid "Email login name:"
+msgstr "邮件登记名:"
 
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Rating of images"
-msgstr "照相评定"
+#: ../../mod/settings.php:734
+msgid "Email password:"
+msgstr "邮件密码:"
 
-#: ../../addon/gravatar/gravatar.php:97
-#: ../../addon.old/gravatar/gravatar.php:97
-msgid "Select the appropriate avatar rating for your site. See README"
-msgstr "选择适合您网站的纸娃娃系统。看README"
+#: ../../mod/settings.php:735
+msgid "Reply-to address:"
+msgstr "回答地址:"
 
-#: ../../addon/gravatar/gravatar.php:111
-#: ../../addon.old/gravatar/gravatar.php:111
-msgid "Gravatar settings updated."
-msgstr "Gravatar设置更新了。"
+#: ../../mod/settings.php:736
+msgid "Send public posts to all email contacts:"
+msgstr "发公开的文章给所有的邮件熟人:"
 
-#: ../../addon/testdrive/testdrive.php:95
-#: ../../addon.old/testdrive/testdrive.php:95
-msgid "Your Friendica test account is about to expire."
-msgstr "您Friendica化验账户快过期了。"
+#: ../../mod/settings.php:737
+msgid "Action after import:"
+msgstr "进口后行动:"
 
-#: ../../addon/testdrive/testdrive.php:96
-#: ../../addon.old/testdrive/testdrive.php:96
-#, php-format
-msgid ""
-"Hi %1$s,\n"
-"\n"
-"Your test account on %2$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."
-msgstr "你好%1$s,⏎ ⏎您化验账户在%2$s五天内将过期。我们希望您享受了这个试车和用这个机会为您综合社会交通找持久的Friendica网站。一单公开的网站是在http://dir.friendica.com/siteinfo。为多消息安排您自己的Friendica服务器请看工程网站在http://friendica.com。"
+#: ../../mod/settings.php:737
+msgid "Mark as seen"
+msgstr "标注看过"
 
-#: ../../addon/pageheader/pageheader.php:50
-#: ../../addon.old/pageheader/pageheader.php:50
-msgid "\"pageheader\" Settings"
-msgstr "\"pageheader"
+#: ../../mod/settings.php:737
+msgid "Move to folder"
+msgstr "搬到文件夹"
 
-#: ../../addon/pageheader/pageheader.php:68
-#: ../../addon.old/pageheader/pageheader.php:68
-msgid "pageheader Settings saved."
-msgstr "pageHeader配置保存了。"
+#: ../../mod/settings.php:738
+msgid "Move to folder:"
+msgstr "搬到文件夹:"
 
-#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39
-msgid "Post to Insanejournal"
-msgstr "转æ\92­å\88°Insanejournal"
+#: ../../mod/settings.php:809
+msgid "Display Settings"
+msgstr "表示设置"
 
-#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70
-msgid "InsaneJournal Post Settings"
-msgstr "Insanejournal转播设置"
+#: ../../mod/settings.php:815 ../../mod/settings.php:826
+msgid "Display Theme:"
+msgstr "显示主题:"
 
-#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72
-msgid "Enable InsaneJournal Post Plugin"
-msgstr "使InsaneJournal转播插件可用"
+#: ../../mod/settings.php:816
+msgid "Mobile Theme:"
+msgstr "手机主题:"
 
-#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77
-msgid "InsaneJournal username"
-msgstr "InsaneJournal用户名"
+#: ../../mod/settings.php:817
+msgid "Update browser every xx seconds"
+msgstr "更新游览器每XX秒"
 
-#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82
-msgid "InsaneJournal password"
-msgstr "InsaneJournal密码"
+#: ../../mod/settings.php:817
+msgid "Minimum of 10 seconds, no maximum"
+msgstr "最小10秒,没有上限"
 
-#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87
-msgid "Post to InsaneJournal by default"
-msgstr "默认地转播到InsaneJournal"
+#: ../../mod/settings.php:818
+msgid "Number of items to display per page:"
+msgstr "每页表示多少项目:"
 
-#: ../../addon/jappixmini/jappixmini.php:266
-#: ../../addon.old/jappixmini/jappixmini.php:266
-msgid "Jappix Mini addon settings"
-msgstr "Jappix Mini加件设置"
+#: ../../mod/settings.php:818
+msgid "Maximum of 100 items"
+msgstr "最多100项目"
 
-#: ../../addon/jappixmini/jappixmini.php:268
-#: ../../addon.old/jappixmini/jappixmini.php:268
-msgid "Activate addon"
-msgstr "使加件可用"
+#: ../../mod/settings.php:819
+msgid "Don't show emoticons"
+msgstr "别表示请表符号"
 
-#: ../../addon/jappixmini/jappixmini.php:271
-#: ../../addon.old/jappixmini/jappixmini.php:271
-msgid ""
-"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
-msgstr "<em>别</em>把Jappixmini聊小窗插入网用户界面"
+#: ../../mod/settings.php:895
+msgid "Normal Account Page"
+msgstr "平常账户页"
 
-#: ../../addon/jappixmini/jappixmini.php:274
-#: ../../addon.old/jappixmini/jappixmini.php:274
-msgid "Jabber username"
-msgstr "Jabber用户名"
+#: ../../mod/settings.php:896
+msgid "This account is a normal personal profile"
+msgstr "这个帐户是正常私人简介"
 
-#: ../../addon/jappixmini/jappixmini.php:277
-#: ../../addon.old/jappixmini/jappixmini.php:277
-msgid "Jabber server"
-msgstr "Jabber服务器"
+#: ../../mod/settings.php:899
+msgid "Soapbox Page"
+msgstr "演讲台页"
 
-#: ../../addon/jappixmini/jappixmini.php:281
-#: ../../addon.old/jappixmini/jappixmini.php:281
-msgid "Jabber BOSH host"
-msgstr "Jabber BOSH主机"
+#: ../../mod/settings.php:900
+msgid "Automatically approve all connection/friend requests as read-only fans"
+msgstr "自动批准所有联络/友谊要求当只看的迷"
 
-#: ../../addon/jappixmini/jappixmini.php:285
-#: ../../addon.old/jappixmini/jappixmini.php:285
-msgid "Jabber password"
-msgstr "Jabber密码"
+#: ../../mod/settings.php:903
+msgid "Community Forum/Celebrity Account"
+msgstr "社会评坛/名人账户"
 
-#: ../../addon/jappixmini/jappixmini.php:290
-#: ../../addon.old/jappixmini/jappixmini.php:290
-msgid "Encrypt Jabber password with Friendica password (recommended)"
-msgstr "把Jabber密码跟Friendica密码加密(推荐的)"
+#: ../../mod/settings.php:904
+msgid ""
+"Automatically approve all connection/friend requests as read-write fans"
+msgstr "自动批准所有联络/友谊要求当看写的迷"
 
-#: ../../addon/jappixmini/jappixmini.php:293
-#: ../../addon.old/jappixmini/jappixmini.php:293
-msgid "Friendica password"
-msgstr "Friendica密码"
+#: ../../mod/settings.php:907
+msgid "Automatic Friend Page"
+msgstr "自动朋友页"
 
-#: ../../addon/jappixmini/jappixmini.php:296
-#: ../../addon.old/jappixmini/jappixmini.php:296
-msgid "Approve subscription requests from Friendica contacts automatically"
-msgstr "自动地批准从Friendica熟人的订阅要求"
+#: ../../mod/settings.php:908
+msgid "Automatically approve all connection/friend requests as friends"
+msgstr "自动批准所有联络/友谊要求当朋友"
 
-#: ../../addon/jappixmini/jappixmini.php:299
-#: ../../addon.old/jappixmini/jappixmini.php:299
-msgid "Subscribe to Friendica contacts automatically"
-msgstr "自动地订阅Friendica熟人"
+#: ../../mod/settings.php:911
+msgid "Private Forum [Experimental]"
+msgstr "隐私评坛[实验性的 ]"
 
-#: ../../addon/jappixmini/jappixmini.php:302
-#: ../../addon.old/jappixmini/jappixmini.php:302
-msgid "Purge internal list of jabber addresses of contacts"
-msgstr "把熟人jabber地址从内部单"
+#: ../../mod/settings.php:912
+msgid "Private forum - approved members only"
+msgstr "隐私评坛-只批准的成员"
 
-#: ../../addon/jappixmini/jappixmini.php:308
-#: ../../addon.old/jappixmini/jappixmini.php:308
-msgid "Add contact"
-msgstr "加熟人"
+#: ../../mod/settings.php:924
+msgid "OpenID:"
+msgstr "OpenID:"
+
+#: ../../mod/settings.php:924
+msgid "(Optional) Allow this OpenID to login to this account."
+msgstr "(可选的)许这个OpenID这个账户登记。"
 
-#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37
-msgid "View Source"
-msgstr "看源代码"
+#: ../../mod/settings.php:934
+msgid "Publish your default profile in your local site directory?"
+msgstr "出版您默认简介在您当地的网站目录?"
 
-#: ../../addon/statusnet/statusnet.php:138
-#: ../../addon.old/statusnet/statusnet.php:134
-msgid "Post to StatusNet"
-msgstr "发送到StatusNet"
+#: ../../mod/settings.php:940
+msgid "Publish your default profile in the global social directory?"
+msgstr "出版您默认简介在综合社会目录?"
 
-#: ../../addon/statusnet/statusnet.php:180
-#: ../../addon.old/statusnet/statusnet.php:176
-msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
-msgstr "请联系您的网站行政人员。<br />提供的API URL无效。"
+#: ../../mod/settings.php:948
+msgid "Hide your contact/friend list from viewers of your default profile?"
+msgstr "藏起来  发现您的熟人/朋友单不让这个简介看着看?\n "
 
-#: ../../addon/statusnet/statusnet.php:208
-#: ../../addon.old/statusnet/statusnet.php:204
-msgid "We could not contact the StatusNet API with the Path you entered."
-msgstr "我们不能联系StatusNet API在您输入的路径。"
+#: ../../mod/settings.php:952
+msgid "Hide your profile details from unknown viewers?"
+msgstr "使简介信息给陌生的看着看不了?"
 
-#: ../../addon/statusnet/statusnet.php:238
-#: ../../addon.old/statusnet/statusnet.php:232
-msgid "StatusNet settings updated."
-msgstr "StatusNet设置更新了。"
+#: ../../mod/settings.php:957
+msgid "Allow friends to post to your profile page?"
+msgstr "允许朋友们贴文章在您的简介页?"
 
-#: ../../addon/statusnet/statusnet.php:269
-#: ../../addon.old/statusnet/statusnet.php:257
-msgid "StatusNet Posting Settings"
-msgstr "StatusNet发送设置"
+#: ../../mod/settings.php:963
+msgid "Allow friends to tag your posts?"
+msgstr "允许朋友们标签您的文章?"
 
-#: ../../addon/statusnet/statusnet.php:283
-#: ../../addon.old/statusnet/statusnet.php:271
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "综合可用的StatusNet OAuthKeys"
+#: ../../mod/settings.php:969
+msgid "Allow us to suggest you as a potential friend to new members?"
+msgstr "允许我们建议您潜力朋友给新成员?"
 
-#: ../../addon/statusnet/statusnet.php:284
-#: ../../addon.old/statusnet/statusnet.php:272
-msgid ""
-"There are preconfigured OAuth key pairs for some StatusNet servers "
-"available. If you are useing one of them, please use these credentials. If "
-"not feel free to connect to any other StatusNet instance (see below)."
-msgstr "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。"
+#: ../../mod/settings.php:975
+msgid "Permit unknown people to send you private mail?"
+msgstr "允许生人寄给您私人邮件?"
 
-#: ../../addon/statusnet/statusnet.php:292
-#: ../../addon.old/statusnet/statusnet.php:280
-msgid "Provide your own OAuth Credentials"
-msgstr "提供您自己的OAuth证件"
+#: ../../mod/settings.php:983
+msgid "Profile is <strong>not published</strong>."
+msgstr "简介是<strong>没出版</strong>"
 
-#: ../../addon/statusnet/statusnet.php:293
-#: ../../addon.old/statusnet/statusnet.php:281
-msgid ""
-"No consumer key pair for StatusNet found. Register your Friendica Account as"
-" an desktop client on your StatusNet account, copy the consumer key pair "
-"here and enter the API base root.<br />Before you register your own OAuth "
-"key pair ask the administrator if there is already a key pair for this "
-"Friendica installation at your favorited StatusNet installation."
-msgstr "找不到「consumer key」双为StatusNet。注册您Friendica账户当「desktop client」在您的StatusNet账户,粘贴「consumer key」双这儿和输入API基础根。<br />您登记您的OAuth钥匙双前问行政人员已经有没有钥匙双为这个Friendica安装在您最喜欢的StatusNet安装。"
+#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
+msgid "or"
+msgstr "或者"
 
-#: ../../addon/statusnet/statusnet.php:295
-#: ../../addon.old/statusnet/statusnet.php:283
-msgid "OAuth Consumer Key"
-msgstr "Oauth消费者钥匙"
+#: ../../mod/settings.php:991
+msgid "Your Identity Address is"
+msgstr "您的同一个人地址是"
 
-#: ../../addon/statusnet/statusnet.php:298
-#: ../../addon.old/statusnet/statusnet.php:286
-msgid "OAuth Consumer Secret"
-msgstr "Oauth消费者密码"
+#: ../../mod/settings.php:1002
+msgid "Automatically expire posts after this many days:"
+msgstr "自动地过期文章这数天:"
 
-#: ../../addon/statusnet/statusnet.php:301
-#: ../../addon.old/statusnet/statusnet.php:289
-msgid "Base API Path (remember the trailing /)"
-msgstr "基础API地址(注意最后的/)"
+#: ../../mod/settings.php:1002
+msgid "If empty, posts will not expire. Expired posts will be deleted"
+msgstr "如果空的,文章不会过期。过期的文章被删除"
 
-#: ../../addon/statusnet/statusnet.php:322
-#: ../../addon.old/statusnet/statusnet.php:310
-msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。"
+#: ../../mod/settings.php:1003
+msgid "Advanced expiration settings"
+msgstr "先进的过期设置"
 
-#: ../../addon/statusnet/statusnet.php:323
-#: ../../addon.old/statusnet/statusnet.php:311
-msgid "Log in with StatusNet"
-msgstr "用StatusNet登记"
+#: ../../mod/settings.php:1004
+msgid "Advanced Expiration"
+msgstr "先进的过期"
 
-#: ../../addon/statusnet/statusnet.php:325
-#: ../../addon.old/statusnet/statusnet.php:313
-msgid "Copy the security code from StatusNet here"
-msgstr "复制安全密码从StatusNet这儿"
+#: ../../mod/settings.php:1005
+msgid "Expire posts:"
+msgstr "把文章过期:"
 
-#: ../../addon/statusnet/statusnet.php:331
-#: ../../addon.old/statusnet/statusnet.php:319
-msgid "Cancel Connection Process"
-msgstr "注销连接过程 "
+#: ../../mod/settings.php:1006
+msgid "Expire personal notes:"
+msgstr "把私人便条过期:"
 
-#: ../../addon/statusnet/statusnet.php:333
-#: ../../addon.old/statusnet/statusnet.php:321
-msgid "Current StatusNet API is"
-msgstr "现在StatusNet API是"
+#: ../../mod/settings.php:1007
+msgid "Expire starred posts:"
+msgstr "把星的文章过期:"
 
-#: ../../addon/statusnet/statusnet.php:334
-#: ../../addon.old/statusnet/statusnet.php:322
-msgid "Cancel StatusNet Connection"
-msgstr "注销StatusNet连接"
+#: ../../mod/settings.php:1008
+msgid "Expire photos:"
+msgstr "把照片过期:"
 
-#: ../../addon/statusnet/statusnet.php:345 ../../addon/twitter/twitter.php:200
-#: ../../addon.old/statusnet/statusnet.php:333
-#: ../../addon.old/twitter/twitter.php:189
-msgid "Currently connected to: "
-msgstr "现在连接到:"
+#: ../../mod/settings.php:1009
+msgid "Only expire posts by others:"
+msgstr "只别人的文章过期:"
 
-#: ../../addon/statusnet/statusnet.php:346
-#: ../../addon.old/statusnet/statusnet.php:334
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"
+#: ../../mod/settings.php:1035
+msgid "Account Settings"
+msgstr "帐户设置"
 
-#: ../../addon/statusnet/statusnet.php:348
-#: ../../addon.old/statusnet/statusnet.php:336
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to StatusNet will lead the visitor to a blank page "
-"informing the visitor that the access to your profile has been restricted."
-msgstr "<strong>注意</strong>: 由于您的隐私设置(<em>隐藏您的简介内容为生看者?</em>)超链接可能包括在公文章转播到StatusNets会带领来客到空白页讲他看您的简介被限制。"
+#: ../../mod/settings.php:1043
+msgid "Password Settings"
+msgstr "密码设置"
 
-#: ../../addon/statusnet/statusnet.php:351
-#: ../../addon.old/statusnet/statusnet.php:339
-msgid "Allow posting to StatusNet"
-msgstr "许放在StatusNet"
+#: ../../mod/settings.php:1044
+msgid "New Password:"
+msgstr "新密码:"
 
-#: ../../addon/statusnet/statusnet.php:354
-#: ../../addon.old/statusnet/statusnet.php:342
-msgid "Send public postings to StatusNet by default"
-msgstr "默认发送公开文章在StatusNet"
+#: ../../mod/settings.php:1045
+msgid "Confirm:"
+msgstr "确认:"
 
-#: ../../addon/statusnet/statusnet.php:358
-msgid ""
-"Mirror all posts from statusnet that are no replies or repeated messages"
-msgstr "复制所有文章从statusnet除了回答或重复的通知以外"
+#: ../../mod/settings.php:1045
+msgid "Leave password fields blank unless changing"
+msgstr "非变化留空密码栏"
 
-#: ../../addon/statusnet/statusnet.php:362
-msgid "Shortening method that optimizes the post"
-msgstr "缩短方法优化文章"
+#: ../../mod/settings.php:1049
+msgid "Basic Settings"
+msgstr "基础设置"
 
-#: ../../addon/statusnet/statusnet.php:366
-#: ../../addon.old/statusnet/statusnet.php:345
-msgid "Send linked #-tags and @-names to StatusNet"
-msgstr "转播连接的#标签盒@名到StatusNet"
+#: ../../mod/settings.php:1051
+msgid "Email Address:"
+msgstr "电子邮件地址:"
 
-#: ../../addon/statusnet/statusnet.php:371 ../../addon/twitter/twitter.php:226
-#: ../../addon.old/statusnet/statusnet.php:350
-#: ../../addon.old/twitter/twitter.php:206
-msgid "Clear OAuth configuration"
-msgstr "清理出OAuth设置"
+#: ../../mod/settings.php:1052
+msgid "Your Timezone:"
+msgstr "您的时区:"
 
-#: ../../addon/statusnet/statusnet.php:745
-#: ../../addon.old/statusnet/statusnet.php:568
-msgid "API URL"
-msgstr "API URL"
+#: ../../mod/settings.php:1053
+msgid "Default Post Location:"
+msgstr "默认文章位置:"
 
-#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19
-msgid "Infinite Improbability Drive"
-msgstr "无穷不至于机车"
+#: ../../mod/settings.php:1054
+msgid "Use Browser Location:"
+msgstr "用游览器位置:"
 
-#: ../../addon/tumblr/tumblr.php:144
-msgid "You are now authenticated to tumblr."
-msgstr "现在tumblr证明您是真的"
+#: ../../mod/settings.php:1057
+msgid "Security and Privacy Settings"
+msgstr "安全和隐私设置"
 
-#: ../../addon/tumblr/tumblr.php:145
-msgid "return to the connector page"
-msgstr "会连接器页"
+#: ../../mod/settings.php:1059
+msgid "Maximum Friend Requests/Day:"
+msgstr "最多友谊要求个天:"
 
-#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36
-msgid "Post to Tumblr"
-msgstr "发送到Tumblr"
+#: ../../mod/settings.php:1059 ../../mod/settings.php:1089
+msgid "(to prevent spam abuse)"
+msgstr "(为防止垃圾邮件滥用)"
 
-#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67
-msgid "Tumblr Post Settings"
-msgstr "Tumblr发送设置"
+#: ../../mod/settings.php:1060
+msgid "Default Post Permissions"
+msgstr "默认文章准许"
+
+#: ../../mod/settings.php:1061
+msgid "(click to open/close)"
+msgstr "(点击为打开/关闭)"
 
-#: ../../addon/tumblr/tumblr.php:188
-msgid "(Re-)Authenticate your tumblr page"
-msgstr "再认证您的tumblr页"
+#: ../../mod/settings.php:1070 ../../mod/photos.php:1140
+#: ../../mod/photos.php:1506
+msgid "Show to Groups"
+msgstr "给组表示"
 
-#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69
-msgid "Enable Tumblr Post Plugin"
-msgstr "使Tumblr发送插件能够"
+#: ../../mod/settings.php:1071 ../../mod/photos.php:1141
+#: ../../mod/photos.php:1507
+msgid "Show to Contacts"
+msgstr "给熟人表示"
 
-#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84
-msgid "Post to Tumblr by default"
-msgstr "默认地给Tumblr发送"
+#: ../../mod/settings.php:1072
+msgid "Default Private Post"
+msgstr "默认私人文章"
 
-#: ../../addon/tumblr/tumblr.php:217
-msgid "Post to page:"
-msgstr "放在页:"
+#: ../../mod/settings.php:1073
+msgid "Default Public Post"
+msgstr "默认公开文章"
 
-#: ../../addon/tumblr/tumblr.php:228
-msgid "You are not authenticated to tumblr"
-msgstr "tumblr没证明您是真的"
+#: ../../mod/settings.php:1077
+msgid "Default Permissions for New Posts"
+msgstr "默认权利为新文章"
 
-#: ../../addon/numfriends/numfriends.php:46
-#: ../../addon.old/numfriends/numfriends.php:46
-msgid "Numfriends settings updated."
-msgstr "Numfriends设置更新了"
+#: ../../mod/settings.php:1089
+msgid "Maximum private messages per day from unknown people:"
+msgstr "一天最多从生人私人邮件:"
 
-#: ../../addon/numfriends/numfriends.php:77
-#: ../../addon.old/numfriends/numfriends.php:77
-msgid "Numfriends Settings"
-msgstr "Numfriends设置"
+#: ../../mod/settings.php:1092
+msgid "Notification Settings"
+msgstr "消息设置"
 
-#: ../../addon/numfriends/numfriends.php:79 ../../addon.old/bg/bg.php:84
-#: ../../addon.old/numfriends/numfriends.php:79
-msgid "How many contacts to display on profile sidebar"
-msgstr "多少熟人表示在简介工具栏"
+#: ../../mod/settings.php:1093
+msgid "By default post a status message when:"
+msgstr "默认地发现状通知如果:"
 
-#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48
-msgid "Gnot settings updated."
-msgstr "Gnot设置更新了。"
+#: ../../mod/settings.php:1094
+msgid "accepting a friend request"
+msgstr "接受朋友邀请"
 
-#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79
-msgid "Gnot Settings"
-msgstr "Gnot设置"
+#: ../../mod/settings.php:1095
+msgid "joining a forum/community"
+msgstr "加入评坛/社会"
 
-#: ../../addon/gnot/gnot.php:81 ../../addon.old/gnot/gnot.php:81
-msgid ""
-"Allows threading of email comment notifications on Gmail and anonymising the"
-" subject line."
-msgstr "允许邮件评论通知在Gmail和匿名话题行。"
+#: ../../mod/settings.php:1096
+msgid "making an <em>interesting</em> profile change"
+msgstr "把简介有意思地变修改"
 
-#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82
-msgid "Enable this plugin/addon?"
-msgstr "使这个插件/加件可用?"
+#: ../../mod/settings.php:1097
+msgid "Send a notification email when:"
+msgstr "发一个消息要是:"
 
-#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%d"
-msgstr "[Friendica:Notify]评论在交流#%d"
+#: ../../mod/settings.php:1098
+msgid "You receive an introduction"
+msgstr "你受到一个介绍"
 
-#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42
-msgid "Post to Wordpress"
-msgstr "发送到Wordpress"
+#: ../../mod/settings.php:1099
+msgid "Your introductions are confirmed"
+msgstr "你的介绍确认了"
 
-#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76
-msgid "WordPress Post Settings"
-msgstr "Wordpress发送设置"
+#: ../../mod/settings.php:1100
+msgid "Someone writes on your profile wall"
+msgstr "某人写在你的简历墙"
 
-#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78
-msgid "Enable WordPress Post Plugin"
-msgstr "使Wordpress发送插件可用"
+#: ../../mod/settings.php:1101
+msgid "Someone writes a followup comment"
+msgstr "某人写一个后续的评论"
 
-#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83
-msgid "WordPress username"
-msgstr "Wordpress用户名"
+#: ../../mod/settings.php:1102
+msgid "You receive a private message"
+msgstr "你受到一个私消息"
 
-#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88
-msgid "WordPress password"
-msgstr "Wordpress密码"
+#: ../../mod/settings.php:1103
+msgid "You receive a friend suggestion"
+msgstr "你受到一个朋友建议"
 
-#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93
-msgid "WordPress API URL"
-msgstr "WordPress API URL"
+#: ../../mod/settings.php:1104
+msgid "You are tagged in a post"
+msgstr "你被在新闻标签"
 
-#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98
-msgid "Post to WordPress by default"
-msgstr "默认地发送到Wordpress"
+#: ../../mod/settings.php:1105
+msgid "You are poked/prodded/etc. in a post"
+msgstr "您在文章被戳"
 
-#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103
-msgid "Provide a backlink to the Friendica post"
-msgstr "输入反向链接到Friendica文章"
+#: ../../mod/settings.php:1108
+msgid "Advanced Account/Page Type Settings"
+msgstr "专家账户/页种设置"
 
-#: ../../addon/wppost/wppost.php:201 ../../addon/blogger/blogger.php:172
-#: ../../addon/posterous/posterous.php:189
-#: ../../addon.old/drpost/drpost.php:184 ../../addon.old/wppost/wppost.php:201
-#: ../../addon.old/blogger/blogger.php:172
-#: ../../addon.old/posterous/posterous.php:189
-msgid "Post from Friendica"
-msgstr "文章从Friendica"
+#: ../../mod/settings.php:1109
+msgid "Change the behaviour of this account for special situations"
+msgstr "把这个账户特别情况的时候行动变化"
 
-#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207
-msgid "Read the original post and comment stream on Friendica"
-msgstr "看原来文章和评论溪流在Friendica"
+#: ../../mod/share.php:44
+msgid "link"
+msgstr "链接"
 
-#: ../../addon/showmore/showmore.php:38
-#: ../../addon.old/showmore/showmore.php:38
-msgid "\"Show more\" Settings"
-msgstr "「看更多」设置"
+#: ../../mod/crepair.php:102
+msgid "Contact settings applied."
+msgstr "熟人设置应用了。"
 
-#: ../../addon/showmore/showmore.php:41
-#: ../../addon.old/showmore/showmore.php:41
-msgid "Enable Show More"
-msgstr "使看更多能用"
+#: ../../mod/crepair.php:104
+msgid "Contact update failed."
+msgstr "熟人更新失败。"
 
-#: ../../addon/showmore/showmore.php:44
-#: ../../addon.old/showmore/showmore.php:44
-msgid "Cutting posts after how much characters"
-msgstr "剪掉文章多少字后"
+#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118
+#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92
+msgid "Contact not found."
+msgstr "没找到熟人。"
 
-#: ../../addon/showmore/showmore.php:65
-#: ../../addon.old/showmore/showmore.php:65
-msgid "Show More Settings saved."
-msgstr "看更多设置保存了。"
+#: ../../mod/crepair.php:135
+msgid "Repair Contact Settings"
+msgstr "维修熟人设置"
 
-#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79
+#: ../../mod/crepair.php:137
 msgid ""
-"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
-"analytics tool."
-msgstr "这个网站用<a href='http://www.piwik.org'>Piwik</a>分析工具追踪 。"
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
+msgstr "<strong>注意:这是很高等的</strong>,你输入错的信息你和熟人的沟通会弄失灵了。"
 
-#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82
-#, php-format
+#: ../../mod/crepair.php:138
 msgid ""
-"If you do not want that your visits are logged this way you <a href='%s'>can"
-" set a cookie to prevent Piwik from tracking further visits of the site</a> "
-"(opt-out)."
-msgstr "如果您不想您访问这样记录您<a href='%s'>可以用一个cookie防Piwik追踪未来的访问</a>(选择性退出)。"
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
+msgstr "请<strong>立即</strong>用后退按钮如果您不确定怎么用这页"
 
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
-msgid "Piwik Base URL"
-msgstr "Piwik基础URL"
+#: ../../mod/crepair.php:144
+msgid "Return to contact editor"
+msgstr "回归熟人处理器"
 
-#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90
-msgid ""
-"Absolute path to your Piwik installation. (without protocol (http/s), with "
-"trailing slash)"
-msgstr "绝对道路到Piwik安装。(没有协议(http/s)跟斜线后缀)"
+#: ../../mod/crepair.php:149
+msgid "Account Nickname"
+msgstr "帐户昵称"
 
-#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91
-msgid "Site ID"
-msgstr "网站ID"
+#: ../../mod/crepair.php:150
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@Tagname越过名/昵称"
 
-#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92
-msgid "Show opt-out cookie link?"
-msgstr " 显示选择性退出cookie按钮?"
+#: ../../mod/crepair.php:151
+msgid "Account URL"
+msgstr "帐户URL"
 
-#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93
-msgid "Asynchronous tracking"
-msgstr "异步追踪"
+#: ../../mod/crepair.php:152
+msgid "Friend Request URL"
+msgstr "朋友请求URL"
 
-#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73
-msgid "Post to Twitter"
-msgstr "发送到在Twitter"
+#: ../../mod/crepair.php:153
+msgid "Friend Confirm URL"
+msgstr "朋友确认URL"
 
-#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122
-msgid "Twitter settings updated."
-msgstr "Twitter设置更新了。"
+#: ../../mod/crepair.php:154
+msgid "Notification Endpoint URL"
+msgstr "通知端URL"
 
-#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146
-msgid "Twitter Posting Settings"
-msgstr "Twitter发送设置"
+#: ../../mod/crepair.php:155
+msgid "Poll/Feed URL"
+msgstr "喂URL"
 
-#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-msgstr "找不到Twitter的消费钥匙双。请联系您的网页行政人员。"
+#: ../../mod/crepair.php:156
+msgid "New photo from this URL"
+msgstr "新照片从这个URL"
+
+#: ../../mod/delegate.php:95
+msgid "No potential page delegates located."
+msgstr "找不到可能代表页人。"
 
-#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172
+#: ../../mod/delegate.php:123
 msgid ""
-"At this Friendica instance the Twitter plugin was enabled but you have not "
-"yet connected your account to your Twitter account. To do so click the "
-"button below to get a PIN from Twitter which you have to copy into the input"
-" box below and submit the form. Only your <strong>public</strong> posts will"
-" be posted to Twitter."
-msgstr "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的<strong>公开</strong>文章被发送到Twitter。"
+"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 "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。"
 
-#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173
-msgid "Log in with Twitter"
-msgstr "ç\94¨Twitterç\99»è®°"
+#: ../../mod/delegate.php:124
+msgid "Existing Page Managers"
+msgstr "ç\9b®å\89\8d页管ç\90\86å\91\98"
 
-#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175
-msgid "Copy the PIN from Twitter here"
-msgstr "复制Twitter密码这儿"
+#: ../../mod/delegate.php:126
+msgid "Existing Page Delegates"
+msgstr "目前页代表"
 
-#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
-msgstr "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"
+#: ../../mod/delegate.php:128
+msgid "Potential Delegates"
+msgstr "潜力的代表"
+
+#: ../../mod/delegate.php:131
+msgid "Add"
+msgstr "加"
 
-#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192
-msgid ""
-"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile "
-"details from unknown viewers?</em>) the link potentially included in public "
-"postings relayed to Twitter will lead the visitor to a blank page informing "
-"the visitor that the access to your profile has been restricted."
-msgstr "<strong>注意</strong>:由于您的隐私设置(<em>隐藏您的简介内容为生人?</em>)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。"
+#: ../../mod/delegate.php:132
+msgid "No entries."
+msgstr "没有项目。"
 
-#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195
-msgid "Allow posting to Twitter"
-msgstr "允许发送到Twitter"
+#: ../../mod/poke.php:192
+msgid "Poke/Prod"
+msgstr ""
 
-#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198
-msgid "Send public postings to Twitter by default"
-msgstr "默认地发送公开文章到Twitter"
+#: ../../mod/poke.php:193
+msgid "poke, prod or do other things to somebody"
+msgstr "把人家戳或别的行动"
 
-#: ../../addon/twitter/twitter.php:213
-msgid "Mirror all posts from twitter that are no replies or retweets"
-msgstr "复制所有文章从twitter除了回答或复准文以外"
+#: ../../mod/poke.php:194
+msgid "Recipient"
+msgstr "接受者"
 
-#: ../../addon/twitter/twitter.php:217
-msgid "Shortening method that optimizes the tweet"
-msgstr "缩短方法优化缩短方法优化准文"
+#: ../../mod/poke.php:195
+msgid "Choose what you wish to do to recipient"
+msgstr "选择您想把别人作"
 
-#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201
-msgid "Send linked #-tags and @-names to Twitter"
-msgstr "转播连接的#标签盒@名到Twitter"
+#: ../../mod/poke.php:198
+msgid "Make this post private"
+msgstr "使这个文章私人"
 
-#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396
-msgid "Consumer key"
-msgstr "钥匙(Consumer key)"
+#: ../../mod/dfrn_confirm.php:119
+msgid ""
+"This may occasionally happen if contact was requested by both persons and it"
+" has already been approved."
+msgstr "这会偶尔地发生熟人双方都要求和已经批准的时候。"
 
-#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397
-msgid "Consumer secret"
-msgstr "密码(Consumer secret)"
+#: ../../mod/dfrn_confirm.php:237
+msgid "Response from remote site was not understood."
+msgstr "遥网站的回答明白不了。"
 
-#: ../../addon/twitter/twitter.php:560
-msgid "Name of the Twitter Application"
-msgstr "Twitter应用名"
+#: ../../mod/dfrn_confirm.php:246
+msgid "Unexpected response from remote site: "
+msgstr "居然回答从遥网站:"
 
-#: ../../addon/twitter/twitter.php:560
-msgid ""
-"set this to avoid mirroring postings from ~friendica back to ~friendica"
-msgstr "选择这个为避免复制文章从~friendica回归~friendica"
+#: ../../mod/dfrn_confirm.php:254
+msgid "Confirmation completed successfully."
+msgstr "确认成功完成。"
 
-#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44
-msgid "IRC Settings"
-msgstr "IRC设置"
+#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270
+#: ../../mod/dfrn_confirm.php:277
+msgid "Remote site reported: "
+msgstr "遥网站报案:"
 
-#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46
-msgid "Channel(s) to auto connect (comma separated)"
-msgstr "频道要自动地连接(逗号分隔)"
+#: ../../mod/dfrn_confirm.php:268
+msgid "Temporary failure. Please wait and try again."
+msgstr "临时失败。请等一会,再试。"
 
-#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51
-msgid "Popular Channels (comma separated)"
-msgstr "流行频道(逗号分隔)"
+#: ../../mod/dfrn_confirm.php:275
+msgid "Introduction failed or was revoked."
+msgstr "介绍失败或被吊销。"
 
-#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69
-msgid "IRC settings saved."
-msgstr "IRC设置保存了。"
+#: ../../mod/dfrn_confirm.php:420
+msgid "Unable to set contact photo."
+msgstr "不会指定熟人照片。"
 
-#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74
-msgid "IRC Chatroom"
-msgstr "IRC聊间"
+#: ../../mod/dfrn_confirm.php:562
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "找不到「%s」的用户记录"
 
-#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96
-msgid "Popular Channels"
-msgstr "流行频道"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Our site encryption key is apparently messed up."
+msgstr "看起来我们的加密钥匙失灵了。"
 
-#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38
-msgid "Fromapp settings updated."
-msgstr "Fromapp设置更新了"
+#: ../../mod/dfrn_confirm.php:583
+msgid "Empty site URL was provided or URL could not be decrypted by us."
+msgstr "空的URL供应,或URL解不了码。"
 
-#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64
-msgid "FromApp Settings"
-msgstr "Fromapp设置"
+#: ../../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。"
 
-#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66
+#: ../../mod/dfrn_confirm.php:638
 msgid ""
-"The application name you would like to show your posts originating from."
-msgstr "应用名您想当您文章的来源"
+"The ID provided by your system is a duplicate on our system. It should work "
+"if you try again."
+msgstr "身份证明由您的系统是在我们的重做。你再试应该运行。"
 
-#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70
-msgid "Use this application name even if another application was used."
-msgstr "连别应用是用了也用这名。"
+#: ../../mod/dfrn_confirm.php:649
+msgid "Unable to set your contact credentials on our system."
+msgstr "不能创作您的熟人证件在我们的系统。"
 
-#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42
-msgid "Post to blogger"
-msgstr "转播到blogger"
+#: ../../mod/dfrn_confirm.php:716
+msgid "Unable to update your contact profile details on our system"
+msgstr "不能更新您的熟人简介消息在我们的系统"
 
-#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74
-msgid "Blogger Post Settings"
-msgstr "Blogger转播设置"
+#: ../../mod/dfrn_confirm.php:751
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "联络接受了在%s"
 
-#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76
-msgid "Enable Blogger Post Plugin"
-msgstr "使Blogger转播插件可用"
+#: ../../mod/dfrn_confirm.php:800
+#, php-format
+msgid "%1$s has joined %2$s"
+msgstr "%1$s加入%2$s了"
 
-#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81
-msgid "Blogger username"
-msgstr "Blogger用户名"
+#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534
+#, php-format
+msgid "%1$s welcomes %2$s"
+msgstr "%1$s欢迎%2$s"
 
-#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86
-msgid "Blogger password"
-msgstr "Blogger密码"
+#: ../../mod/dfrn_request.php:93
+msgid "This introduction has already been accepted."
+msgstr "这个介绍已经接受了。"
 
-#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91
-msgid "Blogger API URL"
-msgstr "Blogger API URL"
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
+msgid "Profile location is not valid or does not contain profile information."
+msgstr "简介位置失效或不包含简介信息。"
 
-#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96
-msgid "Post to Blogger by default"
-msgstr "默认地转播到Blogger"
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
+msgid "Warning: profile location has no identifiable owner name."
+msgstr "警告:简介位置没有可设别的主名。"
 
-#: ../../addon/posterous/posterous.php:37
-#: ../../addon.old/posterous/posterous.php:37
-msgid "Post to Posterous"
-msgstr "发送往Posterous"
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
+msgid "Warning: profile location has no profile photo."
+msgstr "警告:简介位置没有简介图。"
 
-#: ../../addon/posterous/posterous.php:70
-#: ../../addon.old/posterous/posterous.php:70
-msgid "Posterous Post Settings"
-msgstr "Posterous发送设置"
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
+#, 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需要的参数没找到在输入的位置。"
 
-#: ../../addon/posterous/posterous.php:72
-#: ../../addon.old/posterous/posterous.php:72
-msgid "Enable Posterous Post Plugin"
-msgstr "使Posterous发送插件可用的"
+#: ../../mod/dfrn_request.php:170
+msgid "Introduction complete."
+msgstr "介绍完成的。"
 
-#: ../../addon/posterous/posterous.php:77
-#: ../../addon.old/posterous/posterous.php:77
-msgid "Posterous login"
-msgstr "Posterous登记名"
+#: ../../mod/dfrn_request.php:209
+msgid "Unrecoverable protocol error."
+msgstr "不能恢复的协议错误"
 
-#: ../../addon/posterous/posterous.php:82
-#: ../../addon.old/posterous/posterous.php:82
-msgid "Posterous password"
-msgstr "Posterous密码"
+#: ../../mod/dfrn_request.php:237
+msgid "Profile unavailable."
+msgstr "简介无效"
 
-#: ../../addon/posterous/posterous.php:87
-#: ../../addon.old/posterous/posterous.php:87
-msgid "Posterous site ID"
-msgstr "Posterous网站身份证明"
+#: ../../mod/dfrn_request.php:262
+#, php-format
+msgid "%s has received too many connection requests today."
+msgstr "%s今天已经受到了太多联络要求"
 
-#: ../../addon/posterous/posterous.php:92
-#: ../../addon.old/posterous/posterous.php:92
-msgid "Posterous API token"
-msgstr "Posterous API令牌"
+#: ../../mod/dfrn_request.php:263
+msgid "Spam protection measures have been invoked."
+msgstr "垃圾保护措施被用了。"
 
-#: ../../addon/posterous/posterous.php:97
-#: ../../addon.old/posterous/posterous.php:97
-msgid "Post to Posterous by default"
-msgstr "默认地发送往Posterous"
+#: ../../mod/dfrn_request.php:264
+msgid "Friends are advised to please try again in 24 hours."
+msgstr "朋友们被建议请24小时后再试。"
 
-#: ../../view/theme/cleanzero/config.php:82
-#: ../../view/theme/diabook/config.php:154
-#: ../../view/theme/quattro/config.php:66 ../../view/theme/dispy/config.php:72
-msgid "Theme settings"
-msgstr "主题设置"
+#: ../../mod/dfrn_request.php:326
+msgid "Invalid locator"
+msgstr "无效找到物"
 
-#: ../../view/theme/cleanzero/config.php:83
-msgid "Set resize level for images in posts and comments (width and height)"
-msgstr "选择图片在文章和评论的重设尺寸(宽和高)"
+#: ../../mod/dfrn_request.php:335
+msgid "Invalid email address."
+msgstr "无效的邮件地址。"
 
-#: ../../view/theme/cleanzero/config.php:84
-#: ../../view/theme/diabook/config.php:155
-#: ../../view/theme/dispy/config.php:73
-msgid "Set font-size for posts and comments"
-msgstr "决定字体大小在文章和评论"
+#: ../../mod/dfrn_request.php:362
+msgid "This account has not been configured for email. Request failed."
+msgstr "这个账户没有设置用电子邮件。要求没通过。"
 
-#: ../../view/theme/cleanzero/config.php:85
-msgid "Set theme width"
-msgstr "选择主题宽"
+#: ../../mod/dfrn_request.php:458
+msgid "Unable to resolve your name at the provided location."
+msgstr "不可疏解您的名字再输入的位置。"
 
-#: ../../view/theme/cleanzero/config.php:86
-#: ../../view/theme/quattro/config.php:68
-msgid "Color scheme"
-msgstr " 色彩设计"
+#: ../../mod/dfrn_request.php:471
+msgid "You have already introduced yourself here."
+msgstr "您已经自我介绍这儿。"
+
+#: ../../mod/dfrn_request.php:475
+#, php-format
+msgid "Apparently you are already friends with %s."
+msgstr "看上去您已经是%s的朋友。"
+
+#: ../../mod/dfrn_request.php:496
+msgid "Invalid profile URL."
+msgstr "无效的简介URL。"
 
-#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76
-#: ../../include/nav.php:143
-msgid "Your posts and conversations"
-msgstr "你的消息和交谈"
+#: ../../mod/dfrn_request.php:592
+msgid "Your introduction has been sent."
+msgstr "您的介绍发布了。"
 
-#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77
-msgid "Your profile page"
-msgstr "你的简介页"
+#: ../../mod/dfrn_request.php:645
+msgid "Please login to confirm introduction."
+msgstr "请登记为确认介绍。"
 
-#: ../../view/theme/diabook/theme.php:89
-msgid "Your contacts"
-msgstr "您的熟人"
+#: ../../mod/dfrn_request.php:659
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr "错误的用户登记者。请用<strong>这个</strong>用户。"
 
-#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78
-msgid "Your photos"
-msgstr "你的照片"
+#: ../../mod/dfrn_request.php:670
+msgid "Hide this contact"
+msgstr "隐藏这个熟人"
 
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79
-msgid "Your events"
-msgstr "你的项目"
+#: ../../mod/dfrn_request.php:673
+#, php-format
+msgid "Welcome home %s."
+msgstr "欢迎%s。"
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
-msgid "Personal notes"
-msgstr "私人的便条"
+#: ../../mod/dfrn_request.php:674
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "请确认您的介绍/联络要求给%s。"
 
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80
-msgid "Your personal photos"
-msgstr "你私人的照片"
+#: ../../mod/dfrn_request.php:675
+msgid "Confirm"
+msgstr "确认"
 
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
-#: ../../view/theme/diabook/config.php:163
-msgid "Community Pages"
-msgstr "社会页"
+#: ../../mod/dfrn_request.php:811
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"communications networks:"
+msgstr "请输入您的「同一人地址」这些支持的交通网络中:"
 
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
-#: ../../view/theme/diabook/config.php:165
-msgid "Community Profiles"
-msgstr "社会简介"
+#: ../../mod/dfrn_request.php:827
+msgid "<strike>Connect as an email follower</strike> (Coming soon)"
+msgstr "<strike>连接当邮件关注</strike>(快来)"
 
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
-#: ../../view/theme/diabook/config.php:170
-msgid "Last users"
-msgstr "上次用户"
+#: ../../mod/dfrn_request.php:829
+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>."
 
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
-#: ../../view/theme/diabook/config.php:172
-msgid "Last likes"
-msgstr "上次喜欢"
+#: ../../mod/dfrn_request.php:832
+msgid "Friend/Connection Request"
+msgstr "朋友/联络要求。"
 
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
-#: ../../view/theme/diabook/config.php:171
-msgid "Last photos"
-msgstr "上次照片"
+#: ../../mod/dfrn_request.php:833
+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"
 
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
-#: ../../view/theme/diabook/config.php:168
-msgid "Find Friends"
-msgstr "找朋友们"
+#: ../../mod/dfrn_request.php:834
+msgid "Please answer the following:"
+msgstr "请回答下述的:"
 
-#: ../../view/theme/diabook/theme.php:517
-msgid "Local Directory"
-msgstr "当地目录"
+#: ../../mod/dfrn_request.php:835
+#, php-format
+msgid "Does %s know you?"
+msgstr "%s是否认识你?"
 
-#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
-msgid "Similar Interests"
-msgstr "相似兴趣"
+#: ../../mod/dfrn_request.php:838
+msgid "Add a personal note:"
+msgstr "添加个人的便条"
 
-#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
-msgid "Invite Friends"
-msgstr "邀请朋友们"
+#: ../../mod/dfrn_request.php:841
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/联合社会化网"
 
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
-#: ../../view/theme/diabook/config.php:164
-msgid "Earth Layers"
-msgstr "地球层"
+#: ../../mod/dfrn_request.php:843
+#, php-format
+msgid ""
+" - please do not use this form.  Instead, enter %s into your Diaspora search"
+" bar."
+msgstr " - 请别用这个表格。反而输入%s在您的Diaspora搜索功能。"
 
-#: ../../view/theme/diabook/theme.php:577
-msgid "Set zoomfactor for Earth Layers"
-msgstr "选择拉近镜头级在地球层"
+#: ../../mod/dfrn_request.php:844
+msgid "Your Identity Address:"
+msgstr "您的同一个人地址:"
 
-#: ../../view/theme/diabook/theme.php:578
-#: ../../view/theme/diabook/config.php:161
-msgid "Set longitude (X) for Earth Layers"
-msgstr "选择经度(X)在地球层"
+#: ../../mod/dfrn_request.php:847
+msgid "Submit Request"
+msgstr "提交要求"
 
-#: ../../view/theme/diabook/theme.php:579
-#: ../../view/theme/diabook/config.php:162
-msgid "Set latitude (Y) for Earth Layers"
-msgstr "选择纬度(Y)在地球层"
+#: ../../mod/subthread.php:103
+#, php-format
+msgid "%1$s is following %2$s's %3$s"
+msgstr "%1$s关注着%2$s的%3$s"
 
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
-#: ../../view/theme/diabook/config.php:166
-msgid "Help or @NewHere ?"
-msgstr "帮助或@菜鸟?"
+#: ../../mod/suggest.php:27
+msgid "Do you really want to delete this suggestion?"
+msgstr "您真的想删除这个建议吗?"
 
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
-#: ../../view/theme/diabook/config.php:167
-msgid "Connect Services"
-msgstr "连接服务"
+#: ../../mod/suggest.php:72
+msgid ""
+"No suggestions available. If this is a new site, please try again in 24 "
+"hours."
+msgstr "没有建议。如果这是新网站,请24小时后再试。"
 
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
-msgid "Last Tweets"
-msgstr "最后准文"
+#: ../../mod/suggest.php:90
+msgid "Ignore/Hide"
+msgstr "不理/隐藏"
 
-#: ../../view/theme/diabook/theme.php:609
-#: ../../view/theme/diabook/config.php:159
-msgid "Set twitter search term"
-msgstr "选择Twitter搜索关键"
+#: ../../mod/dirfind.php:26
+msgid "People Search"
+msgstr "搜索人物"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327
-msgid "don't show"
-msgstr "别著"
+#: ../../mod/dirfind.php:60 ../../mod/match.php:65
+msgid "No matches"
+msgstr "没有结果"
 
-#: ../../view/theme/diabook/theme.php:629
-#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326
-msgid "show"
-msgstr "著"
+#: ../../mod/display.php:99 ../../mod/profile.php:155
+msgid "Access to this profile has been restricted."
+msgstr "使用权这个简介被限制了."
 
-#: ../../view/theme/diabook/theme.php:630
-msgid "Show/hide boxes at right-hand column:"
-msgstr "表示/隐藏盒子在友兰:"
+#: ../../mod/display.php:177
+msgid "Item has been removed."
+msgstr "项目被删除了。"
 
-#: ../../view/theme/diabook/config.php:156
-#: ../../view/theme/dispy/config.php:74
-msgid "Set line-height for posts and comments"
-msgstr "决定行高在文章和评论"
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "标签去除了"
 
-#: ../../view/theme/diabook/config.php:157
-msgid "Set resolution for middle column"
-msgstr "å\86³å®\9a中æ \8fç\9a\84æ\98¾ç¤ºå\88\86辨ç\8e\87å\88\97表"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "å\8e»é\99¤é¡¹ç\9b®æ \87ç­¾"
 
-#: ../../view/theme/diabook/config.php:158
-msgid "Set color scheme"
-msgstr "选择色彩设计"
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "选择标签去除"
 
-#: ../../view/theme/diabook/config.php:160
-msgid "Set zoomfactor for Earth Layer"
-msgstr "é\80\89æ\8b©æ\8b\89è¿\91é\95\9c头级å\9c¨å\9c°ç\90\83å±\82"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "项ç\9b®æ²¡æ\89¾å\88°"
 
-#: ../../view/theme/diabook/config.php:169
-msgid "Last tweets"
-msgstr "最后准文"
+#: ../../mod/editpost.php:39
+msgid "Edit post"
+msgstr "编辑文章"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Alignment"
-msgstr "成直线 "
+#: ../../mod/events.php:66
+msgid "Event title and start time are required."
+msgstr "项目标题和开始时间是必须的。"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Left"
-msgstr "左边"
+#: ../../mod/events.php:291
+msgid "l, F j"
+msgstr "l, F j"
 
-#: ../../view/theme/quattro/config.php:67
-msgid "Center"
-msgstr "中间"
+#: ../../mod/events.php:313
+msgid "Edit event"
+msgstr "编项目"
 
-#: ../../view/theme/quattro/config.php:69
-msgid "Posts font size"
-msgstr "文章"
+#: ../../mod/events.php:371
+msgid "Create New Event"
+msgstr "造成新的项目"
 
-#: ../../view/theme/quattro/config.php:70
-msgid "Textareas font size"
-msgstr "文本区字体大小"
+#: ../../mod/events.php:446
+msgid "hour:minute"
+msgstr "小时:分钟"
 
-#: ../../view/theme/dispy/config.php:75
-msgid "Set colour scheme"
-msgstr "é\80\89æ\8b©è\89²å½©è®¾è®¡"
+#: ../../mod/events.php:456
+msgid "Event details"
+msgstr "项ç\9b®å\86\85容"
 
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr "j F, Y"
+#: ../../mod/events.php:457
+#, php-format
+msgid "Format is %s %s. Starting date and Title are required."
+msgstr "形式是%s%s。开始时间和标题是必须的。"
 
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr "j F"
+#: ../../mod/events.php:459
+msgid "Event Starts:"
+msgstr "事件开始:"
 
-#: ../../include/profile_advanced.php:30
-msgid "Birthday:"
-msgstr "生日:"
+#: ../../mod/events.php:459 ../../mod/events.php:473
+msgid "Required"
+msgstr "必须的"
 
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
-msgstr "年纪:"
+#: ../../mod/events.php:462
+msgid "Finish date/time is not known or not relevant"
+msgstr "结束日/时未知或无关"
 
-#: ../../include/profile_advanced.php:43
-#, php-format
-msgid "for %1$d %2$s"
-msgstr "为%1$d %2$s"
+#: ../../mod/events.php:464
+msgid "Event Finishes:"
+msgstr "事件结束:"
 
-#: ../../include/profile_advanced.php:52
-msgid "Tags:"
-msgstr "标签:"
+#: ../../mod/events.php:467
+msgid "Adjust for viewer timezone"
+msgstr "调为观众的时间"
 
-#: ../../include/profile_advanced.php:56
-msgid "Religion:"
-msgstr "宗教:"
+#: ../../mod/events.php:469
+msgid "Description:"
+msgstr "描述:"
 
-#: ../../include/profile_advanced.php:60
-msgid "Hobbies/Interests:"
-msgstr "爱好/兴趣"
+#: ../../mod/events.php:473
+msgid "Title:"
+msgstr "标题:"
 
-#: ../../include/profile_advanced.php:67
-msgid "Contact information and Social Networks:"
-msgstr "熟人消息和社会化网络"
+#: ../../mod/events.php:475
+msgid "Share this event"
+msgstr "分享这个项目"
 
-#: ../../include/profile_advanced.php:69
-msgid "Musical interests:"
-msgstr "音乐兴趣:"
+#: ../../mod/fbrowser.php:113
+msgid "Files"
+msgstr "文件"
 
-#: ../../include/profile_advanced.php:71
-msgid "Books, literature:"
-msgstr "书,文学"
+#: ../../mod/uexport.php:72
+msgid "Export account"
+msgstr "出口账户"
 
-#: ../../include/profile_advanced.php:73
-msgid "Television:"
-msgstr "电视:"
+#: ../../mod/uexport.php:72
+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 "出口您的商户信息和熟人。这利于备份您的账户活着搬到别的服务器。"
 
-#: ../../include/profile_advanced.php:75
-msgid "Film/dance/culture/entertainment:"
-msgstr "电影/跳舞/文化/娱乐:"
+#: ../../mod/uexport.php:73
+msgid "Export all"
+msgstr "出口一切"
 
-#: ../../include/profile_advanced.php:77
-msgid "Love/Romance:"
-msgstr "爱情/浪漫"
+#: ../../mod/uexport.php:73
+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。可能是很大文件,花很多时间。用这个为创造全备份您的账户(照片没被出口)"
 
-#: ../../include/profile_advanced.php:79
-msgid "Work/employment:"
-msgstr "工作"
+#: ../../mod/filer.php:30
+msgid "- select -"
+msgstr "-选择-"
 
-#: ../../include/profile_advanced.php:81
-msgid "School/education:"
-msgstr "学院/教育"
+#: ../../mod/uimport.php:64
+msgid "Import"
+msgstr "进口"
 
-#: ../../include/contact_selectors.php:32
-msgid "Unknown | Not categorised"
-msgstr "æ\9cªç\9f¥ç\9a\84 ï½\9cæ\97 å\88\86ç±»"
+#: ../../mod/uimport.php:66
+msgid "Move account"
+msgstr "æ\8a\8aè´¦æ\88·æ\90¬å\87º"
 
-#: ../../include/contact_selectors.php:33
-msgid "Block immediately"
-msgstr "立即拦"
+#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr "您会从别的Friendica服务器进口账户"
 
-#: ../../include/contact_selectors.php:34
-msgid "Shady, spammer, self-marketer"
-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 "您要把您老服务器账户出口才这里上传。我们重现您账户这里,包括所有您的熟人。我们再试通知您朋友们您搬到这里。"
 
-#: ../../include/contact_selectors.php:35
-msgid "Known to me, but no opinion"
-msgstr "我认识,但没有意见"
+#: ../../mod/uimport.php:69
+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熟人"
 
-#: ../../include/contact_selectors.php:36
-msgid "OK, probably harmless"
-msgstr "è¡\8cï¼\8c大æ¦\82æ\97 æ\81¶æ\84\8fç\9a\84"
+#: ../../mod/uimport.php:70
+msgid "Account file"
+msgstr "è´¦æ\88·æ\96\87件"
 
-#: ../../include/contact_selectors.php:37
-msgid "Reputable, has my trust"
-msgstr "可信的,有我的信任"
+#: ../../mod/uimport.php:70
+msgid ""
+"To export your accont, go to \"Settings->Export your porsonal data\" and "
+"select \"Export account\""
+msgstr "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」"
 
-#: ../../include/contact_selectors.php:56
-msgid "Frequently"
-msgstr "时常"
+#: ../../mod/update_community.php:18 ../../mod/update_display.php:22
+#: ../../mod/update_network.php:22 ../../mod/update_notes.php:41
+#: ../../mod/update_profile.php:41
+msgid "[Embedded content - reload page to view]"
+msgstr "[嵌入内容-重新加载页为看]"
 
-#: ../../include/contact_selectors.php:57
-msgid "Hourly"
-msgstr "每小时"
+#: ../../mod/follow.php:27
+msgid "Contact added"
+msgstr "熟人添了"
 
-#: ../../include/contact_selectors.php:58
-msgid "Twice daily"
-msgstr "每日两次"
+#: ../../mod/friendica.php:55
+msgid "This is Friendica, version"
+msgstr "这是Friendica,版本"
 
-#: ../../include/contact_selectors.php:77
-msgid "OStatus"
-msgstr "OStatus"
+#: ../../mod/friendica.php:56
+msgid "running at web location"
+msgstr "运作再网址"
 
-#: ../../include/contact_selectors.php:78
-msgid "RSS/Atom"
-msgstr "RSS/Atom"
+#: ../../mod/friendica.php:58
+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工程。"
 
-#: ../../include/contact_selectors.php:82
-msgid "Zot!"
-msgstr "Zot!"
+#: ../../mod/friendica.php:60
+msgid "Bug reports and issues: please visit"
+msgstr "问题报案:请去"
 
-#: ../../include/contact_selectors.php:83
-msgid "LinkedIn"
-msgstr "LinkedIn"
+#: ../../mod/friendica.php:61
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
+msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com"
 
-#: ../../include/contact_selectors.php:84
-msgid "XMPP/IM"
-msgstr "XMPP/IM"
+#: ../../mod/friendica.php:75
+msgid "Installed plugins/addons/apps:"
+msgstr "安装的插件/加件/应用:"
 
-#: ../../include/contact_selectors.php:85
-msgid "MySpace"
-msgstr "MySpace"
+#: ../../mod/friendica.php:88
+msgid "No installed plugins/addons/apps"
+msgstr "没有安装的插件/应用"
 
-#: ../../include/contact_selectors.php:87
-msgid "Google+"
-msgstr "Google+"
+#: ../../mod/fsuggest.php:63
+msgid "Friend suggestion sent."
+msgstr "朋友建议发送了。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Male"
-msgstr "男的"
+#: ../../mod/fsuggest.php:97
+msgid "Suggest Friends"
+msgstr "建议朋友们"
 
-#: ../../include/profile_selectors.php:6
-msgid "Female"
-msgstr "女的"
+#: ../../mod/fsuggest.php:99
+#, php-format
+msgid "Suggest a friend for %s"
+msgstr "建议朋友给%s"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Male"
-msgstr "ç\8e°å\9c¨ç\94·ç\9a\84"
+#: ../../mod/group.php:29
+msgid "Group created."
+msgstr "ç»\84é\80 æ\88\90äº\86ã\80\82"
 
-#: ../../include/profile_selectors.php:6
-msgid "Currently Female"
-msgstr "现在女的"
+#: ../../mod/group.php:35
+msgid "Could not create group."
+msgstr "不能造成组。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Male"
-msgstr "主要男的"
+#: ../../mod/group.php:47 ../../mod/group.php:140
+msgid "Group not found."
+msgstr "组找不到。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Mostly Female"
-msgstr "主要女的"
+#: ../../mod/group.php:60
+msgid "Group name changed."
+msgstr "组名变化了。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transgender"
-msgstr "跨性別"
+#: ../../mod/group.php:93
+msgid "Create a group of contacts/friends."
+msgstr "造成组熟人/朋友们。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Intersex"
-msgstr "阴阳人"
+#: ../../mod/group.php:94 ../../mod/group.php:180
+msgid "Group Name: "
+msgstr "组名:"
 
-#: ../../include/profile_selectors.php:6
-msgid "Transsexual"
-msgstr "”转基因“人"
+#: ../../mod/group.php:113
+msgid "Group removed."
+msgstr "组删除了。"
 
-#: ../../include/profile_selectors.php:6
-msgid "Hermaphrodite"
-msgstr "两æ\80§ä½\93"
+#: ../../mod/group.php:115
+msgid "Unable to remove group."
+msgstr "ä¸\8dè\83½å\88 é\99¤ç»\84ã\80\82"
 
-#: ../../include/profile_selectors.php:6
-msgid "Neuter"
-msgstr "中性的"
+#: ../../mod/group.php:179
+msgid "Group Editor"
+msgstr "组编辑器"
 
-#: ../../include/profile_selectors.php:6
-msgid "Non-specific"
-msgstr "不明确的"
+#: ../../mod/group.php:192
+msgid "Members"
+msgstr "成员"
 
-#: ../../include/profile_selectors.php:6
-msgid "Other"
-msgstr "别的"
+#: ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "无简介"
 
-#: ../../include/profile_selectors.php:6
-msgid "Undecided"
-msgstr "未决"
+#: ../../mod/help.php:79
+msgid "Help:"
+msgstr "帮助:"
 
-#: ../../include/profile_selectors.php:23
-msgid "Males"
-msgstr "男人"
+#: ../../mod/help.php:90 ../../index.php:226
+msgid "Not Found"
+msgstr "未发现"
 
-#: ../../include/profile_selectors.php:23
-msgid "Females"
-msgstr "女人"
+#: ../../mod/help.php:93 ../../index.php:229
+msgid "Page not found."
+msgstr "页发现。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Gay"
-msgstr "男同性恋的"
+#: ../../mod/viewcontacts.php:39
+msgid "No contacts."
+msgstr "没有熟人。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Lesbian"
-msgstr "女同性恋的"
+#: ../../mod/viewsrc.php:7
+msgid "Access denied."
+msgstr "没有用权。"
 
-#: ../../include/profile_selectors.php:23
-msgid "No Preference"
-msgstr "无偏爱"
+#: ../../mod/wall_attach.php:69
+#, php-format
+msgid "File exceeds size limit of %d"
+msgstr "文件数目超过最多%d"
 
-#: ../../include/profile_selectors.php:23
-msgid "Bisexual"
-msgstr "双性恋的"
+#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121
+msgid "File upload failed."
+msgstr "文件上传失败。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Autosexual"
-msgstr "自性的"
+#: ../../mod/install.php:117
+msgid "Friendica Social Communications Server - Setup"
+msgstr "Friendica社会交通服务器-安装"
 
-#: ../../include/profile_selectors.php:23
-msgid "Abstinent"
-msgstr "有节制的"
+#: ../../mod/install.php:123
+msgid "Could not connect to database."
+msgstr "解不了数据库。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Virgin"
-msgstr "原始的"
+#: ../../mod/install.php:127
+msgid "Could not create table."
+msgstr "造成不了表格。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Deviant"
-msgstr "变态"
+#: ../../mod/install.php:133
+msgid "Your Friendica site database has been installed."
+msgstr "您Friendica网站数据库被安装了。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Fetish"
-msgstr "恋物对象"
+#: ../../mod/install.php:138
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
+msgstr "您可能要手工地进口文件「database.sql」用phpmyadmin或mysql。"
 
-#: ../../include/profile_selectors.php:23
-msgid "Oodles"
-msgstr "多多"
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:506
+msgid "Please see the file \"INSTALL.txt\"."
+msgstr "请看文件「INSTALL.txt」"
 
-#: ../../include/profile_selectors.php:23
-msgid "Nonsexual"
-msgstr "无性"
+#: ../../mod/install.php:203
+msgid "System check"
+msgstr "系统检测"
 
-#: ../../include/profile_selectors.php:42
-msgid "Single"
-msgstr "å\8d\95身"
+#: ../../mod/install.php:208
+msgid "Check again"
+msgstr "å\86\8dæ£\80æµ\8b"
 
-#: ../../include/profile_selectors.php:42
-msgid "Lonely"
-msgstr "寂寞"
+#: ../../mod/install.php:227
+msgid "Database connection"
+msgstr "数据库接通"
 
-#: ../../include/profile_selectors.php:42
-msgid "Available"
-msgstr "单身的"
+#: ../../mod/install.php:228
+msgid ""
+"In order to install Friendica we need to know how to connect to your "
+"database."
+msgstr "为安装Friendica我们要知道怎么连接您的数据库。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unavailable"
-msgstr "不可获得的"
+#: ../../mod/install.php:229
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
+msgstr "你有关于这些设置有问题的话,请给互联网托管服务或者网页管理联系。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Has crush"
-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/profile_selectors.php:42
-msgid "Infatuated"
-msgstr "痴迷"
+#: ../../mod/install.php:234
+msgid "Database Server Name"
+msgstr "数据库服务器名"
 
-#: ../../include/profile_selectors.php:42
-msgid "Dating"
-msgstr "约会"
+#: ../../mod/install.php:235
+msgid "Database Login Name"
+msgstr "数据库登录名"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unfaithful"
-msgstr "外遇"
+#: ../../mod/install.php:236
+msgid "Database Login Password"
+msgstr "数据库登录密码"
 
-#: ../../include/profile_selectors.php:42
-msgid "Sex Addict"
-msgstr "æ\80§äº¤å\9b æ\88\90ç\98¾è\80\85"
+#: ../../mod/install.php:237
+msgid "Database Name"
+msgstr "æ\95°æ\8d®åº\93å\90\8då­\97"
 
-#: ../../include/profile_selectors.php:42 ../../include/user.php:279
-#: ../../include/user.php:283
-msgid "Friends"
-msgstr "朋友"
+#: ../../mod/install.php:238 ../../mod/install.php:277
+msgid "Site administrator email address"
+msgstr "网站行政人员邮件地址"
 
-#: ../../include/profile_selectors.php:42
-msgid "Friends/Benefits"
-msgstr "朋友/益"
+#: ../../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/profile_selectors.php:42
-msgid "Casual"
-msgstr "休闲"
+#: ../../mod/install.php:242 ../../mod/install.php:280
+msgid "Please select a default timezone for your website"
+msgstr "请选择您网站的默认时区"
 
-#: ../../include/profile_selectors.php:42
-msgid "Engaged"
-msgstr "已订婚的"
+#: ../../mod/install.php:267
+msgid "Site settings"
+msgstr "网站设置"
 
-#: ../../include/profile_selectors.php:42
-msgid "Married"
-msgstr "结婚"
+#: ../../mod/install.php:320
+msgid "Could not find a command line version of PHP in the web server PATH."
+msgstr "没找到命令行PHP在网服务器PATH。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily married"
-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 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>"
 
-#: ../../include/profile_selectors.php:42
-msgid "Partners"
-msgstr "伴侣"
+#: ../../mod/install.php:325
+msgid "PHP executable path"
+msgstr "PHP可执行路径"
 
-#: ../../include/profile_selectors.php:42
-msgid "Cohabiting"
-msgstr "同居"
+#: ../../mod/install.php:325
+msgid ""
+"Enter full path to php executable. You can leave this blank to continue the "
+"installation."
+msgstr "输入全路线到php执行程序。您会留空白为继续安装。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Common law"
-msgstr "普通法结婚"
+#: ../../mod/install.php:330
+msgid "Command line PHP"
+msgstr "命令行PHP"
 
-#: ../../include/profile_selectors.php:42
-msgid "Happy"
-msgstr "幸福"
+#: ../../mod/install.php:339
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr "您系统的命令行PHP没有能够「register_argc_argv」。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Not looking"
-msgstr "没找"
+#: ../../mod/install.php:340
+msgid "This is required for message delivery to work."
+msgstr "这必要为通信发布成功。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Swinger"
-msgstr "交换性伴侣的"
+#: ../../mod/install.php:342
+msgid "PHP register_argc_argv"
+msgstr "PHP register_argc_argv"
 
-#: ../../include/profile_selectors.php:42
-msgid "Betrayed"
-msgstr "被背叛"
+#: ../../mod/install.php:363
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
+msgstr "错误:这系统的「register_argc_argv」子程序不能产生加密钥匙"
 
-#: ../../include/profile_selectors.php:42
-msgid "Separated"
-msgstr "分手"
+#: ../../mod/install.php:364
+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」。"
 
-#: ../../include/profile_selectors.php:42
-msgid "Unstable"
-msgstr "ä¸\8d稳"
+#: ../../mod/install.php:366
+msgid "Generate encryption keys"
+msgstr "产ç\94\9få\8a å¯\86é\92¥å\8c\99"
 
-#: ../../include/profile_selectors.php:42
-msgid "Divorced"
-msgstr "离婚"
+#: ../../mod/install.php:373
+msgid "libCurl PHP module"
+msgstr "libCurl PHP模块"
 
-#: ../../include/profile_selectors.php:42
-msgid "Imaginarily divorced"
-msgstr "想像离婚"
+#: ../../mod/install.php:374
+msgid "GD graphics PHP module"
+msgstr "GD显示PHP模块"
 
-#: ../../include/profile_selectors.php:42
-msgid "Widowed"
-msgstr "寡妇"
+#: ../../mod/install.php:375
+msgid "OpenSSL PHP module"
+msgstr "OpenSSL PHP模块"
 
-#: ../../include/profile_selectors.php:42
-msgid "Uncertain"
-msgstr "不确定"
+#: ../../mod/install.php:376
+msgid "mysqli PHP module"
+msgstr "mysqli PHP模块"
 
-#: ../../include/profile_selectors.php:42
-msgid "It's complicated"
-msgstr "是复杂"
+#: ../../mod/install.php:377
+msgid "mb_string PHP module"
+msgstr "mb_string PHP模块"
 
-#: ../../include/profile_selectors.php:42
-msgid "Don't care"
-msgstr "无所谓"
+#: ../../mod/install.php:382 ../../mod/install.php:384
+msgid "Apache mod_rewrite module"
+msgstr "Apache mod_rewrite部件"
 
-#: ../../include/profile_selectors.php:42
-msgid "Ask me"
-msgstr "问我"
+#: ../../mod/install.php:382
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
+msgstr "错误:Apache服务器的mod-rewrite模块是必要的可却不安装的。"
 
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
-msgid "Starts:"
-msgstr "开始:"
+#: ../../mod/install.php:390
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "错误:libCurl PHP模块是必要的可却不安装的。"
 
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
-msgid "Finishes:"
-msgstr "结束:"
+#: ../../mod/install.php:394
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
+msgstr "错误:GD显示PHP模块跟JPEG支持是必要的可却安装的。"
 
-#: ../../include/delivery.php:457 ../../include/notifier.php:775
-msgid "(no subject)"
-msgstr "沒有题目"
+#: ../../mod/install.php:398
+msgid "Error: openssl PHP module required but not installed."
+msgstr "错误:openssl PHP模块是必要的可却不安装的。"
 
-#: ../../include/Scrape.php:583
-msgid " on Last.fm"
-msgstr "在Last.fm"
+#: ../../mod/install.php:402
+msgid "Error: mysqli PHP module required but not installed."
+msgstr "错误:mysqli PHP模块是必要的可却不安装的。"
 
-#: ../../include/text.php:262
-msgid "prev"
-msgstr "上个"
+#: ../../mod/install.php:406
+msgid "Error: mb_string PHP module required but not installed."
+msgstr "错误:mbstring PHP模块必要可没安装的。"
 
-#: ../../include/text.php:264
-msgid "first"
-msgstr "首先"
+#: ../../mod/install.php:423
+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」在网服务器主文件夹可却不能。"
 
-#: ../../include/text.php:293
-msgid "last"
-msgstr "最后"
+#: ../../mod/install.php:424
+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 "这常常是一个权设置,因为网服务器可能不会写文件在文件夹-即使您会。"
 
-#: ../../include/text.php:296
-msgid "next"
-msgstr "下个"
+#: ../../mod/install.php:425
+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主文件夹。"
 
-#: ../../include/text.php:314
-msgid "newer"
-msgstr "更新"
+#: ../../mod/install.php:426
+msgid ""
+"You can alternatively skip this procedure and perform a manual installation."
+" Please see the file \"INSTALL.txt\" for instructions."
+msgstr "或者您会这个步骤不做还是实行手动的安装。请看INSTALL.txt文件为说明。"
 
-#: ../../include/text.php:318
-msgid "older"
-msgstr "更旧"
+#: ../../mod/install.php:429
+msgid ".htconfig.php is writable"
+msgstr ".htconfig.php是可写的"
 
-#: ../../include/text.php:657
-msgid "No contacts"
-msgstr "没有熟人"
+#: ../../mod/install.php:439
+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为催建筑网页。"
 
-#: ../../include/text.php:666
-#, php-format
-msgid "%d Contact"
-msgid_plural "%d Contacts"
-msgstr[0] "%d熟人"
+#: ../../mod/install.php:440
+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主目录下。"
 
-#: ../../include/text.php:779
-msgid "poke"
-msgstr "戳"
+#: ../../mod/install.php:441
+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)有这个目录的写权利。"
 
-#: ../../include/text.php:779 ../../include/conversation.php:211
-msgid "poked"
-msgstr "戳了"
+#: ../../mod/install.php:442
+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)之下。"
 
-#: ../../include/text.php:780
-msgid "ping"
-msgstr ""
+#: ../../mod/install.php:445
+msgid "view/smarty3 is writable"
+msgstr "能写view/smarty3"
 
-#: ../../include/text.php:780
-msgid "pinged"
-msgstr "砰了"
+#: ../../mod/install.php:457
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr " URL改写在.htaccess不行。检查您服务器设置。"
 
-#: ../../include/text.php:781
-msgid "prod"
-msgstr "柔戳"
+#: ../../mod/install.php:459
+msgid "Url rewrite is working"
+msgstr "URL改写发挥机能"
 
-#: ../../include/text.php:781
-msgid "prodded"
-msgstr "柔戳了"
+#: ../../mod/install.php:469
+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」不能被写。请把包括的正文造成设置文件在网服务器子目录。"
 
-#: ../../include/text.php:782
-msgid "slap"
-msgstr "掌击"
+#: ../../mod/install.php:493
+msgid "Errors encountered creating database tables."
+msgstr "造成数据库列表相遇错误。"
 
-#: ../../include/text.php:782
-msgid "slapped"
-msgstr "掌击了"
+#: ../../mod/install.php:504
+msgid "<h1>What next</h1>"
+msgstr "<h1>下步是什么</h1>"
 
-#: ../../include/text.php:783
-msgid "finger"
-msgstr "指"
+#: ../../mod/install.php:505
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the "
+"poller."
+msgstr "重要:您要[手工地]准备安排的任务给喂器。"
 
-#: ../../include/text.php:783
-msgid "fingered"
-msgstr "指了"
+#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "图像超标最大极限尺寸 %d"
 
-#: ../../include/text.php:784
-msgid "rebuff"
-msgstr "窝脖儿"
+#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801
+#: ../../mod/profile_photo.php:153
+msgid "Unable to process image."
+msgstr "处理不了图像."
 
-#: ../../include/text.php:784
-msgid "rebuffed"
-msgstr "窝脖儿了"
+#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828
+#: ../../mod/profile_photo.php:301
+msgid "Image upload failed."
+msgstr "图像上载失败了."
 
-#: ../../include/text.php:796
-msgid "happy"
-msgstr "开心"
+#: ../../mod/invite.php:27
+msgid "Total invitation limit exceeded."
+msgstr "邀请限超过了。"
 
-#: ../../include/text.php:797
-msgid "sad"
-msgstr "伤心"
+#: ../../mod/invite.php:49
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s : 不是效的电子邮件地址."
 
-#: ../../include/text.php:798
-msgid "mellow"
-msgstr "è½»æ\9d¾"
+#: ../../mod/invite.php:73
+msgid "Please join us on Friendica"
+msgstr "请å\8a å\85¥æ\88\91们å\86\8dFriendica"
 
-#: ../../include/text.php:799
-msgid "tired"
-msgstr ""
+#: ../../mod/invite.php:84
+msgid "Invitation limit exceeded. Please contact your site administrator."
+msgstr "邀请限超过了。请联系您的网站管理员。"
 
-#: ../../include/text.php:800
-msgid "perky"
-msgstr "机敏"
+#: ../../mod/invite.php:89
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s : 送消息失败了。"
+
+#: ../../mod/invite.php:93
+#, php-format
+msgid "%d message sent."
+msgid_plural "%d messages sent."
+msgstr[0] "%d消息传送了。"
 
-#: ../../include/text.php:801
-msgid "angry"
-msgstr "生气"
+#: ../../mod/invite.php:112
+msgid "You have no more invitations available"
+msgstr "您没有别的邀请"
 
-#: ../../include/text.php:802
-msgid "stupified"
-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成员在别的网站都会互相连接,再跟很多别的社会网络。"
 
-#: ../../include/text.php:803
-msgid "puzzled"
-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 "为接受这个邀请,请再%s或什么别的Friendica网站注册。"
 
-#: ../../include/text.php:804
-msgid "interested"
-msgstr "有兴趣"
+#: ../../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网站。"
 
-#: ../../include/text.php:805
-msgid "bitter"
-msgstr "苦"
+#: ../../mod/invite.php:126
+msgid ""
+"Our apologies. This system is not currently configured to connect with other"
+" public sites or invite members."
+msgstr "不好意思。这个系统目前没设置跟别的公开网站连接或邀请成员。"
 
-#: ../../include/text.php:806
-msgid "cheerful"
-msgstr "å¿«ä¹\90"
+#: ../../mod/invite.php:132
+msgid "Send invitations"
+msgstr "å\8f\91请æ\9f¬"
 
-#: ../../include/text.php:807
-msgid "alive"
-msgstr "活着"
+#: ../../mod/invite.php:133
+msgid "Enter email addresses, one per line:"
+msgstr "输入电子邮件地址,一行一个:"
 
-#: ../../include/text.php:808
-msgid "annoyed"
-msgstr "被烦恼"
+#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151
+#: ../../mod/message.php:329 ../../mod/message.php:558
+msgid "Your message:"
+msgstr "你的消息:"
 
-#: ../../include/text.php:809
-msgid "anxious"
-msgstr "心焦"
+#: ../../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加入-和帮助我们造成更好的社会网络。"
 
-#: ../../include/text.php:810
-msgid "cranky"
-msgstr "不稳"
+#: ../../mod/invite.php:137
+msgid "You will need to supply this invitation code: $invite_code"
+msgstr "您要输入这个邀请密码:$invite_code"
 
-#: ../../include/text.php:811
-msgid "disturbed"
-msgstr "不安"
+#: ../../mod/invite.php:137
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
+msgstr "您一注册,请页跟我连接,用我的简介在:"
 
-#: ../../include/text.php:812
-msgid "frustrated"
-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"
 
-#: ../../include/text.php:813
-msgid "motivated"
-msgstr "士气高涨"
+#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
+#, php-format
+msgid "Number of daily wall messages for %s exceeded. Message failed."
+msgstr "一天最多墙通知给%s超过了。通知没有通过 。"
 
-#: ../../include/text.php:814
-msgid "relaxed"
-msgstr "轻松"
+#: ../../mod/wallmessage.php:56 ../../mod/message.php:63
+msgid "No recipient selected."
+msgstr "没有选择的接受者。"
 
-#: ../../include/text.php:815
-msgid "surprised"
-msgstr "诧å¼\82"
+#: ../../mod/wallmessage.php:59
+msgid "Unable to check your home location."
+msgstr "核对ä¸\8däº\86æ\82¨ç\9a\84主页ã\80\82"
 
-#: ../../include/text.php:979
-msgid "January"
-msgstr "一月"
+#: ../../mod/wallmessage.php:62 ../../mod/message.php:70
+msgid "Message could not be sent."
+msgstr "消息发不了。"
 
-#: ../../include/text.php:979
-msgid "February"
-msgstr "二月"
+#: ../../mod/wallmessage.php:65 ../../mod/message.php:73
+msgid "Message collection failure."
+msgstr "通信受到错误。"
 
-#: ../../include/text.php:979
-msgid "March"
-msgstr "三月"
+#: ../../mod/wallmessage.php:68 ../../mod/message.php:76
+msgid "Message sent."
+msgstr "消息发了"
 
-#: ../../include/text.php:979
-msgid "April"
-msgstr "四月"
+#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95
+msgid "No recipient."
+msgstr "没有接受者。"
 
-#: ../../include/text.php:979
-msgid "May"
-msgstr "五月"
+#: ../../mod/wallmessage.php:142 ../../mod/message.php:319
+msgid "Send Private Message"
+msgstr "发私人的通信"
 
-#: ../../include/text.php:979
-msgid "June"
-msgstr "六月"
+#: ../../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回答,请核对您网站的隐私设置允许生发送人的私人邮件。"
 
-#: ../../include/text.php:979
-msgid "July"
-msgstr "七月"
+#: ../../mod/wallmessage.php:144 ../../mod/message.php:320
+#: ../../mod/message.php:553
+msgid "To:"
+msgstr "到:"
 
-#: ../../include/text.php:979
-msgid "August"
-msgstr "八月"
+#: ../../mod/wallmessage.php:145 ../../mod/message.php:325
+#: ../../mod/message.php:555
+msgid "Subject:"
+msgstr "题目:"
 
-#: ../../include/text.php:979
-msgid "September"
-msgstr "九月"
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "时间装换"
 
-#: ../../include/text.php:979
-msgid "October"
-msgstr "十月"
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendica provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。"
 
-#: ../../include/text.php:979
-msgid "November"
-msgstr "十一月"
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "UTC时间: %s"
 
-#: ../../include/text.php:979
-msgid "December"
-msgstr "十二月"
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "现在时区: %s"
 
-#: ../../include/text.php:1078
-msgid "bytes"
-msgstr "字节"
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "装换的当地时间:%s"
 
-#: ../../include/text.php:1105 ../../include/text.php:1117
-msgid "Click to open/close"
-msgstr "点击为开关"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "请选择你的时区:"
 
-#: ../../include/text.php:1290 ../../include/user.php:237
-msgid "default"
-msgstr "默认"
+#: ../../mod/lockview.php:31 ../../mod/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "摇隐私信息无效"
 
-#: ../../include/text.php:1302
-msgid "Select an alternate language"
-msgstr "选择别的语言"
+#: ../../mod/lostpass.php:17
+msgid "No valid account found."
+msgstr "找不到效的账户。"
 
-#: ../../include/text.php:1512
-msgid "activity"
-msgstr "活动"
+#: ../../mod/lostpass.php:33
+msgid "Password reset request issued. Check your email."
+msgstr "重设密码要求发布了。核对您的收件箱。"
 
-#: ../../include/text.php:1515
-msgid "post"
-msgstr "文章"
+#: ../../mod/lostpass.php:44
+#, php-format
+msgid "Password reset requested at %s"
+msgstr "重设密码要求被发布%s"
 
-#: ../../include/text.php:1670
-msgid "Item filed"
-msgstr "把项目归档了"
+#: ../../mod/lostpass.php:66
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
+msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。"
 
-#: ../../include/diaspora.php:704
-msgid "Sharing notification from Diaspora network"
-msgstr "å\88\86享é\80\9aç\9f¥ä»\8eDiasporaç½\91ç»\9c"
+#: ../../mod/lostpass.php:84 ../../boot.php:1072
+msgid "Password Reset"
+msgstr "å¤\8dä½\8då¯\86ç \81"
 
-#: ../../include/diaspora.php:2248
-msgid "Attachments:"
-msgstr "附件:"
+#: ../../mod/lostpass.php:85
+msgid "Your password has been reset as requested."
+msgstr "您的密码被重设如要求的。"
 
-#: ../../include/network.php:850
-msgid "view full size"
-msgstr "看全尺寸"
+#: ../../mod/lostpass.php:86
+msgid "Your new password is"
+msgstr "你的新的密码是"
 
-#: ../../include/oembed.php:138
-msgid "Embedded content"
-msgstr "嵌入内容"
+#: ../../mod/lostpass.php:87
+msgid "Save or copy your new password - and then"
+msgstr "保存或复制新密码-之后"
 
-#: ../../include/oembed.php:147
-msgid "Embedding disabled"
-msgstr "åµ\8cå\85¥ä¸\8dè\83½ç\94¨"
+#: ../../mod/lostpass.php:88
+msgid "click here to login"
+msgstr "å\9c¨è¿\99å\84¿ç\82¹å\87»"
 
-#: ../../include/uimport.php:61
-msgid "Error decoding account file"
-msgstr "解码账户文件出错误"
+#: ../../mod/lostpass.php:89
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr "您的密码能被变化从<em>设置</em>页成功登记后。"
 
-#: ../../include/uimport.php:67
-msgid "Error! No version data in file! This is not a Friendica account file?"
-msgstr "错误!文件没有版本数!这不是Friendica账户文件吗?"
+#: ../../mod/lostpass.php:107
+#, php-format
+msgid "Your password has been changed at %s"
+msgstr "您密码被变化在%s"
 
-#: ../../include/uimport.php:72
-msgid "Error! I can't import this file: DB schema version is not compatible."
-msgstr "错误!我进口不了这个文件:数据库版本不相容的。"
+#: ../../mod/lostpass.php:122
+msgid "Forgot your Password?"
+msgstr "忘记你的密码吗?"
+
+#: ../../mod/lostpass.php:123
+msgid ""
+"Enter your email address and submit to have your password reset. Then check "
+"your email for further instructions."
+msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。"
 
-#: ../../include/uimport.php:81
-msgid "Error! Cannot check nickname"
-msgstr "错误!不能检查昵称"
+#: ../../mod/lostpass.php:124
+msgid "Nickname or Email: "
+msgstr "昵称或邮件地址:"
 
-#: ../../include/uimport.php:85
-#, php-format
-msgid "User '%s' already exists on this server!"
-msgstr "用户「%s」已经存在这个服务器!"
+#: ../../mod/lostpass.php:125
+msgid "Reset"
+msgstr "复位"
 
-#: ../../include/uimport.php:104
-msgid "User creation error"
-msgstr "ç\94¨æ\88·å\88\9bé\80 é\94\99误"
+#: ../../mod/maintenance.php:5
+msgid "System down for maintenance"
+msgstr "ç³»ç»\9få\85³é\97­ä¸ºäº\86ç»´æ\8c\81"
 
-#: ../../include/uimport.php:122
-msgid "User profile creation error"
-msgstr "ç\94¨æ\88·ç®\80ä»\8bå\88\9bé\80 é\94\99误"
+#: ../../mod/manage.php:106
+msgid "Manage Identities and/or Pages"
+msgstr "管ç\90\86身份æ\88\96页"
 
-#: ../../include/uimport.php:167
-#, php-format
-msgid "%d contact not imported"
-msgid_plural "%d contacts not imported"
-msgstr[0] "%dç\86\9f人没è¿\9bå\8f£äº\86"
+#: ../../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 "交æ\9b¿ä¸\8då\90\8cå\90\8cä¸\80人æ\88\96社ä¼\9aï¼\8fç»\84页å\90\88ç\94¨æ\82¨ç\9a\84è´¦æ\88·æ\88\96ç»\99æ\82¨ã\80\8c管ç\90\86ã\80\8dæ\89¹å\87\86"
 
-#: ../../include/uimport.php:245
-msgid "Done. You can now login with your username and password"
-msgstr "完了。您现在会用您用户名和密码登录"
+#: ../../mod/manage.php:108
+msgid "Select an identity to manage: "
+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/match.php:12
+msgid "Profile Match"
+msgstr "简介符合"
 
-#: ../../include/group.php:207
-msgid "Default privacy group for new contacts"
-msgstr "默认隐私组为新熟人"
+#: ../../mod/match.php:20
+msgid "No keywords to match. Please add keywords to your default profile."
+msgstr "没有符合的关键字。请在您的默认简介加关键字。"
 
-#: ../../include/group.php:226
-msgid "Everybody"
-msgstr "æ¯\8f人"
+#: ../../mod/match.php:57
+msgid "is interested in:"
+msgstr "æ\84\9få\85´è¶£å¯¹ï¼\9a"
 
-#: ../../include/group.php:249
-msgid "edit"
-msgstr "编辑"
+#: ../../mod/message.php:67
+msgid "Unable to locate contact information."
+msgstr "找不到熟人信息。"
 
-#: ../../include/group.php:271
-msgid "Edit group"
-msgstr "编辑组"
+#: ../../mod/message.php:207
+msgid "Do you really want to delete this message?"
+msgstr "您真的想删除这个通知吗?"
 
-#: ../../include/group.php:272
-msgid "Create a new group"
-msgstr "创造新组"
+#: ../../mod/message.php:227
+msgid "Message deleted."
+msgstr "消息删除了。"
 
-#: ../../include/group.php:273
-msgid "Contacts not in any group"
-msgstr "熟人没有组"
+#: ../../mod/message.php:258
+msgid "Conversation removed."
+msgstr "交流删除了。"
 
-#: ../../include/nav.php:73 ../../boot.php:1036
-msgid "Logout"
-msgstr "注é\94\80"
+#: ../../mod/message.php:371
+msgid "No messages."
+msgstr "没æ\9c\89æ¶\88æ\81¯"
 
-#: ../../include/nav.php:73
-msgid "End this session"
-msgstr "结束这段时间"
+#: ../../mod/message.php:378
+#, php-format
+msgid "Unknown sender - %s"
+msgstr "生发送人-%s"
 
-#: ../../include/nav.php:76 ../../boot.php:1833
-msgid "Status"
-msgstr "现状"
+#: ../../mod/message.php:381
+#, php-format
+msgid "You and %s"
+msgstr "您和%s"
 
-#: ../../include/nav.php:91
-msgid "Sign in"
-msgstr "登记"
+#: ../../mod/message.php:384
+#, php-format
+msgid "%s and You"
+msgstr "%s和您"
 
-#: ../../include/nav.php:104
-msgid "Home Page"
-msgstr "主页"
+#: ../../mod/message.php:405 ../../mod/message.php:546
+msgid "Delete conversation"
+msgstr "删除交谈"
 
-#: ../../include/nav.php:108
-msgid "Create an account"
-msgstr "注册"
+#: ../../mod/message.php:408
+msgid "D, d M Y - g:i A"
+msgstr "D, d M Y - g:i A"
 
-#: ../../include/nav.php:113
-msgid "Help and documentation"
-msgstr "帮助证件"
+#: ../../mod/message.php:411
+#, php-format
+msgid "%d message"
+msgid_plural "%d messages"
+msgstr[0] "%d通知"
 
-#: ../../include/nav.php:116
-msgid "Apps"
-msgstr "应用程序"
+#: ../../mod/message.php:450
+msgid "Message not available."
+msgstr "通信不可用的"
 
-#: ../../include/nav.php:116
-msgid "Addon applications, utilities, games"
-msgstr "å\8f¯å\8a ç\9a\84åº\94ç\94¨ï¼\8c设æ\96½ï¼\8c游æ\88\8f"
+#: ../../mod/message.php:520
+msgid "Delete message"
+msgstr "å\88 é\99¤æ¶\88æ\81¯"
 
-#: ../../include/nav.php:118
-msgid "Search site content"
-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/nav.php:128
-msgid "Conversations on this site"
-msgstr "这个网站的交谈"
+#: ../../mod/message.php:552
+msgid "Send Reply"
+msgstr "发回答"
 
-#: ../../include/nav.php:130
-msgid "Directory"
-msgstr "å\90\8då½\95"
+#: ../../mod/mood.php:133
+msgid "Mood"
+msgstr "å¿\83æ\83\85"
 
-#: ../../include/nav.php:130
-msgid "People directory"
-msgstr "人物名录"
+#: ../../mod/mood.php:134
+msgid "Set your current mood and tell your friends"
+msgstr "选择现在的心情而告诉朋友们"
 
-#: ../../include/nav.php:140
-msgid "Conversations from your friends"
-msgstr "从你朋友们的交谈"
+#: ../../mod/network.php:181
+msgid "Search Results For:"
+msgstr "搜索结果为:"
 
-#: ../../include/nav.php:141
-msgid "Network Reset"
-msgstr "网络重设"
+#: ../../mod/network.php:397
+msgid "Commented Order"
+msgstr "评论时间顺序"
 
-#: ../../include/nav.php:141
-msgid "Load Network page with no filters"
-msgstr "表示网络页无滤器"
+#: ../../mod/network.php:400
+msgid "Sort by Comment Date"
+msgstr "按评论日期顺序排列"
 
-#: ../../include/nav.php:149
-msgid "Friend Requests"
-msgstr "友谊邀请"
+#: ../../mod/network.php:403
+msgid "Posted Order"
+msgstr "贴时间顺序"
 
-#: ../../include/nav.php:151
-msgid "See all notifications"
-msgstr "看所有的通知"
+#: ../../mod/network.php:406
+msgid "Sort by Post Date"
+msgstr "按发布日期顺序排列"
 
-#: ../../include/nav.php:152
-msgid "Mark all system notifications seen"
-msgstr "记号各系统通知看过的"
+#: ../../mod/network.php:444 ../../mod/notifications.php:88
+msgid "Personal"
+msgstr "私人"
 
-#: ../../include/nav.php:156
-msgid "Private mail"
-msgstr "私人的邮件"
+#: ../../mod/network.php:447
+msgid "Posts that mention or involve you"
+msgstr "提或关您的文章"
 
-#: ../../include/nav.php:157
-msgid "Inbox"
-msgstr "æ\94¶ä»¶ç®±"
+#: ../../mod/network.php:453
+msgid "New"
+msgstr "æ\96°"
 
-#: ../../include/nav.php:158
-msgid "Outbox"
-msgstr "发件箱"
+#: ../../mod/network.php:456
+msgid "Activity Stream - by date"
+msgstr "活动河流-按日期"
 
-#: ../../include/nav.php:162
-msgid "Manage"
-msgstr "代用户"
+#: ../../mod/network.php:462
+msgid "Shared Links"
+msgstr "共同环节"
 
-#: ../../include/nav.php:162
-msgid "Manage other pages"
-msgstr "管理别的页"
+#: ../../mod/network.php:465
+msgid "Interesting Links"
+msgstr "有意思的超链接"
 
-#: ../../include/nav.php:165
-msgid "Delegations"
-msgstr "代表"
+#: ../../mod/network.php:471
+msgid "Starred"
+msgstr "被星"
 
-#: ../../include/nav.php:169 ../../boot.php:1339
-msgid "Profiles"
-msgstr "简介"
+#: ../../mod/network.php:474
+msgid "Favourite Posts"
+msgstr "最喜欢的文章"
 
-#: ../../include/nav.php:169
-msgid "Manage/Edit Profiles"
-msgstr "管理/编辑简介"
+#: ../../mod/network.php:546
+#, 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成员从不安全网络。"
+
+#: ../../mod/network.php:549
+msgid "Private messages to this group are at risk of public disclosure."
+msgstr "私人通信给这组回被公开。"
 
-#: ../../include/nav.php:171
-msgid "Manage/edit friends and contacts"
-msgstr "管理/编朋友们和熟人们"
+#: ../../mod/network.php:596 ../../mod/content.php:119
+msgid "No such group"
+msgstr "没有这个组"
 
-#: ../../include/nav.php:178
-msgid "Site setup and configuration"
-msgstr "ç½\91ç«\99å¼\80å\8a\9eå\92\8cé\85\8dç½®"
+#: ../../mod/network.php:607 ../../mod/content.php:130
+msgid "Group is empty"
+msgstr "ç»\84没æ\9c\89æ\88\90å\91\98"
 
-#: ../../include/nav.php:182
-msgid "Navigation"
-msgstr "航行"
+#: ../../mod/network.php:611 ../../mod/content.php:134
+msgid "Group: "
+msgstr "组:"
 
-#: ../../include/nav.php:182
-msgid "Site map"
-msgstr "ç½\91ç«\99å\9c°å\9b¾"
+#: ../../mod/network.php:621
+msgid "Contact: "
+msgstr "ç\86\9f人ï¼\9a"
 
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
-msgstr "增添新的熟人"
+#: ../../mod/network.php:623
+msgid "Private messages to this person are at risk of public disclosure."
+msgstr "私人通信给这个人回被公开。"
 
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
-msgstr "输入地址或网位置"
+#: ../../mod/network.php:628
+msgid "Invalid contact."
+msgstr "无效熟人。"
 
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "比如:li@example.com, http://example.com/li"
+#: ../../mod/community.php:23
+msgid "Not available."
+msgstr "不可用的"
 
-#: ../../include/contact_widgets.php:23
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d邀请可用的"
+#: ../../mod/photos.php:51 ../../boot.php:1878
+msgid "Photo Albums"
+msgstr "相册"
 
-#: ../../include/contact_widgets.php:29
-msgid "Find People"
-msgstr "找人物"
+#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795
+msgid "Upload New Photos"
+msgstr "上传新照片"
 
-#: ../../include/contact_widgets.php:30
-msgid "Enter name or interest"
-msgstr "输入名字或兴趣"
+#: ../../mod/photos.php:143
+msgid "Contact information unavailable"
+msgstr "熟人信息不可用"
 
-#: ../../include/contact_widgets.php:31
-msgid "Connect/Follow"
-msgstr "连接/关注"
+#: ../../mod/photos.php:164
+msgid "Album not found."
+msgstr "取回不了相册."
 
-#: ../../include/contact_widgets.php:32
-msgid "Examples: Robert Morgenstein, Fishing"
-msgstr "比如:李某,打鱼"
+#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200
+msgid "Delete Album"
+msgstr "删除相册"
 
-#: ../../include/contact_widgets.php:36
-msgid "Random Profile"
-msgstr "随机简介"
+#: ../../mod/photos.php:197
+msgid "Do you really want to delete this photo album and all its photos?"
+msgstr "您真的想删除这个相册和所有里面的照相吗?"
 
-#: ../../include/contact_widgets.php:70
-msgid "Networks"
-msgstr "网络"
+#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502
+msgid "Delete Photo"
+msgstr "删除照片"
 
-#: ../../include/contact_widgets.php:73
-msgid "All Networks"
-msgstr "æ\89\80æ\9c\89ç½\91ç»\9c"
+#: ../../mod/photos.php:285
+msgid "Do you really want to delete this photo?"
+msgstr "æ\82¨ç\9c\9fç\9a\84æ\83³å\88 é\99¤è¿\99个ç\85§ç\9b¸å\90\97ï¼\9f"
 
-#: ../../include/contact_widgets.php:103 ../../include/features.php:59
-msgid "Saved Folders"
-msgstr "保存的文件夹"
+#: ../../mod/photos.php:656
+#, php-format
+msgid "%1$s was tagged in %2$s by %3$s"
+msgstr "%1$s被%3$s标签在%2$s"
 
-#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138
-msgid "Everything"
-msgstr "ä¸\80å\88\87"
+#: ../../mod/photos.php:656
+msgid "a photo"
+msgstr "ä¸\80å¼ ç\85§ç\89\87"
 
-#: ../../include/contact_widgets.php:135
-msgid "Categories"
-msgstr "种类"
+#: ../../mod/photos.php:769
+msgid "Image file is empty."
+msgstr "图片文件空的。"
 
-#: ../../include/auth.php:38
-msgid "Logged out."
-msgstr "注é\94\80了"
+#: ../../mod/photos.php:924
+msgid "No photos selected"
+msgstr "没æ\9c\89ç\85§ç\89\87æ\8c\91é\80\89了"
 
-#: ../../include/auth.php:128
-msgid ""
-"We encountered a problem while logging in with the OpenID you provided. "
-"Please check the correct spelling of the ID."
-msgstr "我们用您输入的OpenID登录的时候碰到问题。请核实拼法是对的。"
+#: ../../mod/photos.php:1025
+msgid "Access to this item is restricted."
+msgstr "这个项目使用权限的。"
 
-#: ../../include/auth.php:128
-msgid "The error message was:"
-msgstr "错误通知是:"
+#: ../../mod/photos.php:1088
+#, php-format
+msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
+msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。"
 
-#: ../../include/datetime.php:43 ../../include/datetime.php:45
-msgid "Miscellaneous"
-msgstr "形形色色"
+#: ../../mod/photos.php:1123
+msgid "Upload Photos"
+msgstr "上传照片"
 
-#: ../../include/datetime.php:153 ../../include/datetime.php:285
-msgid "year"
-msgstr ""
+#: ../../mod/photos.php:1127 ../../mod/photos.php:1195
+msgid "New album name: "
+msgstr "新册名:"
 
-#: ../../include/datetime.php:158 ../../include/datetime.php:286
-msgid "month"
-msgstr "æ\9c\88"
+#: ../../mod/photos.php:1128
+msgid "or existing album name: "
+msgstr "æ\88\96ç\8e°æ\9c\89å\86\8cå\90\8d"
 
-#: ../../include/datetime.php:163 ../../include/datetime.php:288
-msgid "day"
-msgstr ""
+#: ../../mod/photos.php:1129
+msgid "Do not show a status post for this upload"
+msgstr "别显示现状报到关于这个上传"
 
-#: ../../include/datetime.php:276
-msgid "never"
-msgstr "从未"
+#: ../../mod/photos.php:1131 ../../mod/photos.php:1497
+msgid "Permissions"
+msgstr "权利"
 
-#: ../../include/datetime.php:282
-msgid "less than a second ago"
-msgstr "一秒以内"
+#: ../../mod/photos.php:1142
+msgid "Private Photo"
+msgstr "私人照相"
 
-#: ../../include/datetime.php:287
-msgid "week"
-msgstr "星期"
+#: ../../mod/photos.php:1143
+msgid "Public Photo"
+msgstr "公开照相"
 
-#: ../../include/datetime.php:289
-msgid "hour"
-msgstr "小时"
+#: ../../mod/photos.php:1210
+msgid "Edit Album"
+msgstr "编照片册"
 
-#: ../../include/datetime.php:289
-msgid "hours"
-msgstr "å°\8fæ\97"
+#: ../../mod/photos.php:1216
+msgid "Show Newest First"
+msgstr "å\85\88表示æ\9c\80æ\96°ç\9a\84"
 
-#: ../../include/datetime.php:290
-msgid "minute"
-msgstr "å\88\86é\92\9f"
+#: ../../mod/photos.php:1218
+msgid "Show Oldest First"
+msgstr "å\85\88表示æ\9c\80è\80\81ç\9a\84"
 
-#: ../../include/datetime.php:290
-msgid "minutes"
-msgstr "分钟"
+#: ../../mod/photos.php:1251 ../../mod/photos.php:1778
+msgid "View Photo"
+msgstr "看照片"
 
-#: ../../include/datetime.php:291
-msgid "second"
-msgstr ""
+#: ../../mod/photos.php:1286
+msgid "Permission denied. Access to this item may be restricted."
+msgstr "无权利。用这个项目可能受限制。"
 
-#: ../../include/datetime.php:291
-msgid "seconds"
-msgstr "ç§\92"
+#: ../../mod/photos.php:1288
+msgid "Photo not available"
+msgstr "ç\85§ç\89\87ä¸\8då\8f¯è\8e·å¾\97ç\9a\84 "
 
-#: ../../include/datetime.php:300
-#, php-format
-msgid "%1$d %2$s ago"
-msgstr "%1$d %2$s以前"
+#: ../../mod/photos.php:1344
+msgid "View photo"
+msgstr "看照片"
 
-#: ../../include/datetime.php:472 ../../include/items.php:1705
-#, php-format
-msgid "%s's birthday"
-msgstr "%s的生日"
+#: ../../mod/photos.php:1344
+msgid "Edit photo"
+msgstr "编辑照片"
 
-#: ../../include/datetime.php:473 ../../include/items.php:1706
-#, php-format
-msgid "Happy Birthday %s"
-msgstr "生日快乐%s"
+#: ../../mod/photos.php:1345
+msgid "Use as profile photo"
+msgstr "用为资料图"
 
-#: ../../include/bbcode.php:210 ../../include/bbcode.php:515
-msgid "Image/photo"
-msgstr "图像/照片"
+#: ../../mod/photos.php:1351 ../../mod/content.php:643
+#: ../../object/Item.php:106
+msgid "Private Message"
+msgstr "私人的新闻"
 
-#: ../../include/bbcode.php:272
-#, php-format
-msgid ""
-"<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a "
-"href=\"%s\" target=\"external-link\">post</a>"
-msgstr "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>"
+#: ../../mod/photos.php:1370
+msgid "View Full Size"
+msgstr "看全尺寸"
 
-#: ../../include/bbcode.php:480 ../../include/bbcode.php:500
-msgid "$1 wrote:"
-msgstr "$1写:"
+#: ../../mod/photos.php:1444
+msgid "Tags: "
+msgstr "标签:"
 
-#: ../../include/bbcode.php:520 ../../include/bbcode.php:521
-msgid "Encrypted content"
-msgstr "加密的内容"
+#: ../../mod/photos.php:1447
+msgid "[Remove any tag]"
+msgstr "[删除任何标签]"
 
-#: ../../include/features.php:23
-msgid "General Features"
-msgstr "总的特点"
+#: ../../mod/photos.php:1487
+msgid "Rotate CW (right)"
+msgstr "顺时针地转动(左)"
 
-#: ../../include/features.php:25
-msgid "Multiple Profiles"
-msgstr "å¤\9aç®\80ä»\8b"
+#: ../../mod/photos.php:1488
+msgid "Rotate CCW (left)"
+msgstr "å\8f\8d顺æ\97¶é\92\88å\9c°è½¬å\8a¨ï¼\88å\8f³ï¼\89"
 
-#: ../../include/features.php:25
-msgid "Ability to create multiple profiles"
-msgstr "能穿凿多简介"
+#: ../../mod/photos.php:1490
+msgid "New album name"
+msgstr "新册名"
 
-#: ../../include/features.php:30
-msgid "Post Composition Features"
-msgstr "å\86\99æ\96\87ç« ç\89¹ç\82¹"
+#: ../../mod/photos.php:1493
+msgid "Caption"
+msgstr "å­\97å¹\95"
 
-#: ../../include/features.php:31
-msgid "Richtext Editor"
-msgstr "å¯\8cæ\96\87æ\9c¬æ ¼å¼\8fç¼\96è¾\91"
+#: ../../mod/photos.php:1495
+msgid "Add a Tag"
+msgstr "å\8a æ \87ç­¾"
 
-#: ../../include/features.php:31
-msgid "Enable richtext editor"
-msgstr "使富文本格式编辑可用"
+#: ../../mod/photos.php:1499
+msgid ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv"
+
+#: ../../mod/photos.php:1508
+msgid "Private photo"
+msgstr "私人照相"
 
-#: ../../include/features.php:32
-msgid "Post Preview"
-msgstr "文章预演"
+#: ../../mod/photos.php:1509
+msgid "Public photo"
+msgstr "公开照相"
 
-#: ../../include/features.php:32
-msgid "Allow previewing posts and comments before publishing them"
-msgstr "允许文章和评论出版前预演"
+#: ../../mod/photos.php:1529 ../../mod/content.php:707
+#: ../../object/Item.php:223
+msgid "I like this (toggle)"
+msgstr "我喜欢这(交替)"
 
-#: ../../include/features.php:37
-msgid "Network Sidebar Widgets"
-msgstr "网络工具栏小窗口"
+#: ../../mod/photos.php:1530 ../../mod/content.php:708
+#: ../../object/Item.php:224
+msgid "I don't like this (toggle)"
+msgstr "我不喜欢这(交替)"
 
-#: ../../include/features.php:38
-msgid "Search by Date"
-msgstr "按日期搜索"
+#: ../../mod/photos.php:1549 ../../mod/photos.php:1593
+#: ../../mod/photos.php:1676 ../../mod/content.php:730
+#: ../../object/Item.php:640
+msgid "This is you"
+msgstr "这是你"
 
-#: ../../include/features.php:38
-msgid "Ability to select posts by date ranges"
-msgstr "能按时期范围选择文章"
+#: ../../mod/photos.php:1551 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1678 ../../mod/content.php:732
+#: ../../object/Item.php:329 ../../object/Item.php:642 ../../boot.php:651
+msgid "Comment"
+msgstr "评论"
 
-#: ../../include/features.php:39
-msgid "Group Filter"
-msgstr "ç»\84滤å\99¨"
+#: ../../mod/photos.php:1784
+msgid "View Album"
+msgstr "ç\9c\8bç\85§ç\89\87å\86\8c"
 
-#: ../../include/features.php:39
-msgid "Enable widget to display Network posts only from selected group"
-msgstr "使光表示网络文章从选择的组小窗口"
+#: ../../mod/photos.php:1793
+msgid "Recent Photos"
+msgstr "最近的照片"
 
-#: ../../include/features.php:40
-msgid "Network Filter"
-msgstr "网络滤器"
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendica"
+msgstr "Friendica欢迎你"
 
-#: ../../include/features.php:40
-msgid "Enable widget to display Network posts only from selected network"
-msgstr "使光表示网络文章从选择的网络小窗口"
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr "新的成员一览表"
 
-#: ../../include/features.php:41
-msgid "Save search terms for re-use"
-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/features.php:46
-msgid "Network Tabs"
-msgstr "网络分页"
+#: ../../mod/newmember.php:14
+msgid "Getting Started"
+msgstr "开始方法"
 
-#: ../../include/features.php:47
-msgid "Network Personal Tab"
-msgstr "网络私人分页"
+#: ../../mod/newmember.php:18
+msgid "Friendica Walk-Through"
+msgstr "Friendica游览"
 
-#: ../../include/features.php:47
-msgid "Enable tab to display only Network posts that you've interacted on"
-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/features.php:48
-msgid "Network New Tab"
-msgstr "网络新分页"
+#: ../../mod/newmember.php:26
+msgid "Go to Your Settings"
+msgstr "您的设置"
 
-#: ../../include/features.php:48
-msgid "Enable tab to display only new Network posts (from the last 12 hours)"
-msgstr "使表示光网络文章在12小时内分页可用"
+#: ../../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/features.php:49
-msgid "Network Shared Links Tab"
-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/features.php:49
-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/newmember.php:36 ../../mod/profile_photo.php:244
+msgid "Upload Profile Photo"
+msgstr "ä¸\8aä¼ ç®\80å\8e\86ç\85§ç\89\87"
 
-#: ../../include/features.php:54
-msgid "Post/Comment Tools"
-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/features.php:55
-msgid "Multiple Deletion"
-msgstr "多删除"
+#: ../../mod/newmember.php:38
+msgid "Edit Your Profile"
+msgstr "编辑您的简介"
 
-#: ../../include/features.php:55
-msgid "Select and delete multiple posts/comments at once"
-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/features.php:56
-msgid "Edit Sent Posts"
-msgstr "ç¼\96è¾\91å\8f\91é\80\81ç\9a\84æ\96\87ç« "
+#: ../../mod/newmember.php:40
+msgid "Profile Keywords"
+msgstr "ç®\80ä»\8bå\85³é\94®å­\97"
 
-#: ../../include/features.php:56
-msgid "Edit and correct posts and comments after sending"
-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/features.php:57
-msgid "Tagging"
-msgstr "标签"
+#: ../../mod/newmember.php:44
+msgid "Connecting"
+msgstr "连接着"
 
-#: ../../include/features.php:57
-msgid "Ability to tag existing posts"
-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/features.php:58
-msgid "Post Categories"
-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/features.php:58
-msgid "Add categories to your posts"
-msgstr "加入种类给您的文章"
+#: ../../mod/newmember.php:56
+msgid "Importing Emails"
+msgstr "进口着邮件"
 
-#: ../../include/features.php:59
-msgid "Ability to file posts under folders"
-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/features.php:60
-msgid "Dislike Posts"
-msgstr "不喜欢文章"
+#: ../../mod/newmember.php:58
+msgid "Go to Your Contacts Page"
+msgstr "您的熟人页"
 
-#: ../../include/features.php:60
-msgid "Ability to dislike posts/comments"
-msgstr "能不喜欢文章/评论"
+#: ../../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/features.php:61
-msgid "Star Posts"
-msgstr "æ\96\87ç« æ\98\9f"
+#: ../../mod/newmember.php:60
+msgid "Go to Your Site's Directory"
+msgstr "æ\82¨ç½\91ç«\99ç\9a\84ç\9b®å½\95"
 
-#: ../../include/features.php:61
-msgid "Ability to mark special posts with a star indicator"
-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.php:41
-#, php-format
-msgid "Cannot locate DNS info for database server '%s'"
-msgstr "找不到DNS信息为数据库服务器「%s」"
+#: ../../mod/newmember.php:62
+msgid "Finding New People"
+msgstr "找新人"
 
-#: ../../include/message.php:15 ../../include/message.php:172
-msgid "[no subject]"
-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:325
-msgid "Visible to everybody"
-msgstr "任何人可见的"
+#: ../../mod/newmember.php:70
+msgid "Group Your Contacts"
+msgstr "把熟人组起来"
 
-#: ../../include/enotify.php:16
-msgid "Friendica Notification"
-msgstr "Friendica 通知"
+#: ../../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/enotify.php:19
-msgid "Thank You,"
-msgstr "谢谢,"
+#: ../../mod/newmember.php:73
+msgid "Why Aren't My Posts Public?"
+msgstr "我文章怎么没公开的?"
 
-#: ../../include/enotify.php:21
-#, php-format
-msgid "%s Administrator"
-msgstr "%s管理员"
+#: ../../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/enotify.php:40
-#, php-format
-msgid "%s <!item_type!>"
-msgstr "%s <!item_type!>"
+#: ../../mod/newmember.php:78
+msgid "Getting Help"
+msgstr "怎么获得帮助"
 
-#: ../../include/enotify.php:44
-#, php-format
-msgid "[Friendica:Notify] New mail received at %s"
-msgstr "[Friendica:Notify]收到新邮件在%s"
+#: ../../mod/newmember.php:82
+msgid "Go to the Help Section"
+msgstr "看帮助部分"
 
-#: ../../include/enotify.php:46
-#, php-format
-msgid "%1$s sent you a new private message at %2$s."
-msgstr "%1$s发给您新私人通知在%2$s."
+#: ../../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/enotify.php:47
-#, php-format
-msgid "%1$s sent you %2$s."
-msgstr "%1$s发给您%2$s."
+#: ../../mod/profile.php:21 ../../boot.php:1246
+msgid "Requested profile is not available."
+msgstr "要求的简介联系不上的。"
 
-#: ../../include/enotify.php:47
-msgid "a private message"
-msgstr "一条私人的消息"
+#: ../../mod/profile.php:180
+msgid "Tips for New Members"
+msgstr "提示对新成员"
 
-#: ../../include/enotify.php:48
-#, php-format
-msgid "Please visit %s to view and/or reply to your private messages."
-msgstr "清去%s为了看或回答你私人的消息"
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
+msgstr "无效要求身份号。"
 
-#: ../../include/enotify.php:90
-#, 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/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
+msgid "Discard"
+msgstr "丢弃"
 
-#: ../../include/enotify.php:97
-#, 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/notifications.php:78
+msgid "System"
+msgstr "系统"
 
-#: ../../include/enotify.php:105
-#, php-format
-msgid "%1$s commented on [url=%2$s]your %3$s[/url]"
-msgstr "%1$s于[url=%2$s]您的%3$s[/url]评论了"
+#: ../../mod/notifications.php:122
+msgid "Show Ignored Requests"
+msgstr "显示不理的要求"
 
-#: ../../include/enotify.php:115
-#, php-format
-msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s"
-msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论"
+#: ../../mod/notifications.php:122
+msgid "Hide Ignored Requests"
+msgstr "隐藏不理的要求"
 
-#: ../../include/enotify.php:116
-#, php-format
-msgid "%s commented on an item/conversation you have been following."
-msgstr "%s对你有兴趣的项目/ 交谈发表意见"
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
+msgid "Notification type: "
+msgstr "通知种类:"
 
-#: ../../include/enotify.php:119 ../../include/enotify.php:134
-#: ../../include/enotify.php:147 ../../include/enotify.php:165
-#: ../../include/enotify.php:178
-#, php-format
-msgid "Please visit %s to view and/or reply to the conversation."
-msgstr "清去%s为了看或回答交谈"
+#: ../../mod/notifications.php:150
+msgid "Friend Suggestion"
+msgstr "朋友建议"
 
-#: ../../include/enotify.php:126
+#: ../../mod/notifications.php:152
 #, php-format
-msgid "[Friendica:Notify] %s posted to your profile wall"
-msgstr "[Friendica:Notify] %s贴在您的简介墙"
+msgid "suggested by %s"
+msgstr "由%s建议的"
 
-#: ../../include/enotify.php:128
-#, php-format
-msgid "%1$s posted to your profile wall at %2$s"
-msgstr "%1$s放在您的简介墙在%2$s"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "Post a new friend activity"
+msgstr "表新朋友活动"
 
-#: ../../include/enotify.php:130
-#, php-format
-msgid "%1$s posted to [url=%2$s]your wall[/url]"
-msgstr "%1$s放在[url=%2$s]您的墙[/url]"
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
+msgid "if applicable"
+msgstr "或适用"
 
-#: ../../include/enotify.php:141
-#, php-format
-msgid "[Friendica:Notify] %s tagged you"
-msgstr "[Friendica:Notify] %s标签您"
+#: ../../mod/notifications.php:181
+msgid "Claims to be known to you: "
+msgstr "声称被您认识:"
 
-#: ../../include/enotify.php:142
-#, php-format
-msgid "%1$s tagged you at %2$s"
-msgstr "%1$s把您在%2$s标签"
+#: ../../mod/notifications.php:181
+msgid "yes"
+msgstr "是"
 
-#: ../../include/enotify.php:143
-#, php-format
-msgid "%1$s [url=%2$s]tagged you[/url]."
-msgstr "%1$s[url=%2$s]把您标签[/url]."
+#: ../../mod/notifications.php:181
+msgid "no"
+msgstr "否"
 
-#: ../../include/enotify.php:155
-#, php-format
-msgid "[Friendica:Notify] %1$s poked you"
-msgstr "[Friendica:Notify]您被%1$s戳"
+#: ../../mod/notifications.php:188
+msgid "Approve as: "
+msgstr "批准作为"
 
-#: ../../include/enotify.php:156
-#, php-format
-msgid "%1$s poked you at %2$s"
-msgstr "您被%1$s戳在%2$s"
+#: ../../mod/notifications.php:189
+msgid "Friend"
+msgstr "朋友"
 
-#: ../../include/enotify.php:157
-#, php-format
-msgid "%1$s [url=%2$s]poked you[/url]."
-msgstr "%1$s[url=%2$s]把您戳[/url]。"
+#: ../../mod/notifications.php:190
+msgid "Sharer"
+msgstr "分享者"
 
-#: ../../include/enotify.php:172
-#, php-format
-msgid "[Friendica:Notify] %s tagged your post"
-msgstr "[Friendica:Notify] %s标前您的文章"
+#: ../../mod/notifications.php:190
+msgid "Fan/Admirer"
+msgstr "迷/赞赏者"
 
-#: ../../include/enotify.php:173
-#, php-format
-msgid "%1$s tagged your post at %2$s"
-msgstr "%1$s把您的文章在%2$s标签"
+#: ../../mod/notifications.php:196
+msgid "Friend/Connect Request"
+msgstr "友谊/联络要求"
 
-#: ../../include/enotify.php:174
-#, php-format
-msgid "%1$s tagged [url=%2$s]your post[/url]"
-msgstr "%1$s把[url=%2$s]您的文章[/url]标签"
+#: ../../mod/notifications.php:196
+msgid "New Follower"
+msgstr "新关注者:"
 
-#: ../../include/enotify.php:185
-msgid "[Friendica:Notify] Introduction received"
-msgstr "[Friendica:Notify] 收到介绍"
+#: ../../mod/notifications.php:217
+msgid "No introductions."
+msgstr "没有介绍。"
 
-#: ../../include/enotify.php:186
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
 #, php-format
-msgid "You've received an introduction from '%1$s' at %2$s"
-msgstr "您从「%1$s」受到一个介绍在%2$s"
+msgid "%s liked %s's post"
+msgstr "%s喜欢了%s的消息"
 
-#: ../../include/enotify.php:187
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
 #, php-format
-msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
-msgstr "您从%2$s收到[url=%1$s]一个介绍[/url]。"
+msgid "%s disliked %s's post"
+msgstr "%s不喜欢了%s的消息"
 
-#: ../../include/enotify.php:190 ../../include/enotify.php:208
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
 #, php-format
-msgid "You may visit their profile at %s"
-msgstr "你能看他的简介在%s"
+msgid "%s is now friends with %s"
+msgstr "%s成为%s的朋友"
 
-#: ../../include/enotify.php:192
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
 #, php-format
-msgid "Please visit %s to approve or reject the introduction."
-msgstr "请批准或拒绝介绍在%s"
-
-#: ../../include/enotify.php:199
-msgid "[Friendica:Notify] Friend suggestion received"
-msgstr "[Friendica:Notify] 收到朋友建议"
+msgid "%s created a new post"
+msgstr "%s造成新文章"
 
-#: ../../include/enotify.php:200
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
 #, php-format
-msgid "You've received a friend suggestion from '%1$s' at %2$s"
-msgstr "您从「%2$s」收到[url=%1$s]一个朋友建议[/url]。"
+msgid "%s commented on %s's post"
+msgstr "%s便条%s的文章"
 
-#: ../../include/enotify.php:201
-#, php-format
-msgid ""
-"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
-msgstr "您从%2$s收到[url=%1$s]一个朋友建议[/url]为%2$s。"
+#: ../../mod/notifications.php:302
+msgid "No more network notifications."
+msgstr "没有别的网络通信。"
 
-#: ../../include/enotify.php:206
-msgid "Name:"
-msgstr "名字:"
+#: ../../mod/notifications.php:306
+msgid "Network Notifications"
+msgstr "网络通知"
 
-#: ../../include/enotify.php:207
-msgid "Photo:"
-msgstr "照片:"
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
+msgid "No more system notifications."
+msgstr "没别系统通知。"
 
-#: ../../include/enotify.php:210
-#, php-format
-msgid "Please visit %s to approve or reject the suggestion."
-msgstr "请批准或拒绝建议在%s"
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
+msgid "System Notifications"
+msgstr "系统通知"
 
-#: ../../include/follow.php:32
-msgid "Connect URL missing."
-msgstr "连接URL失踪的。"
+#: ../../mod/notifications.php:427
+msgid "No more personal notifications."
+msgstr "没有别的私人通信。"
 
-#: ../../include/follow.php:59
-msgid ""
-"This site is not configured to allow communications with other networks."
-msgstr "这网站没配置允许跟别的网络交流."
+#: ../../mod/notifications.php:431
+msgid "Personal Notifications"
+msgstr "私人通知"
 
-#: ../../include/follow.php:60 ../../include/follow.php:80
-msgid "No compatible communication protocols or feeds were discovered."
-msgstr "没æ\9c\89å\85¼å®¹å\8d\8fè®®æ\88\96è\80\85æ\91\98è¦\81æ\89¾å\88°äº\86."
+#: ../../mod/notifications.php:508
+msgid "No more home notifications."
+msgstr "没æ\9c\89å\88«ç\9a\84家é\80\9aä¿¡ã\80\82"
 
-#: ../../include/follow.php:78
-msgid "The profile address specified does not provide adequate information."
-msgstr "输入的简介地址没有够消息。"
+#: ../../mod/notifications.php:512
+msgid "Home Notifications"
+msgstr "主页通知"
 
-#: ../../include/follow.php:82
-msgid "An author or name was not found."
-msgstr "找不到作者或名。"
+#: ../../mod/oexchange.php:25
+msgid "Post successful."
+msgstr "评论发表了。"
 
-#: ../../include/follow.php:84
-msgid "No browser URL could be matched to this address."
-msgstr "这个地址没有符合什么游览器URL。"
+#: ../../mod/openid.php:24
+msgid "OpenID protocol error. No ID returned."
+msgstr "OpenID协议错误。没ID还。 "
 
-#: ../../include/follow.php:86
+#: ../../mod/openid.php:53
 msgid ""
-"Unable to match @-style Identity Address with a known protocol or email "
-"contact."
-msgstr "使不了知道的相配或邮件熟人相配 "
+"Account not found and OpenID registration is not permitted on this site."
+msgstr "找不到账户和OpenID注册不允许。"
 
-#: ../../include/follow.php:87
-msgid "Use mailto: in front of address to force email check."
-msgstr "输入mailto:地址前为要求电子邮件检查。"
+#: ../../mod/profile_photo.php:44
+msgid "Image uploaded but image cropping failed."
+msgstr "照片上传去了,但修剪失灵。"
 
-#: ../../include/follow.php:93
-msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
-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/follow.php:103
+#: ../../mod/profile_photo.php:118
 msgid ""
-"Limited profile. This person will be unable to receive direct/personal "
-"notifications from you."
-msgstr "有限的简介。这人不会接受直达/私人通信从您。"
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。"
 
-#: ../../include/follow.php:205
-msgid "Unable to retrieve contact information."
-msgstr "ä¸\8dè\83½å\8f\96å\9b\9eç\86\9f人æ¶\88æ\81¯ã\80\82"
+#: ../../mod/profile_photo.php:128
+msgid "Unable to process image"
+msgstr "ä¸\8dè\83½å¤\84ç\90\86ç\85§ç\89\87"
 
-#: ../../include/follow.php:259
-msgid "following"
-msgstr "关注"
+#: ../../mod/profile_photo.php:242
+msgid "Upload File:"
+msgstr "上传文件:"
 
-#: ../../include/items.php:3373
-msgid "A new person is sharing with you at "
-msgstr "一位新人给你分享在"
+#: ../../mod/profile_photo.php:243
+msgid "Select a profile:"
+msgstr "选择一个简介"
 
-#: ../../include/items.php:3373
-msgid "You have a new follower at "
-msgstr "你有新的关注者在"
+#: ../../mod/profile_photo.php:248
+msgid "skip this step"
+msgstr "略过这步"
 
-#: ../../include/items.php:3892
-msgid "Do you really want to delete this item?"
-msgstr "您真的想删除这个项目吗?"
+#: ../../mod/profile_photo.php:248
+msgid "select a photo from your photo albums"
+msgstr "从您的照片册选择一片。"
 
-#: ../../include/items.php:4085
-msgid "Archives"
-msgstr "档案"
+#: ../../mod/profile_photo.php:262
+msgid "Crop Image"
+msgstr "修剪照片"
 
-#: ../../include/user.php:39
-msgid "An invitation is required."
-msgstr "邀请必要的。"
+#: ../../mod/profile_photo.php:263
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr "请调图片剪裁为最好看。"
 
-#: ../../include/user.php:44
-msgid "Invitation could not be verified."
-msgstr "不能证实邀请。"
+#: ../../mod/profile_photo.php:265
+msgid "Done Editing"
+msgstr "编完了"
 
-#: ../../include/user.php:52
-msgid "Invalid OpenID url"
-msgstr "无效的OpenID url"
+#: ../../mod/profile_photo.php:299
+msgid "Image uploaded successfully."
+msgstr "照片成功地上传了"
 
-#: ../../include/user.php:67
-msgid "Please enter the required information."
-msgstr "请输入必要的信息。"
+#: ../../mod/content.php:626 ../../object/Item.php:352
+#, php-format
+msgid "%d comment"
+msgid_plural "%d comments"
+msgstr[0] "%d评论"
 
-#: ../../include/user.php:81
-msgid "Please use a shorter name."
-msgstr "请用短一点名。"
+#: ../../mod/content.php:707 ../../object/Item.php:223
+msgid "like"
+msgstr "喜欢"
 
-#: ../../include/user.php:83
-msgid "Name too short."
-msgstr "名字太短。"
+#: ../../mod/content.php:708 ../../object/Item.php:224
+msgid "dislike"
+msgstr "讨厌"
 
-#: ../../include/user.php:98
-msgid "That doesn't appear to be your full (First Last) name."
-msgstr "这看上去不是您的全姓名。"
+#: ../../mod/content.php:710 ../../object/Item.php:226
+msgid "Share this"
+msgstr "分享这个"
 
-#: ../../include/user.php:103
-msgid "Your email domain is not among those allowed on this site."
-msgstr "这网站允许的域名中没有您的"
+#: ../../mod/content.php:710 ../../object/Item.php:226
+msgid "share"
+msgstr "分享"
 
-#: ../../include/user.php:106
-msgid "Not a valid email address."
-msgstr "无效的邮件地址。"
+#: ../../mod/content.php:734 ../../object/Item.php:644
+msgid "Bold"
+msgstr "粗体字 "
 
-#: ../../include/user.php:116
-msgid "Cannot use that email."
-msgstr "不能用这个邮件地址。"
+#: ../../mod/content.php:735 ../../object/Item.php:645
+msgid "Italic"
+msgstr "斜体 "
 
-#: ../../include/user.php:122
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
-msgstr "您的昵称只能包括\"a-z\",\"0-9\",\"-\"和\"_\",还有头一字必须是拉丁字。"
+#: ../../mod/content.php:736 ../../object/Item.php:646
+msgid "Underline"
+msgstr "下划线"
 
-#: ../../include/user.php:128 ../../include/user.php:226
-msgid "Nickname is already registered. Please choose another."
-msgstr "昵称已经报到。请选择新的。"
+#: ../../mod/content.php:737 ../../object/Item.php:647
+msgid "Quote"
+msgstr "引语"
 
-#: ../../include/user.php:138
-msgid ""
-"Nickname was once registered here and may not be re-used. Please choose "
-"another."
-msgstr "昵称曾经这里注册于是不能再用。请选择别的。"
+#: ../../mod/content.php:738 ../../object/Item.php:648
+msgid "Code"
+msgstr "源代码"
 
-#: ../../include/user.php:154
-msgid "SERIOUS ERROR: Generation of security keys failed."
-msgstr "要紧错误:产生安全钥匙失败了。"
+#: ../../mod/content.php:739 ../../object/Item.php:649
+msgid "Image"
+msgstr "图片"
 
-#: ../../include/user.php:212
-msgid "An error occurred during registration. Please try again."
-msgstr "æ\8a¥å\88°å\87ºäº\86é\97®é¢\98ã\80\82请å\86\8dè¯\95ã\80\82"
+#: ../../mod/content.php:740 ../../object/Item.php:650
+msgid "Link"
+msgstr "ç\8e¯è\8a\82"
 
-#: ../../include/user.php:247
-msgid "An error occurred creating your default profile. Please try again."
-msgstr "造成默认简介出了问题。请再试。"
+#: ../../mod/content.php:741 ../../object/Item.php:651
+msgid "Video"
+msgstr "录像"
 
-#: ../../include/security.php:22
-msgid "Welcome "
-msgstr "欢迎"
+#: ../../mod/content.php:776 ../../object/Item.php:202
+msgid "add star"
+msgstr "加星"
 
-#: ../../include/security.php:23
-msgid "Please upload a profile photo."
-msgstr "请上传一张简介照片"
+#: ../../mod/content.php:777 ../../object/Item.php:203
+msgid "remove star"
+msgstr "消星"
 
-#: ../../include/security.php:26
-msgid "Welcome back "
-msgstr "欢迎归来"
+#: ../../mod/content.php:778 ../../object/Item.php:204
+msgid "toggle star status"
+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/content.php:781 ../../object/Item.php:207
+msgid "starred"
+msgstr "被贴星"
 
-#: ../../include/Contact.php:115
-msgid "stopped following"
-msgstr "结束关注了"
+#: ../../mod/content.php:782 ../../object/Item.php:212
+msgid "add tag"
+msgstr "加标签"
 
-#: ../../include/Contact.php:225 ../../include/conversation.php:820
-msgid "Poke"
-msgstr ""
+#: ../../mod/content.php:786 ../../object/Item.php:123
+msgid "save to folder"
+msgstr "保存在文件夹"
 
-#: ../../include/Contact.php:226 ../../include/conversation.php:814
-msgid "View Status"
-msgstr "看现状"
+#: ../../mod/content.php:877 ../../object/Item.php:299
+msgid "to"
+msgstr ""
 
-#: ../../include/Contact.php:227 ../../include/conversation.php:815
-msgid "View Profile"
-msgstr "看简介"
+#: ../../mod/content.php:878 ../../object/Item.php:301
+msgid "Wall-to-Wall"
+msgstr "从墙到墙"
 
-#: ../../include/Contact.php:228 ../../include/conversation.php:816
-msgid "View Photos"
-msgstr "看照片"
+#: ../../mod/content.php:879 ../../object/Item.php:302
+msgid "via Wall-To-Wall:"
+msgstr "通过从墙到墙"
 
-#: ../../include/Contact.php:229 ../../include/Contact.php:251
-#: ../../include/conversation.php:817
-msgid "Network Posts"
-msgstr "网络文章"
+#: ../../object/Item.php:300
+msgid "via"
+msgstr "经过"
 
-#: ../../include/Contact.php:230 ../../include/Contact.php:251
-#: ../../include/conversation.php:818
-msgid "Edit Contact"
-msgstr "编辑熟人"
+#: ../../view/theme/cleanzero/config.php:82
+#: ../../view/theme/diabook/config.php:154
+#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66
+msgid "Theme settings"
+msgstr "主题设置"
 
-#: ../../include/Contact.php:231 ../../include/Contact.php:251
-#: ../../include/conversation.php:819
-msgid "Send PM"
-msgstr "法私人的新闻"
+#: ../../view/theme/cleanzero/config.php:83
+msgid "Set resize level for images in posts and comments (width and height)"
+msgstr "选择图片在文章和评论的重设尺寸(宽和高)"
 
-#: ../../include/conversation.php:207
-#, php-format
-msgid "%1$s poked %2$s"
-msgstr "%1$s把%2$s戳"
+#: ../../view/theme/cleanzero/config.php:84
+#: ../../view/theme/diabook/config.php:155
+#: ../../view/theme/dispy/config.php:73
+msgid "Set font-size for posts and comments"
+msgstr "决定字体大小在文章和评论"
+
+#: ../../view/theme/cleanzero/config.php:85
+msgid "Set theme width"
+msgstr "选择主题宽"
 
-#: ../../include/conversation.php:291
-msgid "post/item"
-msgstr "文章/项目"
+#: ../../view/theme/cleanzero/config.php:86
+#: ../../view/theme/quattro/config.php:68
+msgid "Color scheme"
+msgstr " 色彩设计"
 
-#: ../../include/conversation.php:292
-#, php-format
-msgid "%1$s marked %2$s's %3$s as favorite"
-msgstr "%1$s标注%2$s的%3$s为偏爱"
+#: ../../view/theme/diabook/config.php:156
+#: ../../view/theme/dispy/config.php:74
+msgid "Set line-height for posts and comments"
+msgstr "决定行高在文章和评论"
 
-#: ../../include/conversation.php:621 ../../object/Item.php:249
-msgid "Categories:"
-msgstr "种类:"
+#: ../../view/theme/diabook/config.php:157
+msgid "Set resolution for middle column"
+msgstr "决定中栏的显示分辨率列表"
 
-#: ../../include/conversation.php:622 ../../object/Item.php:250
-msgid "Filed under:"
-msgstr "归档在:"
+#: ../../view/theme/diabook/config.php:158
+msgid "Set color scheme"
+msgstr "选择色彩设计"
 
-#: ../../include/conversation.php:710
-msgid "remove"
-msgstr "删除"
+#: ../../view/theme/diabook/config.php:159
+#: ../../view/theme/diabook/theme.php:609
+msgid "Set twitter search term"
+msgstr "选择Twitter搜索关键"
 
-#: ../../include/conversation.php:714
-msgid "Delete Selected Items"
-msgstr "删除选的项目"
+#: ../../view/theme/diabook/config.php:160
+msgid "Set zoomfactor for Earth Layer"
+msgstr "选择拉近镜头级在地球层"
 
-#: ../../include/conversation.php:813
-msgid "Follow Thread"
-msgstr "关注线绳"
+#: ../../view/theme/diabook/config.php:161
+#: ../../view/theme/diabook/theme.php:578
+msgid "Set longitude (X) for Earth Layers"
+msgstr "选择经度(X)在地球层"
 
-#: ../../include/conversation.php:882
-#, php-format
-msgid "%s likes this."
-msgstr "%s喜欢这个."
+#: ../../view/theme/diabook/config.php:162
+#: ../../view/theme/diabook/theme.php:579
+msgid "Set latitude (Y) for Earth Layers"
+msgstr "选择纬度(Y)在地球层"
 
-#: ../../include/conversation.php:882
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s没有喜欢这个."
+#: ../../view/theme/diabook/config.php:163
+#: ../../view/theme/diabook/theme.php:94
+#: ../../view/theme/diabook/theme.php:537
+#: ../../view/theme/diabook/theme.php:632
+msgid "Community Pages"
+msgstr "社会页"
 
-#: ../../include/conversation.php:887
-#, php-format
-msgid "<span  %1$s>%2$d people</span> like this"
-msgstr "<span  %1$s>%2$d人们</span>喜欢这个"
+#: ../../view/theme/diabook/config.php:164
+#: ../../view/theme/diabook/theme.php:572
+#: ../../view/theme/diabook/theme.php:633
+msgid "Earth Layers"
+msgstr "地球层"
 
-#: ../../include/conversation.php:890
-#, php-format
-msgid "<span  %1$s>%2$d people</span> don't like this"
-msgstr "<span  %1$s>%2$d人们</span>不喜欢这个"
+#: ../../view/theme/diabook/config.php:165
+#: ../../view/theme/diabook/theme.php:384
+#: ../../view/theme/diabook/theme.php:634
+msgid "Community Profiles"
+msgstr "社会简介"
 
-#: ../../include/conversation.php:904
-msgid "and"
-msgstr "和"
+#: ../../view/theme/diabook/config.php:166
+#: ../../view/theme/diabook/theme.php:592
+#: ../../view/theme/diabook/theme.php:635
+msgid "Help or @NewHere ?"
+msgstr "帮助或@菜鸟?"
 
-#: ../../include/conversation.php:910
-#, php-format
-msgid ", and %d other people"
-msgstr ",和%d别人"
+#: ../../view/theme/diabook/config.php:167
+#: ../../view/theme/diabook/theme.php:599
+#: ../../view/theme/diabook/theme.php:636
+msgid "Connect Services"
+msgstr "连接服务"
 
-#: ../../include/conversation.php:912
-#, php-format
-msgid "%s like this."
-msgstr "%s喜欢这个"
+#: ../../view/theme/diabook/config.php:168
+#: ../../view/theme/diabook/theme.php:516
+#: ../../view/theme/diabook/theme.php:637
+msgid "Find Friends"
+msgstr "找朋友们"
 
-#: ../../include/conversation.php:912
-#, php-format
-msgid "%s don't like this."
-msgstr "%s不喜欢这个"
+#: ../../view/theme/diabook/config.php:169
+msgid "Last tweets"
+msgstr "最后准文"
 
-#: ../../include/conversation.php:939 ../../include/conversation.php:957
-msgid "Visible to <strong>everybody</strong>"
-msgstr "<strong>大家</strong>可见的"
+#: ../../view/theme/diabook/config.php:170
+#: ../../view/theme/diabook/theme.php:405
+#: ../../view/theme/diabook/theme.php:639
+msgid "Last users"
+msgstr "上次用户"
 
-#: ../../include/conversation.php:941 ../../include/conversation.php:959
-msgid "Please enter a video link/URL:"
-msgstr "请输入视频连接/URL:"
+#: ../../view/theme/diabook/config.php:171
+#: ../../view/theme/diabook/theme.php:479
+#: ../../view/theme/diabook/theme.php:640
+msgid "Last photos"
+msgstr "上次照片"
 
-#: ../../include/conversation.php:942 ../../include/conversation.php:960
-msgid "Please enter an audio link/URL:"
-msgstr "请输入音响连接/URL:"
+#: ../../view/theme/diabook/config.php:172
+#: ../../view/theme/diabook/theme.php:434
+#: ../../view/theme/diabook/theme.php:641
+msgid "Last likes"
+msgstr "上次喜欢"
 
-#: ../../include/conversation.php:943 ../../include/conversation.php:961
-msgid "Tag term:"
-msgstr "æ \87ç­¾:"
+#: ../../view/theme/diabook/theme.php:89
+msgid "Your contacts"
+msgstr "æ\82¨ç\9a\84ç\86\9f人"
 
-#: ../../include/conversation.php:945 ../../include/conversation.php:963
-msgid "Where are you right now?"
-msgstr "你在哪里?"
+#: ../../view/theme/diabook/theme.php:517
+msgid "Local Directory"
+msgstr "当地目录"
 
-#: ../../include/conversation.php:946
-msgid "Delete item(s)?"
-msgstr "把项目删除吗?"
+#: ../../view/theme/diabook/theme.php:577
+msgid "Set zoomfactor for Earth Layers"
+msgstr "选择拉近镜头级在地球层"
 
-#: ../../include/conversation.php:988
-msgid "Post to Email"
-msgstr "电邮发布"
+#: ../../view/theme/diabook/theme.php:606
+#: ../../view/theme/diabook/theme.php:638
+msgid "Last Tweets"
+msgstr "最后准文"
 
-#: ../../include/conversation.php:1044
-msgid "permissions"
-msgstr "权利"
+#: ../../view/theme/diabook/theme.php:630
+msgid "Show/hide boxes at right-hand column:"
+msgstr "表示/隐藏盒子在友兰:"
 
-#: ../../include/conversation.php:1068
-msgid "Post to Groups"
-msgstr "发到组"
+#: ../../view/theme/dispy/config.php:75
+msgid "Set colour scheme"
+msgstr "选择色彩设计"
 
-#: ../../include/conversation.php:1069
-msgid "Post to Contacts"
-msgstr "发到熟人"
+#: ../../view/theme/quattro/config.php:67
+msgid "Alignment"
+msgstr "成直线 "
 
-#: ../../include/conversation.php:1070
-msgid "Private post"
-msgstr "私人文章"
+#: ../../view/theme/quattro/config.php:67
+msgid "Left"
+msgstr "左边"
 
-#: ../../include/plugin.php:429 ../../include/plugin.php:431
-msgid "Click here to upgrade."
-msgstr "这里点击为更新。"
+#: ../../view/theme/quattro/config.php:67
+msgid "Center"
+msgstr "中间"
 
-#: ../../include/plugin.php:437
-msgid "This action exceeds the limits set by your subscription plan."
-msgstr "这个行动超过您订阅的限制。"
+#: ../../view/theme/quattro/config.php:69
+msgid "Posts font size"
+msgstr "文章"
 
-#: ../../include/plugin.php:442
-msgid "This action is not available under your subscription plan."
-msgstr "这个行动在您的订阅不可用的。"
+#: ../../view/theme/quattro/config.php:70
+msgid "Textareas font size"
+msgstr "文本区字体大小"
+
+#: ../../index.php:400
+msgid "toggle mobile"
+msgstr "交替手机"
 
-#: ../../boot.php:640
+#: ../../boot.php:650
 msgid "Delete this item?"
 msgstr "删除这个项目?"
 
-#: ../../boot.php:643
+#: ../../boot.php:653
 msgid "show fewer"
 msgstr "显示更小"
 
-#: ../../boot.php:899
+#: ../../boot.php:920
 #, php-format
 msgid "Update %s failed. See error logs."
 msgstr "更新%s美通过。看错误记录。"
 
-#: ../../boot.php:901
+#: ../../boot.php:922
 #, php-format
 msgid "Update Error at %s"
 msgstr "更新错误在%s"
 
-#: ../../boot.php:1011
+#: ../../boot.php:1032
 msgid "Create a New Account"
 msgstr "创造新的账户"
 
-#: ../../boot.php:1039
+#: ../../boot.php:1060
 msgid "Nickname or Email address: "
 msgstr "绰号或电子邮件地址: "
 
-#: ../../boot.php:1040
+#: ../../boot.php:1061
 msgid "Password: "
 msgstr "密码: "
 
-#: ../../boot.php:1041
+#: ../../boot.php:1062
 msgid "Remember me"
 msgstr "记住我"
 
-#: ../../boot.php:1044
+#: ../../boot.php:1065
 msgid "Or login using OpenID: "
 msgstr "或者用OpenID登记:"
 
-#: ../../boot.php:1050
+#: ../../boot.php:1071
 msgid "Forgot your password?"
 msgstr "忘记你的密码吗?"
 
-#: ../../boot.php:1053
+#: ../../boot.php:1074
 msgid "Website Terms of Service"
 msgstr "网站的各项规定"
 
-#: ../../boot.php:1054
+#: ../../boot.php:1075
 msgid "terms of service"
 msgstr "各项规定"
 
-#: ../../boot.php:1056
+#: ../../boot.php:1077
 msgid "Website Privacy Policy"
 msgstr "网站隐私政策"
 
-#: ../../boot.php:1057
+#: ../../boot.php:1078
 msgid "privacy policy"
 msgstr "隐私政策"
 
-#: ../../boot.php:1186
+#: ../../boot.php:1207
 msgid "Requested account is not available."
 msgstr "要求的账户不可用。"
 
-#: ../../boot.php:1265
+#: ../../boot.php:1286 ../../boot.php:1390
 msgid "Edit profile"
 msgstr "修改简介"
 
-#: ../../boot.php:1331
+#: ../../boot.php:1352
 msgid "Message"
 msgstr "通知"
 
-#: ../../boot.php:1339
+#: ../../boot.php:1360
 msgid "Manage/edit profiles"
 msgstr "管理/修改简介"
 
-#: ../../boot.php:1461 ../../boot.php:1547
+#: ../../boot.php:1489 ../../boot.php:1575
 msgid "g A l F d"
 msgstr "g A l d F"
 
-#: ../../boot.php:1462 ../../boot.php:1548
+#: ../../boot.php:1490 ../../boot.php:1576
 msgid "F d"
 msgstr "F d"
 
-#: ../../boot.php:1507 ../../boot.php:1588
+#: ../../boot.php:1535 ../../boot.php:1616
 msgid "[today]"
 msgstr "[今天]"
 
-#: ../../boot.php:1519
+#: ../../boot.php:1547
 msgid "Birthday Reminders"
 msgstr "提醒生日"
 
-#: ../../boot.php:1520
+#: ../../boot.php:1548
 msgid "Birthdays this week:"
 msgstr "这周的生日:"
 
-#: ../../boot.php:1581
+#: ../../boot.php:1609
 msgid "[No description]"
 msgstr "[无描述]"
 
-#: ../../boot.php:1599
+#: ../../boot.php:1627
 msgid "Event Reminders"
 msgstr "事件提醒"
 
-#: ../../boot.php:1600
+#: ../../boot.php:1628
 msgid "Events this week:"
 msgstr "这周的事件:"
 
-#: ../../boot.php:1836
+#: ../../boot.php:1864
 msgid "Status Messages and Posts"
 msgstr "现状通知和文章"
 
-#: ../../boot.php:1843
+#: ../../boot.php:1871
 msgid "Profile Details"
 msgstr "简介内容"
 
-#: ../../boot.php:1860
+#: ../../boot.php:1888
 msgid "Events and Calendar"
 msgstr "项目和日历"
 
-#: ../../boot.php:1867
+#: ../../boot.php:1895
 msgid "Only You Can See This"
 msgstr "只您许看这个"
-
-#: ../../object/Item.php:261
-msgid "via"
-msgstr "经过"
-
-#: ../../index.php:400
-msgid "toggle mobile"
-msgstr "交替手机"
-
-#: ../../addon.old/bg/bg.php:51
-msgid "Bg settings updated."
-msgstr "Bg设置更新了"
-
-#: ../../addon.old/bg/bg.php:82
-msgid "Bg Settings"
-msgstr "Bg设置"
-
-#: ../../addon.old/drpost/drpost.php:35
-msgid "Post to Drupal"
-msgstr "发到Drupal"
-
-#: ../../addon.old/drpost/drpost.php:72
-msgid "Drupal Post Settings"
-msgstr "Drupal设置"
-
-#: ../../addon.old/drpost/drpost.php:74
-msgid "Enable Drupal Post Plugin"
-msgstr "使Drupal插件能够"
-
-#: ../../addon.old/drpost/drpost.php:79
-msgid "Drupal username"
-msgstr "Drupal用户名"
-
-#: ../../addon.old/drpost/drpost.php:84
-msgid "Drupal password"
-msgstr "Drupal密码"
-
-#: ../../addon.old/drpost/drpost.php:89
-msgid "Post Type - article,page,or blog"
-msgstr "文章种类-文章,页,博客"
-
-#: ../../addon.old/drpost/drpost.php:94
-msgid "Drupal site URL"
-msgstr "Drupal网站URL"
-
-#: ../../addon.old/drpost/drpost.php:99
-msgid "Drupal site uses clean URLS"
-msgstr "Drupal网站用整洁URL"
-
-#: ../../addon.old/drpost/drpost.php:104
-msgid "Post to Drupal by default"
-msgstr "默认地发到Drupal"
-
-#: ../../addon.old/oembed.old/oembed.php:30
-msgid "OEmbed settings updated"
-msgstr "OEmbed设置更新了"
-
-#: ../../addon.old/oembed.old/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
-msgstr "用OEmbed为YouTube视频"
-
-#: ../../addon.old/oembed.old/oembed.php:71
-msgid "URL to embed:"
-msgstr "URL要嵌入:"
-
-#: ../../addon.old/tumblr/tumblr.php:74
-msgid "Tumblr login"
-msgstr "Tumblr登记名"
-
-#: ../../addon.old/tumblr/tumblr.php:79
-msgid "Tumblr password"
-msgstr "Tumblr密码"
index b98b8fba391465b32e0bd1da05c6eeb1f9414b46..f038e6bad9d98924dc00032a94bfe76a76fec101 100644 (file)
 <?php
 
+if(! function_exists("string_plural_select_zh_cn")) {
 function string_plural_select_zh_cn($n){
        return 0;;
-}
+}}
 ;
-$a->strings["Post successful."] = "评论发表了。";
-$a->strings["[Embedded content - reload page to view]"] = "[嵌入内容-重新加载页为看]";
-$a->strings["Contact settings applied."] = "熟人设置应用了。";
-$a->strings["Contact update failed."] = "熟人更新失败。";
-$a->strings["Permission denied."] = "权限不够。";
-$a->strings["Contact not found."] = "没找到熟人。";
-$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["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["Altpager settings updated."] = "Altpager设置更新了。";
+$a->strings["Alternate Pagination Setting"] = "供替换的分页设置";
+$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "用到「更新」和「更旧」页代替页数?";
 $a->strings["Submit"] = "提交";
-$a->strings["Help:"] = "帮助:";
+$a->strings["Bg settings updated."] = "Bg设置更新了";
+$a->strings["Bg Settings"] = "Bg设置";
+$a->strings["How many contacts to display on profile sidebar"] = "多少熟人表示在简介工具栏";
+$a->strings["\"Blockem\" Settings"] = "「Blockem」配置";
+$a->strings["Comma separated profile URLS to block"] = "逗号分简介URL为栏";
+$a->strings["BLOCKEM Settings saved."] = "「Blockem」配置保存了。";
+$a->strings["Blocked %s - Click to open/close"] = "%s拦了-点击为开关";
+$a->strings["Unblock Author"] = "不拦作家";
+$a->strings["Block Author"] = "拦作家";
+$a->strings["blockem settings updated"] = "blockem设置更新了";
+$a->strings["Post to blogger"] = "转播到blogger";
+$a->strings["Blogger Post Settings"] = "Blogger转播设置";
+$a->strings["Enable Blogger Post Plugin"] = "使Blogger转播插件可用";
+$a->strings["Blogger username"] = "Blogger用户名";
+$a->strings["Blogger password"] = "Blogger密码";
+$a->strings["Blogger API URL"] = "Blogger API URL";
+$a->strings["Post to Blogger by default"] = "默认地转播到Blogger";
+$a->strings["Post from Friendica"] = "文章从Friendica";
+$a->strings["Report Bug"] = "报案程序错误";
+$a->strings["Login"] = "登录";
+$a->strings["OpenID"] = "OpenID";
+$a->strings["Latest users"] = "最近用户";
+$a->strings["Most active users"] = "最积极用户";
+$a->strings["Latest photos"] = "最近照片";
+$a->strings["Contact Photos"] = "熟人照片";
+$a->strings["Profile Photos"] = "简介照片";
+$a->strings["Latest likes"] = "最近喜欢";
+$a->strings["event"] = "项目";
+$a->strings["status"] = "现状";
+$a->strings["photo"] = "照片";
+$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s喜欢%2\$s的%3\$s";
+$a->strings["Welcome to %s"] = "%s欢迎你";
+$a->strings["Private Events"] = "私人项目";
+$a->strings["Private Addressbooks"] = "私人通讯录";
+$a->strings["No access"] = "看不了";
+$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "美国时间形式(月/日/年)";
+$a->strings["German Time Format (dd.mm.YYYY)"] = "德国时间形式(日/月/年)";
+$a->strings["Could not open component for editing"] = "开不了部件为编辑";
+$a->strings["Go back to the calendar"] = "返回日历";
+$a->strings["Event data"] = "项目内容";
+$a->strings["Calendar"] = "日历";
+$a->strings["Special color"] = "特别颜色";
+$a->strings["Subject"] = "题目";
+$a->strings["Starts"] = "开始";
+$a->strings["Ends"] = "结束";
+$a->strings["Location"] = "位置";
+$a->strings["Description"] = "描述";
+$a->strings["Recurrence"] = "复发";
+$a->strings["Frequency"] = "频率";
+$a->strings["None"] = "没有";
+$a->strings["Daily"] = "每日";
+$a->strings["Weekly"] = "每周";
+$a->strings["Monthly"] = "每月";
+$a->strings["Yearly"] = "一年一次";
+$a->strings["days"] = "天";
+$a->strings["weeks"] = "星期";
+$a->strings["months"] = "月";
+$a->strings["years"] = "年";
+$a->strings["Interval"] = "间隔";
+$a->strings["All %select% %time%"] = "每%select%%time%";
+$a->strings["Days"] = "天";
+$a->strings["Sunday"] = "星期天";
+$a->strings["Monday"] = "星期一";
+$a->strings["Tuesday"] = "星期二";
+$a->strings["Wednesday"] = "星期三";
+$a->strings["Thursday"] = "星期四";
+$a->strings["Friday"] = "星期五";
+$a->strings["Saturday"] = "星期六";
+$a->strings["First day of week:"] = "星期第一天:";
+$a->strings["Day of month"] = "月里天数";
+$a->strings["#num#th of each month"] = "每月第#num#个";
+$a->strings["#num#th-last of each month"] = "每月第#num#个最后";
+$a->strings["#num#th #wkday# of each month"] = "每月第#num#个#wkday#";
+$a->strings["#num#th-last #wkday# of each month"] = "每月第#num#个最后#wkday#";
+$a->strings["Month"] = "月";
+$a->strings["#num#th of the given month"] = "月第#num#个天";
+$a->strings["#num#th-last of the given month"] = "月第#num#个最后天";
+$a->strings["#num#th #wkday# of the given month"] = "月第#num#个#wkday#";
+$a->strings["#num#th-last #wkday# of the given month"] = "月第#num#个最后#wkday#";
+$a->strings["Repeat until"] = "重复到";
+$a->strings["Infinite"] = "无限的";
+$a->strings["Until the following date"] = "到下个日期";
+$a->strings["Number of times"] = "多少次";
+$a->strings["Exceptions"] = "除外";
+$a->strings["none"] = "没有";
+$a->strings["Notification"] = "通知";
+$a->strings["Notify by"] = "用地方法为通知";
+$a->strings["Remove"] = "移走";
+$a->strings["E-Mail"] = "电子邮件";
+$a->strings["On Friendica / Display"] = "在Friendica/表示";
+$a->strings["Time"] = "时间";
+$a->strings["Hours"] = "小时";
+$a->strings["Minutes"] = "分钟";
+$a->strings["Seconds"] = "秒";
+$a->strings["Weeks"] = "周";
+$a->strings["before the"] = "前";
+$a->strings["start of the event"] = "项目开始";
+$a->strings["end of the event"] = "项目结束";
+$a->strings["Add a notification"] = "加一个通知";
+$a->strings["The event #name# will start at #date"] = "项目#name#开始在#date";
+$a->strings["#name# is about to begin."] = "#name#快开始。";
+$a->strings["Saved"] = "保存了";
+$a->strings["Private Calendar"] = "私人日历";
+$a->strings["Friendica Events: Mine"] = "Friendica项目:我的";
+$a->strings["Friendica Events: Contacts"] = "Friendica项目:熟人";
+$a->strings["Private Addresses"] = "私人地址";
+$a->strings["Friendica Contacts"] = "Friendica熟人";
+$a->strings["Friendica-Native events"] = "本Friendica项目";
+$a->strings["Friendica-Contacts"] = "Friendica熟人";
+$a->strings["Your Friendica-Contacts"] = "您的Friendica熟人";
+$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "进口文件出了问题。不好意思。可能一些项目却是成功地进口了。";
+$a->strings["Something went wrong when trying to import the file. Sorry."] = "进口文件出了问题。不好意思。";
+$a->strings["The ICS-File has been imported."] = "把ICS文件进口了。";
+$a->strings["No file was uploaded."] = "没有上传的文件。";
+$a->strings["Import a ICS-file"] = "进口ICS文件";
+$a->strings["ICS-File"] = "ICS文件";
+$a->strings["Overwrite all #num# existing events"] = "替换所有#num#现有的项目";
+$a->strings["Upload"] = "上传";
+$a->strings["Settings"] = "配置";
 $a->strings["Help"] = "帮助";
-$a->strings["Not Found"] = "未发现";
-$a->strings["Page not found."] = "页发现。";
-$a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d";
-$a->strings["File upload failed."] = "文件上传失败。";
-$a->strings["Friend suggestion sent."] = "朋友建议发送了。";
-$a->strings["Suggest Friends"] = "建议朋友们";
-$a->strings["Suggest a friend for %s"] = "建议朋友给%s";
-$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["New event"] = "新项目";
+$a->strings["Today"] = "今天";
+$a->strings["Day"] = "天";
+$a->strings["Week"] = "周";
+$a->strings["Reload"] = "再装入";
 $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["System down for maintenance"] = "系统关闭为了维持";
-$a->strings["Cancel"] = "退消";
-$a->strings["Tag removed"] = "标签去除了";
-$a->strings["Remove Item Tag"] = "去除项目标签";
-$a->strings["Select a tag to remove: "] = "选择标签去除";
-$a->strings["Remove"] = "移走";
-$a->strings["%1\$s welcomes %2\$s"] = "%1\$s欢迎%2\$s";
-$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["Yes"] = "是";
-$a->strings["No"] = "否";
-$a->strings["Photo Albums"] = "相册";
-$a->strings["Contact Photos"] = "熟人照片";
-$a->strings["Upload New Photos"] = "上传新照片";
-$a->strings["everybody"] = "每人";
-$a->strings["Contact information unavailable"] = "熟人信息不可用";
-$a->strings["Profile Photos"] = "简介照片";
-$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["Unable to process image."] = "处理不了图像.";
-$a->strings["Image upload failed."] = "图像上载失败了.";
-$a->strings["Public access denied."] = "公众看拒绝";
-$a->strings["No photos selected"] = "没有照片挑选了";
-$a->strings["Access to this item is restricted."] = "这个项目使用权限的。";
-$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["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["Private Message"] = "私人的新闻";
-$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["I like this (toggle)"] = "我喜欢这(交替)";
-$a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)";
-$a->strings["Share"] = "分享";
-$a->strings["Please wait"] = "请等一下";
-$a->strings["This is you"] = "这是你";
-$a->strings["Comment"] = "评论";
-$a->strings["Preview"] = "预演";
-$a->strings["Delete"] = "删除";
-$a->strings["View Album"] = "看照片册";
-$a->strings["Recent Photos"] = "最近的照片";
-$a->strings["Not available."] = "不可用的";
-$a->strings["Community"] = "社会";
-$a->strings["No results."] = "没有结果";
-$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["Item not found"] = "项目没找到";
-$a->strings["Edit post"] = "编辑文章";
-$a->strings["Edit"] = "编辑";
-$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["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 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["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["Failed to update contact record."] = "更新熟人记录失败了。";
-$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["[Name Withheld]"] = "[名字拒给]";
-$a->strings["Please enter your 'Identity Address' from one of the following supported communications networks:"] = "请输入您的「同一人地址」这些支持的交通网络中:";
-$a->strings["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>连接当邮件关注</strike>(快来)";
-$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["Diaspora"] = "Diaspora";
-$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["Account settings"] = "帐户配置";
-$a->strings["Display settings"] = "表示设置";
-$a->strings["Connector settings"] = "插销设置";
-$a->strings["Plugin settings"] = "插件设置";
-$a->strings["Connected apps"] = "连接着应用";
-$a->strings["Export personal data"] = "出口私人信息";
-$a->strings["Remove account"] = "删除账户";
-$a->strings["Settings"] = "配置";
-$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["Friendica Social 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["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["Errors encountered creating database tables."] = "造成数据库列表相遇错误。";
-$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["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["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["No matches"] = "没有结果";
-$a->strings["Remote privacy information not available."] = "摇隐私信息无效";
-$a->strings["Visible to:"] = "可见给:";
-$a->strings["No such group"] = "没有这个组";
-$a->strings["Group is empty"] = "组没有成员";
-$a->strings["Group: "] = "组:";
-$a->strings["Select"] = "选择";
-$a->strings["View %s's profile @ %s"] = "看%s的简介@ %s";
-$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["like"] = "喜欢";
-$a->strings["dislike"] = "讨厌";
-$a->strings["Share this"] = "分享这个";
-$a->strings["share"] = "分享";
-$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["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["Welcome to %s"] = "%s欢迎你";
-$a->strings["Invalid request identifier."] = "无效要求身份号。";
-$a->strings["Discard"] = "丢弃";
-$a->strings["Ignore"] = "忽视";
-$a->strings["System"] = "系统";
-$a->strings["Network"] = "网络";
-$a->strings["Personal"] = "私人";
-$a->strings["Home"] = "主页";
-$a->strings["Introductions"] = "介绍";
-$a->strings["Messages"] = "消息";
-$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["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["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["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["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["Never"] = "从未";
-$a->strings["(Update was successful)"] = "(更新成功)";
-$a->strings["(Update was not successful)"] = "(更新不成功)";
-$a->strings["Suggest friends"] = "建议朋友们";
-$a->strings["Network type: %s"] = "网络种类: %s";
-$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["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["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["Replies/likes to your public posts <strong>may</strong> still be visible"] = "回答/喜欢关您公开文章<strong>会</strong>还可见的";
-$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["No valid account found."] = "找不到效的账户。";
-$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。";
-$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["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["Additional features"] = "附加的特点";
-$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["Passwords do not match. Password unchanged."] = "密码们不相配。密码没未改变的。";
-$a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。";
-$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[" 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["enabled"] = "能够做的";
-$a->strings["disabled"] = "使不能用";
-$a->strings["StatusNet"] = "StatusNet";
-$a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权";
-$a->strings["Connector Settings"] = "连接器设置";
-$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["No special theme for mobile devices"] = "没专门适合手机的主题";
-$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["Don't show emoticons"] = "别表示请表符号";
-$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["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["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["or"] = "或者";
-$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["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["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["Advanced Account/Page Type Settings"] = "专家账户/页种设置";
-$a->strings["Change the behaviour of this account for special situations"] = "把这个账户特别情况的时候行动变化";
-$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["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 => "警告:这个组包括%s成员从不安全网络。",
-);
-$a->strings["Private messages to this group are at risk of public disclosure."] = "私人通信给这组回被公开。";
-$a->strings["Contact: "] = "熟人:";
-$a->strings["Private messages to this person are at risk of public disclosure."] = "私人通信给这个人回被公开。";
-$a->strings["Invalid contact."] = "无效熟人。";
-$a->strings["Personal Notes"] = "私人便条";
-$a->strings["Save"] = "保存";
-$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 (statusnet/identi.ca) or from Diaspora"] = "这个特点是在试验阶段。我们进口不了Ostatus网络(statusnet/identi.ca)或Diaspora熟人";
-$a->strings["Account file"] = "账户文件";
-$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」";
-$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "一天最多墙通知给%s超过了。通知没有通过 。";
-$a->strings["No recipient selected."] = "没有选择的接受者。";
-$a->strings["Unable to check your home location."] = "核对不了您的主页。";
-$a->strings["Message could not be sent."] = "消息发不了。";
-$a->strings["Message collection failure."] = "通信受到错误。";
-$a->strings["Message sent."] = "消息发了";
-$a->strings["No recipient."] = "没有接受者。";
-$a->strings["Please enter a link URL:"] = "请输入环节URL:";
-$a->strings["Send Private Message"] = "发私人的通信";
-$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["To:"] = "到:";
-$a->strings["Subject:"] = "题目:";
-$a->strings["Your message:"] = "你的消息:";
-$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["Profile"] = "简介";
-$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["Item not available."] = "项目不可用的";
-$a->strings["Item was not found."] = "找不到项目。";
-$a->strings["Group created."] = "组造成了。";
-$a->strings["Could not create group."] = "不能造成组。";
-$a->strings["Group not found."] = "组找不到。";
-$a->strings["Group name changed."] = "组名变化了。";
-$a->strings["Permission denied"] = "权限不够";
-$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["Click on a contact to add or remove."] = "点击熟人为添加或删除。";
-$a->strings["Invalid profile identifier."] = "无限的简介标识符。";
-$a->strings["Profile Visibility Editor"] = "简介能见度编辑器。";
-$a->strings["Visible To"] = "能见被";
-$a->strings["All Contacts (with secure profile access)"] = "所有熟人(跟安全地简介使用权)";
-$a->strings["No contacts."] = "没有熟人。";
-$a->strings["View Contacts"] = "看熟人";
-$a->strings["Registration details for %s"] = "注册信息为%s";
-$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。";
-$a->strings["Failed to send email message. Here is the message that failed."] = "发邮件失败了。这条试失败的消息。";
-$a->strings["Your registration can not be processed."] = "处理不了您的注册。";
-$a->strings["Registration request at %s"] = "注册要求再%s";
-$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["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): "] = "您姓名(例如「张三」):";
-$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["People Search"] = "搜索人物";
-$a->strings["photo"] = "照片";
-$a->strings["status"] = "现状";
-$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["Item not found."] = "项目找不到。";
-$a->strings["Access denied."] = "没有用权。";
-$a->strings["Photos"] = "照片";
-$a->strings["Files"] = "文件";
-$a->strings["Account approved."] = "账户批准了";
-$a->strings["Registration revoked for %s"] = "%s的登记撤销了";
-$a->strings["Please login."] = "清登录。";
-$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["%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["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 %d"] = "图像超标最大极限尺寸 %d";
-$a->strings["Upload File:"] = "上传文件:";
-$a->strings["Select a profile:"] = "选择一个简介";
-$a->strings["Upload"] = "上传";
-$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["No profile"] = "无简介";
-$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["Nothing new here"] = "这里没有什么新的";
-$a->strings["Clear notifications"] = "清理出通知";
-$a->strings["New Message"] = "新的消息";
-$a->strings["Unable to locate contact information."] = "找不到熟人信息。";
-$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?";
-$a->strings["Message deleted."] = "消息删除了。";
-$a->strings["Conversation removed."] = "交流删除了。";
-$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["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["Friends of %s"] = "%s的朋友们";
-$a->strings["No friends to display."] = "没有朋友展示。";
-$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["Admin"] = "管理";
-$a->strings["Plugin Features"] = "插件特点";
-$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["Site settings updated."] = "网站设置更新了。";
-$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["Advanced"] = "高等";
-$a->strings["Performance"] = "性能";
-$a->strings["Site name"] = "网页名字";
-$a->strings["Banner/Logo"] = "标题/标志";
-$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["'Share' element"] = "「合用」要素";
-$a->strings["Activates the bbcode element 'share' for repeating items."] = "把bbcode要素「合用」为重复项目。";
-$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["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["Show Community Page"] = "表示社会页";
-$a->strings["Display a Community page showing all recent public postings on this site."] = "表示社会页表明这网站所有最近公开的文章";
-$a->strings["Enable OStatus support"] = "使OStatus支持可用";
-$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供内装的OStatus(identi.ca, status.net, 等)兼容。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["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)."] = "缓存文件应该保存多久?默认是86400秒(一天)。";
-$a->strings["Path for lock file"] = "路线到锁文件";
-$a->strings["Temp path"] = "临时文件路线";
-$a->strings["Base path to installation"] = "基础安装路线";
-$a->strings["Update has been marked successful"] = "更新当成功标签了";
-$a->strings["Executing %s failed. Check system logs."] = "把%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["Update function %s could not be found."] = "找不到更新功能%s。";
-$a->strings["No failed updates."] = "没有不通过地更新。";
-$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["%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["select all"] = "都选";
-$a->strings["User registrations waiting for confirm"] = "用户注册等待确认";
-$a->strings["Request date"] = "要求日期";
-$a->strings["Email"] = "电子邮件";
-$a->strings["No registrations."] = "没有注册。";
-$a->strings["Deny"] = "否定";
-$a->strings["Site admin"] = "网站管理员";
-$a->strings["Register date"] = "注册日期";
-$a->strings["Last login"] = "上次登录";
-$a->strings["Last item"] = "上项目";
-$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["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["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["Requested profile is not available."] = "要求的简介联系不上的。";
-$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了.";
-$a->strings["Tips for New Members"] = "提示对新成员";
-$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["Contacts who are not members of a group"] = "没当成员的熟人";
-$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["Contact added"] = "熟人添了";
-$a->strings["Common Friends"] = "普通朋友们";
-$a->strings["No contacts in common."] = "没有共同熟人。";
-$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s关注着%2\$s的%3\$s";
-$a->strings["link"] = "链接";
-$a->strings["Item has been removed."] = "项目被删除了。";
-$a->strings["Applications"] = "应用";
-$a->strings["No installed applications."] = "没有安装的应用";
-$a->strings["Search"] = "搜索";
-$a->strings["Profile not found."] = "找不到简介。";
-$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 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["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["Hometown:"] = "故乡:";
-$a->strings["Political Views:"] = "政治观念:";
-$a->strings["Religious Views:"] = " 宗教信仰 :";
-$a->strings["Public Keywords:"] = "公开关键字 :";
-$a->strings["Private Keywords:"] = "私人关键字";
-$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["Age: "] = "年纪:";
-$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["Save to Folder:"] = "保存再文件夹:";
-$a->strings["- select -"] = "-选择-";
-$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s把%4\$s标签%2\$s的%3\$s";
-$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["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["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["Global Directory"] = "综合目录";
-$a->strings["Find on this site"] = "找在这网站";
-$a->strings["Site Directory"] = "网站目录";
-$a->strings["Gender: "] = "性别:";
-$a->strings["Gender:"] = "性别:";
-$a->strings["Status:"] = "现状:";
-$a->strings["Homepage:"] = "主页:";
-$a->strings["About:"] = "关于:";
-$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。";
-$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["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["Connection accepted at %s"] = "联络接受了在%s";
-$a->strings["%1\$s has joined %2\$s"] = "%1\$s加入%2\$s了";
-$a->strings["Google+ Import Settings"] = "Google+进口设置";
-$a->strings["Enable Google+ Import"] = "使Google+进口可用";
-$a->strings["Google Account ID"] = "Google+用户名";
-$a->strings["Google+ Import Settings saved."] = "把Google+进口设置保存了";
-$a->strings["Facebook disabled"] = "Facebook废";
-$a->strings["Updating contacts"] = "正才更新熟人";
-$a->strings["Facebook API key is missing."] = "Facebook API钥匙失踪的。";
-$a->strings["Facebook Connect"] = "Facebook联络";
-$a->strings["Install Facebook connector for this account."] = "安装Facebook连接器为这个账户。";
-$a->strings["Remove Facebook connector"] = "删除Facebook连接器";
-$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "复认证[这是必要的每当您Facebook密码变化了]";
-$a->strings["Post to Facebook by default"] = "默认地放在Facebook";
-$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "这个网站使Facebook朋友环节不能用。这下的设置没有印象。";
-$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "这个网站使Facebook朋友环节不能用。假如那样的话您不会再使可用的。";
-$a->strings["Link all your Facebook friends and conversations on this website"] = "连接您所有的Facebook朋友们和交流在这个网站";
-$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 ";
-$a->strings["On this website, your Facebook friend stream is only visible to you."] = "在这个网站,您Facebook朋友溪流是只您可见的。";
-$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "下面的设置决定您在这个网站Facebook简介墙的隐私。";
-$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "在这个网站您Facebook简介墙交流是只您可见的。";
-$a->strings["Do not import your Facebook profile wall conversations"] = "别进口您Facebook简介墙交流";
-$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。";
-$a->strings["Comma separated applications to ignore"] = "逗号分开的应用要不理";
-$a->strings["Problems with Facebook Real-Time Updates"] = "Facebook实时更新有问题";
-$a->strings["Administrator"] = "管理员";
-$a->strings["Facebook Connector Settings"] = "Facebook连接器设置";
-$a->strings["Facebook API Key"] = "Facebook API密码";
-$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。<br><br>";
-$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "错误:输入的API密码显得不对(取回不了应用代金券)。";
-$a->strings["The given API Key seems to work correctly."] = "输入的API密码显得对地运行。";
-$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "API钥匙的正确性发现不了。什么奇怪的进行";
-$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
-$a->strings["Application secret"] = "应用密码";
-$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "核实间隔分钟(最少%1\$s分钟)";
-$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "同步评论(无Facebook评论错过了,代价增添系统工作量)";
-$a->strings["Real-Time Updates"] = "实时更新";
-$a->strings["Real-Time Updates are activated."] = "实时更新使活动";
-$a->strings["Deactivate Real-Time Updates"] = "使实时更新不活动";
-$a->strings["Real-Time Updates not activated."] = "实时更新使不活动";
-$a->strings["Activate Real-Time Updates"] = "使实时更新活动";
-$a->strings["The new values have been saved."] = "新的设置保存了。";
-$a->strings["Post to Facebook"] = "放在Facebook";
-$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "发送到Facebook取消由于多网络准许矛盾。";
-$a->strings["View on Friendica"] = "看在Friendica";
-$a->strings["Facebook post failed. Queued for retry."] = "Facebook发送失败了。排队着待再试。";
-$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "您Facebook联系成无效的。请再认证。";
-$a->strings["Facebook connection became invalid"] = "Facebook联系成无效的";
-$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "你好%1\$s,⏎ ⏎ 您账户在%2\$s和Facebook的接通无效了。平时这是因为您把密码改变了。为使接通再可用,您要%3\$s再认证Facebook连接器%4\$s。";
-$a->strings["StatusNet AutoFollow settings updated."] = "StatusNet自动关注设置更新了。";
-$a->strings["StatusNet AutoFollow Settings"] = "StatusNet自动关注设置";
-$a->strings["Automatically follow any StatusNet followers/mentioners"] = "自动关注所有的StatusGet关注者/提及";
-$a->strings["Lifetime of the cache (in hours)"] = "缓存期(小时)";
-$a->strings["Cache Statistics"] = "缓存统计";
-$a->strings["Number of items"] = "项目数量";
-$a->strings["Size of the cache"] = "缓存尺寸";
-$a->strings["Delete the whole cache"] = "删除全缓存";
-$a->strings["Facebook Post disabled"] = "使Facebook文章不可用的";
-$a->strings["Facebook Post"] = "Facebook文章";
-$a->strings["Install Facebook Post connector for this account."] = "安装Facebook文章连接器为这个账户";
-$a->strings["Remove Facebook Post connector"] = "把Facebook文章连接器删除";
-$a->strings["Suppress \"View on friendica\""] = "禁止「看在Friendica」";
-$a->strings["Mirror wall posts from facebook to friendica."] = "复制墙文章从facebook到friendica。";
-$a->strings["Post to page/group:"] = "放在页/组:";
-$a->strings["Facebook Post Settings"] = "Facebook文章设置";
-$a->strings["%s:"] = "%s:";
-$a->strings["%d person likes this"] = array(
-       0 => "%d人喜欢这个",
-);
-$a->strings["%d person doesn't like this"] = array(
-       0 => "%d人不喜欢这个",
-);
-$a->strings["Get added to this list!"] = "被在这个单子加入!";
-$a->strings["Generate new key"] = "造成新钥匙";
-$a->strings["Widgets key"] = "小窗口钥匙";
-$a->strings["Widgets available"] = "可用的小窗口";
-$a->strings["Connect on Friendica!"] = "连接在Friendica!";
-$a->strings["bitchslap"] = "恶毒掌击";
-$a->strings["bitchslapped"] = "恶毒掌击了";
-$a->strings["shag"] = "肏";
-$a->strings["shagged"] = "肏了";
-$a->strings["do something obscenely biological to"] = "做什么淫秽生物的于";
-$a->strings["did something obscenely biological to"] = "做了什么淫秽生物的于";
-$a->strings["point out the poke feature to"] = "把戳特点指给";
-$a->strings["pointed out the poke feature to"] = "把了戳特点指给";
-$a->strings["declare undying love for"] = "表明永远的爱情为";
-$a->strings["declared undying love for"] = "表明了永远的爱情为";
-$a->strings["patent"] = "专利";
-$a->strings["patented"] = "专利了";
-$a->strings["stroke beard"] = "摸胡子";
-$a->strings["stroked their beard at"] = "摸胡子了";
-$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "哀叹现代的二三等教育规格的衰退给";
-$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "哀叹现代的二三等教育规格的衰退给";
-$a->strings["hug"] = "拥抱";
-$a->strings["hugged"] = "拥抱了";
-$a->strings["kiss"] = "亲吻";
-$a->strings["kissed"] = "亲吻了";
-$a->strings["raise eyebrows at"] = "举起眉毛于";
-$a->strings["raised their eyebrows at"] = "举起了眉毛于";
-$a->strings["insult"] = "侮辱";
-$a->strings["insulted"] = "侮辱";
-$a->strings["praise"] = "赞扬";
-$a->strings["praised"] = "赞扬了";
-$a->strings["be dubious of"] = "怀疑";
-$a->strings["was dubious of"] = "怀疑了";
-$a->strings["eat"] = "吃";
-$a->strings["ate"] = "吃了";
-$a->strings["giggle and fawn at"] = "咯咯地笑和巴结为";
-$a->strings["giggled and fawned at"] = "咯咯地笑和巴结为了";
-$a->strings["doubt"] = "怀疑";
-$a->strings["doubted"] = "怀疑了";
-$a->strings["glare"] = "瞪";
-$a->strings["glared at"] = "瞪了";
-$a->strings["YourLS Settings"] = "YourLS配置";
-$a->strings["URL: http://"] = "URL: http://";
-$a->strings["Username:"] = "用户名:";
-$a->strings["Password:"] = "密码:";
-$a->strings["Use SSL "] = "用SSL";
-$a->strings["yourls Settings saved."] = "yourls配置保存了。";
-$a->strings["Post to LiveJournal"] = "转播到LiveJournal";
-$a->strings["LiveJournal Post Settings"] = "LiveJournal转播设置";
-$a->strings["Enable LiveJournal Post Plugin"] = "使Livejournal转播插件可用";
-$a->strings["LiveJournal username"] = "LiveJournal用户名";
-$a->strings["LiveJournal password"] = "LiveJournal密码";
-$a->strings["Post to LiveJournal by default"] = "默认地转播到LiveJournal";
-$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "工作不安全(通用内容过滤)设置";
-$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "这个插件找您下面输入的词在所有的文章里,和把包括那些词的内容隐藏,省得不妥当的时候表示,比如性的影射在办公室里。是礼貌和建议的把什么包括裸体的内容跟#NSFW标签。这个过滤也会符合设么别的您输入的词,从而能当通用内容过滤有用的。";
-$a->strings["Enable Content filter"] = "使内容过滤可用";
-$a->strings["Comma separated list of keywords to hide"] = "逗号分隔单词要隐藏";
-$a->strings["Use /expression/ to provide regular expressions"] = "用/<i>表达式</i>/为输入正则表达式";
-$a->strings["NSFW Settings saved."] = "NSFW设置保持了。";
-$a->strings["%s - Click to open/close"] = "%s - 点击为打开/关闭";
-$a->strings["Forums"] = "论坛";
-$a->strings["Forums:"] = "评坛:";
-$a->strings["Page settings updated."] = "页设置更新了";
-$a->strings["Page Settings"] = "页设置";
-$a->strings["How many forums to display on sidebar without paging"] = "多少评坛要在工具栏上表示无分页";
-$a->strings["Randomise Page/Forum list"] = "把页/评坛单洗牌";
-$a->strings["Show pages/forums on profile page"] = "表示页/评坛在简介页";
-$a->strings["Planets Settings"] = "行星设置";
-$a->strings["Enable Planets Plugin"] = "使行星插件可用";
-$a->strings["Forum Directory"] = "评坛目录";
-$a->strings["Login"] = "登录";
-$a->strings["OpenID"] = "OpenID";
-$a->strings["Latest users"] = "最近用户";
-$a->strings["Most active users"] = "最积极用户";
-$a->strings["Latest photos"] = "最近照片";
-$a->strings["Latest likes"] = "最近喜欢";
-$a->strings["event"] = "项目";
-$a->strings["No access"] = "看不了";
-$a->strings["Could not open component for editing"] = "开不了部件为编辑";
-$a->strings["Go back to the calendar"] = "返回日历";
-$a->strings["Event data"] = "项目内容";
-$a->strings["Calendar"] = "日历";
-$a->strings["Special color"] = "特别颜色";
-$a->strings["Subject"] = "题目";
-$a->strings["Starts"] = "开始";
-$a->strings["Ends"] = "结束";
-$a->strings["Description"] = "描述";
-$a->strings["Recurrence"] = "复发";
-$a->strings["Frequency"] = "频率";
-$a->strings["Daily"] = "每日";
-$a->strings["Weekly"] = "每周";
-$a->strings["Monthly"] = "每月";
-$a->strings["Yearly"] = "一年一次";
-$a->strings["days"] = "天";
-$a->strings["weeks"] = "星期";
-$a->strings["months"] = "月";
-$a->strings["years"] = "年";
-$a->strings["Interval"] = "间隔";
-$a->strings["All %select% %time%"] = "每%select%%time%";
-$a->strings["Days"] = "天";
-$a->strings["Sunday"] = "星期天";
-$a->strings["Monday"] = "星期一";
-$a->strings["Tuesday"] = "星期二";
-$a->strings["Wednesday"] = "星期三";
-$a->strings["Thursday"] = "星期四";
-$a->strings["Friday"] = "星期五";
-$a->strings["Saturday"] = "星期六";
-$a->strings["First day of week:"] = "星期第一天:";
-$a->strings["Day of month"] = "月里天数";
-$a->strings["#num#th of each month"] = "每月第#num#个";
-$a->strings["#num#th-last of each month"] = "每月第#num#个最后";
-$a->strings["#num#th #wkday# of each month"] = "每月第#num#个#wkday#";
-$a->strings["#num#th-last #wkday# of each month"] = "每月第#num#个最后#wkday#";
-$a->strings["Month"] = "月";
-$a->strings["#num#th of the given month"] = "月第#num#个天";
-$a->strings["#num#th-last of the given month"] = "月第#num#个最后天";
-$a->strings["#num#th #wkday# of the given month"] = "月第#num#个#wkday#";
-$a->strings["#num#th-last #wkday# of the given month"] = "月第#num#个最后#wkday#";
-$a->strings["Repeat until"] = "重复到";
-$a->strings["Infinite"] = "无限的";
-$a->strings["Until the following date"] = "到下个日期";
-$a->strings["Number of times"] = "多少次";
-$a->strings["Exceptions"] = "除外";
-$a->strings["none"] = "没有";
-$a->strings["Notification"] = "通知";
-$a->strings["Notify by"] = "用地方法为通知";
-$a->strings["E-Mail"] = "电子邮件";
-$a->strings["On Friendica / Display"] = "在Friendica/表示";
-$a->strings["Time"] = "时间";
-$a->strings["Hours"] = "小时";
-$a->strings["Minutes"] = "分钟";
-$a->strings["Seconds"] = "秒";
-$a->strings["Weeks"] = "周";
-$a->strings["before the"] = "前";
-$a->strings["start of the event"] = "项目开始";
-$a->strings["end of the event"] = "项目结束";
-$a->strings["Add a notification"] = "加一个通知";
-$a->strings["The event #name# will start at #date"] = "项目#name#开始在#date";
-$a->strings["#name# is about to begin."] = "#name#快开始。";
-$a->strings["Saved"] = "保存了";
-$a->strings["U.S. Time Format (mm/dd/YYYY)"] = "美国时间形式(月/日/年)";
-$a->strings["German Time Format (dd.mm.YYYY)"] = "德国时间形式(日/月/年)";
-$a->strings["Private Events"] = "私人项目";
-$a->strings["Private Addressbooks"] = "私人通讯录";
-$a->strings["Friendica-Native events"] = "本Friendica项目";
-$a->strings["Friendica-Contacts"] = "Friendica熟人";
-$a->strings["Your Friendica-Contacts"] = "您的Friendica熟人";
-$a->strings["Something went wrong when trying to import the file. Sorry. Maybe some events were imported anyway."] = "进口文件出了问题。不好意思。可能一些项目却是成功地进口了。";
-$a->strings["Something went wrong when trying to import the file. Sorry."] = "进口文件出了问题。不好意思。";
-$a->strings["The ICS-File has been imported."] = "把ICS文件进口了。";
-$a->strings["No file was uploaded."] = "没有上传的文件。";
-$a->strings["Import a ICS-file"] = "进口ICS文件";
-$a->strings["ICS-File"] = "ICS文件";
-$a->strings["Overwrite all #num# existing events"] = "替换所有#num#现有的项目";
-$a->strings["New event"] = "新项目";
-$a->strings["Today"] = "今天";
-$a->strings["Day"] = "天";
-$a->strings["Week"] = "周";
-$a->strings["Reload"] = "再装入";
 $a->strings["Date"] = "日期";
 $a->strings["Error"] = "错误";
+$a->strings["Permission denied."] = "权限不够。";
+$a->strings["The new values have been saved."] = "新的设置保存了。";
 $a->strings["The calendar has been updated."] = "日历更新了。";
 $a->strings["The new calendar has been created."] = "新日历创造了。";
 $a->strings["The calendar has been deleted."] = "日历删除了。";
 $a->strings["Calendar Settings"] = "日历设置";
 $a->strings["Date format"] = "日期形式";
 $a->strings["Time zone"] = "时区";
+$a->strings["Save"] = "保存";
 $a->strings["Calendars"] = "日历";
 $a->strings["Create a new calendar"] = "创造新日历";
 $a->strings["Limitations"] = "限制";
@@ -1380,153 +175,139 @@ $a->strings["Something really went wrong. I cannot recover from this state autom
 $a->strings["Troubleshooting"] = "调试";
 $a->strings["Manual creation of the database tables:"] = "手动造成数据库表格:";
 $a->strings["Show SQL-statements"] = "表示SQL陈述";
-$a->strings["Private Calendar"] = "私人日历";
-$a->strings["Friendica Events: Mine"] = "Friendica项目:我的";
-$a->strings["Friendica Events: Contacts"] = "Friendica项目:熟人";
-$a->strings["Private Addresses"] = "私人地址";
-$a->strings["Friendica Contacts"] = "Friendica熟人";
-$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看<a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
-$a->strings["Template URL (with {category})"] = "模板URL(根{category})";
-$a->strings["OAuth end-point"] = "OAuth 端点";
-$a->strings["Api"] = "API";
-$a->strings["Member since:"] = "客人从:";
-$a->strings["Three Dimensional Tic-Tac-Toe"] = "三维井字棋";
-$a->strings["3D Tic-Tac-Toe"] = "三维井字棋";
-$a->strings["New game"] = "新游戏";
-$a->strings["New game with handicap"] = "新游戏不利条件 ";
-$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "三维井字棋跟传统的一样,除了完同时在多水平。";
-$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。";
-$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。";
-$a->strings["You go first..."] = "您先下...";
-$a->strings["I'm going first this time..."] = "这次我先下...";
-$a->strings["You won!"] = "您赢了!";
-$a->strings["\"Cat\" game!"] = "「猫子」游戏!";
-$a->strings["I won!"] = "我赢了!";
-$a->strings["Randplace Settings"] = "随意下设置";
-$a->strings["Enable Randplace Plugin"] = "使随意下插件能用";
+$a->strings["Post to Drupal"] = "发到Drupal";
+$a->strings["Drupal Post Settings"] = "Drupal设置";
+$a->strings["Enable Drupal Post Plugin"] = "使Drupal插件能够";
+$a->strings["Drupal username"] = "Drupal用户名";
+$a->strings["Drupal password"] = "Drupal密码";
+$a->strings["Post Type - article,page,or blog"] = "文章种类-文章,页,博客";
+$a->strings["Drupal site URL"] = "Drupal网站URL";
+$a->strings["Drupal site uses clean URLS"] = "Drupal网站用整洁URL";
+$a->strings["Post to Drupal by default"] = "默认地发到Drupal";
 $a->strings["Post to Dreamwidth"] = "转播到Dreamwidth";
 $a->strings["Dreamwidth Post Settings"] = "Dreamwidth转播设置";
 $a->strings["Enable dreamwidth Post Plugin"] = "使Dreamwidth转播插件可用";
 $a->strings["dreamwidth username"] = "Dreamwidth用户名";
 $a->strings["dreamwidth password"] = "Dreamwidth密码";
 $a->strings["Post to dreamwidth by default"] = "默认地转播到Dreamwidth";
-$a->strings["Remote Permissions Settings"] = "对外批准设置";
-$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "允许您私人文章接受者看别接受者。";
-$a->strings["Remote Permissions settings updated."] = "对外批准设置更新了。";
-$a->strings["Visible to"] = "可见的给";
-$a->strings["may only be a partial list"] = "可能部分的单";
-$a->strings["Global"] = "综合";
-$a->strings["The posts of every user on this server show the post recipients"] = "这网站所有用户的文章表示接受者";
-$a->strings["Individual"] = "一个人的";
-$a->strings["Each user chooses whether his/her posts show the post recipients"] = "各用户选择他问上是否表示接受者";
-$a->strings["Startpage Settings"] = "开始页设置";
-$a->strings["Home page to load after login  - leave blank for profile wall"] = "主页登录后表示-留空白为简介墙";
-$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "例如:&quot;网络&quot;或&quot;通知/系统&quot;";
-$a->strings["Geonames settings updated."] = "Geonames设置更新了。";
-$a->strings["Geonames Settings"] = "Geonames设置";
-$a->strings["Enable Geonames Plugin"] = "使Geonames插件能用";
-$a->strings["Your account on %s will expire in a few days."] = "您账户在%s几天后过期了。";
-$a->strings["Your Friendica account is about to expire."] = "您Friendica账户快过期。";
-$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "你好%1\$s,⏎ ⏎您的账户在%2\$s五天内过期。您会继续您的账户经由每30天至少一次登录。";
-$a->strings["Upload a file"] = "上传文件";
-$a->strings["Drop files here to upload"] = "在这儿放文件为上传";
-$a->strings["Failed"] = "失败";
-$a->strings["No files were uploaded."] = "没有文件上传。";
-$a->strings["Uploaded file is empty"] = "上传的文件空的";
-$a->strings["File has an invalid extension, it should be one of "] = "文件扩展名无效的,应该是这些一个:";
-$a->strings["Upload was cancelled, or server error encountered"] = "上传注销了,或相遇服务器错误";
+$a->strings["Editplain settings updated."] = "Editplain设置更新了";
+$a->strings["Editplain Settings"] = "Editplain设置";
+$a->strings["Disable richtext status editor"] = "使richtext现状编辑 不能用";
+$a->strings["Settings updated."] = "设置跟新了";
+$a->strings["Facebook disabled"] = "Facebook废";
+$a->strings["Updating contacts"] = "正才更新熟人";
+$a->strings["Facebook API key is missing."] = "Facebook API钥匙失踪的。";
+$a->strings["Facebook Connect"] = "Facebook联络";
+$a->strings["Install Facebook connector for this account."] = "安装Facebook连接器为这个账户。";
+$a->strings["Remove Facebook connector"] = "删除Facebook连接器";
+$a->strings["Re-authenticate [This is necessary whenever your Facebook password is changed.]"] = "复认证[这是必要的每当您Facebook密码变化了]";
+$a->strings["Post to Facebook by default"] = "默认地放在Facebook";
+$a->strings["Facebook friend linking has been disabled on this site. The following settings will have no effect."] = "这个网站使Facebook朋友环节不能用。这下的设置没有印象。";
+$a->strings["Facebook friend linking has been disabled on this site. If you disable it, you will be unable to re-enable it."] = "这个网站使Facebook朋友环节不能用。假如那样的话您不会再使可用的。";
+$a->strings["Link all your Facebook friends and conversations on this website"] = "连接您所有的Facebook朋友们和交流在这个网站";
+$a->strings["Facebook conversations consist of your <em>profile wall</em> and your friend <em>stream</em>."] = "Facebook交流由您的<em>简介墙</em>和您朋友的<em>溪流</em>组成。 ";
+$a->strings["On this website, your Facebook friend stream is only visible to you."] = "在这个网站,您Facebook朋友溪流是只您可见的。";
+$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "下面的设置决定您在这个网站Facebook简介墙的隐私。";
+$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "在这个网站您Facebook简介墙交流是只您可见的。";
+$a->strings["Do not import your Facebook profile wall conversations"] = "别进口您Facebook简介墙交流";
+$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。";
+$a->strings["Comma separated applications to ignore"] = "逗号分开的应用要不理";
+$a->strings["Problems with Facebook Real-Time Updates"] = "Facebook实时更新有问题";
+$a->strings["Administrator"] = "管理员";
+$a->strings["Facebook"] = "Facebook";
+$a->strings["Facebook Connector Settings"] = "Facebook连接器设置";
+$a->strings["Facebook API Key"] = "Facebook API密码";
+$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。<br><br>";
+$a->strings["Error: the given API Key seems to be incorrect (the application access token could not be retrieved)."] = "错误:输入的API密码显得不对(取回不了应用代金券)。";
+$a->strings["The given API Key seems to work correctly."] = "输入的API密码显得对地运行。";
+$a->strings["The correctness of the API Key could not be detected. Something strange's going on."] = "API钥匙的正确性发现不了。什么奇怪的进行";
+$a->strings["App-ID / API-Key"] = "App-ID / API-Key";
+$a->strings["Application secret"] = "应用密码";
+$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "核实间隔分钟(最少%1\$s分钟)";
+$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "同步评论(无Facebook评论错过了,代价增添系统工作量)";
+$a->strings["Real-Time Updates"] = "实时更新";
+$a->strings["Real-Time Updates are activated."] = "实时更新使活动";
+$a->strings["Deactivate Real-Time Updates"] = "使实时更新不活动";
+$a->strings["Real-Time Updates not activated."] = "实时更新使不活动";
+$a->strings["Activate Real-Time Updates"] = "使实时更新活动";
+$a->strings["Post to Facebook"] = "放在Facebook";
+$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "发送到Facebook取消由于多网络准许矛盾。";
+$a->strings["View on Friendica"] = "看在Friendica";
+$a->strings["Facebook post failed. Queued for retry."] = "Facebook发送失败了。排队着待再试。";
+$a->strings["Your Facebook connection became invalid. Please Re-authenticate."] = "您Facebook联系成无效的。请再认证。";
+$a->strings["Facebook connection became invalid"] = "Facebook联系成无效的";
+$a->strings["Hi %1\$s,\n\nThe connection between your accounts on %2\$s and Facebook became invalid. This usually happens after you change your Facebook-password. To enable the connection again, you have to %3\$sre-authenticate the Facebook-connector%4\$s."] = "你好%1\$s,⏎ ⏎ 您账户在%2\$s和Facebook的接通无效了。平时这是因为您把密码改变了。为使接通再可用,您要%3\$s再认证Facebook连接器%4\$s。";
+$a->strings["Facebook Post disabled"] = "使Facebook文章不可用的";
+$a->strings["Facebook Post"] = "Facebook文章";
+$a->strings["Install Facebook Post connector for this account."] = "安装Facebook文章连接器为这个账户";
+$a->strings["Remove Facebook Post connector"] = "把Facebook文章连接器删除";
+$a->strings["Facebook Post Settings"] = "Facebook文章设置";
+$a->strings["Forums"] = "论坛";
 $a->strings["show/hide"] = "表示/隐藏";
 $a->strings["No forum subscriptions"] = "没有评坛订阅";
+$a->strings["Forums:"] = "评坛:";
 $a->strings["Forumlist settings updated."] = "评坛单设置更新了。";
 $a->strings["Forumlist Settings"] = "评坛单设置";
 $a->strings["Randomise forum list"] = "洗牌评坛单";
 $a->strings["Show forums on profile page"] = "表示评坛在简介页";
 $a->strings["Show forums on network page"] = "表示评坛在网络页";
-$a->strings["Impressum"] = "Impressum(法定的出版信息)";
-$a->strings["Site Owner"] = "网站主";
-$a->strings["Email Address"] = "电子邮件地址";
-$a->strings["Postal Address"] = "邮政邮件地址";
-$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Impressum插件必须被设置!<br />请加至少<tt>owner</tt>变量在您的设置文件。关于别的变量请指插件的README文件。";
-$a->strings["The page operators name."] = "也运作员名。";
-$a->strings["Site Owners Profile"] = "网站主的简介";
-$a->strings["Profile address of the operator."] = "运作员的简介地址。";
-$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "怎么用邮政跟运作员联系。您会用BBCode。";
-$a->strings["Notes"] = "便条";
-$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "附加的便条表示在联系消息下。您会用BBCode。";
-$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "怎么用电子邮件跟运作员联系。(将使混乱的表示)";
-$a->strings["Footer note"] = "页脚便条";
-$a->strings["Text for the footer. You can use BBCode here."] = "页脚征文。您会用BBCode。";
-$a->strings["Report Bug"] = "报案程序错误";
-$a->strings["No Timeline settings updated."] = "没有时间链设置更新";
-$a->strings["No Timeline Settings"] = "没有时间链设置";
-$a->strings["Disable Archive selector on profile wall"] = "使在简介墙上档案选择器不能用";
-$a->strings["\"Blockem\" Settings"] = "「Blockem」配置";
-$a->strings["Comma separated profile URLS to block"] = "逗号分简介URL为栏";
-$a->strings["BLOCKEM Settings saved."] = "「Blockem」配置保存了。";
-$a->strings["Blocked %s - Click to open/close"] = "%s拦了-点击为开关";
-$a->strings["Unblock Author"] = "不拦作家";
-$a->strings["Block Author"] = "拦作家";
-$a->strings["blockem settings updated"] = "blockem设置更新了";
-$a->strings[":-)"] = ":-)";
-$a->strings[":-("] = ":-(";
-$a->strings["lol"] = "lol";
-$a->strings["Quick Comment Settings"] = "快捷评论设置";
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "快捷评论是在评论文本框,有时候隐藏。点击它们为输入简单的回答。";
-$a->strings["Enter quick comments, one per line"] = "输入快捷评论,一行一个";
-$a->strings["Quick Comment settings saved."] = "快捷评论设置保存了。";
-$a->strings["Tile Server URL"] = "砖服务器URL";
-$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "一单<a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">公共砖服务器</a>";
-$a->strings["Default zoom"] = "默认变焦距";
-$a->strings["The default zoom level. (1:world, 18:highest)"] = "默认变焦距。(1:世界, 18:最高)";
-$a->strings["Group Text settings updated."] = "组正文设置更新了。";
-$a->strings["Group Text"] = "组\10正文";
-$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "用光正文(无图片)组选择器在「组编辑」单";
-$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "安装不了Libravatar。<br>它要求PHP>=5.3";
+$a->strings["Fromapp settings updated."] = "Fromapp设置更新了";
+$a->strings["FromApp Settings"] = "Fromapp设置";
+$a->strings["The application name you would like to show your posts originating from."] = "应用名您想当您文章的来源";
+$a->strings["Use this application name even if another application was used."] = "连别应用是用了也用这名。";
+$a->strings["Google+ Import Settings"] = "Google+进口设置";
+$a->strings["Enable Google+ Import"] = "使Google+进口可用";
+$a->strings["Google Account ID"] = "Google+用户名";
+$a->strings["Google+ Import Settings saved."] = "把Google+进口设置保存了";
+$a->strings["Geonames settings updated."] = "Geonames设置更新了。";
+$a->strings["Geonames Settings"] = "Geonames设置";
+$a->strings["Enable Geonames Plugin"] = "使Geonames插件能用";
+$a->strings["Gnot settings updated."] = "Gnot设置更新了。";
+$a->strings["Gnot Settings"] = "Gnot设置";
+$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "允许邮件评论通知在Gmail和匿名话题行。";
+$a->strings["Enable this plugin/addon?"] = "使这个插件/加件可用?";
+$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notify]评论在交流#%d";
 $a->strings["generic profile image"] = "通用简介图片";
 $a->strings["random geometric pattern"] = "随机的几何图案";
 $a->strings["monster face"] = "怪物面子";
 $a->strings["computer generated face"] = "电脑造成的面子";
 $a->strings["retro arcade style face"] = "复古游乐场式面子";
-$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "您PHP版体数%s是比要求的5.3少。";
-$a->strings["This addon is not functional on your server."] = "这个加件在您的服务器不可用的";
 $a->strings["Information"] = "信息";
-$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Gravatar加件安装着。请使Gravatar加件不可用。<br>如果找不到什么在Libravatar加件可依靠的是Gravatar。";
-$a->strings["Default avatar image"] = "默认纸娃娃系统";
-$a->strings["Select default avatar image if none was found. See README"] = "选择默认纸娃娃系统如果一个也找不到。看README";
-$a->strings["Libravatar settings updated."] = "Libravatar设置更新了。";
-$a->strings["Post to libertree"] = "转播到libertree";
-$a->strings["libertree Post Settings"] = "libertree转播设置";
-$a->strings["Enable Libertree Post Plugin"] = "使Libertree转播插件可用";
-$a->strings["Libertree API token"] = "Libertree API令牌";
-$a->strings["Libertree site URL"] = "Libertree网站URL";
-$a->strings["Post to Libertree by default"] = "默认地转播到Libertree";
-$a->strings["Altpager settings updated."] = "Altpager设置更新了。";
-$a->strings["Alternate Pagination Setting"] = "供替换的分页设置";
-$a->strings["Use links to \"newer\" and \"older\" pages in place of page numbers?"] = "用到「更新」和「更旧」页代替页数?";
-$a->strings["Force global use of the alternate pager"] = "让大家用供替换的分页";
-$a->strings["Each user chooses whether to use the alternate pager"] = "每用户选择是否用供替换的分页";
-$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "MathJax插件表示用LaTeX句法的数学公式,围绕\$\$或者eqnarray快,在您墙,网络分页和私人收件箱的文章。";
-$a->strings["Use the MathJax renderer"] = "用MathJax表示器";
-$a->strings["MathJax Base URL"] = "MathJax基础URL";
-$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "URL JavaScript文件应该包括为用MathJax。可以MathJax CDN或者别的MathJax安装。";
-$a->strings["Editplain settings updated."] = "Editplain设置更新了";
-$a->strings["Editplain Settings"] = "Editplain设置";
-$a->strings["Disable richtext status editor"] = "使richtext现状编辑 不能用";
 $a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。<br>Libravatar加件没找到在Libravatar的时候可依靠的是Gravatar";
+$a->strings["Default avatar image"] = "默认纸娃娃系统";
 $a->strings["Select default avatar image if none was found at Gravatar. See README"] = "如果Gravatar上没找到纸娃娃系统选择默认的。看README";
 $a->strings["Rating of images"] = "照相评定";
 $a->strings["Select the appropriate avatar rating for your site. See README"] = "选择适合您网站的纸娃娃系统。看README";
 $a->strings["Gravatar settings updated."] = "Gravatar设置更新了。";
-$a->strings["Your Friendica test account is about to expire."] = "您Friendica化验账户快过期了。";
-$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "你好%1\$s,⏎ ⏎您化验账户在%2\$s五天内将过期。我们希望您享受了这个试车和用这个机会为您综合社会交通找持久的Friendica网站。一单公开的网站是在http://dir.friendica.com/siteinfo。为多消息安排您自己的Friendica服务器请看工程网站在http://friendica.com。";
-$a->strings["\"pageheader\" Settings"] = "\"pageheader";
-$a->strings["pageheader Settings saved."] = "pageHeader配置保存了。";
+$a->strings["Group Text"] = "组\10正文";
+$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "用光正文(无图片)组选择器在「组编辑」单";
 $a->strings["Post to Insanejournal"] = "转播到Insanejournal";
 $a->strings["InsaneJournal Post Settings"] = "Insanejournal转播设置";
 $a->strings["Enable InsaneJournal Post Plugin"] = "使InsaneJournal转播插件可用";
 $a->strings["InsaneJournal username"] = "InsaneJournal用户名";
 $a->strings["InsaneJournal password"] = "InsaneJournal密码";
 $a->strings["Post to InsaneJournal by default"] = "默认地转播到InsaneJournal";
+$a->strings["Impressum"] = "Impressum(法定的出版信息)";
+$a->strings["Site Owner"] = "网站主";
+$a->strings["Email Address"] = "电子邮件地址";
+$a->strings["Postal Address"] = "邮政邮件地址";
+$a->strings["The impressum addon needs to be configured!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Impressum插件必须被设置!<br />请加至少<tt>owner</tt>变量在您的设置文件。关于别的变量请指插件的README文件。";
+$a->strings["The page operators name."] = "也运作员名。";
+$a->strings["Site Owners Profile"] = "网站主的简介";
+$a->strings["Profile address of the operator."] = "运作员的简介地址。";
+$a->strings["How to contact the operator via snail mail. You can use BBCode here."] = "怎么用邮政跟运作员联系。您会用BBCode。";
+$a->strings["Notes"] = "便条";
+$a->strings["Additional notes that are displayed beneath the contact information. You can use BBCode here."] = "附加的便条表示在联系消息下。您会用BBCode。";
+$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "怎么用电子邮件跟运作员联系。(将使混乱的表示)";
+$a->strings["Footer note"] = "页脚便条";
+$a->strings["Text for the footer. You can use BBCode here."] = "页脚征文。您会用BBCode。";
+$a->strings["Infinite Improbability Drive"] = "无穷不至于机车";
+$a->strings["IRC Settings"] = "IRC设置";
+$a->strings["Channel(s) to auto connect (comma separated)"] = "频道要自动地连接(逗号分隔)";
+$a->strings["Popular Channels (comma separated)"] = "流行频道(逗号分隔)";
+$a->strings["IRC settings saved."] = "IRC设置保存了。";
+$a->strings["IRC Chatroom"] = "IRC聊间";
+$a->strings["Popular Channels"] = "流行频道";
 $a->strings["Jappix Mini addon settings"] = "Jappix Mini加件设置";
 $a->strings["Activate addon"] = "使加件可用";
 $a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "<em>别</em>把Jappixmini聊小窗插入网用户界面";
@@ -1540,7 +321,145 @@ $a->strings["Approve subscription requests from Friendica contacts automatically
 $a->strings["Subscribe to Friendica contacts automatically"] = "自动地订阅Friendica熟人";
 $a->strings["Purge internal list of jabber addresses of contacts"] = "把熟人jabber地址从内部单";
 $a->strings["Add contact"] = "加熟人";
-$a->strings["View Source"] = "看源代码";
+$a->strings["Upload a file"] = "上传文件";
+$a->strings["Drop files here to upload"] = "在这儿放文件为上传";
+$a->strings["Cancel"] = "退消";
+$a->strings["Failed"] = "失败";
+$a->strings["No files were uploaded."] = "没有文件上传。";
+$a->strings["Uploaded file is empty"] = "上传的文件空的";
+$a->strings["Image exceeds size limit of "] = "图片超出最大尺寸";
+$a->strings["File has an invalid extension, it should be one of "] = "文件扩展名无效的,应该是这些一个:";
+$a->strings["Upload was cancelled, or server error encountered"] = "上传注销了,或相遇服务器错误";
+$a->strings["Post to libertree"] = "转播到libertree";
+$a->strings["libertree Post Settings"] = "libertree转播设置";
+$a->strings["Enable Libertree Post Plugin"] = "使Libertree转播插件可用";
+$a->strings["Libertree API token"] = "Libertree API令牌";
+$a->strings["Libertree site URL"] = "Libertree网站URL";
+$a->strings["Post to Libertree by default"] = "默认地转播到Libertree";
+$a->strings["Could NOT install Libravatar successfully.<br>It requires PHP >= 5.3"] = "安装不了Libravatar。<br>它要求PHP>=5.3";
+$a->strings["Your PHP version %s is lower than the required PHP >= 5.3."] = "您PHP版体数%s是比要求的5.3少。";
+$a->strings["This addon is not functional on your server."] = "这个加件在您的服务器不可用的";
+$a->strings["Gravatar addon is installed. Please disable the Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Gravatar加件安装着。请使Gravatar加件不可用。<br>如果找不到什么在Libravatar加件可依靠的是Gravatar。";
+$a->strings["Select default avatar image if none was found. See README"] = "选择默认纸娃娃系统如果一个也找不到。看README";
+$a->strings["Libravatar settings updated."] = "Libravatar设置更新了。";
+$a->strings["Post to LiveJournal"] = "转播到LiveJournal";
+$a->strings["LiveJournal Post Settings"] = "LiveJournal转播设置";
+$a->strings["Enable LiveJournal Post Plugin"] = "使Livejournal转播插件可用";
+$a->strings["LiveJournal username"] = "LiveJournal用户名";
+$a->strings["LiveJournal password"] = "LiveJournal密码";
+$a->strings["Post to LiveJournal by default"] = "默认地转播到LiveJournal";
+$a->strings["The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail."] = "MathJax插件表示用LaTeX句法的数学公式,围绕\$\$或者eqnarray快,在您墙,网络分页和私人收件箱的文章。";
+$a->strings["Use the MathJax renderer"] = "用MathJax表示器";
+$a->strings["MathJax Base URL"] = "MathJax基础URL";
+$a->strings["The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax."] = "URL JavaScript文件应该包括为用MathJax。可以MathJax CDN或者别的MathJax安装。";
+$a->strings["Member since:"] = "客人从:";
+$a->strings["bitchslap"] = "恶毒掌击";
+$a->strings["bitchslapped"] = "恶毒掌击了";
+$a->strings["shag"] = "肏";
+$a->strings["shagged"] = "肏了";
+$a->strings["do something obscenely biological to"] = "做什么淫秽生物的于";
+$a->strings["did something obscenely biological to"] = "做了什么淫秽生物的于";
+$a->strings["point out the poke feature to"] = "把戳特点指给";
+$a->strings["pointed out the poke feature to"] = "把了戳特点指给";
+$a->strings["declare undying love for"] = "表明永远的爱情为";
+$a->strings["declared undying love for"] = "表明了永远的爱情为";
+$a->strings["patent"] = "专利";
+$a->strings["patented"] = "专利了";
+$a->strings["stroke beard"] = "摸胡子";
+$a->strings["stroked their beard at"] = "摸胡子了";
+$a->strings["bemoan the declining standards of modern secondary and tertiary education to"] = "哀叹现代的二三等教育规格的衰退给";
+$a->strings["bemoans the declining standards of modern secondary and tertiary education to"] = "哀叹现代的二三等教育规格的衰退给";
+$a->strings["hug"] = "拥抱";
+$a->strings["hugged"] = "拥抱了";
+$a->strings["kiss"] = "亲吻";
+$a->strings["kissed"] = "亲吻了";
+$a->strings["raise eyebrows at"] = "举起眉毛于";
+$a->strings["raised their eyebrows at"] = "举起了眉毛于";
+$a->strings["insult"] = "侮辱";
+$a->strings["insulted"] = "侮辱";
+$a->strings["praise"] = "赞扬";
+$a->strings["praised"] = "赞扬了";
+$a->strings["be dubious of"] = "怀疑";
+$a->strings["was dubious of"] = "怀疑了";
+$a->strings["eat"] = "吃";
+$a->strings["ate"] = "吃了";
+$a->strings["giggle and fawn at"] = "咯咯地笑和巴结为";
+$a->strings["giggled and fawned at"] = "咯咯地笑和巴结为了";
+$a->strings["doubt"] = "怀疑";
+$a->strings["doubted"] = "怀疑了";
+$a->strings["glare"] = "瞪";
+$a->strings["glared at"] = "瞪了";
+$a->strings["No Timeline settings updated."] = "没有时间链设置更新";
+$a->strings["No Timeline Settings"] = "没有时间链设置";
+$a->strings["Disable Archive selector on profile wall"] = "使在简介墙上档案选择器不能用";
+$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "工作不安全(通用内容过滤)设置";
+$a->strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW.  This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "这个插件搜索您下面输入的词/正文在所有的文章里,和把包含那些关键词的内容隐藏,省得不妥当的时候表示,比如性的影射在办公室里。是礼貌和建议的把什么包括裸体的内容跟#NSFW标签。这个过滤也会符合设么别的您输入的词,从而能当通用内容过滤有用的。";
+$a->strings["Enable Content filter"] = "使内容过滤可用";
+$a->strings["Comma separated list of keywords to hide"] = "逗号分隔单词要隐藏";
+$a->strings["Use /expression/ to provide regular expressions"] = "用/<i>表达式</i>/为输入正则表达式";
+$a->strings["NSFW Settings saved."] = "NSFW设置保持了。";
+$a->strings["%s - Click to open/close"] = "%s - 点击为打开/关闭";
+$a->strings["Numfriends settings updated."] = "Numfriends设置更新了";
+$a->strings["Numfriends Settings"] = "Numfriends设置";
+$a->strings["OEmbed settings updated"] = "OEmbed设置更新了";
+$a->strings["Use OEmbed for YouTube videos"] = "用OEmbed为YouTube视频";
+$a->strings["URL to embed:"] = "URL要嵌入:";
+$a->strings["Tile Server URL"] = "砖服务器URL";
+$a->strings["A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">public tile servers</a>"] = "一单<a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank\">公共砖服务器</a>";
+$a->strings["Default zoom"] = "默认变焦距";
+$a->strings["The default zoom level. (1:world, 18:highest)"] = "默认变焦距。(1:世界, 18:最高)";
+$a->strings["show more"] = "看多";
+$a->strings["Page settings updated."] = "页设置更新了";
+$a->strings["Page Settings"] = "页设置";
+$a->strings["How many forums to display on sidebar without paging"] = "多少评坛要在工具栏上表示无分页";
+$a->strings["Randomise Page/Forum list"] = "把页/评坛单洗牌";
+$a->strings["Show pages/forums on profile page"] = "表示页/评坛在简介页";
+$a->strings["\"pageheader\" Settings"] = "\"pageheader";
+$a->strings["pageheader Settings saved."] = "pageHeader配置保存了。";
+$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "这个网站用<a href='http://www.piwik.org'>Piwik</a>分析工具追踪 。";
+$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "如果您不想您访问这样记录您<a href='%s'>可以用一个cookie防Piwik追踪未来的访问</a>(选择性退出)。";
+$a->strings["Piwik Base URL"] = "Piwik基础URL";
+$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "绝对道路到Piwik安装。(没有协议(http/s)跟斜线后缀)";
+$a->strings["Site ID"] = "网站ID";
+$a->strings["Show opt-out cookie link?"] = " 显示选择性退出cookie按钮?";
+$a->strings["Asynchronous tracking"] = "异步追踪";
+$a->strings["Planets Settings"] = "行星设置";
+$a->strings["Enable Planets Plugin"] = "使行星插件可用";
+$a->strings["Post to Posterous"] = "发送往Posterous";
+$a->strings["Posterous Post Settings"] = "Posterous发送设置";
+$a->strings["Enable Posterous Post Plugin"] = "使Posterous发送插件可用的";
+$a->strings["Posterous login"] = "Posterous登记名";
+$a->strings["Posterous password"] = "Posterous密码";
+$a->strings["Posterous site ID"] = "Posterous网站身份证明";
+$a->strings["Posterous API token"] = "Posterous API令牌";
+$a->strings["Post to Posterous by default"] = "默认地发送往Posterous";
+$a->strings["Lifetime of the cache (in hours)"] = "缓存期(小时)";
+$a->strings["Cache Statistics"] = "缓存统计";
+$a->strings["Number of items"] = "项目数量";
+$a->strings["Size of the cache"] = "缓存尺寸";
+$a->strings["Delete the whole cache"] = "删除全缓存";
+$a->strings["Your account on %s will expire in a few days."] = "您账户在%s几天后过期了。";
+$a->strings["Your Friendica account is about to expire."] = "您Friendica账户快过期。";
+$a->strings["Hi %1\$s,\n\nYour account on %2\$s will expire in less than five days. You may keep your account by logging in at least once every 30 days"] = "你好%1\$s,⏎ ⏎您的账户在%2\$s五天内过期。您会继续您的账户经由每30天至少一次登录。";
+$a->strings[":-)"] = ":-)";
+$a->strings[":-("] = ":-(";
+$a->strings["lol"] = "lol";
+$a->strings["Quick Comment Settings"] = "快捷评论设置";
+$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "快捷评论是在评论文本框,有时候隐藏。点击它们为输入简单的回答。";
+$a->strings["Enter quick comments, one per line"] = "输入快捷评论,一行一个";
+$a->strings["Quick Comment settings saved."] = "快捷评论设置保存了。";
+$a->strings["Randplace Settings"] = "随意下设置";
+$a->strings["Enable Randplace Plugin"] = "使随意下插件能用";
+$a->strings["\"Show more\" Settings"] = "「看更多」设置";
+$a->strings["Enable Show More"] = "使看更多能用";
+$a->strings["Cutting posts after how much characters"] = "剪掉文章多少字后";
+$a->strings["Show More Settings saved."] = "看更多设置保存了。";
+$a->strings["StatusNet AutoFollow settings updated."] = "StatusNet自动关注设置更新了。";
+$a->strings["StatusNet AutoFollow Settings"] = "StatusNet自动关注设置";
+$a->strings["Automatically follow any StatusNet followers/mentioners"] = "自动关注所有的StatusGet关注者/提及";
+$a->strings["Startpage Settings"] = "开始页设置";
+$a->strings["Home page to load after login  - leave blank for profile wall"] = "主页登录后表示-留空白为简介墙";
+$a->strings["Examples: &quot;network&quot; or &quot;notifications/system&quot;"] = "例如:&quot;网络&quot;或&quot;通知/系统&quot;";
 $a->strings["Post to StatusNet"] = "发送到StatusNet";
 $a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "请联系您的网站行政人员。<br />提供的API URL无效。";
 $a->strings["We could not contact the StatusNet API with the Path you entered."] = "我们不能联系StatusNet API在您输入的路径。";
@@ -1564,29 +483,63 @@ $a->strings["If enabled all your <strong>public</strong> postings can be posted
 $a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to StatusNet will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>注意</strong>: 由于您的隐私设置(<em>隐藏您的简介内容为生看者?</em>)超链接可能包括在公文章转播到StatusNets会带领来客到空白页讲他看您的简介被限制。";
 $a->strings["Allow posting to StatusNet"] = "许放在StatusNet";
 $a->strings["Send public postings to StatusNet by default"] = "默认发送公开文章在StatusNet";
-$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "复制所有文章从statusnet除了回答或重复的通知以外";
-$a->strings["Shortening method that optimizes the post"] = "缩短方法优化文章";
 $a->strings["Send linked #-tags and @-names to StatusNet"] = "转播连接的#标签盒@名到StatusNet";
 $a->strings["Clear OAuth configuration"] = "清理出OAuth设置";
+$a->strings["Site name"] = "网页名字";
 $a->strings["API URL"] = "API URL";
-$a->strings["Infinite Improbability Drive"] = "无穷不至于机车";
-$a->strings["You are now authenticated to tumblr."] = "现在tumblr证明您是真的";
-$a->strings["return to the connector page"] = "会连接器页";
+$a->strings["Consumer Secret"] = "密码(Consumer Secret)";
+$a->strings["Consumer Key"] = "钥匙(Consumer Key)";
+$a->strings["Your Friendica test account is about to expire."] = "您Friendica化验账户快过期了。";
+$a->strings["Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at http://dir.friendica.com/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."] = "你好%1\$s,⏎ ⏎您化验账户在%2\$s五天内将过期。我们希望您享受了这个试车和用这个机会为您综合社会交通找持久的Friendica网站。一单公开的网站是在http://dir.friendica.com/siteinfo。为多消息安排您自己的Friendica服务器请看工程网站在http://friendica.com。";
+$a->strings["Three Dimensional Tic-Tac-Toe"] = "三维井字棋";
+$a->strings["3D Tic-Tac-Toe"] = "三维井字棋";
+$a->strings["New game"] = "新游戏";
+$a->strings["New game with handicap"] = "新游戏不利条件 ";
+$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "三维井字棋跟传统的一样,除了完同时在多水平。";
+$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。";
+$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。";
+$a->strings["You go first..."] = "您先下...";
+$a->strings["I'm going first this time..."] = "这次我先下...";
+$a->strings["You won!"] = "您赢了!";
+$a->strings["\"Cat\" game!"] = "「猫子」游戏!";
+$a->strings["I won!"] = "我赢了!";
 $a->strings["Post to Tumblr"] = "发送到Tumblr";
 $a->strings["Tumblr Post Settings"] = "Tumblr发送设置";
-$a->strings["(Re-)Authenticate your tumblr page"] = "再认证您的tumblr页";
 $a->strings["Enable Tumblr Post Plugin"] = "使Tumblr发送插件能够";
+$a->strings["Tumblr login"] = "Tumblr登记名";
+$a->strings["Tumblr password"] = "Tumblr密码";
 $a->strings["Post to Tumblr by default"] = "默认地给Tumblr发送";
-$a->strings["Post to page:"] = "放在页:";
-$a->strings["You are not authenticated to tumblr"] = "tumblr没证明您是真的";
-$a->strings["Numfriends settings updated."] = "Numfriends设置更新了";
-$a->strings["Numfriends Settings"] = "Numfriends设置";
-$a->strings["How many contacts to display on profile sidebar"] = "多少熟人表示在简介工具栏";
-$a->strings["Gnot settings updated."] = "Gnot设置更新了。";
-$a->strings["Gnot Settings"] = "Gnot设置";
-$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "允许邮件评论通知在Gmail和匿名话题行。";
-$a->strings["Enable this plugin/addon?"] = "使这个插件/加件可用?";
-$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "[Friendica:Notify]评论在交流#%d";
+$a->strings["Post to Twitter"] = "发送到在Twitter";
+$a->strings["Twitter settings updated."] = "Twitter设置更新了。";
+$a->strings["Twitter Posting Settings"] = "Twitter发送设置";
+$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "找不到Twitter的消费钥匙双。请联系您的网页行政人员。";
+$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的<strong>公开</strong>文章被发送到Twitter。";
+$a->strings["Log in with Twitter"] = "用Twitter登记";
+$a->strings["Copy the PIN from Twitter here"] = "复制Twitter密码这儿";
+$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。";
+$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>注意</strong>:由于您的隐私设置(<em>隐藏您的简介内容为生人?</em>)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。";
+$a->strings["Allow posting to Twitter"] = "允许发送到Twitter";
+$a->strings["Send public postings to Twitter by default"] = "默认地发送公开文章到Twitter";
+$a->strings["Send linked #-tags and @-names to Twitter"] = "转播连接的#标签盒@名到Twitter";
+$a->strings["Consumer key"] = "钥匙(Consumer key)";
+$a->strings["Consumer secret"] = "密码(Consumer secret)";
+$a->strings["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See <a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>"] = "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看<a href=\"http://www.w3.org/community/unhosted/wiki/RemoteStorage#WebFinger\">RemoteStorage WebFinger</a>";
+$a->strings["Template URL (with {category})"] = "模板URL(根{category})";
+$a->strings["OAuth end-point"] = "OAuth 端点";
+$a->strings["Api"] = "API";
+$a->strings["View Source"] = "看源代码";
+$a->strings["Get added to this list!"] = "被在这个单子加入!";
+$a->strings["Connect on Friendica!"] = "连接在Friendica!";
+$a->strings["%d person likes this"] = array(
+       0 => "%d人喜欢这个",
+);
+$a->strings["%d person doesn't like this"] = array(
+       0 => "%d人不喜欢这个",
+);
+$a->strings["Generate new key"] = "造成新钥匙";
+$a->strings["Widgets key"] = "小窗口钥匙";
+$a->strings["Widgets available"] = "可用的小窗口";
+$a->strings["Plugin Settings"] = "插件设置";
 $a->strings["Post to Wordpress"] = "发送到Wordpress";
 $a->strings["WordPress Post Settings"] = "Wordpress发送设置";
 $a->strings["Enable WordPress Post Plugin"] = "使Wordpress发送插件可用";
@@ -1595,505 +548,1576 @@ $a->strings["WordPress password"] = "Wordpress密码";
 $a->strings["WordPress API URL"] = "WordPress API URL";
 $a->strings["Post to WordPress by default"] = "默认地发送到Wordpress";
 $a->strings["Provide a backlink to the Friendica post"] = "输入反向链接到Friendica文章";
-$a->strings["Post from Friendica"] = "文章从Friendica";
 $a->strings["Read the original post and comment stream on Friendica"] = "看原来文章和评论溪流在Friendica";
-$a->strings["\"Show more\" Settings"] = "「看更多」设置";
-$a->strings["Enable Show More"] = "使看更多能用";
-$a->strings["Cutting posts after how much characters"] = "剪掉文章多少字后";
-$a->strings["Show More Settings saved."] = "看更多设置保存了。";
-$a->strings["This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "这个网站用<a href='http://www.piwik.org'>Piwik</a>分析工具追踪 。";
-$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "如果您不想您访问这样记录您<a href='%s'>可以用一个cookie防Piwik追踪未来的访问</a>(选择性退出)。";
-$a->strings["Piwik Base URL"] = "Piwik基础URL";
-$a->strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = "绝对道路到Piwik安装。(没有协议(http/s)跟斜线后缀)";
-$a->strings["Site ID"] = "网站ID";
-$a->strings["Show opt-out cookie link?"] = " 显示选择性退出cookie按钮?";
-$a->strings["Asynchronous tracking"] = "异步追踪";
-$a->strings["Post to Twitter"] = "发送到在Twitter";
-$a->strings["Twitter settings updated."] = "Twitter设置更新了。";
-$a->strings["Twitter Posting Settings"] = "Twitter发送设置";
-$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "找不到Twitter的消费钥匙双。请联系您的网页行政人员。";
-$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的<strong>公开</strong>文章被发送到Twitter。";
-$a->strings["Log in with Twitter"] = "用Twitter登记";
-$a->strings["Copy the PIN from Twitter here"] = "复制Twitter密码这儿";
-$a->strings["If enabled all your <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "如果使可用的都您<strong>公开的</strong>文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。";
-$a->strings["<strong>Note</strong>: Due your privacy settings (<em>Hide your profile details from unknown viewers?</em>) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "<strong>注意</strong>:由于您的隐私设置(<em>隐藏您的简介内容为生人?</em>)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。";
-$a->strings["Allow posting to Twitter"] = "允许发送到Twitter";
-$a->strings["Send public postings to Twitter by default"] = "默认地发送公开文章到Twitter";
+$a->strings["YourLS Settings"] = "YourLS配置";
+$a->strings["URL: http://"] = "URL: http://";
+$a->strings["Username:"] = "用户名:";
+$a->strings["Password:"] = "密码:";
+$a->strings["Use SSL "] = "用SSL";
+$a->strings["yourls Settings saved."] = "yourls配置保存了。";
+$a->strings["Global"] = "综合";
+$a->strings["Force global use of the alternate pager"] = "让大家用供替换的分页";
+$a->strings["Individual"] = "一个人的";
+$a->strings["Each user chooses whether to use the alternate pager"] = "每用户选择是否用供替换的分页";
+$a->strings["Suppress \"View on friendica\""] = "禁止「看在Friendica」";
+$a->strings["Mirror wall posts from facebook to friendica."] = "复制墙文章从facebook到friendica。";
+$a->strings["Post to page/group:"] = "放在页/组:";
+$a->strings["%s:"] = "%s:";
+$a->strings["Forum Directory"] = "评坛目录";
+$a->strings["Public access denied."] = "公众看拒绝";
+$a->strings["Global Directory"] = "综合目录";
+$a->strings["Find on this site"] = "找在这网站";
+$a->strings["Finding: "] = "找着:";
+$a->strings["Site Directory"] = "网站目录";
+$a->strings["Find"] = "搜索";
+$a->strings["Age: "] = "年纪:";
+$a->strings["Gender: "] = "性别:";
+$a->strings["Location:"] = "位置:";
+$a->strings["Gender:"] = "性别:";
+$a->strings["Status:"] = "现状:";
+$a->strings["Homepage:"] = "主页:";
+$a->strings["About:"] = "关于:";
+$a->strings["No entries (some entries may be hidden)."] = "没有文章(有的文章会被隐藏)。";
+$a->strings["Group Text settings updated."] = "组正文设置更新了。";
+$a->strings["Remote Permissions Settings"] = "对外批准设置";
+$a->strings["Allow recipients of your private posts to see the other recipients of the posts"] = "允许您私人文章接受者看别接受者。";
+$a->strings["Remote Permissions settings updated."] = "对外批准设置更新了。";
+$a->strings["Visible to:"] = "可见给:";
+$a->strings["Visible to"] = "可见的给";
+$a->strings["may only be a partial list"] = "可能部分的单";
+$a->strings["The posts of every user on this server show the post recipients"] = "这网站所有用户的文章表示接受者";
+$a->strings["Each user chooses whether his/her posts show the post recipients"] = "各用户选择他问上是否表示接受者";
+$a->strings["Mirror all posts from statusnet that are no replies or repeated messages"] = "复制所有文章从statusnet除了回答或重复的通知以外";
+$a->strings["Shortening method that optimizes the post"] = "缩短方法优化文章";
+$a->strings["You are now authenticated to tumblr."] = "现在tumblr证明您是真的";
+$a->strings["return to the connector page"] = "会连接器页";
+$a->strings["(Re-)Authenticate your tumblr page"] = "再认证您的tumblr页";
+$a->strings["Post to page:"] = "放在页:";
+$a->strings["You are not authenticated to tumblr"] = "tumblr没证明您是真的";
 $a->strings["Mirror all posts from twitter that are no replies or retweets"] = "复制所有文章从twitter除了回答或复准文以外";
 $a->strings["Shortening method that optimizes the tweet"] = "缩短方法优化缩短方法优化准文";
-$a->strings["Send linked #-tags and @-names to Twitter"] = "转播连接的#标签盒@名到Twitter";
-$a->strings["Consumer key"] = "钥匙(Consumer key)";
-$a->strings["Consumer secret"] = "密码(Consumer secret)";
 $a->strings["Name of the Twitter Application"] = "Twitter应用名";
 $a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "选择这个为避免复制文章从~friendica回归~friendica";
-$a->strings["IRC Settings"] = "IRC设置";
-$a->strings["Channel(s) to auto connect (comma separated)"] = "频道要自动地连接(逗号分隔)";
-$a->strings["Popular Channels (comma separated)"] = "流行频道(逗号分隔)";
-$a->strings["IRC settings saved."] = "IRC设置保存了。";
-$a->strings["IRC Chatroom"] = "IRC聊间";
-$a->strings["Popular Channels"] = "流行频道";
-$a->strings["Fromapp settings updated."] = "Fromapp设置更新了";
-$a->strings["FromApp Settings"] = "Fromapp设置";
-$a->strings["The application name you would like to show your posts originating from."] = "应用名您想当您文章的来源";
-$a->strings["Use this application name even if another application was used."] = "连别应用是用了也用这名。";
-$a->strings["Post to blogger"] = "转播到blogger";
-$a->strings["Blogger Post Settings"] = "Blogger转播设置";
-$a->strings["Enable Blogger Post Plugin"] = "使Blogger转播插件可用";
-$a->strings["Blogger username"] = "Blogger用户名";
-$a->strings["Blogger password"] = "Blogger密码";
-$a->strings["Blogger API URL"] = "Blogger API URL";
-$a->strings["Post to Blogger by default"] = "默认地转播到Blogger";
-$a->strings["Post to Posterous"] = "发送往Posterous";
-$a->strings["Posterous Post Settings"] = "Posterous发送设置";
-$a->strings["Enable Posterous Post Plugin"] = "使Posterous发送插件可用的";
-$a->strings["Posterous login"] = "Posterous登记名";
-$a->strings["Posterous password"] = "Posterous密码";
-$a->strings["Posterous site ID"] = "Posterous网站身份证明";
-$a->strings["Posterous API token"] = "Posterous API令牌";
-$a->strings["Post to Posterous by default"] = "默认地发送往Posterous";
-$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["Profile"] = "简介";
+$a->strings["Full Name:"] = "全名:";
+$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["Sexual Preference:"] = "性取向";
+$a->strings["Hometown:"] = "故乡:";
+$a->strings["Tags:"] = "标签:";
+$a->strings["Political Views:"] = "政治观念:";
+$a->strings["Religion:"] = "宗教:";
+$a->strings["Hobbies/Interests:"] = "爱好/兴趣";
+$a->strings["Likes:"] = "喜欢:";
+$a->strings["Dislikes:"] = "不喜欢:";
+$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["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"] = "朋友";
+$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["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["Send PM"] = "法私人的新闻";
+$a->strings["prev"] = "上个";
+$a->strings["first"] = "首先";
+$a->strings["last"] = "最后";
+$a->strings["next"] = "下个";
+$a->strings["newer"] = "更新";
+$a->strings["older"] = "更旧";
+$a->strings["No contacts"] = "没有熟人";
+$a->strings["%d Contact"] = array(
+       0 => "%d熟人",
+);
+$a->strings["View Contacts"] = "看熟人";
+$a->strings["Search"] = "搜索";
+$a->strings["poke"] = "戳";
+$a->strings["poked"] = "戳了";
+$a->strings["ping"] = "砰";
+$a->strings["pinged"] = "砰了";
+$a->strings["prod"] = "柔戳";
+$a->strings["prodded"] = "柔戳了";
+$a->strings["slap"] = "掌击";
+$a->strings["slapped"] = "掌击了";
+$a->strings["finger"] = "指";
+$a->strings["fingered"] = "指了";
+$a->strings["rebuff"] = "窝脖儿";
+$a->strings["rebuffed"] = "窝脖儿了";
+$a->strings["happy"] = "开心";
+$a->strings["sad"] = "伤心";
+$a->strings["mellow"] = "轻松";
+$a->strings["tired"] = "累";
+$a->strings["perky"] = "机敏";
+$a->strings["angry"] = "生气";
+$a->strings["stupified"] = "麻醉";
+$a->strings["puzzled"] = "纳闷";
+$a->strings["interested"] = "有兴趣";
+$a->strings["bitter"] = "苦";
+$a->strings["cheerful"] = "快乐";
+$a->strings["alive"] = "活着";
+$a->strings["annoyed"] = "被烦恼";
+$a->strings["anxious"] = "心焦";
+$a->strings["cranky"] = "不稳";
+$a->strings["disturbed"] = "不安";
+$a->strings["frustrated"] = "被作梗";
+$a->strings["motivated"] = "士气高涨";
+$a->strings["relaxed"] = "轻松";
+$a->strings["surprised"] = "诧异";
+$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["bytes"] = "字节";
+$a->strings["Click to open/close"] = "点击为开关";
+$a->strings["link to source"] = "链接到来源";
+$a->strings["default"] = "默认";
+$a->strings["Select an alternate language"] = "选择别的语言";
+$a->strings["activity"] = "活动";
+$a->strings["comment"] = array(
+       0 => "评论",
+);
+$a->strings["post"] = "文章";
+$a->strings["Item filed"] = "把项目归档了";
+$a->strings["Visible to everybody"] = "任何人可见的";
+$a->strings["show"] = "著";
+$a->strings["don't show"] = "别著";
+$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["Error decoding account file"] = "解码账户文件出错误";
+$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "错误!文件没有版本数!这不是Friendica账户文件吗?";
+$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "错误!我进口不了这个文件:数据库版本不相容的。";
+$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["l F d, Y \\@ g:i A"] = "l F d, Y \\@ g:i A";
+$a->strings["Starts:"] = "开始:";
+$a->strings["Finishes:"] = "结束:";
+$a->strings["Disallowed profile URL."] = "不允许的简介地址.";
+$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["An invitation is required."] = "邀请必要的。";
+$a->strings["Invitation could not be verified."] = "不能证实邀请。";
+$a->strings["Invalid OpenID url"] = "无效的OpenID url";
+$a->strings["Please enter the required information."] = "请输入必要的信息。";
+$a->strings["Please use a shorter name."] = "请用短一点名。";
+$a->strings["Name too short."] = "名字太短。";
+$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["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["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["Friendica"] = "Friendica";
+$a->strings["OStatus"] = "OStatus";
+$a->strings["RSS/Atom"] = "RSS/Atom";
+$a->strings["Email"] = "电子邮件";
+$a->strings["Diaspora"] = "Diaspora";
+$a->strings["Zot!"] = "Zot!";
+$a->strings["LinkedIn"] = "LinkedIn";
+$a->strings["XMPP/IM"] = "XMPP/IM";
+$a->strings["MySpace"] = "MySpace";
+$a->strings["Google+"] = "Google+";
+$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["Friend Suggestions"] = "友谊建议";
+$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["%d contact in common"] = array(
+       0 => "%d共同熟人",
+);
+$a->strings[" on Last.fm"] = "在Last.fm";
+$a->strings["Image/photo"] = "图像/照片";
+$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>";
+$a->strings["$1 wrote:"] = "$1写:";
+$a->strings["Encrypted content"] = "加密的内容";
+$a->strings["Miscellaneous"] = "形形色色";
+$a->strings["year"] = "年";
+$a->strings["month"] = "月";
+$a->strings["day"] = "日";
+$a->strings["never"] = "从未";
+$a->strings["less than a second ago"] = "一秒以内";
+$a->strings["week"] = "星期";
+$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["[Name Withheld]"] = "[名字拒给]";
+$a->strings["A new person is sharing with you at "] = "一位新人给你分享在";
+$a->strings["You have a new follower at "] = "你有新的关注者在";
+$a->strings["Item not found."] = "项目找不到。";
+$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?";
+$a->strings["Yes"] = "是";
+$a->strings["Archives"] = "档案";
+$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["(no subject)"] = "沒有题目";
+$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s是成为%2\$s的朋友";
+$a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络";
+$a->strings["Attachments:"] = "附件:";
+$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] %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] 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."] = "您从%2\$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["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["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["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["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["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%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."] = "一个删除的组用这名被复兴。现有的项目权利<strong>可能</strong>还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。";
+$a->strings["Default privacy group for new contacts"] = "默认隐私组为新熟人";
+$a->strings["Everybody"] = "每人";
+$a->strings["edit"] = "编辑";
+$a->strings["Groups"] = "组";
+$a->strings["Edit group"] = "编辑组";
+$a->strings["Create a new group"] = "创造新组";
+$a->strings["Contacts not in any group"] = "熟人没有组";
+$a->strings["add"] = "添加";
+$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s不喜欢%2\$s的%3\$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["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["Please wait"] = "请等一下";
+$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 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["Post to Email"] = "电邮发布";
+$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["CC: email addresses"] = "抄送: 电子邮件地址";
+$a->strings["Public post"] = "公开的消息";
+$a->strings["Example: bob@example.com, mary@example.com"] = "比如: li@example.com, wang@example.com";
+$a->strings["Preview"] = "预演";
+$a->strings["Post to Groups"] = "发到组";
+$a->strings["Post to Contacts"] = "发到熟人";
+$a->strings["Private post"] = "私人文章";
+$a->strings["[no subject]"] = "[无题目]";
+$a->strings["Wall Photos"] = "墙照片";
+$a->strings["Nothing new here"] = "这里没有什么新的";
+$a->strings["Clear notifications"] = "清理出通知";
+$a->strings["Logout"] = "注销";
+$a->strings["End this session"] = "结束这段时间";
+$a->strings["Status"] = "现状";
 $a->strings["Your posts and conversations"] = "你的消息和交谈";
 $a->strings["Your profile page"] = "你的简介页";
-$a->strings["Your contacts"] = "您的熟人";
+$a->strings["Photos"] = "照片";
 $a->strings["Your photos"] = "你的照片";
+$a->strings["Events"] = "事件";
 $a->strings["Your events"] = "你的项目";
 $a->strings["Personal notes"] = "私人的便条";
 $a->strings["Your personal photos"] = "你私人的照片";
-$a->strings["Community Pages"] = "社会页";
-$a->strings["Community Profiles"] = "社会简介";
-$a->strings["Last users"] = "上次用户";
-$a->strings["Last likes"] = "上次喜欢";
-$a->strings["Last photos"] = "上次照片";
-$a->strings["Find Friends"] = "找朋友们";
-$a->strings["Local Directory"] = "当地目录";
-$a->strings["Similar Interests"] = "相似兴趣";
-$a->strings["Invite Friends"] = "邀请朋友们";
-$a->strings["Earth Layers"] = "地球层";
-$a->strings["Set zoomfactor for Earth Layers"] = "选择拉近镜头级在地球层";
-$a->strings["Set longitude (X) for Earth Layers"] = "选择经度(X)在地球层";
-$a->strings["Set latitude (Y) for Earth Layers"] = "选择纬度(Y)在地球层";
-$a->strings["Help or @NewHere ?"] = "帮助或@菜鸟?";
-$a->strings["Connect Services"] = "连接服务";
-$a->strings["Last Tweets"] = "最后准文";
-$a->strings["Set twitter search term"] = "选择Twitter搜索关键";
-$a->strings["don't show"] = "别著";
-$a->strings["show"] = "著";
-$a->strings["Show/hide boxes at right-hand column:"] = "表示/隐藏盒子在友兰:";
-$a->strings["Set line-height for posts and comments"] = "决定行高在文章和评论";
-$a->strings["Set resolution for middle column"] = "决定中栏的显示分辨率列表";
-$a->strings["Set color scheme"] = "选择色彩设计";
-$a->strings["Set zoomfactor for Earth Layer"] = "选择拉近镜头级在地球层";
-$a->strings["Last tweets"] = "最后准文";
-$a->strings["Alignment"] = "成直线 ";
-$a->strings["Left"] = "左边";
-$a->strings["Center"] = "中间";
-$a->strings["Posts font size"] = "文章";
-$a->strings["Textareas font size"] = "文本区字体大小";
-$a->strings["Set colour scheme"] = "选择色彩设计";
-$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["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["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["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"] = "朋友";
-$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["Starts:"] = "开始:";
-$a->strings["Finishes:"] = "结束:";
-$a->strings["(no subject)"] = "沒有题目";
-$a->strings[" on Last.fm"] = "在Last.fm";
-$a->strings["prev"] = "上个";
-$a->strings["first"] = "首先";
-$a->strings["last"] = "最后";
-$a->strings["next"] = "下个";
-$a->strings["newer"] = "更新";
-$a->strings["older"] = "更旧";
-$a->strings["No contacts"] = "没有熟人";
-$a->strings["%d Contact"] = array(
-       0 => "%d熟人",
-);
-$a->strings["poke"] = "戳";
-$a->strings["poked"] = "戳了";
-$a->strings["ping"] = "砰";
-$a->strings["pinged"] = "砰了";
-$a->strings["prod"] = "柔戳";
-$a->strings["prodded"] = "柔戳了";
-$a->strings["slap"] = "掌击";
-$a->strings["slapped"] = "掌击了";
-$a->strings["finger"] = "指";
-$a->strings["fingered"] = "指了";
-$a->strings["rebuff"] = "窝脖儿";
-$a->strings["rebuffed"] = "窝脖儿了";
-$a->strings["happy"] = "开心";
-$a->strings["sad"] = "伤心";
-$a->strings["mellow"] = "轻松";
-$a->strings["tired"] = "累";
-$a->strings["perky"] = "机敏";
-$a->strings["angry"] = "生气";
-$a->strings["stupified"] = "麻醉";
-$a->strings["puzzled"] = "纳闷";
-$a->strings["interested"] = "有兴趣";
-$a->strings["bitter"] = "苦";
-$a->strings["cheerful"] = "快乐";
-$a->strings["alive"] = "活着";
-$a->strings["annoyed"] = "被烦恼";
-$a->strings["anxious"] = "心焦";
-$a->strings["cranky"] = "不稳";
-$a->strings["disturbed"] = "不安";
-$a->strings["frustrated"] = "被作梗";
-$a->strings["motivated"] = "士气高涨";
-$a->strings["relaxed"] = "轻松";
-$a->strings["surprised"] = "诧异";
-$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["bytes"] = "字节";
-$a->strings["Click to open/close"] = "点击为开关";
-$a->strings["default"] = "默认";
-$a->strings["Select an alternate language"] = "选择别的语言";
-$a->strings["activity"] = "活动";
-$a->strings["post"] = "文章";
-$a->strings["Item filed"] = "把项目归档了";
-$a->strings["Sharing notification from Diaspora network"] = "分享通知从Diaspora网络";
-$a->strings["Attachments:"] = "附件:";
+$a->strings["Sign in"] = "登记";
+$a->strings["Home"] = "主页";
+$a->strings["Home Page"] = "主页";
+$a->strings["Register"] = "注册";
+$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["Community"] = "社会";
+$a->strings["Conversations on this site"] = "这个网站的交谈";
+$a->strings["Directory"] = "名录";
+$a->strings["People directory"] = "人物名录";
+$a->strings["Network"] = "网络";
+$a->strings["Conversations from your friends"] = "从你朋友们的交谈";
+$a->strings["Network Reset"] = "网络重设";
+$a->strings["Load Network page with no filters"] = "表示网络页无滤器";
+$a->strings["Introductions"] = "介绍";
+$a->strings["Friend Requests"] = "友谊邀请";
+$a->strings["Notifications"] = "通知";
+$a->strings["See all notifications"] = "看所有的通知";
+$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["Account settings"] = "帐户配置";
+$a->strings["Profiles"] = "简介";
+$a->strings["Manage/Edit Profiles"] = "管理/编辑简介";
+$a->strings["Contacts"] = "熟人";
+$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["view full size"] = "看全尺寸";
 $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! I can't import this file: DB schema version is not compatible."] = "错误!我进口不了这个文件:数据库版本不相容的。";
-$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["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["Profile not found."] = "找不到简介。";
+$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["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 your contact/friend list from viewers of this profile?"] = "藏起来发现您的熟人/朋友单不让这个简介看着看?";
+$a->strings["No"] = "否";
+$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["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["Homepage URL:"] = "主页URL:";
+$a->strings["Religious Views:"] = " 宗教信仰 :";
+$a->strings["Public Keywords:"] = "公开关键字 :";
+$a->strings["Private Keywords:"] = "私人关键字";
+$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["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["Personal Notes"] = "私人便条";
+$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["{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["Theme settings updated."] = "主题设置更新了。";
+$a->strings["Site"] = "网站";
+$a->strings["Users"] = "用户";
+$a->strings["Plugins"] = "插件";
+$a->strings["Themes"] = "主题";
+$a->strings["DB updates"] = "数据库更新";
+$a->strings["Logs"] = "记录";
+$a->strings["Plugin Features"] = "插件特点";
+$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["Site settings updated."] = "网站设置更新了。";
+$a->strings["No special theme for mobile devices"] = "没专门适合手机的主题";
+$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["Registration"] = "注册";
+$a->strings["File upload"] = "文件上传";
+$a->strings["Policies"] = "政策";
+$a->strings["Advanced"] = "高等";
+$a->strings["Performance"] = "性能";
+$a->strings["Banner/Logo"] = "标题/标志";
+$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["'Share' element"] = "「合用」要素";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "把bbcode要素「合用」为重复项目。";
+$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["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["Show Community Page"] = "表示社会页";
+$a->strings["Display a Community page showing all recent public postings on this site."] = "表示社会页表明这网站所有最近公开的文章";
+$a->strings["Enable OStatus support"] = "使OStatus支持可用";
+$a->strings["Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed."] = "提供内装的OStatus(identi.ca, status.net, 等)兼容。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["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)."] = "缓存文件应该保存多久?默认是86400秒(一天)。";
+$a->strings["Path for lock file"] = "路线到锁文件";
+$a->strings["Temp path"] = "临时文件路线";
+$a->strings["Base path to installation"] = "基础安装路线";
+$a->strings["Update has been marked successful"] = "更新当成功标签了";
+$a->strings["Executing %s failed. Check system logs."] = "把%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["Update function %s could not be found."] = "找不到更新功能%s。";
+$a->strings["No failed updates."] = "没有不通过地更新。";
+$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["%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["select all"] = "都选";
+$a->strings["User registrations waiting for confirm"] = "用户注册等待确认";
+$a->strings["Request date"] = "要求日期";
+$a->strings["Name"] = "名字";
+$a->strings["No registrations."] = "没有注册。";
+$a->strings["Approve"] = "批准";
+$a->strings["Deny"] = "否定";
+$a->strings["Block"] = "拦";
+$a->strings["Unblock"] = "不拦";
+$a->strings["Site admin"] = "网站管理员";
+$a->strings["Register date"] = "注册日期";
+$a->strings["Last login"] = "上次登录";
+$a->strings["Last item"] = "上项目";
+$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["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["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["Update now"] = "现在更新";
+$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["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["Friends of %s"] = "%s的朋友们";
+$a->strings["No friends to display."] = "没有朋友展示。";
+$a->strings["Remove term"] = "删除关键字";
+$a->strings["No results."] = "没有结果";
+$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["Registration details for %s"] = "注册信息为%s";
+$a->strings["Registration successful. Please check your email for further instructions."] = "注册成功了。请咨询说明再您的收件箱。";
+$a->strings["Failed to send email message. Here is the message that failed."] = "发邮件失败了。这条试失败的消息。";
+$a->strings["Your registration can not be processed."] = "处理不了您的注册。";
+$a->strings["Registration request at %s"] = "注册要求再%s";
+$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["Applications"] = "应用";
+$a->strings["No installed applications."] = "没有安装的应用";
+$a->strings["Account approved."] = "账户批准了";
+$a->strings["Registration revoked for %s"] = "%s的登记撤销了";
+$a->strings["Please login."] = "清登录。";
+$a->strings["Item not available."] = "项目不可用的";
+$a->strings["Item was not found."] = "找不到项目。";
+$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["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["Common Friends"] = "普通朋友们";
+$a->strings["No contacts in common."] = "没有共同熟人。";
+$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["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["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["View all contacts"] = "看所有的熟人";
+$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["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["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["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["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["Search your contacts"] = "搜索您的熟人";
+$a->strings["everybody"] = "每人";
+$a->strings["Additional features"] = "附加的特点";
+$a->strings["Display settings"] = "表示设置";
+$a->strings["Connector settings"] = "插销设置";
+$a->strings["Plugin settings"] = "插件设置";
+$a->strings["Connected apps"] = "连接着应用";
+$a->strings["Export personal data"] = "出口私人信息";
+$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["Passwords do not match. Password unchanged."] = "密码们不相配。密码没未改变的。";
+$a->strings["Empty passwords are not allowed. Password unchanged."] = "空的密码禁止。密码没未改变的。";
+$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[" 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["Add application"] = "加入应用";
+$a->strings["Redirect"] = "重定向";
+$a->strings["Icon url"] = "图符URL";
+$a->strings["You can't edit this application."] = "您不能编辑这个应用。";
+$a->strings["Connected Apps"] = "连接着应用";
+$a->strings["Edit"] = "编辑";
+$a->strings["Client key starts with"] = "客户钥匙头字是";
+$a->strings["No name"] = "无名";
+$a->strings["Remove authorization"] = "撤消权能";
+$a->strings["No Plugin settings configured"] = "没插件设置配置了";
+$a->strings["Off"] = "关";
+$a->strings["On"] = "开";
+$a->strings["Additional Features"] = "附加的特点";
+$a->strings["Built-in support for %s connectivity is %s"] = "包括的支持为%s连通性是%s";
+$a->strings["enabled"] = "能够做的";
+$a->strings["disabled"] = "使不能用";
+$a->strings["StatusNet"] = "StatusNet";
+$a->strings["Email access is disabled on this site."] = "这个网站没有邮件使用权";
+$a->strings["Connector Settings"] = "连接器设置";
+$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["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["Don't show emoticons"] = "别表示请表符号";
+$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["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["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["or"] = "或者";
+$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["Basic Settings"] = "基础设置";
+$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["Advanced Account/Page Type Settings"] = "专家账户/页种设置";
+$a->strings["Change the behaviour of this account for special situations"] = "把这个账户特别情况的时候行动变化";
+$a->strings["link"] = "链接";
+$a->strings["Contact settings applied."] = "熟人设置应用了。";
+$a->strings["Contact update failed."] = "熟人更新失败。";
+$a->strings["Contact not found."] = "没找到熟人。";
+$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["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["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["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["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["Connection accepted at %s"] = "联络接受了在%s";
+$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["Done. You can now login with your username and password"] = "完了。您现在会用您用户名和密码登录";
-$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["Logout"] = "注销";
-$a->strings["End this session"] = "结束这段时间";
-$a->strings["Status"] = "现状";
-$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["Directory"] = "名录";
-$a->strings["People directory"] = "人物名录";
-$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["Delegations"] = "代表";
-$a->strings["Profiles"] = "简介";
-$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["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["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["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["<strike>Connect as an email follower</strike> (Coming soon)"] = "<strike>连接当邮件关注</strike>(快来)";
+$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["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["%1\$s is following %2\$s's %3\$s"] = "%1\$s关注着%2\$s的%3\$s";
+$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["People Search"] = "搜索人物";
+$a->strings["No matches"] = "没有结果";
+$a->strings["Access to this profile has been restricted."] = "使用权这个简介被限制了.";
+$a->strings["Item has been removed."] = "项目被删除了。";
+$a->strings["Tag removed"] = "标签去除了";
+$a->strings["Remove Item Tag"] = "去除项目标签";
+$a->strings["Select a tag to remove: "] = "选择标签去除";
+$a->strings["Item not found"] = "项目没找到";
+$a->strings["Edit post"] = "编辑文章";
+$a->strings["Event title and start time are required."] = "项目标题和开始时间是必须的。";
+$a->strings["l, F j"] = "l, F j";
+$a->strings["Edit event"] = "编项目";
+$a->strings["Create New Event"] = "造成新的项目";
+$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["Title:"] = "标题:";
+$a->strings["Share this event"] = "分享这个项目";
+$a->strings["Files"] = "文件";
+$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["- select -"] = "-选择-";
+$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 (statusnet/identi.ca) or from Diaspora"] = "这个特点是在试验阶段。我们进口不了Ostatus网络(statusnet/identi.ca)或Diaspora熟人";
+$a->strings["Account file"] = "账户文件";
+$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」";
+$a->strings["[Embedded content - reload page to view]"] = "[嵌入内容-重新加载页为看]";
+$a->strings["Contact added"] = "熟人添了";
+$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["Friend suggestion sent."] = "朋友建议发送了。";
+$a->strings["Suggest Friends"] = "建议朋友们";
+$a->strings["Suggest a friend for %s"] = "建议朋友给%s";
+$a->strings["Group created."] = "组造成了。";
+$a->strings["Could not create group."] = "不能造成组。";
+$a->strings["Group not found."] = "组找不到。";
+$a->strings["Group name changed."] = "组名变化了。";
+$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["No profile"] = "无简介";
+$a->strings["Help:"] = "帮助:";
+$a->strings["Not Found"] = "未发现";
+$a->strings["Page not found."] = "页发现。";
+$a->strings["No contacts."] = "没有熟人。";
+$a->strings["Access denied."] = "没有用权。";
+$a->strings["File exceeds size limit of %d"] = "文件数目超过最多%d";
+$a->strings["File upload failed."] = "文件上传失败。";
+$a->strings["Friendica Social 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["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["Errors encountered creating database tables."] = "造成数据库列表相遇错误。";
+$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["Image exceeds size limit of %d"] = "图像超标最大极限尺寸 %d";
+$a->strings["Unable to process image."] = "处理不了图像.";
+$a->strings["Image upload failed."] = "图像上载失败了.";
+$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["Find People"] = "找人物";
-$a->strings["Enter name or interest"] = "输入名字或兴趣";
-$a->strings["Connect/Follow"] = "连接/关注";
-$a->strings["Examples: Robert Morgenstein, Fishing"] = "比如:李某,打鱼";
-$a->strings["Random Profile"] = "随机简介";
-$a->strings["Networks"] = "网络";
-$a->strings["All Networks"] = "所有网络";
-$a->strings["Saved Folders"] = "保存的文件夹";
-$a->strings["Everything"] = "一切";
-$a->strings["Categories"] = "种类";
-$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["Miscellaneous"] = "形形色色";
-$a->strings["year"] = "年";
-$a->strings["month"] = "月";
-$a->strings["day"] = "日";
-$a->strings["never"] = "从未";
-$a->strings["less than a second ago"] = "一秒以内";
-$a->strings["week"] = "星期";
-$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["Image/photo"] = "图像/照片";
-$a->strings["<span><a href=\"%s\" target=\"external-link\">%s</a> wrote the following <a href=\"%s\" target=\"external-link\">post</a>"] = "<span><a href=\"%s\" target=\"external-link\">%s</a>写了下面的<a href=\"%s\" target=\"external-link\">文章</a>";
-$a->strings["$1 wrote:"] = "$1写:";
-$a->strings["Encrypted content"] = "加密的内容";
-$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["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["Cannot locate DNS info for database server '%s'"] = "找不到DNS信息为数据库服务器「%s」";
-$a->strings["[no subject]"] = "[无题目]";
-$a->strings["Visible to everybody"] = "任何人可见的";
-$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] %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] 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."] = "您从%2\$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["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 new person is sharing with you at "] = "一位新人给你分享在";
-$a->strings["You have a new follower at "] = "你有新的关注者在";
-$a->strings["Do you really want to delete this item?"] = "您真的想删除这个项目吗?";
-$a->strings["Archives"] = "档案";
-$a->strings["An invitation is required."] = "邀请必要的。";
-$a->strings["Invitation could not be verified."] = "不能证实邀请。";
-$a->strings["Invalid OpenID url"] = "无效的OpenID url";
-$a->strings["Please enter the required information."] = "请输入必要的信息。";
-$a->strings["Please use a shorter name."] = "请用短一点名。";
-$a->strings["Name too short."] = "名字太短。";
-$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["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["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["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["Send PM"] = "法私人的新闻";
-$a->strings["%1\$s poked %2\$s"] = "%1\$s把%2\$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["Categories:"] = "种类:";
-$a->strings["Filed under:"] = "归档在:";
-$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["permissions"] = "权利";
-$a->strings["Post to Groups"] = "发到组";
-$a->strings["Post to Contacts"] = "发到熟人";
-$a->strings["Private post"] = "私人文章";
-$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["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["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://friendica.com"] = "看别的信息由于Friendica工程和怎么我们看重,请看http://friendica.com";
+$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "一天最多墙通知给%s超过了。通知没有通过 。";
+$a->strings["No recipient selected."] = "没有选择的接受者。";
+$a->strings["Unable to check your home location."] = "核对不了您的主页。";
+$a->strings["Message could not be sent."] = "消息发不了。";
+$a->strings["Message collection failure."] = "通信受到错误。";
+$a->strings["Message sent."] = "消息发了";
+$a->strings["No recipient."] = "没有接受者。";
+$a->strings["Send Private Message"] = "发私人的通信";
+$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["To:"] = "到:";
+$a->strings["Subject:"] = "题目:";
+$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["Remote privacy information not available."] = "摇隐私信息无效";
+$a->strings["No valid account found."] = "找不到效的账户。";
+$a->strings["Password reset request issued. Check your email."] = "重设密码要求发布了。核对您的收件箱。";
+$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["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["System down for maintenance"] = "系统关闭为了维持";
+$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["Profile Match"] = "简介符合";
+$a->strings["No keywords to match. Please add keywords to your default profile."] = "没有符合的关键字。请在您的默认简介加关键字。";
+$a->strings["is interested in:"] = "感兴趣对:";
+$a->strings["Unable to locate contact information."] = "找不到熟人信息。";
+$a->strings["Do you really want to delete this message?"] = "您真的想删除这个通知吗?";
+$a->strings["Message deleted."] = "消息删除了。";
+$a->strings["Conversation removed."] = "交流删除了。";
+$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["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["Mood"] = "心情";
+$a->strings["Set your current mood and tell your friends"] = "选择现在的心情而告诉朋友们";
+$a->strings["Search Results For:"] = "搜索结果为:";
+$a->strings["Commented Order"] = "评论时间顺序";
+$a->strings["Sort by Comment Date"] = "按评论日期顺序排列";
+$a->strings["Posted Order"] = "贴时间顺序";
+$a->strings["Sort by Post Date"] = "按发布日期顺序排列";
+$a->strings["Personal"] = "私人";
+$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["Not available."] = "不可用的";
+$a->strings["Photo Albums"] = "相册";
+$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 file is empty."] = "图片文件空的。";
+$a->strings["No photos selected"] = "没有照片挑选了";
+$a->strings["Access to this item is restricted."] = "这个项目使用权限的。";
+$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["Private Message"] = "私人的新闻";
+$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["I like this (toggle)"] = "我喜欢这(交替)";
+$a->strings["I don't like this (toggle)"] = "我不喜欢这(交替)";
+$a->strings["This is you"] = "这是你";
+$a->strings["Comment"] = "评论";
+$a->strings["View Album"] = "看照片册";
+$a->strings["Recent Photos"] = "最近的照片";
+$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["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["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["Requested profile is not available."] = "要求的简介联系不上的。";
+$a->strings["Tips for New Members"] = "提示对新成员";
+$a->strings["Invalid request identifier."] = "无效要求身份号。";
+$a->strings["Discard"] = "丢弃";
+$a->strings["System"] = "系统";
+$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["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["%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["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["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["Upload File:"] = "上传文件:";
+$a->strings["Select a profile:"] = "选择一个简介";
+$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["%d comment"] = array(
+       0 => "%d评论",
+);
+$a->strings["like"] = "喜欢";
+$a->strings["dislike"] = "讨厌";
+$a->strings["Share this"] = "分享这个";
+$a->strings["share"] = "分享";
+$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["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["via"] = "经过";
+$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 resolution for middle column"] = "决定中栏的显示分辨率列表";
+$a->strings["Set color scheme"] = "选择色彩设计";
+$a->strings["Set twitter search term"] = "选择Twitter搜索关键";
+$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["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 tweets"] = "最后准文";
+$a->strings["Last users"] = "上次用户";
+$a->strings["Last photos"] = "上次照片";
+$a->strings["Last likes"] = "上次喜欢";
+$a->strings["Your contacts"] = "您的熟人";
+$a->strings["Local Directory"] = "当地目录";
+$a->strings["Set zoomfactor for Earth Layers"] = "选择拉近镜头级在地球层";
+$a->strings["Last Tweets"] = "最后准文";
+$a->strings["Show/hide boxes at right-hand column:"] = "表示/隐藏盒子在友兰:";
+$a->strings["Set colour scheme"] = "选择色彩设计";
+$a->strings["Alignment"] = "成直线 ";
+$a->strings["Left"] = "左边";
+$a->strings["Center"] = "中间";
+$a->strings["Posts font size"] = "文章";
+$a->strings["Textareas font size"] = "文本区字体大小";
+$a->strings["toggle mobile"] = "交替手机";
 $a->strings["Delete this item?"] = "删除这个项目?";
 $a->strings["show fewer"] = "显示更小";
 $a->strings["Update %s failed. See error logs."] = "更新%s美通过。看错误记录。";
@@ -2124,21 +2148,3 @@ $a->strings["Status Messages and Posts"] = "现状通知和文章";
 $a->strings["Profile Details"] = "简介内容";
 $a->strings["Events and Calendar"] = "项目和日历";
 $a->strings["Only You Can See This"] = "只您许看这个";
-$a->strings["via"] = "经过";
-$a->strings["toggle mobile"] = "交替手机";
-$a->strings["Bg settings updated."] = "Bg设置更新了";
-$a->strings["Bg Settings"] = "Bg设置";
-$a->strings["Post to Drupal"] = "发到Drupal";
-$a->strings["Drupal Post Settings"] = "Drupal设置";
-$a->strings["Enable Drupal Post Plugin"] = "使Drupal插件能够";
-$a->strings["Drupal username"] = "Drupal用户名";
-$a->strings["Drupal password"] = "Drupal密码";
-$a->strings["Post Type - article,page,or blog"] = "文章种类-文章,页,博客";
-$a->strings["Drupal site URL"] = "Drupal网站URL";
-$a->strings["Drupal site uses clean URLS"] = "Drupal网站用整洁URL";
-$a->strings["Post to Drupal by default"] = "默认地发到Drupal";
-$a->strings["OEmbed settings updated"] = "OEmbed设置更新了";
-$a->strings["Use OEmbed for YouTube videos"] = "用OEmbed为YouTube视频";
-$a->strings["URL to embed:"] = "URL要嵌入:";
-$a->strings["Tumblr login"] = "Tumblr登记名";
-$a->strings["Tumblr password"] = "Tumblr密码";