diff --git a/include/bbcode.php b/include/bbcode.php index d9a1192d67..ebed0dbb25 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -642,8 +642,8 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $Text = preg_replace('/\"\;/','"',$Text); // fix any escaped ampersands that may have been converted into links - $Text = preg_replace("/\<(.*?)(src|href)=(.*?)\&\;(.*?)\>/ism",'<$1$2=$3&$4>',$Text); - $Text = preg_replace("/\<(.*?)(src|href)=\"[^hfm](.*?)\>/ism",'<$1$2="">',$Text); + $Text = preg_replace("/\<([^>]*?)(src|href)=(.*?)\&\;(.*?)\>/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); diff --git a/include/pgettext.php b/include/pgettext.php index 5a0eab0b01..525b64a186 100644 --- a/include/pgettext.php +++ b/include/pgettext.php @@ -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 diff --git a/index.php b/index.php index 3ccdc725f6..40551f3881 100644 --- 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); /** * diff --git a/mod/admin.php b/mod/admin.php index ecca0b8be3..48cc4b1510 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -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"), )); diff --git a/mod/apps.php b/mod/apps.php index 8049b45fb3..a821ef5d5b 100644 --- a/mod/apps.php +++ b/mod/apps.php @@ -1,7 +1,14 @@ apps)==0) notice( t('No installed applications.') . EOL); diff --git a/mods/sample-Lighttpd.config b/mods/sample-Lighttpd.config new file mode 100644 index 0000000000..66d00585d9 --- /dev/null +++ b/mods/sample-Lighttpd.config @@ -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 diff --git a/util/messages.po b/util/messages.po index e10b053ada..da69e320b6 100644 --- a/util/messages.po +++ b/util/messages.po @@ -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 \n" "Language-Team: LANGUAGE \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 " +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,191 +5108,6 @@ msgstr "" msgid "Private post" 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 " -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/message.php:15 ../../include/message.php:172 msgid "[no subject]" msgstr "" @@ -5749,6 +5749,750 @@ msgstr "" msgid "{0} mentioned you in a post" msgstr "" +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:474 +msgid "Site" +msgstr "" + +#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756 +msgid "Users" +msgstr "" + +#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881 +msgid "Plugins" +msgstr "" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081 +msgid "Themes" +msgstr "" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168 +msgid "Logs" +msgstr "" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "" + +#: ../../mod/admin.php:182 ../../mod/admin.php:714 +msgid "Normal Account" +msgstr "" + +#: ../../mod/admin.php:183 ../../mod/admin.php:715 +msgid "Soapbox Account" +msgstr "" + +#: ../../mod/admin.php:184 ../../mod/admin.php:716 +msgid "Community/Celebrity Account" +msgstr "" + +#: ../../mod/admin.php:185 ../../mod/admin.php:717 +msgid "Automatic Friend Account" +msgstr "" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "" + +#: ../../mod/admin.php:206 +msgid "Message queues" +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 "" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "" + +#: ../../mod/admin.php:398 +msgid "Site settings updated." +msgstr "" + +#: ../../mod/admin.php:427 ../../mod/settings.php:769 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Multi user instance" +msgstr "" + +#: ../../mod/admin.php:460 +msgid "Closed" +msgstr "" + +#: ../../mod/admin.php:461 +msgid "Requires approval" +msgstr "" + +#: ../../mod/admin.php:462 +msgid "Open" +msgstr "" + +#: ../../mod/admin.php:466 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: ../../mod/admin.php:467 +msgid "Force all links to use SSL" +msgstr "" + +#: ../../mod/admin.php:468 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: ../../mod/admin.php:476 ../../mod/register.php:261 +msgid "Registration" +msgstr "" + +#: ../../mod/admin.php:477 +msgid "File upload" +msgstr "" + +#: ../../mod/admin.php:478 +msgid "Policies" +msgstr "" + +#: ../../mod/admin.php:479 +msgid "Advanced" +msgstr "" + +#: ../../mod/admin.php:480 +msgid "Performance" +msgstr "" + +#: ../../mod/admin.php:485 +msgid "Banner/Logo" +msgstr "" + +#: ../../mod/admin.php:486 +msgid "System language" +msgstr "" + +#: ../../mod/admin.php:487 +msgid "System theme" +msgstr "" + +#: ../../mod/admin.php:487 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "" + +#: ../../mod/admin.php:488 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:488 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:489 +msgid "SSL link policy" +msgstr "" + +#: ../../mod/admin.php:489 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: ../../mod/admin.php:490 +msgid "'Share' element" +msgstr "" + +#: ../../mod/admin.php:490 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "" + +#: ../../mod/admin.php:491 +msgid "Hide help entry from navigation menu" +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 "" + +#: ../../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 "" + +#: ../../mod/admin.php:495 +msgid "JPEG image quality" +msgstr "" + +#: ../../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/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 "" + +#: ../../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: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 "" + +#: ../../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: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 "" + +#: ../../mod/admin.php:510 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../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 "" + +#: ../../mod/admin.php:512 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../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 "" + +#: ../../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:515 +msgid "Enable Diaspora support" +msgstr "" + +#: ../../mod/admin.php:515 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:516 +msgid "Only allow Friendica contacts" +msgstr "" + +#: ../../mod/admin.php:516 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../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 "" + +#: ../../mod/admin.php:518 +msgid "Proxy user" +msgstr "" + +#: ../../mod/admin.php:519 +msgid "Proxy URL" +msgstr "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../mod/admin.php:525 +msgid "Use MySQL full text engine" +msgstr "" + +#: ../../mod/admin.php:525 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: ../../mod/admin.php:526 +msgid "Path to item cache" +msgstr "" + +#: ../../mod/admin.php:527 +msgid "Cache duration in seconds" +msgstr "" + +#: ../../mod/admin.php:527 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One " +"day)." +msgstr "" + +#: ../../mod/admin.php:528 +msgid "Path for lock file" +msgstr "" + +#: ../../mod/admin.php:529 +msgid "Temp path" +msgstr "" + +#: ../../mod/admin.php:530 +msgid "Base path to installation" +msgstr "" + +#: ../../mod/admin.php:548 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:558 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:561 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:565 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:568 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:583 +msgid "No failed updates." +msgstr "" + +#: ../../mod/admin.php:587 +msgid "Failed Updates" +msgstr "" + +#: ../../mod/admin.php:588 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: ../../mod/admin.php:589 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:590 +msgid "Attempt to execute this update step automatically" +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:622 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "" +msgstr[1] "" + +#: ../../mod/admin.php:661 +#, php-format +msgid "User '%s' deleted" +msgstr "" + +#: ../../mod/admin.php:669 +#, php-format +msgid "User '%s' unblocked" +msgstr "" + +#: ../../mod/admin.php:669 +#, php-format +msgid "User '%s' blocked" +msgstr "" + +#: ../../mod/admin.php:745 +msgid "select all" +msgstr "" + +#: ../../mod/admin.php:746 +msgid "User registrations waiting for confirm" +msgstr "" + +#: ../../mod/admin.php:747 +msgid "Request date" +msgstr "" + +#: ../../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:748 +msgid "No registrations." +msgstr "" + +#: ../../mod/admin.php:749 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "" + +#: ../../mod/admin.php:750 +msgid "Deny" +msgstr "" + +#: ../../mod/admin.php:752 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "" + +#: ../../mod/admin.php:753 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "" + +#: ../../mod/admin.php:754 +msgid "Site admin" +msgstr "" + +#: ../../mod/admin.php:757 +msgid "Register date" +msgstr "" + +#: ../../mod/admin.php:757 +msgid "Last login" +msgstr "" + +#: ../../mod/admin.php:757 +msgid "Last item" +msgstr "" + +#: ../../mod/admin.php:757 +msgid "Account" +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 "" + +#: ../../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:801 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../mod/admin.php:805 +#, php-format +msgid "Plugin %s enabled." +msgstr "" + +#: ../../mod/admin.php:815 ../../mod/admin.php:1018 +msgid "Disable" +msgstr "" + +#: ../../mod/admin.php:817 ../../mod/admin.php:1020 +msgid "Enable" +msgstr "" + +#: ../../mod/admin.php:840 ../../mod/admin.php:1048 +msgid "Toggle" +msgstr "" + +#: ../../mod/admin.php:848 ../../mod/admin.php:1058 +msgid "Author: " +msgstr "" + +#: ../../mod/admin.php:849 ../../mod/admin.php:1059 +msgid "Maintainer: " +msgstr "" + +#: ../../mod/admin.php:978 +msgid "No themes found." +msgstr "" + +#: ../../mod/admin.php:1040 +msgid "Screenshot" +msgstr "" + +#: ../../mod/admin.php:1086 +msgid "[Experimental]" +msgstr "" + +#: ../../mod/admin.php:1087 +msgid "[Unsupported]" +msgstr "" + +#: ../../mod/admin.php:1114 +msgid "Log settings updated." +msgstr "" + +#: ../../mod/admin.php:1170 +msgid "Clear" +msgstr "" + +#: ../../mod/admin.php:1176 +msgid "Debugging" +msgstr "" + +#: ../../mod/admin.php:1177 +msgid "Log file" +msgstr "" + +#: ../../mod/admin.php:1177 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: ../../mod/admin.php:1178 +msgid "Log level" +msgstr "" + +#: ../../mod/admin.php:1227 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "" + +#: ../../mod/admin.php:1228 +msgid "Close" +msgstr "" + +#: ../../mod/admin.php:1234 +msgid "FTP Host" +msgstr "" + +#: ../../mod/admin.php:1235 +msgid "FTP Path" +msgstr "" + +#: ../../mod/admin.php:1236 +msgid "FTP User" +msgstr "" + +#: ../../mod/admin.php:1237 +msgid "FTP Password" +msgstr "" + #: ../../mod/item.php:105 msgid "Unable to locate original post." msgstr "" @@ -5880,10 +6624,6 @@ msgstr "" msgid "Your invitation ID: " msgstr "" -#: ../../mod/register.php:261 ../../mod/admin.php:479 -msgid "Registration" -msgstr "" - #: ../../mod/register.php:269 msgid "Your Full Name (e.g. Joe Smith): " msgstr "" @@ -6002,760 +6742,6 @@ msgstr "" msgid "No contacts in common." msgstr "" -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:477 -msgid "Site" -msgstr "" - -#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761 -msgid "Users" -msgstr "" - -#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886 -msgid "Plugins" -msgstr "" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086 -msgid "Themes" -msgstr "" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173 -msgid "Logs" -msgstr "" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "" - -#: ../../mod/admin.php:182 ../../mod/admin.php:718 -msgid "Normal Account" -msgstr "" - -#: ../../mod/admin.php:183 ../../mod/admin.php:719 -msgid "Soapbox Account" -msgstr "" - -#: ../../mod/admin.php:184 ../../mod/admin.php:720 -msgid "Community/Celebrity Account" -msgstr "" - -#: ../../mod/admin.php:185 ../../mod/admin.php:721 -msgid "Automatic Friend Account" -msgstr "" - -#: ../../mod/admin.php:186 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:187 -msgid "Private Forum" -msgstr "" - -#: ../../mod/admin.php:206 -msgid "Message queues" -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 "" - -#: ../../mod/admin.php:212 -msgid "Summary" -msgstr "" - -#: ../../mod/admin.php:214 -msgid "Registered users" -msgstr "" - -#: ../../mod/admin.php:216 -msgid "Pending registrations" -msgstr "" - -#: ../../mod/admin.php:217 -msgid "Version" -msgstr "" - -#: ../../mod/admin.php:219 -msgid "Active plugins" -msgstr "" - -#: ../../mod/admin.php:401 -msgid "Site settings updated." -msgstr "" - -#: ../../mod/admin.php:430 ../../mod/settings.php:769 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:447 -msgid "Multi user instance" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "Closed" -msgstr "" - -#: ../../mod/admin.php:464 -msgid "Requires approval" -msgstr "" - -#: ../../mod/admin.php:465 -msgid "Open" -msgstr "" - -#: ../../mod/admin.php:469 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Force all links to use SSL" -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:480 -msgid "File upload" -msgstr "" - -#: ../../mod/admin.php:481 -msgid "Policies" -msgstr "" - -#: ../../mod/admin.php:482 -msgid "Advanced" -msgstr "" - -#: ../../mod/admin.php:483 -msgid "Performance" -msgstr "" - -#: ../../mod/admin.php:488 -msgid "Banner/Logo" -msgstr "" - -#: ../../mod/admin.php:489 -msgid "System language" -msgstr "" - -#: ../../mod/admin.php:490 -msgid "System theme" -msgstr "" - -#: ../../mod/admin.php:490 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:491 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:491 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:492 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:492 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:493 -msgid "'Share' element" -msgstr "" - -#: ../../mod/admin.php:493 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:494 -msgid "Hide help entry from navigation menu" -msgstr "" - -#: ../../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 "" - -#: ../../mod/admin.php:495 -msgid "Single user instance" -msgstr "" - -#: ../../mod/admin.php:495 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "" - -#: ../../mod/admin.php:496 -msgid "Maximum image size" -msgstr "" - -#: ../../mod/admin.php:496 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:497 -msgid "Maximum image length" -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 "" - -#: ../../mod/admin.php:498 -msgid "JPEG image quality" -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 "" - -#: ../../mod/admin.php:500 -msgid "Register policy" -msgstr "" - -#: ../../mod/admin.php:501 -msgid "Maximum Daily Registrations" -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 "" - -#: ../../mod/admin.php:502 -msgid "Register text" -msgstr "" - -#: ../../mod/admin.php:502 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:503 -msgid "Accounts abandoned after x days" -msgstr "" - -#: ../../mod/admin.php:503 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:504 -msgid "Allowed friend domains" -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" -msgstr "" - -#: ../../mod/admin.php:505 -msgid "Allowed email domains" -msgstr "" - -#: ../../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 "" - -#: ../../mod/admin.php:506 -msgid "Block public" -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 "" - -#: ../../mod/admin.php:507 -msgid "Force publish" -msgstr "" - -#: ../../mod/admin.php:507 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:508 -msgid "Global directory update URL" -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 "" - -#: ../../mod/admin.php:509 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:509 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:510 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:510 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:511 -msgid "Don't include post content in email notifications" -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." -msgstr "" - -#: ../../mod/admin.php:513 -msgid "Block multiple registrations" -msgstr "" - -#: ../../mod/admin.php:513 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:514 -msgid "OpenID support" -msgstr "" - -#: ../../mod/admin.php:514 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:515 -msgid "Fullname check" -msgstr "" - -#: ../../mod/admin.php:515 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:516 -msgid "UTF-8 Regular expressions" -msgstr "" - -#: ../../mod/admin.php:516 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:517 -msgid "Show Community Page" -msgstr "" - -#: ../../mod/admin.php:517 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "" - -#: ../../mod/admin.php:518 -msgid "Enable OStatus support" -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." -msgstr "" - -#: ../../mod/admin.php:519 -msgid "Enable Diaspora support" -msgstr "" - -#: ../../mod/admin.php:519 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:520 -msgid "Only allow Friendica contacts" -msgstr "" - -#: ../../mod/admin.php:520 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:521 -msgid "Verify SSL" -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 "" - -#: ../../mod/admin.php:522 -msgid "Proxy user" -msgstr "" - -#: ../../mod/admin.php:523 -msgid "Proxy URL" -msgstr "" - -#: ../../mod/admin.php:524 -msgid "Network timeout" -msgstr "" - -#: ../../mod/admin.php:524 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../mod/admin.php:525 -msgid "Delivery interval" -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." -msgstr "" - -#: ../../mod/admin.php:526 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:526 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:527 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:527 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:529 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:529 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:530 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:531 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:531 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One " -"day)." -msgstr "" - -#: ../../mod/admin.php:532 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:533 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:534 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:552 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:562 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:565 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:569 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:572 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:587 -msgid "No failed updates." -msgstr "" - -#: ../../mod/admin.php:591 -msgid "Failed Updates" -msgstr "" - -#: ../../mod/admin.php:592 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:593 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:594 -msgid "Attempt to execute this update step automatically" -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" -msgstr "" - -#: ../../mod/admin.php:673 -#, php-format -msgid "User '%s' unblocked" -msgstr "" - -#: ../../mod/admin.php:673 -#, php-format -msgid "User '%s' blocked" -msgstr "" - -#: ../../mod/admin.php:749 -msgid "select all" -msgstr "" - -#: ../../mod/admin.php:750 -msgid "User registrations waiting for confirm" -msgstr "" - -#: ../../mod/admin.php:751 -msgid "Request date" -msgstr "" - -#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562 -#: ../../mod/settings.php:588 ../../mod/crepair.php:148 -msgid "Name" -msgstr "" - -#: ../../mod/admin.php:752 -msgid "No registrations." -msgstr "" - -#: ../../mod/admin.php:753 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "" - -#: ../../mod/admin.php:754 -msgid "Deny" -msgstr "" - -#: ../../mod/admin.php:756 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Block" -msgstr "" - -#: ../../mod/admin.php:757 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Unblock" -msgstr "" - -#: ../../mod/admin.php:758 -msgid "Site admin" -msgstr "" - -#: ../../mod/admin.php:759 -msgid "Account expired" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Register date" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Last login" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Last item" -msgstr "" - -#: ../../mod/admin.php:762 -msgid "Account" -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?" -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?" -msgstr "" - -#: ../../mod/admin.php:806 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../mod/admin.php:810 -#, php-format -msgid "Plugin %s enabled." -msgstr "" - -#: ../../mod/admin.php:820 ../../mod/admin.php:1023 -msgid "Disable" -msgstr "" - -#: ../../mod/admin.php:822 ../../mod/admin.php:1025 -msgid "Enable" -msgstr "" - -#: ../../mod/admin.php:845 ../../mod/admin.php:1053 -msgid "Toggle" -msgstr "" - -#: ../../mod/admin.php:853 ../../mod/admin.php:1063 -msgid "Author: " -msgstr "" - -#: ../../mod/admin.php:854 ../../mod/admin.php:1064 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:983 -msgid "No themes found." -msgstr "" - -#: ../../mod/admin.php:1045 -msgid "Screenshot" -msgstr "" - -#: ../../mod/admin.php:1091 -msgid "[Experimental]" -msgstr "" - -#: ../../mod/admin.php:1092 -msgid "[Unsupported]" -msgstr "" - -#: ../../mod/admin.php:1119 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1175 -msgid "Clear" -msgstr "" - -#: ../../mod/admin.php:1181 -msgid "Debugging" -msgstr "" - -#: ../../mod/admin.php:1182 -msgid "Log file" -msgstr "" - -#: ../../mod/admin.php:1182 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: ../../mod/admin.php:1183 -msgid "Log level" -msgstr "" - -#: ../../mod/admin.php:1232 ../../mod/contacts.php:409 -msgid "Update now" -msgstr "" - -#: ../../mod/admin.php:1233 -msgid "Close" -msgstr "" - -#: ../../mod/admin.php:1239 -msgid "FTP Host" -msgstr "" - -#: ../../mod/admin.php:1240 -msgid "FTP Path" -msgstr "" - -#: ../../mod/admin.php:1241 -msgid "FTP User" -msgstr "" - -#: ../../mod/admin.php:1242 -msgid "FTP Password" -msgstr "" - #: ../../mod/contacts.php:85 ../../mod/contacts.php:165 msgid "Could not access contact record." msgstr "" diff --git a/util/po2php.php b/util/po2php.php index 147c4a58d0..881a9b2679 100644 --- a/util/po2php.php +++ b/util/po2php.php @@ -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"; } diff --git a/util/run_xgettext.sh b/util/run_xgettext.sh index 6ea603c83c..554bba8472 100755 --- a/util/run_xgettext.sh +++ b/util/run_xgettext.sh @@ -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 "; 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 , 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 , 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 , 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." diff --git a/view/admin_site.tpl b/view/admin_site.tpl index 20a0839fee..0d3d451b1c 100644 --- a/view/admin_site.tpl +++ b/view/admin_site.tpl @@ -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 }}

$advanced

diff --git a/view/ca/strings.php b/view/ca/strings.php index f1da4762e2..31e3e7e223 100644 --- a/view/ca/strings.php +++ b/view/ca/strings.php @@ -1,8 +1,9 @@ strings["Post successful."] = "Publicat amb éxit."; $a->strings["[Embedded content - reload page to view]"] = "[Contingut embegut - recarrega la pàgina per a veure-ho]"; diff --git a/view/cs/strings.php b/view/cs/strings.php index 89d81837f0..c3ddcc6853 100644 --- a/view/cs/strings.php +++ b/view/cs/strings.php @@ -1,8 +1,9 @@ =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í]"; diff --git a/view/de/messages.po b/view/de/messages.po index 7ab0dc7eee..fa7ae41fea 100644 --- a/view/de/messages.po +++ b/view/de/messages.po @@ -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 @@ # , 2012. # , 2012. # Hauke Zühl , 2012. -# , 2011, 2012. +# , 2011-2012. # , 2012. # , 2012. # Martin Schmitt , 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 \n" "Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -35,4388 +35,444 @@ 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." +#: ../../object/Item.php:106 ../../mod/photos.php:1351 +#: ../../mod/content.php:643 +msgid "Private Message" +msgstr "Private Nachricht" -#: ../../addon.old/altpager/altpager.php:79 -#: ../../addon/altpager/altpager.php:83 -msgid "Alternate Pagination Setting" -msgstr "Alternative Seitenumbruch Einstellung" +#: ../../object/Item.php:110 ../../mod/editpost.php:109 +#: ../../mod/settings.php:622 ../../mod/content.php:751 +msgid "Edit" +msgstr "Bearbeiten" -#: ../../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?" +#: ../../object/Item.php:119 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../include/conversation.php:587 +msgid "Select" +msgstr "Auswählen" -#: ../../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" +#: ../../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/bg/bg.php:51 -msgid "Bg settings updated." -msgstr "Bg Einstellungen sind aktualisiert." +#: ../../object/Item.php:123 ../../mod/content.php:786 +msgid "save to folder" +msgstr "In Ordner speichern" -#: ../../addon.old/bg/bg.php:82 -msgid "Bg Settings" -msgstr "Bg Einstellungen" +#: ../../object/Item.php:202 ../../mod/content.php:776 +msgid "add star" +msgstr "markieren" -#: ../../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" +#: ../../object/Item.php:203 ../../mod/content.php:777 +msgid "remove star" +msgstr "Markierung entfernen" -#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "\"Blockem\"-Einstellungen" +#: ../../object/Item.php:204 ../../mod/content.php:778 +msgid "toggle star status" +msgstr "Markierung umschalten" -#: ../../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)" +#: ../../object/Item.php:207 ../../mod/content.php:781 +msgid "starred" +msgstr "markiert" -#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "BLOCKEM-Einstellungen gesichert." +#: ../../object/Item.php:212 ../../mod/content.php:782 +msgid "add tag" +msgstr "Tag hinzufügen" -#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105 +#: ../../object/Item.php:223 ../../mod/photos.php:1529 +#: ../../mod/content.php:707 +msgid "I like this (toggle)" +msgstr "Ich mag das (toggle)" + +#: ../../object/Item.php:223 ../../mod/content.php:707 +msgid "like" +msgstr "mag ich" + +#: ../../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)" + +#: ../../object/Item.php:224 ../../mod/content.php:708 +msgid "dislike" +msgstr "mag ich nicht" + +#: ../../object/Item.php:226 ../../mod/content.php:710 +msgid "Share this" +msgstr "Weitersagen" + +#: ../../object/Item.php:226 ../../mod/content.php:710 +msgid "share" +msgstr "Teilen" + +#: ../../object/Item.php:288 ../../include/conversation.php:639 +msgid "Categories:" +msgstr "Kategorien" + +#: ../../object/Item.php:289 ../../include/conversation.php:640 +msgid "Filed under:" +msgstr "Abgelegt unter:" + +#: ../../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 "Blocked %s - Click to open/close" -msgstr "%s blockiert - Zum Öffnen/Schließen klicken" +msgid "View %s's profile @ %s" +msgstr "Das Profil von %s auf %s betrachten." -#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "Autor freischalten" +#: ../../object/Item.php:299 ../../mod/content.php:877 +msgid "to" +msgstr "zu" -#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162 -msgid "Block Author" -msgstr "Autor blockieren" +#: ../../object/Item.php:300 +msgid "via" +msgstr "via" -#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "blockem Einstellungen aktualisiert" +#: ../../object/Item.php:301 ../../mod/content.php:878 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" -#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42 -msgid "Post to blogger" -msgstr "Auf Blogger posten" +#: ../../object/Item.php:302 ../../mod/content.php:879 +msgid "via Wall-To-Wall:" +msgstr "via Wall-To-Wall:" -#: ../../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 +#: ../../object/Item.php:311 ../../mod/content.php:505 +#: ../../mod/content.php:887 ../../include/conversation.php:647 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s mag %2$ss %3$s" +msgid "%s from %s" +msgstr "%s von %s" -#: ../../addon.old/communityhome/communityhome.php:179 -#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34 +#: ../../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" + +#: ../../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" + +#: ../../object/Item.php:352 ../../mod/content.php:626 #, php-format -msgid "Welcome to %s" -msgstr "Willkommen zu %s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d Kommentar" +msgstr[1] "%d Kommentare" -#: ../../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:" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "Beginnt" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -msgstr "Endet" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "Beschreibung" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "Wiederholungen:" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -msgstr "Frequenz" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -msgstr "Jährlich" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "E-Mail" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "Zeit" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "Stunden" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "Minuten" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "Sekunden" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "Wochen" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/friendica/layout.fnk.php:228 -#: ../../addon/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "Neue Veranstaltung" - -#: ../../addon.old/dav/friendica/layout.fnk.php:232 -#: ../../addon/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "Heute" - -#: ../../addon.old/dav/friendica/layout.fnk.php:241 -#: ../../addon/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "Tag" - -#: ../../addon.old/dav/friendica/layout.fnk.php:248 -#: ../../addon/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "Woche" - -#: ../../addon.old/dav/friendica/layout.fnk.php:260 -#: ../../addon/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "Neu Laden" - -#: ../../addon.old/dav/friendica/layout.fnk.php:263 -#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372 -msgid "Previous" -msgstr "Vorherige" - -#: ../../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" - -#: ../../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 -#: ../../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 "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" - -#: ../../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" - -#: ../../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 should 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 sollten 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." - -#: ../../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 profile wall and your friend" -" stream." -msgstr "Facebook-Konversationen bestehen aus deinen Beiträgen auf deinerPinnwand, sowie den Beiträgen deiner Freunde Stream." - -#: ../../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" - -#: ../../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.

" -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.

" - -#: ../../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" - -#: ../../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.
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.
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!
Please add at least the " -"owner 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.
Bitte gebe mindestens den Betreiber 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 not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "Füge das Jappix Mini Chat Widget nicht 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" - -#: ../../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.
It requires PHP >= 5.3" -msgstr "Kann Libravatar NICHT erfolgreich installieren.
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.
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.
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 public tile servers" -msgstr "Eine Liste öffentlicher Tile Server" - -#: ../../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" - -#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166 -msgid "Page settings updated." -msgstr "Seiteneinstellungen aktualisiert." - -#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195 -msgid "Page Settings" -msgstr "Seiteneinstellungen" - -#: ../../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" - -#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200 -msgid "Randomise Page/Forum list" -msgstr "Zufällige Seiten/Foren Liste" - -#: ../../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" - -#: ../../addon.old/pageheader/pageheader.php:50 -#: ../../addon/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "\"pageheader\"-Einstellungen" - -#: ../../addon.old/pageheader/pageheader.php:68 -#: ../../addon/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "pageheader-Einstellungen gespeichert." - -#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Diese Website benutzt Piwik, 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 can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du ein Cookie setzen. 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" - -#: ../../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?" - -#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "Asynchrones Tracken" - -#: ../../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: "network" or "notifications/system"" -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.
The provided API URL is not " -"valid." -msgstr "Bitte kontaktiere den Administrator des Servers.
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.
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.
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 public 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 öffentlichen 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 public 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 öffentlichen 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 "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) 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" - -#: ../../addon.old/statusnet/statusnet.php:568 -#: ../../addon/statusnet/statusnet.php:745 -msgid "API URL" -msgstr "API-URL" - -#: ../../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" - -#: ../../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" - -#: ../../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." - -#: ../../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 "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" - -#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" - -#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58 -msgid "New game" -msgstr "Neues Spiel" - -#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "Neues Handicap Spiel" - -#: ../../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." - -#: ../../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." - -#: ../../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 "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" - -#: ../../addon.old/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "Tumblr Passwort" - -#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197 -msgid "Post to Tumblr by default" -msgstr "Standardmäßig bei Tumblr veröffentlichen" - -#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77 -msgid "Post to Twitter" -msgstr "Bei Twitter veröffentlichen" - -#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129 -msgid "Twitter settings updated." -msgstr "Twitter Einstellungen aktualisiert." - -#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157 -msgid "Twitter Posting Settings" -msgstr "Twitter-Beitragseinstellungen" - -#: ../../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." - -#: ../../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 public 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 öffentliche 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" - -#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201 -msgid "" -"If enabled all your public 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 öffentlichen 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." - -#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) 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" - -#: ../../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" - -#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558 -msgid "Consumer key" -msgstr "Consumer Key" - -#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559 -msgid "Consumer secret" -msgstr "Consumer Secret" - -#: ../../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 RemoteStorage" -" WebFinger" -msgstr "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe RemoteStorage WebFinger" - -#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "Vorlagen URL (mit {Kategorie})" - -#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "OAuth Endpunkt" - -#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "Api" - -#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39 -msgid "View Source" -msgstr "Quelle ansehen" - -#: ../../addon.old/widgets/widget_friendheader.php:40 -#: ../../addon/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "Werde Mitglied dieser Liste" - -#: ../../addon.old/widgets/widget_friends.php:40 -#: ../../addon/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "In Friendica verbinden!" - -#: ../../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 Person mag das" -msgstr[1] "%d Leute mögen das" - -#: ../../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" - -#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57 -msgid "Generate new key" -msgstr "Neuen Schlüssel erstellen" - -#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60 -msgid "Widgets key" -msgstr "Widgets Schlüssel" - -#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62 -msgid "Widgets available" -msgstr "Verfügbare Widgets" - -#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124 -#: ../../mod/settings.php:646 -msgid "Plugin Settings" -msgstr "Plugin-Einstellungen" - -#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "Bei WordPress veröffentlichen" - -#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "WordPress-Beitragseinstellungen" - -#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "WordPress-Plugin aktivieren." - -#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "WordPress-Benutzername" - -#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "WordPress-Passwort" - -#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "WordPress-API-URL" - -#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "Standardmäßig auf WordPress veröffentlichen" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "YourLS Einstellungen" - -#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "URL: http://" - -#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62 -msgid "Username:" -msgstr "Nutzername:" - -#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67 -msgid "Password:" -msgstr "Passwort:" - -#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "SSL Verwenden " - -#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "yourls Einstellungen gespeichert" - -#: ../../addon/altpager/altpager.php:99 -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "Global" -msgstr "Global" - -#: ../../addon/altpager/altpager.php:99 -msgid "Force global use of the alternate pager" -msgstr "Erzwinge die Verwendung des \"Alternate Pager\" auf diesem Server" - -#: ../../addon/altpager/altpager.php:100 -#: ../../addon/remote_permissions/remote_permissions.php:198 -msgid "Individual" -msgstr "Individuell" - -#: ../../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" - -#: ../../addon/fbpost/fbpost.php:239 -msgid "Suppress \"View on friendica\"" -msgstr "Unterdrücke \"Auf Friendica Ansehen\"" - -#: ../../addon/fbpost/fbpost.php:243 -msgid "Mirror wall posts from facebook to friendica." -msgstr "Spiegle Pinnwandeinträge von Facebook auf friendica" - -#: ../../addon/fbpost/fbpost.php:253 -msgid "Post to page/group:" -msgstr "Auf FB Seite/Gruppe veröffentlichen" - -#: ../../addon/fbpost/fbpost.php:375 -#, php-format -msgid "%s:" -msgstr "%s:" - -#: ../../addon/forumdirectory/forumdirectory.php:22 -msgid "Forum Directory" -msgstr "Foren Verzeichnis" - -#: ../../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." - -#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49 -#: ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Weltweites Verzeichnis" - -#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Auf diesem Server suchen" - -#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612 -#: ../../mod/directory.php:59 -msgid "Finding: " -msgstr "Funde: " - -#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Verzeichnis" - -#: ../../addon/forumdirectory/forumdirectory.php:83 -#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 -#: ../../mod/directory.php:61 -msgid "Find" -msgstr "Finde" - -#: ../../addon/forumdirectory/forumdirectory.php:133 -#: ../../mod/profiles.php:682 ../../mod/directory.php:111 -msgid "Age: " -msgstr "Alter: " - -#: ../../addon/forumdirectory/forumdirectory.php:136 -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Geschlecht:" - -#: ../../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:" - -#: ../../addon/forumdirectory/forumdirectory.php:158 -#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 -#: ../../boot.php:1408 -msgid "Gender:" -msgstr "Geschlecht:" - -#: ../../addon/forumdirectory/forumdirectory.php:160 -#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 -#: ../../boot.php:1411 -msgid "Status:" -msgstr "Status:" - -#: ../../addon/forumdirectory/forumdirectory.php:162 -#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 -#: ../../boot.php:1413 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../addon/forumdirectory/forumdirectory.php:164 -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 -msgid "About:" -msgstr "Über:" - -#: ../../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)." - -#: ../../addon/group_text/group_text.php:46 -msgid "Group Text settings updated." -msgstr "Gruppen Text Einstellungen aktualisiert" - -#: ../../addon/remote_permissions/remote_permissions.php:45 -msgid "Remote Permissions Settings" -msgstr "Entfernte Privatsphäreneinstellungen" - -#: ../../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" - -#: ../../addon/remote_permissions/remote_permissions.php:58 -msgid "Remote Permissions settings updated." -msgstr "Entfernte Privatsphäreneinstellungen aktualisiert." - -#: ../../addon/remote_permissions/remote_permissions.php:124 -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Sichtbar für:" - -#: ../../addon/remote_permissions/remote_permissions.php:178 -msgid "Visible to" -msgstr "Sichtbar für" - -#: ../../addon/remote_permissions/remote_permissions.php:178 -msgid "may only be a partial list" -msgstr "könnte nur ein Teil der Liste sein" - -#: ../../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" - -#: ../../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" - -#: ../../addon/statusnet/statusnet.php:358 -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" - -#: ../../addon/statusnet/statusnet.php:362 -msgid "Shortening method that optimizes the post" -msgstr "Kürzungsverfahren, das den Beitrag optimiert" - -#: ../../addon/tumblr/tumblr.php:144 -msgid "You are now authenticated to tumblr." -msgstr "Du bist nun auf tumblr authentifiziert." - -#: ../../addon/tumblr/tumblr.php:145 -msgid "return to the connector page" -msgstr "zurück zur Connector Seite" - -#: ../../addon/tumblr/tumblr.php:188 -msgid "(Re-)Authenticate your tumblr page" -msgstr "(Re-)Authentifizierung deiner tumblr Seite" - -#: ../../addon/tumblr/tumblr.php:217 -msgid "Post to page:" -msgstr "Auf tumblr veröffentlichen" - -#: ../../addon/tumblr/tumblr.php:228 -msgid "You are not authenticated to tumblr" -msgstr "Du bist gegenüber tumblr nicht authentifiziert" - -#: ../../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" - -#: ../../addon/twitter/twitter.php:217 -msgid "Shortening method that optimizes the tweet" -msgstr "Kürzungsverfahren, das den Tweet optimiert" - -#: ../../addon/twitter/twitter.php:560 -msgid "Name of the Twitter Application" -msgstr "Name der Twitter Anwendung" - -#: ../../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" - -#: ../../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" - -#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050 -msgid "Full Name:" -msgstr "Kompletter Name:" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Geburtstag:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Alter:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "für %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646 -msgid "Sexual Preference:" -msgstr "Sexuelle Vorlieben:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648 -msgid "Hometown:" -msgstr "Heimatort:" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tags" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649 -msgid "Political Views:" -msgstr "Politische Ansichten:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religion:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobbies/Interessen:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653 -msgid "Likes:" -msgstr "Likes:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654 -msgid "Dislikes:" -msgstr "Dislikes:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformationen und Soziale Netzwerke:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Literatur/Bücher:" - -#: ../../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:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Liebesleben:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Arbeit/Beschäftigung:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Schule/Ausbildung:" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momentan männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momentan weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Hauptsächlich männlich" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Hauptsächlich weiblich" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transsexuell" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermaphrodit" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neuter" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Nicht spezifiziert" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Andere" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Unentschieden" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Männer" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Frauen" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Schwul" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbisch" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Keine Vorlieben" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisexuell" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosexual" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Abstinent" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Jungfrauen" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviant" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Oodles" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Nonsexual" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Einsam" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Verfügbar" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Nicht verfügbar" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "verknallt" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "verliebt" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Dating" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Untreu" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sexbesessen" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:279 -#: ../../include/user.php:283 -msgid "Friends" -msgstr "Freunde" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Freunde/Zuwendungen" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Verlobt" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Verheiratet" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "imaginär verheiratet" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partner" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "zusammenlebend" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "wilde Ehe" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Glücklich" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "Nicht auf der Suche" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Betrogen" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Getrennt" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Unstabil" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "imaginär geschieden" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Verwitwet" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Unsicher" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "Ist kompliziert" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Ist mir nicht wichtig" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Frag mich" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "wird nicht mehr gefolgt" - -#: ../../include/Contact.php:225 ../../include/conversation.php:838 -msgid "Poke" -msgstr "Anstupsen" - -#: ../../include/Contact.php:226 ../../include/conversation.php:832 -msgid "View Status" -msgstr "Pinnwand anschauen" - -#: ../../include/Contact.php:227 ../../include/conversation.php:833 -msgid "View Profile" -msgstr "Profil anschauen" - -#: ../../include/Contact.php:228 ../../include/conversation.php:834 -msgid "View Photos" -msgstr "Bilder anschauen" - -#: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:835 -msgid "Network Posts" -msgstr "Netzwerkbeiträge" - -#: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:836 -msgid "Edit Contact" -msgstr "Kontakt bearbeiten" - -#: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:837 -msgid "Send PM" -msgstr "Private Nachricht senden" - -#: ../../include/text.php:276 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:278 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:307 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:310 -msgid "next" -msgstr "nächste" - -#: ../../include/text.php:328 -msgid "newer" -msgstr "neuer" - -#: ../../include/text.php:332 -msgid "older" -msgstr "älter" - -#: ../../include/text.php:697 -msgid "No contacts" -msgstr "Keine Kontakte" - -#: ../../include/text.php:706 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d Kontakt" -msgstr[1] "%d Kontakte" - -#: ../../include/text.php:718 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Kontakte anzeigen" - -#: ../../include/text.php:778 ../../include/text.php:779 -#: ../../include/nav.php:118 ../../mod/search.php:99 -msgid "Search" -msgstr "Suche" - -#: ../../include/text.php:819 -msgid "poke" -msgstr "anstupsen" - -#: ../../include/text.php:819 ../../include/conversation.php:211 -msgid "poked" -msgstr "stupste" - -#: ../../include/text.php:820 -msgid "ping" -msgstr "anpingen" - -#: ../../include/text.php:820 -msgid "pinged" -msgstr "pingte" - -#: ../../include/text.php:821 -msgid "prod" -msgstr "knuffen" - -#: ../../include/text.php:821 -msgid "prodded" -msgstr "knuffte" - -#: ../../include/text.php:822 -msgid "slap" -msgstr "ohrfeigen" - -#: ../../include/text.php:822 -msgid "slapped" -msgstr "ohrfeigte" - -#: ../../include/text.php:823 -msgid "finger" -msgstr "befummeln" - -#: ../../include/text.php:823 -msgid "fingered" -msgstr "befummelte" - -#: ../../include/text.php:824 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" - -#: ../../include/text.php:824 -msgid "rebuffed" -msgstr "abfuhrerteilte" - -#: ../../include/text.php:836 -msgid "happy" -msgstr "glücklich" - -#: ../../include/text.php:837 -msgid "sad" -msgstr "traurig" - -#: ../../include/text.php:838 -msgid "mellow" -msgstr "sanft" - -#: ../../include/text.php:839 -msgid "tired" -msgstr "müde" - -#: ../../include/text.php:840 -msgid "perky" -msgstr "frech" - -#: ../../include/text.php:841 -msgid "angry" -msgstr "sauer" - -#: ../../include/text.php:842 -msgid "stupified" -msgstr "verblüfft" - -#: ../../include/text.php:843 -msgid "puzzled" -msgstr "verwirrt" - -#: ../../include/text.php:844 -msgid "interested" -msgstr "interessiert" - -#: ../../include/text.php:845 -msgid "bitter" -msgstr "verbittert" - -#: ../../include/text.php:846 -msgid "cheerful" -msgstr "fröhlich" - -#: ../../include/text.php:847 -msgid "alive" -msgstr "lebendig" - -#: ../../include/text.php:848 -msgid "annoyed" -msgstr "verärgert" - -#: ../../include/text.php:849 -msgid "anxious" -msgstr "unruhig" - -#: ../../include/text.php:850 -msgid "cranky" -msgstr "schrullig" - -#: ../../include/text.php:851 -msgid "disturbed" -msgstr "verstört" - -#: ../../include/text.php:852 -msgid "frustrated" -msgstr "frustriert" - -#: ../../include/text.php:853 -msgid "motivated" -msgstr "motiviert" - -#: ../../include/text.php:854 -msgid "relaxed" -msgstr "entspannt" - -#: ../../include/text.php:855 -msgid "surprised" -msgstr "überrascht" - -#: ../../include/text.php:1019 -msgid "January" -msgstr "Januar" - -#: ../../include/text.php:1019 -msgid "February" -msgstr "Februar" - -#: ../../include/text.php:1019 -msgid "March" -msgstr "März" - -#: ../../include/text.php:1019 -msgid "April" -msgstr "April" - -#: ../../include/text.php:1019 -msgid "May" -msgstr "Mai" - -#: ../../include/text.php:1019 -msgid "June" -msgstr "Juni" - -#: ../../include/text.php:1019 -msgid "July" -msgstr "Juli" - -#: ../../include/text.php:1019 -msgid "August" -msgstr "August" - -#: ../../include/text.php:1019 -msgid "September" -msgstr "September" - -#: ../../include/text.php:1019 -msgid "October" -msgstr "Oktober" - -#: ../../include/text.php:1019 -msgid "November" -msgstr "November" - -#: ../../include/text.php:1019 -msgid "December" -msgstr "Dezember" - -#: ../../include/text.php:1124 -msgid "bytes" -msgstr "Byte" - -#: ../../include/text.php:1151 ../../include/text.php:1163 -msgid "Click to open/close" -msgstr "Zum öffnen/schließen klicken" - -#: ../../include/text.php:1304 ../../mod/events.php:335 -msgid "link to source" -msgstr "Link zum Originalbeitrag" - -#: ../../include/text.php:1336 ../../include/user.php:237 -msgid "default" -msgstr "Standard" - -#: ../../include/text.php:1348 -msgid "Select an alternate language" -msgstr "Alternative Sprache auswählen" - -#: ../../include/text.php:1558 -msgid "activity" -msgstr "Aktivität" - -#: ../../include/text.php:1560 ../../mod/content.php:628 #: ../../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" -#: ../../include/text.php:1561 -msgid "post" -msgstr "Beitrag" +#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652 +#: ../../include/contact_widgets.php:204 +msgid "show more" +msgstr "mehr anzeigen" -#: ../../include/text.php:1716 -msgid "Item filed" -msgstr "Beitrag abgelegt" +#: ../../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" -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../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" -#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "show" -msgstr "zeigen" +#: ../../object/Item.php:644 ../../mod/content.php:734 +msgid "Bold" +msgstr "Fett" -#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "don't show" -msgstr "nicht zeigen" +#: ../../object/Item.php:645 ../../mod/content.php:735 +msgid "Italic" +msgstr "Kursiv" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Abgemeldet." +#: ../../object/Item.php:646 ../../mod/content.php:736 +msgid "Underline" +msgstr "Unterstrichen" -#: ../../include/auth.php:112 ../../include/auth.php:175 -#: ../../mod/openid.php:93 -msgid "Login failed." -msgstr "Anmeldung fehlgeschlagen." +#: ../../object/Item.php:647 ../../mod/content.php:737 +msgid "Quote" +msgstr "Zitat" -#: ../../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." +#: ../../object/Item.php:648 ../../mod/content.php:738 +msgid "Code" +msgstr "Code" -#: ../../include/auth.php:128 -msgid "The error message was:" -msgstr "Die Fehlermeldung lautete:" +#: ../../object/Item.php:649 ../../mod/content.php:739 +msgid "Image" +msgstr "Bild" -#: ../../include/uimport.php:61 -msgid "Error decoding account file" -msgstr "Fehler beim Verarbeiten der Account Datei" +#: ../../object/Item.php:650 ../../mod/content.php:740 +msgid "Link" +msgstr "Verweis" -#: ../../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?" +#: ../../object/Item.php:651 ../../mod/content.php:741 +msgid "Video" +msgstr "Video" -#: ../../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." +#: ../../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" -#: ../../include/uimport.php:81 -msgid "Error! Cannot check nickname" -msgstr "Fehler! Konnte den Nickname nicht überprüfen." +#: ../../index.php:227 ../../mod/help.php:90 +msgid "Not Found" +msgstr "Nicht gefunden" -#: ../../include/uimport.php:85 +#: ../../index.php:230 ../../mod/help.php:93 +msgid "Page not found." +msgstr "Seite nicht gefunden." + +#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72 +msgid "Permission denied" +msgstr "Zugriff verweigert" + +#: ../../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 "Zugriff verweigert." + +#: ../../index.php:401 +msgid "toggle mobile" +msgstr "auf/von Mobile Ansicht wechseln" + +#: ../../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]" + +#: ../../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." + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Kontaktvorschlag gesendet." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Kontakte vorschlagen" + +#: ../../mod/fsuggest.php:99 #, php-format -msgid "User '%s' already exists on this server!" -msgstr "Nutzer '%s' existiert bereits auf diesem Server!" +msgid "Suggest a friend for %s" +msgstr "Schlage %s einen Kontakt vor" -#: ../../include/uimport.php:104 -msgid "User creation error" -msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." -#: ../../include/uimport.php:122 -msgid "User profile creation error" -msgstr "Fehler beim Anlegen des Nutzerkontos" +#: ../../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." -#: ../../include/uimport.php:167 +#: ../../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 contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d Kontakt nicht importiert" -msgstr[1] "%d Kontakte nicht importiert" +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" -#: ../../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/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Kontaktanfrage abgeschlossen." -#: ../../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/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Nicht behebbarer Protokollfehler." -#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 -msgid "Starts:" -msgstr "Beginnt:" +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil nicht verfügbar." -#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Endet:" +#: ../../mod/dfrn_request.php:262 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Maßnahmen zum Spamschutz wurden ergriffen." + +#: ../../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." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Ungültiger Locator" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Ungültige E-Mail Adresse." + +#: ../../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." + +#: ../../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." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Du hast dich hier bereits vorgestellt." + +#: ../../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." + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Ungültige Profil-URL." + +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "Connect-URL fehlt" +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 +msgid "Failed to update contact record." +msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." -#: ../../include/follow.php:59 +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Deine Kontaktanfrage wurde gesendet." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." + +#: ../../mod/dfrn_request.php:659 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." +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." -#: ../../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/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Verberge diesen Kontakt" -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Es wurde kein Autor oder Name gefunden." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Konnte die Kontaktinformationen nicht empfangen." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "folgen" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "Du benötigst eine Einladung." - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht überprüft werden." - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Ungültige OpenID URL" - -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "Bitte trage die erforderlichen Informationen ein." - -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "Bitte verwende einen kürzeren Namen." - -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "Der Name ist zu kurz." - -#: ../../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." - -#: ../../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." - -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "Keine gültige E-Mail-Adresse." - -#: ../../include/user.php:116 -msgid "Cannot use that email." -msgstr "Konnte diese E-Mail-Adresse nicht verwenden." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." - -#: ../../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." - -#: ../../include/user.php:247 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Unbekannt | Nicht kategorisiert" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Sofort blockieren" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Zwielichtig, Spammer, Selbstdarsteller" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Ist mir bekannt, hab aber keine Meinung" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "OK, wahrscheinlich harmlos" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Seriös, hat mein Vertrauen" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "immer wieder" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Stündlich" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Zweimal täglich" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747 -#: ../../mod/admin.php:757 -msgid "Email" -msgstr "E-Mail" - -#: ../../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 "Zott" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/Chat" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Neuen Kontakt hinzufügen" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Adresse oder Web-Link eingeben" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Beispiel: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 -#: ../../mod/match.php:58 ../../boot.php:1338 -msgid "Connect" -msgstr "Verbinden" - -#: ../../include/contact_widgets.php:23 +#: ../../mod/dfrn_request.php:673 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +msgid "Welcome home %s." +msgstr "Willkommen zurück %s." -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Leute finden" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiel: Robert Morgenstein, Angeln" - -#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 -#: ../../view/theme/diabook/theme.php:520 -msgid "Friend Suggestions" -msgstr "Kontaktvorschläge" - -#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 -msgid "Similar Interests" -msgstr "Ähnliche Interessen" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Zufälliges Profil" - -#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 -msgid "Invite Friends" -msgstr "Freunde einladen" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Netzwerke" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Alle Netzwerke" - -#: ../../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_request.php:674 #, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d gemeinsamer Kontakt" -msgstr[1] "%d gemeinsame Kontakte" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Bitte bestätige deine Kontaktanfrage bei %s." -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr " bei Last.fm" +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Bestätigen" -#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 -msgid "Image/photo" -msgstr "Bild/Foto" - -#: ../../include/bbcode.php:272 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s schrieb den folgenden Beitrag" - -#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 -msgid "$1 wrote:" -msgstr "$1 hat geschrieben:" - -#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Verschiedenes" - -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "Jahr" - -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "Monat" - -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "Tag" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "nie" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "vor weniger als einer Sekunde" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "Woche" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "Stunde" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "Stunden" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "Minute" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "Minuten" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "Sekunde" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "Sekunden" - -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s her" - -#: ../../include/datetime.php:472 ../../include/items.php:1764 -#, php-format -msgid "%s's birthday" -msgstr "%ss Geburtstag" - -#: ../../include/datetime.php:473 ../../include/items.php:1765 -#, php-format -msgid "Happy Birthday %s" -msgstr "Herzlichen Glückwunsch %s" - -#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439 msgid "[Name Withheld]" msgstr "[Name unterdrückt]" -#: ../../include/items.php:3446 -msgid "A new person is sharing with you at " -msgstr "Eine neue Person teilt mit dir auf " +#: ../../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." -#: ../../include/items.php:3446 -msgid "You have a new follower at " -msgstr "Du hast einen neuen Kontakt auf " +#: ../../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:" -#: ../../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/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)" -#: ../../include/items.php:3965 -msgid "Do you really want to delete this item?" -msgstr "Möchtest du wirklich dieses Item löschen?" +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." -#: ../../include/items.php:3967 ../../mod/profiles.php:606 +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Freundschafts-/Kontaktanfrage" + +#: ../../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" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Bitte beantworte Folgendes:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "Kennt %s dich?" + +#: ../../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 @@ -4424,1362 +480,367 @@ msgstr "Möchtest du wirklich dieses Item löschen?" #: ../../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 +#: ../../mod/settings.php:1009 ../../mod/profiles.php:606 +#: ../../mod/suggest.php:29 ../../include/items.php:3967 msgid "Yes" msgstr "Ja" -#: ../../include/items.php:4160 -msgid "Archives" -msgstr "Archiv" +#: ../../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" -#: ../../include/plugin.php:439 ../../include/plugin.php:441 -msgid "Click here to upgrade." -msgstr "Zum Upgraden hier klicken." +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Eine persönliche Notiz beifügen:" -#: ../../include/plugin.php:447 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../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/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "(kein Betreff)" +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../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 ist nun mit %2$s befreundet" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Freigabe-Benachrichtigung von Diaspora" - -#: ../../include/diaspora.php:2262 -msgid "Attachments:" -msgstr "Anhänge:" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Friendica-Benachrichtigung" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Danke," - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" - -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" - -#: ../../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." - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s schickte dir %2$s." - -#: ../../include/enotify.php:47 -msgid "a private message" -msgstr "eine private Nachricht" - -#: ../../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." - -#: ../../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]" - -#: ../../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]" - -#: ../../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]" - -#: ../../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" - -#: ../../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." - -#: ../../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." - -#: ../../include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben" - -#: ../../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" - -#: ../../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" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica-Meldung] %s hat dich erwähnt" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s erwähnte dich auf %2$s" - -#: ../../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]." - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica-Meldung] %1$s hat dich angestupst" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "%1$s hat dich auf %2$s angestupst" - -#: ../../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]." - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt" - -#: ../../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" - -#: ../../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]" - -#: ../../include/enotify.php:185 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" - -#: ../../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" - -#: ../../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." - -#: ../../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" - -#: ../../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." - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" - -#: ../../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" - -#: ../../include/enotify.php:201 +#: ../../mod/dfrn_request.php:843 #, 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." +" - 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." -#: ../../include/enotify.php:206 -msgid "Name:" -msgstr "Name:" +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Adresse deines Profils:" -#: ../../include/enotify.php:207 -msgid "Photo:" -msgstr "Foto:" +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Anfrage abschicken" -#: ../../include/enotify.php:210 +#: ../../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" + +#: ../../mod/profile.php:21 ../../boot.php:1246 +msgid "Requested profile is not available." +msgstr "Das angefragte Profil ist nicht vorhanden." + +#: ../../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." + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Tipps für neue Nutzer" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Invalid request identifier." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Verwerfen" + +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 +#: ../../mod/contacts.php:413 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: ../../mod/notifications.php:83 ../../include/nav.php:140 +msgid "Network" +msgstr "Netzwerk" + +#: ../../mod/notifications.php:88 ../../mod/network.php:444 +msgid "Personal" +msgstr "Persönlich" + +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +#: ../../include/nav.php:104 ../../include/nav.php:143 +msgid "Home" +msgstr "Pinnwand" + +#: ../../mod/notifications.php:98 ../../include/nav.php:149 +msgid "Introductions" +msgstr "Kontaktanfragen" + +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:156 +msgid "Messages" +msgstr "Nachrichten" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Zeige ignorierte Anfragen" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Verberge ignorierte Anfragen" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Benachrichtigungstyp: " + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Kontaktvorschlag" + +#: ../../mod/notifications.php:152 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s, um den Vorschlag zu akzeptieren oder abzulehnen." +msgid "suggested by %s" +msgstr "vorgeschlagen von %s" -#: ../../include/features.php:23 -msgid "General Features" -msgstr "Allgemeine Features" +#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:419 +msgid "Hide this contact from others" +msgstr "Verberge diesen Kontakt vor anderen" -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "Mehrere Profile" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "Neue-Kontakt Nachricht senden" -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "Möglichkeit mehrere Profile zu erstellen" +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "falls anwendbar" -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "Beitragserstellung Features" +#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:753 +msgid "Approve" +msgstr "Genehmigen" -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "Web-Editor" +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Behauptet dich zu kennen: " -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "Den Web-Editor für neue Beiträge aktivieren" +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "ja" -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "Beitragsvorschau" +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nein" -#: ../../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/notifications.php:188 +msgid "Approve as: " +msgstr "Genehmigen als: " -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "Widgets für Netzwerk und Seitenleiste" +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Freund" -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Archiv" +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "Teilenden" -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan/Verehrer" -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "Gruppen Filter" +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Kontakt-/Freundschaftsanfrage" -#: ../../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/notifications.php:196 +msgid "New Follower" +msgstr "Neuer Bewunderer" -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "Netzwerk Filter" +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Keine Kontaktanfragen." -#: ../../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/notifications.php:220 ../../include/nav.php:150 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../include/features.php:41 ../../mod/search.php:30 -#: ../../mod/network.php:233 -msgid "Saved Searches" -msgstr "Gespeicherte Suchen" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "Speichere Suchanfragen für spätere Wiederholung." - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "Netzwerk Reiter" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "Netzwerk-Reiter: Persönlich" - -#: ../../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" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "Netzwerk-Reiter: Neue" - -#: ../../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" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "Netzwerk-Reiter: Geteilte Links" - -#: ../../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" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "Werkzeuge für Beiträge und Kommentare" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "Mehrere Beiträge löschen" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "Gesendete Beiträge editieren" - -#: ../../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." - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "Tagging" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "Beitragskategorien" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "Eigene Beiträge mit Kategorien versehen" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "Beiträge in Ordnern speichern aktivieren" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "Beiträge 'nicht mögen'" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "Beiträge Markieren" - -#: ../../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" - -#: ../../include/dba.php:44 +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kann die DNS Informationen für den Datenbankserver '%s' nicht ermitteln." +msgid "%s liked %s's post" +msgstr "%s mag %ss Beitrag" -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may 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 könnten auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen." +#: ../../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/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Voreingestellte Gruppe für neue Kontakte" +#: ../../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/group.php:226 -msgid "Everybody" -msgstr "Alle Kontakte" +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s hat einen neuen Beitrag erstellt" -#: ../../include/group.php:249 -msgid "edit" -msgstr "bearbeiten" +#: ../../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/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Gruppen" +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Keine weiteren Netzwerk-Benachrichtigungen." -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Gruppe bearbeiten" +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Netzwerk Benachrichtigungen" -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Neue Gruppe erstellen" +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Keine weiteren Systembenachrichtigungen." -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakte in keiner Gruppe" +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Systembenachrichtigungen" -#: ../../include/group.php:275 ../../mod/network.php:234 -msgid "add" -msgstr "hinzufügen" +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Keine weiteren persönlichen Benachrichtigungen" -#: ../../include/conversation.php:140 ../../mod/like.php:170 +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Persönliche Benachrichtigungen" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Keine weiteren Pinnwand-Benachrichtigungen" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Pinnwand Benachrichtigungen" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../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" -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s" +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: ../../include/conversation.php:227 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s ist momentan %2$s" - -#: ../../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" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "Nachricht/Beitrag" - -#: ../../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" - -#: ../../include/conversation.php:587 ../../mod/content.php:461 -#: ../../mod/content.php:763 ../../object/Item.php:119 -msgid "Select" -msgstr "Auswählen" - -#: ../../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" - -#: ../../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." - -#: ../../include/conversation.php:639 ../../object/Item.php:288 -msgid "Categories:" -msgstr "Kategorien" - -#: ../../include/conversation.php:640 ../../object/Item.php:289 -msgid "Filed under:" -msgstr "Abgelegt unter:" - -#: ../../include/conversation.php:647 ../../mod/content.php:505 -#: ../../mod/content.php:887 ../../object/Item.php:311 -#, 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" - -#: ../../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" - -#: ../../include/conversation.php:728 -msgid "remove" -msgstr "löschen" - -#: ../../include/conversation.php:732 -msgid "Delete Selected Items" -msgstr "Lösche die markierten Beiträge" - -#: ../../include/conversation.php:831 -msgid "Follow Thread" -msgstr "Folge der Unterhaltung" - -#: ../../include/conversation.php:900 -#, php-format -msgid "%s likes this." -msgstr "%s mag das." - -#: ../../include/conversation.php:900 -#, php-format -msgid "%s doesn't like this." -msgstr "%s mag das nicht." - -#: ../../include/conversation.php:905 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d Personen mögen das" - -#: ../../include/conversation.php:908 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d Personen mögen das nicht" - -#: ../../include/conversation.php:922 -msgid "and" -msgstr "und" - -#: ../../include/conversation.php:928 -#, php-format -msgid ", and %d other people" -msgstr " und %d andere" - -#: ../../include/conversation.php:930 -#, php-format -msgid "%s like this." -msgstr "%s mögen das." - -#: ../../include/conversation.php:930 -#, php-format -msgid "%s don't like this." -msgstr "%s mögen das nicht." - -#: ../../include/conversation.php:957 ../../include/conversation.php:975 -msgid "Visible to everybody" -msgstr "Für jedermann sichtbar" - -#: ../../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:" - -#: ../../include/conversation.php:959 ../../include/conversation.php:977 -msgid "Please enter a video link/URL:" -msgstr "Bitte Link/URL zum Video einfügen:" - -#: ../../include/conversation.php:960 ../../include/conversation.php:978 -msgid "Please enter an audio link/URL:" -msgstr "Bitte Link/URL zum Audio einfügen:" - -#: ../../include/conversation.php:961 ../../include/conversation.php:979 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:962 ../../include/conversation.php:980 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "In diesen Ordner verschieben:" - -#: ../../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?" - -#: ../../include/conversation.php:1006 -msgid "Post to Email" -msgstr "An E-Mail senden" - -#: ../../include/conversation.php:1041 ../../mod/photos.php:1531 -msgid "Share" -msgstr "Teilen" - -#: ../../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" - -#: ../../include/conversation.php:1043 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "Bild hochladen" - -#: ../../include/conversation.php:1044 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Datei anhängen" - -#: ../../include/conversation.php:1045 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "Datei anhängen" - -#: ../../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" - -#: ../../include/conversation.php:1047 ../../mod/editpost.php:115 -msgid "web link" -msgstr "Weblink" - -#: ../../include/conversation.php:1048 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Video-Adresse einfügen" - -#: ../../include/conversation.php:1049 ../../mod/editpost.php:117 -msgid "video link" -msgstr "Video-Link" - -#: ../../include/conversation.php:1050 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Audio-Adresse einfügen" - -#: ../../include/conversation.php:1051 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "Audio-Link" - -#: ../../include/conversation.php:1052 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "Deinen Standort festlegen" - -#: ../../include/conversation.php:1053 ../../mod/editpost.php:121 -msgid "set location" -msgstr "Ort setzen" - -#: ../../include/conversation.php:1054 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Browser-Standort leeren" - -#: ../../include/conversation.php:1055 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "Ort löschen" - -#: ../../include/conversation.php:1057 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Titel setzen" - -#: ../../include/conversation.php:1059 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (kommasepariert)" - -#: ../../include/conversation.php:1061 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Berechtigungseinstellungen" - -#: ../../include/conversation.php:1062 -msgid "permissions" -msgstr "Zugriffsrechte" - -#: ../../include/conversation.php:1070 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "Cc: E-Mail-Addressen" - -#: ../../include/conversation.php:1071 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Öffentlicher Beitrag" - -#: ../../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" - -#: ../../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" - -#: ../../include/conversation.php:1086 -msgid "Post to Groups" -msgstr "Poste an Gruppe" - -#: ../../include/conversation.php:1087 -msgid "Post to Contacts" -msgstr "Poste an Kontakte" - -#: ../../include/conversation.php:1088 -msgid "Private post" -msgstr "Privater Beitrag" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[kein Betreff]" - -#: ../../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" - -#: ../../include/nav.php:34 ../../mod/navigation.php:20 -msgid "Nothing new here" -msgstr "Keine Neuigkeiten." - -#: ../../include/nav.php:38 ../../mod/navigation.php:24 -msgid "Clear notifications" -msgstr "Bereinige Benachrichtigungen" - -#: ../../include/nav.php:73 ../../boot.php:1057 -msgid "Logout" -msgstr "Abmelden" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Diese Sitzung beenden" - -#: ../../include/nav.php:76 ../../boot.php:1861 -msgid "Status" -msgstr "Status" - -#: ../../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" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 -msgid "Your profile page" -msgstr "Deine Profilseite" - -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875 -msgid "Photos" -msgstr "Bilder" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 -msgid "Your photos" -msgstr "Deine Fotos" - -#: ../../include/nav.php:79 ../../mod/events.php:370 -#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885 -msgid "Events" -msgstr "Veranstaltungen" - -#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 -msgid "Your events" -msgstr "Deine Ereignisse" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Personal notes" -msgstr "Persönliche Notizen" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Your personal photos" -msgstr "Deine privaten Fotos" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Anmelden" - -#: ../../include/nav.php:104 ../../include/nav.php:143 -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -msgid "Home" -msgstr "Pinnwand" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Homepage" - -#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033 -msgid "Register" -msgstr "Registrieren" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Nutzerkonto erstellen" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" - -#: ../../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" - -#: ../../include/nav.php:128 ../../mod/community.php:32 -#: ../../view/theme/diabook/theme.php:93 -msgid "Community" -msgstr "Gemeinschaft" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Unterhaltungen auf dieser Seite" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Verzeichnis" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Nutzerverzeichnis" - -#: ../../include/nav.php:140 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Netzwerk" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Unterhaltungen deiner Kontakte" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "Netzwerk zurücksetzen" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "Netzwerk-Seite ohne Filter laden" - -#: ../../include/nav.php:149 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Kontaktanfragen" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Kontaktanfragen" - -#: ../../include/nav.php:150 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen anzeigen" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "Markiere alle Systembenachrichtigungen als gelesen" - -#: ../../include/nav.php:156 ../../mod/message.php:182 -#: ../../mod/notifications.php:103 -msgid "Messages" -msgstr "Nachrichten" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Private E-Mail" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "Eingang" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Ausgang" - -#: ../../include/nav.php:159 ../../mod/message.php:9 -msgid "New Message" -msgstr "Neue Nachricht" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "Verwalten" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "Andere Seiten verwalten" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "Delegierungen" - -#: ../../include/nav.php:165 ../../mod/delegate.php:121 -msgid "Delegate Page Management" -msgstr "Delegiere das Management für die Seite" - -#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 -msgid "Account settings" -msgstr "Kontoeinstellungen" - -#: ../../include/nav.php:169 ../../boot.php:1360 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "Profile Verwalten/Editieren" - -#: ../../include/nav.php:171 ../../mod/contacts.php:607 -#: ../../view/theme/diabook/theme.php:89 -msgid "Contacts" -msgstr "Kontakte" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Freunde und Kontakte verwalten/editieren" - -#: ../../include/nav.php:178 ../../mod/admin.php:120 -msgid "Admin" -msgstr "Administration" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Einstellungen der Seite und Konfiguration" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "Navigation" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "Sitemap" - -#: ../../include/network.php:875 -msgid "view full size" -msgstr "Volle Größe anzeigen" - -#: ../../include/oembed.php:138 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" - -#: ../../include/oembed.php:147 -msgid "Embedding disabled" -msgstr "Einbettungen deaktiviert" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "Willkommen " - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "Bitte lade ein Profilbild hoch." - -#: ../../include/security.php:26 -msgid "Welcome back " -msgstr "Willkommen zurück " - -#: ../../include/security.php:366 +#: ../../mod/openid.php:53 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)." +"Account not found and OpenID registration is not permitted on this site." +msgstr "Nutzerkonto wurde nicht gefunden, und OpenID-Registrierung ist auf diesem Server nicht gestattet." -#: ../../mod/profiles.php: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." +#: ../../mod/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Anmeldung fehlgeschlagen." -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "Profil gelöscht." +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Quelle (bbcode) Text:" -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "Profil-" +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:" -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "Neues Profil angelegt." +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Originaltext:" -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Profil nicht zum Duplizieren verfügbar." +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (reines HTML): " -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "Profilname ist erforderlich." +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html: " -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "Familienstand" +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "bb2html2bb: " -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "Romanze" +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "bb2md: " -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "Likes" +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "bb2md2html: " -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "Dislikes" +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "bb2dia2bb: " -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Arbeit / Beschäftigung" +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Religion" +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Texteingabe (Diaspora Format): " -#: ../../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 “%3$s”" -msgstr "%1$s hat %2$s geändert auf “%3$s”" - -#: ../../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 " Marital Status:" -msgstr " 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/profiles.php:651 -msgid "Public Keywords:" -msgstr "Öffentliche Schlüsselwörter:" - -#: ../../mod/profiles.php:652 -msgid "Private Keywords:" -msgstr "Private Schlüsselwörter:" - -#: ../../mod/profiles.php:655 -msgid "Example: fishing photography software" -msgstr "Beispiel: Fischen Fotografie Software" - -#: ../../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/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/profiles.php:658 -msgid "Tell us about yourself..." -msgstr "Erzähle uns ein bisschen von dir …" - -#: ../../mod/profiles.php:659 -msgid "Hobbies/Interests" -msgstr "Hobbies/Interessen" - -#: ../../mod/profiles.php:660 -msgid "Contact information and Social Networks" -msgstr "Kontaktinformationen und Soziale Netzwerke" - -#: ../../mod/profiles.php:661 -msgid "Musical interests" -msgstr "Musikalische Interessen" - -#: ../../mod/profiles.php:662 -msgid "Books, literature" -msgstr "Literatur/Bücher" - -#: ../../mod/profiles.php:663 -msgid "Television" -msgstr "Fernsehen" - -#: ../../mod/profiles.php:664 -msgid "Film/dance/culture/entertainment" -msgstr "Filme/Tänze/Kultur/Unterhaltung" - -#: ../../mod/profiles.php:665 -msgid "Love/romance" -msgstr "Liebesleben" - -#: ../../mod/profiles.php:666 -msgid "Work/employment" -msgstr "Arbeit/Beschäftigung" - -#: ../../mod/profiles.php:667 -msgid "School/education" -msgstr "Schule/Ausbildung" - -#: ../../mod/profiles.php:672 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." - -#: ../../mod/profiles.php:721 -msgid "Edit/Manage Profiles" -msgstr "Verwalte/Editiere Profile" - -#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392 -msgid "Change profile photo" -msgstr "Profilbild ändern" - -#: ../../mod/profiles.php:723 ../../boot.php:1367 -msgid "Create New Profile" -msgstr "Neues Profil anlegen" - -#: ../../mod/profiles.php:734 ../../boot.php:1377 -msgid "Profile Image" -msgstr "Profilbild" - -#: ../../mod/profiles.php:736 ../../boot.php:1380 -msgid "visible to everybody" -msgstr "sichtbar für jeden" - -#: ../../mod/profiles.php:737 ../../boot.php:1381 -msgid "Edit visibility" -msgstr "Sichtbarkeit bearbeiten" - -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340 -msgid "Permission denied" -msgstr "Zugriff verweigert" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Bezeichner" - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Editor für die Profil-Sichtbarkeit" - -#: ../../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/profperm.php:114 -msgid "Visible To" -msgstr "Sichtbar für" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" - -#: ../../mod/notes.php:44 ../../boot.php:1892 -msgid "Personal Notes" -msgstr "Persönliche Notizen" - -#: ../../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/nogroup.php:41 ../../mod/contacts.php:586 -msgid "Edit contact" -msgstr "Kontakt bearbeiten" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakte, die keiner Gruppe zugewiesen sind" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} möchte mit dir in Kontakt treten" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} hat dir eine Nachricht geschickt" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} möchte sich registrieren" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} kommentierte einen Beitrag von %s" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} mag %ss Beitrag" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} mag %ss Beitrag nicht" - -#: ../../mod/ping.php:269 -#, 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" - -#: ../../mod/ping.php:279 -#, 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/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " #: ../../mod/admin.php:55 msgid "Theme settings updated." msgstr "Themeneinstellungen aktualisiert." -#: ../../mod/admin.php:96 ../../mod/admin.php:474 +#: ../../mod/admin.php:96 ../../mod/admin.php:477 msgid "Site" msgstr "Seite" -#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756 +#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761 msgid "Users" msgstr "Nutzer" -#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881 +#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886 msgid "Plugins" msgstr "Plugins" -#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081 +#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086 msgid "Themes" msgstr "Themen" @@ -5787,10 +848,14 @@ msgstr "Themen" msgid "DB updates" msgstr "DB Updates" -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168 +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173 msgid "Logs" msgstr "Protokolle" +#: ../../mod/admin.php:120 ../../include/nav.php:178 +msgid "Admin" +msgstr "Administration" + #: ../../mod/admin.php:121 msgid "Plugin Features" msgstr "Plugin Features" @@ -5799,19 +864,25 @@ msgstr "Plugin Features" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen die auf Bestätigung warten" -#: ../../mod/admin.php:182 ../../mod/admin.php:714 +#: ../../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." + +#: ../../mod/admin.php:182 ../../mod/admin.php:718 msgid "Normal Account" msgstr "Normales Konto" -#: ../../mod/admin.php:183 ../../mod/admin.php:715 +#: ../../mod/admin.php:183 ../../mod/admin.php:719 msgid "Soapbox Account" msgstr "Marktschreier-Konto" -#: ../../mod/admin.php:184 ../../mod/admin.php:716 +#: ../../mod/admin.php:184 ../../mod/admin.php:720 msgid "Community/Celebrity Account" msgstr "Forum/Promi-Konto" -#: ../../mod/admin.php:185 ../../mod/admin.php:717 +#: ../../mod/admin.php:185 ../../mod/admin.php:721 msgid "Automatic Friend Account" msgstr "Automatisches Freundekonto" @@ -5827,9 +898,9 @@ msgstr "Privates Forum" msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: ../../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 +#: ../../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" @@ -5853,712 +924,1190 @@ msgstr "Version" msgid "Active plugins" msgstr "Aktive Plugins" -#: ../../mod/admin.php:398 +#: ../../mod/admin.php:401 msgid "Site settings updated." msgstr "Seiteneinstellungen aktualisiert." -#: ../../mod/admin.php:427 ../../mod/settings.php:769 +#: ../../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." -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:447 msgid "Multi user instance" msgstr "Mehrbenutzer Instanz" -#: ../../mod/admin.php:460 +#: ../../mod/admin.php:463 msgid "Closed" msgstr "Geschlossen" -#: ../../mod/admin.php:461 +#: ../../mod/admin.php:464 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: ../../mod/admin.php:462 +#: ../../mod/admin.php:465 msgid "Open" msgstr "Offen" -#: ../../mod/admin.php:466 +#: ../../mod/admin.php:469 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: ../../mod/admin.php:467 +#: ../../mod/admin.php:470 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: ../../mod/admin.php:468 +#: ../../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)" -#: ../../mod/admin.php:476 ../../mod/register.php:261 +#: ../../mod/admin.php:479 ../../mod/register.php:261 msgid "Registration" msgstr "Registrierung" -#: ../../mod/admin.php:477 +#: ../../mod/admin.php:480 msgid "File upload" msgstr "Datei hochladen" -#: ../../mod/admin.php:478 +#: ../../mod/admin.php:481 msgid "Policies" msgstr "Regeln" -#: ../../mod/admin.php:479 +#: ../../mod/admin.php:482 msgid "Advanced" msgstr "Erweitert" -#: ../../mod/admin.php:480 +#: ../../mod/admin.php:483 msgid "Performance" msgstr "Performance" -#: ../../mod/admin.php:485 +#: ../../mod/admin.php:487 +msgid "Site name" +msgstr "Seitenname" + +#: ../../mod/admin.php:488 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:486 +#: ../../mod/admin.php:489 msgid "System language" msgstr "Systemsprache" -#: ../../mod/admin.php:487 +#: ../../mod/admin.php:490 msgid "System theme" msgstr "Systemweites Thema" -#: ../../mod/admin.php:487 +#: ../../mod/admin.php:490 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Vorgabe für das System-Theme - kann von Benutzerprofilen überschrieben werden - Theme-Einstellungen ändern" -#: ../../mod/admin.php:488 +#: ../../mod/admin.php:491 msgid "Mobile system theme" msgstr "Systemweites mobiles Thema" -#: ../../mod/admin.php:488 +#: ../../mod/admin.php:491 msgid "Theme for mobile devices" msgstr "Thema für mobile Geräte" -#: ../../mod/admin.php:489 +#: ../../mod/admin.php:492 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: ../../mod/admin.php:489 +#: ../../mod/admin.php:492 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: ../../mod/admin.php:490 +#: ../../mod/admin.php:493 msgid "'Share' element" msgstr "'Teilen' Element" -#: ../../mod/admin.php:490 +#: ../../mod/admin.php:493 msgid "Activates the bbcode element 'share' for repeating items." msgstr "Aktiviert das bbcode Element 'Teilen' um Einträge zu wiederholen." -#: ../../mod/admin.php:491 +#: ../../mod/admin.php:494 msgid "Hide help entry from navigation menu" msgstr "Verberge den Menüeintrag für die Hilfe im Navigationsmenü" -#: ../../mod/admin.php:491 +#: ../../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." -#: ../../mod/admin.php:492 +#: ../../mod/admin.php:495 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: ../../mod/admin.php:492 +#: ../../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." -#: ../../mod/admin.php:493 +#: ../../mod/admin.php:496 msgid "Maximum image size" msgstr "Maximale Größe von Bildern" -#: ../../mod/admin.php:493 +#: ../../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." -#: ../../mod/admin.php:494 +#: ../../mod/admin.php:497 msgid "Maximum image length" msgstr "Maximale Länge von Bildern" -#: ../../mod/admin.php:494 +#: ../../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." -#: ../../mod/admin.php:495 +#: ../../mod/admin.php:498 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: ../../mod/admin.php:495 +#: ../../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." -#: ../../mod/admin.php:497 +#: ../../mod/admin.php:500 msgid "Register policy" msgstr "Registrierungsmethode" -#: ../../mod/admin.php:498 +#: ../../mod/admin.php:501 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Neuanmeldungen" -#: ../../mod/admin.php:498 +#: ../../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." -#: ../../mod/admin.php:499 +#: ../../mod/admin.php:502 msgid "Register text" msgstr "Registrierungstext" -#: ../../mod/admin.php:499 +#: ../../mod/admin.php:502 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt." -#: ../../mod/admin.php:500 +#: ../../mod/admin.php:503 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: ../../mod/admin.php:500 +#: ../../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." -#: ../../mod/admin.php:501 +#: ../../mod/admin.php:504 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../mod/admin.php:501 +#: ../../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." -#: ../../mod/admin.php:502 +#: ../../mod/admin.php:505 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: ../../mod/admin.php:502 +#: ../../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." -#: ../../mod/admin.php:503 +#: ../../mod/admin.php:506 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: ../../mod/admin.php:503 +#: ../../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." -#: ../../mod/admin.php:504 +#: ../../mod/admin.php:507 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: ../../mod/admin.php:504 +#: ../../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." -#: ../../mod/admin.php:505 +#: ../../mod/admin.php:508 msgid "Global directory update URL" msgstr "URL für Updates beim weltweiten Verzeichnis" -#: ../../mod/admin.php:505 +#: ../../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." -#: ../../mod/admin.php:506 +#: ../../mod/admin.php:509 msgid "Allow threaded items" msgstr "Erlaube Threads in Diskussionen" -#: ../../mod/admin.php:506 +#: ../../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." -#: ../../mod/admin.php:507 +#: ../../mod/admin.php:510 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: ../../mod/admin.php:507 +#: ../../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." -#: ../../mod/admin.php:509 +#: ../../mod/admin.php:511 +msgid "Don't include post content in email notifications" +msgstr "Inhalte von Beiträgen nicht in Email Benachrichtigungen versenden" + +#: ../../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." + +#: ../../mod/admin.php:513 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: ../../mod/admin.php:509 +#: ../../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." -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:514 msgid "OpenID support" msgstr "OpenID Unterstützung" -#: ../../mod/admin.php:510 +#: ../../mod/admin.php:514 msgid "OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: ../../mod/admin.php:511 +#: ../../mod/admin.php:515 msgid "Fullname check" msgstr "Namen auf Vollständigkeit überprüfen" -#: ../../mod/admin.php:511 +#: ../../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." -#: ../../mod/admin.php:512 +#: ../../mod/admin.php:516 msgid "UTF-8 Regular expressions" msgstr "UTF-8 Reguläre Ausdrücke" -#: ../../mod/admin.php:512 +#: ../../mod/admin.php:516 msgid "Use PHP UTF8 regular expressions" msgstr "PHP UTF8 Ausdrücke verwenden" -#: ../../mod/admin.php:513 +#: ../../mod/admin.php:517 msgid "Show Community Page" msgstr "Gemeinschaftsseite anzeigen" -#: ../../mod/admin.php:513 +#: ../../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." -#: ../../mod/admin.php:514 +#: ../../mod/admin.php:518 msgid "Enable OStatus support" msgstr "OStatus Unterstützung aktivieren" -#: ../../mod/admin.php:514 +#: ../../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." -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:519 msgid "Enable Diaspora support" msgstr "Diaspora-Support aktivieren" -#: ../../mod/admin.php:515 +#: ../../mod/admin.php:519 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: ../../mod/admin.php:516 +#: ../../mod/admin.php:520 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: ../../mod/admin.php:516 +#: ../../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." -#: ../../mod/admin.php:517 +#: ../../mod/admin.php:521 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: ../../mod/admin.php:517 +#: ../../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." -#: ../../mod/admin.php:518 +#: ../../mod/admin.php:522 msgid "Proxy user" msgstr "Proxy Nutzer" -#: ../../mod/admin.php:519 +#: ../../mod/admin.php:523 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../mod/admin.php:520 +#: ../../mod/admin.php:524 msgid "Network timeout" msgstr "Netzwerk Wartezeit" -#: ../../mod/admin.php:520 +#: ../../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)." -#: ../../mod/admin.php:521 +#: ../../mod/admin.php:525 msgid "Delivery interval" msgstr "Zustellungsintervall" -#: ../../mod/admin.php:521 +#: ../../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." -#: ../../mod/admin.php:522 +#: ../../mod/admin.php:526 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../mod/admin.php:522 +#: ../../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." -#: ../../mod/admin.php:523 +#: ../../mod/admin.php:527 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: ../../mod/admin.php:523 +#: ../../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" -#: ../../mod/admin.php:525 +#: ../../mod/admin.php:529 msgid "Use MySQL full text engine" msgstr "Nutze MySQL full text engine" -#: ../../mod/admin.php:525 +#: ../../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." -#: ../../mod/admin.php:526 +#: ../../mod/admin.php:530 msgid "Path to item cache" msgstr "Pfad zum Eintrag Cache" -#: ../../mod/admin.php:527 +#: ../../mod/admin.php:531 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: ../../mod/admin.php:527 +#: ../../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)." -#: ../../mod/admin.php:528 +#: ../../mod/admin.php:532 msgid "Path for lock file" msgstr "Pfad für die Sperrdatei" -#: ../../mod/admin.php:529 +#: ../../mod/admin.php:533 msgid "Temp path" msgstr "Temp Pfad" -#: ../../mod/admin.php:530 +#: ../../mod/admin.php:534 msgid "Base path to installation" msgstr "Basis-Pfad zur Installation" -#: ../../mod/admin.php:548 +#: ../../mod/admin.php:552 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../mod/admin.php:558 +#: ../../mod/admin.php:562 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführung von %s schlug fehl. Systemprotokolle prüfen." -#: ../../mod/admin.php:561 +#: ../../mod/admin.php:565 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: ../../mod/admin.php:565 +#: ../../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." -#: ../../mod/admin.php:568 +#: ../../mod/admin.php:572 #, php-format msgid "Update function %s could not be found." msgstr "Updatefunktion %s konnte nicht gefunden werden." -#: ../../mod/admin.php:583 +#: ../../mod/admin.php:587 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: ../../mod/admin.php:587 +#: ../../mod/admin.php:591 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: ../../mod/admin.php:588 +#: ../../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." -#: ../../mod/admin.php:589 +#: ../../mod/admin.php:593 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: ../../mod/admin.php:590 +#: ../../mod/admin.php:594 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" -#: ../../mod/admin.php:615 +#: ../../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" -#: ../../mod/admin.php:622 +#: ../../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" -#: ../../mod/admin.php:661 +#: ../../mod/admin.php:665 #, php-format msgid "User '%s' deleted" msgstr "Nutzer '%s' gelöscht" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:673 #, php-format msgid "User '%s' unblocked" msgstr "Nutzer '%s' entsperrt" -#: ../../mod/admin.php:669 +#: ../../mod/admin.php:673 #, php-format msgid "User '%s' blocked" msgstr "Nutzer '%s' gesperrt" -#: ../../mod/admin.php:745 +#: ../../mod/admin.php:749 msgid "select all" msgstr "Alle auswählen" -#: ../../mod/admin.php:746 +#: ../../mod/admin.php:750 msgid "User registrations waiting for confirm" msgstr "Neuanmeldungen, die auf deine Bestätigung warten" -#: ../../mod/admin.php:747 +#: ../../mod/admin.php:751 msgid "Request date" msgstr "Anfragedatum" -#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562 +#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562 #: ../../mod/settings.php:588 ../../mod/crepair.php:148 msgid "Name" msgstr "Name" -#: ../../mod/admin.php:748 +#: ../../mod/admin.php:751 ../../mod/admin.php:762 +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "E-Mail" + +#: ../../mod/admin.php:752 msgid "No registrations." msgstr "Keine Neuanmeldungen." -#: ../../mod/admin.php:749 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../mod/admin.php:750 +#: ../../mod/admin.php:754 msgid "Deny" msgstr "Verwehren" -#: ../../mod/admin.php:752 ../../mod/contacts.php:353 +#: ../../mod/admin.php:756 ../../mod/contacts.php:353 #: ../../mod/contacts.php:412 msgid "Block" msgstr "Sperren" -#: ../../mod/admin.php:753 ../../mod/contacts.php:353 +#: ../../mod/admin.php:757 ../../mod/contacts.php:353 #: ../../mod/contacts.php:412 msgid "Unblock" msgstr "Entsperren" -#: ../../mod/admin.php:754 +#: ../../mod/admin.php:758 msgid "Site admin" msgstr "Seitenadministrator" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:759 +msgid "Account expired" +msgstr "Account ist abgelaufen" + +#: ../../mod/admin.php:762 msgid "Register date" msgstr "Anmeldedatum" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:762 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:762 msgid "Last item" msgstr "Letzter Beitrag" -#: ../../mod/admin.php:757 +#: ../../mod/admin.php:762 msgid "Account" msgstr "Nutzerkonto" -#: ../../mod/admin.php:759 +#: ../../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?" -#: ../../mod/admin.php:760 +#: ../../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?" -#: ../../mod/admin.php:801 +#: ../../mod/admin.php:806 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s deaktiviert." -#: ../../mod/admin.php:805 +#: ../../mod/admin.php:810 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s aktiviert." -#: ../../mod/admin.php:815 ../../mod/admin.php:1018 +#: ../../mod/admin.php:820 ../../mod/admin.php:1023 msgid "Disable" msgstr "Ausschalten" -#: ../../mod/admin.php:817 ../../mod/admin.php:1020 +#: ../../mod/admin.php:822 ../../mod/admin.php:1025 msgid "Enable" msgstr "Einschalten" -#: ../../mod/admin.php:840 ../../mod/admin.php:1048 +#: ../../mod/admin.php:845 ../../mod/admin.php:1053 msgid "Toggle" msgstr "Umschalten" -#: ../../mod/admin.php:848 ../../mod/admin.php:1058 +#: ../../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" + +#: ../../mod/admin.php:853 ../../mod/admin.php:1063 msgid "Author: " msgstr "Autor:" -#: ../../mod/admin.php:849 ../../mod/admin.php:1059 +#: ../../mod/admin.php:854 ../../mod/admin.php:1064 msgid "Maintainer: " msgstr "Betreuer:" -#: ../../mod/admin.php:978 +#: ../../mod/admin.php:983 msgid "No themes found." msgstr "Keine Themen gefunden." -#: ../../mod/admin.php:1040 +#: ../../mod/admin.php:1045 msgid "Screenshot" msgstr "Bildschirmfoto" -#: ../../mod/admin.php:1086 +#: ../../mod/admin.php:1091 msgid "[Experimental]" msgstr "[Experimentell]" -#: ../../mod/admin.php:1087 +#: ../../mod/admin.php:1092 msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../mod/admin.php:1114 +#: ../../mod/admin.php:1119 msgid "Log settings updated." msgstr "Protokolleinstellungen aktualisiert." -#: ../../mod/admin.php:1170 +#: ../../mod/admin.php:1175 msgid "Clear" msgstr "löschen" -#: ../../mod/admin.php:1176 +#: ../../mod/admin.php:1181 msgid "Debugging" msgstr "Protokoll führen" -#: ../../mod/admin.php:1177 +#: ../../mod/admin.php:1182 msgid "Log file" msgstr "Protokolldatei" -#: ../../mod/admin.php:1177 +#: ../../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." -#: ../../mod/admin.php:1178 +#: ../../mod/admin.php:1183 msgid "Log level" msgstr "Protokoll-Level" -#: ../../mod/admin.php:1227 ../../mod/contacts.php:409 +#: ../../mod/admin.php:1232 ../../mod/contacts.php:409 msgid "Update now" msgstr "Jetzt aktualisieren" -#: ../../mod/admin.php:1228 +#: ../../mod/admin.php:1233 msgid "Close" msgstr "Schließen" -#: ../../mod/admin.php:1234 +#: ../../mod/admin.php:1239 msgid "FTP Host" msgstr "FTP Host" -#: ../../mod/admin.php:1235 +#: ../../mod/admin.php:1240 msgid "FTP Path" msgstr "FTP Pfad" -#: ../../mod/admin.php:1236 +#: ../../mod/admin.php:1241 msgid "FTP User" msgstr "FTP Nutzername" -#: ../../mod/admin.php:1237 +#: ../../mod/admin.php:1242 msgid "FTP Password" msgstr "FTP Passwort" -#: ../../mod/item.php:105 -msgid "Unable to locate original post." -msgstr "Konnte den Originalbeitrag nicht finden." +#: ../../mod/message.php:9 ../../include/nav.php:159 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../mod/item.php:307 -msgid "Empty post discarded." -msgstr "Leerer Beitrag wurde verworfen." +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Kein Empfänger gewählt." -#: ../../mod/item.php:869 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Konnte die Kontaktinformationen nicht finden." -#: ../../mod/item.php:894 +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Nachricht konnte nicht gesendet werden." + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Konnte Nachrichten nicht abrufen." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Nachricht gesendet." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Möchtest du wirklich diese Nachricht löschen?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Nachricht gelöscht." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Unterhaltung gelöscht." + +#: ../../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:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Private Nachricht senden" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "An:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Betreff:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../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" + +#: ../../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" + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Keine Nachrichten." + +#: ../../mod/message.php:378 +#, php-format +msgid "Unknown sender - %s" +msgstr "'Unbekannter Absender - %s" + +#: ../../mod/message.php:381 +#, php-format +msgid "You and %s" +msgstr "Du und %s" + +#: ../../mod/message.php:384 +#, php-format +msgid "%s and You" +msgstr "%s und du" + +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" + +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d. M Y - g:i A" + +#: ../../mod/message.php:411 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d Nachricht" +msgstr[1] "%d Nachrichten" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Nachricht nicht verfügbar." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Nachricht löschen" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Antwort senden" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Beitrag nicht gefunden" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Beitrag bearbeiten" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1043 +msgid "upload photo" +msgstr "Bild hochladen" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1044 +msgid "Attach file" +msgstr "Datei anhängen" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1045 +msgid "attach file" +msgstr "Datei anhängen" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1047 +msgid "web link" +msgstr "Weblink" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1048 +msgid "Insert video link" +msgstr "Video-Adresse einfügen" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1049 +msgid "video link" +msgstr "Video-Link" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1050 +msgid "Insert audio link" +msgstr "Audio-Adresse einfügen" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1051 +msgid "audio link" +msgstr "Audio-Link" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1052 +msgid "Set your location" +msgstr "Deinen Standort festlegen" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1053 +msgid "set location" +msgstr "Ort setzen" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1054 +msgid "Clear browser location" +msgstr "Browser-Standort leeren" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1055 +msgid "clear location" +msgstr "Ort löschen" + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1061 +msgid "Permission settings" +msgstr "Berechtigungseinstellungen" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1070 +msgid "CC: email addresses" +msgstr "Cc: E-Mail-Addressen" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1071 +msgid "Public post" +msgstr "Öffentlicher Beitrag" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1057 +msgid "Set title" +msgstr "Titel setzen" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1059 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (kommasepariert)" + +#: ../../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" + +#: ../../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." + +#: ../../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:477 ../../include/diaspora.php:621 +#: ../../include/conversation.php:172 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s ist nun mit %2$s befreundet" + +#: ../../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/events.php:66 +msgid "Event title and start time are required." +msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Veranstaltung bearbeiten" + +#: ../../mod/events.php:335 ../../include/text.php:1304 +msgid "link to source" +msgstr "Link zum Originalbeitrag" + +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91 +#: ../../boot.php:1885 ../../include/nav.php:79 +msgid "Events" +msgstr "Veranstaltungen" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Neue Veranstaltung erstellen" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Vorherige" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Nächste" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "Stunde:Minute" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Veranstaltungsdetails" + +#: ../../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." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "Veranstaltungsbeginn:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Benötigt" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Veranstaltungsende:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "An Zeitzone des Betrachters anpassen" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Beschreibung" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +msgid "Location:" +msgstr "Ort:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titel:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Veranstaltung teilen" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90 +#: ../../boot.php:1875 ../../include/nav.php:78 +msgid "Photos" +msgstr "Bilder" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Dateien" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Willkommen zu %s" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Sichtbar für:" + +#: ../../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." + +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "Konnte deinen Heimatort nicht bestimmen." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Kein Empfänger." + +#: ../../mod/wallmessage.php:143 #, 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." +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." -#: ../../mod/item.php:896 +#: ../../mod/nogroup.php:40 ../../mod/contacts.php:395 +#: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62 #, php-format -msgid "You may visit them online at %s" -msgstr "Du kannst sie online unter %s besuchen" +msgid "Visit %s's profile [%s]" +msgstr "Besuche %ss Profil [%s]" -#: ../../mod/item.php:897 +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 +msgid "Edit contact" +msgstr "Kontakt bearbeiten" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakte, die keiner Gruppe zugewiesen sind" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Dies ist Friendica, Version" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "die unter folgender Webadresse zu finden ist" + +#: ../../mod/friendica.php:58 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." +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." -#: ../../mod/item.php:901 +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" + +#: ../../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" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Erweiterungen/Apps" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Keine Plugins/Erweiterungen/Apps installiert" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Konto löschen" + +#: ../../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/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Bitte gib dein Passwort zur Verifikation ein:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 #, php-format -msgid "%s posted an update." -msgstr "%s hat ein Update veröffentlicht." +msgid "Image exceeds size limit of %d" +msgstr "Bildgröße überschreitet das Limit von %d" -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Freunde von %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." -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Keine Freunde zum Anzeigen." +#: ../../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" -#: ../../mod/search.php:21 ../../mod/network.php:224 -msgid "Remove term" -msgstr "Begriff entfernen" - -#: ../../mod/search.php:180 ../../mod/search.php:206 -#: ../../mod/community.php:61 ../../mod/community.php:88 -msgid "No results." -msgstr "Keine Ergebnisse." +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "Hochladen des Bildes gescheitert." #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" @@ -6578,6 +2127,229 @@ msgid "" " 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/tagger.php:95 ../../include/conversation.php:266 +#, 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/photos.php:51 ../../boot.php:1878 +msgid "Photo Albums" +msgstr "Fotoalben" + +#: ../../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" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" + +#: ../../mod/photos.php:79 ../../mod/settings.php:23 +msgid "everybody" +msgstr "jeder" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "Kontaktinformationen nicht verfügbar" + +#: ../../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" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album nicht gefunden." + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Album löschen" + +#: ../../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?" + +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Foto löschen" + +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "Möchtest du wirklich dieses Foto löschen?" + +#: ../../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" + +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "einem Foto" + +#: ../../mod/photos.php:761 +msgid "Image exceeds size limit of " +msgstr "Die Bildgröße übersteigt das Limit von " + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Keine Bilder ausgewählt" + +#: ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." + +#: ../../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." + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Bilder hochladen" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Name des neuen Albums: " + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "oder existierender Albumname: " + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Berechtigungen" + +#: ../../mod/photos.php:1140 ../../mod/photos.php:1506 +#: ../../mod/settings.php:1070 +msgid "Show to Groups" +msgstr "Zeige den Gruppen" + +#: ../../mod/photos.php:1141 ../../mod/photos.php:1507 +#: ../../mod/settings.php:1071 +msgid "Show to Contacts" +msgstr "Zeige den Kontakten" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "Öffentliches Foto" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Album bearbeiten" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "Zeige neueste zuerst" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "Zeige älteste zuerst" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Foto betrachten" + +#: ../../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." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Fotos ansehen" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Foto bearbeiten" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Als Profilbild verwenden" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Betrachte Originalgröße" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Tags: " + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Tag entfernen]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "Drehen US (rechts)" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "Drehen EUS (links)" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Name des neuen Albums" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Bildunterschrift" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Tag hinzufügen" + +#: ../../mod/photos.php:1499 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "Privates Foto" + +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "Öffentliches Foto" + +#: ../../mod/photos.php:1531 ../../include/conversation.php:1041 +msgid "Share" +msgstr "Teilen" + +#: ../../mod/photos.php:1784 +msgid "View Album" +msgstr "Album betrachten" + +#: ../../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 "Registration details for %s" @@ -6658,26 +2430,81 @@ msgstr "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstab msgid "Choose a nickname: " msgstr "Spitznamen wählen: " -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Anwendungen" +#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrieren" -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Keine Applikationen installiert." +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Konto freigegeben." +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail." -#: ../../mod/regmod.php:100 +#: ../../mod/lostpass.php:44 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde zurückgezogen" +msgid "Password reset requested at %s" +msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Bitte melde dich an." +#: ../../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." + +#: ../../mod/lostpass.php:84 ../../boot.php:1072 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere dein neues Passwort - und dann" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "hier klicken, um dich anzumelden" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "Auf %s wurde dein Passwort geändert" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Hast du dein Passwort vergessen?" + +#: ../../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." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Spitzname oder E-Mail:" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "System zur Wartung abgeschaltet" #: ../../mod/attach.php:8 msgid "Item not available." @@ -6687,75 +2514,21 @@ msgstr "Beitrag nicht verfügbar." msgid "Item was not found." msgstr "Beitrag konnte nicht gefunden werden." -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Konto löschen" +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Anwendungen" -#: ../../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/apps.php:7 +msgid "No installed applications." +msgstr "Keine Applikationen installiert." -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Bitte gib dein Passwort zur Verifikation ein:" +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Hilfe:" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Quelle (bbcode) Text:" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "Eingabe (Diaspora) Nach BBCode zu konvertierender Text:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "Originaltext:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html (reines HTML): " - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html: " - -#: ../../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: " - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb: " - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "Texteingabe (Diaspora Format): " - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Gemeinsame Freunde" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "Keine gemeinsamen Kontakte." +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Hilfe" #: ../../mod/contacts.php:85 ../../mod/contacts.php:165 msgid "Could not access contact record." @@ -6769,10 +2542,6 @@ msgstr "Konnte das ausgewählte Profil nicht finden." msgid "Contact updated." msgstr "Kontakt aktualisiert." -#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 -msgid "Failed to update contact record." -msgstr "Aktualisierung der Kontaktdaten fehlgeschlagen." - #: ../../mod/contacts.php:187 msgid "Contact has been blocked" msgstr "Kontakt wurde blockiert" @@ -6845,6 +2614,13 @@ msgstr "Kontakte vorschlagen" msgid "Network type: %s" msgstr "Netzwerktyp: %s" +#: ../../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" + #: ../../mod/contacts.php:348 msgid "View all contacts" msgstr "Alle Kontakte anzeigen" @@ -6857,12 +2633,6 @@ msgstr "Geblockt-Status ein-/ausschalten" msgid "Unignore" msgstr "Ignorieren aufheben" -#: ../../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/contacts.php:362 msgid "Toggle Ignored status" msgstr "Ignoriert-Status ein-/ausschalten" @@ -6954,11 +2724,6 @@ msgstr "Derzeit ignoriert" msgid "Currently archived" msgstr "Momentan archiviert" -#: ../../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/contacts.php:419 msgid "" "Replies/likes to your public posts may still be visible" @@ -7032,13 +2797,412 @@ msgstr "ist ein Fan von dir" msgid "you are a fan of" msgstr "du bist Fan von" +#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89 +#: ../../include/nav.php:171 +msgid "Contacts" +msgstr "Kontakte" + #: ../../mod/contacts.php:611 msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: ../../mod/settings.php:23 ../../mod/photos.php:79 -msgid "everybody" -msgstr "jeder" +#: ../../mod/contacts.php:612 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Funde: " + +#: ../../mod/contacts.php:613 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Finde" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Gemeinsame Freunde" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Keine gemeinsamen Kontakte." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt hinzugefügt" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "Import" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Account umziehen" + +#: ../../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." + +#: ../../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." + +#: ../../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" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "Account Datei" + +#: ../../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\"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt %2$s %3$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Freunde von %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Keine Freunde zum Anzeigen." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag entfernt" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Gegenstands-Tag entfernen" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wähle ein Tag zum Entfernen aus: " + +#: ../../mod/tagrm.php:93 ../../mod/delegate.php:130 +msgid "Remove" +msgstr "Entfernen" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Willkommen bei Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Checkliste für neue Mitglieder" + +#: ../../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." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "Einstieg" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Rundgang" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "Auf der Quick Start 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/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Gehe zu deinen Einstellungen" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings 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 Einstellungen 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/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/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/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Profilbild hochladen" + +#: ../../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/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Editiere dein Profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils." + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Profil Schlüsselbegriffe" + +#: ../../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/newmember.php:44 +msgid "Connecting" +msgstr "Verbindungen knüpfen" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../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/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten." + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Emails Importieren" + +#: ../../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." + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Gehe zu deiner Kontakt-Seite" + +#: ../../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 Add New Contact 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 Neuen Kontakt hinzufügen ein." + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Gehe zum Verzeichnis deiner Friendica Instanz" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow 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 Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Neue Leute kennenlernen" + +#: ../../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/newmember.php:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Gruppen" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Gruppiere deine Kontakte" + +#: ../../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/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Warum sind meine Beiträge nicht öffentlich?" + +#: ../../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/newmember.php:78 +msgid "Getting Help" +msgstr "Hilfe bekommen" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Zum Hilfe Abschnitt gehen" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "Begriff entfernen" + +#: ../../mod/search.php:30 ../../mod/network.php:233 +#: ../../include/features.php:41 +msgid "Saved Searches" +msgstr "Gespeicherte Suchen" + +#: ../../mod/search.php:99 ../../include/text.php:778 +#: ../../include/text.php:779 ../../include/nav.php:118 +msgid "Search" +msgstr "Suche" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:88 +msgid "No results." +msgstr "Keine Ergebnisse." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limit für Einladungen erreicht." + +#: ../../mod/invite.php:49 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: Keine gültige Email Adresse." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Bitte trete bei uns auf Friendica bei" + +#: ../../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/invite.php:89 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Zustellung der Nachricht fehlgeschlagen." + +#: ../../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." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren Einladungen" + +#: ../../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/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/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/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/invite.php:132 +msgid "Send invitations" +msgstr "Einladungen senden" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" + +#: ../../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/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Du benötigst den folgenden Einladungscode: $invite_code" + +#: ../../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/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/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167 +msgid "Account settings" +msgstr "Kontoeinstellungen" #: ../../mod/settings.php:35 msgid "Additional features" @@ -7128,11 +3292,23 @@ msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt. Die vorein msgid "Private forum has no privacy permissions and no default privacy group." msgstr "Für das private Forum sind keine Zugriffsrechte eingestellt, und es gibt keine voreingestellte Gruppe für neue Kontakte." +#: ../../mod/settings.php:488 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." + #: ../../mod/settings.php:559 ../../mod/settings.php:585 #: ../../mod/settings.php:621 msgid "Add application" msgstr "Programm hinzufügen" +#: ../../mod/settings.php:563 ../../mod/settings.php:589 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:564 ../../mod/settings.php:590 +msgid "Consumer Secret" +msgstr "Consumer Secret" + #: ../../mod/settings.php:565 ../../mod/settings.php:591 msgid "Redirect" msgstr "Umleiten" @@ -7149,11 +3325,6 @@ msgstr "Du kannst dieses Programm nicht bearbeiten." msgid "Connected Apps" msgstr "Verbundene Programme" -#: ../../mod/settings.php:622 ../../mod/editpost.php:109 -#: ../../mod/content.php:751 ../../object/Item.php:110 -msgid "Edit" -msgstr "Bearbeiten" - #: ../../mod/settings.php:624 msgid "Client key starts with" msgstr "Anwenderschlüssel beginnt mit" @@ -7170,6 +3341,10 @@ msgstr "Autorisierung entziehen" msgid "No Plugin settings configured" msgstr "Keine Plugin-Einstellungen konfiguriert" +#: ../../mod/settings.php:646 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + #: ../../mod/settings.php:660 msgid "Off" msgstr "Aus" @@ -7233,6 +3408,10 @@ msgstr "IMAP-Port:" msgid "Security:" msgstr "Sicherheit:" +#: ../../mod/settings.php:732 ../../mod/settings.php:737 +msgid "None" +msgstr "Keine" + #: ../../mod/settings.php:733 msgid "Email login name:" msgstr "E-Mail-Login-Name:" @@ -7450,6 +3629,10 @@ msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" msgid "Basic Settings" msgstr "Grundeinstellungen" +#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Kompletter Name:" + #: ../../mod/settings.php:1051 msgid "Email Address:" msgstr "E-Mail-Adresse:" @@ -7486,16 +3669,6 @@ msgstr "Standard-Zugriffsrechte für Beiträge" msgid "(click to open/close)" msgstr "(klicke zum öffnen/schließen)" -#: ../../mod/settings.php:1070 ../../mod/photos.php:1140 -#: ../../mod/photos.php:1506 -msgid "Show to Groups" -msgstr "Zeige den Gruppen" - -#: ../../mod/settings.php:1071 ../../mod/photos.php:1141 -#: ../../mod/photos.php:1507 -msgid "Show to Contacts" -msgstr "Zeige den Kontakten" - #: ../../mod/settings.php:1072 msgid "Default Private Post" msgstr "Privater Standardbeitrag" @@ -7576,79 +3749,508 @@ msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" +#: ../../mod/display.php:177 +msgid "Item has been removed." +msgstr "Eintrag wurde entfernt." + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Personensuche" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Keine Übereinstimmungen" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Profil gelöscht." + +#: ../../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 "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:367 +msgid "Location" +msgstr "Wohnort" + +#: ../../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 “%3$s”" +msgstr "%1$s hat %2$s geändert auf “%3$s”" + +#: ../../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: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 " Marital Status:" +msgstr " 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:646 ../../include/profile_advanced.php:46 +msgid "Sexual Preference:" +msgstr "Sexuelle Vorlieben:" + +#: ../../mod/profiles.php:647 +msgid "Homepage URL:" +msgstr "Adresse der Homepage:" + +#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50 +msgid "Hometown:" +msgstr "Heimatort:" + +#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54 +msgid "Political Views:" +msgstr "Politische Ansichten:" + +#: ../../mod/profiles.php:650 +msgid "Religious Views:" +msgstr "Religiöse Ansichten:" + +#: ../../mod/profiles.php:651 +msgid "Public Keywords:" +msgstr "Öffentliche Schlüsselwörter:" + +#: ../../mod/profiles.php:652 +msgid "Private Keywords:" +msgstr "Private Schlüsselwörter:" + +#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62 +msgid "Likes:" +msgstr "Likes:" + +#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64 +msgid "Dislikes:" +msgstr "Dislikes:" + +#: ../../mod/profiles.php:655 +msgid "Example: fishing photography software" +msgstr "Beispiel: Fischen Fotografie Software" + +#: ../../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/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/profiles.php:658 +msgid "Tell us about yourself..." +msgstr "Erzähle uns ein bisschen von dir …" + +#: ../../mod/profiles.php:659 +msgid "Hobbies/Interests" +msgstr "Hobbies/Interessen" + +#: ../../mod/profiles.php:660 +msgid "Contact information and Social Networks" +msgstr "Kontaktinformationen und Soziale Netzwerke" + +#: ../../mod/profiles.php:661 +msgid "Musical interests" +msgstr "Musikalische Interessen" + +#: ../../mod/profiles.php:662 +msgid "Books, literature" +msgstr "Literatur/Bücher" + +#: ../../mod/profiles.php:663 +msgid "Television" +msgstr "Fernsehen" + +#: ../../mod/profiles.php:664 +msgid "Film/dance/culture/entertainment" +msgstr "Filme/Tänze/Kultur/Unterhaltung" + +#: ../../mod/profiles.php:665 +msgid "Love/romance" +msgstr "Liebesleben" + +#: ../../mod/profiles.php:666 +msgid "Work/employment" +msgstr "Arbeit/Beschäftigung" + +#: ../../mod/profiles.php:667 +msgid "School/education" +msgstr "Schule/Ausbildung" + +#: ../../mod/profiles.php:672 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Dies ist dein öffentliches Profil.
Es könnte für jeden Nutzer des Internets sichtbar sein." + +#: ../../mod/profiles.php:682 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Alter: " + +#: ../../mod/profiles.php:721 +msgid "Edit/Manage Profiles" +msgstr "Verwalte/Editiere Profile" + +#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392 +msgid "Change profile photo" +msgstr "Profilbild ändern" + +#: ../../mod/profiles.php:723 ../../boot.php:1367 +msgid "Create New Profile" +msgstr "Neues Profil anlegen" + +#: ../../mod/profiles.php:734 ../../boot.php:1377 +msgid "Profile Image" +msgstr "Profilbild" + +#: ../../mod/profiles.php:736 ../../boot.php:1380 +msgid "visible to everybody" +msgstr "sichtbar für jeden" + +#: ../../mod/profiles.php:737 ../../boot.php:1381 +msgid "Edit visibility" +msgstr "Sichtbarkeit bearbeiten" + #: ../../mod/share.php:44 msgid "link" msgstr "Link" -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Einstellungen zum Kontakt angewandt." +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "Account exportieren" -#: ../../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." - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Kontakteinstellungen reparieren" - -#: ../../mod/crepair.php:137 +#: ../../mod/uexport.php:72 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." +"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/crepair.php:138 +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "Alles exportieren" + +#: ../../mod/uexport.php:73 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." +"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/crepair.php:144 -msgid "Return to contact editor" -msgstr "Zurück zum Kontakteditor" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} möchte mit dir in Kontakt treten" -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Konto-Spitzname" +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} hat dir eine Nachricht geschickt" -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Tagname - überschreibt Name/Spitzname" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} möchte sich registrieren" -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "Konto-URL" +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} kommentierte einen Beitrag von %s" -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL für Freundschaftsanfragen" +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} mag %ss Beitrag" -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL für Bestätigungen von Freundschaftsanfragen" +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} mag %ss Beitrag nicht" -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "URL-Endpunkt für Benachrichtigungen" +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ist jetzt mit %s befreundet" -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "Pull/Feed-URL" +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} hat etwas veröffentlicht" -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Neues Foto von dieser URL" +#: ../../mod/ping.php:279 +#, 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/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Keine Neuigkeiten." + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Bereinige Benachrichtigungen" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Nicht verfügbar." + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Gemeinschaft" + +#: ../../mod/filer.php:30 ../../include/conversation.php:962 +#: ../../include/conversation.php:980 +msgid "Save to Folder:" +msgstr "In diesen Ordner verschieben:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- auswählen -" + +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781 +msgid "Save" +msgstr "Speichern" + +#: ../../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/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Hochladen der Datei fehlgeschlagen." + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Bezeichner" + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Editor für die Profil-Sichtbarkeit" + +#: ../../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/profperm.php:114 +msgid "Visible To" +msgstr "Sichtbar für" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Alle Kontakte (mit gesichertem Profilzugriff)" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Möchtest du wirklich diese Empfehlung löschen?" + +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Kontaktvorschläge" + +#: ../../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/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Verbinden" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verbergen" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Zugriff verweigert." + +#: ../../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/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Verwalte Identitäten und/oder Seiten" + +#: ../../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/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wähle eine Identität zum Verwalten: " #: ../../mod/delegate.php:95 msgid "No potential page delegates located." msgstr "Keine potentiellen Bevollmächtigten für die Seite gefunden." +#: ../../mod/delegate.php:121 ../../include/nav.php:165 +msgid "Delegate Page Management" +msgstr "Delegiere das Management für die Seite" + #: ../../mod/delegate.php:123 msgid "" "Delegates are able to manage all aspects of this account/page except for " @@ -7676,6 +4278,18 @@ msgstr "Hinzufügen" msgid "No entries." msgstr "Keine Einträge" +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "Keine Kontakte." + +#: ../../mod/viewcontacts.php:76 ../../include/text.php:718 +msgid "View Contacts" +msgstr "Kontakte anzeigen" + +#: ../../mod/notes.php:44 ../../boot.php:1892 +msgid "Personal Notes" +msgstr "Persönliche Notizen" + #: ../../mod/poke.php:192 msgid "Poke/Prod" msgstr "Anstupsen etc." @@ -7696,567 +4310,138 @@ msgstr "Was willst du mit dem Empfänger machen:" msgid "Make this post private" msgstr "Diesen Beitrag privat machen" -#: ../../mod/dfrn_confirm.php:119 +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "Weltweites Verzeichnis" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Auf diesem Server suchen" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Verzeichnis" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Geschlecht:" + +#: ../../mod/directory.php:136 ../../boot.php:1408 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Geschlecht:" + +#: ../../mod/directory.php:138 ../../boot.php:1411 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Status:" + +#: ../../mod/directory.php:140 ../../boot.php:1413 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Über:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." + +#: ../../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/localtime.php:24 +msgid "Time Conversion" +msgstr "Zeitumrechnung" + +#: ../../mod/localtime.php:26 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." +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica bietet diese Funktion an, um das Teilen von Events mit Kontakten zu vereinfachen, deren Zeitzone nicht ermittelt werden kann." -#: ../../mod/dfrn_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 +#: ../../mod/localtime.php:30 #, php-format -msgid "No user record found for '%s' " -msgstr "Für '%s' wurde kein Nutzer gefunden" +msgid "UTC time: %s" +msgstr "UTC Zeit: %s" -#: ../../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 +#: ../../mod/localtime.php:33 #, 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." +msgid "Current timezone: %s" +msgstr "Aktuelle Zeitzone: %s" -#: ../../mod/dfrn_confirm.php:638 +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Umgerechnete lokale Zeit: %s" + +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Bitte wähle deine Zeitzone." + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Beitrag erfolgreich veröffentlicht." + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen." + +#: ../../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/profile_photo.php:118 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." +"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/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/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Bild konnte nicht verarbeitet 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/profile_photo.php:242 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "Auf %s wurde die Verbindung akzeptiert" +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Profil auswählen" -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s ist %2$s beigetreten" +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Hochladen" -#: ../../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/profile_photo.php:248 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Diese Kontaktanfrage wurde bereits akzeptiert." +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wähle ein Foto von deinen Fotoalben" -#: ../../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/profile_photo.php:262 +msgid "Crop Image" +msgstr "Bild zurechtschneiden" -#: ../../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/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/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/profile_photo.php:265 +msgid "Done Editing" +msgstr "Bearbeitung abgeschlossen" -#: ../../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" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Kontaktanfrage abgeschlossen." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Nicht behebbarer Protokollfehler." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil nicht verfügbar." - -#: ../../mod/dfrn_request.php:262 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s hat heute zu viele Freundschaftsanfragen erhalten." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Maßnahmen zum Spamschutz wurden ergriffen." - -#: ../../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." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Ungültiger Locator" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Ungültige E-Mail Adresse." - -#: ../../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." - -#: ../../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." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Du hast dich hier bereits vorgestellt." - -#: ../../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." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Ungültige Profil-URL." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Deine Kontaktanfrage wurde gesendet." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Bitte melde dich an, um die Kontaktanfrage zu bestätigen." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem Profil an." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Verberge diesen Kontakt" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Willkommen zurück %s." - -#: ../../mod/dfrn_request.php:674 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Bitte bestätige deine Kontaktanfrage bei %s." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Bestätigen" - -#: ../../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:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)" - -#: ../../mod/dfrn_request.php:829 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link um einen öffentlichen Friendica-Server zu finden und beizutreten." - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Freundschafts-/Kontaktanfrage" - -#: ../../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" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Bitte beantworte Folgendes:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Kennt %s dich?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Eine persönliche Notiz beifügen:" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../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." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Adresse deines Profils:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Anfrage abschicken" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt %2$s %3$s" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "Möchtest du wirklich diese Empfehlung löschen?" - -#: ../../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/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verbergen" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Personensuche" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Keine Übereinstimmungen" - -#: ../../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." - -#: ../../mod/display.php:177 -msgid "Item has been removed." -msgstr "Eintrag wurde entfernt." - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag entfernt" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Gegenstands-Tag entfernen" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wähle ein Tag zum Entfernen aus: " - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Beitrag nicht gefunden" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Beitrag bearbeiten" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Der Veranstaltungstitel und die Anfangszeit müssen angegeben werden." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Veranstaltung bearbeiten" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Neue Veranstaltung erstellen" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "Stunde:Minute" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Veranstaltungsdetails" - -#: ../../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." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Veranstaltungsbeginn:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Benötigt" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "Enddatum/-zeit ist nicht bekannt oder nicht relevant" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Veranstaltungsende:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "An Zeitzone des Betrachters anpassen" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Beschreibung" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titel:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Veranstaltung teilen" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "Dateien" - -#: ../../mod/uexport.php:72 -msgid "Export account" -msgstr "Account exportieren" - -#: ../../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/uexport.php:73 -msgid "Export all" -msgstr "Alles exportieren" - -#: ../../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/filer.php:30 -msgid "- select -" -msgstr "- auswählen -" - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "Import" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Account umziehen" - -#: ../../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." - -#: ../../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." - -#: ../../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" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "Account Datei" - -#: ../../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\"" - -#: ../../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]" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Kontakt hinzugefügt" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Dies ist Friendica, Version" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "die unter folgender Webadresse zu finden ist" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Bitte besuche Friendica.com, um mehr über das Friendica Projekt zu erfahren." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" - -#: ../../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" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Erweiterungen/Apps" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "Keine Plugins/Erweiterungen/Apps installiert" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kontaktvorschlag gesendet." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kontakte vorschlagen" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Schlage %s einen Kontakt vor" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppe erstellt." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Konnte die Gruppe nicht erstellen." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppe nicht gefunden." - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Gruppenname geändert." - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Eine Gruppe von Kontakten/Freunden anlegen." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Gruppenname:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Gruppe entfernt." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Konnte die Gruppe nicht entfernen." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Gruppeneditor" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Mitglieder" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Kein Profil" - -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "Hilfe:" - -#: ../../mod/help.php:90 ../../index.php:226 -msgid "Not Found" -msgstr "Nicht gefunden" - -#: ../../mod/help.php:93 ../../index.php:229 -msgid "Page not found." -msgstr "Seite nicht gefunden." - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "Keine Kontakte." - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "Zugriff verweigert." - -#: ../../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/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Hochladen der Datei fehlgeschlagen." +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Bild erfolgreich auf den Server geladen." #: ../../mod/install.php:117 msgid "Friendica Social Communications Server - Setup" @@ -8541,286 +4726,74 @@ msgid "" "poller." msgstr "WICHTIG: Du musst [manuell] einen Cronjob (o.ä.) für den Poller einrichten." -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppe erstellt." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Konnte die Gruppe nicht erstellen." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppe nicht gefunden." + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Gruppenname geändert." + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Eine Gruppe von Kontakten/Freunden anlegen." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Gruppenname:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Gruppe entfernt." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Konnte die Gruppe nicht entfernen." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Gruppeneditor" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Mitglieder" + +#: ../../mod/content.php:119 ../../mod/network.php:596 +msgid "No such group" +msgstr "Es gibt keine solche Gruppe" + +#: ../../mod/content.php:130 ../../mod/network.php:607 +msgid "Group is empty" +msgstr "Gruppe ist leer" + +#: ../../mod/content.php:134 ../../mod/network.php:611 +msgid "Group: " +msgstr "Gruppe: " + +#: ../../mod/content.php:520 ../../include/conversation.php:662 +msgid "View in context" +msgstr "Im Zusammenhang betrachten" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Konto freigegeben." + +#: ../../mod/regmod.php:100 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "Bildgröße überschreitet das Limit von %d" +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde zurückgezogen" -#: ../../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." - -#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 -#: ../../mod/profile_photo.php:301 -msgid "Image upload failed." -msgstr "Hochladen des Bildes gescheitert." - -#: ../../mod/invite.php:27 -msgid "Total invitation limit exceeded." -msgstr "Limit für Einladungen erreicht." - -#: ../../mod/invite.php:49 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Keine gültige Email Adresse." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Bitte trete bei uns auf Friendica bei" - -#: ../../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/invite.php:89 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Zustellung der Nachricht fehlgeschlagen." - -#: ../../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." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren Einladungen" - -#: ../../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/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/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/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/invite.php:132 -msgid "Send invitations" -msgstr "Einladungen senden" - -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" - -#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 -#: ../../mod/message.php:329 ../../mod/message.php:558 -msgid "Your message:" -msgstr "Deine Nachricht:" - -#: ../../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/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Du benötigst den folgenden Einladungscode: $invite_code" - -#: ../../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/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/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." - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Kein Empfänger gewählt." - -#: ../../mod/wallmessage.php:59 -msgid "Unable to check your home location." -msgstr "Konnte deinen Heimatort nicht bestimmen." - -#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 -msgid "Message could not be sent." -msgstr "Nachricht konnte nicht gesendet werden." - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "Konnte Nachrichten nicht abrufen." - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Nachricht gesendet." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Kein Empfänger." - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Private Nachricht senden" - -#: ../../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." - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "An:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Betreff:" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zeitumrechnung" - -#: ../../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/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC Zeit: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Aktuelle Zeitzone: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Umgerechnete lokale Zeit: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Bitte wähle deine Zeitzone." - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Entfernte Privatsphäreneinstellungen nicht verfügbar." - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe deine E-Mail." - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" - -#: ../../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." - -#: ../../mod/lostpass.php:84 ../../boot.php:1072 -msgid "Password Reset" -msgstr "Passwort zurücksetzen" - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere dein neues Passwort - und dann" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "hier klicken, um dich anzumelden" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "Auf %s wurde dein Passwort geändert" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Hast du dein Passwort vergessen?" - -#: ../../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." - -#: ../../mod/lostpass.php:124 -msgid "Nickname or Email: " -msgstr "Spitzname oder E-Mail:" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zurücksetzen" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" -msgstr "System zur Wartung abgeschaltet" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Verwalte Identitäten und/oder Seiten" - -#: ../../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/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wähle eine Identität zum Verwalten: " +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Bitte melde dich an." #: ../../mod/match.php:12 msgid "Profile Match" @@ -8834,73 +4807,45 @@ msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schl msgid "is interested in:" msgstr "ist interessiert an:" -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Konnte die Kontaktinformationen nicht finden." +#: ../../mod/item.php:105 +msgid "Unable to locate original post." +msgstr "Konnte den Originalbeitrag nicht finden." -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "Möchtest du wirklich diese Nachricht löschen?" +#: ../../mod/item.php:307 +msgid "Empty post discarded." +msgstr "Leerer Beitrag wurde verworfen." -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Nachricht gelöscht." +#: ../../mod/item.php:869 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag konnte nicht gespeichert werden." -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Unterhaltung gelöscht." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Keine Nachrichten." - -#: ../../mod/message.php:378 +#: ../../mod/item.php:894 #, php-format -msgid "Unknown sender - %s" -msgstr "'Unbekannter Absender - %s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Du und %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s und du" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d. M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d Nachricht" -msgstr[1] "%d Nachrichten" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Nachricht nicht verfügbar." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Nachricht löschen" - -#: ../../mod/message.php:548 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Sichere Kommunikation ist nicht verfügbar. Eventuell kannst du auf der Profilseite des Absenders antworten." +"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/message.php:552 -msgid "Send Reply" -msgstr "Antwort senden" +#: ../../mod/item.php:896 +#, php-format +msgid "You may visit them online at %s" +msgstr "Du kannst sie online unter %s besuchen" + +#: ../../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/item.php:901 +#, php-format +msgid "%s posted an update." +msgstr "%s hat ein Update veröffentlicht." + +#: ../../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/mood.php:133 msgid "Mood" @@ -8914,6 +4859,10 @@ msgstr "Wähle deine aktuelle Stimmung und erzähle sie deinen Freunden" msgid "Search Results For:" msgstr "Suchergebnisse für:" +#: ../../mod/network.php:234 ../../include/group.php:275 +msgid "add" +msgstr "hinzufügen" + #: ../../mod/network.php:397 msgid "Commented Order" msgstr "Neueste Kommentare" @@ -8930,10 +4879,6 @@ msgstr "Neueste Beiträge" msgid "Sort by Post Date" msgstr "Nach Beitragsdatum sortieren" -#: ../../mod/network.php:444 ../../mod/notifications.php:88 -msgid "Personal" -msgstr "Persönlich" - #: ../../mod/network.php:447 msgid "Posts that mention or involve you" msgstr "Beiträge, in denen es um dich geht" @@ -8974,18 +4919,6 @@ msgstr[1] "Warnung: Diese Gruppe beinhaltet %s Personen aus unsicheren Netzwerke 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/network.php:596 ../../mod/content.php:119 -msgid "No such group" -msgstr "Es gibt keine solche Gruppe" - -#: ../../mod/network.php:607 ../../mod/content.php:130 -msgid "Group is empty" -msgstr "Gruppe ist leer" - -#: ../../mod/network.php:611 ../../mod/content.php:134 -msgid "Group: " -msgstr "Gruppe: " - #: ../../mod/network.php:621 msgid "Contact: " msgstr "Kontakt: " @@ -8998,729 +4931,217 @@ msgstr "Private Nachrichten an diese Person könnten an die Öffentlichkeit gela msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Nicht verfügbar." +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Einstellungen zum Kontakt angewandt." -#: ../../mod/photos.php:51 ../../boot.php:1878 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Konnte den Kontakt nicht aktualisieren." -#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Kontakteinstellungen reparieren" -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "Kontaktinformationen nicht verfügbar" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album nicht gefunden." - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 -msgid "Delete Album" -msgstr "Album löschen" - -#: ../../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?" - -#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 -msgid "Delete Photo" -msgstr "Foto löschen" - -#: ../../mod/photos.php:285 -msgid "Do you really want to delete this photo?" -msgstr "Möchtest du wirklich dieses Foto löschen?" - -#: ../../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" - -#: ../../mod/photos.php:656 -msgid "a photo" -msgstr "einem Foto" - -#: ../../mod/photos.php:769 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." - -#: ../../mod/photos.php:924 -msgid "No photos selected" -msgstr "Keine Bilder ausgewählt" - -#: ../../mod/photos.php:1025 -msgid "Access to this item is restricted." -msgstr "Zugriff zu diesem Eintrag wurde eingeschränkt." - -#: ../../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." - -#: ../../mod/photos.php:1123 -msgid "Upload Photos" -msgstr "Bilder hochladen" - -#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 -msgid "New album name: " -msgstr "Name des neuen Albums: " - -#: ../../mod/photos.php:1128 -msgid "or existing album name: " -msgstr "oder existierender Albumname: " - -#: ../../mod/photos.php:1129 -msgid "Do not show a status post for this upload" -msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" - -#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../mod/photos.php:1142 -msgid "Private Photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:1143 -msgid "Public Photo" -msgstr "Öffentliches Foto" - -#: ../../mod/photos.php:1210 -msgid "Edit Album" -msgstr "Album bearbeiten" - -#: ../../mod/photos.php:1216 -msgid "Show Newest First" -msgstr "Zeige neueste zuerst" - -#: ../../mod/photos.php:1218 -msgid "Show Oldest First" -msgstr "Zeige älteste zuerst" - -#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 -msgid "View Photo" -msgstr "Foto betrachten" - -#: ../../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." - -#: ../../mod/photos.php:1288 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" - -#: ../../mod/photos.php:1344 -msgid "View photo" -msgstr "Fotos ansehen" - -#: ../../mod/photos.php:1344 -msgid "Edit photo" -msgstr "Foto bearbeiten" - -#: ../../mod/photos.php:1345 -msgid "Use as profile photo" -msgstr "Als Profilbild verwenden" - -#: ../../mod/photos.php:1351 ../../mod/content.php:643 -#: ../../object/Item.php:106 -msgid "Private Message" -msgstr "Private Nachricht" - -#: ../../mod/photos.php:1370 -msgid "View Full Size" -msgstr "Betrachte Originalgröße" - -#: ../../mod/photos.php:1444 -msgid "Tags: " -msgstr "Tags: " - -#: ../../mod/photos.php:1447 -msgid "[Remove any tag]" -msgstr "[Tag entfernen]" - -#: ../../mod/photos.php:1487 -msgid "Rotate CW (right)" -msgstr "Drehen US (rechts)" - -#: ../../mod/photos.php:1488 -msgid "Rotate CCW (left)" -msgstr "Drehen EUS (links)" - -#: ../../mod/photos.php:1490 -msgid "New album name" -msgstr "Name des neuen Albums" - -#: ../../mod/photos.php:1493 -msgid "Caption" -msgstr "Bildunterschrift" - -#: ../../mod/photos.php:1495 -msgid "Add a Tag" -msgstr "Tag hinzufügen" - -#: ../../mod/photos.php:1499 +#: ../../mod/crepair.php:137 msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr." -#: ../../mod/photos.php:1508 -msgid "Private photo" -msgstr "Privates Foto" - -#: ../../mod/photos.php:1509 -msgid "Public photo" -msgstr "Öffentliches Foto" - -#: ../../mod/photos.php:1529 ../../mod/content.php:707 -#: ../../object/Item.php:223 -msgid "I like this (toggle)" -msgstr "Ich mag das (toggle)" - -#: ../../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)" - -#: ../../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" - -#: ../../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" - -#: ../../mod/photos.php:1784 -msgid "View Album" -msgstr "Album betrachten" - -#: ../../mod/photos.php:1793 -msgid "Recent Photos" -msgstr "Neueste Fotos" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Willkommen bei Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Checkliste für neue Mitglieder" - -#: ../../mod/newmember.php:12 +#: ../../mod/crepair.php:138 msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Wir möchten dir einige Tipps und Links anbieten, die dir helfen könnten, den Einstieg angenehmer zu machen. Klicke auf ein Element, um die entsprechende Seite zu besuchen. Ein Link zu dieser Seite hier bleibt für dich an Deiner Pinnwand für zwei Wochen nach dem Registrierungsdatum sichtbar und wird dann verschwinden." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "Einstieg" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica Rundgang" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "Auf der Quick Start 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/newmember.php:26 -msgid "Go to Your Settings" -msgstr "Gehe zu deinen Einstellungen" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings 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 Einstellungen 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/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/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Profilbild hochladen" - -#: ../../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/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Editiere dein Profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Editiere dein Standard Profil nach deinen Vorlieben. Überprüfe die Einstellungen zum Verbergen deiner Freundesliste vor unbekannten Betrachtern des Profils." - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Profil Schlüsselbegriffe" - -#: ../../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/newmember.php:44 -msgid "Connecting" -msgstr "Verbindungen knüpfen" - -#: ../../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/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "Wenn dies dein privater Server ist, könnte die Installation des Facebook Connectors deinen Umzug ins freie soziale Netz angenehmer gestalten." - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Emails Importieren" - -#: ../../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." - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Gehe zu deiner Kontakt-Seite" - -#: ../../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 Add New Contact 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 Neuen Kontakt hinzufügen ein." - -#: ../../mod/newmember.php:60 -msgid "Go to Your Site's Directory" -msgstr "Gehe zum Verzeichnis deiner Friendica Instanz" - -#: ../../mod/newmember.php:60 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow 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 Verbinden oder Folgen Link auf deren Profilseiten Ausschau und gib deine eigene Profiladresse an, falls du danach gefragt wirst." - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Neue Leute kennenlernen" - -#: ../../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/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Gruppiere deine Kontakte" - -#: ../../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/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Warum sind meine Beiträge nicht öffentlich?" - -#: ../../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/newmember.php:78 -msgid "Getting Help" -msgstr "Hilfe bekommen" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Zum Hilfe Abschnitt gehen" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "Unsere Hilfe Seiten können herangezogen werden, um weitere Einzelheiten zu andern Programm Features zu erhalten." - -#: ../../mod/profile.php:21 ../../boot.php:1246 -msgid "Requested profile is not available." -msgstr "Das angefragte Profil ist nicht vorhanden." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Tipps für neue Nutzer" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Invalid request identifier." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Verwerfen" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Zeige ignorierte Anfragen" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Verberge ignorierte Anfragen" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Benachrichtigungstyp: " - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Kontaktvorschlag" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "vorgeschlagen von %s" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "Neue-Kontakt Nachricht senden" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "falls anwendbar" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Behauptet dich zu kennen: " - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "ja" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nein" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Genehmigen als: " - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Freund" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "Teilenden" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan/Verehrer" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Kontakt-/Freundschaftsanfrage" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Neuer Bewunderer" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Keine Kontaktanfragen." - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s hat einen neuen Beitrag erstellt" - -#: ../../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" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Keine weiteren Netzwerk-Benachrichtigungen." - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Netzwerk Benachrichtigungen" - -#: ../../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" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Keine weiteren persönlichen Benachrichtigungen" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Persönliche Benachrichtigungen" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Keine weiteren Pinnwand-Benachrichtigungen" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Pinnwand Benachrichtigungen" - -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "Beitrag erfolgreich veröffentlicht." - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." - -#: ../../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." - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Bilder hochgeladen, aber das Zuschneiden ist fehlgeschlagen." - -#: ../../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/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/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Bild konnte nicht verarbeitet werden" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Datei hochladen:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Profil auswählen" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wähle ein Foto von deinen Fotoalben" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Bild zurechtschneiden" - -#: ../../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/profile_photo.php:265 -msgid "Done Editing" -msgstr "Bearbeitung abgeschlossen" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Bild erfolgreich auf den Server geladen." - -#: ../../mod/content.php:626 ../../object/Item.php:352 -#, 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" - -#: ../../mod/content.php:708 ../../object/Item.php:224 -msgid "dislike" -msgstr "mag ich nicht" - -#: ../../mod/content.php:710 ../../object/Item.php:226 -msgid "Share this" -msgstr "Weitersagen" - -#: ../../mod/content.php:710 ../../object/Item.php:226 -msgid "share" -msgstr "Teilen" - -#: ../../mod/content.php:734 ../../object/Item.php:644 -msgid "Bold" -msgstr "Fett" - -#: ../../mod/content.php:735 ../../object/Item.php:645 -msgid "Italic" -msgstr "Kursiv" - -#: ../../mod/content.php:736 ../../object/Item.php:646 -msgid "Underline" -msgstr "Unterstrichen" - -#: ../../mod/content.php:737 ../../object/Item.php:647 -msgid "Quote" -msgstr "Zitat" - -#: ../../mod/content.php:738 ../../object/Item.php:648 -msgid "Code" -msgstr "Code" - -#: ../../mod/content.php:739 ../../object/Item.php:649 -msgid "Image" -msgstr "Bild" - -#: ../../mod/content.php:740 ../../object/Item.php:650 -msgid "Link" -msgstr "Verweis" - -#: ../../mod/content.php:741 ../../object/Item.php:651 -msgid "Video" -msgstr "Video" - -#: ../../mod/content.php:776 ../../object/Item.php:202 -msgid "add star" -msgstr "markieren" - -#: ../../mod/content.php:777 ../../object/Item.php:203 -msgid "remove star" -msgstr "Markierung entfernen" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Bitte nutze den Zurück-Button deines Browsers jetzt, wenn du dir unsicher bist, was du tun willst." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Zurück zum Kontakteditor" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Konto-Spitzname" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Tagname - überschreibt Name/Spitzname" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "Konto-URL" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "URL für Freundschaftsanfragen" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "URL für Bestätigungen von Freundschaftsanfragen" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "URL-Endpunkt für Benachrichtigungen" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "Pull/Feed-URL" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Neues Foto von dieser URL" + +#: ../../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" + +#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Deine Profilseite" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "Deine Kontakte" + +#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Deine Fotos" + +#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79 +msgid "Your events" +msgstr "Deine Ereignisse" + +#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Persönliche Notizen" + +#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Deine privaten Fotos" + +#: ../../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" + +#: ../../view/theme/diabook/theme.php:384 +#: ../../view/theme/diabook/theme.php:634 +#: ../../view/theme/diabook/config.php:165 +msgid "Community Profiles" +msgstr "Community-Profile" + +#: ../../view/theme/diabook/theme.php:405 +#: ../../view/theme/diabook/theme.php:639 +#: ../../view/theme/diabook/config.php:170 +msgid "Last users" +msgstr "Letzte Nutzer" + +#: ../../view/theme/diabook/theme.php:434 +#: ../../view/theme/diabook/theme.php:641 +#: ../../view/theme/diabook/config.php:172 +msgid "Last likes" +msgstr "Zuletzt gemocht" + +#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "Veranstaltung" + +#: ../../view/theme/diabook/theme.php:479 +#: ../../view/theme/diabook/theme.php:640 +#: ../../view/theme/diabook/config.php:171 +msgid "Last photos" +msgstr "Letzte Fotos" + +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +#: ../../view/theme/diabook/config.php:168 +msgid "Find Friends" +msgstr "Freunde finden" + +#: ../../view/theme/diabook/theme.php:517 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" + +#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35 +msgid "Similar Interests" +msgstr "Ähnliche Interessen" + +#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37 +msgid "Invite Friends" +msgstr "Freunde einladen" + +#: ../../view/theme/diabook/theme.php:572 +#: ../../view/theme/diabook/theme.php:633 +#: ../../view/theme/diabook/config.php:164 +msgid "Earth Layers" +msgstr "Earth Layers" + +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" +msgstr "Zoomfaktor der Earth Layer" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:636 +#: ../../view/theme/diabook/config.php:167 +msgid "Connect Services" +msgstr "Verbinde Dienste" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:638 +msgid "Last Tweets" +msgstr "Neueste Tweets" + +#: ../../view/theme/diabook/theme.php:609 +#: ../../view/theme/diabook/config.php:159 +msgid "Set twitter search term" +msgstr "Twitter Suchbegriff" + +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327 +msgid "don't show" +msgstr "nicht zeigen" + +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326 +msgid "show" +msgstr "zeigen" + +#: ../../view/theme/diabook/theme.php:630 +msgid "Show/hide boxes at right-hand column:" +msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" -#: ../../mod/content.php:778 ../../object/Item.php:204 -msgid "toggle star status" -msgstr "Markierung umschalten" - -#: ../../mod/content.php:781 ../../object/Item.php:207 -msgid "starred" -msgstr "markiert" - -#: ../../mod/content.php:782 ../../object/Item.php:212 -msgid "add tag" -msgstr "Tag hinzufügen" - -#: ../../mod/content.php:786 ../../object/Item.php:123 -msgid "save to folder" -msgstr "In Ordner speichern" - -#: ../../mod/content.php:877 ../../object/Item.php:299 -msgid "to" -msgstr "zu" - -#: ../../mod/content.php:878 ../../object/Item.php:301 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../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 "via" - -#: ../../view/theme/cleanzero/config.php:82 #: ../../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" -#: ../../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)" - -#: ../../view/theme/cleanzero/config.php:84 #: ../../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" -#: ../../view/theme/cleanzero/config.php:85 -msgid "Set theme width" -msgstr "Theme Breite festlegen" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -msgstr "Farbschema" - #: ../../view/theme/diabook/config.php:156 #: ../../view/theme/dispy/config.php:74 msgid "Set line-height for posts and comments" @@ -9734,105 +5155,14 @@ msgstr "Auflösung für die Mittelspalte setzen" msgid "Set color scheme" msgstr "Wähle Farbschema" -#: ../../view/theme/diabook/config.php:159 -#: ../../view/theme/diabook/theme.php:609 -msgid "Set twitter search term" -msgstr "Twitter Suchbegriff" - #: ../../view/theme/diabook/config.php:160 msgid "Set zoomfactor for Earth Layer" msgstr "Zoomfaktor der Earth Layer" -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../view/theme/diabook/config.php:164 -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -msgid "Earth Layers" -msgstr "Earth Layers" - -#: ../../view/theme/diabook/config.php:165 -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -msgid "Community Profiles" -msgstr "Community-Profile" - -#: ../../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" - -#: ../../view/theme/diabook/config.php:167 -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -msgid "Connect Services" -msgstr "Verbinde Dienste" - -#: ../../view/theme/diabook/config.php:168 -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -msgid "Find Friends" -msgstr "Freunde finden" - #: ../../view/theme/diabook/config.php:169 msgid "Last tweets" msgstr "Neueste Tweets" -#: ../../view/theme/diabook/config.php:170 -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -msgid "Last users" -msgstr "Letzte Nutzer" - -#: ../../view/theme/diabook/config.php:171 -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -msgid "Last photos" -msgstr "Letzte Fotos" - -#: ../../view/theme/diabook/config.php:172 -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -msgid "Last likes" -msgstr "Zuletzt gemocht" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "Deine Kontakte" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "Zoomfaktor der Earth Layer" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "Neueste Tweets" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "Rahmen auf der rechten Seite anzeigen/verbergen" - #: ../../view/theme/dispy/config.php:75 msgid "Set colour scheme" msgstr "Farbschema wählen" @@ -9849,6 +5179,11 @@ msgstr "Links" msgid "Center" msgstr "Mitte" +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Farbschema" + #: ../../view/theme/quattro/config.php:69 msgid "Posts font size" msgstr "Schriftgröße in Beiträgen" @@ -9857,6 +5192,14 @@ msgstr "Schriftgröße in Beiträgen" msgid "Textareas font size" msgstr "Schriftgröße in Eingabefeldern" +#: ../../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)" + +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Theme Breite festlegen" + #: ../../boot.php:650 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" @@ -9879,6 +5222,14 @@ msgstr "Updatefehler bei %s" msgid "Create a New Account" msgstr "Neues Konto erstellen" +#: ../../boot.php:1057 ../../include/nav.php:73 +msgid "Logout" +msgstr "Abmelden" + +#: ../../boot.php:1058 ../../include/nav.php:91 +msgid "Login" +msgstr "Anmeldung" + #: ../../boot.php:1060 msgid "Nickname or Email address: " msgstr "Spitzname oder E-Mail-Adresse: " @@ -9927,6 +5278,10 @@ msgstr "Profil bearbeiten" msgid "Message" msgstr "Nachricht" +#: ../../boot.php:1360 ../../include/nav.php:169 +msgid "Profiles" +msgstr "Profile" + #: ../../boot.php:1360 msgid "Manage/edit profiles" msgstr "Profile verwalten/editieren" @@ -9963,6 +5318,10 @@ msgstr "Veranstaltungserinnerungen" msgid "Events this week:" msgstr "Veranstaltungen diese Woche" +#: ../../boot.php:1861 ../../include/nav.php:76 +msgid "Status" +msgstr "Status" + #: ../../boot.php:1864 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" @@ -9979,6 +5338,1702 @@ msgstr "Ereignisse und Kalender" msgid "Only You Can See This" msgstr "Nur du kannst das sehen" -#: ../../index.php:400 -msgid "toggle mobile" -msgstr "auf/von Mobile Ansicht wechseln" +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Allgemeine Features" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Mehrere Profile" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Möglichkeit mehrere Profile zu erstellen" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Beitragserstellung Features" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Web-Editor" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Den Web-Editor für neue Beiträge aktivieren" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Beitragsvorschau" + +#: ../../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." + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "Widgets für Netzwerk und Seitenleiste" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "Archiv" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit die Beiträge nach Datumsbereichen zu sortieren" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "Gruppen Filter" + +#: ../../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." + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "Netzwerk Filter" + +#: ../../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." + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "Speichere Suchanfragen für spätere Wiederholung." + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "Netzwerk Reiter" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "Netzwerk-Reiter: Persönlich" + +#: ../../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" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "Netzwerk-Reiter: Neue" + +#: ../../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" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "Netzwerk-Reiter: Geteilte Links" + +#: ../../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" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "Werkzeuge für Beiträge und Kommentare" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "Mehrere Beiträge löschen" + +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "Mehrere Beiträge/Kommentare markieren und gleichzeitig löschen" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "Gesendete Beiträge editieren" + +#: ../../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." + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "Tagging" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "Möglichkeit bereits existierende Beiträge nachträglich mit Tags zu versehen." + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "Beitragskategorien" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "Eigene Beiträge mit Kategorien versehen" + +#: ../../include/features.php:59 ../../include/contact_widgets.php:103 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "Beiträge in Ordnern speichern aktivieren" + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "Beiträge 'nicht mögen'" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "Ermöglicht es Beiträge mit einem Klick 'nicht zu mögen'" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "Beiträge Markieren" + +#: ../../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" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Abgemeldet." + +#: ../../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." + +#: ../../include/auth.php:128 +msgid "The error message was:" +msgstr "Die Fehlermeldung lautete:" + +#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 +msgid "Starts:" +msgstr "Beginnt:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +msgid "Finishes:" +msgstr "Endet:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Geburtstag:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Alter:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "für %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tags" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religion:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobbies/Interessen:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformationen und Soziale Netzwerke:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Literatur/Bücher:" + +#: ../../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:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Liebesleben:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Arbeit/Beschäftigung:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Schule/Ausbildung:" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[kein Betreff]" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr " bei Last.fm" + +#: ../../include/text.php:276 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:278 +msgid "first" +msgstr "erste" + +#: ../../include/text.php:307 +msgid "last" +msgstr "letzte" + +#: ../../include/text.php:310 +msgid "next" +msgstr "nächste" + +#: ../../include/text.php:328 +msgid "newer" +msgstr "neuer" + +#: ../../include/text.php:332 +msgid "older" +msgstr "älter" + +#: ../../include/text.php:697 +msgid "No contacts" +msgstr "Keine Kontakte" + +#: ../../include/text.php:706 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d Kontakt" +msgstr[1] "%d Kontakte" + +#: ../../include/text.php:819 +msgid "poke" +msgstr "anstupsen" + +#: ../../include/text.php:819 ../../include/conversation.php:211 +msgid "poked" +msgstr "stupste" + +#: ../../include/text.php:820 +msgid "ping" +msgstr "anpingen" + +#: ../../include/text.php:820 +msgid "pinged" +msgstr "pingte" + +#: ../../include/text.php:821 +msgid "prod" +msgstr "knuffen" + +#: ../../include/text.php:821 +msgid "prodded" +msgstr "knuffte" + +#: ../../include/text.php:822 +msgid "slap" +msgstr "ohrfeigen" + +#: ../../include/text.php:822 +msgid "slapped" +msgstr "ohrfeigte" + +#: ../../include/text.php:823 +msgid "finger" +msgstr "befummeln" + +#: ../../include/text.php:823 +msgid "fingered" +msgstr "befummelte" + +#: ../../include/text.php:824 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" + +#: ../../include/text.php:824 +msgid "rebuffed" +msgstr "abfuhrerteilte" + +#: ../../include/text.php:836 +msgid "happy" +msgstr "glücklich" + +#: ../../include/text.php:837 +msgid "sad" +msgstr "traurig" + +#: ../../include/text.php:838 +msgid "mellow" +msgstr "sanft" + +#: ../../include/text.php:839 +msgid "tired" +msgstr "müde" + +#: ../../include/text.php:840 +msgid "perky" +msgstr "frech" + +#: ../../include/text.php:841 +msgid "angry" +msgstr "sauer" + +#: ../../include/text.php:842 +msgid "stupified" +msgstr "verblüfft" + +#: ../../include/text.php:843 +msgid "puzzled" +msgstr "verwirrt" + +#: ../../include/text.php:844 +msgid "interested" +msgstr "interessiert" + +#: ../../include/text.php:845 +msgid "bitter" +msgstr "verbittert" + +#: ../../include/text.php:846 +msgid "cheerful" +msgstr "fröhlich" + +#: ../../include/text.php:847 +msgid "alive" +msgstr "lebendig" + +#: ../../include/text.php:848 +msgid "annoyed" +msgstr "verärgert" + +#: ../../include/text.php:849 +msgid "anxious" +msgstr "unruhig" + +#: ../../include/text.php:850 +msgid "cranky" +msgstr "schrullig" + +#: ../../include/text.php:851 +msgid "disturbed" +msgstr "verstört" + +#: ../../include/text.php:852 +msgid "frustrated" +msgstr "frustriert" + +#: ../../include/text.php:853 +msgid "motivated" +msgstr "motiviert" + +#: ../../include/text.php:854 +msgid "relaxed" +msgstr "entspannt" + +#: ../../include/text.php:855 +msgid "surprised" +msgstr "überrascht" + +#: ../../include/text.php:1015 +msgid "Monday" +msgstr "Montag" + +#: ../../include/text.php:1015 +msgid "Tuesday" +msgstr "Dienstag" + +#: ../../include/text.php:1015 +msgid "Wednesday" +msgstr "Mittwoch" + +#: ../../include/text.php:1015 +msgid "Thursday" +msgstr "Donnerstag" + +#: ../../include/text.php:1015 +msgid "Friday" +msgstr "Freitag" + +#: ../../include/text.php:1015 +msgid "Saturday" +msgstr "Samstag" + +#: ../../include/text.php:1015 +msgid "Sunday" +msgstr "Sonntag" + +#: ../../include/text.php:1019 +msgid "January" +msgstr "Januar" + +#: ../../include/text.php:1019 +msgid "February" +msgstr "Februar" + +#: ../../include/text.php:1019 +msgid "March" +msgstr "März" + +#: ../../include/text.php:1019 +msgid "April" +msgstr "April" + +#: ../../include/text.php:1019 +msgid "May" +msgstr "Mai" + +#: ../../include/text.php:1019 +msgid "June" +msgstr "Juni" + +#: ../../include/text.php:1019 +msgid "July" +msgstr "Juli" + +#: ../../include/text.php:1019 +msgid "August" +msgstr "August" + +#: ../../include/text.php:1019 +msgid "September" +msgstr "September" + +#: ../../include/text.php:1019 +msgid "October" +msgstr "Oktober" + +#: ../../include/text.php:1019 +msgid "November" +msgstr "November" + +#: ../../include/text.php:1019 +msgid "December" +msgstr "Dezember" + +#: ../../include/text.php:1124 +msgid "bytes" +msgstr "Byte" + +#: ../../include/text.php:1151 ../../include/text.php:1163 +msgid "Click to open/close" +msgstr "Zum öffnen/schließen klicken" + +#: ../../include/text.php:1336 ../../include/user.php:237 +msgid "default" +msgstr "Standard" + +#: ../../include/text.php:1348 +msgid "Select an alternate language" +msgstr "Alternative Sprache auswählen" + +#: ../../include/text.php:1558 +msgid "activity" +msgstr "Aktivität" + +#: ../../include/text.php:1561 +msgid "post" +msgstr "Beitrag" + +#: ../../include/text.php:1716 +msgid "Item filed" +msgstr "Beitrag abgelegt" + +#: ../../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." + +#: ../../include/items.php:1764 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "%ss Geburtstag" + +#: ../../include/items.php:1765 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "Herzlichen Glückwunsch %s" + +#: ../../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 " + +#: ../../include/items.php:3965 +msgid "Do you really want to delete this item?" +msgstr "Möchtest du wirklich dieses Item löschen?" + +#: ../../include/items.php:4160 +msgid "Archives" +msgstr "Archiv" + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +msgstr "(kein Betreff)" + +#: ../../include/delivery.php:468 ../../include/notifier.php:785 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "noreply" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Freigabe-Benachrichtigung von Diaspora" + +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "Anhänge:" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Connect-URL fehlt" + +#: ../../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." + +#: ../../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." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Es wurde kein Autor oder Name gefunden." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Konnte die Kontaktinformationen nicht empfangen." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "folgen" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "Willkommen " + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "Bitte lade ein Profilbild hoch." + +#: ../../include/security.php:26 +msgid "Welcome back " +msgstr "Willkommen zurück " + +#: ../../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)." + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momentan männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momentan weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Hauptsächlich männlich" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Hauptsächlich weiblich" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transsexuell" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermaphrodit" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neuter" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Nicht spezifiziert" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Andere" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Unentschieden" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Männer" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Frauen" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Schwul" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Keine Vorlieben" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisexuell" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosexual" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Abstinent" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Jungfrauen" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviant" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Oodles" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Nonsexual" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Einsam" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Verfügbar" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Nicht verfügbar" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "verknallt" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "verliebt" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Dating" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Untreu" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sexbesessen" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:279 +#: ../../include/user.php:283 +msgid "Friends" +msgstr "Freunde" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Freunde/Zuwendungen" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Verlobt" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Verheiratet" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "imaginär verheiratet" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partner" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "zusammenlebend" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "wilde Ehe" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Glücklich" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Nicht auf der Suche" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Betrogen" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Getrennt" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Unstabil" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Geschieden" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "imaginär geschieden" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Verwitwet" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Unsicher" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "Ist kompliziert" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Ist mir nicht wichtig" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Frag mich" + +#: ../../include/uimport.php:61 +msgid "Error decoding account file" +msgstr "Fehler beim Verarbeiten der Account Datei" + +#: ../../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?" + +#: ../../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." + +#: ../../include/uimport.php:81 +msgid "Error! Cannot check nickname" +msgstr "Fehler! Konnte den Nickname nicht überprüfen." + +#: ../../include/uimport.php:85 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "Nutzer '%s' existiert bereits auf diesem Server!" + +#: ../../include/uimport.php:104 +msgid "User creation error" +msgstr "Fehler beim Anlegen des Nutzeraccounts aufgetreten" + +#: ../../include/uimport.php:122 +msgid "User profile creation error" +msgstr "Fehler beim Anlegen des Nutzerkontos" + +#: ../../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" + +#: ../../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" + +#: ../../include/plugin.php:439 ../../include/plugin.php:441 +msgid "Click here to upgrade." +msgstr "Zum Upgraden hier klicken." + +#: ../../include/plugin.php:447 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Obergrenze deines Abonnements." + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in deinem Abonnement nicht verfügbar." + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "Nachricht/Beitrag" + +#: ../../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" + +#: ../../include/conversation.php:728 +msgid "remove" +msgstr "löschen" + +#: ../../include/conversation.php:732 +msgid "Delete Selected Items" +msgstr "Lösche die markierten Beiträge" + +#: ../../include/conversation.php:831 +msgid "Follow Thread" +msgstr "Folge der Unterhaltung" + +#: ../../include/conversation.php:832 ../../include/Contact.php:226 +msgid "View Status" +msgstr "Pinnwand anschauen" + +#: ../../include/conversation.php:833 ../../include/Contact.php:227 +msgid "View Profile" +msgstr "Profil anschauen" + +#: ../../include/conversation.php:834 ../../include/Contact.php:228 +msgid "View Photos" +msgstr "Bilder anschauen" + +#: ../../include/conversation.php:835 ../../include/Contact.php:229 +#: ../../include/Contact.php:251 +msgid "Network Posts" +msgstr "Netzwerkbeiträge" + +#: ../../include/conversation.php:836 ../../include/Contact.php:230 +#: ../../include/Contact.php:251 +msgid "Edit Contact" +msgstr "Kontakt bearbeiten" + +#: ../../include/conversation.php:837 ../../include/Contact.php:231 +#: ../../include/Contact.php:251 +msgid "Send PM" +msgstr "Private Nachricht senden" + +#: ../../include/conversation.php:838 ../../include/Contact.php:225 +msgid "Poke" +msgstr "Anstupsen" + +#: ../../include/conversation.php:900 +#, php-format +msgid "%s likes this." +msgstr "%s mag das." + +#: ../../include/conversation.php:900 +#, php-format +msgid "%s doesn't like this." +msgstr "%s mag das nicht." + +#: ../../include/conversation.php:905 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d Personen mögen das" + +#: ../../include/conversation.php:908 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d Personen mögen das nicht" + +#: ../../include/conversation.php:922 +msgid "and" +msgstr "und" + +#: ../../include/conversation.php:928 +#, php-format +msgid ", and %d other people" +msgstr " und %d andere" + +#: ../../include/conversation.php:930 +#, php-format +msgid "%s like this." +msgstr "%s mögen das." + +#: ../../include/conversation.php:930 +#, php-format +msgid "%s don't like this." +msgstr "%s mögen das nicht." + +#: ../../include/conversation.php:957 ../../include/conversation.php:975 +msgid "Visible to everybody" +msgstr "Für jedermann sichtbar" + +#: ../../include/conversation.php:959 ../../include/conversation.php:977 +msgid "Please enter a video link/URL:" +msgstr "Bitte Link/URL zum Video einfügen:" + +#: ../../include/conversation.php:960 ../../include/conversation.php:978 +msgid "Please enter an audio link/URL:" +msgstr "Bitte Link/URL zum Audio einfügen:" + +#: ../../include/conversation.php:961 ../../include/conversation.php:979 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../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?" + +#: ../../include/conversation.php:1006 +msgid "Post to Email" +msgstr "An E-Mail senden" + +#: ../../include/conversation.php:1062 +msgid "permissions" +msgstr "Zugriffsrechte" + +#: ../../include/conversation.php:1086 +msgid "Post to Groups" +msgstr "Poste an Gruppe" + +#: ../../include/conversation.php:1087 +msgid "Post to Contacts" +msgstr "Poste an Kontakte" + +#: ../../include/conversation.php:1088 +msgid "Private post" +msgstr "Privater Beitrag" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Neuen Kontakt hinzufügen" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Adresse oder Web-Link eingeben" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Beispiel: bob@example.com, http://example.com/barbara" + +#: ../../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" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Leute finden" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiel: Robert Morgenstein, Angeln" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Zufälliges Profil" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Netzwerke" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Alle Netzwerke" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Kategorien" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Diese Sitzung beenden" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Anmelden" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Homepage" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Nutzerkonto erstellen" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" + +#: ../../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" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Unterhaltungen auf dieser Seite" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Nutzerverzeichnis" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Unterhaltungen deiner Kontakte" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "Netzwerk zurücksetzen" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "Netzwerk-Seite ohne Filter laden" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "Kontaktanfragen" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen anzeigen" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "Markiere alle Systembenachrichtigungen als gelesen" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Private E-Mail" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "Eingang" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "Ausgang" + +#: ../../include/nav.php:162 +msgid "Manage" +msgstr "Verwalten" + +#: ../../include/nav.php:162 +msgid "Manage other pages" +msgstr "Andere Seiten verwalten" + +#: ../../include/nav.php:165 +msgid "Delegations" +msgstr "Delegierungen" + +#: ../../include/nav.php:169 +msgid "Manage/Edit Profiles" +msgstr "Profile Verwalten/Editieren" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Freunde und Kontakte verwalten/editieren" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Einstellungen der Seite und Konfiguration" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "Navigation" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "Sitemap" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Unbekannt | Nicht kategorisiert" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Sofort blockieren" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Zwielichtig, Spammer, Selbstdarsteller" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Ist mir bekannt, hab aber keine Meinung" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "OK, wahrscheinlich harmlos" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Seriös, hat mein Vertrauen" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "immer wieder" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Stündlich" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Zweimal täglich" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Täglich" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wöchentlich" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Monatlich" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zott" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/Chat" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Friendica-Benachrichtigung" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Danke," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica-Meldung] Neue Nachricht erhalten von %s" + +#: ../../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." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s schickte dir %2$s." + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "eine private Nachricht" + +#: ../../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." + +#: ../../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]" + +#: ../../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]" + +#: ../../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]" + +#: ../../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" + +#: ../../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." + +#: ../../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." + +#: ../../include/enotify.php:126 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica-Meldung] %s hat auf deine Pinnwand geschrieben" + +#: ../../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" + +#: ../../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" + +#: ../../include/enotify.php:141 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica-Meldung] %s hat dich erwähnt" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s erwähnte dich auf %2$s" + +#: ../../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]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica-Meldung] %1$s hat dich angestupst" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s hat dich auf %2$s angestupst" + +#: ../../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]." + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica-Meldung] %s hat deinen Beitrag getaggt" + +#: ../../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" + +#: ../../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]" + +#: ../../include/enotify.php:185 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica-Meldung] Kontaktanfrage erhalten" + +#: ../../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" + +#: ../../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." + +#: ../../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" + +#: ../../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." + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica-Meldung] Kontaktvorschlag erhalten" + +#: ../../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" + +#: ../../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." + +#: ../../include/enotify.php:206 +msgid "Name:" +msgstr "Name:" + +#: ../../include/enotify.php:207 +msgid "Photo:" +msgstr "Foto:" + +#: ../../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." + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "Du benötigst eine Einladung." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht überprüft werden." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Ungültige OpenID URL" + +#: ../../include/user.php:67 +msgid "Please enter the required information." +msgstr "Bitte trage die erforderlichen Informationen ein." + +#: ../../include/user.php:81 +msgid "Please use a shorter name." +msgstr "Bitte verwende einen kürzeren Namen." + +#: ../../include/user.php:83 +msgid "Name too short." +msgstr "Der Name ist zu kurz." + +#: ../../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." + +#: ../../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." + +#: ../../include/user.php:106 +msgid "Not a valid email address." +msgstr "Keine gültige E-Mail-Adresse." + +#: ../../include/user.php:116 +msgid "Cannot use that email." +msgstr "Konnte diese E-Mail-Adresse nicht verwenden." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../include/user.php:154 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." + +#: ../../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." + +#: ../../include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." + +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 +msgid "Image/photo" +msgstr "Bild/Foto" + +#: ../../include/bbcode.php:272 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s schrieb den folgenden Beitrag" + +#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 +msgid "$1 wrote:" +msgstr "$1 hat geschrieben:" + +#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "Einbettungen deaktiviert" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may 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 könnten 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" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Alle Kontakte" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "bearbeiten" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Gruppe bearbeiten" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Neue Gruppe erstellen" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakte in keiner Gruppe" + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "wird nicht mehr gefolgt" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Verschiedenes" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "Jahr" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "Monat" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "Tag" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "nie" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "vor weniger als einer Sekunde" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "Jahre" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "Monate" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "Woche" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "Wochen" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "Tage" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "Stunde" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "Stunden" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "Minute" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "Minuten" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "Sekunde" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "Sekunden" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s her" + +#: ../../include/network.php:875 +msgid "view full size" +msgstr "Volle Größe anzeigen" diff --git a/view/de/strings.php b/view/de/strings.php index 97f3252a4c..6a555215e6 100644 --- a/view/de/strings.php +++ b/view/de/strings.php @@ -1,1190 +1,179 @@ 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 should 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 sollten 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 profile wall and your friend stream."] = "Facebook-Konversationen bestehen aus deinen Beiträgen auf deinerPinnwand, sowie den Beiträgen deiner Freunde Stream."; -$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.

"] = "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.

"; -$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.
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.
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!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Das Impressums-Plugin muss noch konfiguriert werden.
Bitte gebe mindestens den Betreiber 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 not insert the Jappixmini Chat-Widget into the webinterface"] = "Füge das Jappix Mini Chat Widget nicht 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.
It requires PHP >= 5.3"] = "Kann Libravatar NICHT erfolgreich installieren.
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.
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.
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 public tile servers"] = "Eine Liste öffentlicher Tile Server"; -$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 Piwik analytics tool."] = "Diese Website benutzt Piwik, eine Open Source-Software zur statistischen Auswertung der Besucherzugriffe."; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Wenn du nicht willst, dass deine Besuche auf diese Weise gespeichert werden, kannst du ein Cookie setzen. 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: "network" or "notifications/system""] = "Beispiele: network, notifications/system"; -$a->strings["Post to StatusNet"] = "Bei StatusNet veröffentlichen"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Bitte kontaktiere den Administrator des Servers.
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.
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.
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 public 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 öffentlichen 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 public 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 öffentlichen 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["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) 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 public 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 öffentliche 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 public 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 öffentlichen 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["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "Hinweis: Aufgrund deiner Privatsphären-Einstellungen (Profil-Details vor unbekannten Betrachtern verbergen?) 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 RemoteStorage WebFinger"] = "Ermöglicht dir, deine Friendica ID (%s) mit externen unhosted-fähigen Speichern (z.B. ownCloud) zu verbinden. Siehe RemoteStorage WebFinger"; -$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["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["%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["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["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["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["Friendica"] = "Friendica"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Email"] = "E-Mail"; -$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["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; -$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["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 "] = "%s "; -$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 may 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 könnten 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["%2\$d people like this"] = "%2\$d Personen mögen das"; -$a->strings["%2\$d people don't like this"] = "%2\$d Personen 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 everybody"] = "Für jedermann 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["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["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 “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; -$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[" Marital Status:"] = " 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 public profile.
It may be visible to anybody using the internet."] = "Dies ist dein öffentliches Profil.
Es könnte 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["Not Found"] = "Nicht gefunden"; +$a->strings["Page not found."] = "Seite nicht gefunden."; $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["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["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["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 this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem 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["Connect as an email follower (Coming soon)"] = "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link 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["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."] = " - 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"; @@ -1192,8 +181,10 @@ $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["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 may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell 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 Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, 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 'nickname@\$sitename'."] = "Wähle einen Spitznamen für dein Profil. Dieser muss mit einem Buchstaben beginnen. Die Adresse deines Profils auf dieser Seite wird 'spitzname@\$sitename' 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 Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ä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 may still be visible"] = "Antworten/Likes auf deine öffentlichen Beiträge könnten 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 Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start 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 Settings 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 Einstellungen 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein Standard 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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn 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 Add New Contact 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 Neuen Kontakt hinzufügen 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 Connect or Follow 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 Verbinden oder Folgen 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 help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe 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 “%3\$s”"] = "%1\$s hat %2\$s geändert auf “%3\$s”"; +$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[" Marital Status:"] = " 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 public profile.
It may be visible to anybody using the internet."] = "Dies ist dein öffentliches Profil.
Es könnte 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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt, 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 this profile."] = "Momentan bist du mit einer anderen Identität angemeldet. Bitte melde Dich mit diesem 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["Connect as an email follower (Coming soon)"] = "Als E-Mail-Kontakt verbinden (In Kürze verfügbar)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Wenn du noch kein Mitglied dieses freien sozialen Netzwerks bist, folge diesem Link 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 Friendica.com to learn more about the Friendica project."] = "Bitte besuche Friendica.com, 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["

What next

"] = "

Wie geht es weiter?

"; $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 Settings page after successful login."] = "Du kannst das Passwort in den Einstellungen ä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 may be able to respond from the sender's profile page."] = "Sichere Kommunikation ist nicht verfügbar. Eventuell 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"; @@ -1933,208 +1120,74 @@ $a->strings["Warning: This group contains %s member from an insecure network."] 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 Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Auf der Quick Start 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 Settings 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 Einstellungen 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Editiere dein Standard 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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Wenn 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 Add New Contact 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 Neuen Kontakt hinzufügen 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 Connect or Follow 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 Verbinden oder Folgen 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 help pages may be consulted for detail on other program features and resources."] = "Unsere Hilfe 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["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["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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ACHTUNG: Das sind Experten-Einstellungen! Wenn du etwas Falsches eingibst, funktioniert die Kommunikation mit diesem Kontakt evtl. nicht mehr."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Bitte nutze den Zurück-Button deines Browsers jetzt, 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 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["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"; @@ -2147,6 +1200,7 @@ $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"; @@ -2156,8 +1210,421 @@ $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["toggle mobile"] = "auf/von Mobile Ansicht wechseln"; +$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["%2\$d people like this"] = "%2\$d Personen mögen das"; +$a->strings["%2\$d people don't like this"] = "%2\$d Personen 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 everybody"] = "Für jedermann 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["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 "] = "%s "; +$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["%s wrote the following post"] = "%s schrieb den folgenden Beitrag"; +$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 may 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 könnten 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"; diff --git a/view/eo/strings.php b/view/eo/strings.php index 23dca759c8..93e6a332b6 100644 --- a/view/eo/strings.php +++ b/view/eo/strings.php @@ -1,8 +1,9 @@ strings["Post successful."] = "Sukcese afiŝita."; $a->strings["[Embedded content - reload page to view]"] = "[Enigita enhavo - reŝargu paĝon por spekti ĝin]"; diff --git a/view/es/strings.php b/view/es/strings.php index 689989b074..4c314016da 100644 --- a/view/es/strings.php +++ b/view/es/strings.php @@ -1,8 +1,9 @@ strings["Post successful."] = "¡Publicado!"; $a->strings["[Embedded content - reload page to view]"] = "[Contenido incrustado - recarga la página para verlo]"; diff --git a/view/fr/strings.php b/view/fr/strings.php index 63e044849a..8a751c78b3 100644 --- a/view/fr/strings.php +++ b/view/fr/strings.php @@ -1,8 +1,9 @@ 1);; -} +}} ; $a->strings["Post successful."] = "Publication réussie."; $a->strings["[Embedded content - reload page to view]"] = "[contenu incorporé - rechargez la page pour le voir]"; diff --git a/view/is/strings.php b/view/is/strings.php index b0dc1808c7..876946a7f1 100644 --- a/view/is/strings.php +++ b/view/is/strings.php @@ -1,8 +1,9 @@ strings["Post successful."] = "Melding tókst."; $a->strings["[Embedded content - reload page to view]"] = "[Innfelt efni - endurhlaða síðu til að sjá]"; diff --git a/view/it/messages.po b/view/it/messages.po index 14f9c9f171..7e5a112350 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -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 \n" "Language-Team: Italian (http://www.transifex.com/projects/p/friendica/language/it/)\n" "MIME-Version: 1.0\n" @@ -23,5066 +23,444 @@ 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" - -#: ../../addon.old/communityhome/twillingham/communityhome.php:38 -#: ../../addon.old/communityhome/communityhome.php:38 -#: ../../addon/communityhome/communityhome.php:39 -msgid "Latest users" -msgstr "Ultimi utenti" - -#: ../../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" - -#: ../../addon.old/communityhome/communityhome.php:98 -#: ../../addon/communityhome/communityhome.php:102 -msgid "Latest photos" -msgstr "Ultime foto" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/communityhome/communityhome.php:133 -#: ../../addon/communityhome/communityhome.php:141 -msgid "Latest likes" -msgstr "Ultimi \"mi piace\"" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 -#: ../../addon/dav/common/wdcal_edit.inc.php:163 -msgid "Special color" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 -#: ../../addon/dav/common/wdcal_edit.inc.php:169 -msgid "Subject" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -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 "Posizione" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "Descrizione" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -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 "Nessuna" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -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 "giorni" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -msgid "Interval" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -msgid "All %select% %time%" -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 "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" - -#: ../../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ì" - -#: ../../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ì" - -#: ../../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ì" - -#: ../../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ì" - -#: ../../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ì" - -#: ../../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" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:297 -#: ../../addon/dav/common/wdcal_edit.inc.php:297 -msgid "First day of week:" -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 "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:354 -#: ../../addon/dav/common/wdcal_edit.inc.php:354 -msgid "#num#th of each month" -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 -#: ../../addon/dav/common/wdcal_edit.inc.php:413 -msgid "Repeat until" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 -#: ../../addon/dav/common/wdcal_edit.inc.php:417 -msgid "Infinite" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:420 -#: ../../addon/dav/common/wdcal_edit.inc.php:420 -msgid "Until the following date" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 -#: ../../addon/dav/common/wdcal_edit.inc.php:423 -msgid "Number of times" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 -#: ../../addon/dav/common/wdcal_edit.inc.php:429 -msgid "Exceptions" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 -#: ../../addon/dav/common/wdcal_edit.inc.php:432 -msgid "none" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 -#: ../../addon/dav/common/wdcal_edit.inc.php:449 -msgid "Notification" -msgstr "Notifica" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 -#: ../../addon/dav/common/wdcal_edit.inc.php:466 -msgid "Notify by" -msgstr "" - -#: ../../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" +#: ../../object/Item.php:106 ../../mod/photos.php:1351 +#: ../../mod/content.php:643 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../object/Item.php:110 ../../mod/editpost.php:109 +#: ../../mod/settings.php:622 ../../mod/content.php:751 +msgid "Edit" +msgstr "Modifica" + +#: ../../object/Item.php:119 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../include/conversation.php:587 +msgid "Select" +msgstr "Seleziona" + +#: ../../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/dav/common/wdcal_edit.inc.php:469 -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 -#: ../../addon/dav/common/wdcal_edit.inc.php:470 -msgid "On Friendica / Display" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "Ore" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "Minuti" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 -#: ../../addon/dav/common/wdcal_edit.inc.php:485 -msgid "before the" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:486 -#: ../../addon/dav/common/wdcal_edit.inc.php:486 -msgid "start of the event" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:487 -#: ../../addon/dav/common/wdcal_edit.inc.php:487 -msgid "end of the event" -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 -#: ../../addon/dav/common/wdcal_edit.inc.php:492 -msgid "Add a notification" -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 "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:696 -#: ../../addon/dav/common/wdcal_edit.inc.php:696 -msgid "#name# is about to begin." -msgstr "" - -#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 -#: ../../addon/dav/common/wdcal_edit.inc.php:769 -msgid "Saved" -msgstr "" - -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 -msgid "Private Calendar" -msgstr "" - -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207 -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 -msgid "Friendica Events: Mine" -msgstr "" - -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208 -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 -msgid "Friendica Events: Contacts" -msgstr "" - -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 -msgid "Private Addresses" -msgstr "" - -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 -msgid "Friendica Contacts" -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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:134 -#: ../../addon/dav/friendica/layout.fnk.php:134 -msgid "The ICS-File has been imported." -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:138 -#: ../../addon/dav/friendica/layout.fnk.php:138 -msgid "No file was uploaded." -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:147 -#: ../../addon/dav/friendica/layout.fnk.php:147 -msgid "Import a ICS-file" -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:150 -#: ../../addon/dav/friendica/layout.fnk.php:150 -msgid "ICS-File" -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:151 -#: ../../addon/dav/friendica/layout.fnk.php:151 -msgid "Overwrite all #num# existing events" -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:152 -#: ../../addon/dav/friendica/layout.fnk.php:152 -#: ../../mod/profile_photo.php:245 -msgid "Upload" -msgstr "Carica" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/friendica/layout.fnk.php:228 -#: ../../addon/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:232 -#: ../../addon/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "Oggi" - -#: ../../addon.old/dav/friendica/layout.fnk.php:241 -#: ../../addon/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:248 -#: ../../addon/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "Settimana" - -#: ../../addon.old/dav/friendica/layout.fnk.php:260 -#: ../../addon/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "Ricarica" - -#: ../../addon.old/dav/friendica/layout.fnk.php:263 -#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372 -msgid "Previous" -msgstr "Precendente" - -#: ../../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" - -#: ../../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." - -#: ../../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 "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:393 -#: ../../addon/dav/friendica/layout.fnk.php:393 -msgid "The new calendar has been created." -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:417 -#: ../../addon/dav/friendica/layout.fnk.php:417 -msgid "The calendar has been deleted." -msgstr "" - -#: ../../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" - -#: ../../addon.old/dav/friendica/layout.fnk.php:445 -#: ../../addon/dav/friendica/layout.fnk.php:445 -msgid "Calendars" -msgstr "" - -#: ../../addon.old/dav/friendica/layout.fnk.php:487 -#: ../../addon/dav/friendica/layout.fnk.php:487 -msgid "Create a new calendar" -msgstr "" - -#: ../../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 "" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/dav/friendica/main.php:282 -#: ../../addon/dav/friendica/main.php:282 -msgid "Notification: " -msgstr "" - -#: ../../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." - -#: ../../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." - -#: ../../addon.old/dav/friendica/main.php:316 -#: ../../addon/dav/friendica/main.php:316 -msgid "The database tables have been updated." -msgstr "" - -#: ../../addon.old/dav/friendica/main.php:317 -#: ../../addon/dav/friendica/main.php:317 -msgid "An error occurred during the update." -msgstr "" - -#: ../../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 should 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 "" - -#: ../../addon.old/dav/friendica/main.php:343 -#: ../../addon/dav/friendica/main.php:343 -msgid "Upgrade" -msgstr "" - -#: ../../addon.old/dav/friendica/main.php:346 -#: ../../addon/dav/friendica/main.php:346 -msgid "Not installed" -msgstr "" - -#: ../../addon.old/dav/friendica/main.php:346 -#: ../../addon/dav/friendica/main.php:346 -msgid "Install" -msgstr "" - -#: ../../addon.old/dav/friendica/main.php:350 -#: ../../addon/dav/friendica/main.php:350 -msgid "Unknown" -msgstr "" - -#: ../../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 "" - -#: ../../addon.old/dav/friendica/main.php:355 -#: ../../addon/dav/friendica/main.php:355 -msgid "Troubleshooting" -msgstr "" - -#: ../../addon.old/dav/friendica/main.php:356 -#: ../../addon/dav/friendica/main.php:356 -msgid "Manual creation of the database tables:" -msgstr "" - -#: ../../addon.old/dav/friendica/main.php:357 -#: ../../addon/dav/friendica/main.php:357 -msgid "Show SQL-statements" -msgstr "" - -#: ../../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." - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 profile wall and your friend" -" stream." -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" - -#: ../../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.

" -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.

" - -#: ../../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 +#: ../../object/Item.php:123 ../../mod/content.php:786 +msgid "save to folder" +msgstr "salva nella cartella" + +#: ../../object/Item.php:202 ../../mod/content.php:776 +msgid "add star" +msgstr "aggiungi a speciali" + +#: ../../object/Item.php:203 ../../mod/content.php:777 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: ../../object/Item.php:204 ../../mod/content.php:778 +msgid "toggle star status" +msgstr "Inverti stato preferito" + +#: ../../object/Item.php:207 ../../mod/content.php:781 +msgid "starred" +msgstr "preferito" + +#: ../../object/Item.php:212 ../../mod/content.php:782 +msgid "add tag" +msgstr "aggiungi tag" + +#: ../../object/Item.php:223 ../../mod/photos.php:1529 +#: ../../mod/content.php:707 +msgid "I like this (toggle)" +msgstr "Mi piace (clic per cambiare)" + +#: ../../object/Item.php:223 ../../mod/content.php:707 +msgid "like" +msgstr "mi piace" + +#: ../../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)" + +#: ../../object/Item.php:224 ../../mod/content.php:708 +msgid "dislike" +msgstr "non mi piace" + +#: ../../object/Item.php:226 ../../mod/content.php:710 +msgid "Share this" +msgstr "Condividi questo" + +#: ../../object/Item.php:226 ../../mod/content.php:710 +msgid "share" +msgstr "condividi" + +#: ../../object/Item.php:288 ../../include/conversation.php:639 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../object/Item.php:289 ../../include/conversation.php:640 +msgid "Filed under:" +msgstr "Archiviato in:" + +#: ../../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 "Polling Interval in minutes (minimum %1$s minutes)" -msgstr "Intervallo di poling in minuti (minimo %1$s minuti)" +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../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)" +#: ../../object/Item.php:299 ../../mod/content.php:877 +msgid "to" +msgstr "a" -#: ../../addon.old/facebook/facebook.php:773 -#: ../../addon/facebook/facebook.php:775 -msgid "Real-Time Updates" -msgstr "Aggiornamenti Real-Time" +#: ../../object/Item.php:300 +msgid "via" +msgstr "via" -#: ../../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" +#: ../../object/Item.php:301 ../../mod/content.php:878 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../addon.old/facebook/facebook.php:778 -#: ../../addon/facebook/facebook.php:780 -msgid "Deactivate Real-Time Updates" -msgstr "Disattiva gli aggiornamenti in tempo reale" +#: ../../object/Item.php:302 ../../mod/content.php:879 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca" -#: ../../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 +#: ../../object/Item.php:311 ../../mod/content.php:505 +#: ../../mod/content.php:887 ../../include/conversation.php:647 #, 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" +msgid "%s from %s" +msgstr "%s da %s" -#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183 -msgid "Facebook Post disabled" -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/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210 -msgid "Facebook Post" -msgstr "" +#: ../../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/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216 -msgid "Install Facebook Post connector for this account." -msgstr "" - -#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223 -msgid "Remove Facebook Post connector" -msgstr "" - -#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295 -msgid "Facebook Post Settings" -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 "Forum" - -#: ../../addon.old/forumlist/forumlist.php:63 -#: ../../addon/forumlist/forumlist.php:67 -msgid "show/hide" -msgstr "" - -#: ../../addon.old/forumlist/forumlist.php:77 -#: ../../addon/forumlist/forumlist.php:81 -msgid "No forum subscriptions" -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 "Forum:" - -#: ../../addon.old/forumlist/forumlist.php:131 -#: ../../addon/forumlist/forumlist.php:134 -msgid "Forumlist settings updated." -msgstr "" - -#: ../../addon.old/forumlist/forumlist.php:159 -#: ../../addon/forumlist/forumlist.php:162 -msgid "Forumlist Settings" -msgstr "" - -#: ../../addon.old/forumlist/forumlist.php:161 -#: ../../addon/forumlist/forumlist.php:164 -msgid "Randomise forum list" -msgstr "" - -#: ../../addon.old/forumlist/forumlist.php:164 -#: ../../addon/forumlist/forumlist.php:167 -msgid "Show forums on profile page" -msgstr "" - -#: ../../addon.old/forumlist/forumlist.php:167 -#: ../../addon/forumlist/forumlist.php:170 -msgid "Show forums on network page" -msgstr "" - -#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38 -msgid "Fromapp settings updated." -msgstr "" - -#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64 -msgid "FromApp Settings" -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 "" - -#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70 -msgid "Use this application name even if another application was used." -msgstr "" - -#: ../../addon.old/fromgplus/fromgplus.php:29 -#: ../../addon/fromgplus/fromgplus.php:33 -msgid "Google+ Import Settings" -msgstr "" - -#: ../../addon.old/fromgplus/fromgplus.php:32 -#: ../../addon/fromgplus/fromgplus.php:36 -msgid "Enable Google+ Import" -msgstr "" - -#: ../../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 +#: ../../object/Item.php:352 ../../mod/content.php:626 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%d" -msgstr "[Friendica:Notifica] Commento alla conversazione #%d" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../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 "" - -#: ../../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 "" - -#: ../../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.
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
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 "" - -#: ../../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 "" - -#: ../../addon.old/gravatar/gravatar.php:97 -#: ../../addon/gravatar/gravatar.php:97 -msgid "Rating of images" -msgstr "" - -#: ../../addon.old/gravatar/gravatar.php:97 -#: ../../addon/gravatar/gravatar.php:97 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon.old/gravatar/gravatar.php:111 -#: ../../addon/gravatar/gravatar.php:111 -msgid "Gravatar settings updated." -msgstr "" - -#: ../../addon.old/group_text/group_text.php:76 -#: ../../addon/group_text/group_text.php:76 -msgid "Group Text" -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 "" - -#: ../../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" - -#: ../../addon.old/impressum/impressum.php:61 -#: ../../addon/impressum/impressum.php:61 -msgid "" -"The impressum addon needs to be configured!
Please add at least the " -"owner variable to your config file. For other variables please " -"refer to the README file of the addon." -msgstr "Il plugin Impressum deve essere configurato!
Aggiungi almeno il Proprietario del sito." - -#: ../../addon.old/impressum/impressum.php:84 -#: ../../addon/impressum/impressum.php:84 -msgid "The page operators name." -msgstr "Nome del gestore della pagina." - -#: ../../addon.old/impressum/impressum.php:85 -#: ../../addon/impressum/impressum.php:85 -msgid "Site Owners Profile" -msgstr "Profilo del proprietario del sito" - -#: ../../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" - -#: ../../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 "" - -#: ../../addon.old/impressum/impressum.php:87 -#: ../../addon/impressum/impressum.php:87 -msgid "Notes" -msgstr "Note" - -#: ../../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 "" - -#: ../../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)" - -#: ../../addon.old/impressum/impressum.php:89 -#: ../../addon/impressum/impressum.php:89 -msgid "Footer note" -msgstr "Footer delle note" - -#: ../../addon.old/impressum/impressum.php:89 -#: ../../addon/impressum/impressum.php:89 -msgid "Text for the footer. You can use BBCode here." -msgstr "" - -#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "" - -#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44 -msgid "IRC Settings" -msgstr "Impostazioni IRC" - -#: ../../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)" - -#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51 -msgid "Popular Channels (comma separated)" -msgstr "Canali popolari (separati da virgola)" - -#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Impostazioni IRC salvate." - -#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "Stanza IRC" - -#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Canali Popolari" - -#: ../../addon.old/jappixmini/jappixmini.php:266 -#: ../../addon/jappixmini/jappixmini.php:266 -msgid "Jappix Mini addon settings" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:268 -#: ../../addon/jappixmini/jappixmini.php:268 -msgid "Activate addon" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:271 -#: ../../addon/jappixmini/jappixmini.php:271 -msgid "" -"Do not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "" - -#: ../../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 "" - -#: ../../addon.old/jappixmini/jappixmini.php:281 -#: ../../addon/jappixmini/jappixmini.php:281 -msgid "Jabber BOSH host" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:285 -#: ../../addon/jappixmini/jappixmini.php:285 -msgid "Jabber password" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:290 -#: ../../addon/jappixmini/jappixmini.php:290 -msgid "Encrypt Jabber password with Friendica password (recommended)" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:293 -#: ../../addon/jappixmini/jappixmini.php:293 -msgid "Friendica password" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:296 -#: ../../addon/jappixmini/jappixmini.php:296 -msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:299 -#: ../../addon/jappixmini/jappixmini.php:299 -msgid "Subscribe to Friendica contacts automatically" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:302 -#: ../../addon/jappixmini/jappixmini.php:302 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" - -#: ../../addon.old/jappixmini/jappixmini.php:308 -#: ../../addon/jappixmini/jappixmini.php:308 -msgid "Add contact" -msgstr "" - -#: ../../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" - -#: ../../addon.old/js_upload/js_upload.php:46 -#: ../../addon/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "Caricamento fallito" - -#: ../../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." - -#: ../../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" - -#: ../../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" - -#: ../../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 " - -#: ../../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" - -#: ../../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 "" - -#: ../../addon.old/libertree/libertree.php:74 -#: ../../addon/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "" - -#: ../../addon.old/libertree/libertree.php:79 -#: ../../addon/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "" - -#: ../../addon.old/libertree/libertree.php:84 -#: ../../addon/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../addon.old/libravatar/libravatar.php:14 -#: ../../addon/libravatar/libravatar.php:14 -msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" -msgstr "Non è possibile installare Libravatar.
Richiede PHP >= 5.3" - -#: ../../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." - -#: ../../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." - -#: ../../addon.old/libravatar/libravatar.php:93 -#: ../../addon/libravatar/libravatar.php:93 -msgid "" -"Gravatar addon is installed. Please disable the Gravatar addon.
The " -"Libravatar addon will fall back to Gravatar if nothing was found at " -"Libravatar." -msgstr "L'addon Gravatar è installato. Disabilita l'addon Gravatar.
\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" - -#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "Abilita il plugin LiveJournal" - -#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "LiveJournal username" - -#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "LiveJournal password" - -#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "Posta su LiveJournal di default" - -#: ../../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 "" - -#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75 -msgid "MathJax Base URL" -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 "" - -#: ../../addon.old/membersince/membersince.php:18 -#: ../../addon/membersince/membersince.php:18 -msgid "Member since:" -msgstr "Membro dal:" - -#: ../../addon.old/morepokes/morepokes.php:19 -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:19 -#: ../../addon/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:20 -#: ../../addon/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:20 -#: ../../addon/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:21 -#: ../../addon/morepokes/morepokes.php:21 -msgid "do something obscenely biological to" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:21 -#: ../../addon/morepokes/morepokes.php:21 -msgid "did something obscenely biological to" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:22 -#: ../../addon/morepokes/morepokes.php:22 -msgid "point out the poke feature to" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:22 -#: ../../addon/morepokes/morepokes.php:22 -msgid "pointed out the poke feature to" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:23 -#: ../../addon/morepokes/morepokes.php:23 -msgid "declare undying love for" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:23 -#: ../../addon/morepokes/morepokes.php:23 -msgid "declared undying love for" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:24 -#: ../../addon/morepokes/morepokes.php:24 -msgid "patent" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:24 -#: ../../addon/morepokes/morepokes.php:24 -msgid "patented" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:25 -#: ../../addon/morepokes/morepokes.php:25 -msgid "stroke beard" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:25 -#: ../../addon/morepokes/morepokes.php:25 -msgid "stroked their beard at" -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 "" - -#: ../../addon.old/morepokes/morepokes.php:26 -#: ../../addon/morepokes/morepokes.php:26 -msgid "" -"bemoans the declining standards of modern secondary and tertiary education " -"to" -msgstr "" - -#: ../../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 "" - -#: ../../addon.old/morepokes/morepokes.php:33 -#: ../../addon/morepokes/morepokes.php:33 -msgid "eat" -msgstr "mangia" - -#: ../../addon.old/morepokes/morepokes.php:33 -#: ../../addon/morepokes/morepokes.php:33 -msgid "ate" -msgstr "ha mangiato" - -#: ../../addon.old/morepokes/morepokes.php:34 -#: ../../addon/morepokes/morepokes.php:34 -msgid "giggle and fawn at" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:34 -#: ../../addon/morepokes/morepokes.php:34 -msgid "giggled and fawned at" -msgstr "" - -#: ../../addon.old/morepokes/morepokes.php:35 -#: ../../addon/morepokes/morepokes.php:35 -msgid "doubt" -msgstr "" - -#: ../../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 "" - -#: ../../addon.old/morepokes/morepokes.php:36 -#: ../../addon/morepokes/morepokes.php:36 -msgid "glared at" -msgstr "" - -#: ../../addon.old/notimeline/notimeline.php:32 -#: ../../addon/notimeline/notimeline.php:32 -msgid "No Timeline settings updated." -msgstr "" - -#: ../../addon.old/notimeline/notimeline.php:56 -#: ../../addon/notimeline/notimeline.php:56 -msgid "No Timeline Settings" -msgstr "" - -#: ../../addon.old/notimeline/notimeline.php:58 -#: ../../addon/notimeline/notimeline.php:58 -msgid "Disable Archive selector on profile wall" -msgstr "" - -#: ../../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)" - -#: ../../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 "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." - -#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81 -msgid "Enable Content filter" -msgstr "Abilita il Filtro Contenuti" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105 -msgid "NSFW Settings saved." -msgstr "Impostazioni NSFW salvate." - -#: ../../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" - -#: ../../addon.old/numfriends/numfriends.php:46 -#: ../../addon/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "Impostazioni \"Numfriends' aggiornate." - -#: ../../addon.old/numfriends/numfriends.php:77 -#: ../../addon/numfriends/numfriends.php:77 -msgid "Numfriends Settings" -msgstr "Impostazioni Numfriends" - -#: ../../addon.old/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "Impostazioni OEmbed aggiornate" - -#: ../../addon.old/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Usa OEmbed per i video di YouTube" - -#: ../../addon.old/oembed.old/oembed.php:71 -msgid "URL to embed:" -msgstr "URL da incorporare:" - -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -#: ../../addon/openstreetmap/openstreetmap.php:95 -msgid "Tile Server URL" -msgstr "" - -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -#: ../../addon/openstreetmap/openstreetmap.php:95 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -#: ../../addon/openstreetmap/openstreetmap.php:96 -msgid "Default zoom" -msgstr "Default zoom" - -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -#: ../../addon/openstreetmap/openstreetmap.php:96 -msgid "The default zoom level. (1:world, 18:highest)" -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:606 -#: ../../object/Item.php:316 ../../boot.php:642 -msgid "show more" -msgstr "mostra di più" - -#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166 -msgid "Page settings updated." -msgstr "" - -#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195 -msgid "Page Settings" -msgstr "" - -#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197 -msgid "How many forums to display on sidebar without paging" -msgstr "" - -#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200 -msgid "Randomise Page/Forum list" -msgstr "" - -#: ../../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" - -#: ../../addon.old/pageheader/pageheader.php:50 -#: ../../addon/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "Impostazioni \"pageheader\"" - -#: ../../addon.old/pageheader/pageheader.php:68 -#: ../../addon/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "Impostazioni salvate." - -#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "Questo sito è monitorato con lo strumento di analisi Piwik." - -#: ../../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 can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "Se non vuoi che le tue visite vengono registrate in questo modo è possibile impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito (opt-out)." - -#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90 -msgid "Piwik Base URL" -msgstr "Piwik Base 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 "Percorso assoluto alla tua installazione di Piwik, senza il protocollo (http/https), con la barra alla fine" - -#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91 -msgid "Site ID" -msgstr "Site ID" - -#: ../../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?" - -#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "Tracciamento asincrono" - -#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150 -msgid "Planets Settings" -msgstr "Impostazioni Planet" - -#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "Abilita plugin Planet" - -#: ../../addon.old/posterous/posterous.php:37 -#: ../../addon/posterous/posterous.php:37 -msgid "Post to Posterous" -msgstr "Invia a Posterous" - -#: ../../addon.old/posterous/posterous.php:70 -#: ../../addon/posterous/posterous.php:70 -msgid "Posterous Post Settings" -msgstr "Impostazioni di invio a Posterous" - -#: ../../addon.old/posterous/posterous.php:72 -#: ../../addon/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" -msgstr "Abilita il plugin di invio a Posterous" - -#: ../../addon.old/posterous/posterous.php:77 -#: ../../addon/posterous/posterous.php:77 -msgid "Posterous login" -msgstr "Posterous login" - -#: ../../addon.old/posterous/posterous.php:82 -#: ../../addon/posterous/posterous.php:82 -msgid "Posterous password" -msgstr "Posterous password" - -#: ../../addon.old/posterous/posterous.php:87 -#: ../../addon/posterous/posterous.php:87 -msgid "Posterous site ID" -msgstr "" - -#: ../../addon.old/posterous/posterous.php:92 -#: ../../addon/posterous/posterous.php:92 -msgid "Posterous API token" -msgstr "" - -#: ../../addon.old/posterous/posterous.php:97 -#: ../../addon/posterous/posterous.php:97 -msgid "Post to Posterous by default" -msgstr "Invia sempre a 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 "" - -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 -#: ../../addon/privacy_image_cache/privacy_image_cache.php:356 -msgid "Cache Statistics" -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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon.old/public_server/public_server.php:127 -#: ../../addon/public_server/public_server.php:127 -msgid "Your Friendica account is about to expire." -msgstr "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon.old/snautofollow/snautofollow.php:56 -#: ../../addon/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "" - -#: ../../addon.old/snautofollow/snautofollow.php:58 -#: ../../addon/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -msgstr "" - -#: ../../addon.old/startpage/startpage.php:83 -#: ../../addon/startpage/startpage.php:83 -msgid "Startpage Settings" -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 "" - -#: ../../addon.old/startpage/startpage.php:88 -#: ../../addon/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "" - -#: ../../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.
The provided API URL is not " -"valid." -msgstr "Contatta l'amministratore del sito.
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.
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.
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 public 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 pubblici 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 public 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 pubblici 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 "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "Nota: A causa delle tue impostazioni di privacy(Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?) 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 "" - -#: ../../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" - -#: ../../addon.old/statusnet/statusnet.php:567 -#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:470 -msgid "Site name" -msgstr "Nome del sito" - -#: ../../addon.old/statusnet/statusnet.php:568 -#: ../../addon/statusnet/statusnet.php:745 -msgid "API URL" -msgstr "API URL" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/testdrive/testdrive.php:95 -#: ../../addon/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -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 "" - -#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "Tic-Tac-Toe tridimensionale" - -#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "3D Tic-Tac-Toe" - -#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58 -msgid "New game" -msgstr "Nuova partita" - -#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "Nuova partita con handicap" - -#: ../../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." - -#: ../../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 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." - -#: ../../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 "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!" - -#: ../../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!" - -#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222 -msgid "I won!" -msgstr "Ho vinto!" - -#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158 -msgid "Post to Tumblr" -msgstr "Pubblica su Tumblr" - -#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185 -msgid "Tumblr Post Settings" -msgstr "Impostazioni di invio a Tumblr" - -#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192 -msgid "Enable Tumblr Post Plugin" -msgstr "Abilita Plugin Tumblr" - -#: ../../addon.old/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "Tumblr login" - -#: ../../addon.old/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "Tumblr password" - -#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197 -msgid "Post to Tumblr by default" -msgstr "Pubblica su Tumblr di default" - -#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77 -msgid "Post to Twitter" -msgstr "Invia a Twitter" - -#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129 -msgid "Twitter settings updated." -msgstr "Impostazioni di Twitter aggiornate." - -#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157 -msgid "Twitter Posting Settings" -msgstr "Impostazioni di invio a Twitter" - -#: ../../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." - -#: ../../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 public 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 pubblici saranno inviati a Twitter." - -#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184 -msgid "Log in with Twitter" -msgstr "Accedi con Twitter" - -#: ../../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" - -#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201 -msgid "" -"If enabled all your public 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 pubblici possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio." - -#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "Nota: A causa delle tue impostazioni di privacy(Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?) 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" - -#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559 -msgid "Consumer secret" -msgstr "Consumer secret" - -#: ../../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 RemoteStorage" -" WebFinger" -msgstr "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi RemoteStorage WebFinger" - -#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "Template URL (con {category})" - -#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "OAuth end-point" - -#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "Api" - -#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39 -msgid "View Source" -msgstr "Vedi sorgente" - -#: ../../addon.old/widgets/widget_friendheader.php:40 -#: ../../addon/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "Aggiungiti a questa lista!" - -#: ../../addon.old/widgets/widget_friends.php:40 -#: ../../addon/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "Connettiti su Friendica!" - -#: ../../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" - -#: ../../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" - -#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57 -msgid "Generate new key" -msgstr "Genera una nuova chiave" - -#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60 -msgid "Widgets key" -msgstr "Chiave Widget" - -#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62 -msgid "Widgets available" -msgstr "Widget disponibili" - -#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124 -#: ../../mod/settings.php:646 -msgid "Plugin Settings" -msgstr "Impostazioni plugin" - -#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "Pubblica su Wordpress" - -#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "Impostazioni invio a WordPress" - -#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "Abilita plugin \"invia a WordPress\"" - -#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "nome utente WordPress" - -#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "password WordPress" - -#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "WordPress API URL" - -#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "Pubblica su WordPress di default" - -#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -msgstr "" - -#: ../../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" - -#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "Impostazioni YourLS" - -#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "URL: http://" - -#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62 -msgid "Username:" -msgstr "Nome utente:" - -#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67 -msgid "Password:" -msgstr "Password:" - -#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "Usa SSL" - -#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "Impostazioni yourls salvate." - -#: ../../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 "" - -#: ../../addon/altpager/altpager.php:100 -msgid "Each user chooses whether to use the alternate pager" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:239 -msgid "Suppress \"View on friendica\"" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:243 -msgid "Mirror wall posts from facebook to friendica." -msgstr "" - -#: ../../addon/fbpost/fbpost.php:253 -msgid "Post to page/group:" -msgstr "" - -#: ../../addon/fbpost/fbpost.php:375 -#, php-format -msgid "%s:" -msgstr "" - -#: ../../addon/forumdirectory/forumdirectory.php:22 -msgid "Forum Directory" -msgstr "" - -#: ../../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." - -#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49 -#: ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Elenco globale" - -#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57 -msgid "Find on this site" -msgstr "Cerca nel sito" - -#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612 -#: ../../mod/directory.php:59 -msgid "Finding: " -msgstr "Ricerca: " - -#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60 -msgid "Site Directory" -msgstr "Elenco del sito" - -#: ../../addon/forumdirectory/forumdirectory.php:83 -#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 -#: ../../mod/directory.php:61 -msgid "Find" -msgstr "Trova" - -#: ../../addon/forumdirectory/forumdirectory.php:133 -#: ../../mod/profiles.php:682 ../../mod/directory.php:111 -msgid "Age: " -msgstr "Età : " - -#: ../../addon/forumdirectory/forumdirectory.php:136 -#: ../../mod/directory.php:114 -msgid "Gender: " -msgstr "Genere:" - -#: ../../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:" - -#: ../../addon/forumdirectory/forumdirectory.php:158 -#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 -#: ../../boot.php:1387 -msgid "Gender:" -msgstr "Genere:" - -#: ../../addon/forumdirectory/forumdirectory.php:160 -#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 -#: ../../boot.php:1390 -msgid "Status:" -msgstr "Stato:" - -#: ../../addon/forumdirectory/forumdirectory.php:162 -#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 -#: ../../boot.php:1392 -msgid "Homepage:" -msgstr "Homepage:" - -#: ../../addon/forumdirectory/forumdirectory.php:164 -#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 -msgid "About:" -msgstr "Informazioni:" - -#: ../../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)." - -#: ../../addon/group_text/group_text.php:46 -msgid "Group Text settings updated." -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:45 -msgid "Remote Permissions Settings" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:46 -msgid "" -"Allow recipients of your private posts to see the other recipients of the " -"posts" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:58 -msgid "Remote Permissions settings updated." -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:124 -#: ../../mod/lockview.php:48 -msgid "Visible to:" -msgstr "Visibile a:" - -#: ../../addon/remote_permissions/remote_permissions.php:178 -msgid "Visible to" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:178 -msgid "may only be a partial list" -msgstr "" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "The posts of every user on this server show the post recipients" -msgstr "" - -#: ../../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 "" -"Mirror all posts from statusnet that are no replies or repeated messages" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:362 -msgid "Shortening method that optimizes the post" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:144 -msgid "You are now authenticated to tumblr." -msgstr "" - -#: ../../addon/tumblr/tumblr.php:145 -msgid "return to the connector page" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:188 -msgid "(Re-)Authenticate your tumblr page" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:217 -msgid "Post to page:" -msgstr "" - -#: ../../addon/tumblr/tumblr.php:228 -msgid "You are not authenticated to tumblr" -msgstr "" - -#: ../../addon/twitter/twitter.php:213 -msgid "Mirror all posts from twitter that are no replies or retweets" -msgstr "" - -#: ../../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 "" - -#: ../../addon/twitter/twitter.php:560 -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" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "Età:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648 -msgid "Hometown:" -msgstr "Paese natale:" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "Hobby/Interessi:" - -#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e social network:" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "Interessi musicali:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "Maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "Femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Non specificato" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "Altro" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "Maschi" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "Femmine" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "Gay" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "Lesbica" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "Nessuna preferenza" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "Bisessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "Autosessuale" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "Astinente" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "Vergine" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "Deviato" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "Fetish" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "Un sacco" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "Asessuato" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "Single" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "Solitario" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "Disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "Non disponibile" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "Disponibile a un incontro" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "Infedele" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "Sesso-dipendente" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:279 -#: ../../include/user.php:283 -msgid "Friends" -msgstr "Amici" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "Amici con benefici" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "Casual" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "Impegnato" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "Sposato" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "Partners" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "Coinquilino" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "Felice" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "Scambista" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "Tradito" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "Separato" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "Instabile" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "Divorziato" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "Vedovo" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "Incerto" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "Non interessa" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "tolto dai seguiti" - -#: ../../include/Contact.php:225 ../../include/conversation.php:820 -msgid "Poke" -msgstr "" - -#: ../../include/Contact.php:226 ../../include/conversation.php:814 -msgid "View Status" -msgstr "Visualizza stato" - -#: ../../include/Contact.php:227 ../../include/conversation.php:815 -msgid "View Profile" -msgstr "Visualizza profilo" - -#: ../../include/Contact.php:228 ../../include/conversation.php:816 -msgid "View Photos" -msgstr "Visualizza foto" - -#: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:817 -msgid "Network Posts" -msgstr "" - -#: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:818 -msgid "Edit Contact" -msgstr "Modifica contatti" - -#: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:819 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "" - -#: ../../include/text.php:275 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:277 -msgid "first" -msgstr "primo" - -#: ../../include/text.php:306 -msgid "last" -msgstr "ultimo" - -#: ../../include/text.php:309 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:327 -msgid "newer" -msgstr "nuovi" - -#: ../../include/text.php:331 -msgid "older" -msgstr "vecchi" - -#: ../../include/text.php:670 -msgid "No contacts" -msgstr "Nessun contatto" - -#: ../../include/text.php:679 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: ../../include/text.php:691 ../../mod/viewcontacts.php:76 -msgid "View Contacts" -msgstr "Visualizza i contatti" - -#: ../../include/text.php:751 ../../include/text.php:752 -#: ../../include/nav.php:118 ../../mod/search.php:99 -msgid "Search" -msgstr "Cerca" - -#: ../../include/text.php:792 -msgid "poke" -msgstr "" - -#: ../../include/text.php:792 ../../include/conversation.php:211 -msgid "poked" -msgstr "" - -#: ../../include/text.php:793 -msgid "ping" -msgstr "" - -#: ../../include/text.php:793 -msgid "pinged" -msgstr "" - -#: ../../include/text.php:794 -msgid "prod" -msgstr "" - -#: ../../include/text.php:794 -msgid "prodded" -msgstr "" - -#: ../../include/text.php:795 -msgid "slap" -msgstr "" - -#: ../../include/text.php:795 -msgid "slapped" -msgstr "" - -#: ../../include/text.php:796 -msgid "finger" -msgstr "" - -#: ../../include/text.php:796 -msgid "fingered" -msgstr "" - -#: ../../include/text.php:797 -msgid "rebuff" -msgstr "" - -#: ../../include/text.php:797 -msgid "rebuffed" -msgstr "" - -#: ../../include/text.php:809 -msgid "happy" -msgstr "" - -#: ../../include/text.php:810 -msgid "sad" -msgstr "" - -#: ../../include/text.php:811 -msgid "mellow" -msgstr "" - -#: ../../include/text.php:812 -msgid "tired" -msgstr "" - -#: ../../include/text.php:813 -msgid "perky" -msgstr "" - -#: ../../include/text.php:814 -msgid "angry" -msgstr "" - -#: ../../include/text.php:815 -msgid "stupified" -msgstr "" - -#: ../../include/text.php:816 -msgid "puzzled" -msgstr "" - -#: ../../include/text.php:817 -msgid "interested" -msgstr "" - -#: ../../include/text.php:818 -msgid "bitter" -msgstr "" - -#: ../../include/text.php:819 -msgid "cheerful" -msgstr "" - -#: ../../include/text.php:820 -msgid "alive" -msgstr "" - -#: ../../include/text.php:821 -msgid "annoyed" -msgstr "" - -#: ../../include/text.php:822 -msgid "anxious" -msgstr "" - -#: ../../include/text.php:823 -msgid "cranky" -msgstr "" - -#: ../../include/text.php:824 -msgid "disturbed" -msgstr "" - -#: ../../include/text.php:825 -msgid "frustrated" -msgstr "" - -#: ../../include/text.php:826 -msgid "motivated" -msgstr "" - -#: ../../include/text.php:827 -msgid "relaxed" -msgstr "" - -#: ../../include/text.php:828 -msgid "surprised" -msgstr "" - -#: ../../include/text.php:992 -msgid "January" -msgstr "Gennaio" - -#: ../../include/text.php:992 -msgid "February" -msgstr "Febbraio" - -#: ../../include/text.php:992 -msgid "March" -msgstr "Marzo" - -#: ../../include/text.php:992 -msgid "April" -msgstr "Aprile" - -#: ../../include/text.php:992 -msgid "May" -msgstr "Maggio" - -#: ../../include/text.php:992 -msgid "June" -msgstr "Giugno" - -#: ../../include/text.php:992 -msgid "July" -msgstr "Luglio" - -#: ../../include/text.php:992 -msgid "August" -msgstr "Agosto" - -#: ../../include/text.php:992 -msgid "September" -msgstr "Settembre" - -#: ../../include/text.php:992 -msgid "October" -msgstr "Ottobre" - -#: ../../include/text.php:992 -msgid "November" -msgstr "Novembre" - -#: ../../include/text.php:992 -msgid "December" -msgstr "Dicembre" - -#: ../../include/text.php:1091 -msgid "bytes" -msgstr "bytes" - -#: ../../include/text.php:1118 ../../include/text.php:1130 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1271 ../../mod/events.php:335 -msgid "link to source" -msgstr "Collegamento all'originale" - -#: ../../include/text.php:1303 ../../include/user.php:237 -msgid "default" -msgstr "default" - -#: ../../include/text.php:1315 -msgid "Select an alternate language" -msgstr "Seleziona una diversa lingua" - -#: ../../include/text.php:1525 -msgid "activity" -msgstr "attività" - -#: ../../include/text.php:1527 ../../mod/content.php:605 -#: ../../object/Item.php:315 ../../object/Item.php:328 +#: ../../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" -#: ../../include/text.php:1528 -msgid "post" -msgstr "messaggio" - -#: ../../include/text.php:1683 -msgid "Item filed" -msgstr "Messaggio salvato" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "show" -msgstr "mostra" - -#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 -#: ../../view/theme/diabook/theme.php:629 -msgid "don't show" -msgstr "non mostrare" - -#: ../../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 "" - -#: ../../include/uimport.php:67 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "" - -#: ../../include/uimport.php:72 -msgid "Error! I can't import this file: DB schema version is not compatible." -msgstr "" - -#: ../../include/uimport.php:81 -msgid "Error! Cannot check nickname" -msgstr "" - -#: ../../include/uimport.php:85 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "" - -#: ../../include/uimport.php:104 -msgid "User creation error" -msgstr "" - -#: ../../include/uimport.php:122 -msgid "User profile creation error" -msgstr "" - -#: ../../include/uimport.php:167 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/uimport.php:245 -msgid "Done. You can now login with your username and password" -msgstr "" - -#: ../../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" - -#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 -msgid "Starts:" -msgstr "Inizia:" - -#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 -msgid "Finishes:" -msgstr "Finisce:" - -#: ../../include/bbcode.php:210 ../../include/bbcode.php:515 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: ../../include/bbcode.php:272 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "" - -#: ../../include/bbcode.php:480 ../../include/bbcode.php:500 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/bbcode.php:520 ../../include/bbcode.php:521 -msgid "Encrypted content" -msgstr "" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "E' richiesto un invito." - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" - -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." - -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "Il nome è troppo corto." - -#: ../../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)." - -#: ../../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." - -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "L'indirizzo email non è valido." - -#: ../../include/user.php:116 -msgid "Cannot use that email." -msgstr "Non puoi usare quell'email." - -#: ../../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." - -#: ../../include/user.php:128 ../../include/user.php:226 -msgid "Nickname is already registered. Please choose another." -msgstr "Nome utente già registrato. Scegline un altro." - -#: ../../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." - -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." - -#: ../../include/user.php:212 -msgid "An error occurred during registration. Please try again." -msgstr "C'è stato un errore durante la registrazione. Prova ancora." - -#: ../../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." - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Sconosciuto | non categorizzato" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Blocca immediatamente" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "Shady, spammer, self-marketer" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Lo conosco, ma non ho un'opinione particolare" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "E' ok, probabilmente innocuo" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Rispettabile, ha la mia fiducia" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Ogni ora" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Due volte al dì" - -#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "Ostatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS / Atom" - -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 ../../mod/admin.php:731 -#: ../../mod/admin.php:741 -msgid "Email" -msgstr "Email" - -#: ../../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 "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "Aggiungi nuovo contatto" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "Inserisci posizione o indirizzo web" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" - -#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 -#: ../../mod/match.php:58 ../../boot.php:1317 -msgid "Connect" -msgstr "Connetti" - -#: ../../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" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "Trova persone" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "Inserisci un nome o un interesse" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "Connetti/segui" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Esempi: Mario Rossi, Pesca" - -#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 -#: ../../view/theme/diabook/theme.php:520 -msgid "Friend Suggestions" -msgstr "Contatti suggeriti" - -#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 -msgid "Similar Interests" -msgstr "Interessi simili" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "Profilo causale" - -#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 -msgid "Invite Friends" -msgstr "Invita amici" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "Reti" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "Tutte le Reti" - -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 -msgid "Saved Folders" -msgstr "Cartelle Salvate" - -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "Tutto" - -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "Categorie" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "" - -#: ../../include/conversation.php:227 ../../mod/mood.php:62 -#, php-format -msgid "%1$s is currently %2$s" -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 ha taggato %3$s di %2$s con %4$s" - -#: ../../include/conversation.php:291 -msgid "post/item" -msgstr "post/elemento" - -#: ../../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" - -#: ../../include/conversation.php:569 ../../mod/content.php:438 -#: ../../mod/content.php:740 ../../object/Item.php:119 -msgid "Select" -msgstr "Seleziona" - -#: ../../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" -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" - -#: ../../include/conversation.php:621 ../../object/Item.php:249 -msgid "Categories:" -msgstr "" - -#: ../../include/conversation.php:622 ../../object/Item.php:250 -msgid "Filed under:" -msgstr "" - -#: ../../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" - -#: ../../include/conversation.php:644 ../../mod/content.php:497 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../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" - -#: ../../include/conversation.php:714 -msgid "Delete Selected Items" -msgstr "Cancella elementi selezionati" - -#: ../../include/conversation.php:813 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:882 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:882 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:887 -#, php-format -msgid "%2$d people like this" -msgstr "" - -#: ../../include/conversation.php:890 -#, php-format -msgid "%2$d people don't like this" -msgstr "" - -#: ../../include/conversation.php:904 -msgid "and" -msgstr "e" - -#: ../../include/conversation.php:910 -#, php-format -msgid ", and %d other people" -msgstr "e altre %d persone" - -#: ../../include/conversation.php:912 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:912 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:939 ../../include/conversation.php:957 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../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:" - -#: ../../include/conversation.php:941 ../../include/conversation.php:959 -msgid "Please enter a video link/URL:" -msgstr "Inserisci un collegamento video / URL:" - -#: ../../include/conversation.php:942 ../../include/conversation.php:960 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci un collegamento audio / URL:" - -#: ../../include/conversation.php:943 ../../include/conversation.php:961 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:944 ../../include/conversation.php:962 -#: ../../mod/filer.php:30 -msgid "Save to Folder:" -msgstr "Salva nella Cartella:" - -#: ../../include/conversation.php:945 ../../include/conversation.php:963 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:946 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:988 -msgid "Post to Email" -msgstr "Invia a email" - -#: ../../include/conversation.php:1023 ../../mod/photos.php:1528 -msgid "Share" -msgstr "Condividi" - -#: ../../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" - -#: ../../include/conversation.php:1025 ../../mod/editpost.php:111 -msgid "upload photo" -msgstr "carica foto" - -#: ../../include/conversation.php:1026 ../../mod/editpost.php:112 -msgid "Attach file" -msgstr "Allega file" - -#: ../../include/conversation.php:1027 ../../mod/editpost.php:113 -msgid "attach file" -msgstr "allega file" - -#: ../../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" - -#: ../../include/conversation.php:1029 ../../mod/editpost.php:115 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1030 ../../mod/editpost.php:116 -msgid "Insert video link" -msgstr "Inserire collegamento video" - -#: ../../include/conversation.php:1031 ../../mod/editpost.php:117 -msgid "video link" -msgstr "link video" - -#: ../../include/conversation.php:1032 ../../mod/editpost.php:118 -msgid "Insert audio link" -msgstr "Inserisci collegamento audio" - -#: ../../include/conversation.php:1033 ../../mod/editpost.php:119 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1034 ../../mod/editpost.php:120 -msgid "Set your location" -msgstr "La tua posizione" - -#: ../../include/conversation.php:1035 ../../mod/editpost.php:121 -msgid "set location" -msgstr "posizione" - -#: ../../include/conversation.php:1036 ../../mod/editpost.php:122 -msgid "Clear browser location" -msgstr "Rimuovi la localizzazione data dal browser" - -#: ../../include/conversation.php:1037 ../../mod/editpost.php:123 -msgid "clear location" -msgstr "canc. pos." - -#: ../../include/conversation.php:1039 ../../mod/editpost.php:137 -msgid "Set title" -msgstr "Scegli un titolo" - -#: ../../include/conversation.php:1041 ../../mod/editpost.php:139 -msgid "Categories (comma-separated list)" -msgstr "Categorie (lista separata da virgola)" - -#: ../../include/conversation.php:1043 ../../mod/editpost.php:125 -msgid "Permission settings" -msgstr "Impostazioni permessi" - -#: ../../include/conversation.php:1044 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1052 ../../mod/editpost.php:133 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" - -#: ../../include/conversation.php:1053 ../../mod/editpost.php:134 -msgid "Public post" -msgstr "Messaggio pubblico" - -#: ../../include/conversation.php:1055 ../../mod/editpost.php:140 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" - -#: ../../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 +#: ../../object/Item.php:355 ../../mod/content.php:629 ../../boot.php:652 +#: ../../include/contact_widgets.php:204 +msgid "show more" +msgstr "mostra di più" + +#: ../../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" + +#: ../../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" + +#: ../../object/Item.php:644 ../../mod/content.php:734 +msgid "Bold" +msgstr "Grassetto" + +#: ../../object/Item.php:645 ../../mod/content.php:735 +msgid "Italic" +msgstr "Corsivo" + +#: ../../object/Item.php:646 ../../mod/content.php:736 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../object/Item.php:647 ../../mod/content.php:737 +msgid "Quote" +msgstr "Citazione" + +#: ../../object/Item.php:648 ../../mod/content.php:738 +msgid "Code" +msgstr "Codice" + +#: ../../object/Item.php:649 ../../mod/content.php:739 +msgid "Image" +msgstr "Immagine" + +#: ../../object/Item.php:650 ../../mod/content.php:740 +msgid "Link" +msgstr "Link" + +#: ../../object/Item.php:651 ../../mod/content.php:741 +msgid "Video" +msgstr "Video" + +#: ../../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" -#: ../../include/conversation.php:1068 -msgid "Post to Groups" -msgstr "" +#: ../../index.php:227 ../../mod/help.php:90 +msgid "Not Found" +msgstr "Non trovato" -#: ../../include/conversation.php:1069 -msgid "Post to Contacts" -msgstr "" +#: ../../index.php:230 ../../mod/help.php:93 +msgid "Page not found." +msgstr "Pagina non trovata." -#: ../../include/conversation.php:1070 -msgid "Private post" -msgstr "" +#: ../../index.php:341 ../../mod/profperm.php:19 ../../mod/group.php:72 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "Varie" +#: ../../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." -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "anno" +#: ../../index.php:401 +msgid "toggle mobile" +msgstr "commuta tema mobile" -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "mese" +#: ../../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]" -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "giorno" +#: ../../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." -#: ../../include/datetime.php:276 -msgid "never" -msgstr "mai" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci amici" -#: ../../include/datetime.php:287 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:300 +#: ../../mod/fsuggest.php:99 #, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../include/datetime.php:472 ../../include/items.php:1705 +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523 #, php-format -msgid "%s's birthday" -msgstr "Compleanno di %s" +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/datetime.php:473 ../../include/items.php:1706 +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "Presentazione completa." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Errore di comunicazione." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." + +#: ../../mod/dfrn_request.php:262 #, php-format -msgid "Happy Birthday %s" -msgstr "Buon compleanno %s" +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." -#: ../../include/dba.php:41 +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." + +#: ../../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." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Invalid locator" + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Indirizzo email non valido." + +#: ../../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." + +#: ../../mod/dfrn_request.php:458 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." + +#: ../../mod/dfrn_request.php:475 #, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +msgid "Apparently you are already friends with %s." +msgstr "Pare che tu e %s siate già amici." -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "(nessun oggetto)" +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo non valido." -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" - -#: ../../include/diaspora.php:2248 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Notifica Friendica" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "Grazie," - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "Amministratore %s" - -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" - -#: ../../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 "un messaggio privato" - -#: ../../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." - -#: ../../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]" - -#: ../../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]" - -#: ../../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]" - -#: ../../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" - -#: ../../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." - -#: ../../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" - -#: ../../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 "" - -#: ../../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]" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notifica] %s ti ha taggato" - -#: ../../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 "[Friendica:Notifica] %s ha taggato un tuo messaggio" - -#: ../../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 "[Friendica:Notifica] Hai ricevuto una presentazione" - -#: ../../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 "Puoi visitare il suo profilo presso %s" - -#: ../../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." - -#: ../../include/enotify.php:199 -msgid "[Friendica:Notify] Friend suggestion received" -msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" - -#: ../../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 "Nome:" - -#: ../../include/enotify.php:207 -msgid "Photo:" -msgstr "Foto:" - -#: ../../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." - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "" - -#: ../../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" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: ../../include/features.php:41 ../../mod/search.php:30 -#: ../../mod/network.php:233 -msgid "Saved Searches" -msgstr "Ricerche salvate" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "Strumenti per mesasggi/commenti" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "" - -#: ../../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" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "Permetti di inviare \"non mi piace\" ai messaggi" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "" - -#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 msgid "Disallowed profile URL." msgstr "Indirizzo profilo non permesso." -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "URL di connessione mancante." +#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 +msgid "Failed to update contact record." +msgstr "Errore nell'aggiornamento del contatto." -#: ../../include/follow.php:59 +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." + +#: ../../mod/dfrn_request.php:659 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Questo sito non è configurato per permettere la comunicazione con altri network." +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." -#: ../../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/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Nascondi questo contatto" -#: ../../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/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome o un autore" +#: ../../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/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Conferma" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "" - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "" - -#: ../../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." - -#: ../../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." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: ../../include/follow.php:259 -msgid "following" -msgstr "segue" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may 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 possono 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." - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Tutti" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "modifica" - -#: ../../include/group.php:270 ../../mod/newmember.php:66 -msgid "Groups" -msgstr "Gruppi" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Modifica gruppo" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Contatti in nessun gruppo." - -#: ../../include/group.php:275 ../../mod/network.php:234 -msgid "add" -msgstr "aggiungi" - -#: ../../include/items.php:3366 ../../mod/dfrn_request.php:716 +#: ../../mod/dfrn_request.php:716 ../../include/items.php:3439 msgid "[Name Withheld]" msgstr "[Nome Nascosto]" -#: ../../include/items.php:3373 -msgid "A new person is sharing with you at " -msgstr "Una nuova persona sta condividendo con te da " +#: ../../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." -#: ../../include/items.php:3373 -msgid "You have a new follower at " -msgstr "Una nuova persona ti segue su " +#: ../../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/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/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "Connetti un email come follower (in arrivo)" -#: ../../include/items.php:3892 -msgid "Do you really want to delete this item?" -msgstr "" +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" -#: ../../include/items.php:3894 ../../mod/profiles.php:606 +#: ../../mod/dfrn_request.php:832 +msgid "Friend/Connection Request" +msgstr "Richieste di amicizia/connessione" + +#: ../../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" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Rispondi:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" + +#: ../../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 @@ -5090,608 +468,1553 @@ msgstr "" #: ../../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 +#: ../../mod/settings.php:1009 ../../mod/profiles.php:606 +#: ../../mod/suggest.php:29 ../../include/items.php:3967 msgid "Yes" msgstr "Si" -#: ../../include/items.php:4085 -msgid "Archives" -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" -msgstr "" - -#: ../../include/nav.php:73 ../../boot.php:1036 -msgid "Logout" -msgstr "Esci" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Finisci questa sessione" - -#: ../../include/nav.php:76 ../../boot.php:1840 -msgid "Status" -msgstr "Stato" - -#: ../../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" - -#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 -msgid "Your profile page" -msgstr "Pagina del tuo profilo" - -#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 -#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1854 -msgid "Photos" -msgstr "Foto" - -#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 -msgid "Your photos" -msgstr "Le tue foto" - -#: ../../include/nav.php:79 ../../mod/events.php:370 -#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1864 -msgid "Events" -msgstr "Eventi" - -#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 -msgid "Your events" -msgstr "I tuoi eventi" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Personal notes" -msgstr "Note personali" - -#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 -msgid "Your personal photos" -msgstr "Le tue foto personali" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Entra" - -#: ../../include/nav.php:104 ../../include/nav.php:143 -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Home Page" - -#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1012 -msgid "Register" -msgstr "Registrati" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Crea un account" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Guida e documentazione" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Applicazioni" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Applicazioni, utilità e giochi aggiuntivi" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Cerca nel contenuto del sito" - -#: ../../include/nav.php:128 ../../mod/community.php:32 -#: ../../view/theme/diabook/theme.php:93 -msgid "Community" -msgstr "Comunità" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Conversazioni su questo sito" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Elenco" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "Elenco delle persone" - -#: ../../include/nav.php:140 ../../mod/notifications.php:83 -msgid "Network" -msgstr "Rete" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Conversazioni dai tuoi amici" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "" - -#: ../../include/nav.php:149 ../../mod/notifications.php:98 -msgid "Introductions" -msgstr "Presentazioni" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Richieste di amicizia" - -#: ../../include/nav.php:150 ../../mod/notifications.php:220 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "Segna tutte le notifiche come viste" - -#: ../../include/nav.php:156 ../../mod/message.php:182 -#: ../../mod/notifications.php:103 -msgid "Messages" -msgstr "Messaggi" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Posta privata" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/nav.php:159 ../../mod/message.php:9 -msgid "New Message" -msgstr "Nuovo messaggio" - -#: ../../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:450 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:517 -msgid " and " -msgstr "e " - -#: ../../mod/profiles.php:525 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../mod/profiles.php:528 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "" - -#: ../../mod/profiles.php:529 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr "" - -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" - -#: ../../mod/profiles.php:605 -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 +#: ../../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" -#: ../../mod/profiles.php:625 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" -#: ../../mod/profiles.php:627 -msgid "Change Profile Photo" -msgstr "" +#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/profiles.php:628 -msgid "View this profile" -msgstr "Visualizza questo profilo" +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/profiles.php:629 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681 +#: ../../include/contact_selectors.php:80 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/profiles.php:630 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../mod/profiles.php:631 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../mod/profiles.php:632 -msgid "Profile Name:" -msgstr "Nome del profilo:" - -#: ../../mod/profiles.php:633 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" - -#: ../../mod/profiles.php:634 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" - -#: ../../mod/profiles.php:635 -msgid "Your Gender:" -msgstr "Il tuo sesso:" - -#: ../../mod/profiles.php:636 +#: ../../mod/dfrn_request.php:843 #, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" - -#: ../../mod/profiles.php:637 -msgid "Street Address:" -msgstr "Indirizzo (via/piazza):" - -#: ../../mod/profiles.php:638 -msgid "Locality/City:" -msgstr "Località:" - -#: ../../mod/profiles.php:639 -msgid "Postal/Zip Code:" -msgstr "CAP:" - -#: ../../mod/profiles.php:640 -msgid "Country:" -msgstr "Nazione:" - -#: ../../mod/profiles.php:641 -msgid "Region/State:" -msgstr "Regione/Stato:" - -#: ../../mod/profiles.php:642 -msgid " Marital Status:" -msgstr " Stato sentimentale:" - -#: ../../mod/profiles.php:643 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" - -#: ../../mod/profiles.php:644 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:645 -msgid "Since [date]:" -msgstr "Dal [data]:" - -#: ../../mod/profiles.php:647 -msgid "Homepage URL:" -msgstr "Homepage:" - -#: ../../mod/profiles.php:650 -msgid "Religious Views:" -msgstr "Orientamento religioso:" - -#: ../../mod/profiles.php:651 -msgid "Public Keywords:" -msgstr "Parole chiave visibili a tutti:" - -#: ../../mod/profiles.php:652 -msgid "Private Keywords:" -msgstr "Parole chiave private:" - -#: ../../mod/profiles.php:655 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" - -#: ../../mod/profiles.php:656 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" - -#: ../../mod/profiles.php:657 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" - -#: ../../mod/profiles.php:658 -msgid "Tell us about yourself..." -msgstr "Raccontaci di te..." - -#: ../../mod/profiles.php:659 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" - -#: ../../mod/profiles.php:660 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e social network" - -#: ../../mod/profiles.php:661 -msgid "Musical interests" -msgstr "Interessi musicali" - -#: ../../mod/profiles.php:662 -msgid "Books, literature" -msgstr "Libri, letteratura" - -#: ../../mod/profiles.php:663 -msgid "Television" -msgstr "Televisione" - -#: ../../mod/profiles.php:664 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" - -#: ../../mod/profiles.php:665 -msgid "Love/romance" -msgstr "Amore" - -#: ../../mod/profiles.php:666 -msgid "Work/employment" -msgstr "Lavoro/impiego" - -#: ../../mod/profiles.php:667 -msgid "School/education" -msgstr "Scuola/educazione" - -#: ../../mod/profiles.php:672 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." +" - 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." -#: ../../mod/profiles.php:721 -msgid "Edit/Manage Profiles" -msgstr "Modifica / Gestisci profili" +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "L'indirizzo della tua identità:" -#: ../../mod/profiles.php:722 ../../boot.php:1345 ../../boot.php:1371 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Invia richiesta" -#: ../../mod/profiles.php:723 ../../boot.php:1346 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../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" -#: ../../mod/profiles.php:734 ../../boot.php:1356 -msgid "Profile Image" -msgstr "Immagine del Profilo" +#: ../../mod/profile.php:21 ../../boot.php:1246 +msgid "Requested profile is not available." +msgstr "Profilo richiesto non disponibile." -#: ../../mod/profiles.php:736 ../../boot.php:1359 -msgid "visible to everybody" -msgstr "visibile a tutti" +#: ../../mod/profile.php:155 ../../mod/display.php:99 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." -#: ../../mod/profiles.php:737 ../../boot.php:1360 -msgid "Edit visibility" -msgstr "Modifica visibilità" +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" -#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340 -msgid "Permission denied" -msgstr "Permesso negato" +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Scarta" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica visibilità del profilo" +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 +#: ../../mod/contacts.php:413 +msgid "Ignore" +msgstr "Ignora" -#: ../../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/notifications.php:78 +msgid "System" +msgstr "Sistema" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile a" +#: ../../mod/notifications.php:83 ../../include/nav.php:140 +msgid "Network" +msgstr "Rete" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i contatti (con profilo ad accesso sicuro)" +#: ../../mod/notifications.php:88 ../../mod/network.php:444 +msgid "Personal" +msgstr "Personale" -#: ../../mod/notes.php:44 ../../boot.php:1871 -msgid "Personal Notes" -msgstr "Note personali" +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +#: ../../include/nav.php:104 ../../include/nav.php:143 +msgid "Home" +msgstr "Home" + +#: ../../mod/notifications.php:98 ../../include/nav.php:149 +msgid "Introductions" +msgstr "Presentazioni" + +#: ../../mod/notifications.php:103 ../../mod/message.php:182 +#: ../../include/nav.php:156 +msgid "Messages" +msgstr "Messaggi" + +#: ../../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:157 ../../mod/notifications.php:204 +#: ../../mod/contacts.php:419 +msgid "Hide this contact from others" +msgstr "Nascondi questo contatto agli altri" + +#: ../../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:161 ../../mod/notifications.php:208 +#: ../../mod/admin.php:753 +msgid "Approve" +msgstr "Approva" + +#: ../../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:220 ../../include/nav.php:150 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../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/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" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../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/openid.php:93 ../../include/auth.php:112 +#: ../../include/auth.php:175 +msgid "Login failed." +msgstr "Accesso fallito." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "Testo sorgente (bbcode):" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "Testo sorgente (da Diaspora) da convertire in BBcode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "Sorgente:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html (HTML grezzo):" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: ../../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: " + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb: " + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "Sorgente (formato Diaspora):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "Impostazioni del tema aggiornate." + +#: ../../mod/admin.php:96 ../../mod/admin.php:477 +msgid "Site" +msgstr "Sito" + +#: ../../mod/admin.php:97 ../../mod/admin.php:747 ../../mod/admin.php:761 +msgid "Users" +msgstr "Utenti" + +#: ../../mod/admin.php:98 ../../mod/admin.php:844 ../../mod/admin.php:886 +msgid "Plugins" +msgstr "Plugin" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1052 ../../mod/admin.php:1086 +msgid "Themes" +msgstr "Temi" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "Aggiornamenti Database" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1173 +msgid "Logs" +msgstr "Log" + +#: ../../mod/admin.php:120 ../../include/nav.php:178 +msgid "Admin" +msgstr "Amministrazione" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Impostazioni Plugins" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Utenti registrati in attesa di conferma" + +#: ../../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." + +#: ../../mod/admin.php:182 ../../mod/admin.php:718 +msgid "Normal Account" +msgstr "Account normale" + +#: ../../mod/admin.php:183 ../../mod/admin.php:719 +msgid "Soapbox Account" +msgstr "Account per comunicati e annunci" + +#: ../../mod/admin.php:184 ../../mod/admin.php:720 +msgid "Community/Celebrity Account" +msgstr "Account per celebrità o per comunità" + +#: ../../mod/admin.php:185 ../../mod/admin.php:721 +msgid "Automatic Friend Account" +msgstr "Account per amicizia automatizzato" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "Account Blog" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "Forum Privato" + +#: ../../mod/admin.php:206 +msgid "Message queues" +msgstr "Code messaggi" + +#: ../../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" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Sommario" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Utenti registrati" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "Registrazioni in attesa" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Versione" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "Plugin attivi" + +#: ../../mod/admin.php:401 +msgid "Site settings updated." +msgstr "Impostazioni del sito aggiornate." + +#: ../../mod/admin.php:430 ../../mod/settings.php:769 +msgid "No special theme for mobile devices" +msgstr "Nessun tema speciale per i dispositivi mobili" + +#: ../../mod/admin.php:447 +msgid "Multi user instance" +msgstr "Istanza multi utente" + +#: ../../mod/admin.php:463 +msgid "Closed" +msgstr "Chiusa" + +#: ../../mod/admin.php:464 +msgid "Requires approval" +msgstr "Richiede l'approvazione" + +#: ../../mod/admin.php:465 +msgid "Open" +msgstr "Aperta" + +#: ../../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" + +#: ../../mod/admin.php:470 +msgid "Force all links to use SSL" +msgstr "Forza tutti i linki ad usare SSL" + +#: ../../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)" + +#: ../../mod/admin.php:479 ../../mod/register.php:261 +msgid "Registration" +msgstr "Registrazione" + +#: ../../mod/admin.php:480 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../mod/admin.php:481 +msgid "Policies" +msgstr "Politiche" + +#: ../../mod/admin.php:482 +msgid "Advanced" +msgstr "Avanzate" + +#: ../../mod/admin.php:483 +msgid "Performance" +msgstr "Performance" + +#: ../../mod/admin.php:487 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../mod/admin.php:488 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../mod/admin.php:489 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../mod/admin.php:490 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../mod/admin.php:490 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema" + +#: ../../mod/admin.php:491 +msgid "Mobile system theme" +msgstr "Tema mobile di sistema" + +#: ../../mod/admin.php:491 +msgid "Theme for mobile devices" +msgstr "Tema per dispositivi mobili" + +#: ../../mod/admin.php:492 +msgid "SSL link policy" +msgstr "Gestione link SSL" + +#: ../../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" + +#: ../../mod/admin.php:493 +msgid "'Share' element" +msgstr "Elemento 'Share'" + +#: ../../mod/admin.php:493 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "Attiva l'elemento bbcode 'share' per i post condivisi." + +#: ../../mod/admin.php:494 +msgid "Hide help entry from navigation menu" +msgstr "Nascondi la voce 'Guida' dal menu di navigazione" + +#: ../../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 "Nasconde la voce per le pagine della guida dal menu di navigazione. E' comunque possibile accedervi richiamando /help direttamente." + +#: ../../mod/admin.php:495 +msgid "Single user instance" +msgstr "Instanza a singolo utente" + +#: ../../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" + +#: ../../mod/admin.php:496 +msgid "Maximum image size" +msgstr "Massima dimensione immagini" + +#: ../../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." + +#: ../../mod/admin.php:497 +msgid "Maximum image length" +msgstr "Massima lunghezza immagine" + +#: ../../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." + +#: ../../mod/admin.php:498 +msgid "JPEG image quality" +msgstr "Qualità immagini JPEG" + +#: ../../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." + +#: ../../mod/admin.php:500 +msgid "Register policy" +msgstr "Politica di registrazione" + +#: ../../mod/admin.php:501 +msgid "Maximum Daily Registrations" +msgstr "Massime registrazioni giornaliere" + +#: ../../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." + +#: ../../mod/admin.php:502 +msgid "Register text" +msgstr "Testo registrazione" + +#: ../../mod/admin.php:502 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../mod/admin.php:503 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: ../../mod/admin.php:503 +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." + +#: ../../mod/admin.php:504 +msgid "Allowed friend domains" +msgstr "Domini amici consentiti" + +#: ../../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 "Elenco separato da virglola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." + +#: ../../mod/admin.php:505 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../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." + +#: ../../mod/admin.php:506 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../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." + +#: ../../mod/admin.php:507 +msgid "Force publish" +msgstr "Forza publicazione" + +#: ../../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." + +#: ../../mod/admin.php:508 +msgid "Global directory update URL" +msgstr "URL aggiornamento Elenco Globale" + +#: ../../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." + +#: ../../mod/admin.php:509 +msgid "Allow threaded items" +msgstr "Permetti commenti nidificati" + +#: ../../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." + +#: ../../mod/admin.php:510 +msgid "Private posts by default for new users" +msgstr "Post privati di default per i nuovi utenti" + +#: ../../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." + +#: ../../mod/admin.php:511 +msgid "Don't include post content in email notifications" +msgstr "Non includere il contenuto dei post nelle notifiche via email" + +#: ../../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 "Non include il contenuti del post/commento/messaggio privato/etc. nelle notifiche email che sono inviate da questo sito, per privacy" + +#: ../../mod/admin.php:513 +msgid "Block multiple registrations" +msgstr "Blocca registrazioni multiple" + +#: ../../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." + +#: ../../mod/admin.php:514 +msgid "OpenID support" +msgstr "Supporto OpenID" + +#: ../../mod/admin.php:514 +msgid "OpenID support for registration and logins." +msgstr "Supporta OpenID per la registrazione e il login" + +#: ../../mod/admin.php:515 +msgid "Fullname check" +msgstr "Controllo nome completo" + +#: ../../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" + +#: ../../mod/admin.php:516 +msgid "UTF-8 Regular expressions" +msgstr "Espressioni regolari UTF-8" + +#: ../../mod/admin.php:516 +msgid "Use PHP UTF8 regular expressions" +msgstr "Usa le espressioni regolari PHP in UTF8" + +#: ../../mod/admin.php:517 +msgid "Show Community Page" +msgstr "Mostra pagina Comunità" + +#: ../../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." + +#: ../../mod/admin.php:518 +msgid "Enable OStatus support" +msgstr "Abilita supporto OStatus" + +#: ../../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 "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati." + +#: ../../mod/admin.php:519 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + +#: ../../mod/admin.php:519 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Fornisce compatibilità con il network Diaspora." + +#: ../../mod/admin.php:520 +msgid "Only allow Friendica contacts" +msgstr "Permetti solo contatti Friendica" + +#: ../../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." + +#: ../../mod/admin.php:521 +msgid "Verify SSL" +msgstr "Verifica SSL" + +#: ../../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." + +#: ../../mod/admin.php:522 +msgid "Proxy user" +msgstr "Utente Proxy" + +#: ../../mod/admin.php:523 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: ../../mod/admin.php:524 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../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)." + +#: ../../mod/admin.php:525 +msgid "Delivery interval" +msgstr "Intervallo di invio" + +#: ../../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 "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:526 +msgid "Poll interval" +msgstr "Intervallo di poll" + +#: ../../mod/admin.php:526 +msgid "" +"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." + +#: ../../mod/admin.php:527 +msgid "Maximum Load Average" +msgstr "Massimo carico medio" + +#: ../../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." + +#: ../../mod/admin.php:529 +msgid "Use MySQL full text engine" +msgstr "Usa il motore MySQL full text" + +#: ../../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." + +#: ../../mod/admin.php:530 +msgid "Path to item cache" +msgstr "Percorso cache elementi" + +#: ../../mod/admin.php:531 +msgid "Cache duration in seconds" +msgstr "Durata della cache in secondi" + +#: ../../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)." + +#: ../../mod/admin.php:532 +msgid "Path for lock file" +msgstr "Percorso al file di lock" + +#: ../../mod/admin.php:533 +msgid "Temp path" +msgstr "Percorso file temporanei" + +#: ../../mod/admin.php:534 +msgid "Base path to installation" +msgstr "Percorso base all'installazione" + +#: ../../mod/admin.php:552 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato segnato come di successo" + +#: ../../mod/admin.php:562 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Controlla i log di sistema." + +#: ../../mod/admin.php:565 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è stato applicato con successo" + +#: ../../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." + +#: ../../mod/admin.php:572 +#, php-format +msgid "Update function %s could not be found." +msgstr "La funzione di aggiornamento %s non puo' essere trovata." + +#: ../../mod/admin.php:587 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../mod/admin.php:591 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti" + +#: ../../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." + +#: ../../mod/admin.php:593 +msgid "Mark success (if update was manually applied)" +msgstr "Segna completato (se l'update è stato applicato manualmente)" + +#: ../../mod/admin.php:594 +msgid "Attempt to execute this update step automatically" +msgstr "Cerco di eseguire questo aggiornamento in automatico" + +#: ../../mod/admin.php:619 +#, 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/admin.php:626 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s utente cancellato" +msgstr[1] "%s utenti cancellati" + +#: ../../mod/admin.php:665 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' cancellato" + +#: ../../mod/admin.php:673 +#, php-format +msgid "User '%s' unblocked" +msgstr "Utente '%s' sbloccato" + +#: ../../mod/admin.php:673 +#, php-format +msgid "User '%s' blocked" +msgstr "Utente '%s' bloccato" + +#: ../../mod/admin.php:749 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../mod/admin.php:750 +msgid "User registrations waiting for confirm" +msgstr "Richieste di registrazione in attesa di conferma" + +#: ../../mod/admin.php:751 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../mod/admin.php:751 ../../mod/admin.php:762 ../../mod/settings.php:562 +#: ../../mod/settings.php:588 ../../mod/crepair.php:148 +msgid "Name" +msgstr "Nome" + +#: ../../mod/admin.php:751 ../../mod/admin.php:762 +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 +msgid "Email" +msgstr "Email" + +#: ../../mod/admin.php:752 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../mod/admin.php:754 +msgid "Deny" +msgstr "Nega" + +#: ../../mod/admin.php:756 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/admin.php:757 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/admin.php:758 +msgid "Site admin" +msgstr "Amministrazione sito" + +#: ../../mod/admin.php:759 +msgid "Account expired" +msgstr "Account scaduto" + +#: ../../mod/admin.php:762 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../mod/admin.php:762 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../mod/admin.php:762 +msgid "Last item" +msgstr "Ultimo elemento" + +#: ../../mod/admin.php:762 +msgid "Account" +msgstr "Account" + +#: ../../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 "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" + +#: ../../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 "L'utente {0} sarà cancellato!\\n\\nTutto quello che ha inviato su questo sito sarà permanentemente cancellato!\\n\\nSei sicuro?" + +#: ../../mod/admin.php:806 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s disabilitato." + +#: ../../mod/admin.php:810 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s abilitato." + +#: ../../mod/admin.php:820 ../../mod/admin.php:1023 +msgid "Disable" +msgstr "Disabilita" + +#: ../../mod/admin.php:822 ../../mod/admin.php:1025 +msgid "Enable" +msgstr "Abilita" + +#: ../../mod/admin.php:845 ../../mod/admin.php:1053 +msgid "Toggle" +msgstr "Inverti" + +#: ../../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" + +#: ../../mod/admin.php:853 ../../mod/admin.php:1063 +msgid "Author: " +msgstr "Autore: " + +#: ../../mod/admin.php:854 ../../mod/admin.php:1064 +msgid "Maintainer: " +msgstr "Manutentore: " + +#: ../../mod/admin.php:983 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../mod/admin.php:1045 +msgid "Screenshot" +msgstr "Anteprima" + +#: ../../mod/admin.php:1091 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../mod/admin.php:1092 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../mod/admin.php:1119 +msgid "Log settings updated." +msgstr "Impostazioni Log aggiornate." + +#: ../../mod/admin.php:1175 +msgid "Clear" +msgstr "Pulisci" + +#: ../../mod/admin.php:1181 +msgid "Debugging" +msgstr "Debugging" + +#: ../../mod/admin.php:1182 +msgid "Log file" +msgstr "File di Log" + +#: ../../mod/admin.php:1182 +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/admin.php:1183 +msgid "Log level" +msgstr "Livello di Log" + +#: ../../mod/admin.php:1232 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "Aggiorna adesso" + +#: ../../mod/admin.php:1233 +msgid "Close" +msgstr "Chiudi" + +#: ../../mod/admin.php:1239 +msgid "FTP Host" +msgstr "Indirizzo FTP" + +#: ../../mod/admin.php:1240 +msgid "FTP Path" +msgstr "Percorso FTP" + +#: ../../mod/admin.php:1241 +msgid "FTP User" +msgstr "Utente FTP" + +#: ../../mod/admin.php:1242 +msgid "FTP Password" +msgstr "Pasword FTP" + +#: ../../mod/message.php:9 ../../include/nav.php:159 +msgid "New Message" +msgstr "Nuovo messaggio" + +#: ../../mod/message.php:63 ../../mod/wallmessage.php:56 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." + +#: ../../mod/message.php:70 ../../mod/wallmessage.php:62 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." + +#: ../../mod/message.php:73 ../../mod/wallmessage.php:65 +msgid "Message collection failure." +msgstr "Errore recuperando il messaggio." + +#: ../../mod/message.php:76 ../../mod/wallmessage.php:68 +msgid "Message sent." +msgstr "Messaggio inviato." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "Vuoi veramente cancellare questo messaggio?" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Messaggio eliminato." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../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:" + +#: ../../mod/message.php:319 ../../mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/message.php:320 ../../mod/message.php:553 +#: ../../mod/wallmessage.php:144 +msgid "To:" +msgstr "A:" + +#: ../../mod/message.php:325 ../../mod/message.php:555 +#: ../../mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/message.php:329 ../../mod/message.php:558 +#: ../../mod/wallmessage.php:151 ../../mod/invite.php:134 +msgid "Your message:" +msgstr "Il tuo messaggio:" + +#: ../../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" + +#: ../../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" + +#: ../../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 may be able to " +"respond from the sender's profile page." +msgstr "Nessuna comunicazione sicura disponibile, Potresti essere in grado di rispondere dalla pagina del profilo del mittente." + +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Oggetto non trovato" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "Modifica messaggio" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:1043 +msgid "upload photo" +msgstr "carica foto" + +#: ../../mod/editpost.php:112 ../../include/conversation.php:1044 +msgid "Attach file" +msgstr "Allega file" + +#: ../../mod/editpost.php:113 ../../include/conversation.php:1045 +msgid "attach file" +msgstr "allega file" + +#: ../../mod/editpost.php:115 ../../include/conversation.php:1047 +msgid "web link" +msgstr "link web" + +#: ../../mod/editpost.php:116 ../../include/conversation.php:1048 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: ../../mod/editpost.php:117 ../../include/conversation.php:1049 +msgid "video link" +msgstr "link video" + +#: ../../mod/editpost.php:118 ../../include/conversation.php:1050 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: ../../mod/editpost.php:119 ../../include/conversation.php:1051 +msgid "audio link" +msgstr "link audio" + +#: ../../mod/editpost.php:120 ../../include/conversation.php:1052 +msgid "Set your location" +msgstr "La tua posizione" + +#: ../../mod/editpost.php:121 ../../include/conversation.php:1053 +msgid "set location" +msgstr "posizione" + +#: ../../mod/editpost.php:122 ../../include/conversation.php:1054 +msgid "Clear browser location" +msgstr "Rimuovi la localizzazione data dal browser" + +#: ../../mod/editpost.php:123 ../../include/conversation.php:1055 +msgid "clear location" +msgstr "canc. pos." + +#: ../../mod/editpost.php:125 ../../include/conversation.php:1061 +msgid "Permission settings" +msgstr "Impostazioni permessi" + +#: ../../mod/editpost.php:133 ../../include/conversation.php:1070 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: ../../mod/editpost.php:134 ../../include/conversation.php:1071 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: ../../mod/editpost.php:137 ../../include/conversation.php:1057 +msgid "Set title" +msgstr "Scegli un titolo" + +#: ../../mod/editpost.php:139 ../../include/conversation.php:1059 +msgid "Categories (comma-separated list)" +msgstr "Categorie (lista separata da virgola)" + +#: ../../mod/editpost.php:140 ../../include/conversation.php:1073 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" + +#: ../../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." + +#: ../../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." + +#: ../../mod/dfrn_confirm.php:237 +msgid "Response from remote site was not understood." +msgstr "Errore di comunicazione con l'altro sito." + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "La risposta dell'altro sito non può essere gestita: " + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Problema temporaneo. Attendi e riprova." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "La presentazione ha generato un errore o è stata revocata." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." + +#: ../../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" + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato '%s'" + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../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" + +#: ../../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." + +#: ../../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." + +#: ../../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" + +#: ../../mod/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Connession accettata su %s" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s si è unito a %2$s" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "Titolo e ora di inizio dell'evento sono richiesti." + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l j F" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Modifca l'evento" + +#: ../../mod/events.php:335 ../../include/text.php:1304 +msgid "link to source" +msgstr "Collegamento all'originale" + +#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91 +#: ../../boot.php:1885 ../../include/nav.php:79 +msgid "Events" +msgstr "Eventi" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Crea un nuovo evento" + +#: ../../mod/events.php:372 +msgid "Previous" +msgstr "Precendente" + +#: ../../mod/events.php:373 ../../mod/install.php:207 +msgid "Next" +msgstr "Successivo" + +#: ../../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 +#, 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." + +#: ../../mod/events.php:459 +msgid "Event Starts:" +msgstr "L'evento inizia:" + +#: ../../mod/events.php:459 ../../mod/events.php:473 +msgid "Required" +msgstr "Richiesto" + +#: ../../mod/events.php:462 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/ora di fine non è definita" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "L'evento finisce:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Visualizza con il fuso orario di chi legge" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Descrizione:" + +#: ../../mod/events.php:471 ../../mod/directory.php:134 ../../boot.php:1406 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:415 +msgid "Location:" +msgstr "Posizione:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Titolo:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90 +#: ../../boot.php:1875 ../../include/nav.php:78 +msgid "Photos" +msgstr "Foto" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "File" + +#: ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." + +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../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:59 +msgid "Unable to check your home location." +msgstr "Impossibile controllare la tua posizione di origine." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Nessun destinatario." + +#: ../../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/nogroup.php:40 ../../mod/contacts.php:395 #: ../../mod/contacts.php:585 ../../mod/viewcontacts.php:62 @@ -5705,1010 +2028,75 @@ msgstr "Modifca contatto" #: ../../mod/nogroup.php:59 msgid "Contacts who are not members of a group" -msgstr "" +msgstr "Contatti che non sono membri di un gruppo" -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} vuole essere tuo amico" +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} ti ha inviato un messaggio" +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo web" -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} chiede la registrazione" +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." -#: ../../mod/ping.php:254 +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" + +#: ../../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" + +#: ../../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" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Rimuovi il mio account" + +#: ../../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." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 #, php-format -msgid "{0} commented %s's post" -msgstr "{0} ha commentato il post di %s" +msgid "Image exceeds size limit of %d" +msgstr "La dimensione dell'immagine supera il limite di %d" -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "a {0} piace il post di %s" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "a {0} non piace il post di %s" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} ora è amico di %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} ha inviato un nuovo messaggio" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} ha taggato il post di %s con #%s" - -#: ../../mod/ping.php:285 -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/admin.php:96 ../../mod/admin.php:460 -msgid "Site" -msgstr "Sito" - -#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740 -msgid "Users" -msgstr "Utenti" - -#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864 -msgid "Plugins" -msgstr "Plugin" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067 -msgid "Themes" -msgstr "Temi" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "Aggiornamenti Database" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154 -msgid "Logs" -msgstr "Log" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Utenti registrati in attesa di conferma" - -#: ../../mod/admin.php:183 ../../mod/admin.php:698 -msgid "Normal Account" -msgstr "Account normale" - -#: ../../mod/admin.php:184 ../../mod/admin.php:699 -msgid "Soapbox Account" -msgstr "Account per comunicati e annunci" - -#: ../../mod/admin.php:185 ../../mod/admin.php:700 -msgid "Community/Celebrity Account" -msgstr "Account per celebrità o per comunità" - -#: ../../mod/admin.php:186 ../../mod/admin.php:701 -msgid "Automatic Friend Account" -msgstr "Account per amicizia automatizzato" - -#: ../../mod/admin.php:187 -msgid "Blog Account" -msgstr "Account Blog" - -#: ../../mod/admin.php:188 -msgid "Private Forum" -msgstr "Forum Privato" - -#: ../../mod/admin.php:207 -msgid "Message queues" -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 "Amministrazione" - -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Sommario" - -#: ../../mod/admin.php:215 -msgid "Registered users" -msgstr "Utenti registrati" - -#: ../../mod/admin.php:217 -msgid "Pending registrations" -msgstr "Registrazioni in attesa" - -#: ../../mod/admin.php:218 -msgid "Version" -msgstr "Versione" - -#: ../../mod/admin.php:220 -msgid "Active plugins" -msgstr "Plugin attivi" - -#: ../../mod/admin.php:391 -msgid "Site settings updated." -msgstr "Impostazioni del sito aggiornate." - -#: ../../mod/admin.php:420 ../../mod/settings.php:769 -msgid "No special theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:446 -msgid "Closed" -msgstr "Chiusa" - -#: ../../mod/admin.php:447 -msgid "Requires approval" -msgstr "Richiede l'approvazione" - -#: ../../mod/admin.php:448 -msgid "Open" -msgstr "Aperta" - -#: ../../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/admin.php:453 -msgid "Force all links to use SSL" -msgstr "Forza tutti i linki ad usare SSL" - -#: ../../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/admin.php:462 ../../mod/register.php:261 -msgid "Registration" -msgstr "Registrazione" - -#: ../../mod/admin.php:463 -msgid "File upload" -msgstr "Caricamento file" - -#: ../../mod/admin.php:464 -msgid "Policies" -msgstr "Politiche" - -#: ../../mod/admin.php:465 -msgid "Advanced" -msgstr "Avanzate" - -#: ../../mod/admin.php:466 -msgid "Performance" -msgstr "" - -#: ../../mod/admin.php:471 -msgid "Banner/Logo" -msgstr "Banner/Logo" - -#: ../../mod/admin.php:472 -msgid "System language" -msgstr "Lingua di sistema" - -#: ../../mod/admin.php:473 -msgid "System theme" -msgstr "Tema di sistema" - -#: ../../mod/admin.php:473 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "SSL link policy" -msgstr "Gestione link SSL" - -#: ../../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/admin.php:476 -msgid "'Share' element" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:477 -msgid "Maximum image size" -msgstr "Massima dimensione immagini" - -#: ../../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/admin.php:478 -msgid "Maximum image length" -msgstr "" - -#: ../../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/admin.php:479 -msgid "JPEG image quality" -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 "" - -#: ../../mod/admin.php:481 -msgid "Register policy" -msgstr "Politica di registrazione" - -#: ../../mod/admin.php:482 -msgid "Maximum Daily Registrations" -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 "" - -#: ../../mod/admin.php:483 -msgid "Register text" -msgstr "Testo registrazione" - -#: ../../mod/admin.php:483 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." - -#: ../../mod/admin.php:484 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo x giorni" - -#: ../../mod/admin.php:484 -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." - -#: ../../mod/admin.php:485 -msgid "Allowed friend domains" -msgstr "Domini amici consentiti" - -#: ../../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/admin.php:486 -msgid "Allowed email domains" -msgstr "Domini email consentiti" - -#: ../../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/admin.php:487 -msgid "Block public" -msgstr "Blocca pagine pubbliche" - -#: ../../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/admin.php:488 -msgid "Force publish" -msgstr "Forza publicazione" - -#: ../../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/admin.php:489 -msgid "Global directory update URL" -msgstr "URL aggiornamento Elenco Globale" - -#: ../../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/admin.php:490 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:490 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:491 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:491 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:493 -msgid "Block multiple registrations" -msgstr "Blocca registrazioni multiple" - -#: ../../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/admin.php:494 -msgid "OpenID support" -msgstr "Supporto OpenID" - -#: ../../mod/admin.php:494 -msgid "OpenID support for registration and logins." -msgstr "Supporta OpenID per la registrazione e il login" - -#: ../../mod/admin.php:495 -msgid "Fullname check" -msgstr "Controllo nome completo" - -#: ../../mod/admin.php:495 -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" - -#: ../../mod/admin.php:496 -msgid "UTF-8 Regular expressions" -msgstr "Espressioni regolari UTF-8" - -#: ../../mod/admin.php:496 -msgid "Use PHP UTF8 regular expressions" -msgstr "Usa le espressioni regolari PHP in UTF8" - -#: ../../mod/admin.php:497 -msgid "Show Community Page" -msgstr "Mostra pagina Comunità" - -#: ../../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/admin.php:498 -msgid "Enable OStatus support" -msgstr "Abilita supporto OStatus" - -#: ../../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 "Fornisce compatibiltà OStatuts (identi.ca, status.net, etc.). Tutte le comunicazioni in OStatus sono pubbliche, per cui avvisi di provacy verranno occasionalmente mostrati." - -#: ../../mod/admin.php:499 -msgid "Enable Diaspora support" -msgstr "Abilita il supporto a Diaspora" - -#: ../../mod/admin.php:499 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Fornisce compatibilità con il network Diaspora." - -#: ../../mod/admin.php:500 -msgid "Only allow Friendica contacts" -msgstr "Permetti solo contatti Friendica" - -#: ../../mod/admin.php:500 -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." - -#: ../../mod/admin.php:501 -msgid "Verify SSL" -msgstr "Verifica SSL" - -#: ../../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 "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" - -#: ../../mod/admin.php:503 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: ../../mod/admin.php:504 -msgid "Network timeout" -msgstr "Timeout rete" - -#: ../../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/admin.php:505 -msgid "Delivery interval" -msgstr "Intervallo di invio" - -#: ../../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 "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 "" - -#: ../../mod/admin.php:506 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:507 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:507 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:509 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:509 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:510 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:511 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:511 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "" - -#: ../../mod/admin.php:512 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:513 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:514 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:532 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato segnato come di successo" - -#: ../../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/admin.php:545 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è stato applicato con successo" - -#: ../../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/admin.php:552 -#, php-format -msgid "Update function %s could not be found." -msgstr "La funzione di aggiornamento %s non puo' essere trovata." - -#: ../../mod/admin.php:567 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../mod/admin.php:571 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti" - -#: ../../mod/admin.php:572 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:573 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:574 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../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/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/admin.php:645 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' cancellato" - -#: ../../mod/admin.php:653 -#, php-format -msgid "User '%s' unblocked" -msgstr "Utente '%s' sbloccato" - -#: ../../mod/admin.php:653 -#, php-format -msgid "User '%s' blocked" -msgstr "Utente '%s' bloccato" - -#: ../../mod/admin.php:729 -msgid "select all" -msgstr "seleziona tutti" - -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "Richieste di registrazione in attesa di conferma" - -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Data richiesta" - -#: ../../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/admin.php:732 -msgid "No registrations." -msgstr "Nessuna registrazione." - -#: ../../mod/admin.php:733 ../../mod/notifications.php:161 -#: ../../mod/notifications.php:208 -msgid "Approve" -msgstr "Approva" - -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Nega" - -#: ../../mod/admin.php:736 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:737 ../../mod/contacts.php:353 -#: ../../mod/contacts.php:412 -msgid "Unblock" -msgstr "Sblocca" - -#: ../../mod/admin.php:738 -msgid "Site admin" -msgstr "" - -#: ../../mod/admin.php:741 -msgid "Register date" -msgstr "Data registrazione" - -#: ../../mod/admin.php:741 -msgid "Last login" -msgstr "Ultimo accesso" - -#: ../../mod/admin.php:741 -msgid "Last item" -msgstr "Ultimo elemento" - -#: ../../mod/admin.php:741 -msgid "Account" -msgstr "Account" - -#: ../../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/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/admin.php:785 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s disabilitato." - -#: ../../mod/admin.php:789 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s abilitato." - -#: ../../mod/admin.php:799 ../../mod/admin.php:1001 -msgid "Disable" -msgstr "Disabilita" - -#: ../../mod/admin.php:801 ../../mod/admin.php:1003 -msgid "Enable" -msgstr "Abilita" - -#: ../../mod/admin.php:823 ../../mod/admin.php:1032 -msgid "Toggle" -msgstr "Inverti" - -#: ../../mod/admin.php:831 ../../mod/admin.php:1042 -msgid "Author: " -msgstr "Autore: " - -#: ../../mod/admin.php:832 ../../mod/admin.php:1043 -msgid "Maintainer: " -msgstr "Manutentore: " - -#: ../../mod/admin.php:961 -msgid "No themes found." -msgstr "Nessun tema trovato." - -#: ../../mod/admin.php:1024 -msgid "Screenshot" -msgstr "Anteprima" - -#: ../../mod/admin.php:1072 -msgid "[Experimental]" -msgstr "[Sperimentale]" - -#: ../../mod/admin.php:1073 -msgid "[Unsupported]" -msgstr "[Non supportato]" - -#: ../../mod/admin.php:1100 -msgid "Log settings updated." -msgstr "Impostazioni Log aggiornate." - -#: ../../mod/admin.php:1156 -msgid "Clear" -msgstr "Pulisci" - -#: ../../mod/admin.php:1162 -msgid "Debugging" -msgstr "Debugging" - -#: ../../mod/admin.php:1163 -msgid "Log file" -msgstr "File di Log" - -#: ../../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/admin.php:1164 -msgid "Log level" -msgstr "Livello di Log" - -#: ../../mod/admin.php:1213 ../../mod/contacts.php:409 -msgid "Update now" -msgstr "Aggiorna adesso" - -#: ../../mod/admin.php:1214 -msgid "Close" -msgstr "Chiudi" - -#: ../../mod/admin.php:1220 -msgid "FTP Host" -msgstr "Indirizzo FTP" - -#: ../../mod/admin.php:1221 -msgid "FTP Path" -msgstr "Percorso FTP" - -#: ../../mod/admin.php:1222 -msgid "FTP User" -msgstr "Utente FTP" - -#: ../../mod/admin.php:1223 -msgid "FTP Password" -msgstr "Pasword FTP" - -#: ../../mod/photos.php:51 ../../boot.php:1857 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../mod/photos.php:79 ../../mod/settings.php:23 -msgid "everybody" -msgstr "tutti" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "I dati di questo contatto non sono disponibili" - -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197 -msgid "Delete Album" -msgstr "Rimuovi album" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499 -msgid "Delete Photo" -msgstr "Rimuovi foto" - -#: ../../mod/photos.php:284 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:653 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:653 -msgid "a photo" -msgstr "" - -#: ../../mod/photos.php:766 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../mod/photos.php:798 ../../mod/wall_upload.php:112 +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 #: ../../mod/profile_photo.php:153 msgid "Unable to process image." msgstr "Impossibile caricare l'immagine." -#: ../../mod/photos.php:825 ../../mod/wall_upload.php:138 +#: ../../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" + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 #: ../../mod/profile_photo.php:301 msgid "Image upload failed." msgstr "Caricamento immagine fallito." -#: ../../mod/photos.php:921 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../mod/photos.php:1022 -msgid "Access to this item is restricted." -msgstr "Questo oggetto non è visibile a tutti." - -#: ../../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/photos.php:1120 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../mod/photos.php:1124 ../../mod/photos.php:1192 -msgid "New album name: " -msgstr "Nome nuovo album: " - -#: ../../mod/photos.php:1125 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " - -#: ../../mod/photos.php:1126 -msgid "Do not show a status post for this upload" -msgstr "Non creare un post per questo upload" - -#: ../../mod/photos.php:1128 ../../mod/photos.php:1494 -msgid "Permissions" -msgstr "Permessi" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1503 -#: ../../mod/settings.php:1070 -msgid "Show to Groups" -msgstr "" - -#: ../../mod/photos.php:1138 ../../mod/photos.php:1504 -#: ../../mod/settings.php:1071 -msgid "Show to Contacts" -msgstr "" - -#: ../../mod/photos.php:1139 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:1140 -msgid "Public Photo" -msgstr "" - -#: ../../mod/photos.php:1207 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../mod/photos.php:1213 -msgid "Show Newest First" -msgstr "" - -#: ../../mod/photos.php:1215 -msgid "Show Oldest First" -msgstr "" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1775 -msgid "View Photo" -msgstr "Vedi foto" - -#: ../../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." - -#: ../../mod/photos.php:1285 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../mod/photos.php:1341 -msgid "View photo" -msgstr "Vedi foto" - -#: ../../mod/photos.php:1341 -msgid "Edit photo" -msgstr "Modifica foto" - -#: ../../mod/photos.php:1342 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../mod/photos.php:1348 ../../mod/content.php:620 -#: ../../object/Item.php:106 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../mod/photos.php:1367 -msgid "View Full Size" -msgstr "Vedi dimensione intera" - -#: ../../mod/photos.php:1441 -msgid "Tags: " -msgstr "Tag: " - -#: ../../mod/photos.php:1444 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" - -#: ../../mod/photos.php:1484 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1485 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1487 -msgid "New album name" -msgstr "Nuovo nome dell'album" - -#: ../../mod/photos.php:1490 -msgid "Caption" -msgstr "Titolo" - -#: ../../mod/photos.php:1492 -msgid "Add a Tag" -msgstr "Aggiungi tag" - -#: ../../mod/photos.php:1496 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" - -#: ../../mod/photos.php:1505 -msgid "Private photo" -msgstr "" - -#: ../../mod/photos.php:1506 -msgid "Public photo" -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)" - -#: ../../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" - -#: ../../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" - -#: ../../mod/photos.php:1781 -msgid "View Album" -msgstr "Sfoglia l'album" - -#: ../../mod/photos.php:1790 -msgid "Recent Photos" -msgstr "Foto recenti" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Amici di %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Nessun amico da visualizzare." - #: ../../mod/api.php:76 ../../mod/api.php:102 msgid "Authorize application connection" msgstr "Autorizza la connessione dell'applicazione" @@ -6727,6 +2115,229 @@ msgid "" " 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?" +#: ../../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" + +#: ../../mod/photos.php:51 ../../boot.php:1878 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../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" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../mod/photos.php:79 ../../mod/settings.php:23 +msgid "everybody" +msgstr "tutti" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "I dati di questo contatto non sono disponibili" + +#: ../../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" + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Rimuovi album" + +#: ../../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?" + +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Rimuovi foto" + +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "Vuoi veramente cancellare questa foto?" + +#: ../../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" + +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "una foto" + +#: ../../mod/photos.php:761 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di" + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "Questo oggetto non è visibile a tutti." + +#: ../../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." + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Permessi" + +#: ../../mod/photos.php:1140 ../../mod/photos.php:1506 +#: ../../mod/settings.php:1070 +msgid "Show to Groups" +msgstr "Mostra ai gruppi" + +#: ../../mod/photos.php:1141 ../../mod/photos.php:1507 +#: ../../mod/settings.php:1071 +msgid "Show to Contacts" +msgstr "Mostra ai contatti" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "Mostra nuove foto per prime" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "Mostra vecchie foto per prime" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Vedi foto" + +#: ../../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." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Modifica foto" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Tag: " + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "Ruota a destra" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "Ruota a sinistra" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Nuovo nome dell'album" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Titolo" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Aggiungi tag" + +#: ../../mod/photos.php:1499 +msgid "" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" + +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "Foto privata" + +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "Foto pubblica" + +#: ../../mod/photos.php:1531 ../../include/conversation.php:1041 +msgid "Share" +msgstr "Condividi" + +#: ../../mod/photos.php:1784 +msgid "View Album" +msgstr "Sfoglia l'album" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" + #: ../../mod/register.php:91 ../../mod/regmod.php:54 #, php-format msgid "Registration details for %s" @@ -6807,26 +2418,81 @@ msgstr "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del msgid "Choose a nickname: " msgstr "Scegli un nome utente: " -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Applicazioni" +#: ../../mod/register.php:275 ../../boot.php:1033 ../../include/nav.php:108 +msgid "Register" +msgstr "Registrati" -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "Account approvato." +#: ../../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/regmod.php:100 +#: ../../mod/lostpass.php:44 #, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +msgid "Password reset requested at %s" +msgstr "Richiesta reimpostazione password su %s" -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Accedi." +#: ../../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:1072 +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 Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." + +#: ../../mod/lostpass.php:107 +#, php-format +msgid "Your password has been changed at %s" +msgstr "La tua password presso %s è stata cambiata" + +#: ../../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 "Sistema in manutenzione" #: ../../mod/attach.php:8 msgid "Item not available." @@ -6836,88 +2502,21 @@ msgstr "Oggetto non disponibile." msgid "Item was not found." msgstr "Oggetto non trovato." -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Rimuovi il mio account" +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Applicazioni" -#: ../../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." +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Guida:" -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "Testo sorgente (bbcode):" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "" - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "" - -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "" - -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "" - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "" - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "" - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Amici in comune" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/search.php:21 ../../mod/network.php:224 -msgid "Remove term" -msgstr "Rimuovi termine" - -#: ../../mod/search.php:162 ../../mod/search.php:188 -#: ../../mod/community.php:61 ../../mod/community.php:86 -msgid "No results." -msgstr "Nessun risultato." - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Non disponibile." +#: ../../mod/help.php:84 ../../include/nav.php:113 +msgid "Help" +msgstr "Guida" #: ../../mod/contacts.php:85 ../../mod/contacts.php:165 msgid "Could not access contact record." @@ -6931,10 +2530,6 @@ msgstr "Non riesco a trovare il profilo selezionato." msgid "Contact updated." msgstr "Contatto aggiornato." -#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 -msgid "Failed to update contact record." -msgstr "Errore nell'aggiornamento del contatto." - #: ../../mod/contacts.php:187 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" @@ -6953,7 +2548,7 @@ msgstr "Il contatto non è più ignorato" #: ../../mod/contacts.php:220 msgid "Contact has been archived" -msgstr "" +msgstr "Il contatto è stato archiviato" #: ../../mod/contacts.php:220 msgid "Contact has been unarchived" @@ -6961,7 +2556,7 @@ msgstr "Il contatto è stato dearchiviato" #: ../../mod/contacts.php:244 msgid "Do you really want to delete this contact?" -msgstr "" +msgstr "Vuoi veramente cancellare questo contatto?" #: ../../mod/contacts.php:263 msgid "Contact has been removed." @@ -7007,6 +2602,13 @@ msgstr "Suggerisci amici" msgid "Network type: %s" msgstr "Tipo di rete: %s" +#: ../../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" + #: ../../mod/contacts.php:348 msgid "View all contacts" msgstr "Vedi tutti i contatti" @@ -7019,12 +2621,6 @@ msgstr "Inverti stato \"Blocca\"" msgid "Unignore" msgstr "Non ignorare" -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 -msgid "Ignore" -msgstr "Ignora" - #: ../../mod/contacts.php:362 msgid "Toggle Ignored status" msgstr "Inverti stato \"Ignora\"" @@ -7051,7 +2647,7 @@ msgstr "Impostazioni avanzate Contatto" #: ../../mod/contacts.php:381 msgid "Communications lost with this contact!" -msgstr "" +msgstr "Comunicazione con questo contatto persa!" #: ../../mod/contacts.php:384 msgid "Contact Editor" @@ -7116,11 +2712,6 @@ msgstr "Ignorato" msgid "Currently archived" msgstr "Al momento archiviato" -#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 -#: ../../mod/notifications.php:204 -msgid "Hide this contact from others" -msgstr "Nascondi questo contatto agli altri" - #: ../../mod/contacts.php:419 msgid "" "Replies/likes to your public posts may still be visible" @@ -7194,13 +2785,416 @@ msgstr "è un tuo fan" msgid "you are a fan of" msgstr "sei un fan di" +#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89 +#: ../../include/nav.php:171 +msgid "Contacts" +msgstr "Contatti" + #: ../../mod/contacts.php:611 msgid "Search your contacts" msgstr "Cerca nei tuoi contatti" +#: ../../mod/contacts.php:612 ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Ricerca: " + +#: ../../mod/contacts.php:613 ../../mod/directory.php:61 +#: ../../include/contact_widgets.php:33 +msgid "Find" +msgstr "Trova" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Amici in comune" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "Nessun contatto in comune." + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Contatto aggiunto" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "Importa" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Muovi account" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "Puoi importare un account da un altro server Friendica." + +#: ../../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." + +#: ../../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" + +#: ../../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\"" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag rimosso" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" + +#: ../../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" + +#: ../../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 "Come Iniziare" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica Passo-Passo" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start 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 Quick Start - veloce introduzione alla tua pagina profilo e alla pagina Rete, fai qualche nuova amicizia, e trova qualche gruppo a cui unirti." + +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "Vai alle tue Impostazioni" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings 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 Impostazioni - 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: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" + +#: ../../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 "Modifica il tuo Profilo" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default 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 predefinito 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 "Parole chiave del profilo" + +#: ../../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 "Collegarsi" + +#: ../../mod/newmember.php:49 ../../mod/newmember.php:51 +#: ../../include/contact_selectors.php:81 +msgid "Facebook" +msgstr "Facebook" + +#: ../../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 "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "SeAdd New Contact 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 Aggiungi Nuovo Contatto" + +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "Vai all'Elenco del tuo sito" + +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow 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 Connetti o Segui nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto." + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Trova nuove persone" + +#: ../../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:66 ../../include/group.php:270 +msgid "Groups" +msgstr "Gruppi" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Raggruppa i tuoi contatti" + +#: ../../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 "Perchè i miei post non sono pubblici?" + +#: ../../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." + +#: ../../mod/newmember.php:78 +msgid "Getting Help" +msgstr "Ottenere Aiuto" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Vai alla sezione Guida" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "Le nostre pagine della guida possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse." + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../mod/search.php:30 ../../mod/network.php:233 +#: ../../include/features.php:41 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../mod/search.php:99 ../../include/text.php:778 +#: ../../include/text.php:779 ../../include/nav.php:118 +msgid "Search" +msgstr "Cerca" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:88 +msgid "No results." +msgstr "Nessun risultato." + +#: ../../mod/invite.php:27 +msgid "Total invitation limit exceeded." +msgstr "Limite totale degli inviti superato." + +#: ../../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 "Limite degli inviti superato. Contatta l'amministratore del tuo sito." + +#: ../../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: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/settings.php:30 ../../mod/uexport.php:9 ../../include/nav.php:167 +msgid "Account settings" +msgstr "Parametri account" + #: ../../mod/settings.php:35 msgid "Additional features" -msgstr "" +msgstr "Funzionalità aggiuntive" #: ../../mod/settings.php:40 ../../mod/uexport.php:14 msgid "Display settings" @@ -7244,7 +3238,7 @@ msgstr "Impostazioni e-mail aggiornate." #: ../../mod/settings.php:247 msgid "Features updated" -msgstr "" +msgstr "Funzionalità aggiornate" #: ../../mod/settings.php:307 msgid "Passwords do not match. Password unchanged." @@ -7280,17 +3274,29 @@ msgstr "Non puoi usare quella email." #: ../../mod/settings.php:454 msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "" +msgstr "Il forum privato non ha permessi di privacy. Uso il gruppo di privacy predefinito." #: ../../mod/settings.php:458 msgid "Private forum has no privacy permissions and no default privacy group." -msgstr "" +msgstr "Il gruppo privato non ha permessi di privacy e nessun gruppo di privacy predefinito." + +#: ../../mod/settings.php:488 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." #: ../../mod/settings.php:559 ../../mod/settings.php:585 #: ../../mod/settings.php:621 msgid "Add application" msgstr "Aggiungi applicazione" +#: ../../mod/settings.php:563 ../../mod/settings.php:589 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../mod/settings.php:564 ../../mod/settings.php:590 +msgid "Consumer Secret" +msgstr "Consumer Secret" + #: ../../mod/settings.php:565 ../../mod/settings.php:591 msgid "Redirect" msgstr "Redirect" @@ -7307,11 +3313,6 @@ msgstr "Non puoi modificare questa applicazione." msgid "Connected Apps" msgstr "Applicazioni Collegate" -#: ../../mod/settings.php:622 ../../mod/content.php:728 -#: ../../mod/editpost.php:109 ../../object/Item.php:110 -msgid "Edit" -msgstr "Modifica" - #: ../../mod/settings.php:624 msgid "Client key starts with" msgstr "Chiave del client inizia con" @@ -7328,17 +3329,21 @@ msgstr "Rimuovi l'autorizzazione" msgid "No Plugin settings configured" msgstr "Nessun plugin ha impostazioni modificabili" +#: ../../mod/settings.php:646 +msgid "Plugin Settings" +msgstr "Impostazioni plugin" + #: ../../mod/settings.php:660 msgid "Off" -msgstr "" +msgstr "Spento" #: ../../mod/settings.php:660 msgid "On" -msgstr "" +msgstr "Acceso" #: ../../mod/settings.php:668 msgid "Additional Features" -msgstr "" +msgstr "Funzionalità aggiuntive" #: ../../mod/settings.php:681 ../../mod/settings.php:682 #, php-format @@ -7391,6 +3396,10 @@ msgstr "Porta IMAP:" msgid "Security:" msgstr "Sicurezza:" +#: ../../mod/settings.php:732 ../../mod/settings.php:737 +msgid "None" +msgstr "Nessuna" + #: ../../mod/settings.php:733 msgid "Email login name:" msgstr "Nome utente email:" @@ -7433,7 +3442,7 @@ msgstr "Tema:" #: ../../mod/settings.php:816 msgid "Mobile Theme:" -msgstr "" +msgstr "Tema mobile:" #: ../../mod/settings.php:817 msgid "Update browser every xx seconds" @@ -7445,7 +3454,7 @@ msgstr "Minimo 10 secondi, nessun limite massimo" #: ../../mod/settings.php:818 msgid "Number of items to display per page:" -msgstr "" +msgstr "Numero di elementi da mostrare per pagina:" #: ../../mod/settings.php:818 msgid "Maximum of 100 items" @@ -7608,6 +3617,10 @@ msgstr "Lascia questi campi in bianco per non effettuare variazioni alla passwor msgid "Basic Settings" msgstr "Impostazioni base" +#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nome completo:" + #: ../../mod/settings.php:1051 msgid "Email Address:" msgstr "Indirizzo Email:" @@ -7654,7 +3667,7 @@ msgstr "" #: ../../mod/settings.php:1077 msgid "Default Permissions for New Posts" -msgstr "" +msgstr "Permessi predefiniti per i nuovi post" #: ../../mod/settings.php:1089 msgid "Maximum private messages per day from unknown people:" @@ -7666,19 +3679,19 @@ msgstr "Impostazioni notifiche" #: ../../mod/settings.php:1093 msgid "By default post a status message when:" -msgstr "" +msgstr "Invia un messaggio di stato quando:" #: ../../mod/settings.php:1094 msgid "accepting a friend request" -msgstr "" +msgstr "accetti una richiesta di amicizia" #: ../../mod/settings.php:1095 msgid "joining a forum/community" -msgstr "" +msgstr "ti unisci a un forum/comunità" #: ../../mod/settings.php:1096 msgid "making an interesting profile change" -msgstr "" +msgstr "fai un interessante modifica al profilo" #: ../../mod/settings.php:1097 msgid "Send a notification email when:" @@ -7714,7 +3727,7 @@ msgstr "Sei stato taggato in un post" #: ../../mod/settings.php:1105 msgid "You are poked/prodded/etc. in a post" -msgstr "" +msgstr "Sei 'toccato'/'spronato'/ecc. in un post" #: ../../mod/settings.php:1108 msgid "Advanced Account/Page Type Settings" @@ -7724,182 +3737,508 @@ msgstr "Impostazioni avanzate Account/Tipo di pagina" msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: ../../mod/content.php:119 ../../mod/network.php:596 -msgid "No such group" -msgstr "Nessun gruppo" +#: ../../mod/display.php:177 +msgid "Item has been removed." +msgstr "L'oggetto è stato rimosso." -#: ../../mod/content.php:130 ../../mod/network.php:607 -msgid "Group is empty" -msgstr "Il gruppo è vuoto" +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Cerca persone" -#: ../../mod/content.php:134 ../../mod/network.php:611 -msgid "Group: " -msgstr "Gruppo: " +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../mod/content.php:603 ../../object/Item.php:313 +#: ../../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 "Stato civile" + +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "Partner romantico" + +#: ../../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 "Lavoro/Impiego" + +#: ../../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." +msgstr "Profilo aggiornato." + +#: ../../mod/profiles.php:517 +msgid " and " +msgstr "e " + +#: ../../mod/profiles.php:525 +msgid "public profile" +msgstr "profilo pubblico" + +#: ../../mod/profiles.php:528 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../mod/content.php:684 ../../object/Item.php:204 -msgid "like" -msgstr "mi piace" +#: ../../mod/profiles.php:529 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr "- Visita %2$s di %1$s" -#: ../../mod/content.php:685 ../../object/Item.php:205 -msgid "dislike" -msgstr "non mi piace" +#: ../../mod/profiles.php:532 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha un %2$s aggiornato. Ha cambiato %3$s" -#: ../../mod/content.php:687 ../../object/Item.php:207 -msgid "Share this" -msgstr "Condividi questo" +#: ../../mod/profiles.php:605 +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/content.php:687 ../../object/Item.php:207 -msgid "share" -msgstr "condividi" +#: ../../mod/profiles.php:625 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../mod/content.php:711 ../../object/Item.php:605 -msgid "Bold" -msgstr "Grassetto" +#: ../../mod/profiles.php:627 +msgid "Change Profile Photo" +msgstr "Cambia la foto del profilo" -#: ../../mod/content.php:712 ../../object/Item.php:606 -msgid "Italic" -msgstr "Corsivo" +#: ../../mod/profiles.php:628 +msgid "View this profile" +msgstr "Visualizza questo profilo" -#: ../../mod/content.php:713 ../../object/Item.php:607 -msgid "Underline" -msgstr "Sottolineato" +#: ../../mod/profiles.php:629 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../mod/content.php:714 ../../object/Item.php:608 -msgid "Quote" -msgstr "Citazione" +#: ../../mod/profiles.php:630 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../mod/content.php:715 ../../object/Item.php:609 -msgid "Code" -msgstr "Codice" +#: ../../mod/profiles.php:631 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../mod/content.php:716 ../../object/Item.php:610 -msgid "Image" -msgstr "Immagine" +#: ../../mod/profiles.php:632 +msgid "Profile Name:" +msgstr "Nome del profilo:" -#: ../../mod/content.php:717 ../../object/Item.php:611 -msgid "Link" -msgstr "Link" +#: ../../mod/profiles.php:633 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" -#: ../../mod/content.php:718 ../../object/Item.php:612 -msgid "Video" -msgstr "Video" +#: ../../mod/profiles.php:634 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: ../../mod/content.php:753 ../../object/Item.php:183 -msgid "add star" -msgstr "aggiungi a speciali" +#: ../../mod/profiles.php:635 +msgid "Your Gender:" +msgstr "Il tuo sesso:" -#: ../../mod/content.php:754 ../../object/Item.php:184 -msgid "remove star" -msgstr "rimuovi da speciali" +#: ../../mod/profiles.php:636 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s)" -#: ../../mod/content.php:755 ../../object/Item.php:185 -msgid "toggle star status" -msgstr "Inverti stato preferito" +#: ../../mod/profiles.php:637 +msgid "Street Address:" +msgstr "Indirizzo (via/piazza):" -#: ../../mod/content.php:758 ../../object/Item.php:188 -msgid "starred" -msgstr "preferito" +#: ../../mod/profiles.php:638 +msgid "Locality/City:" +msgstr "Località:" -#: ../../mod/content.php:759 ../../object/Item.php:193 -msgid "add tag" -msgstr "aggiungi tag" +#: ../../mod/profiles.php:639 +msgid "Postal/Zip Code:" +msgstr "CAP:" -#: ../../mod/content.php:763 ../../object/Item.php:123 -msgid "save to folder" -msgstr "salva nella cartella" +#: ../../mod/profiles.php:640 +msgid "Country:" +msgstr "Nazione:" -#: ../../mod/content.php:854 ../../object/Item.php:260 -msgid "to" -msgstr "a" +#: ../../mod/profiles.php:641 +msgid "Region/State:" +msgstr "Regione/Stato:" -#: ../../mod/content.php:855 ../../object/Item.php:262 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../mod/profiles.php:642 +msgid " Marital Status:" +msgstr " Stato sentimentale:" -#: ../../mod/content.php:856 ../../object/Item.php:263 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca" +#: ../../mod/profiles.php:643 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" + +#: ../../mod/profiles.php:644 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:645 +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:" + +#: ../../mod/profiles.php:651 +msgid "Public Keywords:" +msgstr "Parole chiave visibili a tutti:" + +#: ../../mod/profiles.php:652 +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" + +#: ../../mod/profiles.php:656 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(E' utilizzato per suggerire potenziali amici, può essere visto da altri)" + +#: ../../mod/profiles.php:657 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" + +#: ../../mod/profiles.php:658 +msgid "Tell us about yourself..." +msgstr "Raccontaci di te..." + +#: ../../mod/profiles.php:659 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../mod/profiles.php:660 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e social network" + +#: ../../mod/profiles.php:661 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../mod/profiles.php:662 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../mod/profiles.php:663 +msgid "Television" +msgstr "Televisione" + +#: ../../mod/profiles.php:664 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" + +#: ../../mod/profiles.php:665 +msgid "Love/romance" +msgstr "Amore" + +#: ../../mod/profiles.php:666 +msgid "Work/employment" +msgstr "Lavoro/impiego" + +#: ../../mod/profiles.php:667 +msgid "School/education" +msgstr "Scuola/educazione" + +#: ../../mod/profiles.php:672 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "Questo è il tuo profilo publico.
Potrebbe 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:1366 ../../boot.php:1392 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../mod/profiles.php:723 ../../boot.php:1367 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" + +#: ../../mod/profiles.php:734 ../../boot.php:1377 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: ../../mod/profiles.php:736 ../../boot.php:1380 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../mod/profiles.php:737 ../../boot.php:1381 +msgid "Edit visibility" +msgstr "Modifica visibilità" #: ../../mod/share.php:44 msgid "link" msgstr "collegamento" -#: ../../mod/crepair.php:102 -msgid "Contact settings applied." -msgstr "Contatto modificato." +#: ../../mod/uexport.php:72 +msgid "Export account" +msgstr "Esporta account" -#: ../../mod/crepair.php:104 -msgid "Contact update failed." -msgstr "Le modifiche al contatto non sono state salvate." - -#: ../../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." - -#: ../../mod/crepair.php:135 -msgid "Repair Contact Settings" -msgstr "Ripara il contatto" - -#: ../../mod/crepair.php:137 +#: ../../mod/uexport.php:72 msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" +"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/crepair.php:138 +#: ../../mod/uexport.php:73 +msgid "Export all" +msgstr "Esporta tutto" + +#: ../../mod/uexport.php:73 msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." +"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/crepair.php:144 -msgid "Return to contact editor" -msgstr "Ritorna alla modifica contatto" +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" -#: ../../mod/crepair.php:149 -msgid "Account Nickname" -msgstr "Nome utente" +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" -#: ../../mod/crepair.php:150 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@TagName - al posto del nome utente" +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: ../../mod/crepair.php:151 -msgid "Account URL" -msgstr "URL dell'utente" +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} ha commentato il post di %s" -#: ../../mod/crepair.php:152 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "a {0} piace il post di %s" -#: ../../mod/crepair.php:153 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "a {0} non piace il post di %s" -#: ../../mod/crepair.php:154 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ora è amico di %s" -#: ../../mod/crepair.php:155 -msgid "Poll/Feed URL" -msgstr "URL Feed" +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} ha inviato un nuovo messaggio" -#: ../../mod/crepair.php:156 -msgid "New photo from this URL" -msgstr "Nuova foto da questo URL" +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} ha taggato il post di %s con #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} ti ha citato in un post" + +#: ../../mod/navigation.php:20 ../../include/nav.php:34 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: ../../mod/navigation.php:24 ../../include/nav.php:38 +msgid "Clear notifications" +msgstr "Pulisci le notifiche" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Non disponibile." + +#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93 +#: ../../include/nav.php:128 +msgid "Community" +msgstr "Comunità" + +#: ../../mod/filer.php:30 ../../include/conversation.php:962 +#: ../../include/conversation.php:980 +msgid "Save to Folder:" +msgstr "Salva nella Cartella:" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- seleziona -" + +#: ../../mod/filer.php:31 ../../mod/notes.php:63 ../../include/text.php:781 +msgid "Save" +msgstr "Salva" + +#: ../../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/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/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "Vuoi veramente cancellare questo suggerimento?" + +#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520 +#: ../../include/contact_widgets.php:34 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" + +#: ../../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/suggest.php:88 ../../mod/match.php:58 ../../boot.php:1338 +#: ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Connetti" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." + +#: ../../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/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/delegate.php:95 msgid "No potential page delegates located." msgstr "Nessun potenziale delegato per la pagina è stato trovato." +#: ../../mod/delegate.php:121 ../../include/nav.php:165 +msgid "Delegate Page Management" +msgstr "Gestione delegati per la pagina" + #: ../../mod/delegate.php:123 msgid "" "Delegates are able to manage all aspects of this account/page except for " @@ -7927,587 +4266,170 @@ msgstr "Aggiungi" msgid "No entries." msgstr "Nessun articolo." -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -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." - -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Errore di comunicazione con l'altro sito." - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "La risposta dell'altro sito non può essere gestita: " - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Problema temporaneo. Attendi e riprova." - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "La presentazione ha generato un errore o è stata revocata." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato '%s'" - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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" - -#: ../../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." - -#: ../../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." - -#: ../../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" - -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "Connession accettata su %s" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "" - -#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "Presentazione completa." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Errore di comunicazione." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." - -#: ../../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." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." - -#: ../../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." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Invalid locator" - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Indirizzo email non valido." - -#: ../../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." - -#: ../../mod/dfrn_request.php:458 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Pare che tu e %s siate già amici." - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo non valido." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Non hai fatto accesso con l'identità corretta. Accedi a questo profilo." - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Nascondi questo contatto" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." - -#: ../../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." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Conferma" - -#: ../../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:" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "Connetti un email come follower (in arrivo)" - -#: ../../mod/dfrn_request.php:829 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi" - -#: ../../mod/dfrn_request.php:832 -msgid "Friend/Connection Request" -msgstr "Richieste di amicizia/connessione" - -#: ../../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" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Rispondi:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" - -#: ../../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." - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "L'indirizzo della tua identità:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Invia richiesta" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: ../../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/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignora / Nascondi" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Cerca persone" - -#: ../../mod/dirfind.php:60 ../../mod/match.php:65 -msgid "No matches" -msgstr "Nessun risultato" - -#: ../../mod/display.php:99 ../../mod/profile.php:155 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." - -#: ../../mod/display.php:177 -msgid "Item has been removed." -msgstr "L'oggetto è stato rimosso." - -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Oggetto non trovato" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "Modifica messaggio" - -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -msgstr "Titolo e ora di inizio dell'evento sono richiesti." - -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l j F" - -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Modifca l'evento" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Crea un nuovo evento" - -#: ../../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 -#, 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." - -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "L'evento inizia:" - -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Richiesto" - -#: ../../mod/events.php:462 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/ora di fine non è definita" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "L'evento finisce:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Visualizza con il fuso orario di chi legge" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Titolo:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Condividi questo evento" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "" - -#: ../../mod/uexport.php:72 -msgid "Export account" -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 "" - -#: ../../mod/uexport.php:73 -msgid "Export all" -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 "" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- seleziona -" - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your accont, go to \"Settings->Export your porsonal data\" and " -"select \"Export account\"" -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 "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "Contatto aggiunto" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "Questo è Friendica, versione" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo web" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Visita Friendica.com per saperne di più sul progetto Friendica." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" - -#: ../../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" - -#: ../../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" - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci amici" - -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Gruppo creato." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Gruppo non trovato." - -#: ../../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/viewcontacts.php:76 ../../include/text.php:718 +msgid "View Contacts" +msgstr "Visualizza i contatti" -#: ../../mod/wall_attach.php:69 +#: ../../mod/notes.php:44 ../../boot.php:1892 +msgid "Personal Notes" +msgstr "Note personali" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "Tocca/Pungola" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "tocca, pungola o fai altre cose a qualcuno" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "Destinatario" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi fare al destinatario" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Rendi questo post privato" + +#: ../../mod/directory.php:49 ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "Elenco globale" + +#: ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Cerca nel sito" + +#: ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Elenco del sito" + +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Genere:" + +#: ../../mod/directory.php:136 ../../boot.php:1408 +#: ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Genere:" + +#: ../../mod/directory.php:138 ../../boot.php:1411 +#: ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Stato:" + +#: ../../mod/directory.php:140 ../../boot.php:1413 +#: ../../include/profile_advanced.php:48 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../mod/directory.php:142 ../../include/profile_advanced.php:58 +msgid "About:" +msgstr "Informazioni:" + +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." + +#: ../../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/localtime.php:26 +msgid "" +"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/localtime.php:30 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +msgid "UTC time: %s" +msgstr "Ora UTC: %s" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." +#: ../../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/oexchange.php:25 +msgid "Post successful." +msgstr "Inviato!" + +#: ../../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 "Seleziona un profilo:" + +#: ../../mod/profile_photo.php:245 +msgid "Upload" +msgstr "Carica" + +#: ../../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." #: ../../mod/install.php:117 msgid "Friendica Social Communications Server - Setup" @@ -8609,7 +4531,7 @@ 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 'Activating scheduled tasks'" -msgstr "" +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 'Activating scheduled tasks'" #: ../../mod/install.php:325 msgid "PHP executable path" @@ -8677,7 +4599,7 @@ msgstr "modulo PHP mb_string" #: ../../mod/install.php:382 ../../mod/install.php:384 msgid "Apache mod_rewrite module" -msgstr "" +msgstr "Modulo mod_rewrite di Apache" #: ../../mod/install.php:382 msgid "" @@ -8721,13 +4643,13 @@ msgstr "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server 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 "" +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/install.php:426 msgid "" "You can alternatively skip this procedure and perform a manual installation." " Please see the file \"INSTALL.txt\" for instructions." -msgstr "" +msgstr "Puoi in alternativa saltare questa procedura ed eseguire l'installazione manualmente. Vedi il file \"INSTALL.txt\" per le istruzioni." #: ../../mod/install.php:429 msgid ".htconfig.php is writable" @@ -8737,39 +4659,39 @@ msgstr ".htconfig.php è scrivibile" msgid "" "Friendica uses the Smarty3 template engine to render its web views. Smarty3 " "compiles templates to PHP to speed up rendering." -msgstr "" +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/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 "" +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/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 "" +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/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 "" +msgstr "Nota: come misura di sicurezza, dovresti dare accesso in scrittura solo alla cartella view/smarty3, non ai template (.tpl) che contiene." #: ../../mod/install.php:445 msgid "view/smarty3 is writable" -msgstr "" +msgstr "view/smarty3 è scrivibile" #: ../../mod/install.php:457 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." -msgstr "" +msgstr "La riscrittura degli url in .htaccess non funziona. Controlla la configurazione del tuo server." #: ../../mod/install.php:459 msgid "Url rewrite is working" -msgstr "" +msgstr "La riscrittura degli url funziona" #: ../../mod/install.php:469 msgid "" @@ -8784,7 +4706,7 @@ msgstr "La creazione delle tabelle del database ha generato errori." #: ../../mod/install.php:504 msgid "

What next

" -msgstr "" +msgstr "

Cosa fare ora

" #: ../../mod/install.php:505 msgid "" @@ -8792,276 +4714,74 @@ msgid "" "poller." msgstr "IMPORTANTE: Devi impostare [manualmente] la pianificazione del poller." -#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Gruppo creato." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Gruppo non trovato." + +#: ../../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/content.php:119 ../../mod/network.php:596 +msgid "No such group" +msgstr "Nessun gruppo" + +#: ../../mod/content.php:130 ../../mod/network.php:607 +msgid "Group is empty" +msgstr "Il gruppo è vuoto" + +#: ../../mod/content.php:134 ../../mod/network.php:611 +msgid "Group: " +msgstr "Gruppo: " + +#: ../../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/regmod.php:100 #, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensione dell'immagine supera il limite di %d" +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../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 Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina Impostazioni 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/regmod.php:112 +msgid "Please login." +msgstr "Accedi." #: ../../mod/match.php:12 msgid "Profile Match" @@ -9075,121 +4795,62 @@ msgstr "Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo p 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 may be able to " -"respond from the sender's profile page." -msgstr "Nessuna comunicazione sicura disponibile, Potresti 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 +#: ../../mod/item.php:105 msgid "Unable to locate original post." msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/item.php:292 +#: ../../mod/item.php:307 msgid "Empty post discarded." msgstr "Messaggio vuoto scartato." -#: ../../mod/item.php:841 +#: ../../mod/item.php:869 msgid "System error. Post not saved." msgstr "Errore di sistema. Messaggio non salvato." -#: ../../mod/item.php:866 +#: ../../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/item.php:868 +#: ../../mod/item.php:896 #, php-format msgid "You may visit them online at %s" msgstr "Puoi visitarli online su %s" -#: ../../mod/item.php:869 +#: ../../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/item.php:873 +#: ../../mod/item.php:901 #, php-format msgid "%s posted an update." msgstr "%s ha inviato un aggiornamento." +#: ../../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/mood.php:133 +msgid "Mood" +msgstr "Umore" + +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "Condividi il tuo umore con i tuoi amici" + #: ../../mod/network.php:181 msgid "Search Results For:" msgstr "Cerca risultati per:" +#: ../../mod/network.php:234 ../../include/group.php:275 +msgid "add" +msgstr "aggiungi" + #: ../../mod/network.php:397 msgid "Commented Order" msgstr "Ordina per commento" @@ -9206,10 +4867,6 @@ msgstr "Ordina per invio" 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" @@ -9262,432 +4919,217 @@ msgstr "I messaggi privati a questa persona potrebbero risultare visibili anche msgid "Invalid contact." msgstr "Contatto non valido." -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Benvenuto su Friendica" +#: ../../mod/crepair.php:102 +msgid "Contact settings applied." +msgstr "Contatto modificato." -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Cose da fare per i Nuovi Utenti" +#: ../../mod/crepair.php:104 +msgid "Contact update failed." +msgstr "Le modifiche al contatto non sono state salvate." -#: ../../mod/newmember.php:12 +#: ../../mod/crepair.php:135 +msgid "Repair Contact Settings" +msgstr "Ripara il contatto" + +#: ../../mod/crepair.php:137 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." +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più" -#: ../../mod/newmember.php:14 -msgid "Getting Started" +#: ../../mod/crepair.php:138 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Usa ora il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina." + +#: ../../mod/crepair.php:144 +msgid "Return to contact editor" +msgstr "Ritorna alla modifica contatto" + +#: ../../mod/crepair.php:149 +msgid "Account Nickname" +msgstr "Nome utente" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - al posto del nome utente" + +#: ../../mod/crepair.php:151 +msgid "Account URL" +msgstr "URL dell'utente" + +#: ../../mod/crepair.php:152 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" + +#: ../../mod/crepair.php:153 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" + +#: ../../mod/crepair.php:154 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" + +#: ../../mod/crepair.php:155 +msgid "Poll/Feed URL" +msgstr "URL Feed" + +#: ../../mod/crepair.php:156 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" + +#: ../../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" + +#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "I tuoi contatti" + +#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79 +msgid "Your events" +msgstr "I tuoi eventi" + +#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 +msgid "Personal notes" +msgstr "Note personali" + +#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: ../../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" + +#: ../../view/theme/diabook/theme.php:384 +#: ../../view/theme/diabook/theme.php:634 +#: ../../view/theme/diabook/config.php:165 +msgid "Community Profiles" +msgstr "Profili Comunità" + +#: ../../view/theme/diabook/theme.php:405 +#: ../../view/theme/diabook/theme.php:639 +#: ../../view/theme/diabook/config.php:170 +msgid "Last users" +msgstr "Ultimi utenti" + +#: ../../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\"" + +#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1554 +#: ../../include/conversation.php:118 ../../include/conversation.php:246 +msgid "event" +msgstr "l'evento" + +#: ../../view/theme/diabook/theme.php:479 +#: ../../view/theme/diabook/theme.php:640 +#: ../../view/theme/diabook/config.php:171 +msgid "Last photos" +msgstr "Ultime foto" + +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +#: ../../view/theme/diabook/config.php:168 +msgid "Find Friends" +msgstr "Trova Amici" + +#: ../../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/newmember.php:18 -msgid "Friendica Walk-Through" +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" msgstr "" -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." +#: ../../view/theme/diabook/theme.php:578 +#: ../../view/theme/diabook/config.php:161 +msgid "Set longitude (X) for Earth Layers" msgstr "" -#: ../../mod/newmember.php:26 -msgid "Go to Your Settings" +#: ../../view/theme/diabook/theme.php:579 +#: ../../view/theme/diabook/config.php:162 +msgid "Set latitude (Y) for Earth Layers" msgstr "" -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings 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 Impostazioni - 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." +#: ../../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/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." +#: ../../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/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" +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:638 +msgid "Last Tweets" msgstr "" -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default 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 predefinito 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" +#: ../../view/theme/diabook/theme.php:609 +#: ../../view/theme/diabook/config.php:159 +msgid "Set twitter search term" 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." +#: ../../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/newmember.php:44 -msgid "Connecting" +#: ../../view/theme/diabook/theme.php:629 +#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326 +msgid "show" +msgstr "mostra" + +#: ../../view/theme/diabook/theme.php:630 +msgid "Show/hide boxes at right-hand column:" 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 "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "SeAdd New Contact 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 Aggiungi Nuovo Contatto" - -#: ../../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 Connect or Follow 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 Connetti o Segui 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 help pages may be consulted for detail on other program" -" features and resources." -msgstr "Le nostre pagine della guida 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 +#: ../../view/theme/cleanzero/config.php:82 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 +#: ../../view/theme/cleanzero/config.php:84 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" @@ -9701,105 +5143,14 @@ msgstr "" 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 "" -#: ../../view/theme/diabook/config.php:170 -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -msgid "Last users" -msgstr "Ultimi utenti" - -#: ../../view/theme/diabook/config.php:171 -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -msgid "Last photos" -msgstr "Ultime foto" - -#: ../../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\"" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "I tuoi contatti" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "Elenco Locale" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - #: ../../view/theme/dispy/config.php:75 msgid "Set colour scheme" msgstr "Imposta schema colori" @@ -9816,136 +5167,1861 @@ msgstr "Sinistra" msgid "Center" msgstr "Centrato" +#: ../../view/theme/quattro/config.php:68 +#: ../../view/theme/cleanzero/config.php:86 +msgid "Color scheme" +msgstr "Schema colori" + #: ../../view/theme/quattro/config.php:69 msgid "Posts font size" -msgstr "" +msgstr "Dimensione caratteri post" #: ../../view/theme/quattro/config.php:70 msgid "Textareas font size" -msgstr "" +msgstr "Dimensione caratteri nelle aree di testo" -#: ../../index.php:400 -msgid "toggle mobile" -msgstr "" +#: ../../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)" -#: ../../boot.php:640 +#: ../../view/theme/cleanzero/config.php:85 +msgid "Set theme width" +msgstr "Imposta la larghezza del tema" + +#: ../../boot.php:650 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: ../../boot.php:643 +#: ../../boot.php:653 msgid "show fewer" msgstr "mostra di meno" -#: ../../boot.php:899 +#: ../../boot.php:920 #, php-format msgid "Update %s failed. See error logs." msgstr "aggiornamento %s fallito. Guarda i log di errore." -#: ../../boot.php:901 +#: ../../boot.php:922 #, php-format msgid "Update Error at %s" msgstr "Errore aggiornamento a %s" -#: ../../boot.php:1011 +#: ../../boot.php:1032 msgid "Create a New Account" msgstr "Crea un nuovo account" -#: ../../boot.php:1039 +#: ../../boot.php:1057 ../../include/nav.php:73 +msgid "Logout" +msgstr "Esci" + +#: ../../boot.php:1058 ../../include/nav.php:91 +msgid "Login" +msgstr "Accedi" + +#: ../../boot.php:1060 msgid "Nickname or Email address: " msgstr "Nome utente o indirizzo email: " -#: ../../boot.php:1040 +#: ../../boot.php:1061 msgid "Password: " msgstr "Password: " -#: ../../boot.php:1041 +#: ../../boot.php:1062 msgid "Remember me" -msgstr "" +msgstr "Ricordati di me" -#: ../../boot.php:1044 +#: ../../boot.php:1065 msgid "Or login using OpenID: " msgstr "O entra con OpenID:" -#: ../../boot.php:1050 +#: ../../boot.php:1071 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:1053 +#: ../../boot.php:1074 msgid "Website Terms of Service" -msgstr "" +msgstr "Condizioni di servizio del sito web " -#: ../../boot.php:1054 +#: ../../boot.php:1075 msgid "terms of service" -msgstr "" +msgstr "condizioni del servizio" -#: ../../boot.php:1056 +#: ../../boot.php:1077 msgid "Website Privacy Policy" -msgstr "" +msgstr "Politiche di privacy del sito" -#: ../../boot.php:1057 +#: ../../boot.php:1078 msgid "privacy policy" -msgstr "" +msgstr "politiche di privacy" -#: ../../boot.php:1186 +#: ../../boot.php:1207 msgid "Requested account is not available." -msgstr "" +msgstr "L'account richiesto non è disponibile." -#: ../../boot.php:1265 ../../boot.php:1369 +#: ../../boot.php:1286 ../../boot.php:1390 msgid "Edit profile" msgstr "Modifica il profilo" -#: ../../boot.php:1331 +#: ../../boot.php:1352 msgid "Message" msgstr "Messaggio" -#: ../../boot.php:1339 +#: ../../boot.php:1360 ../../include/nav.php:169 +msgid "Profiles" +msgstr "Profili" + +#: ../../boot.php:1360 msgid "Manage/edit profiles" msgstr "Gestisci/modifica i profili" -#: ../../boot.php:1468 ../../boot.php:1554 +#: ../../boot.php:1489 ../../boot.php:1575 msgid "g A l F d" msgstr "g A l d F" -#: ../../boot.php:1469 ../../boot.php:1555 +#: ../../boot.php:1490 ../../boot.php:1576 msgid "F d" msgstr "d F" -#: ../../boot.php:1514 ../../boot.php:1595 +#: ../../boot.php:1535 ../../boot.php:1616 msgid "[today]" msgstr "[oggi]" -#: ../../boot.php:1526 +#: ../../boot.php:1547 msgid "Birthday Reminders" msgstr "Promemoria compleanni" -#: ../../boot.php:1527 +#: ../../boot.php:1548 msgid "Birthdays this week:" msgstr "Compleanni questa settimana:" -#: ../../boot.php:1588 +#: ../../boot.php:1609 msgid "[No description]" msgstr "[Nessuna descrizione]" -#: ../../boot.php:1606 +#: ../../boot.php:1627 msgid "Event Reminders" msgstr "Promemoria" -#: ../../boot.php:1607 +#: ../../boot.php:1628 msgid "Events this week:" msgstr "Eventi di questa settimana:" -#: ../../boot.php:1843 +#: ../../boot.php:1861 ../../include/nav.php:76 +msgid "Status" +msgstr "Stato" + +#: ../../boot.php:1864 msgid "Status Messages and Posts" -msgstr "" +msgstr "Messaggi di stato e post" -#: ../../boot.php:1850 +#: ../../boot.php:1871 msgid "Profile Details" -msgstr "" +msgstr "Dettagli del profilo" -#: ../../boot.php:1867 +#: ../../boot.php:1888 msgid "Events and Calendar" -msgstr "" +msgstr "Eventi e calendario" -#: ../../boot.php:1874 +#: ../../boot.php:1895 msgid "Only You Can See This" -msgstr "" +msgstr "Solo tu puoi vedere questo" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "Funzionalità generali" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "Possibilità di creare profili multipli" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "Funzionalità di composizione dei post" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "Editor visuale" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "Abilita l'editor visuale" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "Anteprima dei post" + +#: ../../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" + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "Widget della barra laterale nella pagina Rete" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "Cerca per data" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "Permette di filtrare i post per data" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "Filtra gruppi" + +#: ../../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" + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "Filtro reti" + +#: ../../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" + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "Salva i termini cercati per riutilizzarli" + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "Schede pagina Rete" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "Scheda Personali" + +#: ../../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" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "Scheda Nuovi" + +#: ../../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)" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "Scheda Link Condivisi" + +#: ../../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" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "Strumenti per mesasggi/commenti" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "Eliminazione multipla" + +#: ../../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" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "Modifica i post inviati" + +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "Modifica e correggi messaggi e commenti dopo averli inviati" + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "Aggiunta tag" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "Permette di aggiungere tag ai post già esistenti" + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "Cateorie post" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "Aggiungi categorie ai tuoi post" + +#: ../../include/features.php:59 ../../include/contact_widgets.php:103 +msgid "Saved Folders" +msgstr "Cartelle Salvate" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "Permette di archiviare i post in cartelle" + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "Permetti di inviare \"non mi piace\" ai messaggi" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "Post preferiti" + +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "Permette di segnare i post preferiti con una stella" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Uscita effettuata." + +#: ../../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/event.php:20 ../../include/bb2diaspora.php:399 +msgid "Starts:" +msgstr "Inizia:" + +#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 +msgid "Finishes:" +msgstr "Finisce:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "Età:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "Tag:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "Hobby/Interessi:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e social network:" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "Scuola:" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "su Last.fm" + +#: ../../include/text.php:276 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:278 +msgid "first" +msgstr "primo" + +#: ../../include/text.php:307 +msgid "last" +msgstr "ultimo" + +#: ../../include/text.php:310 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:328 +msgid "newer" +msgstr "nuovi" + +#: ../../include/text.php:332 +msgid "older" +msgstr "vecchi" + +#: ../../include/text.php:697 +msgid "No contacts" +msgstr "Nessun contatto" + +#: ../../include/text.php:706 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:819 +msgid "poke" +msgstr "stuzzica" + +#: ../../include/text.php:819 ../../include/conversation.php:211 +msgid "poked" +msgstr "toccato" + +#: ../../include/text.php:820 +msgid "ping" +msgstr "invia un ping" + +#: ../../include/text.php:820 +msgid "pinged" +msgstr "inviato un ping" + +#: ../../include/text.php:821 +msgid "prod" +msgstr "pungola" + +#: ../../include/text.php:821 +msgid "prodded" +msgstr "pungolato" + +#: ../../include/text.php:822 +msgid "slap" +msgstr "schiaffeggia" + +#: ../../include/text.php:822 +msgid "slapped" +msgstr "schiaffeggiato" + +#: ../../include/text.php:823 +msgid "finger" +msgstr "tocca" + +#: ../../include/text.php:823 +msgid "fingered" +msgstr "toccato" + +#: ../../include/text.php:824 +msgid "rebuff" +msgstr "respingi" + +#: ../../include/text.php:824 +msgid "rebuffed" +msgstr "respinto" + +#: ../../include/text.php:836 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:837 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:838 +msgid "mellow" +msgstr "rilassato" + +#: ../../include/text.php:839 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:840 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:841 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:842 +msgid "stupified" +msgstr "stupefatto" + +#: ../../include/text.php:843 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:844 +msgid "interested" +msgstr "interessato" + +#: ../../include/text.php:845 +msgid "bitter" +msgstr "risentito" + +#: ../../include/text.php:846 +msgid "cheerful" +msgstr "giocoso" + +#: ../../include/text.php:847 +msgid "alive" +msgstr "vivo" + +#: ../../include/text.php:848 +msgid "annoyed" +msgstr "annoiato" + +#: ../../include/text.php:849 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:850 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:851 +msgid "disturbed" +msgstr "disturbato" + +#: ../../include/text.php:852 +msgid "frustrated" +msgstr "frustato" + +#: ../../include/text.php:853 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:854 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:855 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1015 +msgid "Monday" +msgstr "Lunedì" + +#: ../../include/text.php:1015 +msgid "Tuesday" +msgstr "Martedì" + +#: ../../include/text.php:1015 +msgid "Wednesday" +msgstr "Mercoledì" + +#: ../../include/text.php:1015 +msgid "Thursday" +msgstr "Giovedì" + +#: ../../include/text.php:1015 +msgid "Friday" +msgstr "Venerdì" + +#: ../../include/text.php:1015 +msgid "Saturday" +msgstr "Sabato" + +#: ../../include/text.php:1015 +msgid "Sunday" +msgstr "Domenica" + +#: ../../include/text.php:1019 +msgid "January" +msgstr "Gennaio" + +#: ../../include/text.php:1019 +msgid "February" +msgstr "Febbraio" + +#: ../../include/text.php:1019 +msgid "March" +msgstr "Marzo" + +#: ../../include/text.php:1019 +msgid "April" +msgstr "Aprile" + +#: ../../include/text.php:1019 +msgid "May" +msgstr "Maggio" + +#: ../../include/text.php:1019 +msgid "June" +msgstr "Giugno" + +#: ../../include/text.php:1019 +msgid "July" +msgstr "Luglio" + +#: ../../include/text.php:1019 +msgid "August" +msgstr "Agosto" + +#: ../../include/text.php:1019 +msgid "September" +msgstr "Settembre" + +#: ../../include/text.php:1019 +msgid "October" +msgstr "Ottobre" + +#: ../../include/text.php:1019 +msgid "November" +msgstr "Novembre" + +#: ../../include/text.php:1019 +msgid "December" +msgstr "Dicembre" + +#: ../../include/text.php:1124 +msgid "bytes" +msgstr "bytes" + +#: ../../include/text.php:1151 ../../include/text.php:1163 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1336 ../../include/user.php:237 +msgid "default" +msgstr "default" + +#: ../../include/text.php:1348 +msgid "Select an alternate language" +msgstr "Seleziona una diversa lingua" + +#: ../../include/text.php:1558 +msgid "activity" +msgstr "attività" + +#: ../../include/text.php:1561 +msgid "post" +msgstr "messaggio" + +#: ../../include/text.php:1716 +msgid "Item filed" +msgstr "Messaggio salvato" + +#: ../../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'" + +#: ../../include/items.php:1764 ../../include/datetime.php:472 +#, php-format +msgid "%s's birthday" +msgstr "Compleanno di %s" + +#: ../../include/items.php:1765 ../../include/datetime.php:473 +#, php-format +msgid "Happy Birthday %s" +msgstr "Buon compleanno %s" + +#: ../../include/items.php:3446 +msgid "A new person is sharing with you at " +msgstr "Una nuova persona sta condividendo con te da " + +#: ../../include/items.php:3446 +msgid "You have a new follower at " +msgstr "Una nuova persona ti segue su " + +#: ../../include/items.php:3965 +msgid "Do you really want to delete this item?" +msgstr "Vuoi veramente cancellare questo elemento?" + +#: ../../include/items.php:4160 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +msgstr "(nessun oggetto)" + +#: ../../include/delivery.php:468 ../../include/notifier.php:785 +#: ../../include/enotify.php:28 +msgid "noreply" +msgstr "nessuna risposta" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "Allegati:" + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "URL di connessione mancante." + +#: ../../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." + +#: ../../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." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome o un autore" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." + +#: ../../include/follow.php:259 +msgid "following" +msgstr "segue" + +#: ../../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 "Il token di sicurezza della form non era corretto. Probabilmente la form è rimasta aperta troppo a lunto (più di tre ore) prima di inviarla." + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "Maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "Femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Al momento maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Al momento femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersex" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transessuale" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Ermafrodito" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutro" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Non specificato" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "Altro" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "Maschi" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "Femmine" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "Gay" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "Lesbica" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "Nessuna preferenza" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "Bisessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "Autosessuale" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "Astinente" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "Vergine" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "Deviato" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "Fetish" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "Un sacco" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "Asessuato" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "Single" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "Solitario" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "Disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "Non disponibile" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "è cotto/a" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "infatuato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "Disponibile a un incontro" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "Infedele" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "Sesso-dipendente" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:279 +#: ../../include/user.php:283 +msgid "Friends" +msgstr "Amici" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "Amici con benefici" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "Casual" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "Impegnato" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "Sposato" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "immaginariamente sposato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "Partners" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "Coinquilino" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "diritto comune" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "Felice" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "Non guarda" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "Tradito" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "Separato" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "Instabile" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "Divorziato" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "immaginariamente divorziato/a" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "Vedovo" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "Incerto" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "E' complicato" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "Non interessa" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "Chiedimelo" + +#: ../../include/uimport.php:61 +msgid "Error decoding account file" +msgstr "Errore decodificando il file account" + +#: ../../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?" + +#: ../../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." + +#: ../../include/uimport.php:81 +msgid "Error! Cannot check nickname" +msgstr "Errore! Non posso controllare il nickname" + +#: ../../include/uimport.php:85 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "L'utente '%s' esiste già su questo server!" + +#: ../../include/uimport.php:104 +msgid "User creation error" +msgstr "Errore creando l'utente" + +#: ../../include/uimport.php:122 +msgid "User profile creation error" +msgstr "Errore creando il profile dell'utente" + +#: ../../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" + +#: ../../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" + +#: ../../include/plugin.php:439 ../../include/plugin.php:441 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../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." + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "Questa azione non è disponibile nel tuo piano di sottoscrizione." + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha stuzzicato %2$s" + +#: ../../include/conversation.php:291 +msgid "post/item" +msgstr "post/elemento" + +#: ../../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" + +#: ../../include/conversation.php:728 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:732 +msgid "Delete Selected Items" +msgstr "Cancella elementi selezionati" + +#: ../../include/conversation.php:831 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:832 ../../include/Contact.php:226 +msgid "View Status" +msgstr "Visualizza stato" + +#: ../../include/conversation.php:833 ../../include/Contact.php:227 +msgid "View Profile" +msgstr "Visualizza profilo" + +#: ../../include/conversation.php:834 ../../include/Contact.php:228 +msgid "View Photos" +msgstr "Visualizza foto" + +#: ../../include/conversation.php:835 ../../include/Contact.php:229 +#: ../../include/Contact.php:251 +msgid "Network Posts" +msgstr "Post della Rete" + +#: ../../include/conversation.php:836 ../../include/Contact.php:230 +#: ../../include/Contact.php:251 +msgid "Edit Contact" +msgstr "Modifica contatti" + +#: ../../include/conversation.php:837 ../../include/Contact.php:231 +#: ../../include/Contact.php:251 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: ../../include/conversation.php:838 ../../include/Contact.php:225 +msgid "Poke" +msgstr "Stuzzica" + +#: ../../include/conversation.php:900 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:900 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:905 +#, php-format +msgid "%2$d people like this" +msgstr "Piace a %2$d persone." + +#: ../../include/conversation.php:908 +#, php-format +msgid "%2$d people don't like this" +msgstr "Non piace a %2$d persone." + +#: ../../include/conversation.php:922 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:928 +#, php-format +msgid ", and %d other people" +msgstr "e altre %d persone" + +#: ../../include/conversation.php:930 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:930 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:957 ../../include/conversation.php:975 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/conversation.php:959 ../../include/conversation.php:977 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" + +#: ../../include/conversation.php:960 ../../include/conversation.php:978 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" + +#: ../../include/conversation.php:961 ../../include/conversation.php:979 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:963 ../../include/conversation.php:981 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:964 +msgid "Delete item(s)?" +msgstr "Cancellare questo elemento/i?" + +#: ../../include/conversation.php:1006 +msgid "Post to Email" +msgstr "Invia a email" + +#: ../../include/conversation.php:1062 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1086 +msgid "Post to Groups" +msgstr "Invia ai Gruppi" + +#: ../../include/conversation.php:1087 +msgid "Post to Contacts" +msgstr "Invia ai Contatti" + +#: ../../include/conversation.php:1088 +msgid "Private post" +msgstr "Post privato" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" + +#: ../../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" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "Trova persone" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "Connetti/segui" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "Profilo causale" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "Reti" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "Tutte le Reti" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +msgstr "Categorie" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Finisci questa sessione" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Entra" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Home Page" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Applicazioni" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Applicazioni, utilità e giochi aggiuntivi" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Cerca nel contenuto del sito" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Conversazioni su questo sito" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Elenco" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "Elenco delle persone" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Conversazioni dai tuoi amici" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "Reset pagina Rete" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "Carica la pagina Rete senza nessun filtro" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "Richieste di amicizia" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "Segna tutte le notifiche come viste" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Posta privata" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "In arrivo" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "Inviati" + +#: ../../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 "Delegazioni" + +#: ../../include/nav.php:169 +msgid "Manage/Edit Profiles" +msgstr "Gestisci/Modifica i profili" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Gestisci/modifica amici e contatti" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Configurazione del sito" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "Navigazione" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "Mappa del sito" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Sconosciuto | non categorizzato" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Blocca immediatamente" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "Shady, spammer, self-marketer" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Lo conosco, ma non ho un'opinione particolare" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "E' ok, probabilmente innocuo" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Rispettabile, ha la mia fiducia" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frequentemente" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Ogni ora" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Due volte al dì" + +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Giornalmente" + +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Settimanalmente" + +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensilmente" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "Ostatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: ../../include/contact_selectors.php:82 +msgid "Zot!" +msgstr "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Notifica Friendica" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "Grazie," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "Amministratore %s" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notifica] Nuovo messaggio privato ricevuto su %s" + +#: ../../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." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha inviato %2$s" + +#: ../../include/enotify.php:47 +msgid "a private message" +msgstr "un messaggio privato" + +#: ../../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." + +#: ../../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]" + +#: ../../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]" + +#: ../../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]" + +#: ../../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" + +#: ../../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." + +#: ../../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" + +#: ../../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 "%1$s ha scritto sulla tua bacheca su %2$s" + +#: ../../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]" + +#: ../../include/enotify.php:141 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notifica] %s ti ha taggato" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s ti ha taggato su %2$s" + +#: ../../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]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notifica] %1$s ti ha stuzzicato" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "%1$s ti ha stuzzicato su %2$s" + +#: ../../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]." + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notifica] %s ha taggato un tuo messaggio" + +#: ../../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" + +#: ../../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]" + +#: ../../include/enotify.php:185 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notifica] Hai ricevuto una presentazione" + +#: ../../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" + +#: ../../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." + +#: ../../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" + +#: ../../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." + +#: ../../include/enotify.php:199 +msgid "[Friendica:Notify] Friend suggestion received" +msgstr "[Friendica:Notifica] Hai ricevuto un suggerimento di amicizia" + +#: ../../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" + +#: ../../include/enotify.php:201 +#, php-format +msgid "" +"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" + +#: ../../include/enotify.php:206 +msgid "Name:" +msgstr "Nome:" + +#: ../../include/enotify.php:207 +msgid "Photo:" +msgstr "Foto:" + +#: ../../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." + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "E' richiesto un invito." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" + +#: ../../include/user.php:67 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/user.php:81 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." + +#: ../../include/user.php:83 +msgid "Name too short." +msgstr "Il nome è troppo corto." + +#: ../../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)." + +#: ../../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." + +#: ../../include/user.php:106 +msgid "Not a valid email address." +msgstr "L'indirizzo email non è valido." + +#: ../../include/user.php:116 +msgid "Cannot use that email." +msgstr "Non puoi usare quell'email." + +#: ../../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." + +#: ../../include/user.php:128 ../../include/user.php:226 +msgid "Nickname is already registered. Please choose another." +msgstr "Nome utente già registrato. Scegline un altro." + +#: ../../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." + +#: ../../include/user.php:154 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." + +#: ../../include/user.php:212 +msgid "An error occurred during registration. Please try again." +msgstr "C'è stato un errore durante la registrazione. Prova ancora." + +#: ../../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." + +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: ../../include/bbcode.php:272 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s ha scritto il seguente post" + +#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 +msgid "Encrypted content" +msgstr "Contenuto criptato" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "Embed disabilitato" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may 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 possono 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." + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Gruppo predefinito per i nuovi contatti" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "modifica" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Modifica gruppo" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Contatti in nessun gruppo." + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "tolto dai seguiti" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "Varie" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "anno" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "mese" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "giorno" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:285 +msgid "years" +msgstr "anni" + +#: ../../include/datetime.php:286 +msgid "months" +msgstr "mesi" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "settimana" + +#: ../../include/datetime.php:287 +msgid "weeks" +msgstr "settimane" + +#: ../../include/datetime.php:288 +msgid "days" +msgstr "giorni" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "ora" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "secondi" + +#: ../../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" diff --git a/view/it/strings.php b/view/it/strings.php index c46047d087..79d7c19b3f 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -1,1206 +1,197 @@ 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 should 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 profile wall and your friend stream."] = "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.

"] = "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.

"; -$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.
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
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!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!
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 not 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.
It requires PHP >= 5.3"] = "Non è possibile installare Libravatar.
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.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "L'addon Gravatar è installato. Disabilita l'addon Gravatar.
\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 public tile servers"] = ""; -$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 Piwik analytics tool."] = "Questo sito è monitorato con lo strumento di analisi Piwik."; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "Se non vuoi che le tue visite vengono registrate in questo modo è possibile impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito (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: "network" or "notifications/system""] = ""; -$a->strings["Post to StatusNet"] = "Invia a StatusNet"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Contatta l'amministratore del sito.
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.
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.
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 public 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 pubblici 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 public 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 pubblici 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["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "Nota: A causa delle tue impostazioni di privacy(Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?) 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 public 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 pubblici 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 public 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 pubblici 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["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "Nota: A causa delle tue impostazioni di privacy(Nascondi i dettagli del tuo profilo ai visitatori sconosciuti?) 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 RemoteStorage WebFinger"] = "Permette di usare il tuo id friendica (%s) per collegarsi a storage esterni che supportano unhosted (come ownCloud). Vedi RemoteStorage WebFinger"; -$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["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["%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["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["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["%s wrote the following post"] = ""; -$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["%2\$d people like this"] = ""; -$a->strings["%2\$d people 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 everybody"] = "Visibile a tutti"; -$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["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["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 "] = "%s "; -$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["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 may 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 possono 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["[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["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["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["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 “%3\$s”"] = ""; -$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[" Marital Status:"] = " 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 public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe 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["Not Found"] = "Non trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; $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["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["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["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 this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo 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["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["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; +$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["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["Personal"] = "Personale"; +$a->strings["Home"] = "Home"; +$a->strings["Introductions"] = "Presentazioni"; +$a->strings["Messages"] = "Messaggi"; +$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 - change theme settings"] = ""; -$a->strings["Mobile system theme"] = ""; -$a->strings["Theme for mobile devices"] = ""; +$a->strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema di sistema - puo' essere sovrascritto dalle impostazioni utente - cambia le impostazioni del tema"; +$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 may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti 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 Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com 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 'nickname@\$sitename'."] = "Scegli un nome utente. Deve cominciare con una lettera. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; $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 Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni 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 may still be visible"] = "Risposte ai tuoi post pubblici possono 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 Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "Sulla tua pagina Quick Start - 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 Settings 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 Impostazioni - 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito 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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["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 Add New Contact 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 Aggiungi Nuovo Contatto"; +$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 Connect or Follow 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 Connetti o Segui 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 help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida 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 interesting 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 interesting profile change"] = "fai un interessante 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["Item has been removed."] = "L'oggetto è stato rimosso."; +$a->strings["People Search"] = "Cerca persone"; +$a->strings["No matches"] = "Nessun risultato"; +$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 “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +$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[" Marital Status:"] = " 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 public profile.
It may be visible to anybody using the internet."] = "Questo è il tuo profilo publico.
Potrebbe 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["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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora 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["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["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 this profile."] = "Non hai fatto accesso con l'identità corretta. Accedi a questo 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["Connect as an email follower (Coming soon)"] = "Connetti un email come follower (in arrivo)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "Se non sei un membro del web sociale libero, segui questo link per trovare un sito Friendica pubblico e unisciti a noi oggi"; -$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["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 Friendica.com to learn more about the Friendica project."] = "Visita Friendica.com 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["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["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 'Activating scheduled tasks'"] = ""; +$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 'Activating scheduled tasks'"] = "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 'Activating scheduled tasks'"; $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["

What next

"] = ""; +$a->strings["

What next

"] = "

Cosa fare ora

"; $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 Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina Impostazioni 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 may be able to respond from the sender's profile page."] = "Nessuna comunicazione sicura disponibile, Potresti 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 Quick Start 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 Settings 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 Impostazioni - 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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo predefinito 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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "Sestrings["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 Add New Contact 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 Aggiungi Nuovo Contatto"; -$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 Connect or Follow 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 Connetti o Segui 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 help pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della guida 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["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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "ATTENZIONE: Queste sono impostazioni avanzate e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Usa ora 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["Community Profiles"] = "Profili Comunità"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$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 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["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["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["Local Directory"] = "Elenco Locale"; -$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"] = "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["%2\$d people like this"] = "Piace a %2\$d persone."; +$a->strings["%2\$d people don't like this"] = "Non piace a %2\$d persone."; +$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 everybody"] = "Visibile a tutti"; +$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 "] = "%s "; +$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["%s wrote the following post"] = "%s ha scritto il seguente post"; +$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 may 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 possono 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"; diff --git a/view/nb-no/strings.php b/view/nb-no/strings.php index c2b32ec7c6..8f10fcea14 100644 --- a/view/nb-no/strings.php +++ b/view/nb-no/strings.php @@ -1,8 +1,9 @@ strings["Post successful."] = "Innlegg vellykket."; $a->strings["[Embedded content - reload page to view]"] = "[Innebygget innhold - hent siden på nytt for å se det]"; diff --git a/view/pl/messages.po b/view/pl/messages.po index dd107db441..4334a3c01e 100644 --- a/view/pl/messages.po +++ b/view/pl/messages.po @@ -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 \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 \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 "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr " UWAGA: To jest wysoce zaawansowane 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 now if you are " -"uncertain what to do on this page." -msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz 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" +#: ../../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: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" - -#: ../../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/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/editplain/editplain.php:84 +#: ../../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/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,5006 +94,1244 @@ 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" - -#: ../../mod/help.php:93 ../../index.php:229 -msgid "Page not found." -msgstr "Strona nie znaleziona." - -#: ../../mod/wall_attach.php:69 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Plik przekracza dozwolony rozmiar %d" - -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "Przesyłanie pliku nie powiodło się." - -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Propozycja znajomych wysłana." - -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Zaproponuj znajomych" - -#: ../../mod/fsuggest.php:99 -#, 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." +#: ../../addon.old/bg/bg.php:51 +msgid "Bg settings updated." msgstr "" -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "d, M d " +#: ../../addon.old/bg/bg.php:82 +msgid "Bg Settings" +msgstr "" -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "Edytuj wydarzenie" +#: ../../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/events.php:335 ../../include/text.php:1258 -msgid "link to source" -msgstr "link do źródła" +#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "" -#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91 -#: ../../include/nav.php:79 ../../boot.php:1857 -msgid "Events" -msgstr "Wydarzenia" +#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "" -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "Stwórz nowe wydarzenie" +#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "" -#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263 -#: ../../addon.old/dav/friendica/layout.fnk.php:263 -msgid "Previous" -msgstr "Poprzedni" - -#: ../../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" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "godzina:minuta" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "Szczegóły wydarzenia" - -#: ../../mod/events.php:457 +#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105 #, php-format -msgid "Format is %s %s. Starting date and Title are required." +msgid "Blocked %s - Click to open/close" msgstr "" -#: ../../mod/events.php:459 -msgid "Event Starts:" -msgstr "Rozpoczęcie wydarzenia:" +#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "Odblokuj autora" -#: ../../mod/events.php:459 ../../mod/events.php:473 -msgid "Required" -msgstr "Wymagany" +#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "Zablokuj autora" -#: ../../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" - -#: ../../mod/events.php:464 -msgid "Event Finishes:" -msgstr "Zakończenie wydarzenia:" - -#: ../../mod/events.php:467 -msgid "Adjust for viewer timezone" -msgstr "Dopasuj dla strefy czasowej widza" - -#: ../../mod/events.php:469 -msgid "Description:" -msgstr "Opis:" - -#: ../../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" - -#: ../../mod/events.php:473 -msgid "Title:" -msgstr "Tytuł:" - -#: ../../mod/events.php:475 -msgid "Share this event" -msgstr "Udostępnij te wydarzenie" - -#: ../../mod/maintenance.php:5 -msgid "System down for maintenance" +#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" 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 "Anuluj" +#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "Post na blogger" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "Tag usunięty" +#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Ustawienia postów na Blogger" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Usuń pozycję Tag" - -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Wybierz tag do usunięcia" - -#: ../../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ń" - -#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534 -#, php-format -msgid "%1$s welcomes %2$s" +#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" msgstr "" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "Autoryzacja połączenia aplikacji" +#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Nazwa użytkownika na Blogger" -#: ../../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.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Hasło do Blogger" -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "Zaloguj się aby kontynuować." +#: ../../addon.old/blogger/blogger.php:91 ../../addon/blogger/blogger.php:91 +msgid "Blogger API URL" +msgstr "Blogger API URL" -#: ../../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?" +#: ../../addon.old/blogger/blogger.php:96 ../../addon/blogger/blogger.php:96 +msgid "Post to Blogger by default" +msgstr "" -#: ../../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" +#: ../../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/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" +#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Zgłoś problem" -#: ../../mod/photos.php:51 ../../boot.php:1850 -msgid "Photo Albums" -msgstr "Albumy zdjęć" +#: ../../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" + +#: ../../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 "Ostatni użytkownicy" + +#: ../../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" + +#: ../../addon.old/communityhome/communityhome.php:98 +#: ../../addon/communityhome/communityhome.php:102 +msgid "Latest photos" +msgstr "Ostatnie zdjęcia" -#: ../../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 "Zdjęcia kontaktu" -#: ../../mod/photos.php:66 ../../mod/photos.php:1219 ../../mod/photos.php:1792 -msgid "Upload New Photos" -msgstr "Wyślij nowe zdjęcie" - -#: ../../mod/photos.php:79 ../../mod/settings.php:23 -msgid "everybody" -msgstr "wszyscy" - -#: ../../mod/photos.php:143 -msgid "Contact information unavailable" -msgstr "Informacje o kontakcie nie dostępne." - -#: ../../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 "Zdjęcia profilowe" -#: ../../mod/photos.php:164 -msgid "Album not found." -msgstr "Album nie znaleziony" +#: ../../addon.old/communityhome/communityhome.php:133 +#: ../../addon/communityhome/communityhome.php:141 +msgid "Latest likes" +msgstr "Ostatnie polubienia" + +#: ../../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/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1197 -msgid "Delete Album" -msgstr "Usuń album" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "" - -#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499 -msgid "Delete Photo" -msgstr "Usuń zdjęcie" - -#: ../../mod/photos.php:284 -msgid "Do you really want to delete this photo?" -msgstr "" - -#: ../../mod/photos.php:653 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "" - -#: ../../mod/photos.php:653 -msgid "a photo" -msgstr "zdjęcie" - -#: ../../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" - -#: ../../mod/photos.php:766 -msgid "Image file is empty." -msgstr "Plik obrazka jest pusty." - -#: ../../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ę." - -#: ../../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ę" - -#: ../../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" - -#: ../../mod/photos.php:921 -msgid "No photos selected" -msgstr "Nie zaznaczono zdjęć" - -#: ../../mod/photos.php:1022 -msgid "Access to this item is restricted." -msgstr "Dostęp do tego obiektu jest ograniczony." - -#: ../../mod/photos.php:1085 -#, php-format -msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." -msgstr "" - -#: ../../mod/photos.php:1120 -msgid "Upload Photos" -msgstr "Prześlij zdjęcia" - -#: ../../mod/photos.php:1124 ../../mod/photos.php:1192 -msgid "New album name: " -msgstr "Nazwa nowego albumu:" - -#: ../../mod/photos.php:1125 -msgid "or existing album name: " -msgstr "lub istniejąca nazwa albumu:" - -#: ../../mod/photos.php:1126 -msgid "Do not show a status post for this upload" -msgstr "Nie pokazuj postów statusu dla tego wysłania" - -#: ../../mod/photos.php:1128 ../../mod/photos.php:1494 -msgid "Permissions" -msgstr "Uprawnienia" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1503 -#: ../../mod/settings.php:1070 -msgid "Show to Groups" -msgstr "" - -#: ../../mod/photos.php:1138 ../../mod/photos.php:1504 -#: ../../mod/settings.php:1071 -msgid "Show to Contacts" -msgstr "" - -#: ../../mod/photos.php:1139 -msgid "Private Photo" -msgstr "" - -#: ../../mod/photos.php:1140 -msgid "Public Photo" -msgstr "" - -#: ../../mod/photos.php:1207 -msgid "Edit Album" -msgstr "Edytuj album" - -#: ../../mod/photos.php:1213 -msgid "Show Newest First" -msgstr "Najpierw pokaż najnowsze" - -#: ../../mod/photos.php:1215 -msgid "Show Oldest First" -msgstr "Najpierw pokaż najstarsze" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1775 -msgid "View Photo" -msgstr "Zobacz zdjęcie" - -#: ../../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." - -#: ../../mod/photos.php:1285 -msgid "Photo not available" -msgstr "Zdjęcie niedostępne" - -#: ../../mod/photos.php:1341 -msgid "View photo" -msgstr "Zobacz zdjęcie" - -#: ../../mod/photos.php:1341 -msgid "Edit photo" -msgstr "Edytuj zdjęcie" - -#: ../../mod/photos.php:1342 -msgid "Use as profile photo" -msgstr "Ustaw jako zdjęcie profilowe" - -#: ../../mod/photos.php:1348 ../../mod/content.php:620 -#: ../../object/Item.php:106 -msgid "Private Message" -msgstr "Wiadomość prywatna" - -#: ../../mod/photos.php:1367 -msgid "View Full Size" -msgstr "Zobacz w pełnym rozmiarze" - -#: ../../mod/photos.php:1441 -msgid "Tags: " -msgstr "Tagi:" - -#: ../../mod/photos.php:1444 -msgid "[Remove any tag]" -msgstr "[Usunąć znacznik]" - -#: ../../mod/photos.php:1484 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../mod/photos.php:1485 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../mod/photos.php:1487 -msgid "New album name" -msgstr "Nazwa nowego albumu" - -#: ../../mod/photos.php:1490 -msgid "Caption" -msgstr "Zawartość" - -#: ../../mod/photos.php:1492 -msgid "Add a Tag" -msgstr "Dodaj tag" - -#: ../../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" - -#: ../../mod/photos.php:1505 -msgid "Private photo" -msgstr "" - -#: ../../mod/photos.php:1506 -msgid "Public photo" -msgstr "" - -#: ../../mod/photos.php:1526 ../../mod/content.php:684 -#: ../../object/Item.php:204 -msgid "I like this (toggle)" -msgstr "Lubię to (zmień)" - -#: ../../mod/photos.php:1527 ../../mod/content.php:685 -#: ../../object/Item.php:205 -msgid "I don't like this (toggle)" -msgstr "Nie lubię (zmień)" - -#: ../../mod/photos.php:1528 ../../include/conversation.php:1023 -msgid "Share" -msgstr "Podziel się" - -#: ../../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ć" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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ń" - -#: ../../mod/photos.php:1781 -msgid "View Album" -msgstr "Zobacz album" - -#: ../../mod/photos.php:1790 -msgid "Recent Photos" -msgstr "Ostatnio dodane zdjęcia" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "Niedostępne." - -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "Społeczność" - -#: ../../mod/community.php:61 ../../mod/community.php:86 -#: ../../mod/search.php:162 ../../mod/search.php:188 -msgid "No results." -msgstr "Brak wyników." - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "To jest Friendica, wersja" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "otwierane na serwerze" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Reportowanie błędów i problemów: proszę odwiedź" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -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" - -#: ../../mod/editpost.php:109 ../../mod/content.php:728 -#: ../../mod/settings.php:622 ../../object/Item.php:110 -msgid "Edit" -msgstr "Edytuj" - -#: ../../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" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1025 -msgid "upload photo" -msgstr "dodaj zdjęcie" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1026 -msgid "Attach file" -msgstr "Przyłącz plik" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1027 -msgid "attach file" -msgstr "załącz plik" - -#: ../../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" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1029 -msgid "web link" -msgstr "Adres www" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1030 -msgid "Insert video link" -msgstr "Wstaw link wideo" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1031 -msgid "video link" -msgstr "link do filmu" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1032 -msgid "Insert audio link" -msgstr "Wstaw link audio" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1033 -msgid "audio link" -msgstr "Link audio" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1034 -msgid "Set your location" -msgstr "Ustaw swoje położenie" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1035 -msgid "set location" -msgstr "wybierz lokalizację" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1036 -msgid "Clear browser location" -msgstr "Wyczyść położenie przeglądarki" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1037 -msgid "clear location" -msgstr "wyczyść lokalizację" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1043 -msgid "Permission settings" -msgstr "Ustawienia uprawnień" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1052 -msgid "CC: email addresses" -msgstr "CC: adresy e-mail" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1053 -msgid "Public post" -msgstr "Publiczny post" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1039 -msgid "Set title" -msgstr "Ustaw tytuł" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1041 -msgid "Categories (comma-separated list)" -msgstr "" - -#: ../../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" - -#: ../../mod/dfrn_request.php:93 -msgid "This introduction has already been accepted." -msgstr "To wprowadzenie zostało już zaakceptowane." - -#: ../../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." - -#: ../../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." - -#: ../../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." - -#: ../../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" - -#: ../../mod/dfrn_request.php:170 -msgid "Introduction complete." -msgstr "wprowadzanie zakończone." - -#: ../../mod/dfrn_request.php:209 -msgid "Unrecoverable protocol error." -msgstr "Nieodwracalny błąd protokołu." - -#: ../../mod/dfrn_request.php:237 -msgid "Profile unavailable." -msgstr "Profil niedostępny." - -#: ../../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ń." - -#: ../../mod/dfrn_request.php:263 -msgid "Spam protection measures have been invoked." -msgstr "Ochrona przed spamem została wywołana." - -#: ../../mod/dfrn_request.php:264 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Przyjaciele namawiają do spróbowania za 24h." - -#: ../../mod/dfrn_request.php:326 -msgid "Invalid locator" -msgstr "Niewłaściwy lokalizator " - -#: ../../mod/dfrn_request.php:335 -msgid "Invalid email address." -msgstr "Nieprawidłowy adres email." - -#: ../../mod/dfrn_request.php:362 -msgid "This account has not been configured for email. Request failed." -msgstr "" - -#: ../../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." - -#: ../../mod/dfrn_request.php:471 -msgid "You have already introduced yourself here." -msgstr "Już się tu przedstawiłeś." - -#: ../../mod/dfrn_request.php:475 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Widocznie jesteście już znajomymi z %s" - -#: ../../mod/dfrn_request.php:496 -msgid "Invalid profile URL." -msgstr "Zły adres URL profilu." - -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "Nie dozwolony adres URL profilu." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "Aktualizacja nagrania kontaktu nie powiodła się." - -#: ../../mod/dfrn_request.php:592 -msgid "Your introduction has been sent." -msgstr "Twoje dane zostały wysłane." - -#: ../../mod/dfrn_request.php:645 -msgid "Please login to confirm introduction." -msgstr "Proszę zalogować się do potwierdzenia wstępu." - -#: ../../mod/dfrn_request.php:659 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " - -#: ../../mod/dfrn_request.php:670 -msgid "Hide this contact" -msgstr "Ukryj kontakt" - -#: ../../mod/dfrn_request.php:673 -#, php-format -msgid "Welcome home %s." -msgstr "Welcome home %s." - -#: ../../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." - -#: ../../mod/dfrn_request.php:675 -msgid "Confirm" -msgstr "Potwierdź" - -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366 -msgid "[Name Withheld]" -msgstr "[Nazwa wstrzymana]" - -#: ../../mod/dfrn_request.php:811 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" -msgstr "" - -#: ../../mod/dfrn_request.php:827 -msgid "Connect as an email follower (Coming soon)" -msgstr "" - -#: ../../mod/dfrn_request.php:829 -msgid "" -"If you are not yet a member of the free social web, follow this link to find a public" -" Friendica site and join us today." -msgstr "" - -#: ../../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 "" - -#: ../../mod/dfrn_request.php:834 -msgid "Please answer the following:" -msgstr "Proszę odpowiedzieć na poniższe:" - -#: ../../mod/dfrn_request.php:835 -#, php-format -msgid "Does %s know you?" -msgstr "Czy %s Cię zna?" - -#: ../../mod/dfrn_request.php:838 -msgid "Add a personal note:" -msgstr "Dodaj osobistą notkę:" - -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - -#: ../../mod/dfrn_request.php:841 -msgid "StatusNet/Federated Social Web" -msgstr "" - -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - -#: ../../mod/dfrn_request.php:843 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search" -" bar." -msgstr "" - -#: ../../mod/dfrn_request.php:844 -msgid "Your Identity Address:" -msgstr "Twój zidentyfikowany adres:" - -#: ../../mod/dfrn_request.php:847 -msgid "Submit Request" -msgstr "Wyślij zgłoszenie" - -#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167 -msgid "Account settings" -msgstr "Ustawienia konta" - -#: ../../mod/uexport.php:14 ../../mod/settings.php:40 -msgid "Display settings" -msgstr "Wyświetl ustawienia" - -#: ../../mod/uexport.php:20 ../../mod/settings.php:46 -msgid "Connector settings" -msgstr "Ustawienia konektora" - -#: ../../mod/uexport.php:25 ../../mod/settings.php:51 -msgid "Plugin settings" -msgstr "Ustawienia wtyczek" - -#: ../../mod/uexport.php:30 ../../mod/settings.php:56 -msgid "Connected apps" -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" - -#: ../../mod/uexport.php:72 -msgid "Export account" -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 "" - -#: ../../mod/uexport.php:73 -msgid "Export all" -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 "" - -#: ../../mod/install.php:117 -msgid "Friendica Social Communications Server - Setup" -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." -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." - -#: ../../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ń ." - -#: ../../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ą." - -#: ../../mod/install.php:234 -msgid "Database Server Name" -msgstr "Baza danych - Nazwa serwera" - -#: ../../mod/install.php:235 -msgid "Database Login Name" -msgstr "Baza danych - Nazwa loginu" - -#: ../../mod/install.php:236 -msgid "Database Login Password" -msgstr "Baza danych - Hasło loginu" - -#: ../../mod/install.php:237 -msgid "Database Name" -msgstr "Baza danych - Nazwa" - -#: ../../mod/install.php:238 ../../mod/install.php:277 -msgid "Site administrator email address" -msgstr "Adres e-mail administratora strony" - -#: ../../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 "" - -#: ../../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" - -#: ../../mod/install.php:267 -msgid "Site settings" -msgstr "Ustawienia strony" - -#: ../../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" - -#: ../../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 'Activating scheduled tasks'" -msgstr "" - -#: ../../mod/install.php:325 -msgid "PHP executable path" -msgstr "" - -#: ../../mod/install.php:325 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "" - -#: ../../mod/install.php:330 -msgid "Command line PHP" -msgstr "Linia komend PHP" - -#: ../../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\"." - -#: ../../mod/install.php:340 -msgid "This is required for message delivery to work." -msgstr "To jest wymagane do dostarczenia wiadomości do pracy." - -#: ../../mod/install.php:342 -msgid "PHP register_argc_argv" -msgstr "" - -#: ../../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 ." - -#: ../../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\"." - -#: ../../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" -msgstr "" - -#: ../../mod/install.php:376 -msgid "mysqli PHP module" -msgstr "" - -#: ../../mod/install.php:377 -msgid "mb_string PHP module" -msgstr "" - -#: ../../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 "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." - -#: ../../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." - -#: ../../mod/install.php:398 -msgid "Error: openssl PHP module required but not installed." -msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." - -#: ../../mod/install.php:402 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany." - -#: ../../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" - -#: ../../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ć." - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "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 "

What next

" -msgstr "

Co dalej

" - -#: ../../mod/install.php:505 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" - -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:393 -msgid "l F d, Y \\@ g:i A" -msgstr "" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "Zmiana czasu" - -#: ../../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 "Czas UTC %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "Obecna strefa czasowa: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "Zmień strefę czasową: %s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "Wybierz swoją strefę czasową:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "Zrób ten post prywatnym" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "Profil zgodny " - -#: ../../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." - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "interesuje się:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:88 -#: ../../include/contact_widgets.php:9 ../../boot.php:1317 -msgid "Connect" -msgstr "Połącz" - -#: ../../mod/match.php:65 ../../mod/dirfind.php:60 -msgid "No matches" -msgstr "brak dopasowań" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Dane prywatne nie są dostępne zdalnie " - -#: ../../mod/lockview.php:48 -#: ../../addon/remote_permissions/remote_permissions.php:124 -msgid "Visible to:" -msgstr "Widoczne dla:" - -#: ../../mod/content.php:119 ../../mod/network.php:596 -msgid "No such group" -msgstr "Nie ma takiej grupy" - -#: ../../mod/content.php:130 ../../mod/network.php:607 -msgid "Group is empty" -msgstr "Grupa jest pusta" - -#: ../../mod/content.php:134 ../../mod/network.php:611 -msgid "Group: " -msgstr "Grupa:" - -#: ../../mod/content.php:438 ../../mod/content.php:740 -#: ../../include/conversation.php:569 ../../object/Item.php:119 -msgid "Select" -msgstr "Wybierz" - -#: ../../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" - -#: ../../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" - -#: ../../mod/content.php:497 ../../include/conversation.php:644 -msgid "View in context" -msgstr "Zobacz w kontekście" - -#: ../../mod/content.php:603 ../../object/Item.php:313 -#, 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" - -#: ../../mod/content.php:684 ../../object/Item.php:204 -msgid "like" -msgstr "polub" - -#: ../../mod/content.php:685 ../../object/Item.php:205 -msgid "dislike" -msgstr "Nie lubię" - -#: ../../mod/content.php:687 ../../object/Item.php:207 -msgid "Share this" -msgstr "Udostępnij to" - -#: ../../mod/content.php:687 ../../object/Item.php:207 -msgid "share" -msgstr "udostępnij" - -#: ../../mod/content.php:711 ../../object/Item.php:605 -msgid "Bold" -msgstr "Pogrubienie" - -#: ../../mod/content.php:712 ../../object/Item.php:606 -msgid "Italic" -msgstr "Kursywa" - -#: ../../mod/content.php:713 ../../object/Item.php:607 -msgid "Underline" -msgstr "Podkreślenie" - -#: ../../mod/content.php:714 ../../object/Item.php:608 -msgid "Quote" -msgstr "Cytat" - -#: ../../mod/content.php:715 ../../object/Item.php:609 -msgid "Code" -msgstr "Kod" - -#: ../../mod/content.php:716 ../../object/Item.php:610 -msgid "Image" -msgstr "Obraz" - -#: ../../mod/content.php:717 ../../object/Item.php:611 -msgid "Link" -msgstr "Link" - -#: ../../mod/content.php:718 ../../object/Item.php:612 -msgid "Video" -msgstr "Video" - -#: ../../mod/content.php:753 ../../object/Item.php:183 -msgid "add star" -msgstr "dodaj gwiazdkę" - -#: ../../mod/content.php:754 ../../object/Item.php:184 -msgid "remove star" -msgstr "anuluj gwiazdkę" - -#: ../../mod/content.php:755 ../../object/Item.php:185 -msgid "toggle star status" -msgstr "włącz status gwiazdy" - -#: ../../mod/content.php:758 ../../object/Item.php:188 -msgid "starred" -msgstr "" - -#: ../../mod/content.php:759 ../../object/Item.php:193 -msgid "add tag" -msgstr "dodaj tag" - -#: ../../mod/content.php:763 ../../object/Item.php:123 -msgid "save to folder" -msgstr "zapisz w folderze" - -#: ../../mod/content.php:854 ../../object/Item.php:260 -msgid "to" -msgstr "do" - -#: ../../mod/content.php:855 ../../object/Item.php:262 -msgid "Wall-to-Wall" -msgstr "Wall-to-Wall" - -#: ../../mod/content.php:856 ../../object/Item.php:263 -msgid "via Wall-To-Wall:" -msgstr "via Wall-To-Wall:" - -#: ../../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" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Niewłaściwy identyfikator wymagania." - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "Odrzuć" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 -#: ../../mod/contacts.php:413 -msgid "Ignore" -msgstr "Ignoruj" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "System" - -#: ../../mod/notifications.php:83 ../../include/nav.php:140 -msgid "Network" -msgstr "Sieć" - -#: ../../mod/notifications.php:88 ../../mod/network.php:444 -msgid "Personal" -msgstr "Osobiste" - -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -#: ../../include/nav.php:104 ../../include/nav.php:143 -msgid "Home" -msgstr "Dom" - -#: ../../mod/notifications.php:98 ../../include/nav.php:149 -msgid "Introductions" -msgstr "Wstępy" - -#: ../../mod/notifications.php:103 ../../mod/message.php:182 -#: ../../include/nav.php:156 -msgid "Messages" -msgstr "Wiadomości" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "Pokaż ignorowane żądania" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "Ukryj ignorowane żądania" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "Typ zawiadomień:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "Propozycja znajomych" - -#: ../../mod/notifications.php:152 -#, php-format -msgid "suggested by %s" -msgstr "zaproponowane przez %s" - -#: ../../mod/notifications.php:157 ../../mod/notifications.php:204 -#: ../../mod/contacts.php:419 -msgid "Hide this contact from others" -msgstr "Ukryj ten kontakt przed innymi" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "jeśli odpowiednie" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "Zatwierdź" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "Twierdzi, że go znasz:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "tak" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "nie" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "Zatwierdź jako:" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "Znajomy" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "Fan" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "Prośba o dodanie do przyjaciół/powiązanych" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "Nowy obserwator" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "Brak wstępu." - -#: ../../mod/notifications.php:220 ../../include/nav.php:150 -msgid "Notifications" -msgstr "Powiadomienia" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s dodał nowy wpis" - -#: ../../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" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "Nie ma więcej powiadomień sieciowych" - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "Powiadomienia z sieci" - -#: ../../mod/notifications.php:332 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "Nie ma więcej powiadomień systemowych." - -#: ../../mod/notifications.php:336 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "Powiadomienia systemowe" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "Nie ma więcej powiadomień osobistych" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "Prywatne powiadomienia" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "Nie ma więcej powiadomień domu" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "Powiadomienia z instancji" - -#: ../../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." - -#: ../../mod/contacts.php:99 -msgid "Could not locate selected profile." -msgstr "Nie można znaleźć wybranego profilu." - -#: ../../mod/contacts.php:122 -msgid "Contact updated." -msgstr "Kontakt zaktualizowany" - -#: ../../mod/contacts.php:187 -msgid "Contact has been blocked" -msgstr "Kontakt został zablokowany" - -#: ../../mod/contacts.php:187 -msgid "Contact has been unblocked" -msgstr "Kontakt został odblokowany" - -#: ../../mod/contacts.php:201 -msgid "Contact has been ignored" -msgstr "Kontakt jest ignorowany" - -#: ../../mod/contacts.php:201 -msgid "Contact has been unignored" -msgstr "Kontakt nie jest ignorowany" - -#: ../../mod/contacts.php:220 -msgid "Contact has been archived" -msgstr "Kontakt został zarchiwizowany" - -#: ../../mod/contacts.php:220 -msgid "Contact has been unarchived" -msgstr "" - -#: ../../mod/contacts.php:244 -msgid "Do you really want to delete this contact?" -msgstr "" - -#: ../../mod/contacts.php:263 -msgid "Contact has been removed." -msgstr "Kontakt został usunięty." - -#: ../../mod/contacts.php:301 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Jesteś już znajomym z %s" - -#: ../../mod/contacts.php:305 -#, php-format -msgid "You are sharing with %s" -msgstr "Współdzielisz z %s" - -#: ../../mod/contacts.php:310 -#, php-format -msgid "%s is sharing with you" -msgstr "%s współdzieli z tobą" - -#: ../../mod/contacts.php:327 -msgid "Private communications are not available for this contact." -msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" - -#: ../../mod/contacts.php:330 -msgid "Never" -msgstr "Nigdy" - -#: ../../mod/contacts.php:334 -msgid "(Update was successful)" -msgstr "(Aktualizacja przebiegła pomyślnie)" - -#: ../../mod/contacts.php:334 -msgid "(Update was not successful)" -msgstr "(Aktualizacja nie powiodła się)" - -#: ../../mod/contacts.php:336 -msgid "Suggest friends" -msgstr "Osoby, które możesz znać" - -#: ../../mod/contacts.php:340 -#, php-format -msgid "Network type: %s" -msgstr "Typ sieci: %s" - -#: ../../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] "" - -#: ../../mod/contacts.php:348 -msgid "View all contacts" -msgstr "Zobacz wszystkie kontakty" - -#: ../../mod/contacts.php:353 ../../mod/contacts.php:412 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "Odblokuj" - -#: ../../mod/contacts.php:353 ../../mod/contacts.php:412 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "Zablokuj" - -#: ../../mod/contacts.php:356 -msgid "Toggle Blocked status" -msgstr "" - -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -msgid "Unignore" -msgstr "Odblokuj" - -#: ../../mod/contacts.php:362 -msgid "Toggle Ignored status" -msgstr "" - -#: ../../mod/contacts.php:366 -msgid "Unarchive" -msgstr "" - -#: ../../mod/contacts.php:366 -msgid "Archive" -msgstr "Archiwum" - -#: ../../mod/contacts.php:369 -msgid "Toggle Archive status" -msgstr "" - -#: ../../mod/contacts.php:372 -msgid "Repair" -msgstr "Napraw" - -#: ../../mod/contacts.php:375 -msgid "Advanced Contact Settings" -msgstr "Zaawansowane ustawienia kontaktów" - -#: ../../mod/contacts.php:381 -msgid "Communications lost with this contact!" -msgstr "" - -#: ../../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 "" -"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" - -#: ../../mod/contacts.php:389 -msgid "Contact Information / Notes" -msgstr "Informacja o kontakcie / Notka" - -#: ../../mod/contacts.php:390 -msgid "Edit contact notes" -msgstr "Edytuj notatki kontaktu" - -#: ../../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]" - -#: ../../mod/contacts.php:396 -msgid "Block/Unblock contact" -msgstr "Zablokuj/odblokuj kontakt" - -#: ../../mod/contacts.php:397 -msgid "Ignore contact" -msgstr "Ignoruj kontakt" - -#: ../../mod/contacts.php:398 -msgid "Repair URL settings" -msgstr "Napraw ustawienia adresu" - -#: ../../mod/contacts.php:399 -msgid "View conversations" -msgstr "Zobacz rozmowę" - -#: ../../mod/contacts.php:401 -msgid "Delete contact" -msgstr "Usuń kontakt" - -#: ../../mod/contacts.php:405 -msgid "Last update:" -msgstr "Ostatnia aktualizacja:" - -#: ../../mod/contacts.php:407 -msgid "Update public posts" -msgstr "Zaktualizuj publiczne posty" - -#: ../../mod/contacts.php:409 ../../mod/admin.php:1213 -msgid "Update now" -msgstr "Aktualizuj teraz" - -#: ../../mod/contacts.php:416 -msgid "Currently blocked" -msgstr "Obecnie zablokowany" - -#: ../../mod/contacts.php:417 -msgid "Currently ignored" -msgstr "Obecnie zignorowany" - -#: ../../mod/contacts.php:418 -msgid "Currently archived" -msgstr "Obecnie zarchiwizowany" - -#: ../../mod/contacts.php:419 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" - -#: ../../mod/contacts.php:470 -msgid "Suggestions" -msgstr "Sugestie" - -#: ../../mod/contacts.php:473 -msgid "Suggest potential friends" -msgstr "Sugerowani znajomi" - -#: ../../mod/contacts.php:476 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "Wszystkie kontakty" - -#: ../../mod/contacts.php:479 -msgid "Show all contacts" -msgstr "Pokaż wszystkie kontakty" - -#: ../../mod/contacts.php:482 -msgid "Unblocked" -msgstr "Odblokowany" - -#: ../../mod/contacts.php:485 -msgid "Only show unblocked contacts" -msgstr "Pokaż tylko odblokowane kontakty" - -#: ../../mod/contacts.php:489 -msgid "Blocked" -msgstr "Zablokowany" - -#: ../../mod/contacts.php:492 -msgid "Only show blocked contacts" -msgstr "Pokaż tylko zablokowane kontakty" - -#: ../../mod/contacts.php:496 -msgid "Ignored" -msgstr "Zignorowany" - -#: ../../mod/contacts.php:499 -msgid "Only show ignored contacts" -msgstr "Pokaż tylko ignorowane kontakty" - -#: ../../mod/contacts.php:503 -msgid "Archived" -msgstr "" - -#: ../../mod/contacts.php:506 -msgid "Only show archived contacts" -msgstr "Pokaż tylko zarchiwizowane kontakty" - -#: ../../mod/contacts.php:510 -msgid "Hidden" -msgstr "Ukryty" - -#: ../../mod/contacts.php:513 -msgid "Only show hidden contacts" -msgstr "Pokaż tylko ukryte kontakty" - -#: ../../mod/contacts.php:561 -msgid "Mutual Friendship" -msgstr "Wzajemna przyjaźń" - -#: ../../mod/contacts.php:565 -msgid "is a fan of yours" -msgstr "jest twoim fanem" - -#: ../../mod/contacts.php:569 -msgid "you are a fan of" -msgstr "jesteś fanem" - -#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "Edytuj kontakt" - -#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89 -#: ../../include/nav.php:171 -msgid "Contacts" -msgstr "Kontakty" - -#: ../../mod/contacts.php:611 -msgid "Search your contacts" -msgstr "Wyszukaj w kontaktach" - -#: ../../mod/contacts.php:612 ../../mod/directory.php:59 -#: ../../addon/forumdirectory/forumdirectory.php:81 -msgid "Finding: " -msgstr "Znalezione:" - -#: ../../mod/contacts.php:613 ../../mod/directory.php:61 -#: ../../addon/forumdirectory/forumdirectory.php:83 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "Znajdź" - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "Nie znaleziono ważnego konta." - -#: ../../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." - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Prośba o reset hasła na %s" - -#: ../../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ę." - -#: ../../mod/lostpass.php:84 ../../boot.php:1051 -msgid "Password Reset" -msgstr "Zresetuj hasło" - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "Twoje hasło zostało zresetowane na twoje życzenie." - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "Twoje nowe hasło to" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "Kliknij tutaj aby zalogować" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "" - -#: ../../mod/lostpass.php:122 -msgid "Forgot your Password?" -msgstr "Zapomniałeś hasła?" - -#: ../../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." - -#: ../../mod/lostpass.php:124 -msgid "Nickname or Email: " -msgstr "Pseudonim lub Email:" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "Zresetuj" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "Brakuje ważnych danych!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:586 -msgid "Update" -msgstr "Zaktualizuj" - -#: ../../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ę." - -#: ../../mod/settings.php:232 -msgid "Email settings updated." -msgstr "Zaktualizowano ustawienia email." - -#: ../../mod/settings.php:247 -msgid "Features updated" -msgstr "" - -#: ../../mod/settings.php:307 -msgid "Passwords do not match. Password unchanged." -msgstr "Hasło nie pasuje. Hasło nie zmienione." - -#: ../../mod/settings.php:312 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Brak hasła niedozwolony. Hasło nie zmienione." - -#: ../../mod/settings.php:323 -msgid "Password changed." -msgstr "Hasło zostało zmianione." - -#: ../../mod/settings.php:325 -msgid "Password update failed. Please try again." -msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." - -#: ../../mod/settings.php:390 -msgid " Please use a shorter name." -msgstr "Proszę użyć krótszej nazwy." - -#: ../../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 "" - -#: ../../mod/settings.php:458 -msgid "Private forum has no privacy permissions and no default privacy group." -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." - -#: ../../mod/settings.php:559 ../../mod/settings.php:585 -#: ../../mod/settings.php:621 -msgid "Add application" -msgstr "Dodaj aplikacje" - -#: ../../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" - -#: ../../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" - -#: ../../mod/settings.php:565 ../../mod/settings.php:591 -msgid "Redirect" -msgstr "Przekierowanie" - -#: ../../mod/settings.php:566 ../../mod/settings.php:592 -msgid "Icon url" -msgstr "Adres ikony" - -#: ../../mod/settings.php:577 -msgid "You can't edit this application." -msgstr "Nie możesz edytować tej aplikacji." - -#: ../../mod/settings.php:620 -msgid "Connected Apps" -msgstr "Powiązane aplikacje" - -#: ../../mod/settings.php:624 -msgid "Client key starts with" -msgstr "Klucz klienta zaczyna się od" - -#: ../../mod/settings.php:625 -msgid "No name" -msgstr "Bez nazwy" - -#: ../../mod/settings.php:626 -msgid "Remove authorization" -msgstr "Odwołaj upoważnienie" - -#: ../../mod/settings.php:638 -msgid "No Plugin settings configured" -msgstr "Ustawienia wtyczki nieskonfigurowane" - -#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124 -#: ../../addon.old/widgets/widgets.php:123 -msgid "Plugin Settings" -msgstr "Ustawienia wtyczki" - -#: ../../mod/settings.php:660 -msgid "Off" -msgstr "Wyłącz" - -#: ../../mod/settings.php:660 -msgid "On" -msgstr "Włącz" - -#: ../../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 "" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "enabled" -msgstr "włączony" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "disabled" -msgstr "wyłączony" - -#: ../../mod/settings.php:682 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../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" - -#: ../../mod/settings.php:721 -msgid "Connector Settings" -msgstr "Ustawienia konektora" - -#: ../../mod/settings.php:726 -msgid "Email/Mailbox Setup" -msgstr "Ustawienia emaila/skrzynki mailowej" - -#: ../../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." - -#: ../../mod/settings.php:728 -msgid "Last successful email check:" -msgstr "Ostatni sprawdzony e-mail:" - -#: ../../mod/settings.php:730 -msgid "IMAP server name:" -msgstr "Nazwa serwera IMAP:" - -#: ../../mod/settings.php:731 -msgid "IMAP port:" -msgstr "Port IMAP:" - -#: ../../mod/settings.php:732 -msgid "Security:" -msgstr "Ochrona:" - -#: ../../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" - -#: ../../mod/settings.php:733 -msgid "Email login name:" -msgstr "Login emaila:" - -#: ../../mod/settings.php:734 -msgid "Email password:" -msgstr "Hasło emaila:" - -#: ../../mod/settings.php:735 -msgid "Reply-to address:" -msgstr "Odpowiedz na adres:" - -#: ../../mod/settings.php:736 -msgid "Send public posts to all email contacts:" -msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" - -#: ../../mod/settings.php:737 -msgid "Action after import:" -msgstr "Akcja po zaimportowaniu:" - -#: ../../mod/settings.php:737 -msgid "Mark as seen" -msgstr "Oznacz jako przeczytane" - -#: ../../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:769 ../../mod/admin.php:420 -msgid "No special theme for mobile devices" -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:" - -#: ../../mod/settings.php:816 -msgid "Mobile Theme:" -msgstr "" - -#: ../../mod/settings.php:817 -msgid "Update browser every xx seconds" -msgstr "Odświeżaj stronę co xx sekund" - -#: ../../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 "" - -#: ../../mod/settings.php:818 -msgid "Maximum of 100 items" -msgstr "Maksymalnie 100 elementów" - -#: ../../mod/settings.php:819 -msgid "Don't show emoticons" -msgstr "Nie pokazuj emotikonek" - -#: ../../mod/settings.php:895 -msgid "Normal Account Page" -msgstr "" - -#: ../../mod/settings.php:896 -msgid "This account is a normal personal profile" -msgstr "To konto jest normalnym osobistym profilem" - -#: ../../mod/settings.php:899 -msgid "Soapbox Page" -msgstr "" - -#: ../../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'" - -#: ../../mod/settings.php:903 -msgid "Community Forum/Celebrity Account" -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." - -#: ../../mod/settings.php:907 -msgid "Automatic Friend Page" -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ół" - -#: ../../mod/settings.php:911 -msgid "Private Forum [Experimental]" -msgstr "" - -#: ../../mod/settings.php:912 -msgid "Private forum - approved members only" -msgstr "" - -#: ../../mod/settings.php:924 -msgid "OpenID:" -msgstr "OpenID:" - -#: ../../mod/settings.php:924 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "Przeznacz to OpenID do logowania się na to konto." - -#: ../../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?" - -#: ../../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?" - -#: ../../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?" - -#: ../../mod/settings.php:952 -msgid "Hide your profile details from unknown viewers?" -msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" - -#: ../../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" - -#: ../../mod/settings.php:963 -msgid "Allow friends to tag your posts?" -msgstr "Zezwól na oznaczanie twoich postów przez znajomych" - -#: ../../mod/settings.php:969 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "" - -#: ../../mod/settings.php:975 -msgid "Permit unknown people to send you private mail?" -msgstr "" - -#: ../../mod/settings.php:983 -msgid "Profile is not published." -msgstr "Profil nie jest opublikowany" - -#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "lub" - -#: ../../mod/settings.php:991 -msgid "Your Identity Address is" -msgstr "Twój adres identyfikacyjny to" - -#: ../../mod/settings.php:1002 -msgid "Automatically expire posts after this many days:" -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." - -#: ../../mod/settings.php:1003 -msgid "Advanced expiration settings" -msgstr "" - -#: ../../mod/settings.php:1004 -msgid "Advanced Expiration" -msgstr "" - -#: ../../mod/settings.php:1005 -msgid "Expire posts:" -msgstr "Wygasające posty:" - -#: ../../mod/settings.php:1006 -msgid "Expire personal notes:" -msgstr "Wygasające notatki osobiste:" - -#: ../../mod/settings.php:1007 -msgid "Expire starred posts:" -msgstr "" - -#: ../../mod/settings.php:1008 -msgid "Expire photos:" -msgstr "Wygasające zdjęcia:" - -#: ../../mod/settings.php:1009 -msgid "Only expire posts by others:" -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ć." - -#: ../../mod/settings.php:1049 -msgid "Basic Settings" -msgstr "Ustawienia podstawowe" - -#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "Imię i nazwisko:" - -#: ../../mod/settings.php:1051 -msgid "Email Address:" -msgstr "Adres email:" - -#: ../../mod/settings.php:1052 -msgid "Your Timezone:" -msgstr "Twoja strefa czasowa:" - -#: ../../mod/settings.php:1053 -msgid "Default Post Location:" -msgstr "Standardowa lokalizacja wiadomości:" - -#: ../../mod/settings.php:1054 -msgid "Use Browser Location:" -msgstr "Użyj położenia przeglądarki:" - -#: ../../mod/settings.php:1057 -msgid "Security and Privacy Settings" -msgstr "Ustawienia bezpieczeństwa i prywatności" - -#: ../../mod/settings.php:1059 -msgid "Maximum Friend Requests/Day:" -msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" - -#: ../../mod/settings.php:1059 ../../mod/settings.php:1089 -msgid "(to prevent spam abuse)" -msgstr "(aby zapobiec spamowaniu)" - -#: ../../mod/settings.php:1060 -msgid "Default Post Permissions" -msgstr "Domyślne prawa dostępu wiadomości" - -#: ../../mod/settings.php:1061 -msgid "(click to open/close)" -msgstr "(kliknij by otworzyć/zamknąć)" - -#: ../../mod/settings.php:1072 -msgid "Default Private Post" -msgstr "" - -#: ../../mod/settings.php:1073 -msgid "Default Public Post" -msgstr "" - -#: ../../mod/settings.php:1077 -msgid "Default Permissions for New Posts" -msgstr "" - -#: ../../mod/settings.php:1089 -msgid "Maximum private messages per day from unknown people:" -msgstr "" - -#: ../../mod/settings.php:1092 -msgid "Notification Settings" -msgstr "Ustawienia powiadomień" - -#: ../../mod/settings.php:1093 -msgid "By default post a status message when:" -msgstr "" - -#: ../../mod/settings.php:1094 -msgid "accepting a friend request" -msgstr "" - -#: ../../mod/settings.php:1095 -msgid "joining a forum/community" -msgstr "" - -#: ../../mod/settings.php:1096 -msgid "making an interesting profile change" -msgstr "" - -#: ../../mod/settings.php:1097 -msgid "Send a notification email when:" -msgstr "Wyślij powiadmonienia na email, kiedy:" - -#: ../../mod/settings.php:1098 -msgid "You receive an introduction" -msgstr "Otrzymałeś zaproszenie" - -#: ../../mod/settings.php:1099 -msgid "Your introductions are confirmed" -msgstr "Dane zatwierdzone" - -#: ../../mod/settings.php:1100 -msgid "Someone writes on your profile wall" -msgstr "Ktoś pisze na twojej ścianie profilowej" - -#: ../../mod/settings.php:1101 -msgid "Someone writes a followup comment" -msgstr "Ktoś pisze komentarz nawiązujący." - -#: ../../mod/settings.php:1102 -msgid "You receive a private message" -msgstr "Otrzymałeś prywatną wiadomość" - -#: ../../mod/settings.php:1103 -msgid "You receive a friend suggestion" -msgstr "Otrzymane propozycje znajomych" - -#: ../../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 "" - -#: ../../mod/settings.php:1108 -msgid "Advanced Account/Page Type Settings" -msgstr "" - -#: ../../mod/settings.php:1109 -msgid "Change the behaviour of this account for special situations" -msgstr "" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -msgstr "Zarządzaj Tożsamościami i/lub Stronami." - -#: ../../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 "" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "Wybierz tożsamość do zarządzania:" - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "Szukaj wyników dla:" - -#: ../../mod/network.php:224 ../../mod/search.php:21 -msgid "Remove term" -msgstr "Usuń wpis" - -#: ../../mod/network.php:233 ../../mod/search.php:30 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "Zapisane wyszukiwania" - -#: ../../mod/network.php:234 ../../include/group.php:275 -msgid "add" -msgstr "dodaj" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "Porządek wg komentarzy" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "Sortuj po dacie komentarza" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "Porządek wg wpisów" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "Sortuj po dacie posta" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "Nowy" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "Współdzielone linki" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "Interesujące linki" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -msgstr "Ulubione posty" - -#: ../../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." - -#: ../../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" - -#: ../../mod/network.php:621 -msgid "Contact: " -msgstr "Kontakt: " - -#: ../../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 " - -#: ../../mod/network.php:628 -msgid "Invalid contact." -msgstr "Zły kontakt" - -#: ../../mod/notes.php:44 ../../boot.php:1864 -msgid "Personal Notes" -msgstr "Osobiste notatki" - -#: ../../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" - -#: ../../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 "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro." - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "Przenieś konto" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "" - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "" - -#: ../../mod/uimport.php:69 -msgid "" -"This feature is experimental. We can't import contacts from the OStatus " -"network (statusnet/identi.ca) or from Diaspora" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your accont, go to \"Settings->Export your porsonal data\" and " -"select \"Export account\"" -msgstr "" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "" - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "Nie wybrano odbiorcy." - -#: ../../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 "Wiadomość nie może zostać wysłana" - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "" - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "Wysłano." - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -msgstr "Brak odbiorcy." - -#: ../../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:" - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -msgstr "Wyślij prywatną wiadomość" - -#: ../../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 "" - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "Do:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "Temat:" - -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "Twoja wiadomość:" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Witamy na Friendica" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Lista nowych członków" - -#: ../../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." - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start 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 "Idź do swoich ustawień" - -#: ../../mod/newmember.php:26 -msgid "" -"On your Settings 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 "" - -#: ../../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 "" - -#: ../../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" - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -msgstr "Wyślij zdjęcie profilowe" - -#: ../../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." - -#: ../../mod/newmember.php:38 -msgid "Edit Your Profile" -msgstr "Edytuj własny profil" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "" - -#: ../../mod/newmember.php:40 -msgid "Profile Keywords" -msgstr "Słowa kluczowe profilu" - -#: ../../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 "" - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "Łączę się..." - -#: ../../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" - -#: ../../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 "" - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "" - -#: ../../mod/newmember.php:56 -msgid "Importing Emails" -msgstr "Importuję emaile..." - -#: ../../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 "" - -#: ../../mod/newmember.php:58 -msgid "Go to Your Contacts Page" -msgstr "Idź do strony z Twoimi kontaktami" - -#: ../../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 Add New Contact dialog." -msgstr "" - -#: ../../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 Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "" - -#: ../../mod/newmember.php:62 -msgid "Finding New People" -msgstr "Poszukiwanie Nowych Ludzi" - -#: ../../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 "" - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "Grupy" - -#: ../../mod/newmember.php:70 -msgid "Group Your Contacts" -msgstr "Grupuj Swoje kontakty" - -#: ../../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 "" - -#: ../../mod/newmember.php:73 -msgid "Why Aren't My Posts Public?" -msgstr "Dlaczego moje posty nie są publiczne?" - -#: ../../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 "Otrzymywanie pomocy" - -#: ../../mod/newmember.php:82 -msgid "Go to the Help Section" -msgstr "Idź do części o pomocy" - -#: ../../mod/newmember.php:82 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Element nie dostępny." - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Element nie znaleziony." - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "Grupa utworzona." - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "Nie mogę stworzyć grupy" - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "Nie znaleziono grupy" - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "Nazwa grupy zmieniona" - -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340 -msgid "Permission denied" -msgstr "Odmowa dostępu" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "Stwórz grupę znajomych." - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "Nazwa grupy: " - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "Grupa usunięta." - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "Nie można usunąć grupy." - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "Edytor grupy" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "Członkowie" - -#: ../../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." - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Nieprawidłowa nazwa użytkownika." - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Ustawienia widoczności profilu" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Widoczne dla" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "brak kontaktów" - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:678 -msgid "View Contacts" -msgstr "widok kontaktów" - -#: ../../mod/register.php:91 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "Szczegóły rejestracji dla %s" - -#: ../../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." - -#: ../../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ę." - -#: ../../mod/register.php:108 -msgid "Your registration can not be processed." -msgstr "Twoja rejestracja nie może zostać przeprowadzona. " - -#: ../../mod/register.php:145 -#, php-format -msgid "Registration request at %s" -msgstr "Prośba o rejestrację u %s" - -#: ../../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." - -#: ../../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." - -#: ../../mod/register.php:258 -msgid "Your invitation ID: " -msgstr "Twoje zaproszenia ID:" - -#: ../../mod/register.php:261 ../../mod/admin.php:462 -msgid "Registration" -msgstr "Rejestracja" - -#: ../../mod/register.php:269 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Imię i nazwisko (np. Jan Kowalski):" - -#: ../../mod/register.php:270 -msgid "Your Email Address: " -msgstr "Twój adres email:" - -#: ../../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 " -"'nickname@$sitename'." -msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@$nazwastrony'." - -#: ../../mod/register.php:272 -msgid "Choose a nickname: " -msgstr "Wybierz pseudonim:" - -#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012 -msgid "Register" -msgstr "Zarejestruj" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "Szukaj osób" - -#: ../../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" - -#: ../../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 +#: ../../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/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: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" + #: ../../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 lubi %2$s's %3$s" -#: ../../mod/like.php:170 ../../include/conversation.php:140 +#: ../../addon.old/communityhome/communityhome.php:179 +#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s nie lubi %2$s's %3$s" +msgid "Welcome to %s" +msgstr "Witamy w %s" -#: ../../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." +#: ../../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/viewsrc.php:7 -msgid "Access denied." +#: ../../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 "" + +#: ../../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/fbrowser.php:25 ../../view/theme/diabook/theme.php:90 -#: ../../include/nav.php:78 ../../boot.php:1847 -msgid "Photos" -msgstr "Zdjęcia" +#: ../../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/fbrowser.php:113 -msgid "Files" -msgstr "Pliki" +#: ../../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/regmod.php:63 -msgid "Account approved." -msgstr "Konto zatwierdzone." - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "Rejestracja dla %s odwołana" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "Proszę się zalogować." - -#: ../../mod/item.php:104 -msgid "Unable to locate original post." -msgstr "Nie można zlokalizować oryginalnej wiadomości." - -#: ../../mod/item.php:292 -msgid "Empty post discarded." -msgstr "Pusty wpis wyrzucony." - -#: ../../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ęć" - -#: ../../mod/item.php:841 -msgid "System error. Post not saved." -msgstr "Błąd. Post niezapisany." - -#: ../../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" - -#: ../../mod/item.php:868 -#, php-format -msgid "You may visit them online at %s" -msgstr "Możesz ich odwiedzić online u %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 "Skontaktuj się z nadawcą odpowiadając na ten post jeśli nie chcesz otrzymywać tych wiadomości." - -#: ../../mod/item.php:871 -#, php-format -msgid "%s posted an update." -msgstr "%s zaktualizował wpis." - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" +#: ../../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/mood.php:133 -msgid "Mood" -msgstr "Nastrój" +#: ../../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/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "Wskaż swój obecny nastrój i powiedz o tym znajomym" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:144 +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +msgstr "Data wydarzenia" -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -msgstr "Obrazek załadowany, ale oprawanie powiodła się." +#: ../../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" -#: ../../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ę." - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" msgstr "" -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "Nie udało się przetworzyć obrazu." - -#: ../../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" - -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "Wyślij plik:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "Wybierz profil:" - -#: ../../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" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "Pomiń ten krok" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "wybierz zdjęcie z twojego albumu" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "Przytnij zdjęcie" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania." - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "Zakończ Edycję " - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "Zdjęcie wczytano pomyślnie " - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "Brak profilu" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "Usuń konto" - -#: ../../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." - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "Wprowadź hasło w celu weryfikacji." - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "Brak nowych zdarzeń" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "" - -#: ../../mod/message.php:9 ../../include/nav.php:159 -msgid "New Message" -msgstr "Nowa wiadomość" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "Niezdolny do uzyskania informacji kontaktowych." - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "Wiadomość usunięta." - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "Rozmowa usunięta." - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "Brak wiadomości." - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "Ty i %s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s i ty" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "Usuń rozmowę" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M R - g:m AM/PM" - -#: ../../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" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "Wiadomość nie jest dostępna." - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "Usuń wiadomość" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "" - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "Odpowiedz" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "Znajomy %s" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "Brak znajomych do wyświetlenia" - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "" - -#: ../../mod/admin.php:96 ../../mod/admin.php:460 -msgid "Site" -msgstr "Strona" - -#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740 -msgid "Users" -msgstr "Użytkownicy" - -#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864 -msgid "Plugins" -msgstr "Wtyczki" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067 -msgid "Themes" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" msgstr "Temat" -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "Zaczyna się" -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154 -msgid "Logs" -msgstr "Logi" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +msgstr "Kończy się" -#: ../../mod/admin.php:120 ../../include/nav.php:178 -msgid "Admin" -msgstr "Administator" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "Polecane wtyczki" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "Rejestracje użytkownika czekają na potwierdzenie." - -#: ../../mod/admin.php:183 ../../mod/admin.php:698 -msgid "Normal Account" -msgstr "Konto normalne" - -#: ../../mod/admin.php:184 ../../mod/admin.php:699 -msgid "Soapbox Account" -msgstr "Konto Soapbox" - -#: ../../mod/admin.php:185 ../../mod/admin.php:700 -msgid "Community/Celebrity Account" -msgstr "Konto społeczności/gwiazdy" - -#: ../../mod/admin.php:186 ../../mod/admin.php:701 -msgid "Automatic Friend Account" -msgstr "Automatyczny przyjaciel konta" - -#: ../../mod/admin.php:187 -msgid "Blog Account" -msgstr "" - -#: ../../mod/admin.php:188 -msgid "Private Forum" -msgstr "Forum Prywatne" - -#: ../../mod/admin.php:207 -msgid "Message queues" -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" - -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Skrót" - -#: ../../mod/admin.php:215 -msgid "Registered users" -msgstr "Zarejestrowani użytkownicy" - -#: ../../mod/admin.php:217 -msgid "Pending registrations" -msgstr "Rejestracje w toku." - -#: ../../mod/admin.php:218 -msgid "Version" -msgstr "Wersja" - -#: ../../mod/admin.php:220 -msgid "Active plugins" -msgstr "Aktywne pluginy" - -#: ../../mod/admin.php:391 -msgid "Site settings updated." -msgstr "Ustawienia strony zaktualizowane" - -#: ../../mod/admin.php:446 -msgid "Closed" -msgstr "Zamknięty" - -#: ../../mod/admin.php:447 -msgid "Requires approval" -msgstr "Wymagane zatwierdzenie." - -#: ../../mod/admin.php:448 -msgid "Open" -msgstr "Otwórz" - -#: ../../mod/admin.php:452 -msgid "No SSL policy, links will track page SSL state" -msgstr "" - -#: ../../mod/admin.php:453 -msgid "Force all links to use SSL" -msgstr "" - -#: ../../mod/admin.php:454 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "" - -#: ../../mod/admin.php:463 -msgid "File upload" -msgstr "Plik załadowano" - -#: ../../mod/admin.php:464 -msgid "Policies" -msgstr "zasady" - -#: ../../mod/admin.php:465 -msgid "Advanced" -msgstr "Zaawansowany" - -#: ../../mod/admin.php:466 -msgid "Performance" -msgstr "" - -#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744 -#: ../../addon.old/statusnet/statusnet.php:567 -msgid "Site name" -msgstr "Nazwa strony" - -#: ../../mod/admin.php:471 -msgid "Banner/Logo" -msgstr "Logo" - -#: ../../mod/admin.php:472 -msgid "System language" -msgstr "Język systemu" - -#: ../../mod/admin.php:473 -msgid "System theme" -msgstr "Motyw systemowy" - -#: ../../mod/admin.php:473 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Mobile system theme" -msgstr "" - -#: ../../mod/admin.php:474 -msgid "Theme for mobile devices" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "SSL link policy" -msgstr "" - -#: ../../mod/admin.php:475 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "'Share' element" -msgstr "" - -#: ../../mod/admin.php:476 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "" - -#: ../../mod/admin.php:477 -msgid "Maximum image size" -msgstr "Maksymalny rozmiar zdjęcia" - -#: ../../mod/admin.php:477 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "" - -#: ../../mod/admin.php:478 -msgid "Maximum image length" -msgstr "Maksymalna długość obrazu" - -#: ../../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." - -#: ../../mod/admin.php:479 -msgid "JPEG image quality" -msgstr "jakość obrazu JPEG" - -#: ../../mod/admin.php:479 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "" - -#: ../../mod/admin.php:481 -msgid "Register policy" -msgstr "Zarejestruj polisę" - -#: ../../mod/admin.php:482 -msgid "Maximum Daily Registrations" -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 "" - -#: ../../mod/admin.php:483 -msgid "Register text" -msgstr "Zarejestruj tekst" - -#: ../../mod/admin.php:483 -msgid "Will be displayed prominently on the registration page." -msgstr "" - -#: ../../mod/admin.php:484 -msgid "Accounts abandoned after x days" -msgstr "Konto porzucone od x dni." - -#: ../../mod/admin.php:484 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "" - -#: ../../mod/admin.php:485 -msgid "Allowed friend domains" -msgstr "Dozwolone domeny przyjaciół" - -#: ../../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 "" - -#: ../../mod/admin.php:486 -msgid "Allowed email domains" -msgstr "Dozwolone domeny e-mailowe" - -#: ../../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 "" - -#: ../../mod/admin.php:487 -msgid "Block public" -msgstr "Blokuj publicznie" - -#: ../../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 "" - -#: ../../mod/admin.php:488 -msgid "Force publish" -msgstr "Wymuś publikację" - -#: ../../mod/admin.php:488 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "" - -#: ../../mod/admin.php:489 -msgid "Global directory update URL" -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 "" - -#: ../../mod/admin.php:490 -msgid "Allow threaded items" -msgstr "" - -#: ../../mod/admin.php:490 -msgid "Allow infinite level threading for items on this site." -msgstr "" - -#: ../../mod/admin.php:491 -msgid "Private posts by default for new users" -msgstr "" - -#: ../../mod/admin.php:491 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "" - -#: ../../mod/admin.php:493 -msgid "Block multiple registrations" -msgstr "" - -#: ../../mod/admin.php:493 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "" - -#: ../../mod/admin.php:494 -msgid "OpenID support" -msgstr "Wsparcie OpenID" - -#: ../../mod/admin.php:494 -msgid "OpenID support for registration and logins." -msgstr "" - -#: ../../mod/admin.php:495 -msgid "Fullname check" -msgstr "Sprawdzanie pełnej nazwy" - -#: ../../mod/admin.php:495 -msgid "" -"Force users to register with a space between firstname and lastname in Full " -"name, as an antispam measure" -msgstr "" - -#: ../../mod/admin.php:496 -msgid "UTF-8 Regular expressions" -msgstr "" - -#: ../../mod/admin.php:496 -msgid "Use PHP UTF8 regular expressions" -msgstr "" - -#: ../../mod/admin.php:497 -msgid "Show Community Page" -msgstr "Pokaż stronę społeczności" - -#: ../../mod/admin.php:497 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "" - -#: ../../mod/admin.php:498 -msgid "Enable OStatus support" -msgstr "Włącz wsparcie OStatus" - -#: ../../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 "" - -#: ../../mod/admin.php:499 -msgid "Enable Diaspora support" -msgstr "" - -#: ../../mod/admin.php:499 -msgid "Provide built-in Diaspora network compatibility." -msgstr "" - -#: ../../mod/admin.php:500 -msgid "Only allow Friendica contacts" -msgstr "" - -#: ../../mod/admin.php:500 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "" - -#: ../../mod/admin.php:501 -msgid "Verify SSL" -msgstr "Weryfikacja SSL" - -#: ../../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 "" - -#: ../../mod/admin.php:502 -msgid "Proxy user" -msgstr "Użytkownik proxy" - -#: ../../mod/admin.php:503 -msgid "Proxy URL" -msgstr "URL Proxy" - -#: ../../mod/admin.php:504 -msgid "Network timeout" -msgstr "Network timeout" - -#: ../../mod/admin.php:504 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "" - -#: ../../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 "" - -#: ../../mod/admin.php:506 -msgid "Poll interval" -msgstr "" - -#: ../../mod/admin.php:506 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "" - -#: ../../mod/admin.php:507 -msgid "Maximum Load Average" -msgstr "" - -#: ../../mod/admin.php:507 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "" - -#: ../../mod/admin.php:509 -msgid "Use MySQL full text engine" -msgstr "" - -#: ../../mod/admin.php:509 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "" - -#: ../../mod/admin.php:510 -msgid "Path to item cache" -msgstr "" - -#: ../../mod/admin.php:511 -msgid "Cache duration in seconds" -msgstr "" - -#: ../../mod/admin.php:511 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "" - -#: ../../mod/admin.php:512 -msgid "Path for lock file" -msgstr "" - -#: ../../mod/admin.php:513 -msgid "Temp path" -msgstr "" - -#: ../../mod/admin.php:514 -msgid "Base path to installation" -msgstr "" - -#: ../../mod/admin.php:532 -msgid "Update has been marked successful" -msgstr "" - -#: ../../mod/admin.php:542 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../mod/admin.php:545 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "" - -#: ../../mod/admin.php:552 -#, php-format -msgid "Update function %s could not be found." -msgstr "" - -#: ../../mod/admin.php:567 -msgid "No failed updates." -msgstr "Brak błędów aktualizacji." - -#: ../../mod/admin.php:571 -msgid "Failed Updates" -msgstr "Błąd aktualizacji" - -#: ../../mod/admin.php:572 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "" - -#: ../../mod/admin.php:573 -msgid "Mark success (if update was manually applied)" -msgstr "" - -#: ../../mod/admin.php:574 -msgid "Attempt to execute this update step automatically" -msgstr "" - -#: ../../mod/admin.php:599 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../../mod/admin.php:606 -#, 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 " - -#: ../../mod/admin.php:645 -#, php-format -msgid "User '%s' deleted" -msgstr "Użytkownik '%s' usunięty" - -#: ../../mod/admin.php:653 -#, php-format -msgid "User '%s' unblocked" -msgstr "Użytkownik '%s' odblokowany" - -#: ../../mod/admin.php:653 -#, php-format -msgid "User '%s' blocked" -msgstr "Użytkownik '%s' zablokowany" - -#: ../../mod/admin.php:729 -msgid "select all" -msgstr "Zaznacz wszystko" - -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "zarejestrowany użytkownik czeka na potwierdzenie" - -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "Data prośby" - -#: ../../mod/admin.php:731 ../../mod/admin.php:741 -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "E-mail" - -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "brak rejestracji" - -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "Odmów" - -#: ../../mod/admin.php:738 -msgid "Site admin" -msgstr "Administracja stroną" - -#: ../../mod/admin.php:741 -msgid "Register date" -msgstr "Data rejestracji" - -#: ../../mod/admin.php:741 -msgid "Last login" -msgstr "Ostatnie logowanie" - -#: ../../mod/admin.php:741 -msgid "Last item" -msgstr "Ostatni element" - -#: ../../mod/admin.php:741 -msgid "Account" -msgstr "Konto" - -#: ../../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?" - -#: ../../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?" - -#: ../../mod/admin.php:785 -#, php-format -msgid "Plugin %s disabled." -msgstr "Wtyczka %s wyłączona." - -#: ../../mod/admin.php:789 -#, php-format -msgid "Plugin %s enabled." -msgstr "Wtyczka %s właczona." - -#: ../../mod/admin.php:799 ../../mod/admin.php:1001 -msgid "Disable" -msgstr "Wyłącz" - -#: ../../mod/admin.php:801 ../../mod/admin.php:1003 -msgid "Enable" -msgstr "Zezwól" - -#: ../../mod/admin.php:823 ../../mod/admin.php:1032 -msgid "Toggle" -msgstr "Włącz" - -#: ../../mod/admin.php:831 ../../mod/admin.php:1042 -msgid "Author: " -msgstr "Autor: " - -#: ../../mod/admin.php:832 ../../mod/admin.php:1043 -msgid "Maintainer: " -msgstr "" - -#: ../../mod/admin.php:961 -msgid "No themes found." -msgstr "Nie znaleziono tematu." - -#: ../../mod/admin.php:1024 -msgid "Screenshot" -msgstr "Zrzut ekranu" - -#: ../../mod/admin.php:1072 -msgid "[Experimental]" -msgstr "[Eksperymentalne]" - -#: ../../mod/admin.php:1073 -msgid "[Unsupported]" -msgstr "[Niewspieralne]" - -#: ../../mod/admin.php:1100 -msgid "Log settings updated." -msgstr "" - -#: ../../mod/admin.php:1156 -msgid "Clear" -msgstr "Wyczyść" - -#: ../../mod/admin.php:1162 -msgid "Debugging" -msgstr "Naprawianie" - -#: ../../mod/admin.php:1163 -msgid "Log file" -msgstr "Plik logów" - -#: ../../mod/admin.php:1163 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "" - -#: ../../mod/admin.php:1164 -msgid "Log level" -msgstr "Poziom logów" - -#: ../../mod/admin.php:1214 -msgid "Close" -msgstr "Zamknij" - -#: ../../mod/admin.php:1220 -msgid "FTP Host" -msgstr "Założyciel FTP" - -#: ../../mod/admin.php:1221 -msgid "FTP Path" -msgstr "Ścieżka FTP" - -#: ../../mod/admin.php:1222 -msgid "FTP User" -msgstr "Użytkownik FTP" - -#: ../../mod/admin.php:1223 -msgid "FTP Password" -msgstr "FTP Hasło" - -#: ../../mod/profile.php:21 ../../boot.php:1225 -msgid "Requested profile is not available." -msgstr "Żądany profil jest niedostępny" - -#: ../../mod/profile.php:155 ../../mod/display.php:99 -msgid "Access to this profile has been restricted." -msgstr "Ograniczony dostęp do tego konta" - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "Wskazówki dla nowych użytkowników" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0} chce być Twoim znajomym" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0} wysyła Ci wiadomość" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0} żądana rejestracja" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0} skomentował %s wpis" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0} polubił wpis %s" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0} przestał lubić post %s" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0} jest teraz znajomym %s" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0} utworzony" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0} zaznaczony %s'go post z #%s" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0} wspomniał Cię w swoim wpisie" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "Kontakty spoza członków grupy" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "" - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -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" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "Wspólni znajomi" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "" - -#: ../../mod/display.php:177 -msgid "Item has been removed." -msgstr "Przedmiot został usunięty" - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "Aplikacje" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "Brak zainstalowanych aplikacji." - -#: ../../mod/search.php:99 ../../include/text.php:738 -#: ../../include/text.php:739 ../../include/nav.php:118 -msgid "Search" -msgstr "Szukaj" - -#: ../../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/profiles.php:37 -msgid "Profile deleted." -msgstr "Konto usunięte." - -#: ../../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/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "Nie można powileić profilu " - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "Nazwa Profilu jest wymagana" - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "" - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "Praca/Zatrudnienie" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "Religia" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "Poglądy polityczne" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "Płeć" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "Orientacja seksualna" - -#: ../../mod/profiles.php:352 -msgid "Homepage" -msgstr "Strona Główna" - -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "Zainteresowania" - -#: ../../mod/profiles.php:360 -msgid "Address" -msgstr "Adres" - -#: ../../mod/profiles.php:367 ../../addon/dav/common/wdcal_edit.inc.php:183 #: ../../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/profiles.php:450 -msgid "Profile updated." -msgstr "Konto zaktualizowane." +#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "Opis" -#: ../../mod/profiles.php:517 -msgid " and " -msgstr " i " - -#: ../../mod/profiles.php:525 -msgid "public profile" -msgstr "profil publiczny" - -#: ../../mod/profiles.php:528 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" msgstr "" -#: ../../mod/profiles.php:529 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - Odwiedźa %1$s's %2$s" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +msgstr "często" -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +msgstr "raz na rok" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" 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" - -#: ../../mod/profiles.php:629 -msgid "Create a new profile using these settings" -msgstr "Stwórz nowy profil wykorzystując te ustawienia" - -#: ../../mod/profiles.php:630 -msgid "Clone this profile" -msgstr "Sklonuj ten profil" - -#: ../../mod/profiles.php:631 -msgid "Delete this profile" -msgstr "Usuń ten profil" - -#: ../../mod/profiles.php:632 -msgid "Profile Name:" -msgstr "Nazwa profilu :" - -#: ../../mod/profiles.php:633 -msgid "Your Full Name:" -msgstr "Twoje imię i nazwisko:" - -#: ../../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 :" - -#: ../../mod/profiles.php:640 -msgid "Country:" -msgstr "Kraj:" - -#: ../../mod/profiles.php:641 -msgid "Region/State:" -msgstr "Region / Stan :" - -#: ../../mod/profiles.php:642 -msgid " Marital Status:" -msgstr " Stan :" - -#: ../../mod/profiles.php:643 -msgid "Who: (if applicable)" -msgstr "Kto: (jeśli dotyczy)" - -#: ../../mod/profiles.php:644 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" - -#: ../../mod/profiles.php:645 -msgid "Since [date]:" -msgstr "Od [data]:" - -#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "Interesują mnie:" - -#: ../../mod/profiles.php:647 -msgid "Homepage URL:" -msgstr "Strona główna URL:" - -#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "Miasto rodzinne:" - -#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "Poglądy polityczne:" - -#: ../../mod/profiles.php:650 -msgid "Religious Views:" -msgstr "Poglądy religijne:" - -#: ../../mod/profiles.php:651 -msgid "Public Keywords:" -msgstr "Publiczne słowa kluczowe :" - -#: ../../mod/profiles.php:652 -msgid "Private Keywords:" -msgstr "Prywatne słowa kluczowe :" - -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "Lubi:" - -#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64 -msgid "Dislikes:" +#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "All %select% %time%" msgstr "" -#: ../../mod/profiles.php:655 -msgid "Example: fishing photography software" -msgstr "Przykład: kończenie oprogramowania fotografii" +#: ../../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/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.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/profiles.php:657 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" +#: ../../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/profiles.php:658 -msgid "Tell us about yourself..." -msgstr "Napisz o sobie..." +#: ../../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/profiles.php:659 -msgid "Hobbies/Interests" -msgstr "Zainteresowania" +#: ../../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/profiles.php:660 -msgid "Contact information and Social Networks" -msgstr "Informacje kontaktowe i Sieci Społeczne" +#: ../../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/profiles.php:661 -msgid "Musical interests" -msgstr "Muzyka" +#: ../../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/profiles.php:662 -msgid "Books, literature" -msgstr "Literatura" +#: ../../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/profiles.php:663 -msgid "Television" -msgstr "Telewizja" +#: ../../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/profiles.php:664 -msgid "Film/dance/culture/entertainment" -msgstr "Film/taniec/kultura/rozrywka" +#: ../../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/profiles.php:665 -msgid "Love/romance" -msgstr "Miłość/romans" +#: ../../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/profiles.php:666 -msgid "Work/employment" -msgstr "Praca/zatrudnienie" +#: ../../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/profiles.php:667 -msgid "School/education" -msgstr "Szkoła/edukacja" +#: ../../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/profiles.php:672 +#: ../../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 "" + +#: ../../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" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "" + +#: ../../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 "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "Powiadomienie" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "" + +#: ../../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ń" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "E-Mail" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "Godzin" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "Minut" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +msgstr "Dodaj powiadomienie" + +#: ../../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 "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:696 +#: ../../addon/dav/common/wdcal_edit.inc.php:696 +msgid "#name# is about to begin." +msgstr "" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "Zapisano" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "Kalendarz prywatny" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "Kontakty Friendica" + +#: ../../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 "" + +#: ../../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" + +#: ../../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" + +#: ../../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 "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu." - -#: ../../mod/profiles.php:682 ../../mod/directory.php:111 -#: ../../addon/forumdirectory/forumdirectory.php:133 -msgid "Age: " -msgstr "Wiek: " - -#: ../../mod/profiles.php:721 -msgid "Edit/Manage Profiles" -msgstr "Edytuj/Zarządzaj Profilami" - -#: ../../mod/profiles.php:722 ../../boot.php:1345 -msgid "Change profile photo" -msgstr "Zmień zdjęcie profilowe" - -#: ../../mod/profiles.php:723 ../../boot.php:1346 -msgid "Create New Profile" -msgstr "Stwórz nowy profil" - -#: ../../mod/profiles.php:734 ../../boot.php:1356 -msgid "Profile Image" -msgstr "Obraz profilowy" - -#: ../../mod/profiles.php:736 ../../boot.php:1359 -msgid "visible to everybody" -msgstr "widoczne dla wszystkich" - -#: ../../mod/profiles.php:737 ../../boot.php:1360 -msgid "Edit visibility" -msgstr "Edytuj widoczność" - -#: ../../mod/filer.php:30 ../../include/conversation.php:944 -#: ../../include/conversation.php:962 -msgid "Save to Folder:" -msgstr "Zapisz w folderze:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "- wybierz -" - -#: ../../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" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." +"Something went wrong when trying to import the file. Sorry. Maybe some " +"events were imported anyway." msgstr "" -#: ../../mod/delegate.php:121 ../../include/nav.php:165 -msgid "Delegate Page Management" +#: ../../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/delegate.php:123 +#: ../../addon.old/dav/friendica/layout.fnk.php:134 +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:138 +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "Nie wgrano pliku." + +#: ../../addon.old/dav/friendica/layout.fnk.php:147 +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:150 +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:151 +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "" + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/dav/friendica/layout.fnk.php:228 +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "Nowe wydarzenie" + +#: ../../addon.old/dav/friendica/layout.fnk.php:232 +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "Dzisiaj" + +#: ../../addon.old/dav/friendica/layout.fnk.php:241 +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "Dzień" + +#: ../../addon.old/dav/friendica/layout.fnk.php:248 +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "Tydzień" + +#: ../../addon.old/dav/friendica/layout.fnk.php:260 +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "Załaduj ponownie" + +#: ../../addon.old/dav/friendica/layout.fnk.php:263 +#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372 +msgid "Previous" +msgstr "Poprzedni" + +#: ../../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" + +#: ../../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 "Błąd" + +#: ../../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ń." + +#: ../../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 "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:380 +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:393 +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:417 +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "" + +#: ../../addon.old/dav/friendica/layout.fnk.php:424 +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "Ustawienia kalendarza" + +#: ../../addon.old/dav/friendica/layout.fnk.php:430 +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "Format daty" + +#: ../../addon.old/dav/friendica/layout.fnk.php:439 +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "Strefa czasowa" + +#: ../../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" + +#: ../../addon.old/dav/friendica/layout.fnk.php:445 +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "Kalendarze" + +#: ../../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" + +#: ../../addon.old/dav/friendica/layout.fnk.php:496 +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +msgstr "Ograniczenie" + +#: ../../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" + +#: ../../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, ...)" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/dav/friendica/main.php:202 +#: ../../addon/dav/friendica/main.php:202 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." +"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/delegate.php:124 -msgid "Existing Page Managers" +#: ../../addon.old/dav/friendica/main.php:242 +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" msgstr "" -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" +#: ../../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" + +#: ../../addon.old/dav/friendica/main.php:282 +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "Potwierdzeni:" + +#: ../../addon.old/dav/friendica/main.php:309 +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." msgstr "" -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" +#: ../../addon.old/dav/friendica/main.php:310 +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." msgstr "" -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "Dodaj" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "Brak wpisów." - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" +#: ../../addon.old/dav/friendica/main.php:316 +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." msgstr "" -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" +#: ../../addon.old/dav/friendica/main.php:317 +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." msgstr "" -#: ../../mod/babel.php:31 -msgid "Source input: " +#: ../../addon.old/dav/friendica/main.php:333 +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." msgstr "" -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " +#: ../../addon.old/dav/friendica/main.php:336 +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" msgstr "" -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "" +#: ../../addon.old/dav/friendica/main.php:339 +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "Zainstalowany" -#: ../../mod/babel.php:43 -msgid "bb2html2bb: " -msgstr "" +#: ../../addon.old/dav/friendica/main.php:343 +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +msgstr "Wymaga uaktualnienia" -#: ../../mod/babel.php:47 -msgid "bb2md: " -msgstr "" - -#: ../../mod/babel.php:51 -msgid "bb2md2html: " -msgstr "" - -#: ../../mod/babel.php:55 -msgid "bb2dia2bb: " -msgstr "" - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "" - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "" - -#: ../../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ć" - -#: ../../mod/suggest.php:72 +#: ../../addon.old/dav/friendica/main.php:343 +#: ../../addon/dav/friendica/main.php:343 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +"Please back up all calendar data (the tables beginning with dav_*) before " +"proceeding. While all calendar events should 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/suggest.php:90 -msgid "Ignore/Hide" -msgstr "Ignoruj/Ukryj" +#: ../../addon.old/dav/friendica/main.php:343 +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "Uaktualnienie" -#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71 -#: ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "Globalne Położenie" +#: ../../addon.old/dav/friendica/main.php:346 +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "Nie zainstalowany" -#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79 -msgid "Find on this site" -msgstr "Znajdź na tej stronie" +#: ../../addon.old/dav/friendica/main.php:346 +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "Zainstaluj" -#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82 -msgid "Site Directory" -msgstr "Katalog Strony" +#: ../../addon.old/dav/friendica/main.php:350 +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "Nieznany" -#: ../../mod/directory.php:114 -#: ../../addon/forumdirectory/forumdirectory.php:136 -msgid "Gender: " -msgstr "Płeć: " - -#: ../../mod/directory.php:136 -#: ../../addon/forumdirectory/forumdirectory.php:158 -#: ../../include/profile_advanced.php:17 ../../boot.php:1381 -msgid "Gender:" -msgstr "Płeć:" - -#: ../../mod/directory.php:138 -#: ../../addon/forumdirectory/forumdirectory.php:160 -#: ../../include/profile_advanced.php:37 ../../boot.php:1384 -msgid "Status:" -msgstr "Status" - -#: ../../mod/directory.php:140 -#: ../../addon/forumdirectory/forumdirectory.php:162 -#: ../../include/profile_advanced.php:48 ../../boot.php:1386 -msgid "Homepage:" -msgstr "Strona główna:" - -#: ../../mod/directory.php:142 -#: ../../addon/forumdirectory/forumdirectory.php:164 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "O:" - -#: ../../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)." - -#: ../../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 : Niepoprawny adres email." - -#: ../../mod/invite.php:73 -msgid "Please join us on Friendica" -msgstr "Dołącz do nas na 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 : Dostarczenie wiadomości nieudane." - -#: ../../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 ." - -#: ../../mod/invite.php:112 -msgid "You have no more invitations available" -msgstr "Nie masz więcej zaproszeń" - -#: ../../mod/invite.php:120 -#, php-format +#: ../../addon.old/dav/friendica/main.php:350 +#: ../../addon/dav/friendica/main.php:350 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." +"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/invite.php:122 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." +#: ../../addon.old/dav/friendica/main.php:355 +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "Rozwiązywanie problemów" + +#: ../../addon.old/dav/friendica/main.php:356 +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" 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." +#: ../../addon.old/dav/friendica/main.php:357 +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" msgstr "" -#: ../../mod/invite.php:126 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." +#: ../../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 "" -#: ../../mod/invite.php:132 -msgid "Send invitations" -msgstr "Wyślij zaproszenia" +#: ../../addon.old/drpost/drpost.php:94 +msgid "Drupal site URL" +msgstr "Adres strony Drupala" -#: ../../mod/invite.php:133 -msgid "Enter email addresses, one per line:" -msgstr "Wprowadź adresy email, jeden na linijkę:" - -#: ../../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." +#: ../../addon.old/drpost/drpost.php:99 +msgid "Drupal site uses clean URLS" msgstr "" -#: ../../mod/invite.php:137 -msgid "You will need to supply this invitation code: $invite_code" +#: ../../addon.old/drpost/drpost.php:104 +msgid "Post to Drupal by default" 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ą :" +#: ../../addon.old/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "Opublikuj na Dreamwidth" -#: ../../mod/invite.php:139 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendica.com" +#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" msgstr "" -#: ../../mod/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." +#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" msgstr "" -#: ../../mod/dfrn_confirm.php:237 -msgid "Response from remote site was not understood." -msgstr "Odpowiedź do zdalnej strony nie została zrozumiana" - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "Nieoczekiwana odpowiedź od strony zdalnej" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "Potwierdzenie ukończone poprawnie" - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "Zdalna strona zgłoszona:" - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później." - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "Nieudane lub unieważnione wprowadzenie." - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "Nie można ustawić zdjęcia kontaktu." - -#: ../../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" - -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nie znaleziono użytkownika dla '%s'" - -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "Klucz kodujący jest najwyraźniej zepsuty" - -#: ../../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." - -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "Nie znaleziono kontaktu na naszej stronie" - -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." +#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" 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/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/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/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "Połączenie zaakceptowane %s" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" +#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" msgstr "" -#: ../../addon/fromgplus/fromgplus.php:33 -#: ../../addon.old/fromgplus/fromgplus.php:29 -msgid "Google+ Import Settings" +#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" msgstr "" -#: ../../addon/fromgplus/fromgplus.php:36 -#: ../../addon.old/fromgplus/fromgplus.php:32 -msgid "Enable Google+ Import" +#: ../../addon.old/editplain/editplain.php:46 +#: ../../addon.old/group_text/group_text.php:46 +#: ../../addon/editplain/editplain.php:46 +msgid "Editplain settings updated." msgstr "" -#: ../../addon/fromgplus/fromgplus.php:39 -#: ../../addon.old/fromgplus/fromgplus.php:35 -msgid "Google Account ID" +#: ../../addon.old/editplain/editplain.php:76 +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" msgstr "" -#: ../../addon/fromgplus/fromgplus.php:59 -#: ../../addon.old/fromgplus/fromgplus.php:55 -msgid "Google+ Import Settings saved." +#: ../../addon.old/editplain/editplain.php:78 +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" msgstr "" -#: ../../addon/facebook/facebook.php:525 +#: ../../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." + #: ../../addon.old/facebook/facebook.php:523 +#: ../../addon/facebook/facebook.php:525 msgid "Facebook disabled" msgstr "Facebook wyłączony" -#: ../../addon/facebook/facebook.php:530 #: ../../addon.old/facebook/facebook.php:528 +#: ../../addon/facebook/facebook.php:530 msgid "Updating contacts" msgstr "Aktualizacja kontaktów" -#: ../../addon/facebook/facebook.php:553 ../../addon/fbpost/fbpost.php:203 #: ../../addon.old/facebook/facebook.php:551 -#: ../../addon.old/fbpost/fbpost.php:192 +#: ../../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." -#: ../../addon/facebook/facebook.php:560 #: ../../addon.old/facebook/facebook.php:558 +#: ../../addon/facebook/facebook.php:560 msgid "Facebook Connect" msgstr "Połącz konto z kontem Facebook" -#: ../../addon/facebook/facebook.php:566 #: ../../addon.old/facebook/facebook.php:564 +#: ../../addon/facebook/facebook.php:566 msgid "Install Facebook connector for this account." msgstr "Zainstaluj wtyczkę Facebook " -#: ../../addon/facebook/facebook.php:573 #: ../../addon.old/facebook/facebook.php:571 +#: ../../addon/facebook/facebook.php:573 msgid "Remove Facebook connector" msgstr "Usuń wtyczkę Facebook" -#: ../../addon/facebook/facebook.php:578 ../../addon/fbpost/fbpost.php:228 #: ../../addon.old/facebook/facebook.php:576 -#: ../../addon.old/fbpost/fbpost.php:217 +#: ../../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 "Ponowna autoryzacja [Jest wymagana jeśli twoje hasło do Facebooka jest zmienione]" -#: ../../addon/facebook/facebook.php:585 ../../addon/fbpost/fbpost.php:235 #: ../../addon.old/facebook/facebook.php:583 -#: ../../addon.old/fbpost/fbpost.php:224 +#: ../../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/facebook/facebook.php:591 #: ../../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 "" -#: ../../addon/facebook/facebook.php:595 #: ../../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 "" -#: ../../addon/facebook/facebook.php:598 #: ../../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" -#: ../../addon/facebook/facebook.php:600 #: ../../addon.old/facebook/facebook.php:598 +#: ../../addon/facebook/facebook.php:600 msgid "" "Facebook conversations consist of your profile wall and your friend" " stream." msgstr "" -#: ../../addon/facebook/facebook.php:601 #: ../../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 "" -#: ../../addon/facebook/facebook.php:602 #: ../../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 "" -#: ../../addon/facebook/facebook.php:606 #: ../../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 "" -#: ../../addon/facebook/facebook.php:611 #: ../../addon.old/facebook/facebook.php:609 +#: ../../addon/facebook/facebook.php:611 msgid "Do not import your Facebook profile wall conversations" msgstr "" -#: ../../addon/facebook/facebook.php:613 #: ../../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 " @@ -5250,166 +1339,165 @@ msgid "" "who may see the conversations." msgstr "" -#: ../../addon/facebook/facebook.php:618 #: ../../addon.old/facebook/facebook.php:616 +#: ../../addon/facebook/facebook.php:618 msgid "Comma separated applications to ignore" msgstr "" -#: ../../addon/facebook/facebook.php:702 #: ../../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" -#: ../../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 +#: ../../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/facebook/facebook.php:731 +#: ../../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" + #: ../../addon.old/facebook/facebook.php:729 +#: ../../addon/facebook/facebook.php:731 msgid "Facebook Connector Settings" msgstr "Ustawienia połączenia z Facebook" -#: ../../addon/facebook/facebook.php:746 ../../addon/fbpost/fbpost.php:310 #: ../../addon.old/facebook/facebook.php:744 -#: ../../addon.old/fbpost/fbpost.php:255 +#: ../../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/facebook/facebook.php:756 ../../addon/fbpost/fbpost.php:317 #: ../../addon.old/facebook/facebook.php:754 -#: ../../addon.old/fbpost/fbpost.php:262 +#: ../../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.

" msgstr "" -#: ../../addon/facebook/facebook.php:761 #: ../../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 "" -#: ../../addon/facebook/facebook.php:763 #: ../../addon.old/facebook/facebook.php:761 +#: ../../addon/facebook/facebook.php:763 msgid "The given API Key seems to work correctly." msgstr "" -#: ../../addon/facebook/facebook.php:765 #: ../../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 "" -#: ../../addon/facebook/facebook.php:768 ../../addon/fbpost/fbpost.php:319 #: ../../addon.old/facebook/facebook.php:766 -#: ../../addon.old/fbpost/fbpost.php:264 +#: ../../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/facebook/facebook.php:769 ../../addon/fbpost/fbpost.php:320 #: ../../addon.old/facebook/facebook.php:767 -#: ../../addon.old/fbpost/fbpost.php:265 +#: ../../addon.old/fbpost/fbpost.php:265 ../../addon/facebook/facebook.php:769 +#: ../../addon/fbpost/fbpost.php:320 msgid "Application secret" msgstr "" -#: ../../addon/facebook/facebook.php:770 #: ../../addon.old/facebook/facebook.php:768 +#: ../../addon/facebook/facebook.php:770 #, php-format msgid "Polling Interval in minutes (minimum %1$s minutes)" msgstr "" -#: ../../addon/facebook/facebook.php:771 #: ../../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 "" -#: ../../addon/facebook/facebook.php:775 #: ../../addon.old/facebook/facebook.php:773 +#: ../../addon/facebook/facebook.php:775 msgid "Real-Time Updates" msgstr "Aktualizacje w czasie rzeczywistym" -#: ../../addon/facebook/facebook.php:779 #: ../../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/facebook/facebook.php:780 #: ../../addon.old/facebook/facebook.php:778 +#: ../../addon/facebook/facebook.php:780 msgid "Deactivate Real-Time Updates" msgstr "Zdezaktywuj aktualizacje w czasie rzeczywistym" -#: ../../addon/facebook/facebook.php:782 #: ../../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/facebook/facebook.php:782 #: ../../addon.old/facebook/facebook.php:780 +#: ../../addon/facebook/facebook.php:782 msgid "Activate Real-Time Updates" msgstr "Aktywuj aktualizacje w czasie rzeczywistym" -#: ../../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 "" - -#: ../../addon/facebook/facebook.php:825 ../../addon/fbpost/fbpost.php:356 #: ../../addon.old/facebook/facebook.php:823 -#: ../../addon.old/fbpost/fbpost.php:301 +#: ../../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/facebook/facebook.php:923 ../../addon/fbpost/fbpost.php:487 #: ../../addon.old/facebook/facebook.php:921 -#: ../../addon.old/fbpost/fbpost.php:399 +#: ../../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 "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci" -#: ../../addon/facebook/facebook.php:1151 ../../addon/fbpost/fbpost.php:766 #: ../../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/facebook/facebook.php:1184 ../../addon/fbpost/fbpost.php:803 #: ../../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 "" -#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:843 #: ../../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 "" -#: ../../addon/facebook/facebook.php:1225 ../../addon/fbpost/fbpost.php:844 #: ../../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/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845 #: ../../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" @@ -5417,62 +1505,1630 @@ msgid "" "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 "" -#: ../../addon/snautofollow/snautofollow.php:32 -#: ../../addon.old/snautofollow/snautofollow.php:32 -msgid "StatusNet AutoFollow settings updated." -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:56 -#: ../../addon.old/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "" - -#: ../../addon/snautofollow/snautofollow.php:58 -#: ../../addon.old/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -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 "" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:356 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 -msgid "Cache Statistics" -msgstr "" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172 +#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183 msgid "Facebook Post disabled" msgstr "" -#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199 +#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210 msgid "Facebook Post" msgstr "Wpis z Facebooka" -#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205 +#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216 msgid "Install Facebook Post connector for this account." msgstr "" -#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212 +#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223 msgid "Remove Facebook Post connector" msgstr "" +#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295 +msgid "Facebook Post Settings" +msgstr "Ustawienia wpisu z Facebooka" + +#: ../../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" + +#: ../../addon.old/forumlist/forumlist.php:63 +#: ../../addon/forumlist/forumlist.php:67 +msgid "show/hide" +msgstr "pokaż/ukryj" + +#: ../../addon.old/forumlist/forumlist.php:77 +#: ../../addon/forumlist/forumlist.php:81 +msgid "No forum subscriptions" +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 "" + +#: ../../addon.old/forumlist/forumlist.php:131 +#: ../../addon/forumlist/forumlist.php:134 +msgid "Forumlist settings updated." +msgstr "" + +#: ../../addon.old/forumlist/forumlist.php:159 +#: ../../addon/forumlist/forumlist.php:162 +msgid "Forumlist Settings" +msgstr "" + +#: ../../addon.old/forumlist/forumlist.php:161 +#: ../../addon/forumlist/forumlist.php:164 +msgid "Randomise forum list" +msgstr "" + +#: ../../addon.old/forumlist/forumlist.php:164 +#: ../../addon/forumlist/forumlist.php:167 +msgid "Show forums on profile page" +msgstr "" + +#: ../../addon.old/forumlist/forumlist.php:167 +#: ../../addon/forumlist/forumlist.php:170 +msgid "Show forums on network page" +msgstr "" + +#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "" + +#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +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 "" + +#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "" + +#: ../../addon.old/fromgplus/fromgplus.php:29 +#: ../../addon/fromgplus/fromgplus.php:33 +msgid "Google+ Import Settings" +msgstr "" + +#: ../../addon.old/fromgplus/fromgplus.php:32 +#: ../../addon/fromgplus/fromgplus.php:36 +msgid "Enable Google+ Import" +msgstr "" + +#: ../../addon.old/fromgplus/fromgplus.php:35 +#: ../../addon/fromgplus/fromgplus.php:39 +msgid "Google Account ID" +msgstr "" + +#: ../../addon.old/fromgplus/fromgplus.php:55 +#: ../../addon/fromgplus/fromgplus.php:59 +msgid "Google+ Import Settings saved." +msgstr "" + +#: ../../addon.old/geonames/geonames.php:143 +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "" + +#: ../../addon.old/geonames/geonames.php:179 +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "ustawienia Geonames" + +#: ../../addon.old/geonames/geonames.php:181 +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "" + +#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "" + +#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +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 "" + +#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +msgstr "Umożliwić tego plugina/wtyczkę?" + +#: ../../addon.old/gnot/gnot.php:97 ../../addon/gnot/gnot.php:97 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%d" +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 "generuj obraz profilowy" + +#: ../../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" + +#: ../../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" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +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 "Domyślny awatar" + +#: ../../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 "" + +#: ../../addon.old/gravatar/gravatar.php:97 +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +msgstr "" + +#: ../../addon.old/gravatar/gravatar.php:97 +#: ../../addon/gravatar/gravatar.php:97 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon.old/gravatar/gravatar.php:111 +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "Zaktualizowane ustawienie Gravatara" + +#: ../../addon.old/group_text/group_text.php:76 +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +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 "" + +#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "Opublikuj na Insanejournal" + +#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "" + +#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "" + +#: ../../addon.old/impressum/impressum.php:37 +#: ../../addon/impressum/impressum.php:37 +msgid "Impressum" +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 "Właściciel strony" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/impressum/impressum.php:61 +#: ../../addon/impressum/impressum.php:61 +msgid "" +"The impressum addon needs to be configured!
Please add at least the " +"owner variable to your config file. For other variables please " +"refer to the README file of the addon." +msgstr "" + +#: ../../addon.old/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "" + +#: ../../addon.old/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:85 +msgid "Site Owners Profile" +msgstr "Profil właściciela strony" + +#: ../../addon.old/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +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 "" + +#: ../../addon.old/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:87 +msgid "Notes" +msgstr "Notatki" + +#: ../../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 "" + +#: ../../addon.old/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "" + +#: ../../addon.old/impressum/impressum.php:89 +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "Notka w stopce" + +#: ../../addon.old/impressum/impressum.php:89 +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "" + +#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "" + +#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "Ustawienia IRC" + +#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "" + +#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "" + +#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "Zapisano ustawienia IRC." + +#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "IRC Chatroom" + +#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "Popularne kanały" + +#: ../../addon.old/jappixmini/jappixmini.php:266 +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:268 +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:271 +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "" + +#: ../../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 "" + +#: ../../addon.old/jappixmini/jappixmini.php:281 +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:285 +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "Hasło Jabber" + +#: ../../addon.old/jappixmini/jappixmini.php:290 +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:293 +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "Hasło Friendica" + +#: ../../addon.old/jappixmini/jappixmini.php:296 +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:299 +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:302 +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" + +#: ../../addon.old/jappixmini/jappixmini.php:308 +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "Dodaj kontakt" + +#: ../../addon.old/js_upload/js_upload.php:43 +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "Załaduj plik" + +#: ../../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ć" + +#: ../../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" + +#: ../../addon.old/js_upload/js_upload.php:46 +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "Niepowodzenie" + +#: ../../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." + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../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." + +#: ../../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 "" + +#: ../../addon.old/libertree/libertree.php:74 +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:79 +#: ../../addon/libertree/libertree.php:79 +msgid "Libertree site URL" +msgstr "" + +#: ../../addon.old/libertree/libertree.php:84 +#: ../../addon/libertree/libertree.php:84 +msgid "Post to Libertree by default" +msgstr "" + +#: ../../addon.old/libravatar/libravatar.php:14 +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" +msgstr "" + +#: ../../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 "" + +#: ../../addon.old/libravatar/libravatar.php:84 +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "" + +#: ../../addon.old/libravatar/libravatar.php:93 +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "" + +#: ../../addon.old/libravatar/libravatar.php:100 +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "" + +#: ../../addon.old/libravatar/libravatar.php:112 +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "Post do LiveJournal" + +#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "Ustawienia postów do LiveJournal" + +#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "" + +#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "Nazwa użytkownika do LiveJournal" + +#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "Hasło do LiveJournal" + +#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "automatycznie publikuj na LiveJournal" + +#: ../../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 "" + +#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75 +msgid "MathJax Base URL" +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 "" + +#: ../../addon.old/membersince/membersince.php:18 +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "Data dołączenia:" + +#: ../../addon.old/morepokes/morepokes.php:19 +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:19 +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:20 +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:20 +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:21 +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:21 +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:22 +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:22 +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:23 +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:23 +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:24 +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:24 +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:25 +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:25 +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +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 "" + +#: ../../addon.old/morepokes/morepokes.php:26 +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "przytul" + +#: ../../addon.old/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "przytulony" + +#: ../../addon.old/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "pocałuj" + +#: ../../addon.old/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "pocałowany" + +#: ../../addon.old/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "" + +#: ../../addon.old/morepokes/morepokes.php:35 +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "" + +#: ../../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 "" + +#: ../../addon.old/morepokes/morepokes.php:36 +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "" + +#: ../../addon.old/notimeline/notimeline.php:32 +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "" + +#: ../../addon.old/notimeline/notimeline.php:56 +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "Brak ustawień Osi czasu" + +#: ../../addon.old/notimeline/notimeline.php:58 +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +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 "" + +#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "" + +#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "NSFW Ustawienia zapisane." + +#: ../../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ąć" + +#: ../../addon.old/numfriends/numfriends.php:46 +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "" + +#: ../../addon.old/numfriends/numfriends.php:77 +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +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/openstreetmap/openstreetmap.php:71 +#: ../../addon/openstreetmap/openstreetmap.php:95 +msgid "Tile Server URL" +msgstr "Nazwa URL Serwera" + +#: ../../addon.old/openstreetmap/openstreetmap.php:71 +#: ../../addon/openstreetmap/openstreetmap.php:95 +msgid "" +"A list of public tile servers" +msgstr "" + +#: ../../addon.old/openstreetmap/openstreetmap.php:72 +#: ../../addon/openstreetmap/openstreetmap.php:96 +msgid "Default zoom" +msgstr "Domyślne przybliżenie" + +#: ../../addon.old/openstreetmap/openstreetmap.php:72 +#: ../../addon/openstreetmap/openstreetmap.php:96 +msgid "The default zoom level. (1:world, 18:highest)" +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 "Pokaż więcej" + +#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166 +msgid "Page settings updated." +msgstr "Zaktualizowano ustawienia strony." + +#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195 +msgid "Page Settings" +msgstr "Ustawienia strony" + +#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197 +msgid "How many forums to display on sidebar without paging" +msgstr "" + +#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200 +msgid "Randomise Page/Forum list" +msgstr "" + +#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203 +msgid "Show pages/forums on profile page" +msgstr "" + +#: ../../addon.old/pageheader/pageheader.php:50 +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "" + +#: ../../addon.old/pageheader/pageheader.php:68 +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "" + +#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +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 can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "" + +#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "Piwik podstawowy adres 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 "" + +#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "ID strony" + +#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr "" + +#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "" + +#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "Ustawienia Planets" + +#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "" + +#: ../../addon.old/posterous/posterous.php:37 +#: ../../addon/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "" + +#: ../../addon.old/posterous/posterous.php:70 +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "" + +#: ../../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 "" + +#: ../../addon.old/posterous/posterous.php:92 +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "" + +#: ../../addon.old/posterous/posterous.php:97 +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +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 "" + +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:356 +msgid "Cache Statistics" +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 "Numery elementów" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../addon.old/public_server/public_server.php:127 +#: ../../addon/public_server/public_server.php:127 +msgid "Your Friendica account is about to expire." +msgstr "" + +#: ../../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 "" + +#: ../../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 "Ustawienia szybkiego komentowania" + +#: ../../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 "" + +#: ../../addon.old/qcomment/qcomment.php:57 +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "" + +#: ../../addon.old/qcomment/qcomment.php:75 +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "" + +#: ../../addon.old/randplace/randplace.php:169 +#: ../../addon/randplace/randplace.php:169 +msgid "Randplace Settings" +msgstr "Ustawienia Randplace" + +#: ../../addon.old/randplace/randplace.php:171 +#: ../../addon/randplace/randplace.php:171 +msgid "Enable Randplace Plugin" +msgstr "Włącz Randplace Plugin" + +#: ../../addon.old/showmore/showmore.php:38 +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "\"Pokaż więcej\" ustawień" + +#: ../../addon.old/showmore/showmore.php:41 +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "" + +#: ../../addon.old/showmore/showmore.php:44 +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "" + +#: ../../addon.old/showmore/showmore.php:65 +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "" + +#: ../../addon.old/snautofollow/snautofollow.php:32 +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "" + +#: ../../addon.old/snautofollow/snautofollow.php:56 +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "" + +#: ../../addon.old/snautofollow/snautofollow.php:58 +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "" + +#: ../../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 "" + +#: ../../addon.old/startpage/startpage.php:88 +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:134 +#: ../../addon/statusnet/statusnet.php:138 +msgid "Post to StatusNet" +msgstr "Wyślij do sieci StatusNet" + +#: ../../addon.old/statusnet/statusnet.php:176 +#: ../../addon/statusnet/statusnet.php:180 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "Proszę się skontaktować z administratorem strony.
API URL nie jest poprawne" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../addon.old/statusnet/statusnet.php:280 +#: ../../addon/statusnet/statusnet.php:292 +msgid "Provide your own OAuth Credentials" +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.
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 "" + +#: ../../addon.old/statusnet/statusnet.php:283 +#: ../../addon/statusnet/statusnet.php:295 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:286 +#: ../../addon/statusnet/statusnet.php:298 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:289 +#: ../../addon/statusnet/statusnet.php:301 +msgid "Base API Path (remember the trailing /)" +msgstr "" + +#: ../../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 public 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 publiczne posty będą publikowane na StatusNet." + +#: ../../addon.old/statusnet/statusnet.php:311 +#: ../../addon/statusnet/statusnet.php:323 +msgid "Log in with StatusNet" +msgstr "Zaloguj się przez StatusNet" + +#: ../../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" + +#: ../../addon.old/statusnet/statusnet.php:319 +#: ../../addon/statusnet/statusnet.php:331 +msgid "Cancel Connection Process" +msgstr "Anuluj proces łączenia" + +#: ../../addon.old/statusnet/statusnet.php:321 +#: ../../addon/statusnet/statusnet.php:333 +msgid "Current StatusNet API is" +msgstr "Aktualnym StatusNet API jest" + +#: ../../addon.old/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:334 +msgid "Cancel StatusNet Connection" +msgstr "Anuluj połączenie 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 "Obecnie połączone z:" + +#: ../../addon.old/statusnet/statusnet.php:334 +#: ../../addon/statusnet/statusnet.php:346 +msgid "" +"If enabled all your public 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 "" + +#: ../../addon.old/statusnet/statusnet.php:336 +#: ../../addon/statusnet/statusnet.php:348 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) 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 "" + +#: ../../addon.old/statusnet/statusnet.php:339 +#: ../../addon/statusnet/statusnet.php:351 +msgid "Allow posting to StatusNet" +msgstr "Pozwól zamieszczać posty na StatusNet" + +#: ../../addon.old/statusnet/statusnet.php:342 +#: ../../addon/statusnet/statusnet.php:354 +msgid "Send public postings to StatusNet by default" +msgstr "" + +#: ../../addon.old/statusnet/statusnet.php:345 +#: ../../addon/statusnet/statusnet.php:366 +msgid "Send linked #-tags and @-names to StatusNet" +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 "" + +#: ../../addon.old/statusnet/statusnet.php:567 +#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484 +msgid "Site name" +msgstr "Nazwa strony" + +#: ../../addon.old/statusnet/statusnet.php:568 +#: ../../addon/statusnet/statusnet.php:745 +msgid "API URL" +msgstr "Adres API" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/testdrive/testdrive.php:95 +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +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 "" + +#: ../../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" + +#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "Kółko i krzyżyk 3D" + +#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58 +msgid "New game" +msgstr "Nowa gra" + +#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59 +msgid "New game with handicap" +msgstr "Nowa gra z utrudnieniem" + +#: ../../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 "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie." + +#: ../../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." + +#: ../../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 "" + +#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182 +msgid "You go first..." +msgstr "Ty pierwszy..." + +#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "Zaczynam..." + +#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193 +msgid "You won!" +msgstr "Wygrałeś!" + +#: ../../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\"!" + +#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222 +msgid "I won!" +msgstr "Wygrałem!" + +#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158 +msgid "Post to Tumblr" +msgstr "Opublikuj na Tumblrze" + +#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185 +msgid "Tumblr Post Settings" +msgstr "Ustawienia postu Tumblr" + +#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192 +msgid "Enable Tumblr Post Plugin" +msgstr "Zezwól na wtyczkę postu Tumblr" + +#: ../../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" + +#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197 +msgid "Post to Tumblr by default" +msgstr "Post do Tumblr przez standard" + +#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77 +msgid "Post to Twitter" +msgstr "Post na Twitter" + +#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129 +msgid "Twitter settings updated." +msgstr "Zaktualizowano ustawienia Twittera." + +#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157 +msgid "Twitter Posting Settings" +msgstr "Ustawienia wpisów z Twittera" + +#: ../../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 public posts will" +" be posted to Twitter." +msgstr "" + +#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184 +msgid "Log in with Twitter" +msgstr "Zaloguj się przez Twitter" + +#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186 +msgid "Copy the PIN from Twitter here" +msgstr "Skopiuj tutaj PIN z Twittera" + +#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201 +msgid "" +"If enabled all your public 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 "" + +#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) 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 "" + +#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206 +msgid "Allow posting to Twitter" +msgstr "Zezwól na opublikowanie w serwisie Twitter" + +#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209 +msgid "Send public postings to Twitter by default" +msgstr "" + +#: ../../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 "Klucz konsumenta" + +#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559 +msgid "Consumer secret" +msgstr "Sekret konsumenta" + +#: ../../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 RemoteStorage" +" WebFinger" +msgstr "" + +#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "" + +#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "" + +#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "Api" + +#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39 +msgid "View Source" +msgstr "Podgląd źródła" + +#: ../../addon.old/widgets/widget_friendheader.php:40 +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "Zostań dodany do listy!" + +#: ../../addon.old/widgets/widget_friends.php:40 +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "Połączono z Friendica!" + +#: ../../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" + +#: ../../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" + +#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57 +msgid "Generate new key" +msgstr "Stwórz nowy klucz" + +#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60 +msgid "Widgets key" +msgstr "" + +#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62 +msgid "Widgets available" +msgstr "Widgety są dostępne" + +#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124 +#: ../../mod/settings.php:646 +msgid "Plugin Settings" +msgstr "Ustawienia wtyczki" + +#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "Opublikuj na Wordpress" + +#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76 +msgid "WordPress Post Settings" +msgstr "Ustawienia wpisów WorldPress" + +#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78 +msgid "Enable WordPress Post Plugin" +msgstr "Włącz plugin wpisów WorldPress" + +#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83 +msgid "WordPress username" +msgstr "nazwa użytkownika WordPress" + +#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88 +msgid "WordPress password" +msgstr "hasło WordPress" + +#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93 +msgid "WordPress API URL" +msgstr "WordPress API URL" + +#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98 +msgid "Post to WordPress by default" +msgstr "Domyślnie opublikuj na Wordpress" + +#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "" + +#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "" + +#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "" + +#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "URL: http://" + +#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "Nazwa użytkownika:" + +#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "Hasło:" + +#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "Użyj SSL" + +#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "" + +#: ../../addon/altpager/altpager.php:99 +#: ../../addon/remote_permissions/remote_permissions.php:197 +msgid "Global" +msgstr "Ogólne" + +#: ../../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 "Indywidualne" + +#: ../../addon/altpager/altpager.php:100 +msgid "Each user chooses whether to use the alternate pager" +msgstr "" + #: ../../addon/fbpost/fbpost.php:239 msgid "Suppress \"View on friendica\"" msgstr "" @@ -5485,1219 +3141,92 @@ msgstr "" msgid "Post to page/group:" msgstr "Napisz na stronę/grupę:" -#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240 -msgid "Facebook Post Settings" -msgstr "Ustawienia wpisu z Facebooka" - #: ../../addon/fbpost/fbpost.php:375 #, php-format msgid "%s:" 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 osoba lubi to" -msgstr[1] " %d osób lubi to" -msgstr[2] " %d osób lubi to" - -#: ../../addon/widgets/widget_like.php:62 -#: ../../addon.old/widgets/widget_like.php:61 -#, 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" - -#: ../../addon/widgets/widget_friendheader.php:40 -#: ../../addon.old/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "Zostań dodany do listy!" - -#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56 -msgid "Generate new key" -msgstr "Stwórz nowy klucz" - -#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59 -msgid "Widgets key" -msgstr "" - -#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61 -msgid "Widgets available" -msgstr "Widgety są dostępne" - -#: ../../addon/widgets/widget_friends.php:40 -#: ../../addon.old/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "Połączono z Friendica!" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shag" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "do something obscenely biological to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "did something obscenely biological to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "point out the poke feature to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "pointed out the poke feature to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declare undying love for" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declared undying love for" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patent" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patented" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroke beard" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroked their beard at" -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 "" - -#: ../../addon/morepokes/morepokes.php:26 -#: ../../addon.old/morepokes/morepokes.php:26 -msgid "" -"bemoans the declining standards of modern secondary and tertiary education " -"to" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hug" -msgstr "przytul" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hugged" -msgstr "przytulony" - -#: ../../addon/morepokes/morepokes.php:28 -#: ../../addon.old/morepokes/morepokes.php:28 -msgid "kiss" -msgstr "pocałuj" - -#: ../../addon/morepokes/morepokes.php:28 -#: ../../addon.old/morepokes/morepokes.php:28 -msgid "kissed" -msgstr "pocałowany" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raise eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raised their eyebrows at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insult" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insulted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praise" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praised" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "be dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "was dubious of" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "eat" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "ate" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggle and fawn at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggled and fawned at" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubt" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubted" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glare" -msgstr "" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glared at" -msgstr "" - -#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "" - -#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "URL: http://" - -#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62 -msgid "Username:" -msgstr "Nazwa użytkownika:" - -#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67 -msgid "Password:" -msgstr "Hasło:" - -#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "Użyj SSL" - -#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "" - -#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39 -msgid "Post to LiveJournal" -msgstr "Post do LiveJournal" - -#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70 -msgid "LiveJournal Post Settings" -msgstr "Ustawienia postów do LiveJournal" - -#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "" - -#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "Nazwa użytkownika do LiveJournal" - -#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "Hasło do LiveJournal" - -#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "automatycznie publikuj na LiveJournal" - -#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78 -msgid "Not Safe For Work (General Purpose Content Filter) settings" -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." -msgstr "" - -#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81 -msgid "Enable Content filter" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84 -msgid "Comma separated list of keywords to hide" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89 -msgid "Use /expression/ to provide regular expressions" -msgstr "" - -#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105 -msgid "NSFW Settings saved." -msgstr "NSFW Ustawienia zapisane." - -#: ../../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ąć" - -#: ../../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" - -#: ../../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 "" - -#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166 -msgid "Page settings updated." -msgstr "Zaktualizowano ustawienia strony." - -#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195 -msgid "Page Settings" -msgstr "Ustawienia strony" - -#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197 -msgid "How many forums to display on sidebar without paging" -msgstr "" - -#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200 -msgid "Randomise Page/Forum list" -msgstr "" - -#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203 -msgid "Show pages/forums on profile page" -msgstr "" - -#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150 -msgid "Planets Settings" -msgstr "" - -#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "" - #: ../../addon/forumdirectory/forumdirectory.php:22 msgid "Forum Directory" msgstr "Katalog Forum" -#: ../../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" - -#: ../../addon/communityhome/communityhome.php:29 -#: ../../addon.old/communityhome/communityhome.php:29 -#: ../../addon.old/communityhome/twillingham/communityhome.php:29 -msgid "OpenID" -msgstr "OpenID" - -#: ../../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" - -#: ../../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" - -#: ../../addon/communityhome/communityhome.php:102 -#: ../../addon.old/communityhome/communityhome.php:98 -msgid "Latest photos" -msgstr "Ostatnie zdjęcia" - -#: ../../addon/communityhome/communityhome.php:141 -#: ../../addon.old/communityhome/communityhome.php:133 -msgid "Latest likes" -msgstr "Ostatnie polubienia" - -#: ../../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" - -#: ../../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" - -#: ../../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 "" - -#: ../../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" - -#: ../../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" - -#: ../../addon/dav/common/wdcal_edit.inc.php:163 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 -msgid "Special color" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:169 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 -msgid "Subject" -msgstr "Temat" - -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "Zaczyna się" - -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -msgstr "Kończy się" - -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "Opis" - -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -msgstr "często" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -msgstr "raz na rok" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "Interval" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "All %select% %time%" -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 "Dni" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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" - -#: ../../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:" - -#: ../../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" - -#: ../../addon/dav/common/wdcal_edit.inc.php:354 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:354 -msgid "#num#th of each month" -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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:413 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 -msgid "Repeat until" -msgstr "Powtarzaj do" - -#: ../../addon/dav/common/wdcal_edit.inc.php:417 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 -msgid "Infinite" -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" - -#: ../../addon/dav/common/wdcal_edit.inc.php:423 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 -msgid "Number of times" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:429 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 -msgid "Exceptions" -msgstr "Wyjątki" - -#: ../../addon/dav/common/wdcal_edit.inc.php:432 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 -msgid "none" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:449 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 -msgid "Notification" -msgstr "Powiadomienie" - -#: ../../addon/dav/common/wdcal_edit.inc.php:466 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 -msgid "Notify by" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "E-Mail" - -#: ../../addon/dav/common/wdcal_edit.inc.php:470 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 -msgid "On Friendica / Display" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "Godzin" - -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "Minut" - -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:485 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 -msgid "before the" -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" - -#: ../../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" - -#: ../../addon/dav/common/wdcal_edit.inc.php:492 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 -msgid "Add a notification" -msgstr "Dodaj powiadomienie" - -#: ../../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 "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:696 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:696 -msgid "#name# is about to begin." -msgstr "" - -#: ../../addon/dav/common/wdcal_edit.inc.php:769 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 -msgid "Saved" -msgstr "Zapisano" - -#: ../../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)" - -#: ../../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)" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon/dav/friendica/layout.fnk.php:134 -#: ../../addon.old/dav/friendica/layout.fnk.php:134 -msgid "The ICS-File has been imported." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:138 -#: ../../addon.old/dav/friendica/layout.fnk.php:138 -msgid "No file was uploaded." -msgstr "Nie wgrano pliku." - -#: ../../addon/dav/friendica/layout.fnk.php:147 -#: ../../addon.old/dav/friendica/layout.fnk.php:147 -msgid "Import a ICS-file" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:150 -#: ../../addon.old/dav/friendica/layout.fnk.php:150 -msgid "ICS-File" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:151 -#: ../../addon.old/dav/friendica/layout.fnk.php:151 -msgid "Overwrite all #num# existing events" -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:228 -#: ../../addon.old/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "Nowe wydarzenie" - -#: ../../addon/dav/friendica/layout.fnk.php:232 -#: ../../addon.old/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "Dzisiaj" - -#: ../../addon/dav/friendica/layout.fnk.php:241 -#: ../../addon.old/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "Dzień" - -#: ../../addon/dav/friendica/layout.fnk.php:248 -#: ../../addon.old/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "Tydzień" - -#: ../../addon/dav/friendica/layout.fnk.php:260 -#: ../../addon.old/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "Załaduj ponownie" - -#: ../../addon/dav/friendica/layout.fnk.php:271 -#: ../../addon.old/dav/friendica/layout.fnk.php:271 -msgid "Date" -msgstr "Data" - -#: ../../addon/dav/friendica/layout.fnk.php:313 -#: ../../addon.old/dav/friendica/layout.fnk.php:313 -msgid "Error" -msgstr "Błąd" - -#: ../../addon/dav/friendica/layout.fnk.php:380 -#: ../../addon.old/dav/friendica/layout.fnk.php:380 -msgid "The calendar has been updated." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:393 -#: ../../addon.old/dav/friendica/layout.fnk.php:393 -msgid "The new calendar has been created." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:417 -#: ../../addon.old/dav/friendica/layout.fnk.php:417 -msgid "The calendar has been deleted." -msgstr "" - -#: ../../addon/dav/friendica/layout.fnk.php:424 -#: ../../addon.old/dav/friendica/layout.fnk.php:424 -msgid "Calendar Settings" -msgstr "Ustawienia kalendarza" - -#: ../../addon/dav/friendica/layout.fnk.php:430 -#: ../../addon.old/dav/friendica/layout.fnk.php:430 -msgid "Date format" -msgstr "Format daty" - -#: ../../addon/dav/friendica/layout.fnk.php:439 -#: ../../addon.old/dav/friendica/layout.fnk.php:439 -msgid "Time zone" -msgstr "Strefa czasowa" - -#: ../../addon/dav/friendica/layout.fnk.php:445 -#: ../../addon.old/dav/friendica/layout.fnk.php:445 -msgid "Calendars" -msgstr "Kalendarze" - -#: ../../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" - -#: ../../addon/dav/friendica/layout.fnk.php:496 -#: ../../addon.old/dav/friendica/layout.fnk.php:496 -msgid "Limitations" -msgstr "Ograniczenie" - -#: ../../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" - -#: ../../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, ...)" - -#: ../../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" - -#: ../../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" - -#: ../../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 "" - -#: ../../addon/dav/friendica/main.php:242 -#: ../../addon.old/dav/friendica/main.php:242 -msgid "Extended calendar with CalDAV-support" -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 "brak odpowiedzi" - -#: ../../addon/dav/friendica/main.php:282 -#: ../../addon.old/dav/friendica/main.php:282 -msgid "Notification: " -msgstr "Potwierdzeni:" - -#: ../../addon/dav/friendica/main.php:309 -#: ../../addon.old/dav/friendica/main.php:309 -msgid "The database tables have been installed." -msgstr "" - -#: ../../addon/dav/friendica/main.php:310 -#: ../../addon.old/dav/friendica/main.php:310 -msgid "An error occurred during the installation." -msgstr "" - -#: ../../addon/dav/friendica/main.php:316 -#: ../../addon.old/dav/friendica/main.php:316 -msgid "The database tables have been updated." -msgstr "" - -#: ../../addon/dav/friendica/main.php:317 -#: ../../addon.old/dav/friendica/main.php:317 -msgid "An error occurred during the update." -msgstr "" - -#: ../../addon/dav/friendica/main.php:333 -#: ../../addon.old/dav/friendica/main.php:333 -msgid "No system-wide settings yet." -msgstr "" - -#: ../../addon/dav/friendica/main.php:336 -#: ../../addon.old/dav/friendica/main.php:336 -msgid "Database status" -msgstr "" - -#: ../../addon/dav/friendica/main.php:339 -#: ../../addon.old/dav/friendica/main.php:339 -msgid "Installed" -msgstr "Zainstalowany" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade needed" -msgstr "Wymaga uaktualnienia" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "" -"Please back up all calendar data (the tables beginning with dav_*) before " -"proceeding. While all calendar events should 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 "" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade" -msgstr "Uaktualnienie" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Not installed" -msgstr "Nie zainstalowany" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Install" -msgstr "Zainstaluj" - -#: ../../addon/dav/friendica/main.php:350 -#: ../../addon.old/dav/friendica/main.php:350 -msgid "Unknown" -msgstr "Nieznany" - -#: ../../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 "" - -#: ../../addon/dav/friendica/main.php:355 -#: ../../addon.old/dav/friendica/main.php:355 -msgid "Troubleshooting" -msgstr "Rozwiązywanie problemów" - -#: ../../addon/dav/friendica/main.php:356 -#: ../../addon.old/dav/friendica/main.php:356 -msgid "Manual creation of the database tables:" -msgstr "" - -#: ../../addon/dav/friendica/main.php:357 -#: ../../addon.old/dav/friendica/main.php:357 -msgid "Show SQL-statements" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 -msgid "Private Calendar" -msgstr "Kalendarz prywatny" - -#: ../../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" - -#: ../../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" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 -msgid "Private Addresses" -msgstr "" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 -msgid "Friendica Contacts" -msgstr "Kontakty Friendica" - -#: ../../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 RemoteStorage" -" WebFinger" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "" - -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "Api" - -#: ../../addon/membersince/membersince.php:18 -#: ../../addon.old/membersince/membersince.php:18 -msgid "Member since:" -msgstr "Data dołączenia:" - -#: ../../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" - -#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "Kółko i krzyżyk 3D" - -#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58 -msgid "New game" -msgstr "Nowa gra" - -#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "Nowa gra z utrudnieniem" - -#: ../../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." - -#: ../../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." - -#: ../../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 "" - -#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182 -msgid "You go first..." -msgstr "Ty pierwszy..." - -#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187 -msgid "I'm going first this time..." -msgstr "Zaczynam..." - -#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193 -msgid "You won!" -msgstr "Wygrałeś!" - -#: ../../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\"!" - -#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222 -msgid "I won!" -msgstr "Wygrałem!" - -#: ../../addon/randplace/randplace.php:169 -#: ../../addon.old/randplace/randplace.php:169 -msgid "Randplace Settings" -msgstr "Ustawienia Randplace" - -#: ../../addon/randplace/randplace.php:171 -#: ../../addon.old/randplace/randplace.php:171 -msgid "Enable Randplace Plugin" -msgstr "Włącz Randplace Plugin" - -#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39 -msgid "Post to Dreamwidth" -msgstr "Opublikuj na Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70 -msgid "Dreamwidth Post Settings" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72 -msgid "Enable dreamwidth Post Plugin" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77 -msgid "dreamwidth username" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82 -msgid "dreamwidth password" -msgstr "" - -#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87 -msgid "Post to dreamwidth by default" +#: ../../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" + +#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49 +#: ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "Globalne Położenie" + +#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "Znajdź na tej stronie" + +#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612 +#: ../../mod/directory.php:59 +msgid "Finding: " +msgstr "Znalezione:" + +#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "Katalog Strony" + +#: ../../addon/forumdirectory/forumdirectory.php:83 +#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 +msgid "Find" +msgstr "Znajdź" + +#: ../../addon/forumdirectory/forumdirectory.php:133 +#: ../../mod/profiles.php:682 ../../mod/directory.php:111 +msgid "Age: " +msgstr "Wiek: " + +#: ../../addon/forumdirectory/forumdirectory.php:136 +#: ../../mod/directory.php:114 +msgid "Gender: " +msgstr "Płeć: " + +#: ../../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" + +#: ../../addon/forumdirectory/forumdirectory.php:158 +#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 +#: ../../boot.php:1408 +msgid "Gender:" +msgstr "Płeć:" + +#: ../../addon/forumdirectory/forumdirectory.php:160 +#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 +#: ../../boot.php:1411 +msgid "Status:" +msgstr "Status" + +#: ../../addon/forumdirectory/forumdirectory.php:162 +#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 +#: ../../boot.php:1413 +msgid "Homepage:" +msgstr "Strona główna:" + +#: ../../addon/forumdirectory/forumdirectory.php:164 +#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 +msgid "About:" +msgstr "O:" + +#: ../../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 "" #: ../../addon/remote_permissions/remote_permissions.php:45 @@ -6714,6 +3243,11 @@ msgstr "" msgid "Remote Permissions settings updated." msgstr "" +#: ../../addon/remote_permissions/remote_permissions.php:124 +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "Widoczne dla:" + #: ../../addon/remote_permissions/remote_permissions.php:178 msgid "Visible to" msgstr "Widoczne dla" @@ -6722,806 +3256,14 @@ msgstr "Widoczne dla" msgid "may only be a partial list" msgstr "" -#: ../../addon/remote_permissions/remote_permissions.php:197 -#: ../../addon/altpager/altpager.php:99 -msgid "Global" -msgstr "Ogólne" - #: ../../addon/remote_permissions/remote_permissions.php:197 msgid "The posts of every user on this server show the post recipients" msgstr "" -#: ../../addon/remote_permissions/remote_permissions.php:198 -#: ../../addon/altpager/altpager.php:100 -msgid "Individual" -msgstr "Indywidualne" - #: ../../addon/remote_permissions/remote_permissions.php:198 msgid "Each user chooses whether his/her posts show the post recipients" msgstr "" -#: ../../addon/startpage/startpage.php:83 -#: ../../addon.old/startpage/startpage.php:83 -msgid "Startpage Settings" -msgstr "Ustawienia strony startowej" - -#: ../../addon/startpage/startpage.php:85 -#: ../../addon.old/startpage/startpage.php:85 -msgid "Home page to load after login - leave blank for profile wall" -msgstr "" - -#: ../../addon/startpage/startpage.php:88 -#: ../../addon.old/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "" - -#: ../../addon/geonames/geonames.php:143 -#: ../../addon.old/geonames/geonames.php:143 -msgid "Geonames settings updated." -msgstr "" - -#: ../../addon/geonames/geonames.php:179 -#: ../../addon.old/geonames/geonames.php:179 -msgid "Geonames Settings" -msgstr "ustawienia Geonames" - -#: ../../addon/geonames/geonames.php:181 -#: ../../addon.old/geonames/geonames.php:181 -msgid "Enable Geonames Plugin" -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 "" - -#: ../../addon/public_server/public_server.php:127 -#: ../../addon.old/public_server/public_server.php:127 -msgid "Your Friendica account is about to expire." -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 "" - -#: ../../addon/js_upload/js_upload.php:43 -#: ../../addon.old/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "Załaduj plik" - -#: ../../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ć" - -#: ../../addon/js_upload/js_upload.php:46 -#: ../../addon.old/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "Niepowodzenie" - -#: ../../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." - -#: ../../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" - -#: ../../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" - -#: ../../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." - -#: ../../addon/forumlist/forumlist.php:67 -#: ../../addon.old/forumlist/forumlist.php:63 -msgid "show/hide" -msgstr "pokaż/ukryj" - -#: ../../addon/forumlist/forumlist.php:81 -#: ../../addon.old/forumlist/forumlist.php:77 -msgid "No forum subscriptions" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:134 -#: ../../addon.old/forumlist/forumlist.php:131 -msgid "Forumlist settings updated." -msgstr "" - -#: ../../addon/forumlist/forumlist.php:162 -#: ../../addon.old/forumlist/forumlist.php:159 -msgid "Forumlist Settings" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:164 -#: ../../addon.old/forumlist/forumlist.php:161 -msgid "Randomise forum list" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:167 -#: ../../addon.old/forumlist/forumlist.php:164 -msgid "Show forums on profile page" -msgstr "" - -#: ../../addon/forumlist/forumlist.php:170 -#: ../../addon.old/forumlist/forumlist.php:167 -msgid "Show forums on network page" -msgstr "" - -#: ../../addon/impressum/impressum.php:37 -#: ../../addon.old/impressum/impressum.php:37 -msgid "Impressum" -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 "Właściciel strony" - -#: ../../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" - -#: ../../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" - -#: ../../addon/impressum/impressum.php:61 -#: ../../addon.old/impressum/impressum.php:61 -msgid "" -"The impressum addon needs to be configured!
Please add at least the " -"owner variable to your config file. For other variables please " -"refer to the README file of the addon." -msgstr "" - -#: ../../addon/impressum/impressum.php:84 -#: ../../addon.old/impressum/impressum.php:84 -msgid "The page operators name." -msgstr "" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Site Owners Profile" -msgstr "Profil właściciela strony" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Profile address of the operator." -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 "" - -#: ../../addon/impressum/impressum.php:87 -#: ../../addon.old/impressum/impressum.php:87 -msgid "Notes" -msgstr "Notatki" - -#: ../../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 "" - -#: ../../addon/impressum/impressum.php:88 -#: ../../addon.old/impressum/impressum.php:88 -msgid "How to contact the operator via email. (will be displayed obfuscated)" -msgstr "" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Footer note" -msgstr "Notka w stopce" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Text for the footer. You can use BBCode here." -msgstr "" - -#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "Zgłoś problem" - -#: ../../addon/notimeline/notimeline.php:32 -#: ../../addon.old/notimeline/notimeline.php:32 -msgid "No Timeline settings updated." -msgstr "" - -#: ../../addon/notimeline/notimeline.php:56 -#: ../../addon.old/notimeline/notimeline.php:56 -msgid "No Timeline Settings" -msgstr "Brak ustawień Osi czasu" - -#: ../../addon/notimeline/notimeline.php:58 -#: ../../addon.old/notimeline/notimeline.php:58 -msgid "Disable Archive selector on profile wall" -msgstr "" - -#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "" - -#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53 -msgid "Comma separated profile URLS to block" -msgstr "" - -#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "" - -#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105 -#, php-format -msgid "Blocked %s - Click to open/close" -msgstr "" - -#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "Odblokuj autora" - -#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162 -msgid "Block Author" -msgstr "Zablokuj autora" - -#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-)" -msgstr ":-)" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-(" -msgstr ":-(" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid "lol" -msgstr "lol" - -#: ../../addon/qcomment/qcomment.php:54 -#: ../../addon.old/qcomment/qcomment.php:54 -msgid "Quick Comment Settings" -msgstr "Ustawienia szybkiego komentowania" - -#: ../../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 "" - -#: ../../addon/qcomment/qcomment.php:57 -#: ../../addon.old/qcomment/qcomment.php:57 -msgid "Enter quick comments, one per line" -msgstr "" - -#: ../../addon/qcomment/qcomment.php:75 -#: ../../addon.old/qcomment/qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:95 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "Tile Server URL" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:95 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "" -"A list of public tile servers" -msgstr "" - -#: ../../addon/openstreetmap/openstreetmap.php:96 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "Default zoom" -msgstr "Domyślne przybliżenie" - -#: ../../addon/openstreetmap/openstreetmap.php:96 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "The default zoom level. (1:world, 18:highest)" -msgstr "" - -#: ../../addon/group_text/group_text.php:46 -msgid "Group Text settings updated." -msgstr "" - -#: ../../addon/group_text/group_text.php:76 -#: ../../addon.old/group_text/group_text.php:76 -msgid "Group Text" -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 "" - -#: ../../addon/libravatar/libravatar.php:14 -#: ../../addon.old/libravatar/libravatar.php:14 -msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" -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 "generuj obraz profilowy" - -#: ../../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" - -#: ../../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" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../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 "" - -#: ../../addon/libravatar/libravatar.php:84 -#: ../../addon.old/libravatar/libravatar.php:84 -msgid "This addon is not functional on your server." -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 "" - -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon.old/libravatar/libravatar.php:93 -msgid "" -"Gravatar addon is installed. Please disable the Gravatar addon.
The " -"Libravatar addon will fall back to Gravatar if nothing was found at " -"Libravatar." -msgstr "" - -#: ../../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" - -#: ../../addon/libravatar/libravatar.php:100 -#: ../../addon.old/libravatar/libravatar.php:100 -msgid "Select default avatar image if none was found. See README" -msgstr "" - -#: ../../addon/libravatar/libravatar.php:112 -#: ../../addon.old/libravatar/libravatar.php:112 -msgid "Libravatar settings updated." -msgstr "" - -#: ../../addon/libertree/libertree.php:36 -#: ../../addon.old/libertree/libertree.php:36 -msgid "Post to libertree" -msgstr "" - -#: ../../addon/libertree/libertree.php:67 -#: ../../addon.old/libertree/libertree.php:67 -msgid "libertree Post Settings" -msgstr "" - -#: ../../addon/libertree/libertree.php:69 -#: ../../addon.old/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "" - -#: ../../addon/libertree/libertree.php:74 -#: ../../addon.old/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "" - -#: ../../addon/libertree/libertree.php:79 -#: ../../addon.old/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "" - -#: ../../addon/libertree/libertree.php:84 -#: ../../addon.old/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "" - -#: ../../addon/altpager/altpager.php:46 -#: ../../addon.old/altpager/altpager.php:46 -msgid "Altpager settings updated." -msgstr "" - -#: ../../addon/altpager/altpager.php:83 -#: ../../addon.old/altpager/altpager.php:79 -msgid "Alternate Pagination Setting" -msgstr "" - -#: ../../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 "" - -#: ../../addon/altpager/altpager.php:99 -msgid "Force global use of the alternate pager" -msgstr "" - -#: ../../addon/altpager/altpager.php:100 -msgid "Each user chooses whether to use the alternate pager" -msgstr "" - -#: ../../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 "" - -#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38 -msgid "Use the MathJax renderer" -msgstr "" - -#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74 -msgid "MathJax Base URL" -msgstr "" - -#: ../../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 "" - -#: ../../addon/editplain/editplain.php:46 -#: ../../addon.old/group_text/group_text.php:46 -#: ../../addon.old/editplain/editplain.php:46 -msgid "Editplain settings updated." -msgstr "" - -#: ../../addon/editplain/editplain.php:76 -#: ../../addon.old/editplain/editplain.php:76 -msgid "Editplain Settings" -msgstr "" - -#: ../../addon/editplain/editplain.php:78 -#: ../../addon.old/editplain/editplain.php:78 -msgid "Disable richtext status editor" -msgstr "" - -#: ../../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.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -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 "" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Rating of images" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Select the appropriate avatar rating for your site. See README" -msgstr "" - -#: ../../addon/gravatar/gravatar.php:111 -#: ../../addon.old/gravatar/gravatar.php:111 -msgid "Gravatar settings updated." -msgstr "Zaktualizowane ustawienie Gravatara" - -#: ../../addon/testdrive/testdrive.php:95 -#: ../../addon.old/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -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 "" - -#: ../../addon/pageheader/pageheader.php:50 -#: ../../addon.old/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "" - -#: ../../addon/pageheader/pageheader.php:68 -#: ../../addon.old/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "" - -#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39 -msgid "Post to Insanejournal" -msgstr "Opublikuj na Insanejournal" - -#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70 -msgid "InsaneJournal Post Settings" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72 -msgid "Enable InsaneJournal Post Plugin" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82 -msgid "InsaneJournal password" -msgstr "" - -#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87 -msgid "Post to InsaneJournal by default" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:266 -#: ../../addon.old/jappixmini/jappixmini.php:266 -msgid "Jappix Mini addon settings" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:268 -#: ../../addon.old/jappixmini/jappixmini.php:268 -msgid "Activate addon" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:271 -#: ../../addon.old/jappixmini/jappixmini.php:271 -msgid "" -"Do not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:274 -#: ../../addon.old/jappixmini/jappixmini.php:274 -msgid "Jabber username" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:277 -#: ../../addon.old/jappixmini/jappixmini.php:277 -msgid "Jabber server" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:281 -#: ../../addon.old/jappixmini/jappixmini.php:281 -msgid "Jabber BOSH host" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:285 -#: ../../addon.old/jappixmini/jappixmini.php:285 -msgid "Jabber password" -msgstr "Hasło Jabber" - -#: ../../addon/jappixmini/jappixmini.php:290 -#: ../../addon.old/jappixmini/jappixmini.php:290 -msgid "Encrypt Jabber password with Friendica password (recommended)" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:293 -#: ../../addon.old/jappixmini/jappixmini.php:293 -msgid "Friendica password" -msgstr "Hasło Friendica" - -#: ../../addon/jappixmini/jappixmini.php:296 -#: ../../addon.old/jappixmini/jappixmini.php:296 -msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:299 -#: ../../addon.old/jappixmini/jappixmini.php:299 -msgid "Subscribe to Friendica contacts automatically" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:302 -#: ../../addon.old/jappixmini/jappixmini.php:302 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "" - -#: ../../addon/jappixmini/jappixmini.php:308 -#: ../../addon.old/jappixmini/jappixmini.php:308 -msgid "Add contact" -msgstr "Dodaj kontakt" - -#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37 -msgid "View Source" -msgstr "Podgląd źródła" - -#: ../../addon/statusnet/statusnet.php:138 -#: ../../addon.old/statusnet/statusnet.php:134 -msgid "Post to StatusNet" -msgstr "Wyślij do sieci StatusNet" - -#: ../../addon/statusnet/statusnet.php:180 -#: ../../addon.old/statusnet/statusnet.php:176 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "Proszę się skontaktować z administratorem strony.
API URL nie jest poprawne" - -#: ../../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 "" - -#: ../../addon/statusnet/statusnet.php:238 -#: ../../addon.old/statusnet/statusnet.php:232 -msgid "StatusNet settings updated." -msgstr "Ustawienia StatusNet zaktualizowane" - -#: ../../addon/statusnet/statusnet.php:269 -#: ../../addon.old/statusnet/statusnet.php:257 -msgid "StatusNet Posting Settings" -msgstr "Ustawienia StatusNet" - -#: ../../addon/statusnet/statusnet.php:283 -#: ../../addon.old/statusnet/statusnet.php:271 -msgid "Globally Available StatusNet OAuthKeys" -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 "" - -#: ../../addon/statusnet/statusnet.php:292 -#: ../../addon.old/statusnet/statusnet.php:280 -msgid "Provide your own OAuth Credentials" -msgstr "" - -#: ../../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.
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 "" - -#: ../../addon/statusnet/statusnet.php:295 -#: ../../addon.old/statusnet/statusnet.php:283 -msgid "OAuth Consumer Key" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:298 -#: ../../addon.old/statusnet/statusnet.php:286 -msgid "OAuth Consumer Secret" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:301 -#: ../../addon.old/statusnet/statusnet.php:289 -msgid "Base API Path (remember the trailing /)" -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 public 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 publiczne posty będą publikowane na StatusNet." - -#: ../../addon/statusnet/statusnet.php:323 -#: ../../addon.old/statusnet/statusnet.php:311 -msgid "Log in with StatusNet" -msgstr "Zaloguj się przez StatusNet" - -#: ../../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" - -#: ../../addon/statusnet/statusnet.php:331 -#: ../../addon.old/statusnet/statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "Anuluj proces łączenia" - -#: ../../addon/statusnet/statusnet.php:333 -#: ../../addon.old/statusnet/statusnet.php:321 -msgid "Current StatusNet API is" -msgstr "Aktualnym StatusNet API jest" - -#: ../../addon/statusnet/statusnet.php:334 -#: ../../addon.old/statusnet/statusnet.php:322 -msgid "Cancel StatusNet Connection" -msgstr "Anuluj połączenie StatusNet" - -#: ../../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:" - -#: ../../addon/statusnet/statusnet.php:346 -#: ../../addon.old/statusnet/statusnet.php:334 -msgid "" -"If enabled all your public 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 "" - -#: ../../addon/statusnet/statusnet.php:348 -#: ../../addon.old/statusnet/statusnet.php:336 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "" - -#: ../../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" -msgstr "" - #: ../../addon/statusnet/statusnet.php:358 msgid "" "Mirror all posts from statusnet that are no replies or repeated messages" @@ -7531,27 +3273,6 @@ msgstr "" msgid "Shortening method that optimizes the post" msgstr "" -#: ../../addon/statusnet/statusnet.php:366 -#: ../../addon.old/statusnet/statusnet.php:345 -msgid "Send linked #-tags and @-names to StatusNet" -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 "" - -#: ../../addon/statusnet/statusnet.php:745 -#: ../../addon.old/statusnet/statusnet.php:568 -msgid "API URL" -msgstr "Adres API" - -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "" - #: ../../addon/tumblr/tumblr.php:144 msgid "You are now authenticated to tumblr." msgstr "" @@ -7560,26 +3281,10 @@ msgstr "" msgid "return to the connector page" msgstr "" -#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36 -msgid "Post to Tumblr" -msgstr "Opublikuj na Tumblrze" - -#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67 -msgid "Tumblr Post Settings" -msgstr "Ustawienia postu Tumblr" - #: ../../addon/tumblr/tumblr.php:188 msgid "(Re-)Authenticate your tumblr page" msgstr "" -#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69 -msgid "Enable Tumblr Post Plugin" -msgstr "Zezwól na wtyczkę postu Tumblr" - -#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84 -msgid "Post to Tumblr by default" -msgstr "Post do Tumblr przez standard" - #: ../../addon/tumblr/tumblr.php:217 msgid "Post to page:" msgstr "Napisz na stronę:" @@ -7588,202 +3293,6 @@ msgstr "Napisz na stronę:" msgid "You are not authenticated to tumblr" msgstr "" -#: ../../addon/numfriends/numfriends.php:46 -#: ../../addon.old/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "" - -#: ../../addon/numfriends/numfriends.php:77 -#: ../../addon.old/numfriends/numfriends.php:77 -msgid "Numfriends 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 "" - -#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48 -msgid "Gnot settings updated." -msgstr "" - -#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79 -msgid "Gnot Settings" -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 "" - -#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82 -msgid "Enable this plugin/addon?" -msgstr "Umożliwić tego plugina/wtyczkę?" - -#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%d" -msgstr "" - -#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "Opublikuj na Wordpress" - -#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "Ustawienia wpisów WorldPress" - -#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "Włącz plugin wpisów WorldPress" - -#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "nazwa użytkownika WordPress" - -#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "hasło WordPress" - -#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "WordPress API URL" - -#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "" - -#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -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" - -#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207 -msgid "Read the original post and comment stream on Friendica" -msgstr "" - -#: ../../addon/showmore/showmore.php:38 -#: ../../addon.old/showmore/showmore.php:38 -msgid "\"Show more\" Settings" -msgstr "\"Pokaż więcej\" ustawień" - -#: ../../addon/showmore/showmore.php:41 -#: ../../addon.old/showmore/showmore.php:41 -msgid "Enable Show More" -msgstr "" - -#: ../../addon/showmore/showmore.php:44 -#: ../../addon.old/showmore/showmore.php:44 -msgid "Cutting posts after how much characters" -msgstr "" - -#: ../../addon/showmore/showmore.php:65 -#: ../../addon.old/showmore/showmore.php:65 -msgid "Show More Settings saved." -msgstr "" - -#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -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 can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "" - -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 -msgid "Piwik Base URL" -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 "" - -#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91 -msgid "Site ID" -msgstr "ID strony" - -#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92 -msgid "Show opt-out cookie link?" -msgstr "" - -#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "" - -#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73 -msgid "Post to Twitter" -msgstr "Post na Twitter" - -#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122 -msgid "Twitter settings updated." -msgstr "Zaktualizowano ustawienia Twittera." - -#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146 -msgid "Twitter Posting Settings" -msgstr "Ustawienia wpisów z Twittera" - -#: ../../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." - -#: ../../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 public posts will" -" be posted to Twitter." -msgstr "" - -#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173 -msgid "Log in with Twitter" -msgstr "Zaloguj się przez Twitter" - -#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175 -msgid "Copy the PIN from Twitter here" -msgstr "Skopiuj tutaj PIN z Twittera" - -#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190 -msgid "" -"If enabled all your public 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 "" - -#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "" - -#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195 -msgid "Allow posting to Twitter" -msgstr "Zezwól na opublikowanie w serwisie Twitter" - -#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198 -msgid "Send public postings to Twitter by default" -msgstr "" - #: ../../addon/twitter/twitter.php:213 msgid "Mirror all posts from twitter that are no replies or retweets" msgstr "" @@ -7792,18 +3301,6 @@ msgstr "" msgid "Shortening method that optimizes the tweet" msgstr "" -#: ../../addon/twitter/twitter.php:221 ../../addon.old/twitter/twitter.php:201 -msgid "Send linked #-tags and @-names to Twitter" -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" msgstr "" @@ -7813,318 +3310,16 @@ msgid "" "set this to avoid mirroring postings from ~friendica back to ~friendica" msgstr "" -#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44 -msgid "IRC Settings" -msgstr "Ustawienia IRC" - -#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46 -msgid "Channel(s) to auto connect (comma separated)" -msgstr "" - -#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51 -msgid "Popular Channels (comma separated)" -msgstr "" - -#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "Zapisano ustawienia IRC." - -#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "IRC Chatroom" - -#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96 -msgid "Popular Channels" -msgstr "Popularne kanały" - -#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38 -msgid "Fromapp settings updated." -msgstr "" - -#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64 -msgid "FromApp Settings" -msgstr "" - -#: ../../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 "" - -#: ../../addon/fromapp/fromapp.php:70 ../../addon.old/fromapp/fromapp.php:70 -msgid "Use this application name even if another application was used." -msgstr "" - -#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42 -msgid "Post to blogger" -msgstr "Post na blogger" - -#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74 -msgid "Blogger Post Settings" -msgstr "Ustawienia postów na Blogger" - -#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76 -msgid "Enable Blogger Post Plugin" -msgstr "" - -#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81 -msgid "Blogger username" -msgstr "Nazwa użytkownika na Blogger" - -#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86 -msgid "Blogger password" -msgstr "Hasło do Blogger" - -#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91 -msgid "Blogger API URL" -msgstr "" - -#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96 -msgid "Post to Blogger by default" -msgstr "" - -#: ../../addon/posterous/posterous.php:37 -#: ../../addon.old/posterous/posterous.php:37 -msgid "Post to Posterous" -msgstr "" - -#: ../../addon/posterous/posterous.php:70 -#: ../../addon.old/posterous/posterous.php:70 -msgid "Posterous Post Settings" -msgstr "" - -#: ../../addon/posterous/posterous.php:72 -#: ../../addon.old/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" -msgstr "" - -#: ../../addon/posterous/posterous.php:77 -#: ../../addon.old/posterous/posterous.php:77 -msgid "Posterous login" -msgstr "" - -#: ../../addon/posterous/posterous.php:82 -#: ../../addon.old/posterous/posterous.php:82 -msgid "Posterous password" -msgstr "" - -#: ../../addon/posterous/posterous.php:87 -#: ../../addon.old/posterous/posterous.php:87 -msgid "Posterous site ID" -msgstr "" - -#: ../../addon/posterous/posterous.php:92 -#: ../../addon.old/posterous/posterous.php:92 -msgid "Posterous API token" -msgstr "" - -#: ../../addon/posterous/posterous.php:97 -#: ../../addon.old/posterous/posterous.php:97 -msgid "Post to Posterous by default" -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)" -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" -msgstr "" - -#: ../../view/theme/cleanzero/config.php:86 -#: ../../view/theme/quattro/config.php:68 -msgid "Color scheme" -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" - -#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "Twoja strona profilowa" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "Twoje kontakty" - -#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78 -msgid "Your photos" -msgstr "Twoje zdjęcia" - -#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79 -msgid "Your events" -msgstr "Twoje wydarzenia" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "Osobiste notatki" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 -msgid "Your personal photos" -msgstr "Twoje osobiste zdjęcia" - -#: ../../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" - -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -#: ../../view/theme/diabook/config.php:165 -msgid "Community Profiles" -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" - -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -#: ../../view/theme/diabook/config.php:172 -msgid "Last likes" -msgstr "Ostatnie polubienia" - -#: ../../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" - -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -#: ../../view/theme/diabook/config.php:168 -msgid "Find Friends" -msgstr "Znajdź znajomych" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "" - -#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "Podobne zainteresowania" - -#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "Zaproś znajomych" - -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:164 -msgid "Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:578 -#: ../../view/theme/diabook/config.php:161 -msgid "Set longitude (X) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/config.php:162 -msgid "Set latitude (Y) for Earth Layers" -msgstr "" - -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/theme.php:635 -#: ../../view/theme/diabook/config.php:166 -msgid "Help or @NewHere ?" -msgstr "" - -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -#: ../../view/theme/diabook/config.php:167 -msgid "Connect Services" -msgstr "" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "Ostatnie Tweetnięcie" - -#: ../../view/theme/diabook/theme.php:609 -#: ../../view/theme/diabook/config.php:159 -msgid "Set twitter search term" -msgstr "" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327 -msgid "don't show" -msgstr "nie pokazuj" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326 -msgid "show" -msgstr "pokaż" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "" - -#: ../../view/theme/diabook/config.php:156 -#: ../../view/theme/dispy/config.php:74 -msgid "Set line-height for posts and comments" -msgstr "" - -#: ../../view/theme/diabook/config.php:157 -msgid "Set resolution for middle column" -msgstr "" - -#: ../../view/theme/diabook/config.php:158 -msgid "Set color scheme" -msgstr "Zestaw kolorów" - -#: ../../view/theme/diabook/config.php:160 -msgid "Set zoomfactor for Earth Layer" -msgstr "" - -#: ../../view/theme/diabook/config.php:169 -msgid "Last tweets" -msgstr "Ostatnie tweetnięcie" - -#: ../../view/theme/quattro/config.php:67 -msgid "Alignment" -msgstr "" - -#: ../../view/theme/quattro/config.php:67 -msgid "Left" -msgstr "Lewo" - -#: ../../view/theme/quattro/config.php:67 -msgid "Center" -msgstr "Środek" - -#: ../../view/theme/quattro/config.php:69 -msgid "Posts font size" -msgstr "" - -#: ../../view/theme/quattro/config.php:70 -msgid "Textareas font size" -msgstr "" - -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "Zestaw kolorów" +#: ../../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" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050 +msgid "Full Name:" +msgstr "Imię i nazwisko:" #: ../../include/profile_advanced.php:22 msgid "j F, Y" @@ -8147,10 +3342,22 @@ msgstr "Wiek:" msgid "for %1$d %2$s" msgstr "od %1$d %2$s" +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646 +msgid "Sexual Preference:" +msgstr "Interesują mnie:" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648 +msgid "Hometown:" +msgstr "Miasto rodzinne:" + #: ../../include/profile_advanced.php:52 msgid "Tags:" msgstr "Tagi:" +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649 +msgid "Political Views:" +msgstr "Poglądy polityczne:" + #: ../../include/profile_advanced.php:56 msgid "Religion:" msgstr "Religia:" @@ -8159,6 +3366,14 @@ msgstr "Religia:" msgid "Hobbies/Interests:" msgstr "Hobby/Zainteresowania:" +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653 +msgid "Likes:" +msgstr "Lubi:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654 +msgid "Dislikes:" +msgstr "" + #: ../../include/profile_advanced.php:67 msgid "Contact information and Social Networks:" msgstr "Informacje kontaktowe i sieci społeczne" @@ -8191,70 +3406,6 @@ msgstr "Praca/zatrudnienie:" msgid "School/education:" msgstr "Szkoła/edukacja:" -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "Nieznany | Bez kategori" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "Zablokować natychmiast " - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "Znam, ale nie mam zdania" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "Ok, bez problemów" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "Zaufane, ma moje poparcie" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Jak najczęściej" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Godzinowo" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dwa razy dziennie" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "" - #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Mężczyzna" @@ -8488,51 +3639,70 @@ msgstr "Nie obchodzi mnie to" msgid "Ask me" msgstr "Zapytaj mnie " -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 -msgid "Starts:" -msgstr "Start:" +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "przestań obserwować" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 -msgid "Finishes:" -msgstr "Wykończenia:" +#: ../../include/Contact.php:225 ../../include/conversation.php:838 +msgid "Poke" +msgstr "Zaczepka" -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "(bez tematu)" +#: ../../include/Contact.php:226 ../../include/conversation.php:832 +msgid "View Status" +msgstr "Zobacz status" -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "na Last.fm" +#: ../../include/Contact.php:227 ../../include/conversation.php:833 +msgid "View Profile" +msgstr "Zobacz profil" -#: ../../include/text.php:262 +#: ../../include/Contact.php:228 ../../include/conversation.php:834 +msgid "View Photos" +msgstr "Zobacz zdjęcia" + +#: ../../include/Contact.php:229 ../../include/Contact.php:251 +#: ../../include/conversation.php:835 +msgid "Network Posts" +msgstr "" + +#: ../../include/Contact.php:230 ../../include/Contact.php:251 +#: ../../include/conversation.php:836 +msgid "Edit Contact" +msgstr "Edytuj kontakt" + +#: ../../include/Contact.php:231 ../../include/Contact.php:251 +#: ../../include/conversation.php:837 +msgid "Send PM" +msgstr "Wyślij prywatną wiadomość" + +#: ../../include/text.php:276 msgid "prev" msgstr "poprzedni" -#: ../../include/text.php:264 +#: ../../include/text.php:278 msgid "first" msgstr "pierwszy" -#: ../../include/text.php:293 +#: ../../include/text.php:307 msgid "last" msgstr "ostatni" -#: ../../include/text.php:296 +#: ../../include/text.php:310 msgid "next" msgstr "następny" -#: ../../include/text.php:314 +#: ../../include/text.php:328 msgid "newer" msgstr "nowsze" -#: ../../include/text.php:318 +#: ../../include/text.php:332 msgid "older" msgstr "starsze" -#: ../../include/text.php:657 +#: ../../include/text.php:697 msgid "No contacts" msgstr "Brak kontaktów" -#: ../../include/text.php:666 +#: ../../include/text.php:706 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" @@ -8540,229 +3710,263 @@ msgstr[0] "%d kontakt" msgstr[1] "%d kontaktów" msgstr[2] "%d kontakty" -#: ../../include/text.php:779 +#: ../../include/text.php:718 ../../mod/viewcontacts.php:76 +msgid "View Contacts" +msgstr "widok kontaktów" + +#: ../../include/text.php:778 ../../include/text.php:779 +#: ../../include/nav.php:118 ../../mod/search.php:99 +msgid "Search" +msgstr "Szukaj" + +#: ../../include/text.php:819 msgid "poke" msgstr "zaczep" -#: ../../include/text.php:779 ../../include/conversation.php:211 +#: ../../include/text.php:819 ../../include/conversation.php:211 msgid "poked" msgstr "zaczepiony" -#: ../../include/text.php:780 +#: ../../include/text.php:820 msgid "ping" msgstr "" -#: ../../include/text.php:780 +#: ../../include/text.php:820 msgid "pinged" msgstr "" -#: ../../include/text.php:781 +#: ../../include/text.php:821 msgid "prod" msgstr "" -#: ../../include/text.php:781 +#: ../../include/text.php:821 msgid "prodded" msgstr "" -#: ../../include/text.php:782 +#: ../../include/text.php:822 msgid "slap" msgstr "spoliczkuj" -#: ../../include/text.php:782 +#: ../../include/text.php:822 msgid "slapped" msgstr "spoliczkowany" -#: ../../include/text.php:783 +#: ../../include/text.php:823 msgid "finger" msgstr "dotknąć" -#: ../../include/text.php:783 +#: ../../include/text.php:823 msgid "fingered" msgstr "dotknięty" -#: ../../include/text.php:784 +#: ../../include/text.php:824 msgid "rebuff" msgstr "odprawiać" -#: ../../include/text.php:784 +#: ../../include/text.php:824 msgid "rebuffed" msgstr "odprawiony" -#: ../../include/text.php:796 +#: ../../include/text.php:836 msgid "happy" msgstr "szczęśliwy" -#: ../../include/text.php:797 +#: ../../include/text.php:837 msgid "sad" msgstr "smutny" -#: ../../include/text.php:798 +#: ../../include/text.php:838 msgid "mellow" msgstr "spokojny" -#: ../../include/text.php:799 +#: ../../include/text.php:839 msgid "tired" msgstr "zmęczony" -#: ../../include/text.php:800 +#: ../../include/text.php:840 msgid "perky" msgstr "pewny siebie" -#: ../../include/text.php:801 +#: ../../include/text.php:841 msgid "angry" msgstr "wściekły" -#: ../../include/text.php:802 +#: ../../include/text.php:842 msgid "stupified" msgstr "odurzony" -#: ../../include/text.php:803 +#: ../../include/text.php:843 msgid "puzzled" msgstr "zdziwiony" -#: ../../include/text.php:804 +#: ../../include/text.php:844 msgid "interested" msgstr "interesujący" -#: ../../include/text.php:805 +#: ../../include/text.php:845 msgid "bitter" msgstr "zajadły" -#: ../../include/text.php:806 +#: ../../include/text.php:846 msgid "cheerful" msgstr "wesoły" -#: ../../include/text.php:807 +#: ../../include/text.php:847 msgid "alive" msgstr "żywy" -#: ../../include/text.php:808 +#: ../../include/text.php:848 msgid "annoyed" msgstr "irytujący" -#: ../../include/text.php:809 +#: ../../include/text.php:849 msgid "anxious" msgstr "zazdrosny" -#: ../../include/text.php:810 +#: ../../include/text.php:850 msgid "cranky" msgstr "zepsuty" -#: ../../include/text.php:811 +#: ../../include/text.php:851 msgid "disturbed" msgstr "przeszkadzający" -#: ../../include/text.php:812 +#: ../../include/text.php:852 msgid "frustrated" msgstr "rozbity" -#: ../../include/text.php:813 +#: ../../include/text.php:853 msgid "motivated" msgstr "zmotywowany" -#: ../../include/text.php:814 +#: ../../include/text.php:854 msgid "relaxed" msgstr "zrelaksowany" -#: ../../include/text.php:815 +#: ../../include/text.php:855 msgid "surprised" msgstr "zaskoczony" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "January" msgstr "Styczeń" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "February" msgstr "Luty" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "March" msgstr "Marzec" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "April" msgstr "Kwiecień" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "May" msgstr "Maj" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "June" msgstr "Czerwiec" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "July" msgstr "Lipiec" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "August" msgstr "Sierpień" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "September" msgstr "Wrzesień" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "October" msgstr "Październik" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "November" msgstr "Listopad" -#: ../../include/text.php:979 +#: ../../include/text.php:1019 msgid "December" msgstr "Grudzień" -#: ../../include/text.php:1078 +#: ../../include/text.php:1124 msgid "bytes" msgstr "bajty" -#: ../../include/text.php:1105 ../../include/text.php:1117 +#: ../../include/text.php:1151 ../../include/text.php:1163 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: ../../include/text.php:1290 ../../include/user.php:237 +#: ../../include/text.php:1304 ../../mod/events.php:335 +msgid "link to source" +msgstr "link do źródła" + +#: ../../include/text.php:1336 ../../include/user.php:237 msgid "default" msgstr "standardowe" -#: ../../include/text.php:1302 +#: ../../include/text.php:1348 msgid "Select an alternate language" msgstr "Wybierz alternatywny język" -#: ../../include/text.php:1512 +#: ../../include/text.php:1558 msgid "activity" msgstr "aktywność" -#: ../../include/text.php:1515 +#: ../../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" + +#: ../../include/text.php:1561 msgid "post" msgstr "post" -#: ../../include/text.php:1670 +#: ../../include/text.php:1716 msgid "Item filed" msgstr "" -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "Wspólne powiadomienie z sieci Diaspora" +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "Widoczny dla wszystkich" -#: ../../include/diaspora.php:2248 -msgid "Attachments:" -msgstr "Załączniki:" +#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "show" +msgstr "pokaż" -#: ../../include/network.php:850 -msgid "view full size" -msgstr "Zobacz pełen rozmiar" +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "don't show" +msgstr "nie pokazuj" -#: ../../include/oembed.php:138 -msgid "Embedded content" +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "Wyloguj" + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +msgstr "Niepowodzenie logowania" + +#: ../../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 "" -#: ../../include/oembed.php:147 -msgid "Embedding disabled" -msgstr "Osadzanie wyłączone" +#: ../../include/auth.php:128 +msgid "The error message was:" +msgstr "Komunikat o błędzie:" #: ../../include/uimport.php:61 msgid "Error decoding account file" @@ -8805,159 +4009,223 @@ msgstr[2] "" 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." -#: ../../include/group.php:25 +#: ../../include/bb2diaspora.php:393 ../../include/event.php:11 +#: ../../mod/localtime.php:12 +msgid "l F d, Y \\@ g:i A" +msgstr "" + +#: ../../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:" + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +msgid "Disallowed profile URL." +msgstr "Nie dozwolony adres URL profilu." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "Brak adresu URL połączenia." + +#: ../../include/follow.php:59 msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." +"This site is not configured to allow communications with other networks." +msgstr "Ta strona nie jest skonfigurowana do pozwalania na komunikację z innymi sieciami" + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "Wszyscy" +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "Autor lub nazwa nie zostało znalezione." -#: ../../include/group.php:249 -msgid "edit" -msgstr "edytuj" +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "Edytuj grupy" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "Stwórz nową grupę" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "Kontakt nie jest w żadnej grupie" - -#: ../../include/nav.php:73 ../../boot.php:1036 -msgid "Logout" -msgstr "Wyloguj się" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "Zakończ sesję" - -#: ../../include/nav.php:76 ../../boot.php:1833 -msgid "Status" -msgstr "Status" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "Zaloguj się" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "Strona startowa" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "Załóż konto" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "Pomoc i dokumentacja" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "Aplikacje" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "Wtyczki, aplikacje, narzędzia, gry" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "Przeszukaj zawartość strony" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "Rozmowy na tej stronie" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "Katalog" - -#: ../../include/nav.php:130 -msgid "People directory" +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." msgstr "" -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "Rozmowy Twoich przyjaciół" - -#: ../../include/nav.php:141 -msgid "Network Reset" +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." msgstr "" -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" +#: ../../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." + +#: ../../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." + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "Nie można otrzymać informacji kontaktowych" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "następujący" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "Wymagane zaproszenie." + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "Zaproszenie niezweryfikowane." + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "Nieprawidłowy adres url OpenID" + +#: ../../include/user.php:67 +msgid "Please enter the required information." +msgstr "Wprowadź wymagane informacje" + +#: ../../include/user.php:81 +msgid "Please use a shorter name." +msgstr "Użyj dłuższej nazwy." + +#: ../../include/user.php:83 +msgid "Name too short." +msgstr "Nazwa jest za krótka." + +#: ../../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)." + +#: ../../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." + +#: ../../include/user.php:106 +msgid "Not a valid email address." +msgstr "Niepoprawny adres e mail.." + +#: ../../include/user.php:116 +msgid "Cannot use that email." +msgstr "Nie możesz użyć tego e-maila. " + +#: ../../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ę." + +#: ../../include/user.php:128 ../../include/user.php:226 +msgid "Nickname is already registered. Please choose another." +msgstr "Ten login jest zajęty. Wybierz inny." + +#: ../../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." + +#: ../../include/user.php:154 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." + +#: ../../include/user.php:212 +msgid "An error occurred during registration. Please try again." +msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." + +#: ../../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." + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "Nieznany | Bez kategori" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "Zablokować natychmiast " + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" msgstr "" -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "Podania o przyjęcie do grona znajomych" +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "Znam, ale nie mam zdania" -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "Zobacz wszystkie powiadomienia" +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "Ok, bez problemów" -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "Zaufane, ma moje poparcie" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Jak najczęściej" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Godzinowo" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Dwa razy dziennie" + +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747 +#: ../../mod/admin.php:757 +msgid "Email" +msgstr "E-mail" + +#: ../../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 "" -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "Prywatne maile" +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "Odebrane" +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "Wysłane" +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" -#: ../../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 "" - -#: ../../include/nav.php:169 ../../boot.php:1339 -msgid "Profiles" -msgstr "Profile" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "Zarządzaj listą przyjaciół i kontaktami" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "Konfiguracja i ustawienia instancji" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "" - -#: ../../include/nav.php:182 -msgid "Site map" +#: ../../include/contact_selectors.php:87 +msgid "Google+" msgstr "" #: ../../include/contact_widgets.php:6 @@ -8972,6 +4240,11 @@ msgstr "Wpisz adres lub lokalizację sieciową" msgid "Example: bob@example.com, http://example.com/barbara" msgstr "Przykład: bob@przykład.com, http://przykład.com/barbara" +#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 +#: ../../mod/match.php:58 ../../boot.php:1338 +msgid "Connect" +msgstr "Połącz" + #: ../../include/contact_widgets.php:23 #, php-format msgid "%d invitation available" @@ -8996,10 +4269,23 @@ msgstr "Połącz/Obserwuj" msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykładowo: Jan Kowalski, Wędkarstwo" +#: ../../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ć" + +#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 +msgid "Similar Interests" +msgstr "Podobne zainteresowania" + #: ../../include/contact_widgets.php:36 msgid "Random Profile" msgstr "Domyślny profil" +#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 +msgid "Invite Friends" +msgstr "Zaproś znajomych" + #: ../../include/contact_widgets.php:70 msgid "Networks" msgstr "Sieci" @@ -9020,18 +4306,35 @@ msgstr "Wszystko" msgid "Categories" msgstr "Kategorie" -#: ../../include/auth.php:38 -msgid "Logged out." -msgstr "Wyloguj" +#: ../../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] "" -#: ../../include/auth.php:128 +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "na Last.fm" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 +msgid "Image/photo" +msgstr "Obrazek/zdjęcie" + +#: ../../include/bbcode.php:272 +#, php-format msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +"%s wrote the following post" msgstr "" -#: ../../include/auth.php:128 -msgid "The error message was:" +#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 +msgid "$1 wrote:" +msgstr "$1 napisał:" + +#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 +msgid "Encrypted content" msgstr "" #: ../../include/datetime.php:43 ../../include/datetime.php:45 @@ -9091,195 +4394,84 @@ msgstr "sekundy" msgid "%1$d %2$s ago" msgstr "" -#: ../../include/datetime.php:472 ../../include/items.php:1705 +#: ../../include/datetime.php:472 ../../include/items.php:1764 #, php-format msgid "%s's birthday" msgstr "" -#: ../../include/datetime.php:473 ../../include/items.php:1706 +#: ../../include/datetime.php:473 ../../include/items.php:1765 #, php-format msgid "Happy Birthday %s" msgstr "" -#: ../../include/bbcode.php:210 ../../include/bbcode.php:515 -msgid "Image/photo" -msgstr "Obrazek/zdjęcie" +#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716 +msgid "[Name Withheld]" +msgstr "[Nazwa wstrzymana]" -#: ../../include/bbcode.php:272 +#: ../../include/items.php:3446 +msgid "A new person is sharing with you at " +msgstr "" + +#: ../../include/items.php:3446 +msgid "You have a new follower at " +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." + +#: ../../include/items.php:3965 +msgid "Do you really want to delete this item?" +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" + +#: ../../include/items.php:4160 +msgid "Archives" +msgstr "Archiwum" + +#: ../../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 "" + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "" + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +msgstr "(bez tematu)" + +#: ../../include/diaspora.php:621 ../../include/conversation.php:172 +#: ../../mod/dfrn_confirm.php:477 #, php-format -msgid "" -"%s wrote the following post" -msgstr "" +msgid "%1$s is now friends with %2$s" +msgstr "%1$s jest teraz znajomym z %2$s" -#: ../../include/bbcode.php:480 ../../include/bbcode.php:500 -msgid "$1 wrote:" -msgstr "$1 napisał:" +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "Wspólne powiadomienie z sieci Diaspora" -#: ../../include/bbcode.php:520 ../../include/bbcode.php:521 -msgid "Encrypted content" -msgstr "" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "Szukanie wg daty" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "" - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -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]" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "Widoczny dla wszystkich" +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "Załączniki:" #: ../../include/enotify.php:16 msgid "Friendica Notification" @@ -9467,144 +4659,719 @@ msgstr "Zdjęcie:" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../include/follow.php:32 -msgid "Connect URL missing." +#: ../../include/features.php:23 +msgid "General Features" msgstr "" -#: ../../include/follow.php:59 +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "" + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "Szukanie wg daty" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "" + +#: ../../include/features.php:39 +msgid "Enable widget to display Network posts only from selected group" +msgstr "" + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected network" +msgstr "" + +#: ../../include/features.php:41 ../../mod/search.php:30 +#: ../../mod/network.php:233 +msgid "Saved Searches" +msgstr "Zapisane wyszukiwania" + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "" + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "" + +#: ../../include/features.php:47 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "" + +#: ../../include/features.php:48 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "" + +#: ../../include/features.php:49 +msgid "Enable tab to display only Network posts with links in them" +msgstr "" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "" + +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "" + +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "" + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "" + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "" + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "" + +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "" + +#: ../../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'" + +#: ../../include/group.php:25 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" - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." msgstr "" -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "Domyślne ustawienia prywatności dla nowych kontaktów" -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "Autor lub nazwa nie zostało znalezione." +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "Wszyscy" -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" +#: ../../include/group.php:249 +msgid "edit" +msgstr "edytuj" -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "Grupy" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "Edytuj grupy" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "Stwórz nową grupę" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "Kontakt nie jest w żadnej grupie" + +#: ../../include/group.php:275 ../../mod/network.php:234 +msgid "add" +msgstr "dodaj" + +#: ../../include/conversation.php:140 ../../mod/like.php:170 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s nie lubi %2$s's %3$s" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" msgstr "" -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." +#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" msgstr "" -#: ../../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." +#: ../../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" -#: ../../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." - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "Nie można otrzymać informacji kontaktowych" - -#: ../../include/follow.php:259 -msgid "following" -msgstr "następujący" - -#: ../../include/items.php:3373 -msgid "A new person is sharing with you at " +#: ../../include/conversation.php:291 +msgid "post/item" msgstr "" -#: ../../include/items.php:3373 -msgid "You have a new follower at " +#: ../../include/conversation.php:292 +#, php-format +msgid "%1$s marked %2$s's %3$s as favorite" msgstr "" -#: ../../include/items.php:3892 -msgid "Do you really want to delete this item?" +#: ../../include/conversation.php:587 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../object/Item.php:119 +msgid "Select" +msgstr "Wybierz" + +#: ../../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ń" + +#: ../../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" + +#: ../../include/conversation.php:639 ../../object/Item.php:288 +msgid "Categories:" +msgstr "Kategorie:" + +#: ../../include/conversation.php:640 ../../object/Item.php:289 +msgid "Filed under:" msgstr "" -#: ../../include/items.php:4085 -msgid "Archives" -msgstr "Archiwum" +#: ../../include/conversation.php:647 ../../mod/content.php:505 +#: ../../mod/content.php:887 ../../object/Item.php:311 +#, php-format +msgid "%s from %s" +msgstr "%s od %s" -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "Wymagane zaproszenie." +#: ../../include/conversation.php:662 ../../mod/content.php:520 +msgid "View in context" +msgstr "Zobacz w kontekście" -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "Zaproszenie niezweryfikowane." +#: ../../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ć" -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "Nieprawidłowy adres url OpenID" +#: ../../include/conversation.php:728 +msgid "remove" +msgstr "usuń" -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "Wprowadź wymagane informacje" +#: ../../include/conversation.php:732 +msgid "Delete Selected Items" +msgstr "Usuń zaznaczone elementy" -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "Użyj dłuższej nazwy." +#: ../../include/conversation.php:831 +msgid "Follow Thread" +msgstr "" -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "Nazwa jest za krótka." +#: ../../include/conversation.php:900 +#, php-format +msgid "%s likes this." +msgstr "%s lubi to." -#: ../../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)." +#: ../../include/conversation.php:900 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nie lubi tego." -#: ../../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." +#: ../../include/conversation.php:905 +#, php-format +msgid "%2$d people like this" +msgstr "" -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "Niepoprawny adres e mail.." +#: ../../include/conversation.php:908 +#, php-format +msgid "%2$d people don't like this" +msgstr "" -#: ../../include/user.php:116 -msgid "Cannot use that email." -msgstr "Nie możesz użyć tego e-maila. " +#: ../../include/conversation.php:922 +msgid "and" +msgstr "i" -#: ../../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ę." +#: ../../include/conversation.php:928 +#, php-format +msgid ", and %d other people" +msgstr ", i %d innych ludzi" -#: ../../include/user.php:128 ../../include/user.php:226 -msgid "Nickname is already registered. Please choose another." -msgstr "Ten login jest zajęty. Wybierz inny." +#: ../../include/conversation.php:930 +#, php-format +msgid "%s like this." +msgstr "%s lubi to." -#: ../../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." +#: ../../include/conversation.php:930 +#, php-format +msgid "%s don't like this." +msgstr "%s nie lubi tego." -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." +#: ../../include/conversation.php:957 ../../include/conversation.php:975 +msgid "Visible to everybody" +msgstr "Widoczne dla wszystkich" -#: ../../include/user.php:212 -msgid "An error occurred during registration. Please try again." -msgstr "Wystąpił bład podczas rejestracji, Spróbuj ponownie." +#: ../../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:" -#: ../../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." +#: ../../include/conversation.php:959 ../../include/conversation.php:977 +msgid "Please enter a video link/URL:" +msgstr "Podaj link do filmu" + +#: ../../include/conversation.php:960 ../../include/conversation.php:978 +msgid "Please enter an audio link/URL:" +msgstr "Podaj link do muzyki" + +#: ../../include/conversation.php:961 ../../include/conversation.php:979 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:962 ../../include/conversation.php:980 +#: ../../mod/filer.php:30 +msgid "Save to Folder:" +msgstr "Zapisz w folderze:" + +#: ../../include/conversation.php:963 ../../include/conversation.php:981 +msgid "Where are you right now?" +msgstr "Gdzie teraz jesteś?" + +#: ../../include/conversation.php:964 +msgid "Delete item(s)?" +msgstr "" + +#: ../../include/conversation.php:1006 +msgid "Post to Email" +msgstr "Wyślij poprzez email" + +#: ../../include/conversation.php:1041 ../../mod/photos.php:1531 +msgid "Share" +msgstr "Podziel się" + +#: ../../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" + +#: ../../include/conversation.php:1043 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "dodaj zdjęcie" + +#: ../../include/conversation.php:1044 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "Przyłącz plik" + +#: ../../include/conversation.php:1045 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "załącz plik" + +#: ../../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" + +#: ../../include/conversation.php:1047 ../../mod/editpost.php:115 +msgid "web link" +msgstr "Adres www" + +#: ../../include/conversation.php:1048 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "Wstaw link wideo" + +#: ../../include/conversation.php:1049 ../../mod/editpost.php:117 +msgid "video link" +msgstr "link do filmu" + +#: ../../include/conversation.php:1050 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "Wstaw link audio" + +#: ../../include/conversation.php:1051 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "Link audio" + +#: ../../include/conversation.php:1052 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "Ustaw swoje położenie" + +#: ../../include/conversation.php:1053 ../../mod/editpost.php:121 +msgid "set location" +msgstr "wybierz lokalizację" + +#: ../../include/conversation.php:1054 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "Wyczyść położenie przeglądarki" + +#: ../../include/conversation.php:1055 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "wyczyść lokalizację" + +#: ../../include/conversation.php:1057 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "Ustaw tytuł" + +#: ../../include/conversation.php:1059 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "" + +#: ../../include/conversation.php:1061 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "Ustawienia uprawnień" + +#: ../../include/conversation.php:1062 +msgid "permissions" +msgstr "zezwolenia" + +#: ../../include/conversation.php:1070 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "CC: adresy e-mail" + +#: ../../include/conversation.php:1071 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "Publiczny post" + +#: ../../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" + +#: ../../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" + +#: ../../include/conversation.php:1086 +msgid "Post to Groups" +msgstr "" + +#: ../../include/conversation.php:1087 +msgid "Post to Contacts" +msgstr "" + +#: ../../include/conversation.php:1088 +msgid "Private post" +msgstr "" + +#: ../../include/message.php:15 ../../include/message.php:172 +msgid "[no subject]" +msgstr "[bez tematu]" + +#: ../../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ęć" + +#: ../../include/nav.php:34 ../../mod/navigation.php:20 +msgid "Nothing new here" +msgstr "Brak nowych zdarzeń" + +#: ../../include/nav.php:38 ../../mod/navigation.php:24 +msgid "Clear notifications" +msgstr "" + +#: ../../include/nav.php:73 ../../boot.php:1057 +msgid "Logout" +msgstr "Wyloguj się" + +#: ../../include/nav.php:73 +msgid "End this session" +msgstr "Zakończ sesję" + +#: ../../include/nav.php:76 ../../boot.php:1861 +msgid "Status" +msgstr "Status" + +#: ../../include/nav.php:76 ../../include/nav.php:143 +#: ../../view/theme/diabook/theme.php:87 +msgid "Your posts and conversations" +msgstr "Twoje posty i rozmowy" + +#: ../../include/nav.php:77 ../../view/theme/diabook/theme.php:88 +msgid "Your profile page" +msgstr "Twoja strona profilowa" + +#: ../../include/nav.php:78 ../../mod/fbrowser.php:25 +#: ../../view/theme/diabook/theme.php:90 ../../boot.php:1875 +msgid "Photos" +msgstr "Zdjęcia" + +#: ../../include/nav.php:78 ../../view/theme/diabook/theme.php:90 +msgid "Your photos" +msgstr "Twoje zdjęcia" + +#: ../../include/nav.php:79 ../../mod/events.php:370 +#: ../../view/theme/diabook/theme.php:91 ../../boot.php:1885 +msgid "Events" +msgstr "Wydarzenia" + +#: ../../include/nav.php:79 ../../view/theme/diabook/theme.php:91 +msgid "Your events" +msgstr "Twoje wydarzenia" + +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Personal notes" +msgstr "Osobiste notatki" + +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Your personal photos" +msgstr "Twoje osobiste zdjęcia" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "Zaloguj się" + +#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +msgid "Home" +msgstr "Dom" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "Strona startowa" + +#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033 +msgid "Register" +msgstr "Zarejestruj" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "Załóż konto" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "Pomoc i dokumentacja" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "Aplikacje" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "Wtyczki, aplikacje, narzędzia, gry" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "Przeszukaj zawartość strony" + +#: ../../include/nav.php:128 ../../mod/community.php:32 +#: ../../view/theme/diabook/theme.php:93 +msgid "Community" +msgstr "Społeczność" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "Rozmowy na tej stronie" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "Katalog" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "" + +#: ../../include/nav.php:140 ../../mod/notifications.php:83 +msgid "Network" +msgstr "Sieć" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "Rozmowy Twoich przyjaciół" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "" + +#: ../../include/nav.php:149 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "Wstępy" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "Podania o przyjęcie do grona znajomych" + +#: ../../include/nav.php:150 ../../mod/notifications.php:220 +msgid "Notifications" +msgstr "Powiadomienia" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "Zobacz wszystkie powiadomienia" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "" + +#: ../../include/nav.php:156 ../../mod/message.php:182 +#: ../../mod/notifications.php:103 +msgid "Messages" +msgstr "Wiadomości" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "Prywatne maile" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "Odebrane" + +#: ../../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 "" + +#: ../../include/nav.php:165 ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "" + +#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 +msgid "Account settings" +msgstr "Ustawienia konta" + +#: ../../include/nav.php:169 ../../boot.php:1360 +msgid "Profiles" +msgstr "Profile" + +#: ../../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 "Kontakty" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "Zarządzaj listą przyjaciół i kontaktami" + +#: ../../include/nav.php:178 ../../mod/admin.php:120 +msgid "Admin" +msgstr "Administator" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "Konfiguracja i ustawienia instancji" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "" + +#: ../../include/network.php:875 +msgid "view full size" +msgstr "Zobacz pełen rozmiar" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "Osadzona zawartość" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "Osadzanie wyłączone" #: ../../include/security.php:22 msgid "Welcome " @@ -9624,360 +5391,4611 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "przestań obserwować" +#: ../../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/Contact.php:225 ../../include/conversation.php:820 -msgid "Poke" -msgstr "Zaczepka" +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "Konto usunięte." -#: ../../include/Contact.php:226 ../../include/conversation.php:814 -msgid "View Status" -msgstr "Zobacz status" +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "Profil-" -#: ../../include/Contact.php:227 ../../include/conversation.php:815 -msgid "View Profile" -msgstr "Zobacz profil" +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "Utworzono nowy profil." -#: ../../include/Contact.php:228 ../../include/conversation.php:816 -msgid "View Photos" -msgstr "Zobacz zdjęcia" +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "Nie można powileić profilu " -#: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:817 -msgid "Network Posts" +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "Nazwa Profilu jest wymagana" + +#: ../../mod/profiles.php:317 +msgid "Marital Status" msgstr "" -#: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:818 -msgid "Edit Contact" +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "" + +#: ../../mod/profiles.php:325 +msgid "Likes" +msgstr "" + +#: ../../mod/profiles.php:329 +msgid "Dislikes" +msgstr "" + +#: ../../mod/profiles.php:333 +msgid "Work/Employment" +msgstr "Praca/Zatrudnienie" + +#: ../../mod/profiles.php:336 +msgid "Religion" +msgstr "Religia" + +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "Poglądy polityczne" + +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "Płeć" + +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "Orientacja seksualna" + +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "Strona Główna" + +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "Zainteresowania" + +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "Adres" + +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "Konto zaktualizowane." + +#: ../../mod/profiles.php:517 +msgid " and " +msgstr " i " + +#: ../../mod/profiles.php:525 +msgid "public profile" +msgstr "profil publiczny" + +#: ../../mod/profiles.php:528 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "" + +#: ../../mod/profiles.php:529 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - Odwiedźa %1$s's %2$s" + +#: ../../mod/profiles.php:532 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$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: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" + +#: ../../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" + +#: ../../mod/profiles.php:629 +msgid "Create a new profile using these settings" +msgstr "Stwórz nowy profil wykorzystując te ustawienia" + +#: ../../mod/profiles.php:630 +msgid "Clone this profile" +msgstr "Sklonuj ten profil" + +#: ../../mod/profiles.php:631 +msgid "Delete this profile" +msgstr "Usuń ten profil" + +#: ../../mod/profiles.php:632 +msgid "Profile Name:" +msgstr "Nazwa profilu :" + +#: ../../mod/profiles.php:633 +msgid "Your Full Name:" +msgstr "Twoje imię i nazwisko:" + +#: ../../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 :" + +#: ../../mod/profiles.php:640 +msgid "Country:" +msgstr "Kraj:" + +#: ../../mod/profiles.php:641 +msgid "Region/State:" +msgstr "Region / Stan :" + +#: ../../mod/profiles.php:642 +msgid " Marital Status:" +msgstr " Stan :" + +#: ../../mod/profiles.php:643 +msgid "Who: (if applicable)" +msgstr "Kto: (jeśli dotyczy)" + +#: ../../mod/profiles.php:644 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Przykłady : cathy123, Cathy Williams, cathy@example.com" + +#: ../../mod/profiles.php:645 +msgid "Since [date]:" +msgstr "Od [data]:" + +#: ../../mod/profiles.php:647 +msgid "Homepage URL:" +msgstr "Strona główna URL:" + +#: ../../mod/profiles.php:650 +msgid "Religious Views:" +msgstr "Poglądy religijne:" + +#: ../../mod/profiles.php:651 +msgid "Public Keywords:" +msgstr "Publiczne słowa kluczowe :" + +#: ../../mod/profiles.php:652 +msgid "Private Keywords:" +msgstr "Prywatne słowa kluczowe :" + +#: ../../mod/profiles.php:655 +msgid "Example: fishing photography software" +msgstr "Przykład: kończenie oprogramowania fotografii" + +#: ../../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)" + +#: ../../mod/profiles.php:657 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" + +#: ../../mod/profiles.php:658 +msgid "Tell us about yourself..." +msgstr "Napisz o sobie..." + +#: ../../mod/profiles.php:659 +msgid "Hobbies/Interests" +msgstr "Zainteresowania" + +#: ../../mod/profiles.php:660 +msgid "Contact information and Social Networks" +msgstr "Informacje kontaktowe i Sieci Społeczne" + +#: ../../mod/profiles.php:661 +msgid "Musical interests" +msgstr "Muzyka" + +#: ../../mod/profiles.php:662 +msgid "Books, literature" +msgstr "Literatura" + +#: ../../mod/profiles.php:663 +msgid "Television" +msgstr "Telewizja" + +#: ../../mod/profiles.php:664 +msgid "Film/dance/culture/entertainment" +msgstr "Film/taniec/kultura/rozrywka" + +#: ../../mod/profiles.php:665 +msgid "Love/romance" +msgstr "Miłość/romans" + +#: ../../mod/profiles.php:666 +msgid "Work/employment" +msgstr "Praca/zatrudnienie" + +#: ../../mod/profiles.php:667 +msgid "School/education" +msgstr "Szkoła/edukacja" + +#: ../../mod/profiles.php:672 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "To jest Twój publiczny profil.
Może zostać wyświetlony przez każdego kto używa internetu." + +#: ../../mod/profiles.php:721 +msgid "Edit/Manage Profiles" +msgstr "Edytuj/Zarządzaj Profilami" + +#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392 +msgid "Change profile photo" +msgstr "Zmień zdjęcie profilowe" + +#: ../../mod/profiles.php:723 ../../boot.php:1367 +msgid "Create New Profile" +msgstr "Stwórz nowy profil" + +#: ../../mod/profiles.php:734 ../../boot.php:1377 +msgid "Profile Image" +msgstr "Obraz profilowy" + +#: ../../mod/profiles.php:736 ../../boot.php:1380 +msgid "visible to everybody" +msgstr "widoczne dla wszystkich" + +#: ../../mod/profiles.php:737 ../../boot.php:1381 +msgid "Edit visibility" +msgstr "Edytuj widoczność" + +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340 +msgid "Permission denied" +msgstr "Odmowa dostępu" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Nieprawidłowa nazwa użytkownika." + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Ustawienia widoczności profilu" + +#: ../../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." + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Widoczne dla" + +#: ../../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" + +#: ../../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 "Obejrzyj %s's profil [%s]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 +msgid "Edit contact" msgstr "Edytuj kontakt" -#: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:819 -msgid "Send PM" +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "Kontakty spoza członków grupy" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0} chce być Twoim znajomym" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0} wysyła Ci wiadomość" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0} żądana rejestracja" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0} skomentował %s wpis" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0} polubił wpis %s" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0} przestał lubić post %s" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} jest teraz znajomym %s" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0} utworzony" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} zaznaczony %s'go post z #%s" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0} wspomniał Cię w swoim wpisie" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "" + +#: ../../mod/admin.php:96 ../../mod/admin.php:474 +msgid "Site" +msgstr "Strona" + +#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756 +msgid "Users" +msgstr "Użytkownicy" + +#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881 +msgid "Plugins" +msgstr "Wtyczki" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081 +msgid "Themes" +msgstr "Temat" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168 +msgid "Logs" +msgstr "Logi" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "Polecane wtyczki" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "Rejestracje użytkownika czekają na potwierdzenie." + +#: ../../mod/admin.php:182 ../../mod/admin.php:714 +msgid "Normal Account" +msgstr "Konto normalne" + +#: ../../mod/admin.php:183 ../../mod/admin.php:715 +msgid "Soapbox Account" +msgstr "Konto Soapbox" + +#: ../../mod/admin.php:184 ../../mod/admin.php:716 +msgid "Community/Celebrity Account" +msgstr "Konto społeczności/gwiazdy" + +#: ../../mod/admin.php:185 ../../mod/admin.php:717 +msgid "Automatic Friend Account" +msgstr "Automatyczny przyjaciel konta" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "Forum Prywatne" + +#: ../../mod/admin.php:206 +msgid "Message queues" +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" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "Skrót" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "Zarejestrowani użytkownicy" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "Rejestracje w toku." + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "Wersja" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "Aktywne pluginy" + +#: ../../mod/admin.php:398 +msgid "Site settings updated." +msgstr "Ustawienia strony zaktualizowane" + +#: ../../mod/admin.php:427 ../../mod/settings.php:769 +msgid "No special theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:444 +msgid "Multi user instance" +msgstr "" + +#: ../../mod/admin.php:460 +msgid "Closed" +msgstr "Zamknięty" + +#: ../../mod/admin.php:461 +msgid "Requires approval" +msgstr "Wymagane zatwierdzenie." + +#: ../../mod/admin.php:462 +msgid "Open" +msgstr "Otwórz" + +#: ../../mod/admin.php:466 +msgid "No SSL policy, links will track page SSL state" +msgstr "" + +#: ../../mod/admin.php:467 +msgid "Force all links to use SSL" +msgstr "" + +#: ../../mod/admin.php:468 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "" + +#: ../../mod/admin.php:476 ../../mod/register.php:261 +msgid "Registration" +msgstr "Rejestracja" + +#: ../../mod/admin.php:477 +msgid "File upload" +msgstr "Plik załadowano" + +#: ../../mod/admin.php:478 +msgid "Policies" +msgstr "zasady" + +#: ../../mod/admin.php:479 +msgid "Advanced" +msgstr "Zaawansowany" + +#: ../../mod/admin.php:480 +msgid "Performance" +msgstr "" + +#: ../../mod/admin.php:485 +msgid "Banner/Logo" +msgstr "Logo" + +#: ../../mod/admin.php:486 +msgid "System language" +msgstr "Język systemu" + +#: ../../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 - change theme settings" +msgstr "" + +#: ../../mod/admin.php:488 +msgid "Mobile system theme" +msgstr "" + +#: ../../mod/admin.php:488 +msgid "Theme for mobile devices" +msgstr "" + +#: ../../mod/admin.php:489 +msgid "SSL link policy" +msgstr "" + +#: ../../mod/admin.php:489 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "" + +#: ../../mod/admin.php:490 +msgid "'Share' element" +msgstr "" + +#: ../../mod/admin.php:490 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "" + +#: ../../mod/admin.php:491 +msgid "Hide help entry from navigation menu" +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 "" + +#: ../../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 "Maksymalny rozmiar zdjęcia" + +#: ../../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 "Maksymalna długość obrazu" + +#: ../../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." + +#: ../../mod/admin.php:495 +msgid "JPEG image quality" +msgstr "jakość obrazu 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 "" + +#: ../../mod/admin.php:497 +msgid "Register policy" +msgstr "Zarejestruj polisę" + +#: ../../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 "Zarejestruj tekst" + +#: ../../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 "Konto porzucone od x dni." + +#: ../../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:501 +msgid "Allowed friend domains" +msgstr "Dozwolone domeny przyjaciół" + +#: ../../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 "Dozwolone domeny e-mailowe" + +#: ../../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 "Blokuj publicznie" + +#: ../../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 "Wymuś publikację" + +#: ../../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 "" + +#: ../../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: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 "Wsparcie OpenID" + +#: ../../mod/admin.php:510 +msgid "OpenID support for registration and logins." +msgstr "" + +#: ../../mod/admin.php:511 +msgid "Fullname check" +msgstr "Sprawdzanie pełnej nazwy" + +#: ../../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 "" + +#: ../../mod/admin.php:512 +msgid "Use PHP UTF8 regular expressions" +msgstr "" + +#: ../../mod/admin.php:513 +msgid "Show Community Page" +msgstr "Pokaż stronę społeczności" + +#: ../../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 "Włącz wsparcie 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 "" + +#: ../../mod/admin.php:515 +msgid "Enable Diaspora support" +msgstr "Włączyć obsługę Diaspory" + +#: ../../mod/admin.php:515 +msgid "Provide built-in Diaspora network compatibility." +msgstr "" + +#: ../../mod/admin.php:516 +msgid "Only allow Friendica contacts" +msgstr "Dopuść tylko kontakty Friendrica" + +#: ../../mod/admin.php:516 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "" + +#: ../../mod/admin.php:517 +msgid "Verify SSL" +msgstr "Weryfikacja SSL" + +#: ../../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 "" + +#: ../../mod/admin.php:518 +msgid "Proxy user" +msgstr "Użytkownik proxy" + +#: ../../mod/admin.php:519 +msgid "Proxy URL" +msgstr "URL Proxy" + +#: ../../mod/admin.php:520 +msgid "Network timeout" +msgstr "Network timeout" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../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 "" + +#: ../../mod/admin.php:525 +msgid "Use MySQL full text engine" +msgstr "" + +#: ../../mod/admin.php:525 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "" + +#: ../../mod/admin.php:526 +msgid "Path to item cache" +msgstr "" + +#: ../../mod/admin.php:527 +msgid "Cache duration in seconds" +msgstr "" + +#: ../../mod/admin.php:527 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "" + +#: ../../mod/admin.php:528 +msgid "Path for lock file" +msgstr "" + +#: ../../mod/admin.php:529 +msgid "Temp path" +msgstr "" + +#: ../../mod/admin.php:530 +msgid "Base path to installation" +msgstr "" + +#: ../../mod/admin.php:548 +msgid "Update has been marked successful" +msgstr "" + +#: ../../mod/admin.php:558 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "" + +#: ../../mod/admin.php:561 +#, php-format +msgid "Update %s was successfully applied." +msgstr "" + +#: ../../mod/admin.php:565 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "" + +#: ../../mod/admin.php:568 +#, php-format +msgid "Update function %s could not be found." +msgstr "" + +#: ../../mod/admin.php:583 +msgid "No failed updates." +msgstr "Brak błędów aktualizacji." + +#: ../../mod/admin.php:587 +msgid "Failed Updates" +msgstr "Błąd aktualizacji" + +#: ../../mod/admin.php:588 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "" + +#: ../../mod/admin.php:589 +msgid "Mark success (if update was manually applied)" +msgstr "" + +#: ../../mod/admin.php:590 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../mod/admin.php:615 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ../../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 " + +#: ../../mod/admin.php:661 +#, php-format +msgid "User '%s' deleted" +msgstr "Użytkownik '%s' usunięty" + +#: ../../mod/admin.php:669 +#, php-format +msgid "User '%s' unblocked" +msgstr "Użytkownik '%s' odblokowany" + +#: ../../mod/admin.php:669 +#, php-format +msgid "User '%s' blocked" +msgstr "Użytkownik '%s' zablokowany" + +#: ../../mod/admin.php:745 +msgid "select all" +msgstr "Zaznacz wszystko" + +#: ../../mod/admin.php:746 +msgid "User registrations waiting for confirm" +msgstr "zarejestrowany użytkownik czeka na potwierdzenie" + +#: ../../mod/admin.php:747 +msgid "Request date" +msgstr "Data prośby" + +#: ../../mod/admin.php:747 ../../mod/admin.php:757 ../../mod/settings.php:562 +#: ../../mod/settings.php:588 ../../mod/crepair.php:148 +msgid "Name" +msgstr "Imię" + +#: ../../mod/admin.php:748 +msgid "No registrations." +msgstr "brak rejestracji" + +#: ../../mod/admin.php:749 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "Zatwierdź" + +#: ../../mod/admin.php:750 +msgid "Deny" +msgstr "Odmów" + +#: ../../mod/admin.php:752 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "Zablokuj" + +#: ../../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 "" +"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 "" + +#: ../../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 "" + +#: ../../mod/admin.php:1170 +msgid "Clear" +msgstr "Wyczyść" + +#: ../../mod/admin.php:1176 +msgid "Debugging" +msgstr "Naprawianie" + +#: ../../mod/admin.php:1177 +msgid "Log file" +msgstr "Plik logów" + +#: ../../mod/admin.php:1177 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "" + +#: ../../mod/admin.php:1178 +msgid "Log level" +msgstr "Poziom logów" + +#: ../../mod/admin.php:1227 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "Aktualizuj teraz" + +#: ../../mod/admin.php:1228 +msgid "Close" +msgstr "Zamknij" + +#: ../../mod/admin.php:1234 +msgid "FTP Host" +msgstr "Założyciel FTP" + +#: ../../mod/admin.php:1235 +msgid "FTP Path" +msgstr "Ścieżka FTP" + +#: ../../mod/admin.php:1236 +msgid "FTP User" +msgstr "Użytkownik FTP" + +#: ../../mod/admin.php:1237 +msgid "FTP Password" +msgstr "FTP Hasło" + +#: ../../mod/item.php:105 +msgid "Unable to locate original post." +msgstr "Nie można zlokalizować oryginalnej wiadomości." + +#: ../../mod/item.php:307 +msgid "Empty post discarded." +msgstr "Pusty wpis wyrzucony." + +#: ../../mod/item.php:869 +msgid "System error. Post not saved." +msgstr "Błąd. Post niezapisany." + +#: ../../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" + +#: ../../mod/item.php:896 +#, php-format +msgid "You may visit them online at %s" +msgstr "Możesz ich odwiedzić online u %s" + +#: ../../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." + +#: ../../mod/item.php:901 +#, php-format +msgid "%s posted an update." +msgstr "%s zaktualizował wpis." + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Znajomy %s" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Brak znajomych do wyświetlenia" + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "Usuń wpis" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:88 +msgid "No results." +msgstr "Brak wyników." + +#: ../../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/register.php:91 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "Szczegóły rejestracji dla %s" + +#: ../../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." + +#: ../../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ę." + +#: ../../mod/register.php:108 +msgid "Your registration can not be processed." +msgstr "Twoja rejestracja nie może zostać przeprowadzona. " + +#: ../../mod/register.php:145 +#, php-format +msgid "Registration request at %s" +msgstr "Prośba o rejestrację u %s" + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../mod/register.php:258 +msgid "Your invitation ID: " +msgstr "Twoje zaproszenia ID:" + +#: ../../mod/register.php:269 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Imię i nazwisko (np. Jan Kowalski):" + +#: ../../mod/register.php:270 +msgid "Your Email Address: " +msgstr "Twój adres email:" + +#: ../../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 " +"'nickname@$sitename'." +msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@$nazwastrony'." + +#: ../../mod/register.php:272 +msgid "Choose a nickname: " +msgstr "Wybierz pseudonim:" + +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Aplikacje" + +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Brak zainstalowanych aplikacji." + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "Konto zatwierdzone." + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "Rejestracja dla %s odwołana" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "Proszę się zalogować." + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Element nie dostępny." + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Element nie znaleziony." + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "Usuń konto" + +#: ../../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." + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "Wprowadź hasło w celu weryfikacji." + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "" + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "" + +#: ../../mod/babel.php:43 +msgid "bb2html2bb: " +msgstr "" + +#: ../../mod/babel.php:47 +msgid "bb2md: " +msgstr "" + +#: ../../mod/babel.php:51 +msgid "bb2md2html: " +msgstr "" + +#: ../../mod/babel.php:55 +msgid "bb2dia2bb: " +msgstr "" + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "" + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "" + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "Wspólni znajomi" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +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." + +#: ../../mod/contacts.php:99 +msgid "Could not locate selected profile." +msgstr "Nie można znaleźć wybranego profilu." + +#: ../../mod/contacts.php:122 +msgid "Contact updated." +msgstr "Kontakt zaktualizowany" + +#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 +msgid "Failed to update contact record." +msgstr "Aktualizacja nagrania kontaktu nie powiodła się." + +#: ../../mod/contacts.php:187 +msgid "Contact has been blocked" +msgstr "Kontakt został zablokowany" + +#: ../../mod/contacts.php:187 +msgid "Contact has been unblocked" +msgstr "Kontakt został odblokowany" + +#: ../../mod/contacts.php:201 +msgid "Contact has been ignored" +msgstr "Kontakt jest ignorowany" + +#: ../../mod/contacts.php:201 +msgid "Contact has been unignored" +msgstr "Kontakt nie jest ignorowany" + +#: ../../mod/contacts.php:220 +msgid "Contact has been archived" +msgstr "Kontakt został zarchiwizowany" + +#: ../../mod/contacts.php:220 +msgid "Contact has been unarchived" +msgstr "" + +#: ../../mod/contacts.php:244 +msgid "Do you really want to delete this contact?" +msgstr "" + +#: ../../mod/contacts.php:263 +msgid "Contact has been removed." +msgstr "Kontakt został usunięty." + +#: ../../mod/contacts.php:301 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Jesteś już znajomym z %s" + +#: ../../mod/contacts.php:305 +#, php-format +msgid "You are sharing with %s" +msgstr "Współdzielisz z %s" + +#: ../../mod/contacts.php:310 +#, php-format +msgid "%s is sharing with you" +msgstr "%s współdzieli z tobą" + +#: ../../mod/contacts.php:327 +msgid "Private communications are not available for this contact." +msgstr "Prywatna rozmowa jest niemożliwa dla tego kontaktu" + +#: ../../mod/contacts.php:330 +msgid "Never" +msgstr "Nigdy" + +#: ../../mod/contacts.php:334 +msgid "(Update was successful)" +msgstr "(Aktualizacja przebiegła pomyślnie)" + +#: ../../mod/contacts.php:334 +msgid "(Update was not successful)" +msgstr "(Aktualizacja nie powiodła się)" + +#: ../../mod/contacts.php:336 +msgid "Suggest friends" +msgstr "Osoby, które możesz znać" + +#: ../../mod/contacts.php:340 +#, php-format +msgid "Network type: %s" +msgstr "Typ sieci: %s" + +#: ../../mod/contacts.php:348 +msgid "View all contacts" +msgstr "Zobacz wszystkie kontakty" + +#: ../../mod/contacts.php:356 +msgid "Toggle Blocked status" +msgstr "" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +msgid "Unignore" +msgstr "Odblokuj" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "Ignoruj" + +#: ../../mod/contacts.php:362 +msgid "Toggle Ignored status" +msgstr "" + +#: ../../mod/contacts.php:366 +msgid "Unarchive" +msgstr "" + +#: ../../mod/contacts.php:366 +msgid "Archive" +msgstr "Archiwum" + +#: ../../mod/contacts.php:369 +msgid "Toggle Archive status" +msgstr "" + +#: ../../mod/contacts.php:372 +msgid "Repair" +msgstr "Napraw" + +#: ../../mod/contacts.php:375 +msgid "Advanced Contact Settings" +msgstr "Zaawansowane ustawienia kontaktów" + +#: ../../mod/contacts.php:381 +msgid "Communications lost with this contact!" +msgstr "" + +#: ../../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 "" +"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" + +#: ../../mod/contacts.php:389 +msgid "Contact Information / Notes" +msgstr "Informacja o kontakcie / Notka" + +#: ../../mod/contacts.php:390 +msgid "Edit contact notes" +msgstr "Edytuj notatki kontaktu" + +#: ../../mod/contacts.php:396 +msgid "Block/Unblock contact" +msgstr "Zablokuj/odblokuj kontakt" + +#: ../../mod/contacts.php:397 +msgid "Ignore contact" +msgstr "Ignoruj kontakt" + +#: ../../mod/contacts.php:398 +msgid "Repair URL settings" +msgstr "Napraw ustawienia adresu" + +#: ../../mod/contacts.php:399 +msgid "View conversations" +msgstr "Zobacz rozmowę" + +#: ../../mod/contacts.php:401 +msgid "Delete contact" +msgstr "Usuń kontakt" + +#: ../../mod/contacts.php:405 +msgid "Last update:" +msgstr "Ostatnia aktualizacja:" + +#: ../../mod/contacts.php:407 +msgid "Update public posts" +msgstr "Zaktualizuj publiczne posty" + +#: ../../mod/contacts.php:416 +msgid "Currently blocked" +msgstr "Obecnie zablokowany" + +#: ../../mod/contacts.php:417 +msgid "Currently ignored" +msgstr "Obecnie zignorowany" + +#: ../../mod/contacts.php:418 +msgid "Currently archived" +msgstr "Obecnie zarchiwizowany" + +#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "Ukryj ten kontakt przed innymi" + +#: ../../mod/contacts.php:419 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą być widoczne" + +#: ../../mod/contacts.php:470 +msgid "Suggestions" +msgstr "Sugestie" + +#: ../../mod/contacts.php:473 +msgid "Suggest potential friends" +msgstr "Sugerowani znajomi" + +#: ../../mod/contacts.php:476 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Wszystkie kontakty" + +#: ../../mod/contacts.php:479 +msgid "Show all contacts" +msgstr "Pokaż wszystkie kontakty" + +#: ../../mod/contacts.php:482 +msgid "Unblocked" +msgstr "Odblokowany" + +#: ../../mod/contacts.php:485 +msgid "Only show unblocked contacts" +msgstr "Pokaż tylko odblokowane kontakty" + +#: ../../mod/contacts.php:489 +msgid "Blocked" +msgstr "Zablokowany" + +#: ../../mod/contacts.php:492 +msgid "Only show blocked contacts" +msgstr "Pokaż tylko zablokowane kontakty" + +#: ../../mod/contacts.php:496 +msgid "Ignored" +msgstr "Zignorowany" + +#: ../../mod/contacts.php:499 +msgid "Only show ignored contacts" +msgstr "Pokaż tylko ignorowane kontakty" + +#: ../../mod/contacts.php:503 +msgid "Archived" +msgstr "" + +#: ../../mod/contacts.php:506 +msgid "Only show archived contacts" +msgstr "Pokaż tylko zarchiwizowane kontakty" + +#: ../../mod/contacts.php:510 +msgid "Hidden" +msgstr "Ukryty" + +#: ../../mod/contacts.php:513 +msgid "Only show hidden contacts" +msgstr "Pokaż tylko ukryte kontakty" + +#: ../../mod/contacts.php:561 +msgid "Mutual Friendship" +msgstr "Wzajemna przyjaźń" + +#: ../../mod/contacts.php:565 +msgid "is a fan of yours" +msgstr "jest twoim fanem" + +#: ../../mod/contacts.php:569 +msgid "you are a fan of" +msgstr "jesteś fanem" + +#: ../../mod/contacts.php:611 +msgid "Search your contacts" +msgstr "Wyszukaj w kontaktach" + +#: ../../mod/settings.php:23 ../../mod/photos.php:79 +msgid "everybody" +msgstr "wszyscy" + +#: ../../mod/settings.php:35 +msgid "Additional features" +msgstr "" + +#: ../../mod/settings.php:40 ../../mod/uexport.php:14 +msgid "Display settings" +msgstr "Wyświetl ustawienia" + +#: ../../mod/settings.php:46 ../../mod/uexport.php:20 +msgid "Connector settings" +msgstr "Ustawienia konektora" + +#: ../../mod/settings.php:51 ../../mod/uexport.php:25 +msgid "Plugin settings" +msgstr "Ustawienia wtyczek" + +#: ../../mod/settings.php:56 ../../mod/uexport.php:30 +msgid "Connected apps" +msgstr "" + +#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +msgid "Export personal data" +msgstr "Eksportuje dane personalne" + +#: ../../mod/settings.php:66 ../../mod/uexport.php:40 +msgid "Remove account" +msgstr "Usuń konto" + +#: ../../mod/settings.php:118 +msgid "Missing some important data!" +msgstr "Brakuje ważnych danych!" + +#: ../../mod/settings.php:121 ../../mod/settings.php:586 +msgid "Update" +msgstr "Zaktualizuj" + +#: ../../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ę." + +#: ../../mod/settings.php:232 +msgid "Email settings updated." +msgstr "Zaktualizowano ustawienia email." + +#: ../../mod/settings.php:247 +msgid "Features updated" +msgstr "" + +#: ../../mod/settings.php:307 +msgid "Passwords do not match. Password unchanged." +msgstr "Hasło nie pasuje. Hasło nie zmienione." + +#: ../../mod/settings.php:312 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Brak hasła niedozwolony. Hasło nie zmienione." + +#: ../../mod/settings.php:323 +msgid "Password changed." +msgstr "Hasło zostało zmianione." + +#: ../../mod/settings.php:325 +msgid "Password update failed. Please try again." +msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." + +#: ../../mod/settings.php:390 +msgid " Please use a shorter name." +msgstr "Proszę użyć krótszej nazwy." + +#: ../../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 "" + +#: ../../mod/settings.php:458 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "" + +#: ../../mod/settings.php:559 ../../mod/settings.php:585 +#: ../../mod/settings.php:621 +msgid "Add application" +msgstr "Dodaj aplikacje" + +#: ../../mod/settings.php:565 ../../mod/settings.php:591 +msgid "Redirect" +msgstr "Przekierowanie" + +#: ../../mod/settings.php:566 ../../mod/settings.php:592 +msgid "Icon url" +msgstr "Adres ikony" + +#: ../../mod/settings.php:577 +msgid "You can't edit this application." +msgstr "Nie możesz edytować tej aplikacji." + +#: ../../mod/settings.php:620 +msgid "Connected Apps" +msgstr "Powiązane aplikacje" + +#: ../../mod/settings.php:622 ../../mod/editpost.php:109 +#: ../../mod/content.php:751 ../../object/Item.php:110 +msgid "Edit" +msgstr "Edytuj" + +#: ../../mod/settings.php:624 +msgid "Client key starts with" +msgstr "Klucz klienta zaczyna się od" + +#: ../../mod/settings.php:625 +msgid "No name" +msgstr "Bez nazwy" + +#: ../../mod/settings.php:626 +msgid "Remove authorization" +msgstr "Odwołaj upoważnienie" + +#: ../../mod/settings.php:638 +msgid "No Plugin settings configured" +msgstr "Ustawienia wtyczki nieskonfigurowane" + +#: ../../mod/settings.php:660 +msgid "Off" +msgstr "Wyłącz" + +#: ../../mod/settings.php:660 +msgid "On" +msgstr "Włącz" + +#: ../../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 "" + +#: ../../mod/settings.php:681 ../../mod/settings.php:682 +msgid "enabled" +msgstr "włączony" + +#: ../../mod/settings.php:681 ../../mod/settings.php:682 +msgid "disabled" +msgstr "wyłączony" + +#: ../../mod/settings.php:682 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../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" + +#: ../../mod/settings.php:721 +msgid "Connector Settings" +msgstr "Ustawienia konektora" + +#: ../../mod/settings.php:726 +msgid "Email/Mailbox Setup" +msgstr "Ustawienia emaila/skrzynki mailowej" + +#: ../../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." + +#: ../../mod/settings.php:728 +msgid "Last successful email check:" +msgstr "Ostatni sprawdzony e-mail:" + +#: ../../mod/settings.php:730 +msgid "IMAP server name:" +msgstr "Nazwa serwera IMAP:" + +#: ../../mod/settings.php:731 +msgid "IMAP port:" +msgstr "Port IMAP:" + +#: ../../mod/settings.php:732 +msgid "Security:" +msgstr "Ochrona:" + +#: ../../mod/settings.php:733 +msgid "Email login name:" +msgstr "Login emaila:" + +#: ../../mod/settings.php:734 +msgid "Email password:" +msgstr "Hasło emaila:" + +#: ../../mod/settings.php:735 +msgid "Reply-to address:" +msgstr "Odpowiedz na adres:" + +#: ../../mod/settings.php:736 +msgid "Send public posts to all email contacts:" +msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail" + +#: ../../mod/settings.php:737 +msgid "Action after import:" +msgstr "Akcja po zaimportowaniu:" + +#: ../../mod/settings.php:737 +msgid "Mark as seen" +msgstr "Oznacz jako przeczytane" + +#: ../../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:" + +#: ../../mod/settings.php:816 +msgid "Mobile Theme:" +msgstr "" + +#: ../../mod/settings.php:817 +msgid "Update browser every xx seconds" +msgstr "Odświeżaj stronę co xx sekund" + +#: ../../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 "" + +#: ../../mod/settings.php:818 +msgid "Maximum of 100 items" +msgstr "Maksymalnie 100 elementów" + +#: ../../mod/settings.php:819 +msgid "Don't show emoticons" +msgstr "Nie pokazuj emotikonek" + +#: ../../mod/settings.php:895 +msgid "Normal Account Page" +msgstr "" + +#: ../../mod/settings.php:896 +msgid "This account is a normal personal profile" +msgstr "To konto jest normalnym osobistym profilem" + +#: ../../mod/settings.php:899 +msgid "Soapbox Page" +msgstr "" + +#: ../../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'" + +#: ../../mod/settings.php:903 +msgid "Community Forum/Celebrity Account" +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." + +#: ../../mod/settings.php:907 +msgid "Automatic Friend Page" +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ół" + +#: ../../mod/settings.php:911 +msgid "Private Forum [Experimental]" +msgstr "" + +#: ../../mod/settings.php:912 +msgid "Private forum - approved members only" +msgstr "" + +#: ../../mod/settings.php:924 +msgid "OpenID:" +msgstr "OpenID:" + +#: ../../mod/settings.php:924 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "Przeznacz to OpenID do logowania się na to konto." + +#: ../../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?" + +#: ../../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?" + +#: ../../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?" + +#: ../../mod/settings.php:952 +msgid "Hide your profile details from unknown viewers?" +msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?" + +#: ../../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" + +#: ../../mod/settings.php:963 +msgid "Allow friends to tag your posts?" +msgstr "Zezwól na oznaczanie twoich postów przez znajomych" + +#: ../../mod/settings.php:969 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "" + +#: ../../mod/settings.php:975 +msgid "Permit unknown people to send you private mail?" +msgstr "" + +#: ../../mod/settings.php:983 +msgid "Profile is not published." +msgstr "Profil nie jest opublikowany" + +#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "lub" + +#: ../../mod/settings.php:991 +msgid "Your Identity Address is" +msgstr "Twój adres identyfikacyjny to" + +#: ../../mod/settings.php:1002 +msgid "Automatically expire posts after this many days:" +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." + +#: ../../mod/settings.php:1003 +msgid "Advanced expiration settings" +msgstr "" + +#: ../../mod/settings.php:1004 +msgid "Advanced Expiration" +msgstr "" + +#: ../../mod/settings.php:1005 +msgid "Expire posts:" +msgstr "Wygasające posty:" + +#: ../../mod/settings.php:1006 +msgid "Expire personal notes:" +msgstr "Wygasające notatki osobiste:" + +#: ../../mod/settings.php:1007 +msgid "Expire starred posts:" +msgstr "" + +#: ../../mod/settings.php:1008 +msgid "Expire photos:" +msgstr "Wygasające zdjęcia:" + +#: ../../mod/settings.php:1009 +msgid "Only expire posts by others:" +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ć." + +#: ../../mod/settings.php:1049 +msgid "Basic Settings" +msgstr "Ustawienia podstawowe" + +#: ../../mod/settings.php:1051 +msgid "Email Address:" +msgstr "Adres email:" + +#: ../../mod/settings.php:1052 +msgid "Your Timezone:" +msgstr "Twoja strefa czasowa:" + +#: ../../mod/settings.php:1053 +msgid "Default Post Location:" +msgstr "Standardowa lokalizacja wiadomości:" + +#: ../../mod/settings.php:1054 +msgid "Use Browser Location:" +msgstr "Użyj położenia przeglądarki:" + +#: ../../mod/settings.php:1057 +msgid "Security and Privacy Settings" +msgstr "Ustawienia bezpieczeństwa i prywatności" + +#: ../../mod/settings.php:1059 +msgid "Maximum Friend Requests/Day:" +msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:" + +#: ../../mod/settings.php:1059 ../../mod/settings.php:1089 +msgid "(to prevent spam abuse)" +msgstr "(aby zapobiec spamowaniu)" + +#: ../../mod/settings.php:1060 +msgid "Default Post Permissions" +msgstr "Domyślne prawa dostępu wiadomości" + +#: ../../mod/settings.php:1061 +msgid "(click to open/close)" +msgstr "(kliknij by otworzyć/zamknąć)" + +#: ../../mod/settings.php:1070 ../../mod/photos.php:1140 +#: ../../mod/photos.php:1506 +msgid "Show to Groups" +msgstr "" + +#: ../../mod/settings.php:1071 ../../mod/photos.php:1141 +#: ../../mod/photos.php:1507 +msgid "Show to Contacts" +msgstr "" + +#: ../../mod/settings.php:1072 +msgid "Default Private Post" +msgstr "" + +#: ../../mod/settings.php:1073 +msgid "Default Public Post" +msgstr "" + +#: ../../mod/settings.php:1077 +msgid "Default Permissions for New Posts" +msgstr "" + +#: ../../mod/settings.php:1089 +msgid "Maximum private messages per day from unknown people:" +msgstr "" + +#: ../../mod/settings.php:1092 +msgid "Notification Settings" +msgstr "Ustawienia powiadomień" + +#: ../../mod/settings.php:1093 +msgid "By default post a status message when:" +msgstr "" + +#: ../../mod/settings.php:1094 +msgid "accepting a friend request" +msgstr "" + +#: ../../mod/settings.php:1095 +msgid "joining a forum/community" +msgstr "" + +#: ../../mod/settings.php:1096 +msgid "making an interesting profile change" +msgstr "" + +#: ../../mod/settings.php:1097 +msgid "Send a notification email when:" +msgstr "Wyślij powiadmonienia na email, kiedy:" + +#: ../../mod/settings.php:1098 +msgid "You receive an introduction" +msgstr "Otrzymałeś zaproszenie" + +#: ../../mod/settings.php:1099 +msgid "Your introductions are confirmed" +msgstr "Dane zatwierdzone" + +#: ../../mod/settings.php:1100 +msgid "Someone writes on your profile wall" +msgstr "Ktoś pisze na twojej ścianie profilowej" + +#: ../../mod/settings.php:1101 +msgid "Someone writes a followup comment" +msgstr "Ktoś pisze komentarz nawiązujący." + +#: ../../mod/settings.php:1102 +msgid "You receive a private message" +msgstr "Otrzymałeś prywatną wiadomość" + +#: ../../mod/settings.php:1103 +msgid "You receive a friend suggestion" +msgstr "Otrzymane propozycje znajomych" + +#: ../../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 "" + +#: ../../mod/settings.php:1108 +msgid "Advanced Account/Page Type Settings" +msgstr "" + +#: ../../mod/settings.php:1109 +msgid "Change the behaviour of this account for special situations" +msgstr "" + +#: ../../mod/share.php:44 +msgid "link" +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: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 "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr " UWAGA: To jest wysoce zaawansowane 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 now if you are " +"uncertain what to do on this page." +msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz 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:149 +msgid "Account Nickname" +msgstr "Nazwa konta" + +#: ../../mod/crepair.php:150 +msgid "@Tagname - overrides Name/Nickname" +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" + +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "" + +#: ../../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 "" + +#: ../../mod/delegate.php:124 +msgid "Existing Page Managers" +msgstr "" + +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "" + +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "" + +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "Dodaj" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "Brak wpisów." + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +msgstr "Zrób ten post prywatnym" + +#: ../../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 "Odpowiedź do zdalnej strony nie została zrozumiana" + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "Nieoczekiwana odpowiedź od strony zdalnej" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "Potwierdzenie ukończone poprawnie" + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "Zdalna strona zgłoszona:" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później." + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "Nieudane lub unieważnione wprowadzenie." + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "Nie można ustawić zdjęcia kontaktu." + +#: ../../mod/dfrn_confirm.php:562 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nie znaleziono użytkownika dla '%s'" + +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "Klucz kodujący jest najwyraźniej zepsuty" + +#: ../../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." + +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "Nie znaleziono kontaktu na naszej stronie" + +#: ../../mod/dfrn_confirm.php:618 +#, php-format +msgid "Site public key not available in contact record for URL %s." +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/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/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/dfrn_confirm.php:751 +#, php-format +msgid "Connection accepted at %s" +msgstr "Połączenie zaakceptowane %s" + +#: ../../mod/dfrn_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "" + +#: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "" + +#: ../../mod/dfrn_request.php:93 +msgid "This introduction has already been accepted." +msgstr "To wprowadzenie zostało już zaakceptowane." + +#: ../../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." + +#: ../../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." + +#: ../../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." + +#: ../../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" + +#: ../../mod/dfrn_request.php:170 +msgid "Introduction complete." +msgstr "wprowadzanie zakończone." + +#: ../../mod/dfrn_request.php:209 +msgid "Unrecoverable protocol error." +msgstr "Nieodwracalny błąd protokołu." + +#: ../../mod/dfrn_request.php:237 +msgid "Profile unavailable." +msgstr "Profil niedostępny." + +#: ../../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ń." + +#: ../../mod/dfrn_request.php:263 +msgid "Spam protection measures have been invoked." +msgstr "Ochrona przed spamem została wywołana." + +#: ../../mod/dfrn_request.php:264 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Przyjaciele namawiają do spróbowania za 24h." + +#: ../../mod/dfrn_request.php:326 +msgid "Invalid locator" +msgstr "Niewłaściwy lokalizator " + +#: ../../mod/dfrn_request.php:335 +msgid "Invalid email address." +msgstr "Nieprawidłowy adres email." + +#: ../../mod/dfrn_request.php:362 +msgid "This account has not been configured for email. Request failed." +msgstr "" + +#: ../../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." + +#: ../../mod/dfrn_request.php:471 +msgid "You have already introduced yourself here." +msgstr "Już się tu przedstawiłeś." + +#: ../../mod/dfrn_request.php:475 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Widocznie jesteście już znajomymi z %s" + +#: ../../mod/dfrn_request.php:496 +msgid "Invalid profile URL." +msgstr "Zły adres URL profilu." + +#: ../../mod/dfrn_request.php:592 +msgid "Your introduction has been sent." +msgstr "Twoje dane zostały wysłane." + +#: ../../mod/dfrn_request.php:645 +msgid "Please login to confirm introduction." +msgstr "Proszę zalogować się do potwierdzenia wstępu." + +#: ../../mod/dfrn_request.php:659 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. " + +#: ../../mod/dfrn_request.php:670 +msgid "Hide this contact" +msgstr "Ukryj kontakt" + +#: ../../mod/dfrn_request.php:673 +#, php-format +msgid "Welcome home %s." +msgstr "Welcome home %s." + +#: ../../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." + +#: ../../mod/dfrn_request.php:675 +msgid "Confirm" +msgstr "Potwierdź" + +#: ../../mod/dfrn_request.php:811 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"communications networks:" +msgstr "" + +#: ../../mod/dfrn_request.php:827 +msgid "Connect as an email follower (Coming soon)" +msgstr "" + +#: ../../mod/dfrn_request.php:829 +msgid "" +"If you are not yet a member of the free social web, follow this link to find a public" +" Friendica site and join us today." +msgstr "" + +#: ../../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 "" + +#: ../../mod/dfrn_request.php:834 +msgid "Please answer the following:" +msgstr "Proszę odpowiedzieć na poniższe:" + +#: ../../mod/dfrn_request.php:835 +#, php-format +msgid "Does %s know you?" +msgstr "Czy %s Cię zna?" + +#: ../../mod/dfrn_request.php:838 +msgid "Add a personal note:" +msgstr "Dodaj osobistą notkę:" + +#: ../../mod/dfrn_request.php:841 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Sieć społeczna" + +#: ../../mod/dfrn_request.php:843 +#, php-format +msgid "" +" - please do not use this form. Instead, enter %s into your Diaspora search" +" bar." +msgstr "" + +#: ../../mod/dfrn_request.php:844 +msgid "Your Identity Address:" +msgstr "Twój zidentyfikowany adres:" + +#: ../../mod/dfrn_request.php:847 +msgid "Submit Request" +msgstr "Wyślij zgłoszenie" + +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "" + +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "" + +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "" + +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "Ignoruj/Ukryj" + +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "Szukaj osób" + +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "brak dopasowań" + +#: ../../mod/display.php:99 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +msgstr "Ograniczony dostęp do tego konta" + +#: ../../mod/display.php:177 +msgid "Item has been removed." +msgstr "Przedmiot został usunięty" + +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "Tag usunięty" + +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Usuń pozycję Tag" + +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Wybierz tag do usunięcia" + +#: ../../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" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "" + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "d, M d " + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "Edytuj wydarzenie" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "Stwórz nowe wydarzenie" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "godzina:minuta" + +#: ../../mod/events.php:456 +msgid "Event details" +msgstr "Szczegóły wydarzenia" + +#: ../../mod/events.php:457 +#, php-format +msgid "Format is %s %s. Starting date and Title are required." +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" + +#: ../../mod/events.php:464 +msgid "Event Finishes:" +msgstr "Zakończenie wydarzenia:" + +#: ../../mod/events.php:467 +msgid "Adjust for viewer timezone" +msgstr "Dopasuj dla strefy czasowej widza" + +#: ../../mod/events.php:469 +msgid "Description:" +msgstr "Opis:" + +#: ../../mod/events.php:473 +msgid "Title:" +msgstr "Tytuł:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "Udostępnij te wydarzenie" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "Pliki" + +#: ../../mod/uexport.php:72 +msgid "Export account" +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 "" + +#: ../../mod/uexport.php:73 +msgid "Export all" +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 "" + +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "- wybierz -" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "Przenieś konto" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "" + +#: ../../mod/uimport.php:69 +msgid "" +"This feature is experimental. We can't import contacts from the OStatus " +"network (statusnet/identi.ca) or from Diaspora" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your accont, go to \"Settings->Export your porsonal data\" and " +"select \"Export account\"" +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 "" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "Kontakt dodany" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "To jest Friendica, wersja" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "otwierane na serwerze" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "Odwiedź Friendica.com, aby dowiedzieć się więcej o projekcie Friendica." + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Reportowanie błędów i problemów: proszę odwiedź" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "Zainstalowane pluginy/dodatki/aplikacje:" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "Brak zainstalowanych pluginów/dodatków/aplikacji" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Propozycja znajomych wysłana." + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Zaproponuj znajomych" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Zaproponuj znajomych dla %s" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "Grupa utworzona." + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "Nie mogę stworzyć grupy" + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "Nie znaleziono grupy" + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "Nazwa grupy zmieniona" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "Stwórz grupę znajomych." + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "Nazwa grupy: " + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "Grupa usunięta." + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "Nie można usunąć grupy." + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "Edytor grupy" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "Członkowie" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Brak profilu" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "Pomoc:" + +#: ../../mod/help.php:90 ../../index.php:226 +msgid "Not Found" +msgstr "Nie znaleziono" + +#: ../../mod/help.php:93 ../../index.php:229 +msgid "Page not found." +msgstr "Strona nie znaleziona." + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "brak kontaktów" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Brak dostępu" + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Plik przekracza dozwolony rozmiar %d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "Przesyłanie pliku nie powiodło się." + +#: ../../mod/install.php:117 +msgid "Friendica Social Communications Server - Setup" +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." +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." + +#: ../../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ń ." + +#: ../../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ą." + +#: ../../mod/install.php:234 +msgid "Database Server Name" +msgstr "Baza danych - Nazwa serwera" + +#: ../../mod/install.php:235 +msgid "Database Login Name" +msgstr "Baza danych - Nazwa loginu" + +#: ../../mod/install.php:236 +msgid "Database Login Password" +msgstr "Baza danych - Hasło loginu" + +#: ../../mod/install.php:237 +msgid "Database Name" +msgstr "Baza danych - Nazwa" + +#: ../../mod/install.php:238 ../../mod/install.php:277 +msgid "Site administrator email address" +msgstr "Adres e-mail administratora strony" + +#: ../../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 "" + +#: ../../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" + +#: ../../mod/install.php:267 +msgid "Site settings" +msgstr "Ustawienia strony" + +#: ../../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" + +#: ../../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 'Activating scheduled tasks'" +msgstr "" + +#: ../../mod/install.php:325 +msgid "PHP executable path" +msgstr "" + +#: ../../mod/install.php:325 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../mod/install.php:330 +msgid "Command line PHP" +msgstr "Linia komend PHP" + +#: ../../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\"." + +#: ../../mod/install.php:340 +msgid "This is required for message delivery to work." +msgstr "To jest wymagane do dostarczenia wiadomości do pracy." + +#: ../../mod/install.php:342 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../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 ." + +#: ../../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\"." + +#: ../../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" +msgstr "" + +#: ../../mod/install.php:376 +msgid "mysqli PHP module" +msgstr "Moduł mysql PHP" + +#: ../../mod/install.php:377 +msgid "mb_string PHP module" +msgstr "Moduł mb_string PHP" + +#: ../../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 "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." + +#: ../../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." + +#: ../../mod/install.php:398 +msgid "Error: openssl PHP module required but not installed." +msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany." + +#: ../../mod/install.php:402 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany." + +#: ../../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" + +#: ../../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ć." + +#: ../../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 "" + +#: ../../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 jest zapisywalny" + +#: ../../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 "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 "

What next

" +msgstr "

Co dalej

" + +#: ../../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." + +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 +#, php-format +msgid "Image exceeds size limit of %d" +msgstr "Rozmiar obrazka przekracza limit %d" + +#: ../../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ę." + +#: ../../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ę" + +#: ../../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 : Niepoprawny adres email." + +#: ../../mod/invite.php:73 +msgid "Please join us on Friendica" +msgstr "Dołącz do nas na 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 : Dostarczenie wiadomości nieudane." + +#: ../../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 ." + +#: ../../mod/invite.php:112 +msgid "You have no more invitations available" +msgstr "Nie masz więcej zaproszeń" + +#: ../../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 "" + +#: ../../mod/invite.php:122 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +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 "" + +#: ../../mod/invite.php:126 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "" + +#: ../../mod/invite.php:132 +msgid "Send invitations" +msgstr "Wyślij zaproszenia" + +#: ../../mod/invite.php:133 +msgid "Enter email addresses, one per line:" +msgstr "Wprowadź adresy email, jeden na linijkę:" + +#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "Twoja wiadomość:" + +#: ../../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 "" + +#: ../../mod/invite.php:137 +msgid "You will need to supply this invitation code: $invite_code" +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ą :" + +#: ../../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 "" + +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "" + +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "Nie wybrano odbiorcy." + +#: ../../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 "Wiadomość nie może zostać wysłana" + +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "" + +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +msgstr "Wysłano." + +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "Brak odbiorcy." + +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" msgstr "Wyślij prywatną wiadomość" -#: ../../include/conversation.php:207 +#: ../../mod/wallmessage.php:143 #, php-format -msgid "%1$s poked %2$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 "" -#: ../../include/conversation.php:291 -msgid "post/item" +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "Do:" + +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "Temat:" + +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +msgstr "Zmiana czasu" + +#: ../../mod/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -#: ../../include/conversation.php:292 +#: ../../mod/localtime.php:30 #, php-format -msgid "%1$s marked %2$s's %3$s as favorite" -msgstr "" +msgid "UTC time: %s" +msgstr "Czas UTC %s" -#: ../../include/conversation.php:621 ../../object/Item.php:249 -msgid "Categories:" -msgstr "Kategorie:" - -#: ../../include/conversation.php:622 ../../object/Item.php:250 -msgid "Filed under:" -msgstr "" - -#: ../../include/conversation.php:710 -msgid "remove" -msgstr "usuń" - -#: ../../include/conversation.php:714 -msgid "Delete Selected Items" -msgstr "Usuń zaznaczone elementy" - -#: ../../include/conversation.php:813 -msgid "Follow Thread" -msgstr "" - -#: ../../include/conversation.php:882 +#: ../../mod/localtime.php:33 #, php-format -msgid "%s likes this." -msgstr "%s lubi to." +msgid "Current timezone: %s" +msgstr "Obecna strefa czasowa: %s" -#: ../../include/conversation.php:882 +#: ../../mod/localtime.php:36 #, php-format -msgid "%s doesn't like this." -msgstr "%s nie lubi tego." +msgid "Converted localtime: %s" +msgstr "Zmień strefę czasową: %s" -#: ../../include/conversation.php:887 +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Wybierz swoją strefę czasową:" + +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Dane prywatne nie są dostępne zdalnie " + +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "Nie znaleziono ważnego konta." + +#: ../../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." + +#: ../../mod/lostpass.php:44 #, php-format -msgid "%2$d people like this" -msgstr "" +msgid "Password reset requested at %s" +msgstr "Prośba o reset hasła na %s" -#: ../../include/conversation.php:890 +#: ../../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ę." + +#: ../../mod/lostpass.php:84 ../../boot.php:1072 +msgid "Password Reset" +msgstr "Zresetuj hasło" + +#: ../../mod/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "Twoje hasło zostało zresetowane na twoje życzenie." + +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "Twoje nowe hasło to" + +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "Zapisz lub skopiuj swoje nowe hasło - i wtedy" + +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "Kliknij tutaj aby zalogować" + +#: ../../mod/lostpass.php:89 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." + +#: ../../mod/lostpass.php:107 #, php-format -msgid "%2$d people don't like this" +msgid "Your password has been changed at %s" msgstr "" -#: ../../include/conversation.php:904 -msgid "and" -msgstr "i" +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "Zapomniałeś hasła?" -#: ../../include/conversation.php:910 +#: ../../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." + +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "Pseudonim lub Email:" + +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "Zresetuj" + +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "" + +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "Zarządzaj Tożsamościami i/lub Stronami." + +#: ../../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 "" + +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "Wybierz tożsamość do zarządzania:" + +#: ../../mod/match.php:12 +msgid "Profile Match" +msgstr "Profil zgodny " + +#: ../../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." + +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "interesuje się:" + +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "Niezdolny do uzyskania informacji kontaktowych." + +#: ../../mod/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "" + +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "Wiadomość usunięta." + +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "Rozmowa usunięta." + +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "Brak wiadomości." + +#: ../../mod/message.php:378 #, php-format -msgid ", and %d other people" -msgstr ", i %d innych ludzi" +msgid "Unknown sender - %s" +msgstr "" -#: ../../include/conversation.php:912 +#: ../../mod/message.php:381 #, php-format -msgid "%s like this." -msgstr "%s lubi to." +msgid "You and %s" +msgstr "Ty i %s" -#: ../../include/conversation.php:912 +#: ../../mod/message.php:384 #, php-format -msgid "%s don't like this." -msgstr "%s nie lubi tego." +msgid "%s and You" +msgstr "%s i ty" -#: ../../include/conversation.php:939 ../../include/conversation.php:957 -msgid "Visible to everybody" -msgstr "Widoczne dla wszystkich" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "Usuń rozmowę" -#: ../../include/conversation.php:941 ../../include/conversation.php:959 -msgid "Please enter a video link/URL:" -msgstr "Podaj link do filmu" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M R - g:m AM/PM" -#: ../../include/conversation.php:942 ../../include/conversation.php:960 -msgid "Please enter an audio link/URL:" -msgstr "Podaj link do muzyki" - -#: ../../include/conversation.php:943 ../../include/conversation.php:961 -msgid "Tag term:" -msgstr "" - -#: ../../include/conversation.php:945 ../../include/conversation.php:963 -msgid "Where are you right now?" -msgstr "Gdzie teraz jesteś?" - -#: ../../include/conversation.php:946 -msgid "Delete item(s)?" -msgstr "" - -#: ../../include/conversation.php:988 -msgid "Post to Email" -msgstr "Wyślij poprzez email" - -#: ../../include/conversation.php:1044 -msgid "permissions" -msgstr "zezwolenia" - -#: ../../include/conversation.php:1068 -msgid "Post to Groups" -msgstr "" - -#: ../../include/conversation.php:1069 -msgid "Post to Contacts" -msgstr "" - -#: ../../include/conversation.php:1070 -msgid "Private post" -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." -msgstr "" - -#: ../../include/plugin.php:442 -msgid "This action is not available under your subscription plan." -msgstr "" - -#: ../../boot.php:640 -msgid "Delete this item?" -msgstr "Usunąć ten element?" - -#: ../../boot.php:643 -msgid "show fewer" -msgstr "Pokaż mniej" - -#: ../../boot.php:899 +#: ../../mod/message.php:411 #, php-format -msgid "Update %s failed. See error logs." +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] " %d wiadomość" +msgstr[1] " %d wiadomości" +msgstr[2] " %d wiadomości" + +#: ../../mod/message.php:450 +msgid "Message not available." +msgstr "Wiadomość nie jest dostępna." + +#: ../../mod/message.php:520 +msgid "Delete message" +msgstr "Usuń wiadomość" + +#: ../../mod/message.php:548 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." msgstr "" -#: ../../boot.php:901 +#: ../../mod/message.php:552 +msgid "Send Reply" +msgstr "Odpowiedz" + +#: ../../mod/mood.php:133 +msgid "Mood" +msgstr "Nastrój" + +#: ../../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" + +#: ../../mod/network.php:181 +msgid "Search Results For:" +msgstr "Szukaj wyników dla:" + +#: ../../mod/network.php:397 +msgid "Commented Order" +msgstr "Porządek wg komentarzy" + +#: ../../mod/network.php:400 +msgid "Sort by Comment Date" +msgstr "Sortuj po dacie komentarza" + +#: ../../mod/network.php:403 +msgid "Posted Order" +msgstr "Porządek wg wpisów" + +#: ../../mod/network.php:406 +msgid "Sort by Post Date" +msgstr "Sortuj po dacie posta" + +#: ../../mod/network.php:444 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "Osobiste" + +#: ../../mod/network.php:447 +msgid "Posts that mention or involve you" +msgstr "" + +#: ../../mod/network.php:453 +msgid "New" +msgstr "Nowy" + +#: ../../mod/network.php:456 +msgid "Activity Stream - by date" +msgstr "" + +#: ../../mod/network.php:462 +msgid "Shared Links" +msgstr "Współdzielone linki" + +#: ../../mod/network.php:465 +msgid "Interesting Links" +msgstr "Interesujące linki" + +#: ../../mod/network.php:471 +msgid "Starred" +msgstr "" + +#: ../../mod/network.php:474 +msgid "Favourite Posts" +msgstr "Ulubione posty" + +#: ../../mod/network.php:546 #, php-format -msgid "Update Error at %s" +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." + +#: ../../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" + +#: ../../mod/network.php:596 ../../mod/content.php:119 +msgid "No such group" +msgstr "Nie ma takiej grupy" + +#: ../../mod/network.php:607 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "Grupa jest pusta" + +#: ../../mod/network.php:611 ../../mod/content.php:134 +msgid "Group: " +msgstr "Grupa:" + +#: ../../mod/network.php:621 +msgid "Contact: " +msgstr "Kontakt: " + +#: ../../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 " + +#: ../../mod/network.php:628 +msgid "Invalid contact." +msgstr "Zły kontakt" + +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "Niedostępne." + +#: ../../mod/photos.php:51 ../../boot.php:1878 +msgid "Photo Albums" +msgstr "Albumy zdjęć" + +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "Wyślij nowe zdjęcie" + +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "Informacje o kontakcie nie dostępne." + +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "Album nie znaleziony" + +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "Usuń album" + +#: ../../mod/photos.php:197 +msgid "Do you really want to delete this photo album and all its photos?" msgstr "" -#: ../../boot.php:1011 -msgid "Create a New Account" -msgstr "Załóż nowe konto" +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "Usuń zdjęcie" -#: ../../boot.php:1039 -msgid "Nickname or Email address: " -msgstr "Nick lub adres email:" - -#: ../../boot.php:1040 -msgid "Password: " -msgstr "Hasło:" - -#: ../../boot.php:1041 -msgid "Remember me" -msgstr "Zapamiętaj mnie" - -#: ../../boot.php:1044 -msgid "Or login using OpenID: " -msgstr "Lub zaloguj się korzystając z OpenID:" - -#: ../../boot.php:1050 -msgid "Forgot your password?" -msgstr "Zapomniałeś swojego hasła?" - -#: ../../boot.php:1053 -msgid "Website Terms of Service" +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" msgstr "" -#: ../../boot.php:1054 -msgid "terms of service" +#: ../../mod/photos.php:656 +#, php-format +msgid "%1$s was tagged in %2$s by %3$s" msgstr "" -#: ../../boot.php:1056 -msgid "Website Privacy Policy" +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "zdjęcie" + +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "Plik obrazka jest pusty." + +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "Nie zaznaczono zdjęć" + +#: ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "Dostęp do tego obiektu jest ograniczony." + +#: ../../mod/photos.php:1088 +#, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." msgstr "" -#: ../../boot.php:1057 -msgid "privacy policy" +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "Prześlij zdjęcia" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "Nazwa nowego albumu:" + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "lub istniejąca nazwa albumu:" + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "Nie pokazuj postów statusu dla tego wysłania" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "Uprawnienia" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" msgstr "" -#: ../../boot.php:1186 -msgid "Requested account is not available." +#: ../../mod/photos.php:1143 +msgid "Public Photo" msgstr "" -#: ../../boot.php:1265 -msgid "Edit profile" -msgstr "Edytuj profil" +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "Edytuj album" -#: ../../boot.php:1331 -msgid "Message" -msgstr "Wiadomość" +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "Najpierw pokaż najnowsze" -#: ../../boot.php:1339 -msgid "Manage/edit profiles" -msgstr "Zarządzaj profilami" +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "Najpierw pokaż najstarsze" -#: ../../boot.php:1461 ../../boot.php:1547 -msgid "g A l F d" -msgstr "g A I F d" +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "Zobacz zdjęcie" -#: ../../boot.php:1462 ../../boot.php:1548 -msgid "F d" +#: ../../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." + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "Zdjęcie niedostępne" + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "Zobacz zdjęcie" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "Edytuj zdjęcie" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "Ustaw jako zdjęcie profilowe" + +#: ../../mod/photos.php:1351 ../../mod/content.php:643 +#: ../../object/Item.php:106 +msgid "Private Message" +msgstr "Wiadomość prywatna" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "Zobacz w pełnym rozmiarze" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "Tagi:" + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[Usunąć znacznik]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" msgstr "" -#: ../../boot.php:1507 ../../boot.php:1588 -msgid "[today]" -msgstr "[dziś]" +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "" -#: ../../boot.php:1519 -msgid "Birthday Reminders" -msgstr "Przypomnienia o urodzinach" +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "Nazwa nowego albumu" -#: ../../boot.php:1520 -msgid "Birthdays this week:" -msgstr "Urodziny w tym tygodniu:" +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "Zawartość" -#: ../../boot.php:1581 -msgid "[No description]" -msgstr "[Brak opisu]" +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "Dodaj tag" -#: ../../boot.php:1599 -msgid "Event Reminders" -msgstr "Przypominacze wydarzeń" +#: ../../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" -#: ../../boot.php:1600 -msgid "Events this week:" -msgstr "Wydarzenia w tym tygodniu:" +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "" -#: ../../boot.php:1836 -msgid "Status Messages and Posts" -msgstr "Status wiadomości i postów" +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "" -#: ../../boot.php:1843 -msgid "Profile Details" -msgstr "Szczegóły profilu" +#: ../../mod/photos.php:1529 ../../mod/content.php:707 +#: ../../object/Item.php:223 +msgid "I like this (toggle)" +msgstr "Lubię to (zmień)" -#: ../../boot.php:1860 -msgid "Events and Calendar" -msgstr "Wydarzenia i kalendarz" +#: ../../mod/photos.php:1530 ../../mod/content.php:708 +#: ../../object/Item.php:224 +msgid "I don't like this (toggle)" +msgstr "Nie lubię (zmień)" -#: ../../boot.php:1867 -msgid "Only You Can See This" -msgstr "Tylko ty możesz to zobaczyć" +#: ../../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" -#: ../../object/Item.php:261 +#: ../../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" + +#: ../../mod/photos.php:1784 +msgid "View Album" +msgstr "Zobacz album" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "Ostatnio dodane zdjęcia" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Witamy na Friendica" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Lista nowych członków" + +#: ../../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." + +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "" + +#: ../../mod/newmember.php:18 +msgid "" +"On your Quick Start 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 "Idź do swoich ustawień" + +#: ../../mod/newmember.php:26 +msgid "" +"On your Settings 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 "" + +#: ../../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 "" + +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "Wyślij zdjęcie profilowe" + +#: ../../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." + +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "Edytuj własny profil" + +#: ../../mod/newmember.php:38 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "" + +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "Słowa kluczowe profilu" + +#: ../../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 "" + +#: ../../mod/newmember.php:44 +msgid "Connecting" +msgstr "Łączę się..." + +#: ../../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 "" + +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "" + +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "Importuję emaile..." + +#: ../../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 "" + +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "Idź do strony z Twoimi kontaktami" + +#: ../../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 Add New Contact dialog." +msgstr "" + +#: ../../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 Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "" + +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "Poszukiwanie Nowych Ludzi" + +#: ../../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 "" + +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "Grupuj Swoje kontakty" + +#: ../../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 "" + +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "Dlaczego moje posty nie są publiczne?" + +#: ../../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 "Otrzymywanie pomocy" + +#: ../../mod/newmember.php:82 +msgid "Go to the Help Section" +msgstr "Idź do części o pomocy" + +#: ../../mod/newmember.php:82 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "" + +#: ../../mod/profile.php:21 ../../boot.php:1246 +msgid "Requested profile is not available." +msgstr "Żądany profil jest niedostępny" + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "Wskazówki dla nowych użytkowników" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Niewłaściwy identyfikator wymagania." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "Odrzuć" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "System" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "Pokaż ignorowane żądania" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "Ukryj ignorowane żądania" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "Typ zawiadomień:" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "Propozycja znajomych" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "zaproponowane przez %s" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "jeśli odpowiednie" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "Twierdzi, że go znasz:" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "tak" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "nie" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "Zatwierdź jako:" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "Znajomy" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "Fan" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "Prośba o dodanie do przyjaciół/powiązanych" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "Nowy obserwator" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "Brak wstępu." + +#: ../../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" + +#: ../../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" + +#: ../../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" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s dodał nowy wpis" + +#: ../../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" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "Nie ma więcej powiadomień sieciowych" + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "Powiadomienia z sieci" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "Nie ma więcej powiadomień systemowych." + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "Powiadomienia systemowe" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "Nie ma więcej powiadomień osobistych" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "Prywatne powiadomienia" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "Nie ma więcej powiadomień domu" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "Powiadomienia z instancji" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "Post dodany pomyślnie" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "" + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +msgstr "Obrazek załadowany, ale oprawanie powiodła się." + +#: ../../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ę." + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "" + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "Nie udało się przetworzyć obrazu." + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "Wyślij plik:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "Wybierz profil:" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "Pomiń ten krok" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "wybierz zdjęcie z twojego albumu" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "Przytnij zdjęcie" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Proszę dostosować oprawę obrazka w celu optymalizacji oglądania." + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "Zakończ Edycję " + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "Zdjęcie wczytano pomyślnie " + +#: ../../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" + +#: ../../mod/content.php:707 ../../object/Item.php:223 +msgid "like" +msgstr "polub" + +#: ../../mod/content.php:708 ../../object/Item.php:224 +msgid "dislike" +msgstr "Nie lubię" + +#: ../../mod/content.php:710 ../../object/Item.php:226 +msgid "Share this" +msgstr "Udostępnij to" + +#: ../../mod/content.php:710 ../../object/Item.php:226 +msgid "share" +msgstr "udostępnij" + +#: ../../mod/content.php:734 ../../object/Item.php:644 +msgid "Bold" +msgstr "Pogrubienie" + +#: ../../mod/content.php:735 ../../object/Item.php:645 +msgid "Italic" +msgstr "Kursywa" + +#: ../../mod/content.php:736 ../../object/Item.php:646 +msgid "Underline" +msgstr "Podkreślenie" + +#: ../../mod/content.php:737 ../../object/Item.php:647 +msgid "Quote" +msgstr "Cytat" + +#: ../../mod/content.php:738 ../../object/Item.php:648 +msgid "Code" +msgstr "Kod" + +#: ../../mod/content.php:739 ../../object/Item.php:649 +msgid "Image" +msgstr "Obraz" + +#: ../../mod/content.php:740 ../../object/Item.php:650 +msgid "Link" +msgstr "Link" + +#: ../../mod/content.php:741 ../../object/Item.php:651 +msgid "Video" +msgstr "Video" + +#: ../../mod/content.php:776 ../../object/Item.php:202 +msgid "add star" +msgstr "dodaj gwiazdkę" + +#: ../../mod/content.php:777 ../../object/Item.php:203 +msgid "remove star" +msgstr "anuluj gwiazdkę" + +#: ../../mod/content.php:778 ../../object/Item.php:204 +msgid "toggle star status" +msgstr "włącz status gwiazdy" + +#: ../../mod/content.php:781 ../../object/Item.php:207 +msgid "starred" +msgstr "" + +#: ../../mod/content.php:782 ../../object/Item.php:212 +msgid "add tag" +msgstr "dodaj tag" + +#: ../../mod/content.php:786 ../../object/Item.php:123 +msgid "save to folder" +msgstr "zapisz w folderze" + +#: ../../mod/content.php:877 ../../object/Item.php:299 +msgid "to" +msgstr "do" + +#: ../../mod/content.php:878 ../../object/Item.php:301 +msgid "Wall-to-Wall" +msgstr "Wall-to-Wall" + +#: ../../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" + +#: ../../view/theme/cleanzero/config.php:83 +msgid "Set resize level for images in posts and comments (width and height)" +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" +msgstr "" + +#: ../../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 "" + +#: ../../view/theme/diabook/config.php:157 +msgid "Set resolution for middle column" +msgstr "" + +#: ../../view/theme/diabook/config.php:158 +msgid "Set color scheme" +msgstr "Zestaw kolorów" + +#: ../../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 "Strony społecznościowe" + +#: ../../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 "" + +#: ../../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" + +#: ../../view/theme/diabook/config.php:168 +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +msgid "Find Friends" +msgstr "Znajdź znajomych" + +#: ../../view/theme/diabook/config.php:169 +msgid "Last tweets" +msgstr "Ostatnie tweetnięcie" + +#: ../../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" + +#: ../../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" + +#: ../../view/theme/diabook/config.php:172 +#: ../../view/theme/diabook/theme.php:434 +#: ../../view/theme/diabook/theme.php:641 +msgid "Last likes" +msgstr "Ostatnie polubienia" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "Twoje kontakty" + +#: ../../view/theme/diabook/theme.php:517 +msgid "Local Directory" +msgstr "" + +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" +msgstr "" + +#: ../../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 "" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "Zestaw kolorów" + +#: ../../view/theme/quattro/config.php:67 +msgid "Alignment" +msgstr "Wyrównanie" + +#: ../../view/theme/quattro/config.php:67 +msgid "Left" +msgstr "Lewo" + +#: ../../view/theme/quattro/config.php:67 +msgid "Center" +msgstr "Środek" + +#: ../../view/theme/quattro/config.php:69 +msgid "Posts font size" +msgstr "" + +#: ../../view/theme/quattro/config.php:70 +msgid "Textareas font size" +msgstr "" + #: ../../index.php:400 msgid "toggle mobile" msgstr "" -#: ../../addon.old/bg/bg.php:51 -msgid "Bg settings updated." +#: ../../boot.php:650 +msgid "Delete this item?" +msgstr "Usunąć ten element?" + +#: ../../boot.php:653 +msgid "show fewer" +msgstr "Pokaż mniej" + +#: ../../boot.php:920 +#, php-format +msgid "Update %s failed. See error logs." msgstr "" -#: ../../addon.old/bg/bg.php:82 -msgid "Bg Settings" +#: ../../boot.php:922 +#, php-format +msgid "Update Error at %s" msgstr "" -#: ../../addon.old/drpost/drpost.php:35 -msgid "Post to Drupal" -msgstr "Opublikuj na Drupal" +#: ../../boot.php:1032 +msgid "Create a New Account" +msgstr "Załóż nowe konto" -#: ../../addon.old/drpost/drpost.php:72 -msgid "Drupal Post Settings" -msgstr "Ustawienia wpisów Drupala" +#: ../../boot.php:1060 +msgid "Nickname or Email address: " +msgstr "Nick lub adres email:" -#: ../../addon.old/drpost/drpost.php:74 -msgid "Enable Drupal Post Plugin" -msgstr "Włącz plugin wpisów Drupala" +#: ../../boot.php:1061 +msgid "Password: " +msgstr "Hasło:" -#: ../../addon.old/drpost/drpost.php:79 -msgid "Drupal username" -msgstr "Użytkownik Drupala" +#: ../../boot.php:1062 +msgid "Remember me" +msgstr "Zapamiętaj mnie" -#: ../../addon.old/drpost/drpost.php:84 -msgid "Drupal password" -msgstr "hasło do Drupal" +#: ../../boot.php:1065 +msgid "Or login using OpenID: " +msgstr "Lub zaloguj się korzystając z OpenID:" -#: ../../addon.old/drpost/drpost.php:89 -msgid "Post Type - article,page,or blog" +#: ../../boot.php:1071 +msgid "Forgot your password?" +msgstr "Zapomniałeś swojego hasła?" + +#: ../../boot.php:1074 +msgid "Website Terms of Service" 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" +#: ../../boot.php:1075 +msgid "terms of service" msgstr "" -#: ../../addon.old/drpost/drpost.php:104 -msgid "Post to Drupal by default" +#: ../../boot.php:1077 +msgid "Website Privacy Policy" msgstr "" -#: ../../addon.old/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" +#: ../../boot.php:1078 +msgid "privacy policy" msgstr "" -#: ../../addon.old/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" +#: ../../boot.php:1207 +msgid "Requested account is not available." msgstr "" -#: ../../addon.old/oembed.old/oembed.php:71 -msgid "URL to embed:" -msgstr "URL do osadzenia" +#: ../../boot.php:1286 ../../boot.php:1390 +msgid "Edit profile" +msgstr "Edytuj profil" -#: ../../addon.old/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "Login Tumblr" +#: ../../boot.php:1352 +msgid "Message" +msgstr "Wiadomość" -#: ../../addon.old/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "Hasło do twojego Tumblra" +#: ../../boot.php:1360 +msgid "Manage/edit profiles" +msgstr "Zarządzaj profilami" + +#: ../../boot.php:1489 ../../boot.php:1575 +msgid "g A l F d" +msgstr "g A I F d" + +#: ../../boot.php:1490 ../../boot.php:1576 +msgid "F d" +msgstr "" + +#: ../../boot.php:1535 ../../boot.php:1616 +msgid "[today]" +msgstr "[dziś]" + +#: ../../boot.php:1547 +msgid "Birthday Reminders" +msgstr "Przypomnienia o urodzinach" + +#: ../../boot.php:1548 +msgid "Birthdays this week:" +msgstr "Urodziny w tym tygodniu:" + +#: ../../boot.php:1609 +msgid "[No description]" +msgstr "[Brak opisu]" + +#: ../../boot.php:1627 +msgid "Event Reminders" +msgstr "Przypominacze wydarzeń" + +#: ../../boot.php:1628 +msgid "Events this week:" +msgstr "Wydarzenia w tym tygodniu:" + +#: ../../boot.php:1864 +msgid "Status Messages and Posts" +msgstr "Status wiadomości i postów" + +#: ../../boot.php:1871 +msgid "Profile Details" +msgstr "Szczegóły profilu" + +#: ../../boot.php:1888 +msgid "Events and Calendar" +msgstr "Wydarzenia i kalendarz" + +#: ../../boot.php:1895 +msgid "Only You Can See This" +msgstr "Tylko ty możesz to zobaczyć" diff --git a/view/pl/strings.php b/view/pl/strings.php index b070090d5c..fafe11ebe6 100644 --- a/view/pl/strings.php +++ b/view/pl/strings.php @@ -1,1290 +1,51 @@ =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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = " UWAGA: To jest wysoce zaawansowane 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 now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz 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["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["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 Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, 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 this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego 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["Connect as an email follower (Coming soon)"] = ""; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; -$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 'Activating scheduled tasks'"] = ""; -$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["

What next

"] = "

Co dalej

"; -$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 may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą 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 Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach 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 not published."] = "Profil nie jest opublikowany"; -$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 interesting 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 Quick Start 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 Settings 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 default 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["If 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 Add New Contact 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 Connect or Follow 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 help 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 'nickname@\$sitename'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@\$nazwastrony'."; -$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 may 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 - change theme settings"] = ""; -$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 “%3\$s”"] = ""; -$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[" Marital Status:"] = " 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 public profile.
It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
Może 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 profile wall and your friend stream."] = ""; -$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.

"] = ""; -$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["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"; @@ -1293,9 +54,11 @@ $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"; @@ -1333,6 +96,7 @@ $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"] = ""; @@ -1347,10 +111,11 @@ $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["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"; @@ -1361,19 +126,27 @@ $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["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["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,68 +175,118 @@ $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 RemoteStorage WebFinger"] = ""; -$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: "network" or "notifications/system""] = ""; -$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 profile wall and your friend stream."] = ""; +$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.

"] = ""; +$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["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["Information"] = ""; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
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["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"; @@ -1478,77 +301,13 @@ $a->strings["Additional notes that are displayed beneath the contact information $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 public tile servers"] = ""; -$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.
It requires PHP >= 5.3"] = ""; -$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.
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.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; -$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["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["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 not 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.
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.
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 public tile servers"] = ""; +$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 Piwik analytics tool."] = ""; +$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (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: "network" or "notifications/system""] = ""; $a->strings["Post to StatusNet"] = "Wyślij do sieci StatusNet"; $a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "Proszę się skontaktować z administratorem strony.
API URL nie jest poprawne"; $a->strings["We could not contact the StatusNet API with the Path you entered."] = ""; @@ -1586,50 +483,32 @@ $a->strings["If enabled all your public postings can be posted $a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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["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["Site name"] = "Nazwa strony"; $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["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["(Re-)Authenticate your tumblr page"] = ""; $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 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 Piwik analytics tool."] = ""; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (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"; @@ -1641,89 +520,103 @@ $a->strings["If enabled all your public postings can be posted $a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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["Allow to use your friendica id (%s) to connecto to external unhosted-enabled storage (like ownCloud). See RemoteStorage WebFinger"] = ""; +$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["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:"] = "Napisz na stronę:"; +$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["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["Your posts and conversations"] = "Twoje posty i rozmowy"; -$a->strings["Your profile page"] = "Twoja strona profilowa"; -$a->strings["Your contacts"] = "Twoje kontakty"; -$a->strings["Your photos"] = "Twoje zdjęcia"; -$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["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:"; @@ -1732,22 +625,6 @@ $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"; @@ -1806,10 +683,14 @@ $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["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"; @@ -1822,6 +703,8 @@ $a->strings["%d Contact"] = array( 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"] = ""; @@ -1868,16 +751,24 @@ $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["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["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."] = ""; @@ -1891,47 +782,61 @@ $a->strings["%d contact not imported"] = array( 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["A deleted group with this name was revived. Existing item permissions may 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["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", @@ -1941,15 +846,25 @@ $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["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["%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["%s wrote the following post"] = ""; +$a->strings["$1 wrote:"] = "$1 napisał:"; +$a->strings["Encrypted content"] = ""; $a->strings["Miscellaneous"] = "Różny"; $a->strings["year"] = "rok"; $a->strings["month"] = "miesiąc"; @@ -1966,50 +881,20 @@ $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["%s wrote the following post"] = ""; -$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["[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"; @@ -2048,55 +933,68 @@ $a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from $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["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 may 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"] = ""; @@ -2109,19 +1007,1145 @@ $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 everybody"] = "Widoczne dla wszystkich"; +$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["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["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["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["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 “%3\$s”"] = ""; +$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[" Marital Status:"] = " 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 public profile.
It may be visible to anybody using the internet."] = "To jest Twój publiczny profil.
Może 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 - change theme settings"] = ""; +$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 'nickname@\$sitename'."] = "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco 'login@\$nazwastrony'."; +$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 may still be visible"] = "Odpowiedzi/kliknięcia \"lubię to\" do twoich publicznych postów nadal mogą 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 not published."] = "Profil nie jest opublikowany"; +$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 interesting 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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = " UWAGA: To jest wysoce zaawansowane 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 now if you are uncertain what to do on this page."] = "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj teraz 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["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 this profile."] = "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego 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["Connect as an email follower (Coming soon)"] = ""; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = ""; +$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 Friendica.com to learn more about the Friendica project."] = "Odwiedź Friendica.com, 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 'Activating scheduled tasks'"] = ""; +$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["

What next

"] = "

Co dalej

"; +$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 Settings page after successful login."] = "Twoje hasło może być zmienione w Ustawieniach 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["Message not available."] = "Wiadomość nie jest dostępna."; +$a->strings["Delete message"] = "Usuń wiadomość"; +$a->strings["No secure communications available. You may 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 Quick Start 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 Settings 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 default 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["If 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 Add New Contact 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 Connect or Follow 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 help 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["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"; diff --git a/view/pt-br/strings.php b/view/pt-br/strings.php index fb71c004a1..80b27a1a62 100644 --- a/view/pt-br/strings.php +++ b/view/pt-br/strings.php @@ -1,8 +1,9 @@ 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]"; diff --git a/view/ru/strings.php b/view/ru/strings.php index 4111fa8e53..1311cb69eb 100644 --- a/view/ru/strings.php +++ b/view/ru/strings.php @@ -1,8 +1,9 @@ =2 && $n%10<=4 && ($n%100<10 || $n%100>=20) ? 1 : 2);; -} +}} ; $a->strings["Post successful."] = "Успешно добавлено."; $a->strings["[Embedded content - reload page to view]"] = "[Встроенное содержание - перезагрузите страницу для просмотра]"; diff --git a/view/smarty3/admin_site.tpl b/view/smarty3/admin_site.tpl index c1442202d1..30678f1bf2 100644 --- a/view/smarty3/admin_site.tpl +++ b/view/smarty3/admin_site.tpl @@ -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}}

{{$advanced}}

diff --git a/view/smarty3/admin_users.tpl b/view/smarty3/admin_users.tpl index e3fc14ac3b..80345b78bd 100644 --- a/view/smarty3/admin_users.tpl +++ b/view/smarty3/admin_users.tpl @@ -75,7 +75,7 @@ {{$u.register_date}} {{$u.login_date}} {{$u.lastitem_date}} - {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.accountexpired}}{{$account_expired}}{{/if}} + {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}} {{if $u.is_admin}}   diff --git a/view/theme/decaf-mobile/admin_users.tpl b/view/theme/decaf-mobile/admin_users.tpl index 3364679249..c3abbeb9c0 100644 --- a/view/theme/decaf-mobile/admin_users.tpl +++ b/view/theme/decaf-mobile/admin_users.tpl @@ -70,7 +70,7 @@ $u.register_date $u.login_date $u.lastitem_date - $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} + $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }} {{ if $u.is_admin }}   diff --git a/view/theme/decaf-mobile/smarty3/admin_users.tpl b/view/theme/decaf-mobile/smarty3/admin_users.tpl index 886b67dcdf..df795a1f4f 100644 --- a/view/theme/decaf-mobile/smarty3/admin_users.tpl +++ b/view/theme/decaf-mobile/smarty3/admin_users.tpl @@ -75,7 +75,7 @@ {{$u.register_date}} {{$u.login_date}} {{$u.lastitem_date}} - {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} + {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}} {{if $u.is_admin}}   diff --git a/view/theme/diabook/admin_users.tpl b/view/theme/diabook/admin_users.tpl index 609fd5ad2a..b455a8c2ee 100644 --- a/view/theme/diabook/admin_users.tpl +++ b/view/theme/diabook/admin_users.tpl @@ -69,7 +69,7 @@ $u.register_date $u.login_date $u.lastitem_date - $u.page_flags + $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }} diff --git a/view/theme/diabook/smarty3/admin_users.tpl b/view/theme/diabook/smarty3/admin_users.tpl index f870e0e771..8127944a33 100644 --- a/view/theme/diabook/smarty3/admin_users.tpl +++ b/view/theme/diabook/smarty3/admin_users.tpl @@ -74,7 +74,7 @@ {{$u.register_date}} {{$u.login_date}} {{$u.lastitem_date}} - {{$u.page_flags}} + {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}} diff --git a/view/theme/frost-mobile/admin_users.tpl b/view/theme/frost-mobile/admin_users.tpl index 0d11934348..a3f6d2416f 100644 --- a/view/theme/frost-mobile/admin_users.tpl +++ b/view/theme/frost-mobile/admin_users.tpl @@ -70,7 +70,7 @@ $u.register_date $u.login_date $u.lastitem_date - $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} + $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }} {{ if $u.is_admin }}   diff --git a/view/theme/frost-mobile/smarty3/admin_users.tpl b/view/theme/frost-mobile/smarty3/admin_users.tpl index 9d74a5e77e..4d88670c17 100644 --- a/view/theme/frost-mobile/smarty3/admin_users.tpl +++ b/view/theme/frost-mobile/smarty3/admin_users.tpl @@ -75,7 +75,7 @@ {{$u.register_date}} {{$u.login_date}} {{$u.lastitem_date}} - {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} + {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}} {{if $u.is_admin}}   diff --git a/view/theme/frost/admin_users.tpl b/view/theme/frost/admin_users.tpl index 0d11934348..a3f6d2416f 100644 --- a/view/theme/frost/admin_users.tpl +++ b/view/theme/frost/admin_users.tpl @@ -70,7 +70,7 @@ $u.register_date $u.login_date $u.lastitem_date - $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} + $u.page_flags {{ if $u.is_admin }}($siteadmin){{ endif }} {{ if $u.account_expired }}($accountexpired){{ endif }} {{ if $u.is_admin }}   diff --git a/view/theme/frost/smarty3/admin_users.tpl b/view/theme/frost/smarty3/admin_users.tpl index 9d74a5e77e..4d88670c17 100644 --- a/view/theme/frost/smarty3/admin_users.tpl +++ b/view/theme/frost/smarty3/admin_users.tpl @@ -75,7 +75,7 @@ {{$u.register_date}} {{$u.login_date}} {{$u.lastitem_date}} - {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} + {{$u.page_flags}} {{if $u.is_admin}}({{$siteadmin}}){{/if}} {{if $u.account_expired}}({{$accountexpired}}){{/if}} {{if $u.is_admin}}   diff --git a/view/theme/smoothly/images/larrow.gif b/view/theme/smoothly/images/larrow.gif new file mode 100644 index 0000000000..15bb1ea110 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 index 0000000000..2237fc6b61 Binary files /dev/null and b/view/theme/smoothly/images/rarrow.gif differ diff --git a/view/theme/smoothly/login.tpl b/view/theme/smoothly/login.tpl index 281890f423..a2c143d39c 100644 --- a/view/theme/smoothly/login.tpl +++ b/view/theme/smoothly/login.tpl @@ -1,5 +1,4 @@ - - diff --git a/view/theme/smoothly/smarty3/login.tpl b/view/theme/smoothly/smarty3/login.tpl index 0860f66f1e..e8ade82509 100644 --- a/view/theme/smoothly/smarty3/login.tpl +++ b/view/theme/smoothly/smarty3/login.tpl @@ -4,7 +4,6 @@ * *}} - - diff --git a/view/theme/smoothly/smarty3/wall_thread.tpl b/view/theme/smoothly/smarty3/wall_thread.tpl index ae703a8560..f652de90b8 100644 --- a/view/theme/smoothly/smarty3/wall_thread.tpl +++ b/view/theme/smoothly/smarty3/wall_thread.tpl @@ -21,7 +21,7 @@ {{$item.owner_name}} -
{{$item.wall}}
+
{{$item.wall}}
{{/if}}
* Maintainer: Alex * Screenshot: Screenshot diff --git a/view/theme/smoothly/wall_thread.tpl b/view/theme/smoothly/wall_thread.tpl index 7987a36492..6d1e947754 100644 --- a/view/theme/smoothly/wall_thread.tpl +++ b/view/theme/smoothly/wall_thread.tpl @@ -16,7 +16,7 @@ $item.owner_name
-
$item.wall
+
$item.wall
{{ endif }}
\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/friendica/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -20,15 +20,7541 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../../mod/oexchange.php:25 -msgid "Post successful." -msgstr "评论发表了。" +#: ../../addon.old/altpager/altpager.php:46 +#: ../../addon/altpager/altpager.php:46 +msgid "Altpager settings updated." +msgstr "Altpager设置更新了。" -#: ../../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 "[嵌入内容-重新加载页为看]" +#: ../../addon.old/altpager/altpager.php:79 +#: ../../addon/altpager/altpager.php:83 +msgid "Alternate Pagination Setting" +msgstr "供替换的分页设置" + +#: ../../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 "用到「更新」和「更旧」页代替页数?" + +#: ../../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 "提交" + +#: ../../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/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 "多少熟人表示在简介工具栏" + +#: ../../addon.old/blockem/blockem.php:51 ../../addon/blockem/blockem.php:51 +msgid "\"Blockem\" Settings" +msgstr "「Blockem」配置" + +#: ../../addon.old/blockem/blockem.php:53 ../../addon/blockem/blockem.php:53 +msgid "Comma separated profile URLS to block" +msgstr "逗号分简介URL为栏" + +#: ../../addon.old/blockem/blockem.php:70 ../../addon/blockem/blockem.php:70 +msgid "BLOCKEM Settings saved." +msgstr "「Blockem」配置保存了。" + +#: ../../addon.old/blockem/blockem.php:105 ../../addon/blockem/blockem.php:105 +#, php-format +msgid "Blocked %s - Click to open/close" +msgstr "%s拦了-点击为开关" + +#: ../../addon.old/blockem/blockem.php:160 ../../addon/blockem/blockem.php:160 +msgid "Unblock Author" +msgstr "不拦作家" + +#: ../../addon.old/blockem/blockem.php:162 ../../addon/blockem/blockem.php:162 +msgid "Block Author" +msgstr "拦作家" + +#: ../../addon.old/blockem/blockem.php:194 ../../addon/blockem/blockem.php:194 +msgid "blockem settings updated" +msgstr "blockem设置更新了" + +#: ../../addon.old/blogger/blogger.php:42 ../../addon/blogger/blogger.php:42 +msgid "Post to blogger" +msgstr "转播到blogger" + +#: ../../addon.old/blogger/blogger.php:74 ../../addon/blogger/blogger.php:74 +msgid "Blogger Post Settings" +msgstr "Blogger转播设置" + +#: ../../addon.old/blogger/blogger.php:76 ../../addon/blogger/blogger.php:76 +msgid "Enable Blogger Post Plugin" +msgstr "使Blogger转播插件可用" + +#: ../../addon.old/blogger/blogger.php:81 ../../addon/blogger/blogger.php:81 +msgid "Blogger username" +msgstr "Blogger用户名" + +#: ../../addon.old/blogger/blogger.php:86 ../../addon/blogger/blogger.php:86 +msgid "Blogger password" +msgstr "Blogger密码" + +#: ../../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 "默认地转播到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 "文章从Friendica" + +#: ../../addon.old/buglink/buglink.php:15 ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +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 "登录" + +#: ../../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 "最近用户" + +#: ../../addon.old/communityhome/twillingham/communityhome.php:81 +#: ../../addon.old/communityhome/communityhome.php:81 +#: ../../addon/communityhome/communityhome.php:84 +msgid "Most active users" +msgstr "最积极用户" + +#: ../../addon.old/communityhome/communityhome.php:98 +#: ../../addon/communityhome/communityhome.php:102 +msgid "Latest photos" +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 "熟人照片" + +#: ../../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 "简介照片" + +#: ../../addon.old/communityhome/communityhome.php:133 +#: ../../addon/communityhome/communityhome.php:141 +msgid "Latest likes" +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 "项目" + +#: ../../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 "现状" + +#: ../../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 "照片" + +#: ../../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喜欢%2$s的%3$s" + +#: ../../addon.old/communityhome/communityhome.php:179 +#: ../../addon/communityhome/communityhome.php:189 ../../mod/home.php:34 +#, php-format +msgid "Welcome to %s" +msgstr "%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 "私人项目" + +#: ../../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 "私人通讯录" + +#: ../../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 "看不了" + +#: ../../addon.old/dav/common/wdcal_configuration.php:148 +#: ../../addon/dav/common/wdcal_configuration.php:148 +msgid "U.S. Time Format (mm/dd/YYYY)" +msgstr "美国时间形式(月/日/年)" + +#: ../../addon.old/dav/common/wdcal_configuration.php:243 +#: ../../addon/dav/common/wdcal_configuration.php:243 +msgid "German Time Format (dd.mm.YYYY)" +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 "开不了部件为编辑" + +#: ../../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 "返回日历" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:144 +#: ../../addon/dav/common/wdcal_edit.inc.php:144 +msgid "Event data" +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 "日历" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 +#: ../../addon/dav/common/wdcal_edit.inc.php:163 +msgid "Special color" +msgstr "特别颜色" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 +#: ../../addon/dav/common/wdcal_edit.inc.php:169 +msgid "Subject" +msgstr "题目" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 +#: ../../addon/dav/common/wdcal_edit.inc.php:173 +msgid "Starts" +msgstr "开始" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 +#: ../../addon/dav/common/wdcal_edit.inc.php:178 +msgid "Ends" +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 "位置" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 +#: ../../addon/dav/common/wdcal_edit.inc.php:185 +msgid "Description" +msgstr "描述" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 +#: ../../addon/dav/common/wdcal_edit.inc.php:188 +msgid "Recurrence" +msgstr "复发" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 +#: ../../addon/dav/common/wdcal_edit.inc.php:190 +msgid "Frequency" +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 "没有" + +#: ../../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 "每日" + +#: ../../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 "每周" + +#: ../../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 "每月" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 +#: ../../addon/dav/common/wdcal_edit.inc.php:203 +msgid "Yearly" +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 "天" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:215 +#: ../../addon/dav/common/wdcal_edit.inc.php:215 +#: ../../include/datetime.php:287 +msgid "weeks" +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 "月" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:217 +#: ../../addon/dav/common/wdcal_edit.inc.php:217 +#: ../../include/datetime.php:285 +msgid "years" +msgstr "年" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 +#: ../../addon/dav/common/wdcal_edit.inc.php:218 +msgid "Interval" +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%" + +#: ../../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 "天" + +#: ../../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 "星期天" + +#: ../../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 "星期一" + +#: ../../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 "星期二" + +#: ../../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 "星期三" + +#: ../../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 "星期四" + +#: ../../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 "星期五" + +#: ../../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 "星期六" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:297 +#: ../../addon/dav/common/wdcal_edit.inc.php:297 +msgid "First day of week:" +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 "月里天数" + +#: ../../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#个" + +#: ../../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 "每月第#num#个最后" + +#: ../../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#" + +#: ../../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#" + +#: ../../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 "月" + +#: ../../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#个天" + +#: ../../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#个最后天" + +#: ../../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#" + +#: ../../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#" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 +#: ../../addon/dav/common/wdcal_edit.inc.php:413 +msgid "Repeat until" +msgstr "重复到" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 +#: ../../addon/dav/common/wdcal_edit.inc.php:417 +msgid "Infinite" +msgstr "无限的" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:420 +#: ../../addon/dav/common/wdcal_edit.inc.php:420 +msgid "Until the following date" +msgstr "到下个日期" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 +#: ../../addon/dav/common/wdcal_edit.inc.php:423 +msgid "Number of times" +msgstr "多少次" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 +#: ../../addon/dav/common/wdcal_edit.inc.php:429 +msgid "Exceptions" +msgstr "除外" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 +#: ../../addon/dav/common/wdcal_edit.inc.php:432 +msgid "none" +msgstr "没有" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 +#: ../../addon/dav/common/wdcal_edit.inc.php:449 +msgid "Notification" +msgstr "通知" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 +#: ../../addon/dav/common/wdcal_edit.inc.php:466 +msgid "Notify by" +msgstr "用地方法为通知" + +#: ../../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 "移走" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 +#: ../../addon/dav/common/wdcal_edit.inc.php:469 +msgid "E-Mail" +msgstr "电子邮件" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 +#: ../../addon/dav/common/wdcal_edit.inc.php:470 +msgid "On Friendica / Display" +msgstr "在Friendica/表示" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 +#: ../../addon/dav/common/wdcal_edit.inc.php:474 +msgid "Time" +msgstr "时间" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 +#: ../../addon/dav/common/wdcal_edit.inc.php:478 +msgid "Hours" +msgstr "小时" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 +#: ../../addon/dav/common/wdcal_edit.inc.php:479 +msgid "Minutes" +msgstr "分钟" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 +#: ../../addon/dav/common/wdcal_edit.inc.php:480 +msgid "Seconds" +msgstr "秒" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 +#: ../../addon/dav/common/wdcal_edit.inc.php:482 +msgid "Weeks" +msgstr "周" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 +#: ../../addon/dav/common/wdcal_edit.inc.php:485 +msgid "before the" +msgstr "前" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:486 +#: ../../addon/dav/common/wdcal_edit.inc.php:486 +msgid "start of the event" +msgstr "项目开始" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:487 +#: ../../addon/dav/common/wdcal_edit.inc.php:487 +msgid "end of the event" +msgstr "项目结束" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 +#: ../../addon/dav/common/wdcal_edit.inc.php:492 +msgid "Add a notification" +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" + +#: ../../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#快开始。" + +#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 +#: ../../addon/dav/common/wdcal_edit.inc.php:769 +msgid "Saved" +msgstr "保存了" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 +msgid "Private Calendar" +msgstr "私人日历" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 +msgid "Friendica Events: Mine" +msgstr "Friendica项目:我的" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 +msgid "Friendica Events: Contacts" +msgstr "Friendica项目:熟人" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 +msgid "Private Addresses" +msgstr "私人地址" + +#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 +#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 +msgid "Friendica Contacts" +msgstr "Friendica熟人" + +#: ../../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项目" + +#: ../../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熟人" + +#: ../../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熟人" + +#: ../../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 "进口文件出了问题。不好意思。可能一些项目却是成功地进口了。" + +#: ../../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 "进口文件出了问题。不好意思。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:134 +#: ../../addon/dav/friendica/layout.fnk.php:134 +msgid "The ICS-File has been imported." +msgstr "把ICS文件进口了。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:138 +#: ../../addon/dav/friendica/layout.fnk.php:138 +msgid "No file was uploaded." +msgstr "没有上传的文件。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:147 +#: ../../addon/dav/friendica/layout.fnk.php:147 +msgid "Import a ICS-file" +msgstr "进口ICS文件" + +#: ../../addon.old/dav/friendica/layout.fnk.php:150 +#: ../../addon/dav/friendica/layout.fnk.php:150 +msgid "ICS-File" +msgstr "ICS文件" + +#: ../../addon.old/dav/friendica/layout.fnk.php:151 +#: ../../addon/dav/friendica/layout.fnk.php:151 +msgid "Overwrite all #num# existing events" +msgstr "替换所有#num#现有的项目" + +#: ../../addon.old/dav/friendica/layout.fnk.php:152 +#: ../../addon/dav/friendica/layout.fnk.php:152 +#: ../../mod/profile_photo.php:245 +msgid "Upload" +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 "配置" + +#: ../../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 "帮助" + +#: ../../addon.old/dav/friendica/layout.fnk.php:228 +#: ../../addon/dav/friendica/layout.fnk.php:228 +msgid "New event" +msgstr "新项目" + +#: ../../addon.old/dav/friendica/layout.fnk.php:232 +#: ../../addon/dav/friendica/layout.fnk.php:232 +msgid "Today" +msgstr "今天" + +#: ../../addon.old/dav/friendica/layout.fnk.php:241 +#: ../../addon/dav/friendica/layout.fnk.php:241 +msgid "Day" +msgstr "天" + +#: ../../addon.old/dav/friendica/layout.fnk.php:248 +#: ../../addon/dav/friendica/layout.fnk.php:248 +msgid "Week" +msgstr "周" + +#: ../../addon.old/dav/friendica/layout.fnk.php:260 +#: ../../addon/dav/friendica/layout.fnk.php:260 +msgid "Reload" +msgstr "再装入" + +#: ../../addon.old/dav/friendica/layout.fnk.php:263 +#: ../../addon/dav/friendica/layout.fnk.php:263 ../../mod/events.php:372 +msgid "Previous" +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 "下" + +#: ../../addon.old/dav/friendica/layout.fnk.php:271 +#: ../../addon/dav/friendica/layout.fnk.php:271 +msgid "Date" +msgstr "日期" + +#: ../../addon.old/dav/friendica/layout.fnk.php:313 +#: ../../addon/dav/friendica/layout.fnk.php:313 +msgid "Error" +msgstr "错误" + +#: ../../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 "权限不够。" + +#: ../../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 "新的设置保存了。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:380 +#: ../../addon/dav/friendica/layout.fnk.php:380 +msgid "The calendar has been updated." +msgstr "日历更新了。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:393 +#: ../../addon/dav/friendica/layout.fnk.php:393 +msgid "The new calendar has been created." +msgstr "新日历创造了。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:417 +#: ../../addon/dav/friendica/layout.fnk.php:417 +msgid "The calendar has been deleted." +msgstr "日历删除了。" + +#: ../../addon.old/dav/friendica/layout.fnk.php:424 +#: ../../addon/dav/friendica/layout.fnk.php:424 +msgid "Calendar Settings" +msgstr "日历设置" + +#: ../../addon.old/dav/friendica/layout.fnk.php:430 +#: ../../addon/dav/friendica/layout.fnk.php:430 +msgid "Date format" +msgstr "日期形式" + +#: ../../addon.old/dav/friendica/layout.fnk.php:439 +#: ../../addon/dav/friendica/layout.fnk.php:439 +msgid "Time zone" +msgstr "时区" + +#: ../../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 "保存" + +#: ../../addon.old/dav/friendica/layout.fnk.php:445 +#: ../../addon/dav/friendica/layout.fnk.php:445 +msgid "Calendars" +msgstr "日历" + +#: ../../addon.old/dav/friendica/layout.fnk.php:487 +#: ../../addon/dav/friendica/layout.fnk.php:487 +msgid "Create a new calendar" +msgstr "创造新日历" + +#: ../../addon.old/dav/friendica/layout.fnk.php:496 +#: ../../addon/dav/friendica/layout.fnk.php:496 +msgid "Limitations" +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 "警告" + +#: ../../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, 案桌,等)" + +#: ../../addon.old/dav/friendica/layout.fnk.php:511 +#: ../../addon/dav/friendica/layout.fnk.php:511 +msgid "Synchronizing this calendar with the iPhone" +msgstr "正在把这个日历跟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 "正在把您的Friendica熟人跟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 "现有的插件没安装好。请跟系统管理您的friendica安装联系为维修。" + +#: ../../addon.old/dav/friendica/main.php:242 +#: ../../addon/dav/friendica/main.php:242 +msgid "Extended calendar with CalDAV-support" +msgstr "增能日历跟CalDAV支持" + +#: ../../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" + +#: ../../addon.old/dav/friendica/main.php:282 +#: ../../addon/dav/friendica/main.php:282 +msgid "Notification: " +msgstr "通知:" + +#: ../../addon.old/dav/friendica/main.php:309 +#: ../../addon/dav/friendica/main.php:309 +msgid "The database tables have been installed." +msgstr "数据库表格被安装了。" + +#: ../../addon.old/dav/friendica/main.php:310 +#: ../../addon/dav/friendica/main.php:310 +msgid "An error occurred during the installation." +msgstr "安装出错误。" + +#: ../../addon.old/dav/friendica/main.php:316 +#: ../../addon/dav/friendica/main.php:316 +msgid "The database tables have been updated." +msgstr "数据库表格更新了。" + +#: ../../addon.old/dav/friendica/main.php:317 +#: ../../addon/dav/friendica/main.php:317 +msgid "An error occurred during the update." +msgstr "更新出了问题。" + +#: ../../addon.old/dav/friendica/main.php:333 +#: ../../addon/dav/friendica/main.php:333 +msgid "No system-wide settings yet." +msgstr "还没有系统设置。" + +#: ../../addon.old/dav/friendica/main.php:336 +#: ../../addon/dav/friendica/main.php:336 +msgid "Database status" +msgstr "数据库现状" + +#: ../../addon.old/dav/friendica/main.php:339 +#: ../../addon/dav/friendica/main.php:339 +msgid "Installed" +msgstr "安装了" + +#: ../../addon.old/dav/friendica/main.php:343 +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade needed" +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 should 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_」)继续之前。虽然所有的日历项目应该被转化成新数据库体系,备份总是最好。下边您会看数据库命令进行按「更新」按钮的时候。" + +#: ../../addon.old/dav/friendica/main.php:343 +#: ../../addon/dav/friendica/main.php:343 +msgid "Upgrade" +msgstr "更新" + +#: ../../addon.old/dav/friendica/main.php:346 +#: ../../addon/dav/friendica/main.php:346 +msgid "Not installed" +msgstr "没安装" + +#: ../../addon.old/dav/friendica/main.php:346 +#: ../../addon/dav/friendica/main.php:346 +msgid "Install" +msgstr "安装" + +#: ../../addon.old/dav/friendica/main.php:350 +#: ../../addon/dav/friendica/main.php:350 +msgid "Unknown" +msgstr "不知道的" + +#: ../../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 "出什么真糟糕的问题。我不能自动地恢复,不好意思。请看数据库系统,备份数据,而手动地把所有前缀着「dav_」表格删除。之后,这个安装程序应该能把表格自动地初始化。" + +#: ../../addon.old/dav/friendica/main.php:355 +#: ../../addon/dav/friendica/main.php:355 +msgid "Troubleshooting" +msgstr "调试" + +#: ../../addon.old/dav/friendica/main.php:356 +#: ../../addon/dav/friendica/main.php:356 +msgid "Manual creation of the database tables:" +msgstr "手动造成数据库表格:" + +#: ../../addon.old/dav/friendica/main.php:357 +#: ../../addon/dav/friendica/main.php:357 +msgid "Show SQL-statements" +msgstr "表示SQL陈述" + +#: ../../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/dwpost/dwpost.php:39 ../../addon/dwpost/dwpost.php:39 +msgid "Post to Dreamwidth" +msgstr "转播到Dreamwidth" + +#: ../../addon.old/dwpost/dwpost.php:70 ../../addon/dwpost/dwpost.php:70 +msgid "Dreamwidth Post Settings" +msgstr "Dreamwidth转播设置" + +#: ../../addon.old/dwpost/dwpost.php:72 ../../addon/dwpost/dwpost.php:72 +msgid "Enable dreamwidth Post Plugin" +msgstr "使Dreamwidth转播插件可用" + +#: ../../addon.old/dwpost/dwpost.php:77 ../../addon/dwpost/dwpost.php:77 +msgid "dreamwidth username" +msgstr "Dreamwidth用户名" + +#: ../../addon.old/dwpost/dwpost.php:82 ../../addon/dwpost/dwpost.php:82 +msgid "dreamwidth password" +msgstr "Dreamwidth密码" + +#: ../../addon.old/dwpost/dwpost.php:87 ../../addon/dwpost/dwpost.php:87 +msgid "Post to dreamwidth by default" +msgstr "默认地转播到Dreamwidth" + +#: ../../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设置更新了" + +#: ../../addon.old/editplain/editplain.php:76 +#: ../../addon/editplain/editplain.php:76 +msgid "Editplain Settings" +msgstr "Editplain设置" + +#: ../../addon.old/editplain/editplain.php:78 +#: ../../addon/editplain/editplain.php:78 +msgid "Disable richtext status editor" +msgstr "使richtext现状编辑 不能用" + +#: ../../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 "设置跟新了" + +#: ../../addon.old/facebook/facebook.php:523 +#: ../../addon/facebook/facebook.php:525 +msgid "Facebook disabled" +msgstr "Facebook废" + +#: ../../addon.old/facebook/facebook.php:528 +#: ../../addon/facebook/facebook.php:530 +msgid "Updating contacts" +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 "Facebook API钥匙失踪的。" + +#: ../../addon.old/facebook/facebook.php:558 +#: ../../addon/facebook/facebook.php:560 +msgid "Facebook Connect" +msgstr "Facebook联络" + +#: ../../addon.old/facebook/facebook.php:564 +#: ../../addon/facebook/facebook.php:566 +msgid "Install Facebook connector for this account." +msgstr "安装Facebook连接器为这个账户。" + +#: ../../addon.old/facebook/facebook.php:571 +#: ../../addon/facebook/facebook.php:573 +msgid "Remove Facebook connector" +msgstr "删除Facebook连接器" + +#: ../../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密码变化了]" + +#: ../../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" + +#: ../../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 "这个网站使Facebook朋友环节不能用。这下的设置没有印象。" + +#: ../../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 "这个网站使Facebook朋友环节不能用。假如那样的话您不会再使可用的。" + +#: ../../addon.old/facebook/facebook.php:596 +#: ../../addon/facebook/facebook.php:598 +msgid "Link all your Facebook friends and conversations on this website" +msgstr "连接您所有的Facebook朋友们和交流在这个网站" + +#: ../../addon.old/facebook/facebook.php:598 +#: ../../addon/facebook/facebook.php:600 +msgid "" +"Facebook conversations consist of your profile wall and your friend" +" stream." +msgstr "Facebook交流由您的简介墙和您朋友的溪流组成。 " + +#: ../../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朋友溪流是只您可见的。" + +#: ../../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简介墙的隐私。" + +#: ../../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 "在这个网站您Facebook简介墙交流是只您可见的。" + +#: ../../addon.old/facebook/facebook.php:609 +#: ../../addon/facebook/facebook.php:611 +msgid "Do not import your Facebook profile wall conversations" +msgstr "别进口您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 "如果您选择连接交流和留这两个复选框空则,您Facebook简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。" + +#: ../../addon.old/facebook/facebook.php:616 +#: ../../addon/facebook/facebook.php:618 +msgid "Comma separated applications to ignore" +msgstr "逗号分开的应用要不理" + +#: ../../addon.old/facebook/facebook.php:700 +#: ../../addon/facebook/facebook.php:702 +msgid "Problems with Facebook Real-Time Updates" +msgstr "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 "管理员" + +#: ../../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" + +#: ../../addon.old/facebook/facebook.php:729 +#: ../../addon/facebook/facebook.php:731 +msgid "Facebook Connector Settings" +msgstr "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密码" + +#: ../../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.

" +msgstr "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。

" + +#: ../../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 "错误:输入的API密码显得不对(取回不了应用代金券)。" + +#: ../../addon.old/facebook/facebook.php:761 +#: ../../addon/facebook/facebook.php:763 +msgid "The given API Key seems to work correctly." +msgstr "输入的API密码显得对地运行。" + +#: ../../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 "API钥匙的正确性发现不了。什么奇怪的进行" + +#: ../../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 "应用密码" + +#: ../../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 "" +"Synchronize comments (no comments on Facebook are missed, at the cost of " +"increased system load)" +msgstr "同步评论(无Facebook评论错过了,代价增添系统工作量)" + +#: ../../addon.old/facebook/facebook.php:773 +#: ../../addon/facebook/facebook.php:775 +msgid "Real-Time Updates" +msgstr "实时更新" + +#: ../../addon.old/facebook/facebook.php:777 +#: ../../addon/facebook/facebook.php:779 +msgid "Real-Time Updates are activated." +msgstr "实时更新使活动" + +#: ../../addon.old/facebook/facebook.php:778 +#: ../../addon/facebook/facebook.php:780 +msgid "Deactivate Real-Time Updates" +msgstr "使实时更新不活动" + +#: ../../addon.old/facebook/facebook.php:780 +#: ../../addon/facebook/facebook.php:782 +msgid "Real-Time Updates not activated." +msgstr "实时更新使不活动" + +#: ../../addon.old/facebook/facebook.php:780 +#: ../../addon/facebook/facebook.php:782 +msgid "Activate Real-Time Updates" +msgstr "使实时更新活动" + +#: ../../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" + +#: ../../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 "发送到Facebook取消由于多网络准许矛盾。" + +#: ../../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" + +#: ../../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发送失败了。排队着待再试。" + +#: ../../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联系成无效的。请再认证。" + +#: ../../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联系成无效的" + +#: ../../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 "你好%1$s,⏎ ⏎ 您账户在%2$s和Facebook的接通无效了。平时这是因为您把密码改变了。为使接通再可用,您要%3$s再认证Facebook连接器%4$s。" + +#: ../../addon.old/fbpost/fbpost.php:172 ../../addon/fbpost/fbpost.php:183 +msgid "Facebook Post disabled" +msgstr "使Facebook文章不可用的" + +#: ../../addon.old/fbpost/fbpost.php:199 ../../addon/fbpost/fbpost.php:210 +msgid "Facebook Post" +msgstr "Facebook文章" + +#: ../../addon.old/fbpost/fbpost.php:205 ../../addon/fbpost/fbpost.php:216 +msgid "Install Facebook Post connector for this account." +msgstr "安装Facebook文章连接器为这个账户" + +#: ../../addon.old/fbpost/fbpost.php:212 ../../addon/fbpost/fbpost.php:223 +msgid "Remove Facebook Post connector" +msgstr "把Facebook文章连接器删除" + +#: ../../addon.old/fbpost/fbpost.php:240 ../../addon/fbpost/fbpost.php:295 +msgid "Facebook Post Settings" +msgstr "Facebook文章设置" + +#: ../../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 "论坛" + +#: ../../addon.old/forumlist/forumlist.php:63 +#: ../../addon/forumlist/forumlist.php:67 +msgid "show/hide" +msgstr "表示/隐藏" + +#: ../../addon.old/forumlist/forumlist.php:77 +#: ../../addon/forumlist/forumlist.php:81 +msgid "No forum subscriptions" +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 "评坛:" + +#: ../../addon.old/forumlist/forumlist.php:131 +#: ../../addon/forumlist/forumlist.php:134 +msgid "Forumlist settings updated." +msgstr "评坛单设置更新了。" + +#: ../../addon.old/forumlist/forumlist.php:159 +#: ../../addon/forumlist/forumlist.php:162 +msgid "Forumlist Settings" +msgstr "评坛单设置" + +#: ../../addon.old/forumlist/forumlist.php:161 +#: ../../addon/forumlist/forumlist.php:164 +msgid "Randomise forum list" +msgstr "洗牌评坛单" + +#: ../../addon.old/forumlist/forumlist.php:164 +#: ../../addon/forumlist/forumlist.php:167 +msgid "Show forums on profile page" +msgstr "表示评坛在简介页" + +#: ../../addon.old/forumlist/forumlist.php:167 +#: ../../addon/forumlist/forumlist.php:170 +msgid "Show forums on network page" +msgstr "表示评坛在网络页" + +#: ../../addon.old/fromapp/fromapp.php:38 ../../addon/fromapp/fromapp.php:38 +msgid "Fromapp settings updated." +msgstr "Fromapp设置更新了" + +#: ../../addon.old/fromapp/fromapp.php:64 ../../addon/fromapp/fromapp.php:64 +msgid "FromApp Settings" +msgstr "Fromapp设置" + +#: ../../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 "应用名您想当您文章的来源" + +#: ../../addon.old/fromapp/fromapp.php:70 ../../addon/fromapp/fromapp.php:70 +msgid "Use this application name even if another application was used." +msgstr "连别应用是用了也用这名。" + +#: ../../addon.old/fromgplus/fromgplus.php:29 +#: ../../addon/fromgplus/fromgplus.php:33 +msgid "Google+ Import Settings" +msgstr "Google+进口设置" + +#: ../../addon.old/fromgplus/fromgplus.php:32 +#: ../../addon/fromgplus/fromgplus.php:36 +msgid "Enable Google+ Import" +msgstr "使Google+进口可用" + +#: ../../addon.old/fromgplus/fromgplus.php:35 +#: ../../addon/fromgplus/fromgplus.php:39 +msgid "Google Account ID" +msgstr "Google+用户名" + +#: ../../addon.old/fromgplus/fromgplus.php:55 +#: ../../addon/fromgplus/fromgplus.php:59 +msgid "Google+ Import Settings saved." +msgstr "把Google+进口设置保存了" + +#: ../../addon.old/geonames/geonames.php:143 +#: ../../addon/geonames/geonames.php:143 +msgid "Geonames settings updated." +msgstr "Geonames设置更新了。" + +#: ../../addon.old/geonames/geonames.php:179 +#: ../../addon/geonames/geonames.php:179 +msgid "Geonames Settings" +msgstr "Geonames设置" + +#: ../../addon.old/geonames/geonames.php:181 +#: ../../addon/geonames/geonames.php:181 +msgid "Enable Geonames Plugin" +msgstr "使Geonames插件能用" + +#: ../../addon.old/gnot/gnot.php:48 ../../addon/gnot/gnot.php:48 +msgid "Gnot settings updated." +msgstr "Gnot设置更新了。" + +#: ../../addon.old/gnot/gnot.php:79 ../../addon/gnot/gnot.php:79 +msgid "Gnot Settings" +msgstr "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 "允许邮件评论通知在Gmail和匿名话题行。" + +#: ../../addon.old/gnot/gnot.php:82 ../../addon/gnot/gnot.php:82 +msgid "Enable this plugin/addon?" +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" + +#: ../../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 "通用简介图片" + +#: ../../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 "随机的几何图案" + +#: ../../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 "怪物面子" + +#: ../../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 "电脑造成的面子" + +#: ../../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 "复古游乐场式面子" + +#: ../../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 "信息" + +#: ../../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.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。
Libravatar加件没找到在Libravatar的时候可依靠的是Gravatar" + +#: ../../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 "默认纸娃娃系统" + +#: ../../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" + +#: ../../addon.old/gravatar/gravatar.php:97 +#: ../../addon/gravatar/gravatar.php:97 +msgid "Rating of images" +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" + +#: ../../addon.old/gravatar/gravatar.php:111 +#: ../../addon/gravatar/gravatar.php:111 +msgid "Gravatar settings updated." +msgstr "Gravatar设置更新了。" + +#: ../../addon.old/group_text/group_text.php:76 +#: ../../addon/group_text/group_text.php:76 +msgid "Group Text" +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 "用光正文(无图片)组选择器在「组编辑」单" + +#: ../../addon.old/ijpost/ijpost.php:39 ../../addon/ijpost/ijpost.php:39 +msgid "Post to Insanejournal" +msgstr "转播到Insanejournal" + +#: ../../addon.old/ijpost/ijpost.php:70 ../../addon/ijpost/ijpost.php:70 +msgid "InsaneJournal Post Settings" +msgstr "Insanejournal转播设置" + +#: ../../addon.old/ijpost/ijpost.php:72 ../../addon/ijpost/ijpost.php:72 +msgid "Enable InsaneJournal Post Plugin" +msgstr "使InsaneJournal转播插件可用" + +#: ../../addon.old/ijpost/ijpost.php:77 ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "InsaneJournal用户名" + +#: ../../addon.old/ijpost/ijpost.php:82 ../../addon/ijpost/ijpost.php:82 +msgid "InsaneJournal password" +msgstr "InsaneJournal密码" + +#: ../../addon.old/ijpost/ijpost.php:87 ../../addon/ijpost/ijpost.php:87 +msgid "Post to InsaneJournal by default" +msgstr "默认地转播到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 "网站主" + +#: ../../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 "电子邮件地址" + +#: ../../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 "邮政邮件地址" + +#: ../../addon.old/impressum/impressum.php:61 +#: ../../addon/impressum/impressum.php:61 +msgid "" +"The impressum addon needs to be configured!
Please add at least the " +"owner variable to your config file. For other variables please " +"refer to the README file of the addon." +msgstr "Impressum插件必须被设置!
请加至少owner变量在您的设置文件。关于别的变量请指插件的README文件。" + +#: ../../addon.old/impressum/impressum.php:84 +#: ../../addon/impressum/impressum.php:84 +msgid "The page operators name." +msgstr "也运作员名。" + +#: ../../addon.old/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:85 +msgid "Site Owners Profile" +msgstr "网站主的简介" + +#: ../../addon.old/impressum/impressum.php:85 +#: ../../addon/impressum/impressum.php:85 +msgid "Profile address of the operator." +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。" + +#: ../../addon.old/impressum/impressum.php:87 +#: ../../addon/impressum/impressum.php:87 +msgid "Notes" +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。" + +#: ../../addon.old/impressum/impressum.php:88 +#: ../../addon/impressum/impressum.php:88 +msgid "How to contact the operator via email. (will be displayed obfuscated)" +msgstr "怎么用电子邮件跟运作员联系。(将使混乱的表示)" + +#: ../../addon.old/impressum/impressum.php:89 +#: ../../addon/impressum/impressum.php:89 +msgid "Footer note" +msgstr "页脚便条" + +#: ../../addon.old/impressum/impressum.php:89 +#: ../../addon/impressum/impressum.php:89 +msgid "Text for the footer. You can use BBCode here." +msgstr "页脚征文。您会用BBCode。" + +#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 +msgid "Infinite Improbability Drive" +msgstr "无穷不至于机车" + +#: ../../addon.old/irc/irc.php:44 ../../addon/irc/irc.php:44 +msgid "IRC Settings" +msgstr "IRC设置" + +#: ../../addon.old/irc/irc.php:46 ../../addon/irc/irc.php:46 +msgid "Channel(s) to auto connect (comma separated)" +msgstr "频道要自动地连接(逗号分隔)" + +#: ../../addon.old/irc/irc.php:51 ../../addon/irc/irc.php:51 +msgid "Popular Channels (comma separated)" +msgstr "流行频道(逗号分隔)" + +#: ../../addon.old/irc/irc.php:69 ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "IRC设置保存了。" + +#: ../../addon.old/irc/irc.php:74 ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "IRC聊间" + +#: ../../addon.old/irc/irc.php:96 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "流行频道" + +#: ../../addon.old/jappixmini/jappixmini.php:266 +#: ../../addon/jappixmini/jappixmini.php:266 +msgid "Jappix Mini addon settings" +msgstr "Jappix Mini加件设置" + +#: ../../addon.old/jappixmini/jappixmini.php:268 +#: ../../addon/jappixmini/jappixmini.php:268 +msgid "Activate addon" +msgstr "使加件可用" + +#: ../../addon.old/jappixmini/jappixmini.php:271 +#: ../../addon/jappixmini/jappixmini.php:271 +msgid "" +"Do not insert the Jappixmini Chat-Widget into the webinterface" +msgstr "把Jappixmini聊小窗插入网用户界面" + +#: ../../addon.old/jappixmini/jappixmini.php:274 +#: ../../addon/jappixmini/jappixmini.php:274 +msgid "Jabber username" +msgstr "Jabber用户名" + +#: ../../addon.old/jappixmini/jappixmini.php:277 +#: ../../addon/jappixmini/jappixmini.php:277 +msgid "Jabber server" +msgstr "Jabber服务器" + +#: ../../addon.old/jappixmini/jappixmini.php:281 +#: ../../addon/jappixmini/jappixmini.php:281 +msgid "Jabber BOSH host" +msgstr "Jabber BOSH主机" + +#: ../../addon.old/jappixmini/jappixmini.php:285 +#: ../../addon/jappixmini/jappixmini.php:285 +msgid "Jabber password" +msgstr "Jabber密码" + +#: ../../addon.old/jappixmini/jappixmini.php:290 +#: ../../addon/jappixmini/jappixmini.php:290 +msgid "Encrypt Jabber password with Friendica password (recommended)" +msgstr "把Jabber密码跟Friendica密码加密(推荐的)" + +#: ../../addon.old/jappixmini/jappixmini.php:293 +#: ../../addon/jappixmini/jappixmini.php:293 +msgid "Friendica password" +msgstr "Friendica密码" + +#: ../../addon.old/jappixmini/jappixmini.php:296 +#: ../../addon/jappixmini/jappixmini.php:296 +msgid "Approve subscription requests from Friendica contacts automatically" +msgstr "自动地批准从Friendica熟人的订阅要求" + +#: ../../addon.old/jappixmini/jappixmini.php:299 +#: ../../addon/jappixmini/jappixmini.php:299 +msgid "Subscribe to Friendica contacts automatically" +msgstr "自动地订阅Friendica熟人" + +#: ../../addon.old/jappixmini/jappixmini.php:302 +#: ../../addon/jappixmini/jappixmini.php:302 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "把熟人jabber地址从内部单" + +#: ../../addon.old/jappixmini/jappixmini.php:308 +#: ../../addon/jappixmini/jappixmini.php:308 +msgid "Add contact" +msgstr "加熟人" + +#: ../../addon.old/js_upload/js_upload.php:43 +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "上传文件" + +#: ../../addon.old/js_upload/js_upload.php:44 +#: ../../addon/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +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 "退消" + +#: ../../addon.old/js_upload/js_upload.php:46 +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "失败" + +#: ../../addon.old/js_upload/js_upload.php:297 +#: ../../addon/js_upload/js_upload.php:303 +msgid "No files were uploaded." +msgstr "没有文件上传。" + +#: ../../addon.old/js_upload/js_upload.php:303 +#: ../../addon/js_upload/js_upload.php:309 +msgid "Uploaded file is empty" +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 "图片超出最大尺寸" + +#: ../../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 "文件扩展名无效的,应该是这些一个:" + +#: ../../addon.old/js_upload/js_upload.php:337 +#: ../../addon/js_upload/js_upload.php:343 +msgid "Upload was cancelled, or server error encountered" +msgstr "上传注销了,或相遇服务器错误" + +#: ../../addon.old/libertree/libertree.php:36 +#: ../../addon/libertree/libertree.php:36 +msgid "Post to libertree" +msgstr "转播到libertree" + +#: ../../addon.old/libertree/libertree.php:67 +#: ../../addon/libertree/libertree.php:67 +msgid "libertree Post Settings" +msgstr "libertree转播设置" + +#: ../../addon.old/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "使Libertree转播插件可用" + +#: ../../addon.old/libertree/libertree.php:74 +#: ../../addon/libertree/libertree.php:74 +msgid "Libertree API token" +msgstr "Libertree API令牌" + +#: ../../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 "默认地转播到Libertree" + +#: ../../addon.old/libravatar/libravatar.php:14 +#: ../../addon/libravatar/libravatar.php:14 +msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" +msgstr "安装不了Libravatar。
它要求PHP>=5.3" + +#: ../../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 "您PHP版体数%s是比要求的5.3少。" + +#: ../../addon.old/libravatar/libravatar.php:84 +#: ../../addon/libravatar/libravatar.php:84 +msgid "This addon is not functional on your server." +msgstr "这个加件在您的服务器不可用的" + +#: ../../addon.old/libravatar/libravatar.php:93 +#: ../../addon/libravatar/libravatar.php:93 +msgid "" +"Gravatar addon is installed. Please disable the Gravatar addon.
The " +"Libravatar addon will fall back to Gravatar if nothing was found at " +"Libravatar." +msgstr "Gravatar加件安装着。请使Gravatar加件不可用。
如果找不到什么在Libravatar加件可依靠的是Gravatar。" + +#: ../../addon.old/libravatar/libravatar.php:100 +#: ../../addon/libravatar/libravatar.php:100 +msgid "Select default avatar image if none was found. See README" +msgstr "选择默认纸娃娃系统如果一个也找不到。看README" + +#: ../../addon.old/libravatar/libravatar.php:112 +#: ../../addon/libravatar/libravatar.php:112 +msgid "Libravatar settings updated." +msgstr "Libravatar设置更新了。" + +#: ../../addon.old/ljpost/ljpost.php:39 ../../addon/ljpost/ljpost.php:39 +msgid "Post to LiveJournal" +msgstr "转播到LiveJournal" + +#: ../../addon.old/ljpost/ljpost.php:70 ../../addon/ljpost/ljpost.php:70 +msgid "LiveJournal Post Settings" +msgstr "LiveJournal转播设置" + +#: ../../addon.old/ljpost/ljpost.php:72 ../../addon/ljpost/ljpost.php:72 +msgid "Enable LiveJournal Post Plugin" +msgstr "使Livejournal转播插件可用" + +#: ../../addon.old/ljpost/ljpost.php:77 ../../addon/ljpost/ljpost.php:77 +msgid "LiveJournal username" +msgstr "LiveJournal用户名" + +#: ../../addon.old/ljpost/ljpost.php:82 ../../addon/ljpost/ljpost.php:82 +msgid "LiveJournal password" +msgstr "LiveJournal密码" + +#: ../../addon.old/ljpost/ljpost.php:87 ../../addon/ljpost/ljpost.php:87 +msgid "Post to LiveJournal by default" +msgstr "默认地转播到LiveJournal" + +#: ../../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快,在您墙,网络分页和私人收件箱的文章。" + +#: ../../addon.old/mathjax/mathjax.php:38 ../../addon/mathjax/mathjax.php:38 +msgid "Use the MathJax renderer" +msgstr "用MathJax表示器" + +#: ../../addon.old/mathjax/mathjax.php:74 ../../addon/mathjax/mathjax.php:75 +msgid "MathJax Base URL" +msgstr "MathJax基础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 "URL JavaScript文件应该包括为用MathJax。可以MathJax CDN或者别的MathJax安装。" + +#: ../../addon.old/membersince/membersince.php:18 +#: ../../addon/membersince/membersince.php:18 +msgid "Member since:" +msgstr "客人从:" + +#: ../../addon.old/morepokes/morepokes.php:19 +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "恶毒掌击" + +#: ../../addon.old/morepokes/morepokes.php:19 +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "恶毒掌击了" + +#: ../../addon.old/morepokes/morepokes.php:20 +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "肏" + +#: ../../addon.old/morepokes/morepokes.php:20 +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "肏了" + +#: ../../addon.old/morepokes/morepokes.php:21 +#: ../../addon/morepokes/morepokes.php:21 +msgid "do something obscenely biological to" +msgstr "做什么淫秽生物的于" + +#: ../../addon.old/morepokes/morepokes.php:21 +#: ../../addon/morepokes/morepokes.php:21 +msgid "did something obscenely biological to" +msgstr "做了什么淫秽生物的于" + +#: ../../addon.old/morepokes/morepokes.php:22 +#: ../../addon/morepokes/morepokes.php:22 +msgid "point out the poke feature to" +msgstr "把戳特点指给" + +#: ../../addon.old/morepokes/morepokes.php:22 +#: ../../addon/morepokes/morepokes.php:22 +msgid "pointed out the poke feature to" +msgstr "把了戳特点指给" + +#: ../../addon.old/morepokes/morepokes.php:23 +#: ../../addon/morepokes/morepokes.php:23 +msgid "declare undying love for" +msgstr "表明永远的爱情为" + +#: ../../addon.old/morepokes/morepokes.php:23 +#: ../../addon/morepokes/morepokes.php:23 +msgid "declared undying love for" +msgstr "表明了永远的爱情为" + +#: ../../addon.old/morepokes/morepokes.php:24 +#: ../../addon/morepokes/morepokes.php:24 +msgid "patent" +msgstr "专利" + +#: ../../addon.old/morepokes/morepokes.php:24 +#: ../../addon/morepokes/morepokes.php:24 +msgid "patented" +msgstr "专利了" + +#: ../../addon.old/morepokes/morepokes.php:25 +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroke beard" +msgstr "摸胡子" + +#: ../../addon.old/morepokes/morepokes.php:25 +#: ../../addon/morepokes/morepokes.php:25 +msgid "stroked their beard at" +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 "哀叹现代的二三等教育规格的衰退给" + +#: ../../addon.old/morepokes/morepokes.php:26 +#: ../../addon/morepokes/morepokes.php:26 +msgid "" +"bemoans the declining standards of modern secondary and tertiary education " +"to" +msgstr "哀叹现代的二三等教育规格的衰退给" + +#: ../../addon.old/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:27 +msgid "hug" +msgstr "拥抱" + +#: ../../addon.old/morepokes/morepokes.php:27 +#: ../../addon/morepokes/morepokes.php:27 +msgid "hugged" +msgstr "拥抱了" + +#: ../../addon.old/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:28 +msgid "kiss" +msgstr "亲吻" + +#: ../../addon.old/morepokes/morepokes.php:28 +#: ../../addon/morepokes/morepokes.php:28 +msgid "kissed" +msgstr "亲吻了" + +#: ../../addon.old/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:29 +msgid "raise eyebrows at" +msgstr "举起眉毛于" + +#: ../../addon.old/morepokes/morepokes.php:29 +#: ../../addon/morepokes/morepokes.php:29 +msgid "raised their eyebrows at" +msgstr "举起了眉毛于" + +#: ../../addon.old/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:30 +msgid "insult" +msgstr "侮辱" + +#: ../../addon.old/morepokes/morepokes.php:30 +#: ../../addon/morepokes/morepokes.php:30 +msgid "insulted" +msgstr "侮辱" + +#: ../../addon.old/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:31 +msgid "praise" +msgstr "赞扬" + +#: ../../addon.old/morepokes/morepokes.php:31 +#: ../../addon/morepokes/morepokes.php:31 +msgid "praised" +msgstr "赞扬了" + +#: ../../addon.old/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:32 +msgid "be dubious of" +msgstr "怀疑" + +#: ../../addon.old/morepokes/morepokes.php:32 +#: ../../addon/morepokes/morepokes.php:32 +msgid "was dubious of" +msgstr "怀疑了" + +#: ../../addon.old/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:33 +msgid "eat" +msgstr "吃" + +#: ../../addon.old/morepokes/morepokes.php:33 +#: ../../addon/morepokes/morepokes.php:33 +msgid "ate" +msgstr "吃了" + +#: ../../addon.old/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggle and fawn at" +msgstr "咯咯地笑和巴结为" + +#: ../../addon.old/morepokes/morepokes.php:34 +#: ../../addon/morepokes/morepokes.php:34 +msgid "giggled and fawned at" +msgstr "咯咯地笑和巴结为了" + +#: ../../addon.old/morepokes/morepokes.php:35 +#: ../../addon/morepokes/morepokes.php:35 +msgid "doubt" +msgstr "怀疑" + +#: ../../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 "瞪" + +#: ../../addon.old/morepokes/morepokes.php:36 +#: ../../addon/morepokes/morepokes.php:36 +msgid "glared at" +msgstr "瞪了" + +#: ../../addon.old/notimeline/notimeline.php:32 +#: ../../addon/notimeline/notimeline.php:32 +msgid "No Timeline settings updated." +msgstr "没有时间链设置更新" + +#: ../../addon.old/notimeline/notimeline.php:56 +#: ../../addon/notimeline/notimeline.php:56 +msgid "No Timeline Settings" +msgstr "没有时间链设置" + +#: ../../addon.old/notimeline/notimeline.php:58 +#: ../../addon/notimeline/notimeline.php:58 +msgid "Disable Archive selector on profile wall" +msgstr "使在简介墙上档案选择器不能用" + +#: ../../addon.old/nsfw/nsfw.php:78 ../../addon/nsfw/nsfw.php:78 +msgid "Not Safe For Work (General Purpose Content Filter) settings" +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标签。这个过滤也会符合设么别的您输入的词,从而能当通用内容过滤有用的。" + +#: ../../addon.old/nsfw/nsfw.php:81 ../../addon/nsfw/nsfw.php:81 +msgid "Enable Content filter" +msgstr "使内容过滤可用" + +#: ../../addon.old/nsfw/nsfw.php:84 ../../addon/nsfw/nsfw.php:84 +msgid "Comma separated list of keywords to hide" +msgstr "逗号分隔单词要隐藏" + +#: ../../addon.old/nsfw/nsfw.php:89 ../../addon/nsfw/nsfw.php:89 +msgid "Use /expression/ to provide regular expressions" +msgstr "用/表达式/为输入正则表达式" + +#: ../../addon.old/nsfw/nsfw.php:105 ../../addon/nsfw/nsfw.php:105 +msgid "NSFW Settings saved." +msgstr "NSFW设置保持了。" + +#: ../../addon.old/nsfw/nsfw.php:157 ../../addon/nsfw/nsfw.php:157 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - 点击为打开/关闭" + +#: ../../addon.old/numfriends/numfriends.php:46 +#: ../../addon/numfriends/numfriends.php:46 +msgid "Numfriends settings updated." +msgstr "Numfriends设置更新了" + +#: ../../addon.old/numfriends/numfriends.php:77 +#: ../../addon/numfriends/numfriends.php:77 +msgid "Numfriends Settings" +msgstr "Numfriends设置" + +#: ../../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/openstreetmap/openstreetmap.php:71 +#: ../../addon/openstreetmap/openstreetmap.php:95 +msgid "Tile Server URL" +msgstr "砖服务器URL" + +#: ../../addon.old/openstreetmap/openstreetmap.php:71 +#: ../../addon/openstreetmap/openstreetmap.php:95 +msgid "" +"A list of public tile servers" +msgstr "一单公共砖服务器" + +#: ../../addon.old/openstreetmap/openstreetmap.php:72 +#: ../../addon/openstreetmap/openstreetmap.php:96 +msgid "Default zoom" +msgstr "默认变焦距" + +#: ../../addon.old/openstreetmap/openstreetmap.php:72 +#: ../../addon/openstreetmap/openstreetmap.php:96 +msgid "The default zoom level. (1:world, 18:highest)" +msgstr "默认变焦距。(1:世界, 18:最高)" + +#: ../../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 "看多" + +#: ../../addon.old/page/page.php:166 ../../addon/page/page.php:166 +msgid "Page settings updated." +msgstr "页设置更新了" + +#: ../../addon.old/page/page.php:195 ../../addon/page/page.php:195 +msgid "Page Settings" +msgstr "页设置" + +#: ../../addon.old/page/page.php:197 ../../addon/page/page.php:197 +msgid "How many forums to display on sidebar without paging" +msgstr "多少评坛要在工具栏上表示无分页" + +#: ../../addon.old/page/page.php:200 ../../addon/page/page.php:200 +msgid "Randomise Page/Forum list" +msgstr "把页/评坛单洗牌" + +#: ../../addon.old/page/page.php:203 ../../addon/page/page.php:203 +msgid "Show pages/forums on profile page" +msgstr "表示页/评坛在简介页" + +#: ../../addon.old/pageheader/pageheader.php:50 +#: ../../addon/pageheader/pageheader.php:50 +msgid "\"pageheader\" Settings" +msgstr "\"pageheader" + +#: ../../addon.old/pageheader/pageheader.php:68 +#: ../../addon/pageheader/pageheader.php:68 +msgid "pageheader Settings saved." +msgstr "pageHeader配置保存了。" + +#: ../../addon.old/piwik/piwik.php:79 ../../addon/piwik/piwik.php:79 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "这个网站用Piwik分析工具追踪 。" + +#: ../../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 can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "如果您不想您访问这样记录您可以用一个cookie防Piwik追踪未来的访问(选择性退出)。" + +#: ../../addon.old/piwik/piwik.php:90 ../../addon/piwik/piwik.php:90 +msgid "Piwik Base URL" +msgstr "Piwik基础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 "绝对道路到Piwik安装。(没有协议(http/s)跟斜线后缀)" + +#: ../../addon.old/piwik/piwik.php:91 ../../addon/piwik/piwik.php:91 +msgid "Site ID" +msgstr "网站ID" + +#: ../../addon.old/piwik/piwik.php:92 ../../addon/piwik/piwik.php:92 +msgid "Show opt-out cookie link?" +msgstr " 显示选择性退出cookie按钮?" + +#: ../../addon.old/piwik/piwik.php:93 ../../addon/piwik/piwik.php:93 +msgid "Asynchronous tracking" +msgstr "异步追踪" + +#: ../../addon.old/planets/planets.php:150 ../../addon/planets/planets.php:150 +msgid "Planets Settings" +msgstr "行星设置" + +#: ../../addon.old/planets/planets.php:152 ../../addon/planets/planets.php:152 +msgid "Enable Planets Plugin" +msgstr "使行星插件可用" + +#: ../../addon.old/posterous/posterous.php:37 +#: ../../addon/posterous/posterous.php:37 +msgid "Post to Posterous" +msgstr "发送往Posterous" + +#: ../../addon.old/posterous/posterous.php:70 +#: ../../addon/posterous/posterous.php:70 +msgid "Posterous Post Settings" +msgstr "Posterous发送设置" + +#: ../../addon.old/posterous/posterous.php:72 +#: ../../addon/posterous/posterous.php:72 +msgid "Enable Posterous Post Plugin" +msgstr "使Posterous发送插件可用的" + +#: ../../addon.old/posterous/posterous.php:77 +#: ../../addon/posterous/posterous.php:77 +msgid "Posterous login" +msgstr "Posterous登记名" + +#: ../../addon.old/posterous/posterous.php:82 +#: ../../addon/posterous/posterous.php:82 +msgid "Posterous password" +msgstr "Posterous密码" + +#: ../../addon.old/posterous/posterous.php:87 +#: ../../addon/posterous/posterous.php:87 +msgid "Posterous site ID" +msgstr "Posterous网站身份证明" + +#: ../../addon.old/posterous/posterous.php:92 +#: ../../addon/posterous/posterous.php:92 +msgid "Posterous API token" +msgstr "Posterous API令牌" + +#: ../../addon.old/posterous/posterous.php:97 +#: ../../addon/posterous/posterous.php:97 +msgid "Post to Posterous by default" +msgstr "默认地发送往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 "缓存期(小时)" + +#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 +#: ../../addon/privacy_image_cache/privacy_image_cache.php:356 +msgid "Cache Statistics" +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 "项目数量" + +#: ../../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 "缓存尺寸" + +#: ../../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 "删除全缓存" + +#: ../../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几天后过期了。" + +#: ../../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账户快过期。" + +#: ../../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 "你好%1$s,⏎ ⏎您的账户在%2$s五天内过期。您会继续您的账户经由每30天至少一次登录。" + +#: ../../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 "快捷评论设置" + +#: ../../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 "快捷评论是在评论文本框,有时候隐藏。点击它们为输入简单的回答。" + +#: ../../addon.old/qcomment/qcomment.php:57 +#: ../../addon/qcomment/qcomment.php:57 +msgid "Enter quick comments, one per line" +msgstr "输入快捷评论,一行一个" + +#: ../../addon.old/qcomment/qcomment.php:75 +#: ../../addon/qcomment/qcomment.php:75 +msgid "Quick Comment settings saved." +msgstr "快捷评论设置保存了。" + +#: ../../addon.old/randplace/randplace.php:169 +#: ../../addon/randplace/randplace.php:169 +msgid "Randplace Settings" +msgstr "随意下设置" + +#: ../../addon.old/randplace/randplace.php:171 +#: ../../addon/randplace/randplace.php:171 +msgid "Enable Randplace Plugin" +msgstr "使随意下插件能用" + +#: ../../addon.old/showmore/showmore.php:38 +#: ../../addon/showmore/showmore.php:38 +msgid "\"Show more\" Settings" +msgstr "「看更多」设置" + +#: ../../addon.old/showmore/showmore.php:41 +#: ../../addon/showmore/showmore.php:41 +msgid "Enable Show More" +msgstr "使看更多能用" + +#: ../../addon.old/showmore/showmore.php:44 +#: ../../addon/showmore/showmore.php:44 +msgid "Cutting posts after how much characters" +msgstr "剪掉文章多少字后" + +#: ../../addon.old/showmore/showmore.php:65 +#: ../../addon/showmore/showmore.php:65 +msgid "Show More Settings saved." +msgstr "看更多设置保存了。" + +#: ../../addon.old/snautofollow/snautofollow.php:32 +#: ../../addon/snautofollow/snautofollow.php:32 +msgid "StatusNet AutoFollow settings updated." +msgstr "StatusNet自动关注设置更新了。" + +#: ../../addon.old/snautofollow/snautofollow.php:56 +#: ../../addon/snautofollow/snautofollow.php:56 +msgid "StatusNet AutoFollow Settings" +msgstr "StatusNet自动关注设置" + +#: ../../addon.old/snautofollow/snautofollow.php:58 +#: ../../addon/snautofollow/snautofollow.php:58 +msgid "Automatically follow any StatusNet followers/mentioners" +msgstr "自动关注所有的StatusGet关注者/提及" + +#: ../../addon.old/startpage/startpage.php:83 +#: ../../addon/startpage/startpage.php:83 +msgid "Startpage Settings" +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 "主页登录后表示-留空白为简介墙" + +#: ../../addon.old/startpage/startpage.php:88 +#: ../../addon/startpage/startpage.php:88 +msgid "Examples: "network" or "notifications/system"" +msgstr "例如:"网络"或"通知/系统"" + +#: ../../addon.old/statusnet/statusnet.php:134 +#: ../../addon/statusnet/statusnet.php:138 +msgid "Post to StatusNet" +msgstr "发送到StatusNet" + +#: ../../addon.old/statusnet/statusnet.php:176 +#: ../../addon/statusnet/statusnet.php:180 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "请联系您的网站行政人员。
提供的API URL无效。" + +#: ../../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在您输入的路径。" + +#: ../../addon.old/statusnet/statusnet.php:232 +#: ../../addon/statusnet/statusnet.php:238 +msgid "StatusNet settings updated." +msgstr "StatusNet设置更新了。" + +#: ../../addon.old/statusnet/statusnet.php:257 +#: ../../addon/statusnet/statusnet.php:269 +msgid "StatusNet Posting Settings" +msgstr "StatusNet发送设置" + +#: ../../addon.old/statusnet/statusnet.php:271 +#: ../../addon/statusnet/statusnet.php:283 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "综合可用的StatusNet OAuthKeys" + +#: ../../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(看下)。" + +#: ../../addon.old/statusnet/statusnet.php:280 +#: ../../addon/statusnet/statusnet.php:292 +msgid "Provide your own OAuth Credentials" +msgstr "提供您自己的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.
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基础根。
您登记您的OAuth钥匙双前问行政人员已经有没有钥匙双为这个Friendica安装在您最喜欢的StatusNet安装。" + +#: ../../addon.old/statusnet/statusnet.php:283 +#: ../../addon/statusnet/statusnet.php:295 +msgid "OAuth Consumer Key" +msgstr "Oauth消费者钥匙" + +#: ../../addon.old/statusnet/statusnet.php:286 +#: ../../addon/statusnet/statusnet.php:298 +msgid "OAuth Consumer Secret" +msgstr "Oauth消费者密码" + +#: ../../addon.old/statusnet/statusnet.php:289 +#: ../../addon/statusnet/statusnet.php:301 +msgid "Base API Path (remember the trailing /)" +msgstr "基础API地址(注意最后的/)" + +#: ../../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 public posts will be posted" +" to StatusNet." +msgstr "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。" + +#: ../../addon.old/statusnet/statusnet.php:311 +#: ../../addon/statusnet/statusnet.php:323 +msgid "Log in with StatusNet" +msgstr "用StatusNet登记" + +#: ../../addon.old/statusnet/statusnet.php:313 +#: ../../addon/statusnet/statusnet.php:325 +msgid "Copy the security code from StatusNet here" +msgstr "复制安全密码从StatusNet这儿" + +#: ../../addon.old/statusnet/statusnet.php:319 +#: ../../addon/statusnet/statusnet.php:331 +msgid "Cancel Connection Process" +msgstr "注销连接过程 " + +#: ../../addon.old/statusnet/statusnet.php:321 +#: ../../addon/statusnet/statusnet.php:333 +msgid "Current StatusNet API is" +msgstr "现在StatusNet API是" + +#: ../../addon.old/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:334 +msgid "Cancel StatusNet Connection" +msgstr "注销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 "现在连接到:" + +#: ../../addon.old/statusnet/statusnet.php:334 +#: ../../addon/statusnet/statusnet.php:346 +msgid "" +"If enabled all your public 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 "如果使可用的都您公开的文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。" + +#: ../../addon.old/statusnet/statusnet.php:336 +#: ../../addon/statusnet/statusnet.php:348 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) 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 "注意: 由于您的隐私设置(隐藏您的简介内容为生看者?)超链接可能包括在公文章转播到StatusNets会带领来客到空白页讲他看您的简介被限制。" + +#: ../../addon.old/statusnet/statusnet.php:339 +#: ../../addon/statusnet/statusnet.php:351 +msgid "Allow posting to StatusNet" +msgstr "许放在StatusNet" + +#: ../../addon.old/statusnet/statusnet.php:342 +#: ../../addon/statusnet/statusnet.php:354 +msgid "Send public postings to StatusNet by default" +msgstr "默认发送公开文章在StatusNet" + +#: ../../addon.old/statusnet/statusnet.php:345 +#: ../../addon/statusnet/statusnet.php:366 +msgid "Send linked #-tags and @-names to StatusNet" +msgstr "转播连接的#标签盒@名到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设置" + +#: ../../addon.old/statusnet/statusnet.php:567 +#: ../../addon/statusnet/statusnet.php:744 ../../mod/admin.php:484 +msgid "Site name" +msgstr "网页名字" + +#: ../../addon.old/statusnet/statusnet.php:568 +#: ../../addon/statusnet/statusnet.php:745 +msgid "API URL" +msgstr "API URL" + +#: ../../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)" + +#: ../../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)" + +#: ../../addon.old/testdrive/testdrive.php:95 +#: ../../addon/testdrive/testdrive.php:95 +msgid "Your Friendica test account is about to expire." +msgstr "您Friendica化验账户快过期了。" + +#: ../../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。" + +#: ../../addon.old/tictac/tictac.php:20 ../../addon/tictac/tictac.php:20 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "三维井字棋" + +#: ../../addon.old/tictac/tictac.php:53 ../../addon/tictac/tictac.php:53 +msgid "3D Tic-Tac-Toe" +msgstr "三维井字棋" + +#: ../../addon.old/tictac/tictac.php:58 ../../addon/tictac/tictac.php:58 +msgid "New game" +msgstr "新游戏" + +#: ../../addon.old/tictac/tictac.php:59 ../../addon/tictac/tictac.php:59 +msgid "New game with handicap" +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 "三维井字棋跟传统的一样,除了完同时在多水平。" + +#: ../../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 "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。" + +#: ../../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 "不利条件游戏使中间位置不能用因为占用着选手常常有不平的好处。" + +#: ../../addon.old/tictac/tictac.php:182 ../../addon/tictac/tictac.php:182 +msgid "You go first..." +msgstr "您先下..." + +#: ../../addon.old/tictac/tictac.php:187 ../../addon/tictac/tictac.php:187 +msgid "I'm going first this time..." +msgstr "这次我先下..." + +#: ../../addon.old/tictac/tictac.php:193 ../../addon/tictac/tictac.php:193 +msgid "You won!" +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 "「猫子」游戏!" + +#: ../../addon.old/tictac/tictac.php:222 ../../addon/tictac/tictac.php:222 +msgid "I won!" +msgstr "我赢了!" + +#: ../../addon.old/tumblr/tumblr.php:36 ../../addon/tumblr/tumblr.php:158 +msgid "Post to Tumblr" +msgstr "发送到Tumblr" + +#: ../../addon.old/tumblr/tumblr.php:67 ../../addon/tumblr/tumblr.php:185 +msgid "Tumblr Post Settings" +msgstr "Tumblr发送设置" + +#: ../../addon.old/tumblr/tumblr.php:69 ../../addon/tumblr/tumblr.php:192 +msgid "Enable Tumblr Post Plugin" +msgstr "使Tumblr发送插件能够" + +#: ../../addon.old/tumblr/tumblr.php:74 +msgid "Tumblr login" +msgstr "Tumblr登记名" + +#: ../../addon.old/tumblr/tumblr.php:79 +msgid "Tumblr password" +msgstr "Tumblr密码" + +#: ../../addon.old/tumblr/tumblr.php:84 ../../addon/tumblr/tumblr.php:197 +msgid "Post to Tumblr by default" +msgstr "默认地给Tumblr发送" + +#: ../../addon.old/twitter/twitter.php:73 ../../addon/twitter/twitter.php:77 +msgid "Post to Twitter" +msgstr "发送到在Twitter" + +#: ../../addon.old/twitter/twitter.php:122 ../../addon/twitter/twitter.php:129 +msgid "Twitter settings updated." +msgstr "Twitter设置更新了。" + +#: ../../addon.old/twitter/twitter.php:146 ../../addon/twitter/twitter.php:157 +msgid "Twitter Posting Settings" +msgstr "Twitter发送设置" + +#: ../../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的消费钥匙双。请联系您的网页行政人员。" + +#: ../../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 public posts will" +" be posted to Twitter." +msgstr "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的公开文章被发送到Twitter。" + +#: ../../addon.old/twitter/twitter.php:173 ../../addon/twitter/twitter.php:184 +msgid "Log in with Twitter" +msgstr "用Twitter登记" + +#: ../../addon.old/twitter/twitter.php:175 ../../addon/twitter/twitter.php:186 +msgid "Copy the PIN from Twitter here" +msgstr "复制Twitter密码这儿" + +#: ../../addon.old/twitter/twitter.php:190 ../../addon/twitter/twitter.php:201 +msgid "" +"If enabled all your public 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 "如果使可用的都您公开的文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。" + +#: ../../addon.old/twitter/twitter.php:192 ../../addon/twitter/twitter.php:203 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) 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 "注意:由于您的隐私设置(隐藏您的简介内容为生人?)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。" + +#: ../../addon.old/twitter/twitter.php:195 ../../addon/twitter/twitter.php:206 +msgid "Allow posting to Twitter" +msgstr "允许发送到Twitter" + +#: ../../addon.old/twitter/twitter.php:198 ../../addon/twitter/twitter.php:209 +msgid "Send public postings to Twitter by default" +msgstr "默认地发送公开文章到Twitter" + +#: ../../addon.old/twitter/twitter.php:201 ../../addon/twitter/twitter.php:221 +msgid "Send linked #-tags and @-names to Twitter" +msgstr "转播连接的#标签盒@名到Twitter" + +#: ../../addon.old/twitter/twitter.php:396 ../../addon/twitter/twitter.php:558 +msgid "Consumer key" +msgstr "钥匙(Consumer key)" + +#: ../../addon.old/twitter/twitter.php:397 ../../addon/twitter/twitter.php:559 +msgid "Consumer secret" +msgstr "密码(Consumer secret)" + +#: ../../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 RemoteStorage" +" WebFinger" +msgstr "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看RemoteStorage WebFinger" + +#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 +#: ../../addon/uhremotestorage/uhremotestorage.php:85 +msgid "Template URL (with {category})" +msgstr "模板URL(根{category})" + +#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 +#: ../../addon/uhremotestorage/uhremotestorage.php:86 +msgid "OAuth end-point" +msgstr "OAuth 端点" + +#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 +#: ../../addon/uhremotestorage/uhremotestorage.php:87 +msgid "Api" +msgstr "API" + +#: ../../addon.old/viewsrc/viewsrc.php:37 ../../addon/viewsrc/viewsrc.php:39 +msgid "View Source" +msgstr "看源代码" + +#: ../../addon.old/widgets/widget_friendheader.php:40 +#: ../../addon/widgets/widget_friendheader.php:40 +msgid "Get added to this list!" +msgstr "被在这个单子加入!" + +#: ../../addon.old/widgets/widget_friends.php:40 +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendica!" +msgstr "连接在Friendica!" + +#: ../../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人喜欢这个" + +#: ../../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人不喜欢这个" + +#: ../../addon.old/widgets/widgets.php:56 ../../addon/widgets/widgets.php:57 +msgid "Generate new key" +msgstr "造成新钥匙" + +#: ../../addon.old/widgets/widgets.php:59 ../../addon/widgets/widgets.php:60 +msgid "Widgets key" +msgstr "小窗口钥匙" + +#: ../../addon.old/widgets/widgets.php:61 ../../addon/widgets/widgets.php:62 +msgid "Widgets available" +msgstr "可用的小窗口" + +#: ../../addon.old/widgets/widgets.php:123 ../../addon/widgets/widgets.php:124 +#: ../../mod/settings.php:646 +msgid "Plugin Settings" +msgstr "插件设置" + +#: ../../addon.old/wppost/wppost.php:42 ../../addon/wppost/wppost.php:42 +msgid "Post to Wordpress" +msgstr "发送到Wordpress" + +#: ../../addon.old/wppost/wppost.php:76 ../../addon/wppost/wppost.php:76 +msgid "WordPress Post Settings" +msgstr "Wordpress发送设置" + +#: ../../addon.old/wppost/wppost.php:78 ../../addon/wppost/wppost.php:78 +msgid "Enable WordPress Post Plugin" +msgstr "使Wordpress发送插件可用" + +#: ../../addon.old/wppost/wppost.php:83 ../../addon/wppost/wppost.php:83 +msgid "WordPress username" +msgstr "Wordpress用户名" + +#: ../../addon.old/wppost/wppost.php:88 ../../addon/wppost/wppost.php:88 +msgid "WordPress password" +msgstr "Wordpress密码" + +#: ../../addon.old/wppost/wppost.php:93 ../../addon/wppost/wppost.php:93 +msgid "WordPress API URL" +msgstr "WordPress API URL" + +#: ../../addon.old/wppost/wppost.php:98 ../../addon/wppost/wppost.php:98 +msgid "Post to WordPress by default" +msgstr "默认地发送到Wordpress" + +#: ../../addon.old/wppost/wppost.php:103 ../../addon/wppost/wppost.php:103 +msgid "Provide a backlink to the Friendica post" +msgstr "输入反向链接到Friendica文章" + +#: ../../addon.old/wppost/wppost.php:207 ../../addon/wppost/wppost.php:207 +msgid "Read the original post and comment stream on Friendica" +msgstr "看原来文章和评论溪流在Friendica" + +#: ../../addon.old/yourls/yourls.php:55 ../../addon/yourls/yourls.php:55 +msgid "YourLS Settings" +msgstr "YourLS配置" + +#: ../../addon.old/yourls/yourls.php:57 ../../addon/yourls/yourls.php:57 +msgid "URL: http://" +msgstr "URL: http://" + +#: ../../addon.old/yourls/yourls.php:62 ../../addon/yourls/yourls.php:62 +msgid "Username:" +msgstr "用户名:" + +#: ../../addon.old/yourls/yourls.php:67 ../../addon/yourls/yourls.php:67 +msgid "Password:" +msgstr "密码:" + +#: ../../addon.old/yourls/yourls.php:72 ../../addon/yourls/yourls.php:72 +msgid "Use SSL " +msgstr "用SSL" + +#: ../../addon.old/yourls/yourls.php:92 ../../addon/yourls/yourls.php:92 +msgid "yourls Settings saved." +msgstr "yourls配置保存了。" + +#: ../../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 "一个人的" + +#: ../../addon/altpager/altpager.php:100 +msgid "Each user chooses whether to use the alternate pager" +msgstr "每用户选择是否用供替换的分页" + +#: ../../addon/fbpost/fbpost.php:239 +msgid "Suppress \"View on friendica\"" +msgstr "禁止「看在Friendica」" + +#: ../../addon/fbpost/fbpost.php:243 +msgid "Mirror wall posts from facebook to friendica." +msgstr "复制墙文章从facebook到friendica。" + +#: ../../addon/fbpost/fbpost.php:253 +msgid "Post to page/group:" +msgstr "放在页/组:" + +#: ../../addon/fbpost/fbpost.php:375 +#, php-format +msgid "%s:" +msgstr "%s:" + +#: ../../addon/forumdirectory/forumdirectory.php:22 +msgid "Forum Directory" +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 "公众看拒绝" + +#: ../../addon/forumdirectory/forumdirectory.php:71 ../../mod/directory.php:49 +#: ../../view/theme/diabook/theme.php:518 +msgid "Global Directory" +msgstr "综合目录" + +#: ../../addon/forumdirectory/forumdirectory.php:79 ../../mod/directory.php:57 +msgid "Find on this site" +msgstr "找在这网站" + +#: ../../addon/forumdirectory/forumdirectory.php:81 ../../mod/contacts.php:612 +#: ../../mod/directory.php:59 +msgid "Finding: " +msgstr "找着:" + +#: ../../addon/forumdirectory/forumdirectory.php:82 ../../mod/directory.php:60 +msgid "Site Directory" +msgstr "网站目录" + +#: ../../addon/forumdirectory/forumdirectory.php:83 +#: ../../include/contact_widgets.php:33 ../../mod/contacts.php:613 +#: ../../mod/directory.php:61 +msgid "Find" +msgstr "搜索" + +#: ../../addon/forumdirectory/forumdirectory.php:133 +#: ../../mod/profiles.php:682 ../../mod/directory.php:111 +msgid "Age: " +msgstr "年纪:" + +#: ../../addon/forumdirectory/forumdirectory.php:136 +#: ../../mod/directory.php:114 +msgid "Gender: " +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 "位置:" + +#: ../../addon/forumdirectory/forumdirectory.php:158 +#: ../../include/profile_advanced.php:17 ../../mod/directory.php:136 +#: ../../boot.php:1408 +msgid "Gender:" +msgstr "性别:" + +#: ../../addon/forumdirectory/forumdirectory.php:160 +#: ../../include/profile_advanced.php:37 ../../mod/directory.php:138 +#: ../../boot.php:1411 +msgid "Status:" +msgstr "现状:" + +#: ../../addon/forumdirectory/forumdirectory.php:162 +#: ../../include/profile_advanced.php:48 ../../mod/directory.php:140 +#: ../../boot.php:1413 +msgid "Homepage:" +msgstr "主页:" + +#: ../../addon/forumdirectory/forumdirectory.php:164 +#: ../../include/profile_advanced.php:58 ../../mod/directory.php:142 +msgid "About:" +msgstr "关于:" + +#: ../../addon/forumdirectory/forumdirectory.php:201 +#: ../../mod/directory.php:187 +msgid "No entries (some entries may be hidden)." +msgstr "没有文章(有的文章会被隐藏)。" + +#: ../../addon/group_text/group_text.php:46 +msgid "Group Text settings updated." +msgstr "组正文设置更新了。" + +#: ../../addon/remote_permissions/remote_permissions.php:45 +msgid "Remote Permissions Settings" +msgstr "对外批准设置" + +#: ../../addon/remote_permissions/remote_permissions.php:46 +msgid "" +"Allow recipients of your private posts to see the other recipients of the " +"posts" +msgstr "允许您私人文章接受者看别接受者。" + +#: ../../addon/remote_permissions/remote_permissions.php:58 +msgid "Remote Permissions settings updated." +msgstr "对外批准设置更新了。" + +#: ../../addon/remote_permissions/remote_permissions.php:124 +#: ../../mod/lockview.php:48 +msgid "Visible to:" +msgstr "可见给:" + +#: ../../addon/remote_permissions/remote_permissions.php:178 +msgid "Visible to" +msgstr "可见的给" + +#: ../../addon/remote_permissions/remote_permissions.php:178 +msgid "may only be a partial list" +msgstr "可能部分的单" + +#: ../../addon/remote_permissions/remote_permissions.php:197 +msgid "The posts of every user on this server show the post recipients" +msgstr "这网站所有用户的文章表示接受者" + +#: ../../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 "" +"Mirror all posts from statusnet that are no replies or repeated messages" +msgstr "复制所有文章从statusnet除了回答或重复的通知以外" + +#: ../../addon/statusnet/statusnet.php:362 +msgid "Shortening method that optimizes the post" +msgstr "缩短方法优化文章" + +#: ../../addon/tumblr/tumblr.php:144 +msgid "You are now authenticated to tumblr." +msgstr "现在tumblr证明您是真的" + +#: ../../addon/tumblr/tumblr.php:145 +msgid "return to the connector page" +msgstr "会连接器页" + +#: ../../addon/tumblr/tumblr.php:188 +msgid "(Re-)Authenticate your tumblr page" +msgstr "再认证您的tumblr页" + +#: ../../addon/tumblr/tumblr.php:217 +msgid "Post to page:" +msgstr "放在页:" + +#: ../../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 "" +"set this to avoid mirroring postings from ~friendica back to ~friendica" +msgstr "选择这个为避免复制文章从~friendica回归~friendica" + +#: ../../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 "简介" + +#: ../../include/profile_advanced.php:15 ../../mod/settings.php:1050 +msgid "Full Name:" +msgstr "全名:" + +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" +msgstr "j F, Y" + +#: ../../include/profile_advanced.php:23 +msgid "j F" +msgstr "j F" + +#: ../../include/profile_advanced.php:30 +msgid "Birthday:" +msgstr "生日:" + +#: ../../include/profile_advanced.php:34 +msgid "Age:" +msgstr "年纪:" + +#: ../../include/profile_advanced.php:43 +#, php-format +msgid "for %1$d %2$s" +msgstr "为%1$d %2$s" + +#: ../../include/profile_advanced.php:46 ../../mod/profiles.php:646 +msgid "Sexual Preference:" +msgstr "性取向" + +#: ../../include/profile_advanced.php:50 ../../mod/profiles.php:648 +msgid "Hometown:" +msgstr "故乡:" + +#: ../../include/profile_advanced.php:52 +msgid "Tags:" +msgstr "标签:" + +#: ../../include/profile_advanced.php:54 ../../mod/profiles.php:649 +msgid "Political Views:" +msgstr "政治观念:" + +#: ../../include/profile_advanced.php:56 +msgid "Religion:" +msgstr "宗教:" + +#: ../../include/profile_advanced.php:60 +msgid "Hobbies/Interests:" +msgstr "爱好/兴趣" + +#: ../../include/profile_advanced.php:62 ../../mod/profiles.php:653 +msgid "Likes:" +msgstr "喜欢:" + +#: ../../include/profile_advanced.php:64 ../../mod/profiles.php:654 +msgid "Dislikes:" +msgstr "不喜欢:" + +#: ../../include/profile_advanced.php:67 +msgid "Contact information and Social Networks:" +msgstr "熟人消息和社会化网络" + +#: ../../include/profile_advanced.php:69 +msgid "Musical interests:" +msgstr "音乐兴趣:" + +#: ../../include/profile_advanced.php:71 +msgid "Books, literature:" +msgstr "书,文学" + +#: ../../include/profile_advanced.php:73 +msgid "Television:" +msgstr "电视:" + +#: ../../include/profile_advanced.php:75 +msgid "Film/dance/culture/entertainment:" +msgstr "电影/跳舞/文化/娱乐:" + +#: ../../include/profile_advanced.php:77 +msgid "Love/Romance:" +msgstr "爱情/浪漫" + +#: ../../include/profile_advanced.php:79 +msgid "Work/employment:" +msgstr "工作" + +#: ../../include/profile_advanced.php:81 +msgid "School/education:" +msgstr "学院/教育" + +#: ../../include/profile_selectors.php:6 +msgid "Male" +msgstr "男的" + +#: ../../include/profile_selectors.php:6 +msgid "Female" +msgstr "女的" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "现在男的" + +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "现在女的" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "主要男的" + +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "主要女的" + +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "跨性別" + +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "阴阳人" + +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "”转基因“人" + +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "两性体" + +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "中性的" + +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "不明确的" + +#: ../../include/profile_selectors.php:6 +msgid "Other" +msgstr "别的" + +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "未决" + +#: ../../include/profile_selectors.php:23 +msgid "Males" +msgstr "男人" + +#: ../../include/profile_selectors.php:23 +msgid "Females" +msgstr "女人" + +#: ../../include/profile_selectors.php:23 +msgid "Gay" +msgstr "男同性恋的" + +#: ../../include/profile_selectors.php:23 +msgid "Lesbian" +msgstr "女同性恋的" + +#: ../../include/profile_selectors.php:23 +msgid "No Preference" +msgstr "无偏爱" + +#: ../../include/profile_selectors.php:23 +msgid "Bisexual" +msgstr "双性恋的" + +#: ../../include/profile_selectors.php:23 +msgid "Autosexual" +msgstr "自性的" + +#: ../../include/profile_selectors.php:23 +msgid "Abstinent" +msgstr "有节制的" + +#: ../../include/profile_selectors.php:23 +msgid "Virgin" +msgstr "原始的" + +#: ../../include/profile_selectors.php:23 +msgid "Deviant" +msgstr "变态" + +#: ../../include/profile_selectors.php:23 +msgid "Fetish" +msgstr "恋物对象" + +#: ../../include/profile_selectors.php:23 +msgid "Oodles" +msgstr "多多" + +#: ../../include/profile_selectors.php:23 +msgid "Nonsexual" +msgstr "无性" + +#: ../../include/profile_selectors.php:42 +msgid "Single" +msgstr "单身" + +#: ../../include/profile_selectors.php:42 +msgid "Lonely" +msgstr "寂寞" + +#: ../../include/profile_selectors.php:42 +msgid "Available" +msgstr "单身的" + +#: ../../include/profile_selectors.php:42 +msgid "Unavailable" +msgstr "不可获得的" + +#: ../../include/profile_selectors.php:42 +msgid "Has crush" +msgstr "迷恋" + +#: ../../include/profile_selectors.php:42 +msgid "Infatuated" +msgstr "痴迷" + +#: ../../include/profile_selectors.php:42 +msgid "Dating" +msgstr "约会" + +#: ../../include/profile_selectors.php:42 +msgid "Unfaithful" +msgstr "外遇" + +#: ../../include/profile_selectors.php:42 +msgid "Sex Addict" +msgstr "性交因成瘾者" + +#: ../../include/profile_selectors.php:42 ../../include/user.php:279 +#: ../../include/user.php:283 +msgid "Friends" +msgstr "朋友" + +#: ../../include/profile_selectors.php:42 +msgid "Friends/Benefits" +msgstr "朋友/益" + +#: ../../include/profile_selectors.php:42 +msgid "Casual" +msgstr "休闲" + +#: ../../include/profile_selectors.php:42 +msgid "Engaged" +msgstr "已订婚的" + +#: ../../include/profile_selectors.php:42 +msgid "Married" +msgstr "结婚" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily married" +msgstr "想像结婚" + +#: ../../include/profile_selectors.php:42 +msgid "Partners" +msgstr "伴侣" + +#: ../../include/profile_selectors.php:42 +msgid "Cohabiting" +msgstr "同居" + +#: ../../include/profile_selectors.php:42 +msgid "Common law" +msgstr "普通法结婚" + +#: ../../include/profile_selectors.php:42 +msgid "Happy" +msgstr "幸福" + +#: ../../include/profile_selectors.php:42 +msgid "Not looking" +msgstr "没找" + +#: ../../include/profile_selectors.php:42 +msgid "Swinger" +msgstr "交换性伴侣的" + +#: ../../include/profile_selectors.php:42 +msgid "Betrayed" +msgstr "被背叛" + +#: ../../include/profile_selectors.php:42 +msgid "Separated" +msgstr "分手" + +#: ../../include/profile_selectors.php:42 +msgid "Unstable" +msgstr "不稳" + +#: ../../include/profile_selectors.php:42 +msgid "Divorced" +msgstr "离婚" + +#: ../../include/profile_selectors.php:42 +msgid "Imaginarily divorced" +msgstr "想像离婚" + +#: ../../include/profile_selectors.php:42 +msgid "Widowed" +msgstr "寡妇" + +#: ../../include/profile_selectors.php:42 +msgid "Uncertain" +msgstr "不确定" + +#: ../../include/profile_selectors.php:42 +msgid "It's complicated" +msgstr "是复杂" + +#: ../../include/profile_selectors.php:42 +msgid "Don't care" +msgstr "无所谓" + +#: ../../include/profile_selectors.php:42 +msgid "Ask me" +msgstr "问我" + +#: ../../include/Contact.php:115 +msgid "stopped following" +msgstr "结束关注了" + +#: ../../include/Contact.php:225 ../../include/conversation.php:838 +msgid "Poke" +msgstr "戳" + +#: ../../include/Contact.php:226 ../../include/conversation.php:832 +msgid "View Status" +msgstr "看现状" + +#: ../../include/Contact.php:227 ../../include/conversation.php:833 +msgid "View Profile" +msgstr "看简介" + +#: ../../include/Contact.php:228 ../../include/conversation.php:834 +msgid "View Photos" +msgstr "看照片" + +#: ../../include/Contact.php:229 ../../include/Contact.php:251 +#: ../../include/conversation.php:835 +msgid "Network Posts" +msgstr "网络文章" + +#: ../../include/Contact.php:230 ../../include/Contact.php:251 +#: ../../include/conversation.php:836 +msgid "Edit Contact" +msgstr "编辑熟人" + +#: ../../include/Contact.php:231 ../../include/Contact.php:251 +#: ../../include/conversation.php:837 +msgid "Send PM" +msgstr "法私人的新闻" + +#: ../../include/text.php:276 +msgid "prev" +msgstr "上个" + +#: ../../include/text.php:278 +msgid "first" +msgstr "首先" + +#: ../../include/text.php:307 +msgid "last" +msgstr "最后" + +#: ../../include/text.php:310 +msgid "next" +msgstr "下个" + +#: ../../include/text.php:328 +msgid "newer" +msgstr "更新" + +#: ../../include/text.php:332 +msgid "older" +msgstr "更旧" + +#: ../../include/text.php:697 +msgid "No contacts" +msgstr "没有熟人" + +#: ../../include/text.php:706 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d熟人" + +#: ../../include/text.php:718 ../../mod/viewcontacts.php:76 +msgid "View Contacts" +msgstr "看熟人" + +#: ../../include/text.php:778 ../../include/text.php:779 +#: ../../include/nav.php:118 ../../mod/search.php:99 +msgid "Search" +msgstr "搜索" + +#: ../../include/text.php:819 +msgid "poke" +msgstr "戳" + +#: ../../include/text.php:819 ../../include/conversation.php:211 +msgid "poked" +msgstr "戳了" + +#: ../../include/text.php:820 +msgid "ping" +msgstr "砰" + +#: ../../include/text.php:820 +msgid "pinged" +msgstr "砰了" + +#: ../../include/text.php:821 +msgid "prod" +msgstr "柔戳" + +#: ../../include/text.php:821 +msgid "prodded" +msgstr "柔戳了" + +#: ../../include/text.php:822 +msgid "slap" +msgstr "掌击" + +#: ../../include/text.php:822 +msgid "slapped" +msgstr "掌击了" + +#: ../../include/text.php:823 +msgid "finger" +msgstr "指" + +#: ../../include/text.php:823 +msgid "fingered" +msgstr "指了" + +#: ../../include/text.php:824 +msgid "rebuff" +msgstr "窝脖儿" + +#: ../../include/text.php:824 +msgid "rebuffed" +msgstr "窝脖儿了" + +#: ../../include/text.php:836 +msgid "happy" +msgstr "开心" + +#: ../../include/text.php:837 +msgid "sad" +msgstr "伤心" + +#: ../../include/text.php:838 +msgid "mellow" +msgstr "轻松" + +#: ../../include/text.php:839 +msgid "tired" +msgstr "累" + +#: ../../include/text.php:840 +msgid "perky" +msgstr "机敏" + +#: ../../include/text.php:841 +msgid "angry" +msgstr "生气" + +#: ../../include/text.php:842 +msgid "stupified" +msgstr "麻醉" + +#: ../../include/text.php:843 +msgid "puzzled" +msgstr "纳闷" + +#: ../../include/text.php:844 +msgid "interested" +msgstr "有兴趣" + +#: ../../include/text.php:845 +msgid "bitter" +msgstr "苦" + +#: ../../include/text.php:846 +msgid "cheerful" +msgstr "快乐" + +#: ../../include/text.php:847 +msgid "alive" +msgstr "活着" + +#: ../../include/text.php:848 +msgid "annoyed" +msgstr "被烦恼" + +#: ../../include/text.php:849 +msgid "anxious" +msgstr "心焦" + +#: ../../include/text.php:850 +msgid "cranky" +msgstr "不稳" + +#: ../../include/text.php:851 +msgid "disturbed" +msgstr "不安" + +#: ../../include/text.php:852 +msgid "frustrated" +msgstr "被作梗" + +#: ../../include/text.php:853 +msgid "motivated" +msgstr "士气高涨" + +#: ../../include/text.php:854 +msgid "relaxed" +msgstr "轻松" + +#: ../../include/text.php:855 +msgid "surprised" +msgstr "诧异" + +#: ../../include/text.php:1019 +msgid "January" +msgstr "一月" + +#: ../../include/text.php:1019 +msgid "February" +msgstr "二月" + +#: ../../include/text.php:1019 +msgid "March" +msgstr "三月" + +#: ../../include/text.php:1019 +msgid "April" +msgstr "四月" + +#: ../../include/text.php:1019 +msgid "May" +msgstr "五月" + +#: ../../include/text.php:1019 +msgid "June" +msgstr "六月" + +#: ../../include/text.php:1019 +msgid "July" +msgstr "七月" + +#: ../../include/text.php:1019 +msgid "August" +msgstr "八月" + +#: ../../include/text.php:1019 +msgid "September" +msgstr "九月" + +#: ../../include/text.php:1019 +msgid "October" +msgstr "十月" + +#: ../../include/text.php:1019 +msgid "November" +msgstr "十一月" + +#: ../../include/text.php:1019 +msgid "December" +msgstr "十二月" + +#: ../../include/text.php:1124 +msgid "bytes" +msgstr "字节" + +#: ../../include/text.php:1151 ../../include/text.php:1163 +msgid "Click to open/close" +msgstr "点击为开关" + +#: ../../include/text.php:1304 ../../mod/events.php:335 +msgid "link to source" +msgstr "链接到来源" + +#: ../../include/text.php:1336 ../../include/user.php:237 +msgid "default" +msgstr "默认" + +#: ../../include/text.php:1348 +msgid "Select an alternate language" +msgstr "选择别的语言" + +#: ../../include/text.php:1558 +msgid "activity" +msgstr "活动" + +#: ../../include/text.php:1560 ../../mod/content.php:628 +#: ../../object/Item.php:354 ../../object/Item.php:367 +msgid "comment" +msgid_plural "comments" +msgstr[0] "评论" + +#: ../../include/text.php:1561 +msgid "post" +msgstr "文章" + +#: ../../include/text.php:1716 +msgid "Item filed" +msgstr "把项目归档了" + +#: ../../include/acl_selectors.php:325 +msgid "Visible to everybody" +msgstr "任何人可见的" + +#: ../../include/acl_selectors.php:326 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "show" +msgstr "著" + +#: ../../include/acl_selectors.php:327 ../../view/theme/diabook/config.php:146 +#: ../../view/theme/diabook/theme.php:629 +msgid "don't show" +msgstr "别著" + +#: ../../include/auth.php:38 +msgid "Logged out." +msgstr "注销了" + +#: ../../include/auth.php:112 ../../include/auth.php:175 +#: ../../mod/openid.php:93 +msgid "Login failed." +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登录的时候碰到问题。请核实拼法是对的。" + +#: ../../include/auth.php:128 +msgid "The error message was:" +msgstr "错误通知是:" + +#: ../../include/uimport.php:61 +msgid "Error decoding account file" +msgstr "解码账户文件出错误" + +#: ../../include/uimport.php:67 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "错误!文件没有版本数!这不是Friendica账户文件吗?" + +#: ../../include/uimport.php:72 +msgid "Error! I can't import this file: DB schema version is not compatible." +msgstr "错误!我进口不了这个文件:数据库版本不相容的。" + +#: ../../include/uimport.php:81 +msgid "Error! Cannot check nickname" +msgstr "错误!不能检查昵称" + +#: ../../include/uimport.php:85 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "用户「%s」已经存在这个服务器!" + +#: ../../include/uimport.php:104 +msgid "User creation error" +msgstr "用户创造错误" + +#: ../../include/uimport.php:122 +msgid "User profile creation error" +msgstr "用户简介创造错误" + +#: ../../include/uimport.php:167 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d熟人没进口了" + +#: ../../include/uimport.php:245 +msgid "Done. You can now login with your username and password" +msgstr "完了。您现在会用您用户名和密码登录" + +#: ../../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" + +#: ../../include/bb2diaspora.php:399 ../../include/event.php:20 +msgid "Starts:" +msgstr "开始:" + +#: ../../include/bb2diaspora.php:407 ../../include/event.php:30 +msgid "Finishes:" +msgstr "结束:" + +#: ../../include/follow.php:27 ../../mod/dfrn_request.php:502 +msgid "Disallowed profile URL." +msgstr "不允许的简介地址." + +#: ../../include/follow.php:32 +msgid "Connect URL missing." +msgstr "连接URL失踪的。" + +#: ../../include/follow.php:59 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "这网站没配置允许跟别的网络交流." + +#: ../../include/follow.php:60 ../../include/follow.php:80 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "没有兼容协议或者摘要找到了." + +#: ../../include/follow.php:78 +msgid "The profile address specified does not provide adequate information." +msgstr "输入的简介地址没有够消息。" + +#: ../../include/follow.php:82 +msgid "An author or name was not found." +msgstr "找不到作者或名。" + +#: ../../include/follow.php:84 +msgid "No browser URL could be matched to this address." +msgstr "这个地址没有符合什么游览器URL。" + +#: ../../include/follow.php:86 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "使不了知道的相配或邮件熟人相配 " + +#: ../../include/follow.php:87 +msgid "Use mailto: in front of address to force email check." +msgstr "输入mailto:地址前为要求电子邮件检查。" + +#: ../../include/follow.php:93 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "输入的简介地址属在这个网站使不可用的网络。" + +#: ../../include/follow.php:103 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "有限的简介。这人不会接受直达/私人通信从您。" + +#: ../../include/follow.php:205 +msgid "Unable to retrieve contact information." +msgstr "不能取回熟人消息。" + +#: ../../include/follow.php:259 +msgid "following" +msgstr "关注" + +#: ../../include/user.php:39 +msgid "An invitation is required." +msgstr "邀请必要的。" + +#: ../../include/user.php:44 +msgid "Invitation could not be verified." +msgstr "不能证实邀请。" + +#: ../../include/user.php:52 +msgid "Invalid OpenID url" +msgstr "无效的OpenID url" + +#: ../../include/user.php:67 +msgid "Please enter the required information." +msgstr "请输入必要的信息。" + +#: ../../include/user.php:81 +msgid "Please use a shorter name." +msgstr "请用短一点名。" + +#: ../../include/user.php:83 +msgid "Name too short." +msgstr "名字太短。" + +#: ../../include/user.php:98 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "这看上去不是您的全姓名。" + +#: ../../include/user.php:103 +msgid "Your email domain is not among those allowed on this site." +msgstr "这网站允许的域名中没有您的" + +#: ../../include/user.php:106 +msgid "Not a valid email address." +msgstr "无效的邮件地址。" + +#: ../../include/user.php:116 +msgid "Cannot use that email." +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\",\"-\"和\"_\",还有头一字必须是拉丁字。" + +#: ../../include/user.php:128 ../../include/user.php:226 +msgid "Nickname is already registered. Please choose another." +msgstr "昵称已经报到。请选择新的。" + +#: ../../include/user.php:138 +msgid "" +"Nickname was once registered here and may not be re-used. Please choose " +"another." +msgstr "昵称曾经这里注册于是不能再用。请选择别的。" + +#: ../../include/user.php:154 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "要紧错误:产生安全钥匙失败了。" + +#: ../../include/user.php:212 +msgid "An error occurred during registration. Please try again." +msgstr "报到出了问题。请再试。" + +#: ../../include/user.php:247 +msgid "An error occurred creating your default profile. Please try again." +msgstr "造成默认简介出了问题。请再试。" + +#: ../../include/contact_selectors.php:32 +msgid "Unknown | Not categorised" +msgstr "未知的 |无分类" + +#: ../../include/contact_selectors.php:33 +msgid "Block immediately" +msgstr "立即拦" + +#: ../../include/contact_selectors.php:34 +msgid "Shady, spammer, self-marketer" +msgstr "可疑,发垃圾者,自市场开发者" + +#: ../../include/contact_selectors.php:35 +msgid "Known to me, but no opinion" +msgstr "我认识,但没有意见" + +#: ../../include/contact_selectors.php:36 +msgid "OK, probably harmless" +msgstr "行,大概无恶意的" + +#: ../../include/contact_selectors.php:37 +msgid "Reputable, has my trust" +msgstr "可信的,有我的信任" + +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "时常" + +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "每小时" + +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "每日两次" + +#: ../../include/contact_selectors.php:76 ../../mod/dfrn_request.php:840 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/contact_selectors.php:77 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/contact_selectors.php:79 +#: ../../include/contact_selectors.php:86 ../../mod/admin.php:747 +#: ../../mod/admin.php:757 +msgid "Email" +msgstr "电子邮件" + +#: ../../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 "Zot!" + +#: ../../include/contact_selectors.php:83 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/contact_selectors.php:84 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/contact_selectors.php:85 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/contact_selectors.php:87 +msgid "Google+" +msgstr "Google+" + +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "增添新的熟人" + +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "输入地址或网位置" + +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "比如:li@example.com, http://example.com/li" + +#: ../../include/contact_widgets.php:9 ../../mod/suggest.php:88 +#: ../../mod/match.php:58 ../../boot.php:1338 +msgid "Connect" +msgstr "连接" + +#: ../../include/contact_widgets.php:23 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d邀请可用的" + +#: ../../include/contact_widgets.php:29 +msgid "Find People" +msgstr "找人物" + +#: ../../include/contact_widgets.php:30 +msgid "Enter name or interest" +msgstr "输入名字或兴趣" + +#: ../../include/contact_widgets.php:31 +msgid "Connect/Follow" +msgstr "连接/关注" + +#: ../../include/contact_widgets.php:32 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "比如:李某,打鱼" + +#: ../../include/contact_widgets.php:34 ../../mod/suggest.php:66 +#: ../../view/theme/diabook/theme.php:520 +msgid "Friend Suggestions" +msgstr "友谊建议" + +#: ../../include/contact_widgets.php:35 ../../view/theme/diabook/theme.php:519 +msgid "Similar Interests" +msgstr "相似兴趣" + +#: ../../include/contact_widgets.php:36 +msgid "Random Profile" +msgstr "随机简介" + +#: ../../include/contact_widgets.php:37 ../../view/theme/diabook/theme.php:521 +msgid "Invite Friends" +msgstr "邀请朋友们" + +#: ../../include/contact_widgets.php:70 +msgid "Networks" +msgstr "网络" + +#: ../../include/contact_widgets.php:73 +msgid "All Networks" +msgstr "所有网络" + +#: ../../include/contact_widgets.php:103 ../../include/features.php:59 +msgid "Saved Folders" +msgstr "保存的文件夹" + +#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 +msgid "Everything" +msgstr "一切" + +#: ../../include/contact_widgets.php:135 +msgid "Categories" +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共同熟人" + +#: ../../include/Scrape.php:583 +msgid " on Last.fm" +msgstr "在Last.fm" + +#: ../../include/bbcode.php:210 ../../include/bbcode.php:545 +msgid "Image/photo" +msgstr "图像/照片" + +#: ../../include/bbcode.php:272 +#, php-format +msgid "" +"%s wrote the following post" +msgstr "%s写了下面的文章" + +#: ../../include/bbcode.php:510 ../../include/bbcode.php:530 +msgid "$1 wrote:" +msgstr "$1写:" + +#: ../../include/bbcode.php:553 ../../include/bbcode.php:554 +msgid "Encrypted content" +msgstr "加密的内容" + +#: ../../include/datetime.php:43 ../../include/datetime.php:45 +msgid "Miscellaneous" +msgstr "形形色色" + +#: ../../include/datetime.php:153 ../../include/datetime.php:285 +msgid "year" +msgstr "年" + +#: ../../include/datetime.php:158 ../../include/datetime.php:286 +msgid "month" +msgstr "月" + +#: ../../include/datetime.php:163 ../../include/datetime.php:288 +msgid "day" +msgstr "日" + +#: ../../include/datetime.php:276 +msgid "never" +msgstr "从未" + +#: ../../include/datetime.php:282 +msgid "less than a second ago" +msgstr "一秒以内" + +#: ../../include/datetime.php:287 +msgid "week" +msgstr "星期" + +#: ../../include/datetime.php:289 +msgid "hour" +msgstr "小时" + +#: ../../include/datetime.php:289 +msgid "hours" +msgstr "小时" + +#: ../../include/datetime.php:290 +msgid "minute" +msgstr "分钟" + +#: ../../include/datetime.php:290 +msgid "minutes" +msgstr "分钟" + +#: ../../include/datetime.php:291 +msgid "second" +msgstr "秒" + +#: ../../include/datetime.php:291 +msgid "seconds" +msgstr "秒" + +#: ../../include/datetime.php:300 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s以前" + +#: ../../include/datetime.php:472 ../../include/items.php:1764 +#, php-format +msgid "%s's birthday" +msgstr "%s的生日" + +#: ../../include/datetime.php:473 ../../include/items.php:1765 +#, php-format +msgid "Happy Birthday %s" +msgstr "生日快乐%s" + +#: ../../include/items.php:3439 ../../mod/dfrn_request.php:716 +msgid "[Name Withheld]" +msgstr "[名字拒给]" + +#: ../../include/items.php:3446 +msgid "A new person is sharing with you at " +msgstr "一位新人给你分享在" + +#: ../../include/items.php:3446 +msgid "You have a new follower at " +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 "项目找不到。" + +#: ../../include/items.php:3965 +msgid "Do you really want to delete this item?" +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 "是" + +#: ../../include/items.php:4160 +msgid "Archives" +msgstr "档案" + +#: ../../include/plugin.php:439 ../../include/plugin.php:441 +msgid "Click here to upgrade." +msgstr "这里点击为更新。" + +#: ../../include/plugin.php:447 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "这个行动超过您订阅的限制。" + +#: ../../include/plugin.php:452 +msgid "This action is not available under your subscription plan." +msgstr "这个行动在您的订阅不可用的。" + +#: ../../include/delivery.php:457 ../../include/notifier.php:775 +msgid "(no subject)" +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的朋友" + +#: ../../include/diaspora.php:704 +msgid "Sharing notification from Diaspora network" +msgstr "分享通知从Diaspora网络" + +#: ../../include/diaspora.php:2262 +msgid "Attachments:" +msgstr "附件:" + +#: ../../include/enotify.php:16 +msgid "Friendica Notification" +msgstr "Friendica 通知" + +#: ../../include/enotify.php:19 +msgid "Thank You," +msgstr "谢谢," + +#: ../../include/enotify.php:21 +#, php-format +msgid "%s Administrator" +msgstr "%s管理员" + +#: ../../include/enotify.php:40 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../include/enotify.php:44 +#, php-format +msgid "[Friendica:Notify] New mail received at %s" +msgstr "[Friendica:Notify]收到新邮件在%s" + +#: ../../include/enotify.php:46 +#, php-format +msgid "%1$s sent you a new private message at %2$s." +msgstr "%1$s发给您新私人通知在%2$s." + +#: ../../include/enotify.php:47 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s发给您%2$s." + +#: ../../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 "清去%s为了看或回答你私人的消息" + +#: ../../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]评论了" + +#: ../../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]评论了" + +#: ../../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]评论了" + +#: ../../include/enotify.php:115 +#, php-format +msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论" + +#: ../../include/enotify.php:116 +#, php-format +msgid "%s commented on an item/conversation you have been following." +msgstr "%s对你有兴趣的项目/ 交谈发表意见" + +#: ../../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为了看或回答交谈" + +#: ../../include/enotify.php:126 +#, php-format +msgid "[Friendica:Notify] %s posted to your profile wall" +msgstr "[Friendica:Notify] %s贴在您的简介墙" + +#: ../../include/enotify.php:128 +#, php-format +msgid "%1$s posted to your profile wall at %2$s" +msgstr "%1$s放在您的简介墙在%2$s" + +#: ../../include/enotify.php:130 +#, php-format +msgid "%1$s posted to [url=%2$s]your wall[/url]" +msgstr "%1$s放在[url=%2$s]您的墙[/url]" + +#: ../../include/enotify.php:141 +#, php-format +msgid "[Friendica:Notify] %s tagged you" +msgstr "[Friendica:Notify] %s标签您" + +#: ../../include/enotify.php:142 +#, php-format +msgid "%1$s tagged you at %2$s" +msgstr "%1$s把您在%2$s标签" + +#: ../../include/enotify.php:143 +#, php-format +msgid "%1$s [url=%2$s]tagged you[/url]." +msgstr "%1$s[url=%2$s]把您标签[/url]." + +#: ../../include/enotify.php:155 +#, php-format +msgid "[Friendica:Notify] %1$s poked you" +msgstr "[Friendica:Notify]您被%1$s戳" + +#: ../../include/enotify.php:156 +#, php-format +msgid "%1$s poked you at %2$s" +msgstr "您被%1$s戳在%2$s" + +#: ../../include/enotify.php:157 +#, php-format +msgid "%1$s [url=%2$s]poked you[/url]." +msgstr "%1$s[url=%2$s]把您戳[/url]。" + +#: ../../include/enotify.php:172 +#, php-format +msgid "[Friendica:Notify] %s tagged your post" +msgstr "[Friendica:Notify] %s标前您的文章" + +#: ../../include/enotify.php:173 +#, php-format +msgid "%1$s tagged your post at %2$s" +msgstr "%1$s把您的文章在%2$s标签" + +#: ../../include/enotify.php:174 +#, php-format +msgid "%1$s tagged [url=%2$s]your post[/url]" +msgstr "%1$s把[url=%2$s]您的文章[/url]标签" + +#: ../../include/enotify.php:185 +msgid "[Friendica:Notify] Introduction received" +msgstr "[Friendica:Notify] 收到介绍" + +#: ../../include/enotify.php:186 +#, php-format +msgid "You've received an introduction from '%1$s' at %2$s" +msgstr "您从「%1$s」受到一个介绍在%2$s" + +#: ../../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]。" + +#: ../../include/enotify.php:190 ../../include/enotify.php:208 +#, php-format +msgid "You may visit their profile at %s" +msgstr "你能看他的简介在%s" + +#: ../../include/enotify.php:192 +#, 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] 收到朋友建议" + +#: ../../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]。" + +#: ../../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。" + +#: ../../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 "请批准或拒绝建议在%s" + +#: ../../include/features.php:23 +msgid "General Features" +msgstr "总的特点" + +#: ../../include/features.php:25 +msgid "Multiple Profiles" +msgstr "多简介" + +#: ../../include/features.php:25 +msgid "Ability to create multiple profiles" +msgstr "能穿凿多简介" + +#: ../../include/features.php:30 +msgid "Post Composition Features" +msgstr "写文章特点" + +#: ../../include/features.php:31 +msgid "Richtext Editor" +msgstr "富文本格式编辑" + +#: ../../include/features.php:31 +msgid "Enable richtext editor" +msgstr "使富文本格式编辑可用" + +#: ../../include/features.php:32 +msgid "Post Preview" +msgstr "文章预演" + +#: ../../include/features.php:32 +msgid "Allow previewing posts and comments before publishing them" +msgstr "允许文章和评论出版前预演" + +#: ../../include/features.php:37 +msgid "Network Sidebar Widgets" +msgstr "网络工具栏小窗口" + +#: ../../include/features.php:38 +msgid "Search by Date" +msgstr "按日期搜索" + +#: ../../include/features.php:38 +msgid "Ability to select posts by date ranges" +msgstr "能按时期范围选择文章" + +#: ../../include/features.php:39 +msgid "Group Filter" +msgstr "组滤器" + +#: ../../include/features.php:39 +msgid "Enable widget to display Network posts only from selected group" +msgstr "使光表示网络文章从选择的组小窗口" + +#: ../../include/features.php:40 +msgid "Network Filter" +msgstr "网络滤器" + +#: ../../include/features.php:40 +msgid "Enable widget to display Network posts only from selected network" +msgstr "使光表示网络文章从选择的网络小窗口" + +#: ../../include/features.php:41 ../../mod/search.php:30 +#: ../../mod/network.php:233 +msgid "Saved Searches" +msgstr "保存的搜索" + +#: ../../include/features.php:41 +msgid "Save search terms for re-use" +msgstr "保存搜索关键为再用" + +#: ../../include/features.php:46 +msgid "Network Tabs" +msgstr "网络分页" + +#: ../../include/features.php:47 +msgid "Network Personal Tab" +msgstr "网络私人分页" + +#: ../../include/features.php:47 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "使表示光网络文章您参加了分页可用" + +#: ../../include/features.php:48 +msgid "Network New Tab" +msgstr "网络新分页" + +#: ../../include/features.php:48 +msgid "Enable tab to display only new Network posts (from the last 12 hours)" +msgstr "使表示光网络文章在12小时内分页可用" + +#: ../../include/features.php:49 +msgid "Network Shared Links Tab" +msgstr "网络分享链接分页" + +#: ../../include/features.php:49 +msgid "Enable tab to display only Network posts with links in them" +msgstr "使表示光网络文章包括链接分页可用" + +#: ../../include/features.php:54 +msgid "Post/Comment Tools" +msgstr "文章/评论工具" + +#: ../../include/features.php:55 +msgid "Multiple Deletion" +msgstr "多删除" + +#: ../../include/features.php:55 +msgid "Select and delete multiple posts/comments at once" +msgstr "选择和删除多文章/评论一次" + +#: ../../include/features.php:56 +msgid "Edit Sent Posts" +msgstr "编辑发送的文章" + +#: ../../include/features.php:56 +msgid "Edit and correct posts and comments after sending" +msgstr "编辑或修改文章和评论发送后" + +#: ../../include/features.php:57 +msgid "Tagging" +msgstr "标签" + +#: ../../include/features.php:57 +msgid "Ability to tag existing posts" +msgstr "能把目前的文章标签" + +#: ../../include/features.php:58 +msgid "Post Categories" +msgstr "文章种类" + +#: ../../include/features.php:58 +msgid "Add categories to your posts" +msgstr "加入种类给您的文章" + +#: ../../include/features.php:59 +msgid "Ability to file posts under folders" +msgstr "能把文章归档在文件夹 " + +#: ../../include/features.php:60 +msgid "Dislike Posts" +msgstr "不喜欢文章" + +#: ../../include/features.php:60 +msgid "Ability to dislike posts/comments" +msgstr "能不喜欢文章/评论" + +#: ../../include/features.php:61 +msgid "Star Posts" +msgstr "文章星" + +#: ../../include/features.php:61 +msgid "Ability to mark special posts with a star indicator" +msgstr "能把优秀文章跟星标注" + +#: ../../include/dba.php:44 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "找不到DNS信息为数据库服务器「%s」" + +#: ../../include/group.php:25 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "一个删除的组用这名被复兴。现有的项目权利可能还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。" + +#: ../../include/group.php:207 +msgid "Default privacy group for new contacts" +msgstr "默认隐私组为新熟人" + +#: ../../include/group.php:226 +msgid "Everybody" +msgstr "每人" + +#: ../../include/group.php:249 +msgid "edit" +msgstr "编辑" + +#: ../../include/group.php:270 ../../mod/newmember.php:66 +msgid "Groups" +msgstr "组" + +#: ../../include/group.php:271 +msgid "Edit group" +msgstr "编辑组" + +#: ../../include/group.php:272 +msgid "Create a new group" +msgstr "创造新组" + +#: ../../include/group.php:273 +msgid "Contacts not in any group" +msgstr "熟人没有组" + +#: ../../include/group.php:275 ../../mod/network.php:234 +msgid "add" +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" + +#: ../../include/conversation.php:207 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s把%2$s戳" + +#: ../../include/conversation.php:227 ../../mod/mood.php:62 +#, php-format +msgid "%1$s is currently %2$s" +msgstr "%1$s现在是%2$s" + +#: ../../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" + +#: ../../include/conversation.php:291 +msgid "post/item" +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为偏爱" + +#: ../../include/conversation.php:587 ../../mod/content.php:461 +#: ../../mod/content.php:763 ../../object/Item.php:119 +msgid "Select" +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 "删除" + +#: ../../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" + +#: ../../include/conversation.php:639 ../../object/Item.php:288 +msgid "Categories:" +msgstr "种类:" + +#: ../../include/conversation.php:640 ../../object/Item.php:289 +msgid "Filed under:" +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" + +#: ../../include/conversation.php:662 ../../mod/content.php:520 +msgid "View in context" +msgstr "看在上下文" + +#: ../../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 "请等一下" + +#: ../../include/conversation.php:728 +msgid "remove" +msgstr "删除" + +#: ../../include/conversation.php:732 +msgid "Delete Selected Items" +msgstr "删除选的项目" + +#: ../../include/conversation.php:831 +msgid "Follow Thread" +msgstr "关注线绳" + +#: ../../include/conversation.php:900 +#, php-format +msgid "%s likes this." +msgstr "%s喜欢这个." + +#: ../../include/conversation.php:900 +#, php-format +msgid "%s doesn't like this." +msgstr "%s没有喜欢这个." + +#: ../../include/conversation.php:905 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d人们喜欢这个" + +#: ../../include/conversation.php:908 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d人们不喜欢这个" + +#: ../../include/conversation.php:922 +msgid "and" +msgstr "和" + +#: ../../include/conversation.php:928 +#, php-format +msgid ", and %d other people" +msgstr ",和%d别人" + +#: ../../include/conversation.php:930 +#, php-format +msgid "%s like this." +msgstr "%s喜欢这个" + +#: ../../include/conversation.php:930 +#, php-format +msgid "%s don't like this." +msgstr "%s不喜欢这个" + +#: ../../include/conversation.php:957 ../../include/conversation.php:975 +msgid "Visible to everybody" +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:" + +#: ../../include/conversation.php:959 ../../include/conversation.php:977 +msgid "Please enter a video link/URL:" +msgstr "请输入视频连接/URL:" + +#: ../../include/conversation.php:960 ../../include/conversation.php:978 +msgid "Please enter an audio link/URL:" +msgstr "请输入音响连接/URL:" + +#: ../../include/conversation.php:961 ../../include/conversation.php:979 +msgid "Tag term:" +msgstr "标签:" + +#: ../../include/conversation.php:962 ../../include/conversation.php:980 +#: ../../mod/filer.php:30 +msgid "Save to Folder:" +msgstr "保存再文件夹:" + +#: ../../include/conversation.php:963 ../../include/conversation.php:981 +msgid "Where are you right now?" +msgstr "你在哪里?" + +#: ../../include/conversation.php:964 +msgid "Delete item(s)?" +msgstr "把项目删除吗?" + +#: ../../include/conversation.php:1006 +msgid "Post to Email" +msgstr "电邮发布" + +#: ../../include/conversation.php:1041 ../../mod/photos.php:1531 +msgid "Share" +msgstr "分享" + +#: ../../include/conversation.php:1042 ../../mod/editpost.php:110 +#: ../../mod/wallmessage.php:154 ../../mod/message.php:332 +#: ../../mod/message.php:562 +msgid "Upload photo" +msgstr "上传照片" + +#: ../../include/conversation.php:1043 ../../mod/editpost.php:111 +msgid "upload photo" +msgstr "上传照片" + +#: ../../include/conversation.php:1044 ../../mod/editpost.php:112 +msgid "Attach file" +msgstr "附上文件" + +#: ../../include/conversation.php:1045 ../../mod/editpost.php:113 +msgid "attach file" +msgstr "附上文件" + +#: ../../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 "插入网页环节" + +#: ../../include/conversation.php:1047 ../../mod/editpost.php:115 +msgid "web link" +msgstr "网页环节" + +#: ../../include/conversation.php:1048 ../../mod/editpost.php:116 +msgid "Insert video link" +msgstr "插入视频环节" + +#: ../../include/conversation.php:1049 ../../mod/editpost.php:117 +msgid "video link" +msgstr "视频环节" + +#: ../../include/conversation.php:1050 ../../mod/editpost.php:118 +msgid "Insert audio link" +msgstr "插入录音环节" + +#: ../../include/conversation.php:1051 ../../mod/editpost.php:119 +msgid "audio link" +msgstr "录音环节" + +#: ../../include/conversation.php:1052 ../../mod/editpost.php:120 +msgid "Set your location" +msgstr "设定您的位置" + +#: ../../include/conversation.php:1053 ../../mod/editpost.php:121 +msgid "set location" +msgstr "指定位置" + +#: ../../include/conversation.php:1054 ../../mod/editpost.php:122 +msgid "Clear browser location" +msgstr "清空浏览器位置" + +#: ../../include/conversation.php:1055 ../../mod/editpost.php:123 +msgid "clear location" +msgstr "清理出位置" + +#: ../../include/conversation.php:1057 ../../mod/editpost.php:137 +msgid "Set title" +msgstr "指定标题" + +#: ../../include/conversation.php:1059 ../../mod/editpost.php:139 +msgid "Categories (comma-separated list)" +msgstr "种类(逗号分隔单)" + +#: ../../include/conversation.php:1061 ../../mod/editpost.php:125 +msgid "Permission settings" +msgstr "权设置" + +#: ../../include/conversation.php:1062 +msgid "permissions" +msgstr "权利" + +#: ../../include/conversation.php:1070 ../../mod/editpost.php:133 +msgid "CC: email addresses" +msgstr "抄送: 电子邮件地址" + +#: ../../include/conversation.php:1071 ../../mod/editpost.php:134 +msgid "Public post" +msgstr "公开的消息" + +#: ../../include/conversation.php:1073 ../../mod/editpost.php:140 +msgid "Example: bob@example.com, mary@example.com" +msgstr "比如: li@example.com, wang@example.com" + +#: ../../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 "预演" + +#: ../../include/conversation.php:1086 +msgid "Post to Groups" +msgstr "发到组" + +#: ../../include/conversation.php:1087 +msgid "Post to Contacts" +msgstr "发到熟人" + +#: ../../include/conversation.php:1088 +msgid "Private post" +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" +msgstr "你的项目" + +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Personal notes" +msgstr "私人的便条" + +#: ../../include/nav.php:80 ../../view/theme/diabook/theme.php:92 +msgid "Your personal photos" +msgstr "你私人的照片" + +#: ../../include/nav.php:91 +msgid "Sign in" +msgstr "登记" + +#: ../../include/nav.php:104 ../../include/nav.php:143 +#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 +msgid "Home" +msgstr "主页" + +#: ../../include/nav.php:104 +msgid "Home Page" +msgstr "主页" + +#: ../../include/nav.php:108 ../../mod/register.php:275 ../../boot.php:1033 +msgid "Register" +msgstr "注册" + +#: ../../include/nav.php:108 +msgid "Create an account" +msgstr "注册" + +#: ../../include/nav.php:113 +msgid "Help and documentation" +msgstr "帮助证件" + +#: ../../include/nav.php:116 +msgid "Apps" +msgstr "应用程序" + +#: ../../include/nav.php:116 +msgid "Addon applications, utilities, games" +msgstr "可加的应用,设施,游戏" + +#: ../../include/nav.php:118 +msgid "Search site content" +msgstr "搜索网站内容" + +#: ../../include/nav.php:128 ../../mod/community.php:32 +#: ../../view/theme/diabook/theme.php:93 +msgid "Community" +msgstr "社会" + +#: ../../include/nav.php:128 +msgid "Conversations on this site" +msgstr "这个网站的交谈" + +#: ../../include/nav.php:130 +msgid "Directory" +msgstr "名录" + +#: ../../include/nav.php:130 +msgid "People directory" +msgstr "人物名录" + +#: ../../include/nav.php:140 ../../mod/notifications.php:83 +msgid "Network" +msgstr "网络" + +#: ../../include/nav.php:140 +msgid "Conversations from your friends" +msgstr "从你朋友们的交谈" + +#: ../../include/nav.php:141 +msgid "Network Reset" +msgstr "网络重设" + +#: ../../include/nav.php:141 +msgid "Load Network page with no filters" +msgstr "表示网络页无滤器" + +#: ../../include/nav.php:149 ../../mod/notifications.php:98 +msgid "Introductions" +msgstr "介绍" + +#: ../../include/nav.php:149 +msgid "Friend Requests" +msgstr "友谊邀请" + +#: ../../include/nav.php:150 ../../mod/notifications.php:220 +msgid "Notifications" +msgstr "通知" + +#: ../../include/nav.php:151 +msgid "See all notifications" +msgstr "看所有的通知" + +#: ../../include/nav.php:152 +msgid "Mark all system notifications seen" +msgstr "记号各系统通知看过的" + +#: ../../include/nav.php:156 ../../mod/message.php:182 +#: ../../mod/notifications.php:103 +msgid "Messages" +msgstr "消息" + +#: ../../include/nav.php:156 +msgid "Private mail" +msgstr "私人的邮件" + +#: ../../include/nav.php:157 +msgid "Inbox" +msgstr "收件箱" + +#: ../../include/nav.php:158 +msgid "Outbox" +msgstr "发件箱" + +#: ../../include/nav.php:159 ../../mod/message.php:9 +msgid "New Message" +msgstr "新的消息" + +#: ../../include/nav.php:162 +msgid "Manage" +msgstr "代用户" + +#: ../../include/nav.php:162 +msgid "Manage other pages" +msgstr "管理别的页" + +#: ../../include/nav.php:165 +msgid "Delegations" +msgstr "代表" + +#: ../../include/nav.php:165 ../../mod/delegate.php:121 +msgid "Delegate Page Management" +msgstr "页代表管理" + +#: ../../include/nav.php:167 ../../mod/settings.php:30 ../../mod/uexport.php:9 +msgid "Account settings" +msgstr "帐户配置" + +#: ../../include/nav.php:169 ../../boot.php:1360 +msgid "Profiles" +msgstr "简介" + +#: ../../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 "熟人" + +#: ../../include/nav.php:171 +msgid "Manage/edit friends and contacts" +msgstr "管理/编朋友们和熟人们" + +#: ../../include/nav.php:178 ../../mod/admin.php:120 +msgid "Admin" +msgstr "管理" + +#: ../../include/nav.php:178 +msgid "Site setup and configuration" +msgstr "网站开办和配置" + +#: ../../include/nav.php:182 +msgid "Navigation" +msgstr "航行" + +#: ../../include/nav.php:182 +msgid "Site map" +msgstr "网站地图" + +#: ../../include/network.php:875 +msgid "view full size" +msgstr "看全尺寸" + +#: ../../include/oembed.php:138 +msgid "Embedded content" +msgstr "嵌入内容" + +#: ../../include/oembed.php:147 +msgid "Embedding disabled" +msgstr "嵌入不能用" + +#: ../../include/security.php:22 +msgid "Welcome " +msgstr "欢迎" + +#: ../../include/security.php:23 +msgid "Please upload a profile photo." +msgstr "请上传一张简介照片" + +#: ../../include/security.php:26 +msgid "Welcome back " +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/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 "找不到简介。" + +#: ../../mod/profiles.php:37 +msgid "Profile deleted." +msgstr "简介删除了。" + +#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 +msgid "Profile-" +msgstr "简介-" + +#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 +msgid "New profile created." +msgstr "创造新的简介" + +#: ../../mod/profiles.php:95 +msgid "Profile unavailable to clone." +msgstr "简介不可用为复制。" + +#: ../../mod/profiles.php:170 +msgid "Profile Name is required." +msgstr "必要简介名" + +#: ../../mod/profiles.php:317 +msgid "Marital Status" +msgstr "婚姻状况 " + +#: ../../mod/profiles.php:321 +msgid "Romantic Partner" +msgstr "情人" + +#: ../../mod/profiles.php:325 +msgid "Likes" +msgstr "喜欢" + +#: ../../mod/profiles.php:329 +msgid "Dislikes" +msgstr "不喜欢" + +#: ../../mod/profiles.php:333 +msgid "Work/Employment" +msgstr "工作" + +#: ../../mod/profiles.php:336 +msgid "Religion" +msgstr "宗教" + +#: ../../mod/profiles.php:340 +msgid "Political Views" +msgstr "政治观念" + +#: ../../mod/profiles.php:344 +msgid "Gender" +msgstr "性别" + +#: ../../mod/profiles.php:348 +msgid "Sexual Preference" +msgstr "性取向" + +#: ../../mod/profiles.php:352 +msgid "Homepage" +msgstr "主页" + +#: ../../mod/profiles.php:356 +msgid "Interests" +msgstr "兴趣" + +#: ../../mod/profiles.php:360 +msgid "Address" +msgstr "地址" + +#: ../../mod/profiles.php:450 +msgid "Profile updated." +msgstr "简介更新了。" + +#: ../../mod/profiles.php:517 +msgid " and " +msgstr "和" + +#: ../../mod/profiles.php:525 +msgid "public profile" +msgstr "公开简介" + +#: ../../mod/profiles.php:528 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s把%2$s变化成“%3$s”" + +#: ../../mod/profiles.php:529 +#, php-format +msgid " - Visit %1$s's %2$s" +msgstr " - 看 %1$s的%2$s" + +#: ../../mod/profiles.php:532 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s有更新的%2$s,修改%3$s." + +#: ../../mod/profiles.php:605 +msgid "Hide your contact/friend list from viewers of this profile?" +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 "否" + +#: ../../mod/profiles.php:625 +msgid "Edit Profile Details" +msgstr "剪辑简介消息" + +#: ../../mod/profiles.php:627 +msgid "Change Profile Photo" +msgstr "改变简介照片" + +#: ../../mod/profiles.php:628 +msgid "View this profile" +msgstr "看这个简介" + +#: ../../mod/profiles.php:629 +msgid "Create a new profile using these settings" +msgstr "造成新的简介用这些设置" + +#: ../../mod/profiles.php:630 +msgid "Clone this profile" +msgstr "复制这个简介" + +#: ../../mod/profiles.php:631 +msgid "Delete this profile" +msgstr "删除这个简介" + +#: ../../mod/profiles.php:632 +msgid "Profile Name:" +msgstr "简介名:" + +#: ../../mod/profiles.php:633 +msgid "Your Full Name:" +msgstr "你的全名:" + +#: ../../mod/profiles.php:634 +msgid "Title/Description:" +msgstr "标题/描述:" + +#: ../../mod/profiles.php:635 +msgid "Your Gender:" +msgstr "你的性:" + +#: ../../mod/profiles.php:636 +#, php-format +msgid "Birthday (%s):" +msgstr "生日(%s):" + +#: ../../mod/profiles.php:637 +msgid "Street Address:" +msgstr "地址:" + +#: ../../mod/profiles.php:638 +msgid "Locality/City:" +msgstr "现场/城市:" + +#: ../../mod/profiles.php:639 +msgid "Postal/Zip Code:" +msgstr "邮政编码:" + +#: ../../mod/profiles.php:640 +msgid "Country:" +msgstr "国家:" + +#: ../../mod/profiles.php:641 +msgid "Region/State:" +msgstr "区域/省" + +#: ../../mod/profiles.php:642 +msgid " Marital Status:" +msgstr "婚姻状况:" + +#: ../../mod/profiles.php:643 +msgid "Who: (if applicable)" +msgstr "谁:(要是使用)" + +#: ../../mod/profiles.php:644 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "比如:limou,李某,limou@example。com" + +#: ../../mod/profiles.php:645 +msgid "Since [date]:" +msgstr "追溯[日期]:" + +#: ../../mod/profiles.php:647 +msgid "Homepage URL:" +msgstr "主页URL:" + +#: ../../mod/profiles.php:650 +msgid "Religious Views:" +msgstr " 宗教信仰 :" + +#: ../../mod/profiles.php:651 +msgid "Public Keywords:" +msgstr "公开关键字 :" + +#: ../../mod/profiles.php:652 +msgid "Private Keywords:" +msgstr "私人关键字" + +#: ../../mod/profiles.php:655 +msgid "Example: fishing photography software" +msgstr "例如:钓鱼 照片 软件" + +#: ../../mod/profiles.php:656 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(用于建议可能的朋友们,会被别人看)" + +#: ../../mod/profiles.php:657 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(用于搜索简介,没有给别人看)" + +#: ../../mod/profiles.php:658 +msgid "Tell us about yourself..." +msgstr "给我们自我介绍..." + +#: ../../mod/profiles.php:659 +msgid "Hobbies/Interests" +msgstr "爱好/兴趣" + +#: ../../mod/profiles.php:660 +msgid "Contact information and Social Networks" +msgstr "熟人信息和社会化网络" + +#: ../../mod/profiles.php:661 +msgid "Musical interests" +msgstr "音乐兴趣" + +#: ../../mod/profiles.php:662 +msgid "Books, literature" +msgstr "书,文学" + +#: ../../mod/profiles.php:663 +msgid "Television" +msgstr "电视" + +#: ../../mod/profiles.php:664 +msgid "Film/dance/culture/entertainment" +msgstr "电影/跳舞/文化/娱乐" + +#: ../../mod/profiles.php:665 +msgid "Love/romance" +msgstr "爱情/浪漫" + +#: ../../mod/profiles.php:666 +msgid "Work/employment" +msgstr "工作" + +#: ../../mod/profiles.php:667 +msgid "School/education" +msgstr "学院/教育" + +#: ../../mod/profiles.php:672 +msgid "" +"This is your public profile.
It may " +"be visible to anybody using the internet." +msgstr "这是你的公开的简介。
可能被所有的因特网用的看到。" + +#: ../../mod/profiles.php:721 +msgid "Edit/Manage Profiles" +msgstr "编辑/管理简介" + +#: ../../mod/profiles.php:722 ../../boot.php:1366 ../../boot.php:1392 +msgid "Change profile photo" +msgstr "换简介照片" + +#: ../../mod/profiles.php:723 ../../boot.php:1367 +msgid "Create New Profile" +msgstr "创造新的简介" + +#: ../../mod/profiles.php:734 ../../boot.php:1377 +msgid "Profile Image" +msgstr "简介图像" + +#: ../../mod/profiles.php:736 ../../boot.php:1380 +msgid "visible to everybody" +msgstr "给打假可见的" + +#: ../../mod/profiles.php:737 ../../boot.php:1381 +msgid "Edit visibility" +msgstr "修改能见度" + +#: ../../mod/profperm.php:19 ../../mod/group.php:72 ../../index.php:340 +msgid "Permission denied" +msgstr "权限不够" + +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "无限的简介标识符。" + +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "简介能见度编辑器。" + +#: ../../mod/profperm.php:105 ../../mod/group.php:224 +msgid "Click on a contact to add or remove." +msgstr "点击熟人为添加或删除。" + +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "能见被" + +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "所有熟人(跟安全地简介使用权)" + +#: ../../mod/notes.php:44 ../../boot.php:1892 +msgid "Personal Notes" +msgstr "私人便条" + +#: ../../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]" + +#: ../../mod/nogroup.php:41 ../../mod/contacts.php:586 +msgid "Edit contact" +msgstr "编熟人" + +#: ../../mod/nogroup.php:59 +msgid "Contacts who are not members of a group" +msgstr "没当成员的熟人" + +#: ../../mod/ping.php:238 +msgid "{0} wants to be your friend" +msgstr "{0}想成为您的朋友" + +#: ../../mod/ping.php:243 +msgid "{0} sent you a message" +msgstr "{0}发给您一个通信" + +#: ../../mod/ping.php:248 +msgid "{0} requested registration" +msgstr "{0}要求注册" + +#: ../../mod/ping.php:254 +#, php-format +msgid "{0} commented %s's post" +msgstr "{0}对%s的文章发表意见" + +#: ../../mod/ping.php:259 +#, php-format +msgid "{0} liked %s's post" +msgstr "{0}喜欢%s的文章" + +#: ../../mod/ping.php:264 +#, php-format +msgid "{0} disliked %s's post" +msgstr "{0}不喜欢%s的文章" + +#: ../../mod/ping.php:269 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0}成为%s的朋友" + +#: ../../mod/ping.php:274 +msgid "{0} posted" +msgstr "{0}陈列" + +#: ../../mod/ping.php:279 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0}用#%s标签%s的文章" + +#: ../../mod/ping.php:285 +msgid "{0} mentioned you in a post" +msgstr "{0}提到您在文章" + +#: ../../mod/admin.php:55 +msgid "Theme settings updated." +msgstr "主题设置更新了。" + +#: ../../mod/admin.php:96 ../../mod/admin.php:474 +msgid "Site" +msgstr "网站" + +#: ../../mod/admin.php:97 ../../mod/admin.php:743 ../../mod/admin.php:756 +msgid "Users" +msgstr "用户" + +#: ../../mod/admin.php:98 ../../mod/admin.php:839 ../../mod/admin.php:881 +msgid "Plugins" +msgstr "插件" + +#: ../../mod/admin.php:99 ../../mod/admin.php:1047 ../../mod/admin.php:1081 +msgid "Themes" +msgstr "主题" + +#: ../../mod/admin.php:100 +msgid "DB updates" +msgstr "数据库更新" + +#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1168 +msgid "Logs" +msgstr "记录" + +#: ../../mod/admin.php:121 +msgid "Plugin Features" +msgstr "插件特点" + +#: ../../mod/admin.php:123 +msgid "User registrations waiting for confirmation" +msgstr "用户注册等确认" + +#: ../../mod/admin.php:182 ../../mod/admin.php:714 +msgid "Normal Account" +msgstr "正常帐户" + +#: ../../mod/admin.php:183 ../../mod/admin.php:715 +msgid "Soapbox Account" +msgstr "演讲台帐户" + +#: ../../mod/admin.php:184 ../../mod/admin.php:716 +msgid "Community/Celebrity Account" +msgstr "社会/名人帐户" + +#: ../../mod/admin.php:185 ../../mod/admin.php:717 +msgid "Automatic Friend Account" +msgstr "自动朋友帐户" + +#: ../../mod/admin.php:186 +msgid "Blog Account" +msgstr "博客账户" + +#: ../../mod/admin.php:187 +msgid "Private Forum" +msgstr "私人评坛" + +#: ../../mod/admin.php:206 +msgid "Message queues" +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 "管理" + +#: ../../mod/admin.php:212 +msgid "Summary" +msgstr "总算" + +#: ../../mod/admin.php:214 +msgid "Registered users" +msgstr "注册的用户" + +#: ../../mod/admin.php:216 +msgid "Pending registrations" +msgstr "未决的注册" + +#: ../../mod/admin.php:217 +msgid "Version" +msgstr "版本" + +#: ../../mod/admin.php:219 +msgid "Active plugins" +msgstr "活跃的插件" + +#: ../../mod/admin.php:398 +msgid "Site settings updated." +msgstr "网站设置更新了。" + +#: ../../mod/admin.php:427 ../../mod/settings.php:769 +msgid "No special theme for mobile devices" +msgstr "没专门适合手机的主题" + +#: ../../mod/admin.php:444 +msgid "Multi user instance" +msgstr "多用户网站" + +#: ../../mod/admin.php:460 +msgid "Closed" +msgstr "关闭" + +#: ../../mod/admin.php:461 +msgid "Requires approval" +msgstr "要批准" + +#: ../../mod/admin.php:462 +msgid "Open" +msgstr "打开" + +#: ../../mod/admin.php:466 +msgid "No SSL policy, links will track page SSL state" +msgstr "没SSL方针,环节将追踪页SSL现状" + +#: ../../mod/admin.php:467 +msgid "Force all links to use SSL" +msgstr "让所有的环节用SSL" + +#: ../../mod/admin.php:468 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "自签证书,用SSL再光本地环节(劝止的)" + +#: ../../mod/admin.php:476 ../../mod/register.php:261 +msgid "Registration" +msgstr "注册" + +#: ../../mod/admin.php:477 +msgid "File upload" +msgstr "文件上传" + +#: ../../mod/admin.php:478 +msgid "Policies" +msgstr "政策" + +#: ../../mod/admin.php:479 +msgid "Advanced" +msgstr "高等" + +#: ../../mod/admin.php:480 +msgid "Performance" +msgstr "性能" + +#: ../../mod/admin.php:485 +msgid "Banner/Logo" +msgstr "标题/标志" + +#: ../../mod/admin.php:486 +msgid "System language" +msgstr "系统语言" + +#: ../../mod/admin.php:487 +msgid "System theme" +msgstr "系统主题" + +#: ../../mod/admin.php:487 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "默认系统主题-会被用户简介超驰-把主题设置变化" + +#: ../../mod/admin.php:488 +msgid "Mobile system theme" +msgstr "手机系统主题" + +#: ../../mod/admin.php:488 +msgid "Theme for mobile devices" +msgstr "主题适合手机" + +#: ../../mod/admin.php:489 +msgid "SSL link policy" +msgstr "SSL环节方针" + +#: ../../mod/admin.php:489 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "决定产生的环节否则被强迫用SSL" + +#: ../../mod/admin.php:490 +msgid "'Share' element" +msgstr "「合用」要素" + +#: ../../mod/admin.php:490 +msgid "Activates the bbcode element 'share' for repeating items." +msgstr "把bbcode要素「合用」为重复项目。" + +#: ../../mod/admin.php:491 +msgid "Hide help entry from navigation menu" +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」" + +#: ../../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。" + +#: ../../mod/admin.php:525 +msgid "Use MySQL full text engine" +msgstr "用MySQL全正文机车" + +#: ../../mod/admin.php:525 +msgid "" +"Activates the full text engine. Speeds up search - but can only search for " +"four and more characters." +msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上" + +#: ../../mod/admin.php:526 +msgid "Path to item cache" +msgstr "路线到项目缓存" + +#: ../../mod/admin.php:527 +msgid "Cache duration in seconds" +msgstr "缓存时间秒" + +#: ../../mod/admin.php:527 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day)." +msgstr "缓存文件应该保存多久?默认是86400秒(一天)。" + +#: ../../mod/admin.php:528 +msgid "Path for lock file" +msgstr "路线到锁文件" + +#: ../../mod/admin.php:529 +msgid "Temp path" +msgstr "临时文件路线" + +#: ../../mod/admin.php:530 +msgid "Base path to installation" +msgstr "基础安装路线" + +#: ../../mod/admin.php:548 +msgid "Update has been marked successful" +msgstr "更新当成功标签了" + +#: ../../mod/admin.php:558 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "把%s实行没通过了。看系统记录。" + +#: ../../mod/admin.php:561 +#, php-format +msgid "Update %s was successfully applied." +msgstr "把%s更新成功地实行。" + +#: ../../mod/admin.php:565 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "%s更新没回答现状。不知道是否成功。" + +#: ../../mod/admin.php:568 +#, php-format +msgid "Update function %s could not be found." +msgstr "找不到更新功能%s。" + +#: ../../mod/admin.php:583 +msgid "No failed updates." +msgstr "没有不通过地更新。" + +#: ../../mod/admin.php:587 +msgid "Failed Updates" +msgstr "没通过的更新" + +#: ../../mod/admin.php:588 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "这个不包括1139号更新之前,它们没回答装线。" + +#: ../../mod/admin.php:589 +msgid "Mark success (if update was manually applied)" +msgstr "标注成功(如果手动地把更新实行了)" + +#: ../../mod/admin.php:590 +msgid "Attempt to execute this update step automatically" +msgstr "试图自动地把这步更新实行" + +#: ../../mod/admin.php:615 +#, php-format +msgid "%s user blocked/unblocked" +msgid_plural "%s users blocked/unblocked" +msgstr[0] "%s用户拦/不拦了" + +#: ../../mod/admin.php:622 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s用户删除了" + +#: ../../mod/admin.php:661 +#, php-format +msgid "User '%s' deleted" +msgstr "用户「%s」删除了" + +#: ../../mod/admin.php:669 +#, php-format +msgid "User '%s' unblocked" +msgstr "用户「%s」无拦了" + +#: ../../mod/admin.php:669 +#, php-format +msgid "User '%s' blocked" +msgstr "用户「%s」拦了" + +#: ../../mod/admin.php:745 +msgid "select all" +msgstr "都选" + +#: ../../mod/admin.php:746 +msgid "User registrations waiting for confirm" +msgstr "用户注册等待确认" + +#: ../../mod/admin.php:747 +msgid "Request date" +msgstr "要求日期" + +#: ../../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:748 +msgid "No registrations." +msgstr "没有注册。" + +#: ../../mod/admin.php:749 ../../mod/notifications.php:161 +#: ../../mod/notifications.php:208 +msgid "Approve" +msgstr "批准" + +#: ../../mod/admin.php:750 +msgid "Deny" +msgstr "否定" + +#: ../../mod/admin.php:752 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Block" +msgstr "拦" + +#: ../../mod/admin.php:753 ../../mod/contacts.php:353 +#: ../../mod/contacts.php:412 +msgid "Unblock" +msgstr "不拦" + +#: ../../mod/admin.php:754 +msgid "Site admin" +msgstr "网站管理员" + +#: ../../mod/admin.php:757 +msgid "Register date" +msgstr "注册日期" + +#: ../../mod/admin.php:757 +msgid "Last login" +msgstr "上次登录" + +#: ../../mod/admin.php:757 +msgid "Last item" +msgstr "上项目" + +#: ../../mod/admin.php:757 +msgid "Account" +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您肯定吗?" + +#: ../../mod/admin.php:801 +#, php-format +msgid "Plugin %s disabled." +msgstr "使插件%s不能用。" + +#: ../../mod/admin.php:805 +#, php-format +msgid "Plugin %s enabled." +msgstr "使插件%s能用。" + +#: ../../mod/admin.php:815 ../../mod/admin.php:1018 +msgid "Disable" +msgstr "使不能用" + +#: ../../mod/admin.php:817 ../../mod/admin.php:1020 +msgid "Enable" +msgstr "使能用" + +#: ../../mod/admin.php:840 ../../mod/admin.php:1048 +msgid "Toggle" +msgstr "肘节" + +#: ../../mod/admin.php:848 ../../mod/admin.php:1058 +msgid "Author: " +msgstr "作家:" + +#: ../../mod/admin.php:849 ../../mod/admin.php:1059 +msgid "Maintainer: " +msgstr "保持员:" + +#: ../../mod/admin.php:978 +msgid "No themes found." +msgstr "找不到主题。" + +#: ../../mod/admin.php:1040 +msgid "Screenshot" +msgstr "截图" + +#: ../../mod/admin.php:1086 +msgid "[Experimental]" +msgstr "[试验]" + +#: ../../mod/admin.php:1087 +msgid "[Unsupported]" +msgstr "[没支持]" + +#: ../../mod/admin.php:1114 +msgid "Log settings updated." +msgstr "日志设置更新了。" + +#: ../../mod/admin.php:1170 +msgid "Clear" +msgstr "清理出" + +#: ../../mod/admin.php:1176 +msgid "Debugging" +msgstr "调试" + +#: ../../mod/admin.php:1177 +msgid "Log file" +msgstr "记录文件" + +#: ../../mod/admin.php:1177 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" + +#: ../../mod/admin.php:1178 +msgid "Log level" +msgstr "记录水平" + +#: ../../mod/admin.php:1227 ../../mod/contacts.php:409 +msgid "Update now" +msgstr "现在更新" + +#: ../../mod/admin.php:1228 +msgid "Close" +msgstr "关闭" + +#: ../../mod/admin.php:1234 +msgid "FTP Host" +msgstr "FTP主机" + +#: ../../mod/admin.php:1235 +msgid "FTP Path" +msgstr "FTP目录" + +#: ../../mod/admin.php:1236 +msgid "FTP User" +msgstr "FTP用户" + +#: ../../mod/admin.php:1237 +msgid "FTP Password" +msgstr "FTP密码" + +#: ../../mod/item.php:105 +msgid "Unable to locate original post." +msgstr "找不到当初的新闻" + +#: ../../mod/item.php:307 +msgid "Empty post discarded." +msgstr "空心的新闻丢弃了" + +#: ../../mod/item.php:869 +msgid "System error. Post not saved." +msgstr "系统错误。x" + +#: ../../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社会化网络成员之一,发给你。" + +#: ../../mod/item.php:896 +#, php-format +msgid "You may visit them online at %s" +msgstr "你可以网上拜访他在%s" + +#: ../../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/item.php:901 +#, php-format +msgid "%s posted an update." +msgstr "%s贴上一个新闻。" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "%s的朋友们" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "没有朋友展示。" + +#: ../../mod/search.php:21 ../../mod/network.php:224 +msgid "Remove term" +msgstr "删除关键字" + +#: ../../mod/search.php:180 ../../mod/search.php:206 +#: ../../mod/community.php:61 ../../mod/community.php:88 +msgid "No results." +msgstr "没有结果" + +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "授权应用连接" + +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "回归您的应用和输入这个安全密码:" + +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "请登记为继续。" + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章" + +#: ../../mod/register.php:91 ../../mod/regmod.php:54 +#, php-format +msgid "Registration details for %s" +msgstr "注册信息为%s" + +#: ../../mod/register.php:99 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "注册成功了。请咨询说明再您的收件箱。" + +#: ../../mod/register.php:103 +msgid "Failed to send email message. Here is the message that failed." +msgstr "发邮件失败了。这条试失败的消息。" + +#: ../../mod/register.php:108 +msgid "Your registration can not be processed." +msgstr "处理不了您的注册。" + +#: ../../mod/register.php:145 +#, php-format +msgid "Registration request at %s" +msgstr "注册要求再%s" + +#: ../../mod/register.php:154 +msgid "Your registration is pending approval by the site owner." +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 "这个网站超过一天最多账户注册。请明天再试。" + +#: ../../mod/register.php:220 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." +msgstr "您会(可选的)用OpenID填这个表格通过提供您的OpenID和点击「注册」。" + +#: ../../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,请留空这个栏和填另些栏。" + +#: ../../mod/register.php:222 +msgid "Your OpenID (optional): " +msgstr "您的OpenID(可选的):" + +#: ../../mod/register.php:236 +msgid "Include your profile in member directory?" +msgstr "放您的简介再员目录?" + +#: ../../mod/register.php:257 +msgid "Membership on this site is by invitation only." +msgstr "会员身份在这个网站是光通过邀请。" + +#: ../../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 "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@$sitename」." + +#: ../../mod/register.php:272 +msgid "Choose a nickname: " +msgstr "选择昵称:" + +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "应用" + +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "没有安装的应用" + +#: ../../mod/regmod.php:63 +msgid "Account approved." +msgstr "账户批准了" + +#: ../../mod/regmod.php:100 +#, php-format +msgid "Registration revoked for %s" +msgstr "%s的登记撤销了" + +#: ../../mod/regmod.php:112 +msgid "Please login." +msgstr "清登录。" + +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "项目不可用的" + +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "找不到项目。" + +#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 +msgid "Remove My Account" +msgstr "删除我的账户" + +#: ../../mod/removeme.php:46 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "这要完全删除您的账户。这一做过,就不能恢复。" + +#: ../../mod/removeme.php:47 +msgid "Please enter your password for verification:" +msgstr "请输入密码为确认:" + +#: ../../mod/babel.php:17 +msgid "Source (bbcode) text:" +msgstr "源代码(bbcode)正文" + +#: ../../mod/babel.php:23 +msgid "Source (Diaspora) text to convert to BBcode:" +msgstr "源代(Diaspora)正文要翻译成BBCode:" + +#: ../../mod/babel.php:31 +msgid "Source input: " +msgstr "源代码输入:" + +#: ../../mod/babel.php:35 +msgid "bb2html (raw HTML): " +msgstr "bb2html(生HTML): " + +#: ../../mod/babel.php:39 +msgid "bb2html: " +msgstr "bb2html:" + +#: ../../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:" + +#: ../../mod/babel.php:59 +msgid "bb2md2html2bb: " +msgstr "bb2md2html2bb:" + +#: ../../mod/babel.php:69 +msgid "Source input (Diaspora format): " +msgstr "源代输入(Diaspora形式):" + +#: ../../mod/babel.php:74 +msgid "diaspora2bb: " +msgstr "diaspora2bb: " + +#: ../../mod/common.php:42 +msgid "Common Friends" +msgstr "普通朋友们" + +#: ../../mod/common.php:78 +msgid "No contacts in common." +msgstr "没有共同熟人。" + +#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 +msgid "Could not access contact record." +msgstr "用不了熟人记录。" + +#: ../../mod/contacts.php:99 +msgid "Could not locate selected profile." +msgstr "找不到选择的简介。" + +#: ../../mod/contacts.php:122 +msgid "Contact updated." +msgstr "熟人更新了。" + +#: ../../mod/contacts.php:124 ../../mod/dfrn_request.php:571 +msgid "Failed to update contact record." +msgstr "更新熟人记录失败了。" + +#: ../../mod/contacts.php:187 +msgid "Contact has been blocked" +msgstr "熟人拦了" + +#: ../../mod/contacts.php:187 +msgid "Contact has been unblocked" +msgstr "熟人否拦了" + +#: ../../mod/contacts.php:201 +msgid "Contact has been ignored" +msgstr "熟人不理了" + +#: ../../mod/contacts.php:201 +msgid "Contact has been unignored" +msgstr "熟人否不理了" + +#: ../../mod/contacts.php:220 +msgid "Contact has been archived" +msgstr "把联系存档了" + +#: ../../mod/contacts.php:220 +msgid "Contact has been unarchived" +msgstr "把联系从存档拿来了" + +#: ../../mod/contacts.php:244 +msgid "Do you really want to delete this contact?" +msgstr "您真的想删除这个熟人吗?" + +#: ../../mod/contacts.php:263 +msgid "Contact has been removed." +msgstr "熟人删除了。" + +#: ../../mod/contacts.php:301 +#, php-format +msgid "You are mutual friends with %s" +msgstr "您和%s是共同朋友们" + +#: ../../mod/contacts.php:305 +#, php-format +msgid "You are sharing with %s" +msgstr "您分享给%s" + +#: ../../mod/contacts.php:310 +#, php-format +msgid "%s is sharing with you" +msgstr "%s给您分享" + +#: ../../mod/contacts.php:327 +msgid "Private communications are not available for this contact." +msgstr "没有私人的沟通跟这个熟人" + +#: ../../mod/contacts.php:330 +msgid "Never" +msgstr "从未" + +#: ../../mod/contacts.php:334 +msgid "(Update was successful)" +msgstr "(更新成功)" + +#: ../../mod/contacts.php:334 +msgid "(Update was not successful)" +msgstr "(更新不成功)" + +#: ../../mod/contacts.php:336 +msgid "Suggest friends" +msgstr "建议朋友们" + +#: ../../mod/contacts.php:340 +#, php-format +msgid "Network type: %s" +msgstr "网络种类: %s" + +#: ../../mod/contacts.php:348 +msgid "View all contacts" +msgstr "看所有的熟人" + +#: ../../mod/contacts.php:356 +msgid "Toggle Blocked status" +msgstr "交替拦配置" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +msgid "Unignore" +msgstr "停不理" + +#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 +#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 +#: ../../mod/notifications.php:210 +msgid "Ignore" +msgstr "忽视" + +#: ../../mod/contacts.php:362 +msgid "Toggle Ignored status" +msgstr "交替忽视现状" + +#: ../../mod/contacts.php:366 +msgid "Unarchive" +msgstr "从存档拿来" + +#: ../../mod/contacts.php:366 +msgid "Archive" +msgstr "存档" + +#: ../../mod/contacts.php:369 +msgid "Toggle Archive status" +msgstr "交替档案现状" + +#: ../../mod/contacts.php:372 +msgid "Repair" +msgstr "维修" + +#: ../../mod/contacts.php:375 +msgid "Advanced Contact Settings" +msgstr "专家熟人设置" + +#: ../../mod/contacts.php:381 +msgid "Communications lost with this contact!" +msgstr "联系跟这个熟人断开了!" + +#: ../../mod/contacts.php:384 +msgid "Contact Editor" +msgstr "熟人编器" + +#: ../../mod/contacts.php:387 +msgid "Profile Visibility" +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显示他安全地看您的简介的时候。" + +#: ../../mod/contacts.php:389 +msgid "Contact Information / Notes" +msgstr "熟人信息/便条" + +#: ../../mod/contacts.php:390 +msgid "Edit contact notes" +msgstr "编辑熟人便条" + +#: ../../mod/contacts.php:396 +msgid "Block/Unblock contact" +msgstr "拦/否拦熟人" + +#: ../../mod/contacts.php:397 +msgid "Ignore contact" +msgstr "忽视熟人" + +#: ../../mod/contacts.php:398 +msgid "Repair URL settings" +msgstr "维修URL设置" + +#: ../../mod/contacts.php:399 +msgid "View conversations" +msgstr "看交流" + +#: ../../mod/contacts.php:401 +msgid "Delete contact" +msgstr "删除熟人" + +#: ../../mod/contacts.php:405 +msgid "Last update:" +msgstr "上个更新:" + +#: ../../mod/contacts.php:407 +msgid "Update public posts" +msgstr "更新公开文章" + +#: ../../mod/contacts.php:416 +msgid "Currently blocked" +msgstr "现在拦的" + +#: ../../mod/contacts.php:417 +msgid "Currently ignored" +msgstr "现在不理的" + +#: ../../mod/contacts.php:418 +msgid "Currently archived" +msgstr "现在存档着" + +#: ../../mod/contacts.php:419 ../../mod/notifications.php:157 +#: ../../mod/notifications.php:204 +msgid "Hide this contact from others" +msgstr "隐藏这个熟人给别人" + +#: ../../mod/contacts.php:419 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "回答/喜欢关您公开文章还可见的" + +#: ../../mod/contacts.php:470 +msgid "Suggestions" +msgstr "建议" + +#: ../../mod/contacts.php:473 +msgid "Suggest potential friends" +msgstr "建议潜在朋友们" + +#: ../../mod/contacts.php:476 ../../mod/group.php:194 +msgid "All Contacts" +msgstr "所有的熟人" + +#: ../../mod/contacts.php:479 +msgid "Show all contacts" +msgstr "表示所有的熟人" + +#: ../../mod/contacts.php:482 +msgid "Unblocked" +msgstr "不拦了" + +#: ../../mod/contacts.php:485 +msgid "Only show unblocked contacts" +msgstr "只表示不拦的熟人" + +#: ../../mod/contacts.php:489 +msgid "Blocked" +msgstr "拦了" + +#: ../../mod/contacts.php:492 +msgid "Only show blocked contacts" +msgstr "只表示拦的熟人" + +#: ../../mod/contacts.php:496 +msgid "Ignored" +msgstr "忽视的" + +#: ../../mod/contacts.php:499 +msgid "Only show ignored contacts" +msgstr "只表示忽视的熟人" + +#: ../../mod/contacts.php:503 +msgid "Archived" +msgstr "在存档" + +#: ../../mod/contacts.php:506 +msgid "Only show archived contacts" +msgstr "只表示档案熟人" + +#: ../../mod/contacts.php:510 +msgid "Hidden" +msgstr "隐藏的" + +#: ../../mod/contacts.php:513 +msgid "Only show hidden contacts" +msgstr "只表示隐藏的熟人" + +#: ../../mod/contacts.php:561 +msgid "Mutual Friendship" +msgstr "共同友谊" + +#: ../../mod/contacts.php:565 +msgid "is a fan of yours" +msgstr "是您迷" + +#: ../../mod/contacts.php:569 +msgid "you are a fan of" +msgstr "你喜欢" + +#: ../../mod/contacts.php:611 +msgid "Search your contacts" +msgstr "搜索您的熟人" + +#: ../../mod/settings.php:23 ../../mod/photos.php:79 +msgid "everybody" +msgstr "每人" + +#: ../../mod/settings.php:35 +msgid "Additional features" +msgstr "附加的特点" + +#: ../../mod/settings.php:40 ../../mod/uexport.php:14 +msgid "Display settings" +msgstr "表示设置" + +#: ../../mod/settings.php:46 ../../mod/uexport.php:20 +msgid "Connector settings" +msgstr "插销设置" + +#: ../../mod/settings.php:51 ../../mod/uexport.php:25 +msgid "Plugin settings" +msgstr "插件设置" + +#: ../../mod/settings.php:56 ../../mod/uexport.php:30 +msgid "Connected apps" +msgstr "连接着应用" + +#: ../../mod/settings.php:61 ../../mod/uexport.php:35 ../../mod/uexport.php:80 +msgid "Export personal data" +msgstr "出口私人信息" + +#: ../../mod/settings.php:66 ../../mod/uexport.php:40 +msgid "Remove account" +msgstr "删除账户" + +#: ../../mod/settings.php:118 +msgid "Missing some important data!" +msgstr "有的重要信息失踪的!" + +#: ../../mod/settings.php:121 ../../mod/settings.php:586 +msgid "Update" +msgstr "更新" + +#: ../../mod/settings.php:227 +msgid "Failed to connect with email account using the settings provided." +msgstr "不能连接电子邮件账户用输入的设置。" + +#: ../../mod/settings.php:232 +msgid "Email settings updated." +msgstr "电子邮件设置更新了" + +#: ../../mod/settings.php:247 +msgid "Features updated" +msgstr "特点更新了" + +#: ../../mod/settings.php:307 +msgid "Passwords do not match. Password unchanged." +msgstr "密码们不相配。密码没未改变的。" + +#: ../../mod/settings.php:312 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "空的密码禁止。密码没未改变的。" + +#: ../../mod/settings.php:323 +msgid "Password changed." +msgstr "密码变化了。" + +#: ../../mod/settings.php:325 +msgid "Password update failed. Please try again." +msgstr "密码更新失败了。请再试。" + +#: ../../mod/settings.php:390 +msgid " Please use a shorter name." +msgstr "请用短一点个名。" + +#: ../../mod/settings.php:392 +msgid " Name too short." +msgstr "名字太短。" + +#: ../../mod/settings.php:398 +msgid " Not valid email." +msgstr " 电子邮件地址无效." + +#: ../../mod/settings.php:400 +msgid " Cannot change to that email." +msgstr "不能变化到这个邮件地址。" + +#: ../../mod/settings.php:454 +msgid "Private forum has no privacy permissions. Using default privacy group." +msgstr "私人评坛没有隐私批准。默认隐私组用者。" + +#: ../../mod/settings.php:458 +msgid "Private forum has no privacy permissions and no default privacy group." +msgstr "私人评坛没有隐私批准或默认隐私组。" + +#: ../../mod/settings.php:559 ../../mod/settings.php:585 +#: ../../mod/settings.php:621 +msgid "Add application" +msgstr "加入应用" + +#: ../../mod/settings.php:565 ../../mod/settings.php:591 +msgid "Redirect" +msgstr "重定向" + +#: ../../mod/settings.php:566 ../../mod/settings.php:592 +msgid "Icon url" +msgstr "图符URL" + +#: ../../mod/settings.php:577 +msgid "You can't edit this application." +msgstr "您不能编辑这个应用。" + +#: ../../mod/settings.php:620 +msgid "Connected Apps" +msgstr "连接着应用" + +#: ../../mod/settings.php:622 ../../mod/editpost.php:109 +#: ../../mod/content.php:751 ../../object/Item.php:110 +msgid "Edit" +msgstr "编辑" + +#: ../../mod/settings.php:624 +msgid "Client key starts with" +msgstr "客户钥匙头字是" + +#: ../../mod/settings.php:625 +msgid "No name" +msgstr "无名" + +#: ../../mod/settings.php:626 +msgid "Remove authorization" +msgstr "撤消权能" + +#: ../../mod/settings.php:638 +msgid "No Plugin settings configured" +msgstr "没插件设置配置了" + +#: ../../mod/settings.php:660 +msgid "Off" +msgstr "关" + +#: ../../mod/settings.php:660 +msgid "On" +msgstr "开" + +#: ../../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 "包括的支持为%s连通性是%s" + +#: ../../mod/settings.php:681 ../../mod/settings.php:682 +msgid "enabled" +msgstr "能够做的" + +#: ../../mod/settings.php:681 ../../mod/settings.php:682 +msgid "disabled" +msgstr "使不能用" + +#: ../../mod/settings.php:682 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:714 +msgid "Email access is disabled on this site." +msgstr "这个网站没有邮件使用权" + +#: ../../mod/settings.php:721 +msgid "Connector Settings" +msgstr "连接器设置" + +#: ../../mod/settings.php:726 +msgid "Email/Mailbox Setup" +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 "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。" + +#: ../../mod/settings.php:728 +msgid "Last successful email check:" +msgstr "上个成功收件箱检查:" + +#: ../../mod/settings.php:730 +msgid "IMAP server name:" +msgstr "IMAP服务器名字:" + +#: ../../mod/settings.php:731 +msgid "IMAP port:" +msgstr "IMAP服务器端口:" + +#: ../../mod/settings.php:732 +msgid "Security:" +msgstr "安全:" + +#: ../../mod/settings.php:733 +msgid "Email login name:" +msgstr "邮件登记名:" + +#: ../../mod/settings.php:734 +msgid "Email password:" +msgstr "邮件密码:" + +#: ../../mod/settings.php:735 +msgid "Reply-to address:" +msgstr "回答地址:" + +#: ../../mod/settings.php:736 +msgid "Send public posts to all email contacts:" +msgstr "发公开的文章给所有的邮件熟人:" + +#: ../../mod/settings.php:737 +msgid "Action after import:" +msgstr "进口后行动:" + +#: ../../mod/settings.php:737 +msgid "Mark as seen" +msgstr "标注看过" + +#: ../../mod/settings.php:737 +msgid "Move to folder" +msgstr "搬到文件夹" + +#: ../../mod/settings.php:738 +msgid "Move to folder:" +msgstr "搬到文件夹:" + +#: ../../mod/settings.php:809 +msgid "Display Settings" +msgstr "表示设置" + +#: ../../mod/settings.php:815 ../../mod/settings.php:826 +msgid "Display Theme:" +msgstr "显示主题:" + +#: ../../mod/settings.php:816 +msgid "Mobile Theme:" +msgstr "手机主题:" + +#: ../../mod/settings.php:817 +msgid "Update browser every xx seconds" +msgstr "更新游览器每XX秒" + +#: ../../mod/settings.php:817 +msgid "Minimum of 10 seconds, no maximum" +msgstr "最小10秒,没有上限" + +#: ../../mod/settings.php:818 +msgid "Number of items to display per page:" +msgstr "每页表示多少项目:" + +#: ../../mod/settings.php:818 +msgid "Maximum of 100 items" +msgstr "最多100项目" + +#: ../../mod/settings.php:819 +msgid "Don't show emoticons" +msgstr "别表示请表符号" + +#: ../../mod/settings.php:895 +msgid "Normal Account Page" +msgstr "平常账户页" + +#: ../../mod/settings.php:896 +msgid "This account is a normal personal profile" +msgstr "这个帐户是正常私人简介" + +#: ../../mod/settings.php:899 +msgid "Soapbox Page" +msgstr "演讲台页" + +#: ../../mod/settings.php:900 +msgid "Automatically approve all connection/friend requests as read-only fans" +msgstr "自动批准所有联络/友谊要求当只看的迷" + +#: ../../mod/settings.php:903 +msgid "Community Forum/Celebrity Account" +msgstr "社会评坛/名人账户" + +#: ../../mod/settings.php:904 +msgid "" +"Automatically approve all connection/friend requests as read-write fans" +msgstr "自动批准所有联络/友谊要求当看写的迷" + +#: ../../mod/settings.php:907 +msgid "Automatic Friend Page" +msgstr "自动朋友页" + +#: ../../mod/settings.php:908 +msgid "Automatically approve all connection/friend requests as friends" +msgstr "自动批准所有联络/友谊要求当朋友" + +#: ../../mod/settings.php:911 +msgid "Private Forum [Experimental]" +msgstr "隐私评坛[实验性的 ]" + +#: ../../mod/settings.php:912 +msgid "Private forum - approved members only" +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这个账户登记。" + +#: ../../mod/settings.php:934 +msgid "Publish your default profile in your local site directory?" +msgstr "出版您默认简介在您当地的网站目录?" + +#: ../../mod/settings.php:940 +msgid "Publish your default profile in the global social directory?" +msgstr "出版您默认简介在综合社会目录?" + +#: ../../mod/settings.php:948 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "藏起来 发现您的熟人/朋友单不让这个简介看着看?\n " + +#: ../../mod/settings.php:952 +msgid "Hide your profile details from unknown viewers?" +msgstr "使简介信息给陌生的看着看不了?" + +#: ../../mod/settings.php:957 +msgid "Allow friends to post to your profile page?" +msgstr "允许朋友们贴文章在您的简介页?" + +#: ../../mod/settings.php:963 +msgid "Allow friends to tag your posts?" +msgstr "允许朋友们标签您的文章?" + +#: ../../mod/settings.php:969 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "允许我们建议您潜力朋友给新成员?" + +#: ../../mod/settings.php:975 +msgid "Permit unknown people to send you private mail?" +msgstr "允许生人寄给您私人邮件?" + +#: ../../mod/settings.php:983 +msgid "Profile is not published." +msgstr "简介是没出版" + +#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248 +msgid "or" +msgstr "或者" + +#: ../../mod/settings.php:991 +msgid "Your Identity Address is" +msgstr "您的同一个人地址是" + +#: ../../mod/settings.php:1002 +msgid "Automatically expire posts after this many days:" +msgstr "自动地过期文章这数天:" + +#: ../../mod/settings.php:1002 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "如果空的,文章不会过期。过期的文章被删除" + +#: ../../mod/settings.php:1003 +msgid "Advanced expiration settings" +msgstr "先进的过期设置" + +#: ../../mod/settings.php:1004 +msgid "Advanced Expiration" +msgstr "先进的过期" + +#: ../../mod/settings.php:1005 +msgid "Expire posts:" +msgstr "把文章过期:" + +#: ../../mod/settings.php:1006 +msgid "Expire personal notes:" +msgstr "把私人便条过期:" + +#: ../../mod/settings.php:1007 +msgid "Expire starred posts:" +msgstr "把星的文章过期:" + +#: ../../mod/settings.php:1008 +msgid "Expire photos:" +msgstr "把照片过期:" + +#: ../../mod/settings.php:1009 +msgid "Only expire posts by others:" +msgstr "只别人的文章过期:" + +#: ../../mod/settings.php:1035 +msgid "Account Settings" +msgstr "帐户设置" + +#: ../../mod/settings.php:1043 +msgid "Password Settings" +msgstr "密码设置" + +#: ../../mod/settings.php:1044 +msgid "New Password:" +msgstr "新密码:" + +#: ../../mod/settings.php:1045 +msgid "Confirm:" +msgstr "确认:" + +#: ../../mod/settings.php:1045 +msgid "Leave password fields blank unless changing" +msgstr "非变化留空密码栏" + +#: ../../mod/settings.php:1049 +msgid "Basic Settings" +msgstr "基础设置" + +#: ../../mod/settings.php:1051 +msgid "Email Address:" +msgstr "电子邮件地址:" + +#: ../../mod/settings.php:1052 +msgid "Your Timezone:" +msgstr "您的时区:" + +#: ../../mod/settings.php:1053 +msgid "Default Post Location:" +msgstr "默认文章位置:" + +#: ../../mod/settings.php:1054 +msgid "Use Browser Location:" +msgstr "用游览器位置:" + +#: ../../mod/settings.php:1057 +msgid "Security and Privacy Settings" +msgstr "安全和隐私设置" + +#: ../../mod/settings.php:1059 +msgid "Maximum Friend Requests/Day:" +msgstr "最多友谊要求个天:" + +#: ../../mod/settings.php:1059 ../../mod/settings.php:1089 +msgid "(to prevent spam abuse)" +msgstr "(为防止垃圾邮件滥用)" + +#: ../../mod/settings.php:1060 +msgid "Default Post Permissions" +msgstr "默认文章准许" + +#: ../../mod/settings.php:1061 +msgid "(click to open/close)" +msgstr "(点击为打开/关闭)" + +#: ../../mod/settings.php:1070 ../../mod/photos.php:1140 +#: ../../mod/photos.php:1506 +msgid "Show to Groups" +msgstr "给组表示" + +#: ../../mod/settings.php:1071 ../../mod/photos.php:1141 +#: ../../mod/photos.php:1507 +msgid "Show to Contacts" +msgstr "给熟人表示" + +#: ../../mod/settings.php:1072 +msgid "Default Private Post" +msgstr "默认私人文章" + +#: ../../mod/settings.php:1073 +msgid "Default Public Post" +msgstr "默认公开文章" + +#: ../../mod/settings.php:1077 +msgid "Default Permissions for New Posts" +msgstr "默认权利为新文章" + +#: ../../mod/settings.php:1089 +msgid "Maximum private messages per day from unknown people:" +msgstr "一天最多从生人私人邮件:" + +#: ../../mod/settings.php:1092 +msgid "Notification Settings" +msgstr "消息设置" + +#: ../../mod/settings.php:1093 +msgid "By default post a status message when:" +msgstr "默认地发现状通知如果:" + +#: ../../mod/settings.php:1094 +msgid "accepting a friend request" +msgstr "接受朋友邀请" + +#: ../../mod/settings.php:1095 +msgid "joining a forum/community" +msgstr "加入评坛/社会" + +#: ../../mod/settings.php:1096 +msgid "making an interesting profile change" +msgstr "把简介有意思地变修改" + +#: ../../mod/settings.php:1097 +msgid "Send a notification email when:" +msgstr "发一个消息要是:" + +#: ../../mod/settings.php:1098 +msgid "You receive an introduction" +msgstr "你受到一个介绍" + +#: ../../mod/settings.php:1099 +msgid "Your introductions are confirmed" +msgstr "你的介绍确认了" + +#: ../../mod/settings.php:1100 +msgid "Someone writes on your profile wall" +msgstr "某人写在你的简历墙" + +#: ../../mod/settings.php:1101 +msgid "Someone writes a followup comment" +msgstr "某人写一个后续的评论" + +#: ../../mod/settings.php:1102 +msgid "You receive a private message" +msgstr "你受到一个私消息" + +#: ../../mod/settings.php:1103 +msgid "You receive a friend suggestion" +msgstr "你受到一个朋友建议" + +#: ../../mod/settings.php:1104 +msgid "You are tagged in a post" +msgstr "你被在新闻标签" + +#: ../../mod/settings.php:1105 +msgid "You are poked/prodded/etc. in a post" +msgstr "您在文章被戳" + +#: ../../mod/settings.php:1108 +msgid "Advanced Account/Page Type Settings" +msgstr "专家账户/页种设置" + +#: ../../mod/settings.php:1109 +msgid "Change the behaviour of this account for special situations" +msgstr "把这个账户特别情况的时候行动变化" + +#: ../../mod/share.php:44 +msgid "link" +msgstr "链接" #: ../../mod/crepair.php:102 msgid "Contact settings applied." @@ -38,41 +7564,8 @@ msgstr "熟人设置应用了。" 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 +#: ../../mod/crepair.php:129 ../../mod/dfrn_confirm.php:118 +#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 msgid "Contact not found." msgstr "没找到熟人。" @@ -96,11 +7589,6 @@ msgstr "请立即用后退按钮如果您不确定怎么用这 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 "帐户昵称" @@ -133,755 +7621,150 @@ msgstr "喂URL" msgid "New photo from this URL" msgstr "新照片从这个URL" -#: ../../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/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/editplain/editplain.php:84 -#: ../../addon.old/blackout/blackout.php:98 -#: ../../addon.old/gravatar/gravatar.php:95 -#: ../../addon.old/pageheader/pageheader.php:55 -#: ../../addon.old/ijpost/ijpost.php:93 -#: ../../addon.old/jappixmini/jappixmini.php:307 -#: ../../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/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 -msgid "Submit" -msgstr "提交" +#: ../../mod/delegate.php:95 +msgid "No potential page delegates located." +msgstr "找不到可能代表页人。" -#: ../../mod/help.php:79 -msgid "Help:" -msgstr "帮助:" +#: ../../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 "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。" -#: ../../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/delegate.php:124 +msgid "Existing Page Managers" +msgstr "目前页管理员" -#: ../../mod/help.php:90 ../../index.php:226 -msgid "Not Found" -msgstr "未发现" +#: ../../mod/delegate.php:126 +msgid "Existing Page Delegates" +msgstr "目前页代表" -#: ../../mod/help.php:93 ../../index.php:229 -msgid "Page not found." -msgstr "页发现。" +#: ../../mod/delegate.php:128 +msgid "Potential Delegates" +msgstr "潜力的代表" -#: ../../mod/wall_attach.php:69 +#: ../../mod/delegate.php:131 +msgid "Add" +msgstr "加" + +#: ../../mod/delegate.php:132 +msgid "No entries." +msgstr "没有项目。" + +#: ../../mod/poke.php:192 +msgid "Poke/Prod" +msgstr "戳" + +#: ../../mod/poke.php:193 +msgid "poke, prod or do other things to somebody" +msgstr "把人家戳或别的行动" + +#: ../../mod/poke.php:194 +msgid "Recipient" +msgstr "接受者" + +#: ../../mod/poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "选择您想把别人作" + +#: ../../mod/poke.php:198 +msgid "Make this post private" +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 "遥网站的回答明白不了。" + +#: ../../mod/dfrn_confirm.php:246 +msgid "Unexpected response from remote site: " +msgstr "居然回答从遥网站:" + +#: ../../mod/dfrn_confirm.php:254 +msgid "Confirmation completed successfully." +msgstr "确认成功完成。" + +#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 +#: ../../mod/dfrn_confirm.php:277 +msgid "Remote site reported: " +msgstr "遥网站报案:" + +#: ../../mod/dfrn_confirm.php:268 +msgid "Temporary failure. Please wait and try again." +msgstr "临时失败。请等一会,再试。" + +#: ../../mod/dfrn_confirm.php:275 +msgid "Introduction failed or was revoked." +msgstr "介绍失败或被吊销。" + +#: ../../mod/dfrn_confirm.php:420 +msgid "Unable to set contact photo." +msgstr "不会指定熟人照片。" + +#: ../../mod/dfrn_confirm.php:562 #, php-format -msgid "File exceeds size limit of %d" -msgstr "文件数目超过最多%d" +msgid "No user record found for '%s' " +msgstr "找不到「%s」的用户记录" -#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 -msgid "File upload failed." -msgstr "文件上传失败。" +#: ../../mod/dfrn_confirm.php:572 +msgid "Our site encryption key is apparently messed up." +msgstr "看起来我们的加密钥匙失灵了。" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "朋友建议发送了。" +#: ../../mod/dfrn_confirm.php:583 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "空的URL供应,或URL解不了码。" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "建议朋友们" +#: ../../mod/dfrn_confirm.php:604 +msgid "Contact record was not found for you on our site." +msgstr "熟人记录在我们的网站找不了。" -#: ../../mod/fsuggest.php:99 +#: ../../mod/dfrn_confirm.php:618 #, php-format -msgid "Suggest a friend for %s" -msgstr "建议朋友给%s" +msgid "Site public key not available in contact record for URL %s." +msgstr "没有网站公开钥匙在熟人记录在URL%s。" -#: ../../mod/events.php:66 -msgid "Event title and start time are required." -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 "身份证明由您的系统是在我们的重做。你再试应该运行。" -#: ../../mod/events.php:291 -msgid "l, F j" -msgstr "l, F j" +#: ../../mod/dfrn_confirm.php:649 +msgid "Unable to set your contact credentials on our system." +msgstr "不能创作您的熟人证件在我们的系统。" -#: ../../mod/events.php:313 -msgid "Edit event" -msgstr "编项目" +#: ../../mod/dfrn_confirm.php:716 +msgid "Unable to update your contact profile details on our system" +msgstr "不能更新您的熟人简介消息在我们的系统" -#: ../../mod/events.php:335 ../../include/text.php:1258 -msgid "link to source" -msgstr "链接到来源" - -#: ../../mod/events.php:370 ../../view/theme/diabook/theme.php:91 -#: ../../include/nav.php:79 ../../boot.php:1857 -msgid "Events" -msgstr "事件" - -#: ../../mod/events.php:371 -msgid "Create New Event" -msgstr "造成新的项目" - -#: ../../mod/events.php:372 ../../addon/dav/friendica/layout.fnk.php:263 -#: ../../addon.old/dav/friendica/layout.fnk.php:263 -msgid "Previous" -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 "下" - -#: ../../mod/events.php:446 -msgid "hour:minute" -msgstr "小时:分钟" - -#: ../../mod/events.php:456 -msgid "Event details" -msgstr "项目内容" - -#: ../../mod/events.php:457 +#: ../../mod/dfrn_confirm.php:751 #, php-format -msgid "Format is %s %s. Starting date and Title are required." -msgstr "形式是%s%s。开始时间和标题是必须的。" +msgid "Connection accepted at %s" +msgstr "联络接受了在%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_confirm.php:800 +#, php-format +msgid "%1$s has joined %2$s" +msgstr "%1$s加入%2$s了" #: ../../mod/dfrn_poll.php:101 ../../mod/dfrn_poll.php:534 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s欢迎%2$s" -#: ../../mod/api.php:76 ../../mod/api.php:102 -msgid "Authorize application connection" -msgstr "授权应用连接" - -#: ../../mod/api.php:77 -msgid "Return to your app and insert this Securty Code:" -msgstr "回归您的应用和输入这个安全密码:" - -#: ../../mod/api.php:89 -msgid "Please login to continue." -msgstr "请登记为继续。" - -#: ../../mod/api.php:104 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "您想不想使这个应用用权您的文章和熟人,和/或代您造成新文章" - -#: ../../mod/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 "是" - -#: ../../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 "否" - -#: ../../mod/photos.php:51 ../../boot.php:1850 -msgid "Photo Albums" -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 -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 -#: ../../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 "简介照片" - -#: ../../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 "删除相册" - -#: ../../mod/photos.php:197 -msgid "Do you really want to delete this photo album and all its photos?" -msgstr "您真的想删除这个相册和所有里面的照相吗?" - -#: ../../mod/photos.php:275 ../../mod/photos.php:286 ../../mod/photos.php:1499 -msgid "Delete Photo" -msgstr "删除照片" - -#: ../../mod/photos.php:284 -msgid "Do you really want to delete this photo?" -msgstr "您真的想删除这个照相吗?" - -#: ../../mod/photos.php:653 -#, php-format -msgid "%1$s was tagged in %2$s by %3$s" -msgstr "%1$s被%3$s标签在%2$s" - -#: ../../mod/photos.php:653 -msgid "a photo" -msgstr "一张照片" - -#: ../../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 "图片超出最大尺寸" - -#: ../../mod/photos.php:766 -msgid "Image file is empty." -msgstr "图片文件空的。" - -#: ../../mod/photos.php:798 ../../mod/profile_photo.php:153 -#: ../../mod/wall_upload.php:112 -msgid "Unable to process image." -msgstr "处理不了图像." - -#: ../../mod/photos.php:825 ../../mod/profile_photo.php:301 -#: ../../mod/wall_upload.php:138 -msgid "Image upload failed." -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 "公众看拒绝" - -#: ../../mod/photos.php:921 -msgid "No photos selected" -msgstr "没有照片挑选了" - -#: ../../mod/photos.php:1022 -msgid "Access to this item is restricted." -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兆字节照片存储。" - -#: ../../mod/photos.php:1120 -msgid "Upload Photos" -msgstr "上传照片" - -#: ../../mod/photos.php:1124 ../../mod/photos.php:1192 -msgid "New album name: " -msgstr "新册名:" - -#: ../../mod/photos.php:1125 -msgid "or existing album name: " -msgstr "或现有册名" - -#: ../../mod/photos.php:1126 -msgid "Do not show a status post for this upload" -msgstr "别显示现状报到关于这个上传" - -#: ../../mod/photos.php:1128 ../../mod/photos.php:1494 -msgid "Permissions" -msgstr "权利" - -#: ../../mod/photos.php:1137 ../../mod/photos.php:1503 -#: ../../mod/settings.php:1070 -msgid "Show to Groups" -msgstr "给组表示" - -#: ../../mod/photos.php:1138 ../../mod/photos.php:1504 -#: ../../mod/settings.php:1071 -msgid "Show to Contacts" -msgstr "给熟人表示" - -#: ../../mod/photos.php:1139 -msgid "Private Photo" -msgstr "私人照相" - -#: ../../mod/photos.php:1140 -msgid "Public Photo" -msgstr "公开照相" - -#: ../../mod/photos.php:1207 -msgid "Edit Album" -msgstr "编照片册" - -#: ../../mod/photos.php:1213 -msgid "Show Newest First" -msgstr "先表示最新的" - -#: ../../mod/photos.php:1215 -msgid "Show Oldest First" -msgstr "先表示最老的" - -#: ../../mod/photos.php:1248 ../../mod/photos.php:1775 -msgid "View Photo" -msgstr "看照片" - -#: ../../mod/photos.php:1283 -msgid "Permission denied. Access to this item may be restricted." -msgstr "无权利。用这个项目可能受限制。" - -#: ../../mod/photos.php:1285 -msgid "Photo not available" -msgstr "照片不可获得的 " - -#: ../../mod/photos.php:1341 -msgid "View photo" -msgstr "看照片" - -#: ../../mod/photos.php:1341 -msgid "Edit photo" -msgstr "编辑照片" - -#: ../../mod/photos.php:1342 -msgid "Use as profile photo" -msgstr "用为资料图" - -#: ../../mod/photos.php:1348 ../../mod/content.php:620 -#: ../../object/Item.php:106 -msgid "Private Message" -msgstr "私人的新闻" - -#: ../../mod/photos.php:1367 -msgid "View Full Size" -msgstr "看全尺寸" - -#: ../../mod/photos.php:1441 -msgid "Tags: " -msgstr "标签:" - -#: ../../mod/photos.php:1444 -msgid "[Remove any tag]" -msgstr "[删除任何标签]" - -#: ../../mod/photos.php:1484 -msgid "Rotate CW (right)" -msgstr "顺时针地转动(左)" - -#: ../../mod/photos.php:1485 -msgid "Rotate CCW (left)" -msgstr "反顺时针地转动(右)" - -#: ../../mod/photos.php:1487 -msgid "New album name" -msgstr "新册名" - -#: ../../mod/photos.php:1490 -msgid "Caption" -msgstr "字幕" - -#: ../../mod/photos.php:1492 -msgid "Add a Tag" -msgstr "加标签" - -#: ../../mod/photos.php:1496 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv" - -#: ../../mod/photos.php:1505 -msgid "Private photo" -msgstr "私人照相" - -#: ../../mod/photos.php:1506 -msgid "Public photo" -msgstr "公开照相" - -#: ../../mod/photos.php:1526 ../../mod/content.php:684 -#: ../../object/Item.php:204 -msgid "I like this (toggle)" -msgstr "我喜欢这(交替)" - -#: ../../mod/photos.php:1527 ../../mod/content.php:685 -#: ../../object/Item.php:205 -msgid "I don't like this (toggle)" -msgstr "我不喜欢这(交替)" - -#: ../../mod/photos.php:1528 ../../include/conversation.php:1023 -msgid "Share" -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 "请等一下" - -#: ../../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 "这是你" - -#: ../../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 "评论" - -#: ../../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 "预演" - -#: ../../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 "删除" - -#: ../../mod/photos.php:1781 -msgid "View Album" -msgstr "看照片册" - -#: ../../mod/photos.php:1790 -msgid "Recent Photos" -msgstr "最近的照片" - -#: ../../mod/community.php:23 -msgid "Not available." -msgstr "不可用的" - -#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93 -#: ../../include/nav.php:128 -msgid "Community" -msgstr "社会" - -#: ../../mod/community.php:61 ../../mod/community.php:86 -#: ../../mod/search.php:162 ../../mod/search.php:188 -msgid "No results." -msgstr "没有结果" - -#: ../../mod/friendica.php:55 -msgid "This is Friendica, version" -msgstr "这是Friendica,版本" - -#: ../../mod/friendica.php:56 -msgid "running at web location" -msgstr "运作再网址" - -#: ../../mod/friendica.php:58 -msgid "" -"Please visit Friendica.com to learn " -"more about the Friendica project." -msgstr "请看Friendica.com发现多关于Friendica工程。" - -#: ../../mod/friendica.php:60 -msgid "Bug reports and issues: please visit" -msgstr "问题报案:请去" - -#: ../../mod/friendica.php:61 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " -"dot com" -msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com" - -#: ../../mod/friendica.php:75 -msgid "Installed plugins/addons/apps:" -msgstr "安装的插件/加件/应用:" - -#: ../../mod/friendica.php:88 -msgid "No installed plugins/addons/apps" -msgstr "没有安装的插件/应用" - -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "项目没找到" - -#: ../../mod/editpost.php:39 -msgid "Edit post" -msgstr "编辑文章" - -#: ../../mod/editpost.php:109 ../../mod/content.php:728 -#: ../../mod/settings.php:622 ../../object/Item.php:110 -msgid "Edit" -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 "上传照片" - -#: ../../mod/editpost.php:111 ../../include/conversation.php:1025 -msgid "upload photo" -msgstr "上传照片" - -#: ../../mod/editpost.php:112 ../../include/conversation.php:1026 -msgid "Attach file" -msgstr "附上文件" - -#: ../../mod/editpost.php:113 ../../include/conversation.php:1027 -msgid "attach file" -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 "插入网页环节" - -#: ../../mod/editpost.php:115 ../../include/conversation.php:1029 -msgid "web link" -msgstr "网页环节" - -#: ../../mod/editpost.php:116 ../../include/conversation.php:1030 -msgid "Insert video link" -msgstr "插入视频环节" - -#: ../../mod/editpost.php:117 ../../include/conversation.php:1031 -msgid "video link" -msgstr "视频环节" - -#: ../../mod/editpost.php:118 ../../include/conversation.php:1032 -msgid "Insert audio link" -msgstr "插入录音环节" - -#: ../../mod/editpost.php:119 ../../include/conversation.php:1033 -msgid "audio link" -msgstr "录音环节" - -#: ../../mod/editpost.php:120 ../../include/conversation.php:1034 -msgid "Set your location" -msgstr "设定您的位置" - -#: ../../mod/editpost.php:121 ../../include/conversation.php:1035 -msgid "set location" -msgstr "指定位置" - -#: ../../mod/editpost.php:122 ../../include/conversation.php:1036 -msgid "Clear browser location" -msgstr "清空浏览器位置" - -#: ../../mod/editpost.php:123 ../../include/conversation.php:1037 -msgid "clear location" -msgstr "清理出位置" - -#: ../../mod/editpost.php:125 ../../include/conversation.php:1043 -msgid "Permission settings" -msgstr "权设置" - -#: ../../mod/editpost.php:133 ../../include/conversation.php:1052 -msgid "CC: email addresses" -msgstr "抄送: 电子邮件地址" - -#: ../../mod/editpost.php:134 ../../include/conversation.php:1053 -msgid "Public post" -msgstr "公开的消息" - -#: ../../mod/editpost.php:137 ../../include/conversation.php:1039 -msgid "Set title" -msgstr "指定标题" - -#: ../../mod/editpost.php:139 ../../include/conversation.php:1041 -msgid "Categories (comma-separated list)" -msgstr "种类(逗号分隔单)" - -#: ../../mod/editpost.php:140 ../../include/conversation.php:1055 -msgid "Example: bob@example.com, mary@example.com" -msgstr "比如: li@example.com, wang@example.com" - #: ../../mod/dfrn_request.php:93 msgid "This introduction has already been accepted." msgstr "这个介绍已经接受了。" #: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513 msgid "Profile location is not valid or does not contain profile information." -msgstr "简介位置失效或不包括简介信息。" +msgstr "简介位置失效或不包含简介信息。" #: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518 msgid "Warning: profile location has no identifiable owner name." @@ -951,14 +7834,6 @@ msgstr "看上去您已经是%s的朋友。" msgid "Invalid profile URL." msgstr "无效的简介URL。" -#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27 -msgid "Disallowed profile URL." -msgstr "不允许的简介地址." - -#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124 -msgid "Failed to update contact record." -msgstr "更新熟人记录失败了。" - #: ../../mod/dfrn_request.php:592 msgid "Your introduction has been sent." msgstr "您的介绍发布了。" @@ -991,10 +7866,6 @@ msgstr "请确认您的介绍/联络要求给%s。" msgid "Confirm" msgstr "确认" -#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366 -msgid "[Name Withheld]" -msgstr "[名字拒给]" - #: ../../mod/dfrn_request.php:811 msgid "" "Please enter your 'Identity Address' from one of the following supported " @@ -1035,19 +7906,10 @@ msgstr "%s是否认识你?" msgid "Add a personal note:" msgstr "添加个人的便条" -#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76 -msgid "Friendica" -msgstr "Friendica" - #: ../../mod/dfrn_request.php:841 msgid "StatusNet/Federated Social Web" msgstr "StatusNet/联合社会化网" -#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681 -#: ../../include/contact_selectors.php:80 -msgid "Diaspora" -msgstr "Diaspora" - #: ../../mod/dfrn_request.php:843 #, php-format msgid "" @@ -1063,43 +7925,125 @@ msgstr "您的同一个人地址:" msgid "Submit Request" msgstr "提交要求" -#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:167 -msgid "Account settings" -msgstr "帐户配置" +#: ../../mod/subthread.php:103 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s关注着%2$s的%3$s" -#: ../../mod/uexport.php:14 ../../mod/settings.php:40 -msgid "Display settings" -msgstr "表示设置" +#: ../../mod/suggest.php:27 +msgid "Do you really want to delete this suggestion?" +msgstr "您真的想删除这个建议吗?" -#: ../../mod/uexport.php:20 ../../mod/settings.php:46 -msgid "Connector settings" -msgstr "插销设置" +#: ../../mod/suggest.php:72 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "没有建议。如果这是新网站,请24小时后再试。" -#: ../../mod/uexport.php:25 ../../mod/settings.php:51 -msgid "Plugin settings" -msgstr "插件设置" +#: ../../mod/suggest.php:90 +msgid "Ignore/Hide" +msgstr "不理/隐藏" -#: ../../mod/uexport.php:30 ../../mod/settings.php:56 -msgid "Connected apps" -msgstr "连接着应用" +#: ../../mod/dirfind.php:26 +msgid "People Search" +msgstr "搜索人物" -#: ../../mod/uexport.php:35 ../../mod/uexport.php:80 ../../mod/settings.php:61 -msgid "Export personal data" -msgstr "出口私人信息" +#: ../../mod/dirfind.php:60 ../../mod/match.php:65 +msgid "No matches" +msgstr "没有结果" -#: ../../mod/uexport.php:40 ../../mod/settings.php:66 -msgid "Remove account" -msgstr "删除账户" +#: ../../mod/display.php:99 ../../mod/profile.php:155 +msgid "Access to this profile has been restricted." +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 "配置" +#: ../../mod/display.php:177 +msgid "Item has been removed." +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/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "项目没找到" + +#: ../../mod/editpost.php:39 +msgid "Edit post" +msgstr "编辑文章" + +#: ../../mod/events.php:66 +msgid "Event title and start time are required." +msgstr "项目标题和开始时间是必须的。" + +#: ../../mod/events.php:291 +msgid "l, F j" +msgstr "l, F j" + +#: ../../mod/events.php:313 +msgid "Edit event" +msgstr "编项目" + +#: ../../mod/events.php:371 +msgid "Create New Event" +msgstr "造成新的项目" + +#: ../../mod/events.php:446 +msgid "hour:minute" +msgstr "小时:分钟" + +#: ../../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:473 +msgid "Title:" +msgstr "标题:" + +#: ../../mod/events.php:475 +msgid "Share this event" +msgstr "分享这个项目" + +#: ../../mod/fbrowser.php:113 +msgid "Files" +msgstr "文件" #: ../../mod/uexport.php:72 msgid "Export account" @@ -1122,6 +8066,173 @@ msgid "" "of your account (photos are not exported)" msgstr "出口您账户信息,熟人和别的项目成json。可能是很大文件,花很多时间。用这个为创造全备份您的账户(照片没被出口)" +#: ../../mod/filer.php:30 +msgid "- select -" +msgstr "-选择-" + +#: ../../mod/uimport.php:64 +msgid "Import" +msgstr "进口" + +#: ../../mod/uimport.php:66 +msgid "Move account" +msgstr "把账户搬出" + +#: ../../mod/uimport.php:67 +msgid "You can import an account from another Friendica server." +msgstr "您会从别的Friendica服务器进口账户" + +#: ../../mod/uimport.php:68 +msgid "" +"You need to export your account from the old server and upload it here. We " +"will recreate your old account here with all your contacts. We will try also" +" to inform your friends that you moved here." +msgstr "您要把您老服务器账户出口才这里上传。我们重现您账户这里,包括所有您的熟人。我们再试通知您朋友们您搬到这里。" + +#: ../../mod/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熟人" + +#: ../../mod/uimport.php:70 +msgid "Account file" +msgstr "账户文件" + +#: ../../mod/uimport.php:70 +msgid "" +"To export your accont, go to \"Settings->Export your porsonal data\" and " +"select \"Export account\"" +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 "[嵌入内容-重新加载页为看]" + +#: ../../mod/follow.php:27 +msgid "Contact added" +msgstr "熟人添了" + +#: ../../mod/friendica.php:55 +msgid "This is Friendica, version" +msgstr "这是Friendica,版本" + +#: ../../mod/friendica.php:56 +msgid "running at web location" +msgstr "运作再网址" + +#: ../../mod/friendica.php:58 +msgid "" +"Please visit Friendica.com to learn " +"more about the Friendica project." +msgstr "请看Friendica.com发现多关于Friendica工程。" + +#: ../../mod/friendica.php:60 +msgid "Bug reports and issues: please visit" +msgstr "问题报案:请去" + +#: ../../mod/friendica.php:61 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" +msgstr "建议,夸奖,捐赠,等-请发邮件到「 Info」在Friendica点com" + +#: ../../mod/friendica.php:75 +msgid "Installed plugins/addons/apps:" +msgstr "安装的插件/加件/应用:" + +#: ../../mod/friendica.php:88 +msgid "No installed plugins/addons/apps" +msgstr "没有安装的插件/应用" + +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "朋友建议发送了。" + +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "建议朋友们" + +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "建议朋友给%s" + +#: ../../mod/group.php:29 +msgid "Group created." +msgstr "组造成了。" + +#: ../../mod/group.php:35 +msgid "Could not create group." +msgstr "不能造成组。" + +#: ../../mod/group.php:47 ../../mod/group.php:140 +msgid "Group not found." +msgstr "组找不到。" + +#: ../../mod/group.php:60 +msgid "Group name changed." +msgstr "组名变化了。" + +#: ../../mod/group.php:93 +msgid "Create a group of contacts/friends." +msgstr "造成组熟人/朋友们。" + +#: ../../mod/group.php:94 ../../mod/group.php:180 +msgid "Group Name: " +msgstr "组名:" + +#: ../../mod/group.php:113 +msgid "Group removed." +msgstr "组删除了。" + +#: ../../mod/group.php:115 +msgid "Unable to remove group." +msgstr "不能删除组。" + +#: ../../mod/group.php:179 +msgid "Group Editor" +msgstr "组编辑器" + +#: ../../mod/group.php:192 +msgid "Members" +msgstr "成员" + +#: ../../mod/hcard.php:10 +msgid "No profile" +msgstr "无简介" + +#: ../../mod/help.php:79 +msgid "Help:" +msgstr "帮助:" + +#: ../../mod/help.php:90 ../../index.php:226 +msgid "Not Found" +msgstr "未发现" + +#: ../../mod/help.php:93 ../../index.php:229 +msgid "Page not found." +msgstr "页发现。" + +#: ../../mod/viewcontacts.php:39 +msgid "No contacts." +msgstr "没有熟人。" + +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "没有用权。" + +#: ../../mod/wall_attach.php:69 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "文件数目超过最多%d" + +#: ../../mod/wall_attach.php:110 ../../mod/wall_attach.php:121 +msgid "File upload failed." +msgstr "文件上传失败。" + #: ../../mod/install.php:117 msgid "Friendica Social Communications Server - Setup" msgstr "Friendica社会交通服务器-安装" @@ -1405,3512 +8516,20 @@ msgid "" "poller." msgstr "重要:您要[手工地]准备安排的任务给喂器。" -#: ../../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" - -#: ../../mod/localtime.php:24 -msgid "Time Conversion" -msgstr "时间装换" - -#: ../../mod/localtime.php:26 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。" - -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" -msgstr "UTC时间: %s" - -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" -msgstr "现在时区: %s" - -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" -msgstr "装换的当地时间:%s" - -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" -msgstr "请选择你的时区:" - -#: ../../mod/poke.php:192 -msgid "Poke/Prod" -msgstr "戳" - -#: ../../mod/poke.php:193 -msgid "poke, prod or do other things to somebody" -msgstr "把人家戳或别的行动" - -#: ../../mod/poke.php:194 -msgid "Recipient" -msgstr "接受者" - -#: ../../mod/poke.php:195 -msgid "Choose what you wish to do to recipient" -msgstr "选择您想把别人作" - -#: ../../mod/poke.php:198 -msgid "Make this post private" -msgstr "使这个文章私人" - -#: ../../mod/match.php:12 -msgid "Profile Match" -msgstr "简介符合" - -#: ../../mod/match.php:20 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "没有符合的关键字。请在您的默认简介加关键字。" - -#: ../../mod/match.php:57 -msgid "is interested in:" -msgstr "感兴趣对:" - -#: ../../mod/match.php:58 ../../mod/suggest.php:88 -#: ../../include/contact_widgets.php:9 ../../boot.php:1317 -msgid "Connect" -msgstr "连接" - -#: ../../mod/match.php:65 ../../mod/dirfind.php:60 -msgid "No matches" -msgstr "没有结果" - -#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "摇隐私信息无效" - -#: ../../mod/lockview.php:48 -#: ../../addon/remote_permissions/remote_permissions.php:124 -msgid "Visible to:" -msgstr "可见给:" - -#: ../../mod/content.php:119 ../../mod/network.php:596 -msgid "No such group" -msgstr "没有这个组" - -#: ../../mod/content.php:130 ../../mod/network.php:607 -msgid "Group is empty" -msgstr "组没有成员" - -#: ../../mod/content.php:134 ../../mod/network.php:611 -msgid "Group: " -msgstr "组:" - -#: ../../mod/content.php:438 ../../mod/content.php:740 -#: ../../include/conversation.php:569 ../../object/Item.php:119 -msgid "Select" -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" - -#: ../../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" - -#: ../../mod/content.php:497 ../../include/conversation.php:644 -msgid "View in context" -msgstr "看在上下文" - -#: ../../mod/content.php:603 ../../object/Item.php:313 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d评论" - -#: ../../mod/content.php:605 ../../include/text.php:1514 -#: ../../object/Item.php:315 ../../object/Item.php:328 -msgid "comment" -msgid_plural "comments" -msgstr[0] "评论" - -#: ../../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 "看多" - -#: ../../mod/content.php:684 ../../object/Item.php:204 -msgid "like" -msgstr "喜欢" - -#: ../../mod/content.php:685 ../../object/Item.php:205 -msgid "dislike" -msgstr "讨厌" - -#: ../../mod/content.php:687 ../../object/Item.php:207 -msgid "Share this" -msgstr "分享这个" - -#: ../../mod/content.php:687 ../../object/Item.php:207 -msgid "share" -msgstr "分享" - -#: ../../mod/content.php:711 ../../object/Item.php:605 -msgid "Bold" -msgstr "粗体字 " - -#: ../../mod/content.php:712 ../../object/Item.php:606 -msgid "Italic" -msgstr "斜体 " - -#: ../../mod/content.php:713 ../../object/Item.php:607 -msgid "Underline" -msgstr "下划线" - -#: ../../mod/content.php:714 ../../object/Item.php:608 -msgid "Quote" -msgstr "引语" - -#: ../../mod/content.php:715 ../../object/Item.php:609 -msgid "Code" -msgstr "源代码" - -#: ../../mod/content.php:716 ../../object/Item.php:610 -msgid "Image" -msgstr "图片" - -#: ../../mod/content.php:717 ../../object/Item.php:611 -msgid "Link" -msgstr "环节" - -#: ../../mod/content.php:718 ../../object/Item.php:612 -msgid "Video" -msgstr "录像" - -#: ../../mod/content.php:753 ../../object/Item.php:183 -msgid "add star" -msgstr "加星" - -#: ../../mod/content.php:754 ../../object/Item.php:184 -msgid "remove star" -msgstr "消星" - -#: ../../mod/content.php:755 ../../object/Item.php:185 -msgid "toggle star status" -msgstr "转变星现状" - -#: ../../mod/content.php:758 ../../object/Item.php:188 -msgid "starred" -msgstr "被贴星" - -#: ../../mod/content.php:759 ../../object/Item.php:193 -msgid "add tag" -msgstr "加标签" - -#: ../../mod/content.php:763 ../../object/Item.php:123 -msgid "save to folder" -msgstr "保存在文件夹" - -#: ../../mod/content.php:854 ../../object/Item.php:260 -msgid "to" -msgstr "至" - -#: ../../mod/content.php:855 ../../object/Item.php:262 -msgid "Wall-to-Wall" -msgstr "从墙到墙" - -#: ../../mod/content.php:856 ../../object/Item.php:263 -msgid "via Wall-To-Wall:" -msgstr "通过从墙到墙" - -#: ../../mod/home.php:34 ../../addon/communityhome/communityhome.php:189 -#: ../../addon.old/communityhome/communityhome.php:179 -#, php-format -msgid "Welcome to %s" -msgstr "%s欢迎你" - -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "无效要求身份号。" - -#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 -#: ../../mod/notifications.php:211 -msgid "Discard" -msgstr "丢弃" - -#: ../../mod/notifications.php:51 ../../mod/notifications.php:164 -#: ../../mod/notifications.php:210 ../../mod/contacts.php:359 -#: ../../mod/contacts.php:413 -msgid "Ignore" -msgstr "忽视" - -#: ../../mod/notifications.php:78 -msgid "System" -msgstr "系统" - -#: ../../mod/notifications.php:83 ../../include/nav.php:140 -msgid "Network" -msgstr "网络" - -#: ../../mod/notifications.php:88 ../../mod/network.php:444 -msgid "Personal" -msgstr "私人" - -#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87 -#: ../../include/nav.php:104 ../../include/nav.php:143 -msgid "Home" -msgstr "主页" - -#: ../../mod/notifications.php:98 ../../include/nav.php:149 -msgid "Introductions" -msgstr "介绍" - -#: ../../mod/notifications.php:103 ../../mod/message.php:182 -#: ../../include/nav.php:156 -msgid "Messages" -msgstr "消息" - -#: ../../mod/notifications.php:122 -msgid "Show Ignored Requests" -msgstr "显示不理的要求" - -#: ../../mod/notifications.php:122 -msgid "Hide Ignored Requests" -msgstr "隐藏不理的要求" - -#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 -msgid "Notification type: " -msgstr "通知种类:" - -#: ../../mod/notifications.php:150 -msgid "Friend Suggestion" -msgstr "朋友建议" - -#: ../../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 "隐藏这个熟人给别人" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "Post a new friend activity" -msgstr "表新朋友活动" - -#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 -msgid "if applicable" -msgstr "或适用" - -#: ../../mod/notifications.php:161 ../../mod/notifications.php:208 -#: ../../mod/admin.php:733 -msgid "Approve" -msgstr "批准" - -#: ../../mod/notifications.php:181 -msgid "Claims to be known to you: " -msgstr "声称被您认识:" - -#: ../../mod/notifications.php:181 -msgid "yes" -msgstr "是" - -#: ../../mod/notifications.php:181 -msgid "no" -msgstr "否" - -#: ../../mod/notifications.php:188 -msgid "Approve as: " -msgstr "批准作为" - -#: ../../mod/notifications.php:189 -msgid "Friend" -msgstr "朋友" - -#: ../../mod/notifications.php:190 -msgid "Sharer" -msgstr "分享者" - -#: ../../mod/notifications.php:190 -msgid "Fan/Admirer" -msgstr "迷/赞赏者" - -#: ../../mod/notifications.php:196 -msgid "Friend/Connect Request" -msgstr "友谊/联络要求" - -#: ../../mod/notifications.php:196 -msgid "New Follower" -msgstr "新关注者:" - -#: ../../mod/notifications.php:217 -msgid "No introductions." -msgstr "没有介绍。" - -#: ../../mod/notifications.php:220 ../../include/nav.php:150 -msgid "Notifications" -msgstr "通知" - -#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 -#: ../../mod/notifications.php:469 -#, php-format -msgid "%s liked %s's post" -msgstr "%s喜欢了%s的消息" - -#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 -#: ../../mod/notifications.php:478 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s不喜欢了%s的消息" - -#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 -#: ../../mod/notifications.php:492 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s成为%s的朋友" - -#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 -#, php-format -msgid "%s created a new post" -msgstr "%s造成新文章" - -#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 -#: ../../mod/notifications.php:501 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s便条%s的文章" - -#: ../../mod/notifications.php:302 -msgid "No more network notifications." -msgstr "没有别的网络通信。" - -#: ../../mod/notifications.php:306 -msgid "Network Notifications" -msgstr "网络通知" - -#: ../../mod/notifications.php:332 ../../mod/notify.php:61 -msgid "No more system notifications." -msgstr "没别系统通知。" - -#: ../../mod/notifications.php:336 ../../mod/notify.php:65 -msgid "System Notifications" -msgstr "系统通知" - -#: ../../mod/notifications.php:427 -msgid "No more personal notifications." -msgstr "没有别的私人通信。" - -#: ../../mod/notifications.php:431 -msgid "Personal Notifications" -msgstr "私人通知" - -#: ../../mod/notifications.php:508 -msgid "No more home notifications." -msgstr "没有别的家通信。" - -#: ../../mod/notifications.php:512 -msgid "Home Notifications" -msgstr "主页通知" - -#: ../../mod/contacts.php:85 ../../mod/contacts.php:165 -msgid "Could not access contact record." -msgstr "用不了熟人记录。" - -#: ../../mod/contacts.php:99 -msgid "Could not locate selected profile." -msgstr "找不到选择的简介。" - -#: ../../mod/contacts.php:122 -msgid "Contact updated." -msgstr "熟人更新了。" - -#: ../../mod/contacts.php:187 -msgid "Contact has been blocked" -msgstr "熟人拦了" - -#: ../../mod/contacts.php:187 -msgid "Contact has been unblocked" -msgstr "熟人否拦了" - -#: ../../mod/contacts.php:201 -msgid "Contact has been ignored" -msgstr "熟人不理了" - -#: ../../mod/contacts.php:201 -msgid "Contact has been unignored" -msgstr "熟人否不理了" - -#: ../../mod/contacts.php:220 -msgid "Contact has been archived" -msgstr "把联系存档了" - -#: ../../mod/contacts.php:220 -msgid "Contact has been unarchived" -msgstr "把联系从存档拿来了" - -#: ../../mod/contacts.php:244 -msgid "Do you really want to delete this contact?" -msgstr "您真的想删除这个熟人吗?" - -#: ../../mod/contacts.php:263 -msgid "Contact has been removed." -msgstr "熟人删除了。" - -#: ../../mod/contacts.php:301 -#, php-format -msgid "You are mutual friends with %s" -msgstr "您和%s是共同朋友们" - -#: ../../mod/contacts.php:305 -#, php-format -msgid "You are sharing with %s" -msgstr "您分享给%s" - -#: ../../mod/contacts.php:310 -#, php-format -msgid "%s is sharing with you" -msgstr "%s给您分享" - -#: ../../mod/contacts.php:327 -msgid "Private communications are not available for this contact." -msgstr "没有私人的沟通跟这个熟人" - -#: ../../mod/contacts.php:330 -msgid "Never" -msgstr "从未" - -#: ../../mod/contacts.php:334 -msgid "(Update was successful)" -msgstr "(更新成功)" - -#: ../../mod/contacts.php:334 -msgid "(Update was not successful)" -msgstr "(更新不成功)" - -#: ../../mod/contacts.php:336 -msgid "Suggest friends" -msgstr "建议朋友们" - -#: ../../mod/contacts.php:340 -#, php-format -msgid "Network type: %s" -msgstr "网络种类: %s" - -#: ../../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共同熟人" - -#: ../../mod/contacts.php:348 -msgid "View all contacts" -msgstr "看所有的熟人" - -#: ../../mod/contacts.php:353 ../../mod/contacts.php:412 -#: ../../mod/admin.php:737 -msgid "Unblock" -msgstr "不拦" - -#: ../../mod/contacts.php:353 ../../mod/contacts.php:412 -#: ../../mod/admin.php:736 -msgid "Block" -msgstr "拦" - -#: ../../mod/contacts.php:356 -msgid "Toggle Blocked status" -msgstr "交替拦配置" - -#: ../../mod/contacts.php:359 ../../mod/contacts.php:413 -msgid "Unignore" -msgstr "停不理" - -#: ../../mod/contacts.php:362 -msgid "Toggle Ignored status" -msgstr "交替忽视现状" - -#: ../../mod/contacts.php:366 -msgid "Unarchive" -msgstr "从存档拿来" - -#: ../../mod/contacts.php:366 -msgid "Archive" -msgstr "存档" - -#: ../../mod/contacts.php:369 -msgid "Toggle Archive status" -msgstr "交替档案现状" - -#: ../../mod/contacts.php:372 -msgid "Repair" -msgstr "维修" - -#: ../../mod/contacts.php:375 -msgid "Advanced Contact Settings" -msgstr "专家熟人设置" - -#: ../../mod/contacts.php:381 -msgid "Communications lost with this contact!" -msgstr "联系跟这个熟人断开了!" - -#: ../../mod/contacts.php:384 -msgid "Contact Editor" -msgstr "熟人编器" - -#: ../../mod/contacts.php:387 -msgid "Profile Visibility" -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显示他安全地看您的简介的时候。" - -#: ../../mod/contacts.php:389 -msgid "Contact Information / Notes" -msgstr "熟人信息/便条" - -#: ../../mod/contacts.php:390 -msgid "Edit contact notes" -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]" - -#: ../../mod/contacts.php:396 -msgid "Block/Unblock contact" -msgstr "拦/否拦熟人" - -#: ../../mod/contacts.php:397 -msgid "Ignore contact" -msgstr "忽视熟人" - -#: ../../mod/contacts.php:398 -msgid "Repair URL settings" -msgstr "维修URL设置" - -#: ../../mod/contacts.php:399 -msgid "View conversations" -msgstr "看交流" - -#: ../../mod/contacts.php:401 -msgid "Delete contact" -msgstr "删除熟人" - -#: ../../mod/contacts.php:405 -msgid "Last update:" -msgstr "上个更新:" - -#: ../../mod/contacts.php:407 -msgid "Update public posts" -msgstr "更新公开文章" - -#: ../../mod/contacts.php:409 ../../mod/admin.php:1213 -msgid "Update now" -msgstr "现在更新" - -#: ../../mod/contacts.php:416 -msgid "Currently blocked" -msgstr "现在拦的" - -#: ../../mod/contacts.php:417 -msgid "Currently ignored" -msgstr "现在不理的" - -#: ../../mod/contacts.php:418 -msgid "Currently archived" -msgstr "现在存档着" - -#: ../../mod/contacts.php:419 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "回答/喜欢关您公开文章还可见的" - -#: ../../mod/contacts.php:470 -msgid "Suggestions" -msgstr "建议" - -#: ../../mod/contacts.php:473 -msgid "Suggest potential friends" -msgstr "建议潜在朋友们" - -#: ../../mod/contacts.php:476 ../../mod/group.php:194 -msgid "All Contacts" -msgstr "所有的熟人" - -#: ../../mod/contacts.php:479 -msgid "Show all contacts" -msgstr "表示所有的熟人" - -#: ../../mod/contacts.php:482 -msgid "Unblocked" -msgstr "不拦了" - -#: ../../mod/contacts.php:485 -msgid "Only show unblocked contacts" -msgstr "只表示不拦的熟人" - -#: ../../mod/contacts.php:489 -msgid "Blocked" -msgstr "拦了" - -#: ../../mod/contacts.php:492 -msgid "Only show blocked contacts" -msgstr "只表示拦的熟人" - -#: ../../mod/contacts.php:496 -msgid "Ignored" -msgstr "忽视的" - -#: ../../mod/contacts.php:499 -msgid "Only show ignored contacts" -msgstr "只表示忽视的熟人" - -#: ../../mod/contacts.php:503 -msgid "Archived" -msgstr "在存档" - -#: ../../mod/contacts.php:506 -msgid "Only show archived contacts" -msgstr "只表示档案熟人" - -#: ../../mod/contacts.php:510 -msgid "Hidden" -msgstr "隐藏的" - -#: ../../mod/contacts.php:513 -msgid "Only show hidden contacts" -msgstr "只表示隐藏的熟人" - -#: ../../mod/contacts.php:561 -msgid "Mutual Friendship" -msgstr "共同友谊" - -#: ../../mod/contacts.php:565 -msgid "is a fan of yours" -msgstr "是您迷" - -#: ../../mod/contacts.php:569 -msgid "you are a fan of" -msgstr "你喜欢" - -#: ../../mod/contacts.php:586 ../../mod/nogroup.php:41 -msgid "Edit contact" -msgstr "编熟人" - -#: ../../mod/contacts.php:607 ../../view/theme/diabook/theme.php:89 -#: ../../include/nav.php:171 -msgid "Contacts" -msgstr "熟人" - -#: ../../mod/contacts.php:611 -msgid "Search your contacts" -msgstr "搜索您的熟人" - -#: ../../mod/contacts.php:612 ../../mod/directory.php:59 -#: ../../addon/forumdirectory/forumdirectory.php:81 -msgid "Finding: " -msgstr "找着:" - -#: ../../mod/contacts.php:613 ../../mod/directory.php:61 -#: ../../addon/forumdirectory/forumdirectory.php:83 -#: ../../include/contact_widgets.php:33 -msgid "Find" -msgstr "搜索" - -#: ../../mod/lostpass.php:17 -msgid "No valid account found." -msgstr "找不到效的账户。" - -#: ../../mod/lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "重设密码要求发布了。核对您的收件箱。" - -#: ../../mod/lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "重设密码要求被发布%s" - -#: ../../mod/lostpass.php:66 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "要求确认不了。(您可能已经提交它。)重设密码失败了。" - -#: ../../mod/lostpass.php:84 ../../boot.php:1051 -msgid "Password Reset" -msgstr "复位密码" - -#: ../../mod/lostpass.php:85 -msgid "Your password has been reset as requested." -msgstr "您的密码被重设如要求的。" - -#: ../../mod/lostpass.php:86 -msgid "Your new password is" -msgstr "你的新的密码是" - -#: ../../mod/lostpass.php:87 -msgid "Save or copy your new password - and then" -msgstr "保存或复制新密码-之后" - -#: ../../mod/lostpass.php:88 -msgid "click here to login" -msgstr "在这儿点击" - -#: ../../mod/lostpass.php:89 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "您的密码能被变化从设置页成功登记后。" - -#: ../../mod/lostpass.php:107 -#, php-format -msgid "Your password has been changed at %s" -msgstr "您密码被变化在%s" - -#: ../../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 "昵称或邮件地址:" - -#: ../../mod/lostpass.php:125 -msgid "Reset" -msgstr "复位" - -#: ../../mod/settings.php:35 -msgid "Additional features" -msgstr "附加的特点" - -#: ../../mod/settings.php:118 -msgid "Missing some important data!" -msgstr "有的重要信息失踪的!" - -#: ../../mod/settings.php:121 ../../mod/settings.php:586 -msgid "Update" -msgstr "更新" - -#: ../../mod/settings.php:227 -msgid "Failed to connect with email account using the settings provided." -msgstr "不能连接电子邮件账户用输入的设置。" - -#: ../../mod/settings.php:232 -msgid "Email settings updated." -msgstr "电子邮件设置更新了" - -#: ../../mod/settings.php:247 -msgid "Features updated" -msgstr "特点更新了" - -#: ../../mod/settings.php:307 -msgid "Passwords do not match. Password unchanged." -msgstr "密码们不相配。密码没未改变的。" - -#: ../../mod/settings.php:312 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "空的密码禁止。密码没未改变的。" - -#: ../../mod/settings.php:323 -msgid "Password changed." -msgstr "密码变化了。" - -#: ../../mod/settings.php:325 -msgid "Password update failed. Please try again." -msgstr "密码更新失败了。请再试。" - -#: ../../mod/settings.php:390 -msgid " Please use a shorter name." -msgstr "请用短一点个名。" - -#: ../../mod/settings.php:392 -msgid " Name too short." -msgstr "名字太短。" - -#: ../../mod/settings.php:398 -msgid " Not valid email." -msgstr " 电子邮件地址无效." - -#: ../../mod/settings.php:400 -msgid " Cannot change to that email." -msgstr "不能变化到这个邮件地址。" - -#: ../../mod/settings.php:454 -msgid "Private forum has no privacy permissions. Using default privacy group." -msgstr "私人评坛没有隐私批准。默认隐私组用者。" - -#: ../../mod/settings.php:458 -msgid "Private forum has no privacy permissions and no default privacy group." -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 "设置跟新了" - -#: ../../mod/settings.php:559 ../../mod/settings.php:585 -#: ../../mod/settings.php:621 -msgid "Add application" -msgstr "加入应用" - -#: ../../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)" - -#: ../../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)" - -#: ../../mod/settings.php:565 ../../mod/settings.php:591 -msgid "Redirect" -msgstr "重定向" - -#: ../../mod/settings.php:566 ../../mod/settings.php:592 -msgid "Icon url" -msgstr "图符URL" - -#: ../../mod/settings.php:577 -msgid "You can't edit this application." -msgstr "您不能编辑这个应用。" - -#: ../../mod/settings.php:620 -msgid "Connected Apps" -msgstr "连接着应用" - -#: ../../mod/settings.php:624 -msgid "Client key starts with" -msgstr "客户钥匙头字是" - -#: ../../mod/settings.php:625 -msgid "No name" -msgstr "无名" - -#: ../../mod/settings.php:626 -msgid "Remove authorization" -msgstr "撤消权能" - -#: ../../mod/settings.php:638 -msgid "No Plugin settings configured" -msgstr "没插件设置配置了" - -#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124 -#: ../../addon.old/widgets/widgets.php:123 -msgid "Plugin Settings" -msgstr "插件设置" - -#: ../../mod/settings.php:660 -msgid "Off" -msgstr "关" - -#: ../../mod/settings.php:660 -msgid "On" -msgstr "开" - -#: ../../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 "包括的支持为%s连通性是%s" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "enabled" -msgstr "能够做的" - -#: ../../mod/settings.php:681 ../../mod/settings.php:682 -msgid "disabled" -msgstr "使不能用" - -#: ../../mod/settings.php:682 -msgid "StatusNet" -msgstr "StatusNet" - -#: ../../mod/settings.php:714 -msgid "Email access is disabled on this site." -msgstr "这个网站没有邮件使用权" - -#: ../../mod/settings.php:721 -msgid "Connector Settings" -msgstr "连接器设置" - -#: ../../mod/settings.php:726 -msgid "Email/Mailbox Setup" -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 "如果您想用这股服务(可选的)跟邮件熟人交流,请指定怎么连通您的收件箱。" - -#: ../../mod/settings.php:728 -msgid "Last successful email check:" -msgstr "上个成功收件箱检查:" - -#: ../../mod/settings.php:730 -msgid "IMAP server name:" -msgstr "IMAP服务器名字:" - -#: ../../mod/settings.php:731 -msgid "IMAP port:" -msgstr "IMAP服务器端口:" - -#: ../../mod/settings.php:732 -msgid "Security:" -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 "没有" - -#: ../../mod/settings.php:733 -msgid "Email login name:" -msgstr "邮件登记名:" - -#: ../../mod/settings.php:734 -msgid "Email password:" -msgstr "邮件密码:" - -#: ../../mod/settings.php:735 -msgid "Reply-to address:" -msgstr "回答地址:" - -#: ../../mod/settings.php:736 -msgid "Send public posts to all email contacts:" -msgstr "发公开的文章给所有的邮件熟人:" - -#: ../../mod/settings.php:737 -msgid "Action after import:" -msgstr "进口后行动:" - -#: ../../mod/settings.php:737 -msgid "Mark as seen" -msgstr "标注看过" - -#: ../../mod/settings.php:737 -msgid "Move to folder" -msgstr "搬到文件夹" - -#: ../../mod/settings.php:738 -msgid "Move to folder:" -msgstr "搬到文件夹:" - -#: ../../mod/settings.php:769 ../../mod/admin.php:420 -msgid "No special theme for mobile devices" -msgstr "没专门适合手机的主题" - -#: ../../mod/settings.php:809 -msgid "Display Settings" -msgstr "表示设置" - -#: ../../mod/settings.php:815 ../../mod/settings.php:826 -msgid "Display Theme:" -msgstr "显示主题:" - -#: ../../mod/settings.php:816 -msgid "Mobile Theme:" -msgstr "手机主题:" - -#: ../../mod/settings.php:817 -msgid "Update browser every xx seconds" -msgstr "更新游览器每XX秒" - -#: ../../mod/settings.php:817 -msgid "Minimum of 10 seconds, no maximum" -msgstr "最小10秒,没有上限" - -#: ../../mod/settings.php:818 -msgid "Number of items to display per page:" -msgstr "每页表示多少项目:" - -#: ../../mod/settings.php:818 -msgid "Maximum of 100 items" -msgstr "最多100项目" - -#: ../../mod/settings.php:819 -msgid "Don't show emoticons" -msgstr "别表示请表符号" - -#: ../../mod/settings.php:895 -msgid "Normal Account Page" -msgstr "平常账户页" - -#: ../../mod/settings.php:896 -msgid "This account is a normal personal profile" -msgstr "这个帐户是正常私人简介" - -#: ../../mod/settings.php:899 -msgid "Soapbox Page" -msgstr "演讲台页" - -#: ../../mod/settings.php:900 -msgid "Automatically approve all connection/friend requests as read-only fans" -msgstr "自动批准所有联络/友谊要求当只看的迷" - -#: ../../mod/settings.php:903 -msgid "Community Forum/Celebrity Account" -msgstr "社会评坛/名人账户" - -#: ../../mod/settings.php:904 -msgid "" -"Automatically approve all connection/friend requests as read-write fans" -msgstr "自动批准所有联络/友谊要求当看写的迷" - -#: ../../mod/settings.php:907 -msgid "Automatic Friend Page" -msgstr "自动朋友页" - -#: ../../mod/settings.php:908 -msgid "Automatically approve all connection/friend requests as friends" -msgstr "自动批准所有联络/友谊要求当朋友" - -#: ../../mod/settings.php:911 -msgid "Private Forum [Experimental]" -msgstr "隐私评坛[实验性的 ]" - -#: ../../mod/settings.php:912 -msgid "Private forum - approved members only" -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这个账户登记。" - -#: ../../mod/settings.php:934 -msgid "Publish your default profile in your local site directory?" -msgstr "出版您默认简介在您当地的网站目录?" - -#: ../../mod/settings.php:940 -msgid "Publish your default profile in the global social directory?" -msgstr "出版您默认简介在综合社会目录?" - -#: ../../mod/settings.php:948 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "藏起来 发现您的熟人/朋友单不让这个简介看着看?\n " - -#: ../../mod/settings.php:952 -msgid "Hide your profile details from unknown viewers?" -msgstr "使简介信息给陌生的看着看不了?" - -#: ../../mod/settings.php:957 -msgid "Allow friends to post to your profile page?" -msgstr "允许朋友们贴文章在您的简介页?" - -#: ../../mod/settings.php:963 -msgid "Allow friends to tag your posts?" -msgstr "允许朋友们标签您的文章?" - -#: ../../mod/settings.php:969 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "允许我们建议您潜力朋友给新成员?" - -#: ../../mod/settings.php:975 -msgid "Permit unknown people to send you private mail?" -msgstr "允许生人寄给您私人邮件?" - -#: ../../mod/settings.php:983 -msgid "Profile is not published." -msgstr "简介是没出版" - -#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248 -msgid "or" -msgstr "或者" - -#: ../../mod/settings.php:991 -msgid "Your Identity Address is" -msgstr "您的同一个人地址是" - -#: ../../mod/settings.php:1002 -msgid "Automatically expire posts after this many days:" -msgstr "自动地过期文章这数天:" - -#: ../../mod/settings.php:1002 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "如果空的,文章不会过期。过期的文章被删除" - -#: ../../mod/settings.php:1003 -msgid "Advanced expiration settings" -msgstr "先进的过期设置" - -#: ../../mod/settings.php:1004 -msgid "Advanced Expiration" -msgstr "先进的过期" - -#: ../../mod/settings.php:1005 -msgid "Expire posts:" -msgstr "把文章过期:" - -#: ../../mod/settings.php:1006 -msgid "Expire personal notes:" -msgstr "把私人便条过期:" - -#: ../../mod/settings.php:1007 -msgid "Expire starred posts:" -msgstr "把星的文章过期:" - -#: ../../mod/settings.php:1008 -msgid "Expire photos:" -msgstr "把照片过期:" - -#: ../../mod/settings.php:1009 -msgid "Only expire posts by others:" -msgstr "只别人的文章过期:" - -#: ../../mod/settings.php:1035 -msgid "Account Settings" -msgstr "帐户设置" - -#: ../../mod/settings.php:1043 -msgid "Password Settings" -msgstr "密码设置" - -#: ../../mod/settings.php:1044 -msgid "New Password:" -msgstr "新密码:" - -#: ../../mod/settings.php:1045 -msgid "Confirm:" -msgstr "确认:" - -#: ../../mod/settings.php:1045 -msgid "Leave password fields blank unless changing" -msgstr "非变化留空密码栏" - -#: ../../mod/settings.php:1049 -msgid "Basic Settings" -msgstr "基础设置" - -#: ../../mod/settings.php:1050 ../../include/profile_advanced.php:15 -msgid "Full Name:" -msgstr "全名:" - -#: ../../mod/settings.php:1051 -msgid "Email Address:" -msgstr "电子邮件地址:" - -#: ../../mod/settings.php:1052 -msgid "Your Timezone:" -msgstr "您的时区:" - -#: ../../mod/settings.php:1053 -msgid "Default Post Location:" -msgstr "默认文章位置:" - -#: ../../mod/settings.php:1054 -msgid "Use Browser Location:" -msgstr "用游览器位置:" - -#: ../../mod/settings.php:1057 -msgid "Security and Privacy Settings" -msgstr "安全和隐私设置" - -#: ../../mod/settings.php:1059 -msgid "Maximum Friend Requests/Day:" -msgstr "最多友谊要求个天:" - -#: ../../mod/settings.php:1059 ../../mod/settings.php:1089 -msgid "(to prevent spam abuse)" -msgstr "(为防止垃圾邮件滥用)" - -#: ../../mod/settings.php:1060 -msgid "Default Post Permissions" -msgstr "默认文章准许" - -#: ../../mod/settings.php:1061 -msgid "(click to open/close)" -msgstr "(点击为打开/关闭)" - -#: ../../mod/settings.php:1072 -msgid "Default Private Post" -msgstr "默认私人文章" - -#: ../../mod/settings.php:1073 -msgid "Default Public Post" -msgstr "默认公开文章" - -#: ../../mod/settings.php:1077 -msgid "Default Permissions for New Posts" -msgstr "默认权利为新文章" - -#: ../../mod/settings.php:1089 -msgid "Maximum private messages per day from unknown people:" -msgstr "一天最多从生人私人邮件:" - -#: ../../mod/settings.php:1092 -msgid "Notification Settings" -msgstr "消息设置" - -#: ../../mod/settings.php:1093 -msgid "By default post a status message when:" -msgstr "默认地发现状通知如果:" - -#: ../../mod/settings.php:1094 -msgid "accepting a friend request" -msgstr "接受朋友邀请" - -#: ../../mod/settings.php:1095 -msgid "joining a forum/community" -msgstr "加入评坛/社会" - -#: ../../mod/settings.php:1096 -msgid "making an interesting profile change" -msgstr "把简介有意思地变修改" - -#: ../../mod/settings.php:1097 -msgid "Send a notification email when:" -msgstr "发一个消息要是:" - -#: ../../mod/settings.php:1098 -msgid "You receive an introduction" -msgstr "你受到一个介绍" - -#: ../../mod/settings.php:1099 -msgid "Your introductions are confirmed" -msgstr "你的介绍确认了" - -#: ../../mod/settings.php:1100 -msgid "Someone writes on your profile wall" -msgstr "某人写在你的简历墙" - -#: ../../mod/settings.php:1101 -msgid "Someone writes a followup comment" -msgstr "某人写一个后续的评论" - -#: ../../mod/settings.php:1102 -msgid "You receive a private message" -msgstr "你受到一个私消息" - -#: ../../mod/settings.php:1103 -msgid "You receive a friend suggestion" -msgstr "你受到一个朋友建议" - -#: ../../mod/settings.php:1104 -msgid "You are tagged in a post" -msgstr "你被在新闻标签" - -#: ../../mod/settings.php:1105 -msgid "You are poked/prodded/etc. in a post" -msgstr "您在文章被戳" - -#: ../../mod/settings.php:1108 -msgid "Advanced Account/Page Type Settings" -msgstr "专家账户/页种设置" - -#: ../../mod/settings.php:1109 -msgid "Change the behaviour of this account for special situations" -msgstr "把这个账户特别情况的时候行动变化" - -#: ../../mod/manage.php:106 -msgid "Manage Identities and/or Pages" -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 "交替不同同一人或社会/组页合用您的账户或给您「管理」批准" - -#: ../../mod/manage.php:108 -msgid "Select an identity to manage: " -msgstr "选择同一个人管理:" - -#: ../../mod/network.php:181 -msgid "Search Results For:" -msgstr "搜索结果为:" - -#: ../../mod/network.php:224 ../../mod/search.php:21 -msgid "Remove term" -msgstr "删除关键字" - -#: ../../mod/network.php:233 ../../mod/search.php:30 -#: ../../include/features.php:41 -msgid "Saved Searches" -msgstr "保存的搜索" - -#: ../../mod/network.php:234 ../../include/group.php:275 -msgid "add" -msgstr "添加" - -#: ../../mod/network.php:397 -msgid "Commented Order" -msgstr "评论时间顺序" - -#: ../../mod/network.php:400 -msgid "Sort by Comment Date" -msgstr "按评论日期顺序排列" - -#: ../../mod/network.php:403 -msgid "Posted Order" -msgstr "贴时间顺序" - -#: ../../mod/network.php:406 -msgid "Sort by Post Date" -msgstr "按发布日期顺序排列" - -#: ../../mod/network.php:447 -msgid "Posts that mention or involve you" -msgstr "提或关您的文章" - -#: ../../mod/network.php:453 -msgid "New" -msgstr "新" - -#: ../../mod/network.php:456 -msgid "Activity Stream - by date" -msgstr "活动河流-按日期" - -#: ../../mod/network.php:462 -msgid "Shared Links" -msgstr "共同环节" - -#: ../../mod/network.php:465 -msgid "Interesting Links" -msgstr "有意思的超链接" - -#: ../../mod/network.php:471 -msgid "Starred" -msgstr "被星" - -#: ../../mod/network.php:474 -msgid "Favourite Posts" -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成员从不安全网络。" - -#: ../../mod/network.php:549 -msgid "Private messages to this group are at risk of public disclosure." -msgstr "私人通信给这组回被公开。" - -#: ../../mod/network.php:621 -msgid "Contact: " -msgstr "熟人:" - -#: ../../mod/network.php:623 -msgid "Private messages to this person are at risk of public disclosure." -msgstr "私人通信给这个人回被公开。" - -#: ../../mod/network.php:628 -msgid "Invalid contact." -msgstr "无效熟人。" - -#: ../../mod/notes.php:44 ../../boot.php:1864 -msgid "Personal Notes" -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 "保存" - -#: ../../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 "这个网站超过一天最多账户注册。请明天再试。" - -#: ../../mod/uimport.php:64 -msgid "Import" -msgstr "进口" - -#: ../../mod/uimport.php:66 -msgid "Move account" -msgstr "把账户搬出" - -#: ../../mod/uimport.php:67 -msgid "You can import an account from another Friendica server." -msgstr "您会从别的Friendica服务器进口账户" - -#: ../../mod/uimport.php:68 -msgid "" -"You need to export your account from the old server and upload it here. We " -"will recreate your old account here with all your contacts. We will try also" -" to inform your friends that you moved here." -msgstr "您要把您老服务器账户出口才这里上传。我们重现您账户这里,包括所有您的熟人。我们再试通知您朋友们您搬到这里。" - -#: ../../mod/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熟人" - -#: ../../mod/uimport.php:70 -msgid "Account file" -msgstr "账户文件" - -#: ../../mod/uimport.php:70 -msgid "" -"To export your accont, go to \"Settings->Export your porsonal data\" and " -"select \"Export account\"" -msgstr "为出口您账户,点击「设置→出口您私人信息」和选择「出口账户」" - -#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "一天最多墙通知给%s超过了。通知没有通过 。" - -#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 -msgid "No recipient selected." -msgstr "没有选择的接受者。" - -#: ../../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 "消息发不了。" - -#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 -msgid "Message collection failure." -msgstr "通信受到错误。" - -#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 -msgid "Message sent." -msgstr "消息发了" - -#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 -msgid "No recipient." -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:" - -#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 -msgid "Send Private Message" -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回答,请核对您网站的隐私设置允许生发送人的私人邮件。" - -#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 -#: ../../mod/message.php:553 -msgid "To:" -msgstr "到:" - -#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 -#: ../../mod/message.php:555 -msgid "Subject:" -msgstr "题目:" - -#: ../../mod/wallmessage.php:151 ../../mod/message.php:329 -#: ../../mod/message.php:558 ../../mod/invite.php:134 -msgid "Your message:" -msgstr "你的消息:" - -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendica" -msgstr "Friendica欢迎你" - -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -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 "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。" - -#: ../../mod/newmember.php:14 -msgid "Getting Started" -msgstr "开始方法" - -#: ../../mod/newmember.php:18 -msgid "Friendica Walk-Through" -msgstr "Friendica游览" - -#: ../../mod/newmember.php:18 -msgid "" -"On your Quick Start 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 Settings 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 "在你的设置页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。" - -#: ../../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 "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。" - -#: ../../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 "简介" - -#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 -msgid "Upload Profile Photo" -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 "编辑您的简介" - -#: ../../mod/newmember.php:38 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。" - -#: ../../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 "指定一些公开关键字在您的默认简介描述您兴趣。我们可能找得了别人有相似兴趣和建议友谊。" - -#: ../../mod/newmember.php:44 -msgid "Connecting" -msgstr "连接着" - -#: ../../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" - -#: ../../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朋友们和交谈。" - -#: ../../mod/newmember.php:51 -msgid "" -"If this is your own personal server, installing the Facebook addon " -"may ease your transition to the free social web." -msgstr "要是这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。" - -#: ../../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 "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。" - -#: ../../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 Add New Contact dialog." -msgstr "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。" - -#: ../../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 Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "目录页让您找别人在这个网络或别的同盟的网站。找一个连接关注按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。" - -#: ../../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 "在熟人页的工具栏有一些工具为找新朋友们。我们会使人们相配按名或兴趣,和以网络关系作为提醒建议的根据。在新网站,朋友建议平常开始24小时后。" - -#: ../../mod/newmember.php:66 ../../include/group.php:270 -msgid "Groups" -msgstr "组" - -#: ../../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 "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。" - -#: ../../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 "Friendica尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。" - -#: ../../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 help pages may be consulted for detail on other program" -" features and resources." -msgstr "我们帮助页可查阅到详情关于别的编程特点和资源。" - -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "项目不可用的" - -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "找不到项目。" - -#: ../../mod/group.php:29 -msgid "Group created." -msgstr "组造成了。" - -#: ../../mod/group.php:35 -msgid "Could not create group." -msgstr "不能造成组。" - -#: ../../mod/group.php:47 ../../mod/group.php:140 -msgid "Group not found." -msgstr "组找不到。" - -#: ../../mod/group.php:60 -msgid "Group name changed." -msgstr "组名变化了。" - -#: ../../mod/group.php:72 ../../mod/profperm.php:19 ../../index.php:340 -msgid "Permission denied" -msgstr "权限不够" - -#: ../../mod/group.php:93 -msgid "Create a group of contacts/friends." -msgstr "造成组熟人/朋友们。" - -#: ../../mod/group.php:94 ../../mod/group.php:180 -msgid "Group Name: " -msgstr "组名:" - -#: ../../mod/group.php:113 -msgid "Group removed." -msgstr "组删除了。" - -#: ../../mod/group.php:115 -msgid "Unable to remove group." -msgstr "不能删除组。" - -#: ../../mod/group.php:179 -msgid "Group Editor" -msgstr "组编辑器" - -#: ../../mod/group.php:192 -msgid "Members" -msgstr "成员" - -#: ../../mod/group.php:224 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "点击熟人为添加或删除。" - -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "无限的简介标识符。" - -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "简介能见度编辑器。" - -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "能见被" - -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" -msgstr "所有熟人(跟安全地简介使用权)" - -#: ../../mod/viewcontacts.php:39 -msgid "No contacts." -msgstr "没有熟人。" - -#: ../../mod/viewcontacts.php:76 ../../include/text.php:678 -msgid "View Contacts" -msgstr "看熟人" - -#: ../../mod/register.php:91 ../../mod/regmod.php:54 -#, php-format -msgid "Registration details for %s" -msgstr "注册信息为%s" - -#: ../../mod/register.php:99 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "注册成功了。请咨询说明再您的收件箱。" - -#: ../../mod/register.php:103 -msgid "Failed to send email message. Here is the message that failed." -msgstr "发邮件失败了。这条试失败的消息。" - -#: ../../mod/register.php:108 -msgid "Your registration can not be processed." -msgstr "处理不了您的注册。" - -#: ../../mod/register.php:145 -#, php-format -msgid "Registration request at %s" -msgstr "注册要求再%s" - -#: ../../mod/register.php:154 -msgid "Your registration is pending approval by the site owner." -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和点击「注册」。" - -#: ../../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,请留空这个栏和填另些栏。" - -#: ../../mod/register.php:222 -msgid "Your OpenID (optional): " -msgstr "您的OpenID(可选的):" - -#: ../../mod/register.php:236 -msgid "Include your profile in member directory?" -msgstr "放您的简介再员目录?" - -#: ../../mod/register.php:257 -msgid "Membership on this site is by invitation only." -msgstr "会员身份在这个网站是光通过邀请。" - -#: ../../mod/register.php:258 -msgid "Your invitation ID: " -msgstr "您邀请ID:" - -#: ../../mod/register.php:261 ../../mod/admin.php:462 -msgid "Registration" -msgstr "注册" - -#: ../../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 "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@$sitename」." - -#: ../../mod/register.php:272 -msgid "Choose a nickname: " -msgstr "选择昵称:" - -#: ../../mod/register.php:275 ../../include/nav.php:108 ../../boot.php:1012 -msgid "Register" -msgstr "注册" - -#: ../../mod/dirfind.php:26 -msgid "People Search" -msgstr "搜索人物" - -#: ../../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 "照片" - -#: ../../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 "现状" - -#: ../../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" - -#: ../../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" - -#: ../../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 "项目找不到。" - -#: ../../mod/viewsrc.php:7 -msgid "Access denied." -msgstr "没有用权。" - -#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90 -#: ../../include/nav.php:78 ../../boot.php:1847 -msgid "Photos" -msgstr "照片" - -#: ../../mod/fbrowser.php:113 -msgid "Files" -msgstr "文件" - -#: ../../mod/regmod.php:63 -msgid "Account approved." -msgstr "账户批准了" - -#: ../../mod/regmod.php:100 -#, php-format -msgid "Registration revoked for %s" -msgstr "%s的登记撤销了" - -#: ../../mod/regmod.php:112 -msgid "Please login." -msgstr "清登录。" - -#: ../../mod/item.php:104 -msgid "Unable to locate original post." -msgstr "找不到当初的新闻" - -#: ../../mod/item.php:292 -msgid "Empty post discarded." -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 "墙照片" - -#: ../../mod/item.php:841 -msgid "System error. Post not saved." -msgstr "系统错误。x" - -#: ../../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" - -#: ../../mod/item.php:869 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "你不想受到这些新闻的话,请回答这个新闻给发者联系。" - -#: ../../mod/item.php:871 -#, php-format -msgid "%s posted an update." -msgstr "%s贴上一个新闻。" - -#: ../../mod/mood.php:62 ../../include/conversation.php:227 -#, php-format -msgid "%1$s is currently %2$s" -msgstr "%1$s现在是%2$s" - -#: ../../mod/mood.php:133 -msgid "Mood" -msgstr "心情" - -#: ../../mod/mood.php:134 -msgid "Set your current mood and tell your friends" -msgstr "选择现在的心情而告诉朋友们" - -#: ../../mod/profile_photo.php:44 -msgid "Image uploaded but image cropping failed." -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]失灵。" - -#: ../../mod/profile_photo.php:118 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。" - -#: ../../mod/profile_photo.php:128 -msgid "Unable to process image" -msgstr "不能处理照片" - -#: ../../mod/profile_photo.php:144 ../../mod/wall_upload.php:90 +#: ../../mod/wall_upload.php:90 ../../mod/profile_photo.php:144 #, php-format msgid "Image exceeds size limit of %d" msgstr "图像超标最大极限尺寸 %d" -#: ../../mod/profile_photo.php:242 -msgid "Upload File:" -msgstr "上传文件:" - -#: ../../mod/profile_photo.php:243 -msgid "Select a profile:" -msgstr "选择一个简介" - -#: ../../mod/profile_photo.php:245 -#: ../../addon/dav/friendica/layout.fnk.php:152 -#: ../../addon.old/dav/friendica/layout.fnk.php:152 -msgid "Upload" -msgstr "上传" - -#: ../../mod/profile_photo.php:248 -msgid "skip this step" -msgstr "略过这步" - -#: ../../mod/profile_photo.php:248 -msgid "select a photo from your photo albums" -msgstr "从您的照片册选择一片。" - -#: ../../mod/profile_photo.php:262 -msgid "Crop Image" -msgstr "修剪照片" - -#: ../../mod/profile_photo.php:263 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "请调图片剪裁为最好看。" - -#: ../../mod/profile_photo.php:265 -msgid "Done Editing" -msgstr "编完了" - -#: ../../mod/profile_photo.php:299 -msgid "Image uploaded successfully." -msgstr "照片成功地上传了" - -#: ../../mod/hcard.php:10 -msgid "No profile" -msgstr "无简介" - -#: ../../mod/removeme.php:45 ../../mod/removeme.php:48 -msgid "Remove My Account" -msgstr "删除我的账户" - -#: ../../mod/removeme.php:46 -msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "这要完全删除您的账户。这一做过,就不能恢复。" - -#: ../../mod/removeme.php:47 -msgid "Please enter your password for verification:" -msgstr "请输入密码为确认:" - -#: ../../mod/navigation.php:20 ../../include/nav.php:34 -msgid "Nothing new here" -msgstr "这里没有什么新的" - -#: ../../mod/navigation.php:24 ../../include/nav.php:38 -msgid "Clear notifications" -msgstr "清理出通知" - -#: ../../mod/message.php:9 ../../include/nav.php:159 -msgid "New Message" -msgstr "新的消息" - -#: ../../mod/message.php:67 -msgid "Unable to locate contact information." -msgstr "找不到熟人信息。" - -#: ../../mod/message.php:207 -msgid "Do you really want to delete this message?" -msgstr "您真的想删除这个通知吗?" - -#: ../../mod/message.php:227 -msgid "Message deleted." -msgstr "消息删除了。" - -#: ../../mod/message.php:258 -msgid "Conversation removed." -msgstr "交流删除了。" - -#: ../../mod/message.php:371 -msgid "No messages." -msgstr "没有消息" - -#: ../../mod/message.php:378 -#, php-format -msgid "Unknown sender - %s" -msgstr "生发送人-%s" - -#: ../../mod/message.php:381 -#, php-format -msgid "You and %s" -msgstr "您和%s" - -#: ../../mod/message.php:384 -#, php-format -msgid "%s and You" -msgstr "%s和您" - -#: ../../mod/message.php:405 ../../mod/message.php:546 -msgid "Delete conversation" -msgstr "删除交谈" - -#: ../../mod/message.php:408 -msgid "D, d M Y - g:i A" -msgstr "D, d M Y - g:i A" - -#: ../../mod/message.php:411 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d通知" - -#: ../../mod/message.php:450 -msgid "Message not available." -msgstr "通信不可用的" - -#: ../../mod/message.php:520 -msgid "Delete message" -msgstr "删除消息" - -#: ../../mod/message.php:548 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "没可用的安全交通。您可能会在发送人的简介页会回答。" - -#: ../../mod/message.php:552 -msgid "Send Reply" -msgstr "发回答" - -#: ../../mod/allfriends.php:34 -#, php-format -msgid "Friends of %s" -msgstr "%s的朋友们" - -#: ../../mod/allfriends.php:40 -msgid "No friends to display." -msgstr "没有朋友展示。" - -#: ../../mod/admin.php:55 -msgid "Theme settings updated." -msgstr "主题设置更新了。" - -#: ../../mod/admin.php:96 ../../mod/admin.php:460 -msgid "Site" -msgstr "网站" - -#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740 -msgid "Users" -msgstr "用户" - -#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864 -msgid "Plugins" -msgstr "插件" - -#: ../../mod/admin.php:99 ../../mod/admin.php:1031 ../../mod/admin.php:1067 -msgid "Themes" -msgstr "主题" - -#: ../../mod/admin.php:100 -msgid "DB updates" -msgstr "数据库更新" - -#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1154 -msgid "Logs" -msgstr "记录" - -#: ../../mod/admin.php:120 ../../include/nav.php:178 -msgid "Admin" -msgstr "管理" - -#: ../../mod/admin.php:121 -msgid "Plugin Features" -msgstr "插件特点" - -#: ../../mod/admin.php:123 -msgid "User registrations waiting for confirmation" -msgstr "用户注册等确认" - -#: ../../mod/admin.php:183 ../../mod/admin.php:698 -msgid "Normal Account" -msgstr "正常帐户" - -#: ../../mod/admin.php:184 ../../mod/admin.php:699 -msgid "Soapbox Account" -msgstr "演讲台帐户" - -#: ../../mod/admin.php:185 ../../mod/admin.php:700 -msgid "Community/Celebrity Account" -msgstr "社会/名人帐户" - -#: ../../mod/admin.php:186 ../../mod/admin.php:701 -msgid "Automatic Friend Account" -msgstr "自动朋友帐户" - -#: ../../mod/admin.php:187 -msgid "Blog Account" -msgstr "博客账户" - -#: ../../mod/admin.php:188 -msgid "Private Forum" -msgstr "私人评坛" - -#: ../../mod/admin.php:207 -msgid "Message queues" -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 "管理" - -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "总算" - -#: ../../mod/admin.php:215 -msgid "Registered users" -msgstr "注册的用户" - -#: ../../mod/admin.php:217 -msgid "Pending registrations" -msgstr "未决的注册" - -#: ../../mod/admin.php:218 -msgid "Version" -msgstr "版本" - -#: ../../mod/admin.php:220 -msgid "Active plugins" -msgstr "活跃的插件" - -#: ../../mod/admin.php:391 -msgid "Site settings updated." -msgstr "网站设置更新了。" - -#: ../../mod/admin.php:446 -msgid "Closed" -msgstr "关闭" - -#: ../../mod/admin.php:447 -msgid "Requires approval" -msgstr "要批准" - -#: ../../mod/admin.php:448 -msgid "Open" -msgstr "打开" - -#: ../../mod/admin.php:452 -msgid "No SSL policy, links will track page SSL state" -msgstr "没SSL方针,环节将追踪页SSL现状" - -#: ../../mod/admin.php:453 -msgid "Force all links to use SSL" -msgstr "让所有的环节用SSL" - -#: ../../mod/admin.php:454 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "自签证书,用SSL再光本地环节(劝止的)" - -#: ../../mod/admin.php:463 -msgid "File upload" -msgstr "文件上传" - -#: ../../mod/admin.php:464 -msgid "Policies" -msgstr "政策" - -#: ../../mod/admin.php:465 -msgid "Advanced" -msgstr "高等" - -#: ../../mod/admin.php:466 -msgid "Performance" -msgstr "性能" - -#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:744 -#: ../../addon.old/statusnet/statusnet.php:567 -msgid "Site name" -msgstr "网页名字" - -#: ../../mod/admin.php:471 -msgid "Banner/Logo" -msgstr "标题/标志" - -#: ../../mod/admin.php:472 -msgid "System language" -msgstr "系统语言" - -#: ../../mod/admin.php:473 -msgid "System theme" -msgstr "系统主题" - -#: ../../mod/admin.php:473 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "默认系统主题-会被用户简介超驰-把主题设置变化" - -#: ../../mod/admin.php:474 -msgid "Mobile system theme" -msgstr "手机系统主题" - -#: ../../mod/admin.php:474 -msgid "Theme for mobile devices" -msgstr "主题适合手机" - -#: ../../mod/admin.php:475 -msgid "SSL link policy" -msgstr "SSL环节方针" - -#: ../../mod/admin.php:475 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "决定产生的环节否则被强迫用SSL" - -#: ../../mod/admin.php:476 -msgid "'Share' element" -msgstr "「合用」要素" - -#: ../../mod/admin.php:476 -msgid "Activates the bbcode element 'share' for repeating items." -msgstr "把bbcode要素「合用」为重复项目。" - -#: ../../mod/admin.php:477 -msgid "Maximum image size" -msgstr "图片最大尺寸" - -#: ../../mod/admin.php:477 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "最多上传照相的字节。默认是零,意思是无限。" - -#: ../../mod/admin.php:478 -msgid "Maximum image length" -msgstr "最大图片大小" - -#: ../../mod/admin.php:478 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "最多像素在上传图片的长度。默认-1,意思是无限。" - -#: ../../mod/admin.php:479 -msgid "JPEG image quality" -msgstr "JPEG图片质量" - -#: ../../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,最高。" - -#: ../../mod/admin.php:481 -msgid "Register policy" -msgstr "注册政策" - -#: ../../mod/admin.php:482 -msgid "Maximum Daily Registrations" -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 "如果注册上边许可的,这个选择一天最多新用户注册会接待。如果注册关闭了,这个设置没有印象。" - -#: ../../mod/admin.php:483 -msgid "Register text" -msgstr "注册正文" - -#: ../../mod/admin.php:483 -msgid "Will be displayed prominently on the registration page." -msgstr "被显著的在注册页表示。" - -#: ../../mod/admin.php:484 -msgid "Accounts abandoned after x days" -msgstr "账户丢弃X天后" - -#: ../../mod/admin.php:484 -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 "允许的朋友域" - -#: ../../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 "逗号分隔的域名许根这个网站结友谊。通配符行。空的允许所有的域名。" - -#: ../../mod/admin.php:486 -msgid "Allowed email domains" -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 "逗号分隔的域名可接受在邮件地址为这网站的注册。通配符行。空的允许所有的域名。" - -#: ../../mod/admin.php:487 -msgid "Block public" -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 "拦公开看什么否则空开的私页在这网站除了您登录的时候以外。" - -#: ../../mod/admin.php:488 -msgid "Force publish" -msgstr "需要出版" - -#: ../../mod/admin.php:488 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "让所有这网站的的简介表明在网站目录。" - -#: ../../mod/admin.php:489 -msgid "Global directory update URL" -msgstr "综合目录更新URL" - -#: ../../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为更新综合目录。如果没有,这个应用用不了综合目录。" - -#: ../../mod/admin.php:490 -msgid "Allow threaded items" -msgstr "允许线绳项目" - -#: ../../mod/admin.php:490 -msgid "Allow infinite level threading for items on this site." -msgstr "允许无限水平线绳为这网站的项目。" - -#: ../../mod/admin.php:491 -msgid "Private posts by default for new users" -msgstr "新用户默认写私人文章" - -#: ../../mod/admin.php:491 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "默认新用户文章批准使默认隐私组,没有公开。" - -#: ../../mod/admin.php:493 -msgid "Block multiple registrations" -msgstr "拦一人多注册" - -#: ../../mod/admin.php:493 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "不允许用户注册别的账户为当页。" - -#: ../../mod/admin.php:494 -msgid "OpenID support" -msgstr "OpenID支持" - -#: ../../mod/admin.php:494 -msgid "OpenID support for registration and logins." -msgstr "OpenID支持注册和登录。" - -#: ../../mod/admin.php:495 -msgid "Fullname check" -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 "让用户注册的时候放空格姓名中间,省得垃圾注册。" - -#: ../../mod/admin.php:496 -msgid "UTF-8 Regular expressions" -msgstr "UTF-8正则表达式" - -#: ../../mod/admin.php:496 -msgid "Use PHP UTF8 regular expressions" -msgstr "用PHP UTF8正则表达式" - -#: ../../mod/admin.php:497 -msgid "Show Community Page" -msgstr "表示社会页" - -#: ../../mod/admin.php:497 -msgid "" -"Display a Community page showing all recent public postings on this site." -msgstr "表示社会页表明这网站所有最近公开的文章" - -#: ../../mod/admin.php:498 -msgid "Enable OStatus support" -msgstr "使OStatus支持可用" - -#: ../../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内,什么通知是公开的,所以偶尔隐私警告被表示。" - -#: ../../mod/admin.php:499 -msgid "Enable Diaspora support" -msgstr "使Diaspora支持能够" - -#: ../../mod/admin.php:499 -msgid "Provide built-in Diaspora network compatibility." -msgstr "提供内装Diaspora网络兼容。" - -#: ../../mod/admin.php:500 -msgid "Only allow Friendica contacts" -msgstr "只许Friendica熟人" - -#: ../../mod/admin.php:500 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "所有的熟人要用Friendica协议 。别的内装的沟通协议都不能用。" - -#: ../../mod/admin.php:501 -msgid "Verify SSL" -msgstr "证实" - -#: ../../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网站交流。" - -#: ../../mod/admin.php:502 -msgid "Proxy user" -msgstr "代理用户" - -#: ../../mod/admin.php:503 -msgid "Proxy URL" -msgstr "代理URL" - -#: ../../mod/admin.php:504 -msgid "Network timeout" -msgstr "网络超时" - -#: ../../mod/admin.php:504 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "输入秒数。输入零为无限(不推荐的)。" - -#: ../../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在大专门服务器。" - -#: ../../mod/admin.php:506 -msgid "Poll interval" -msgstr "检查时间" - -#: ../../mod/admin.php:506 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "把背景检查行程耽误这数秒为减少系统负荷。如果是0,用发布时间。" - -#: ../../mod/admin.php:507 -msgid "Maximum Load Average" -msgstr "最大负荷平均" - -#: ../../mod/admin.php:507 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "系统负荷平均以上转播和检查行程会被耽误-默认50。" - -#: ../../mod/admin.php:509 -msgid "Use MySQL full text engine" -msgstr "用MySQL全正文机车" - -#: ../../mod/admin.php:509 -msgid "" -"Activates the full text engine. Speeds up search - but can only search for " -"four and more characters." -msgstr "使全正文机车可用。把搜索催-可是只能搜索4字以上" - -#: ../../mod/admin.php:510 -msgid "Path to item cache" -msgstr "路线到项目缓存" - -#: ../../mod/admin.php:511 -msgid "Cache duration in seconds" -msgstr "缓存时间秒" - -#: ../../mod/admin.php:511 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day)." -msgstr "缓存文件应该保存多久?默认是86400秒(一天)。" - -#: ../../mod/admin.php:512 -msgid "Path for lock file" -msgstr "路线到锁文件" - -#: ../../mod/admin.php:513 -msgid "Temp path" -msgstr "临时文件路线" - -#: ../../mod/admin.php:514 -msgid "Base path to installation" -msgstr "基础安装路线" - -#: ../../mod/admin.php:532 -msgid "Update has been marked successful" -msgstr "更新当成功标签了" - -#: ../../mod/admin.php:542 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "把%s实行没通过了。看系统记录。" - -#: ../../mod/admin.php:545 -#, php-format -msgid "Update %s was successfully applied." -msgstr "把%s更新成功地实行。" - -#: ../../mod/admin.php:549 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "%s更新没回答现状。不知道是否成功。" - -#: ../../mod/admin.php:552 -#, php-format -msgid "Update function %s could not be found." -msgstr "找不到更新功能%s。" - -#: ../../mod/admin.php:567 -msgid "No failed updates." -msgstr "没有不通过地更新。" - -#: ../../mod/admin.php:571 -msgid "Failed Updates" -msgstr "没通过的更新" - -#: ../../mod/admin.php:572 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "这个不包括1139号更新之前,它们没回答装线。" - -#: ../../mod/admin.php:573 -msgid "Mark success (if update was manually applied)" -msgstr "标注成功(如果手动地把更新实行了)" - -#: ../../mod/admin.php:574 -msgid "Attempt to execute this update step automatically" -msgstr "试图自动地把这步更新实行" - -#: ../../mod/admin.php:599 -#, php-format -msgid "%s user blocked/unblocked" -msgid_plural "%s users blocked/unblocked" -msgstr[0] "%s用户拦/不拦了" - -#: ../../mod/admin.php:606 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s用户删除了" - -#: ../../mod/admin.php:645 -#, php-format -msgid "User '%s' deleted" -msgstr "用户「%s」删除了" - -#: ../../mod/admin.php:653 -#, php-format -msgid "User '%s' unblocked" -msgstr "用户「%s」无拦了" - -#: ../../mod/admin.php:653 -#, php-format -msgid "User '%s' blocked" -msgstr "用户「%s」拦了" - -#: ../../mod/admin.php:729 -msgid "select all" -msgstr "都选" - -#: ../../mod/admin.php:730 -msgid "User registrations waiting for confirm" -msgstr "用户注册等待确认" - -#: ../../mod/admin.php:731 -msgid "Request date" -msgstr "要求日期" - -#: ../../mod/admin.php:731 ../../mod/admin.php:741 -#: ../../include/contact_selectors.php:79 -#: ../../include/contact_selectors.php:86 -msgid "Email" -msgstr "电子邮件" - -#: ../../mod/admin.php:732 -msgid "No registrations." -msgstr "没有注册。" - -#: ../../mod/admin.php:734 -msgid "Deny" -msgstr "否定" - -#: ../../mod/admin.php:738 -msgid "Site admin" -msgstr "网站管理员" - -#: ../../mod/admin.php:741 -msgid "Register date" -msgstr "注册日期" - -#: ../../mod/admin.php:741 -msgid "Last login" -msgstr "上次登录" - -#: ../../mod/admin.php:741 -msgid "Last item" -msgstr "上项目" - -#: ../../mod/admin.php:741 -msgid "Account" -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您肯定吗?" - -#: ../../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您肯定吗?" - -#: ../../mod/admin.php:785 -#, php-format -msgid "Plugin %s disabled." -msgstr "使插件%s不能用。" - -#: ../../mod/admin.php:789 -#, php-format -msgid "Plugin %s enabled." -msgstr "使插件%s能用。" - -#: ../../mod/admin.php:799 ../../mod/admin.php:1001 -msgid "Disable" -msgstr "使不能用" - -#: ../../mod/admin.php:801 ../../mod/admin.php:1003 -msgid "Enable" -msgstr "使能用" - -#: ../../mod/admin.php:823 ../../mod/admin.php:1032 -msgid "Toggle" -msgstr "肘节" - -#: ../../mod/admin.php:831 ../../mod/admin.php:1042 -msgid "Author: " -msgstr "作家:" - -#: ../../mod/admin.php:832 ../../mod/admin.php:1043 -msgid "Maintainer: " -msgstr "保持员:" - -#: ../../mod/admin.php:961 -msgid "No themes found." -msgstr "找不到主题。" - -#: ../../mod/admin.php:1024 -msgid "Screenshot" -msgstr "截图" - -#: ../../mod/admin.php:1072 -msgid "[Experimental]" -msgstr "[试验]" - -#: ../../mod/admin.php:1073 -msgid "[Unsupported]" -msgstr "[没支持]" - -#: ../../mod/admin.php:1100 -msgid "Log settings updated." -msgstr "日志设置更新了。" - -#: ../../mod/admin.php:1156 -msgid "Clear" -msgstr "清理出" - -#: ../../mod/admin.php:1162 -msgid "Debugging" -msgstr "调试" - -#: ../../mod/admin.php:1163 -msgid "Log file" -msgstr "记录文件" - -#: ../../mod/admin.php:1163 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "必要被网页服务器可写的。相对Friendica主文件夹。" - -#: ../../mod/admin.php:1164 -msgid "Log level" -msgstr "记录水平" - -#: ../../mod/admin.php:1214 -msgid "Close" -msgstr "关闭" - -#: ../../mod/admin.php:1220 -msgid "FTP Host" -msgstr "FTP主机" - -#: ../../mod/admin.php:1221 -msgid "FTP Path" -msgstr "FTP目录" - -#: ../../mod/admin.php:1222 -msgid "FTP User" -msgstr "FTP用户" - -#: ../../mod/admin.php:1223 -msgid "FTP Password" -msgstr "FTP密码" - -#: ../../mod/profile.php:21 ../../boot.php:1225 -msgid "Requested profile is not available." -msgstr "要求的简介联系不上的。" - -#: ../../mod/profile.php:155 ../../mod/display.php:99 -msgid "Access to this profile has been restricted." -msgstr "使用权这个简介被限制了." - -#: ../../mod/profile.php:180 -msgid "Tips for New Members" -msgstr "提示对新成员" - -#: ../../mod/ping.php:238 -msgid "{0} wants to be your friend" -msgstr "{0}想成为您的朋友" - -#: ../../mod/ping.php:243 -msgid "{0} sent you a message" -msgstr "{0}发给您一个通信" - -#: ../../mod/ping.php:248 -msgid "{0} requested registration" -msgstr "{0}要求注册" - -#: ../../mod/ping.php:254 -#, php-format -msgid "{0} commented %s's post" -msgstr "{0}对%s的文章发表意见" - -#: ../../mod/ping.php:259 -#, php-format -msgid "{0} liked %s's post" -msgstr "{0}喜欢%s的文章" - -#: ../../mod/ping.php:264 -#, php-format -msgid "{0} disliked %s's post" -msgstr "{0}不喜欢%s的文章" - -#: ../../mod/ping.php:269 -#, php-format -msgid "{0} is now friends with %s" -msgstr "{0}成为%s的朋友" - -#: ../../mod/ping.php:274 -msgid "{0} posted" -msgstr "{0}陈列" - -#: ../../mod/ping.php:279 -#, php-format -msgid "{0} tagged %s's post with #%s" -msgstr "{0}用#%s标签%s的文章" - -#: ../../mod/ping.php:285 -msgid "{0} mentioned you in a post" -msgstr "{0}提到您在文章" - -#: ../../mod/nogroup.php:59 -msgid "Contacts who are not members of a group" -msgstr "没当成员的熟人" - -#: ../../mod/openid.php:24 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID协议错误。没ID还。 " - -#: ../../mod/openid.php:53 -msgid "" -"Account not found and OpenID registration is not permitted on this site." -msgstr "找不到账户和OpenID注册不允许。" - -#: ../../mod/openid.php:93 ../../include/auth.php:112 -#: ../../include/auth.php:175 -msgid "Login failed." -msgstr "登记失败了。" - -#: ../../mod/follow.php:27 -msgid "Contact added" -msgstr "熟人添了" - -#: ../../mod/common.php:42 -msgid "Common Friends" -msgstr "普通朋友们" - -#: ../../mod/common.php:78 -msgid "No contacts in common." -msgstr "没有共同熟人。" - -#: ../../mod/subthread.php:103 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s关注着%2$s的%3$s" - -#: ../../mod/share.php:44 -msgid "link" -msgstr "链接" - -#: ../../mod/display.php:177 -msgid "Item has been removed." -msgstr "项目被删除了。" - -#: ../../mod/apps.php:4 -msgid "Applications" -msgstr "应用" - -#: ../../mod/apps.php:7 -msgid "No installed applications." -msgstr "没有安装的应用" - -#: ../../mod/search.php:99 ../../include/text.php:738 -#: ../../include/text.php:739 ../../include/nav.php:118 -msgid "Search" -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 "找不到简介。" - -#: ../../mod/profiles.php:37 -msgid "Profile deleted." -msgstr "简介删除了。" - -#: ../../mod/profiles.php:55 ../../mod/profiles.php:89 -msgid "Profile-" -msgstr "简介-" - -#: ../../mod/profiles.php:74 ../../mod/profiles.php:117 -msgid "New profile created." -msgstr "创造新的简介" - -#: ../../mod/profiles.php:95 -msgid "Profile unavailable to clone." -msgstr "简介不可用为复制。" - -#: ../../mod/profiles.php:170 -msgid "Profile Name is required." -msgstr "必要简介名" - -#: ../../mod/profiles.php:317 -msgid "Marital Status" -msgstr "婚姻状况 " - -#: ../../mod/profiles.php:321 -msgid "Romantic Partner" -msgstr "情人" - -#: ../../mod/profiles.php:325 -msgid "Likes" -msgstr "喜欢" - -#: ../../mod/profiles.php:329 -msgid "Dislikes" -msgstr "不喜欢" - -#: ../../mod/profiles.php:333 -msgid "Work/Employment" -msgstr "工作" - -#: ../../mod/profiles.php:336 -msgid "Religion" -msgstr "宗教" - -#: ../../mod/profiles.php:340 -msgid "Political Views" -msgstr "政治观念" - -#: ../../mod/profiles.php:344 -msgid "Gender" -msgstr "性别" - -#: ../../mod/profiles.php:348 -msgid "Sexual Preference" -msgstr "性取向" - -#: ../../mod/profiles.php:352 -msgid "Homepage" -msgstr "主页" - -#: ../../mod/profiles.php:356 -msgid "Interests" -msgstr "兴趣" - -#: ../../mod/profiles.php:360 -msgid "Address" -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 "位置" - -#: ../../mod/profiles.php:450 -msgid "Profile updated." -msgstr "简介更新了。" - -#: ../../mod/profiles.php:517 -msgid " and " -msgstr "和" - -#: ../../mod/profiles.php:525 -msgid "public profile" -msgstr "公开简介" - -#: ../../mod/profiles.php:528 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s把%2$s变化成“%3$s”" - -#: ../../mod/profiles.php:529 -#, php-format -msgid " - Visit %1$s's %2$s" -msgstr " - 看 %1$s的%2$s" - -#: ../../mod/profiles.php:532 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s有更新的%2$s,修改%3$s." - -#: ../../mod/profiles.php:605 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "藏起来发现您的熟人/朋友单不让这个简介看着看?" - -#: ../../mod/profiles.php:625 -msgid "Edit Profile Details" -msgstr "剪辑简介消息" - -#: ../../mod/profiles.php:627 -msgid "Change Profile Photo" -msgstr "改变简介照片" - -#: ../../mod/profiles.php:628 -msgid "View this profile" -msgstr "看这个简介" - -#: ../../mod/profiles.php:629 -msgid "Create a new profile using these settings" -msgstr "造成新的简介用这些设置" - -#: ../../mod/profiles.php:630 -msgid "Clone this profile" -msgstr "复制这个简介" - -#: ../../mod/profiles.php:631 -msgid "Delete this profile" -msgstr "删除这个简介" - -#: ../../mod/profiles.php:632 -msgid "Profile Name:" -msgstr "简介名:" - -#: ../../mod/profiles.php:633 -msgid "Your Full Name:" -msgstr "你的全名:" - -#: ../../mod/profiles.php:634 -msgid "Title/Description:" -msgstr "标题/描述:" - -#: ../../mod/profiles.php:635 -msgid "Your Gender:" -msgstr "你的性:" - -#: ../../mod/profiles.php:636 -#, php-format -msgid "Birthday (%s):" -msgstr "生日(%s):" - -#: ../../mod/profiles.php:637 -msgid "Street Address:" -msgstr "地址:" - -#: ../../mod/profiles.php:638 -msgid "Locality/City:" -msgstr "现场/城市:" - -#: ../../mod/profiles.php:639 -msgid "Postal/Zip Code:" -msgstr "邮政编码:" - -#: ../../mod/profiles.php:640 -msgid "Country:" -msgstr "国家:" - -#: ../../mod/profiles.php:641 -msgid "Region/State:" -msgstr "区域/省" - -#: ../../mod/profiles.php:642 -msgid " Marital Status:" -msgstr "婚姻状况:" - -#: ../../mod/profiles.php:643 -msgid "Who: (if applicable)" -msgstr "谁:(要是使用)" - -#: ../../mod/profiles.php:644 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "比如:limou,李某,limou@example。com" - -#: ../../mod/profiles.php:645 -msgid "Since [date]:" -msgstr "追溯[日期]:" - -#: ../../mod/profiles.php:646 ../../include/profile_advanced.php:46 -msgid "Sexual Preference:" -msgstr "性取向" - -#: ../../mod/profiles.php:647 -msgid "Homepage URL:" -msgstr "主页URL:" - -#: ../../mod/profiles.php:648 ../../include/profile_advanced.php:50 -msgid "Hometown:" -msgstr "故乡:" - -#: ../../mod/profiles.php:649 ../../include/profile_advanced.php:54 -msgid "Political Views:" -msgstr "政治观念:" - -#: ../../mod/profiles.php:650 -msgid "Religious Views:" -msgstr " 宗教信仰 :" - -#: ../../mod/profiles.php:651 -msgid "Public Keywords:" -msgstr "公开关键字 :" - -#: ../../mod/profiles.php:652 -msgid "Private Keywords:" -msgstr "私人关键字" - -#: ../../mod/profiles.php:653 ../../include/profile_advanced.php:62 -msgid "Likes:" -msgstr "喜欢:" - -#: ../../mod/profiles.php:654 ../../include/profile_advanced.php:64 -msgid "Dislikes:" -msgstr "不喜欢:" - -#: ../../mod/profiles.php:655 -msgid "Example: fishing photography software" -msgstr "例如:钓鱼 照片 软件" - -#: ../../mod/profiles.php:656 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(用于建议可能的朋友们,会被别人看)" - -#: ../../mod/profiles.php:657 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(用于搜索简介,没有给别人看)" - -#: ../../mod/profiles.php:658 -msgid "Tell us about yourself..." -msgstr "给我们自我介绍..." - -#: ../../mod/profiles.php:659 -msgid "Hobbies/Interests" -msgstr "爱好/兴趣" - -#: ../../mod/profiles.php:660 -msgid "Contact information and Social Networks" -msgstr "熟人信息和社会化网络" - -#: ../../mod/profiles.php:661 -msgid "Musical interests" -msgstr "音乐兴趣" - -#: ../../mod/profiles.php:662 -msgid "Books, literature" -msgstr "书,文学" - -#: ../../mod/profiles.php:663 -msgid "Television" -msgstr "电视" - -#: ../../mod/profiles.php:664 -msgid "Film/dance/culture/entertainment" -msgstr "电影/跳舞/文化/娱乐" - -#: ../../mod/profiles.php:665 -msgid "Love/romance" -msgstr "爱情/浪漫" - -#: ../../mod/profiles.php:666 -msgid "Work/employment" -msgstr "工作" - -#: ../../mod/profiles.php:667 -msgid "School/education" -msgstr "学院/教育" - -#: ../../mod/profiles.php:672 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." -msgstr "这是你的公开的简介。
可能被所有的因特网用的看到。" - -#: ../../mod/profiles.php:682 ../../mod/directory.php:111 -#: ../../addon/forumdirectory/forumdirectory.php:133 -msgid "Age: " -msgstr "年纪:" - -#: ../../mod/profiles.php:721 -msgid "Edit/Manage Profiles" -msgstr "编辑/管理简介" - -#: ../../mod/profiles.php:722 ../../boot.php:1345 -msgid "Change profile photo" -msgstr "换简介照片" - -#: ../../mod/profiles.php:723 ../../boot.php:1346 -msgid "Create New Profile" -msgstr "创造新的简介" - -#: ../../mod/profiles.php:734 ../../boot.php:1356 -msgid "Profile Image" -msgstr "简介图像" - -#: ../../mod/profiles.php:736 ../../boot.php:1359 -msgid "visible to everybody" -msgstr "给打假可见的" - -#: ../../mod/profiles.php:737 ../../boot.php:1360 -msgid "Edit visibility" -msgstr "修改能见度" - -#: ../../mod/filer.php:30 ../../include/conversation.php:944 -#: ../../include/conversation.php:962 -msgid "Save to Folder:" -msgstr "保存再文件夹:" - -#: ../../mod/filer.php:30 -msgid "- select -" -msgstr "-选择-" - -#: ../../mod/tagger.php:95 ../../include/conversation.php:266 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s把%4$s标签%2$s的%3$s" - -#: ../../mod/delegate.php:95 -msgid "No potential page delegates located." -msgstr "找不到可能代表页人。" - -#: ../../mod/delegate.php:121 ../../include/nav.php:165 -msgid "Delegate Page Management" -msgstr "页代表管理" - -#: ../../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 "代表会管理所有的方面这个账户/页除了基础账户配置以外。请别代表您私人账户给您没完全信的人。" - -#: ../../mod/delegate.php:124 -msgid "Existing Page Managers" -msgstr "目前页管理员" - -#: ../../mod/delegate.php:126 -msgid "Existing Page Delegates" -msgstr "目前页代表" - -#: ../../mod/delegate.php:128 -msgid "Potential Delegates" -msgstr "潜力的代表" - -#: ../../mod/delegate.php:131 -msgid "Add" -msgstr "加" - -#: ../../mod/delegate.php:132 -msgid "No entries." -msgstr "没有项目。" - -#: ../../mod/babel.php:17 -msgid "Source (bbcode) text:" -msgstr "源代码(bbcode)正文" - -#: ../../mod/babel.php:23 -msgid "Source (Diaspora) text to convert to BBcode:" -msgstr "源代(Diaspora)正文要翻译成BBCode:" - -#: ../../mod/babel.php:31 -msgid "Source input: " -msgstr "源代码输入:" - -#: ../../mod/babel.php:35 -msgid "bb2html (raw HTML): " -msgstr "bb2html(生HTML): " - -#: ../../mod/babel.php:39 -msgid "bb2html: " -msgstr "bb2html:" - -#: ../../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:" - -#: ../../mod/babel.php:59 -msgid "bb2md2html2bb: " -msgstr "bb2md2html2bb:" - -#: ../../mod/babel.php:69 -msgid "Source input (Diaspora format): " -msgstr "源代输入(Diaspora形式):" - -#: ../../mod/babel.php:74 -msgid "diaspora2bb: " -msgstr "diaspora2bb: " - -#: ../../mod/suggest.php:27 -msgid "Do you really want to delete this suggestion?" -msgstr "您真的想删除这个建议吗?" - -#: ../../mod/suggest.php:66 ../../view/theme/diabook/theme.php:520 -#: ../../include/contact_widgets.php:34 -msgid "Friend Suggestions" -msgstr "友谊建议" - -#: ../../mod/suggest.php:72 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "没有建议。如果这是新网站,请24小时后再试。" - -#: ../../mod/suggest.php:90 -msgid "Ignore/Hide" -msgstr "不理/隐藏" - -#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71 -#: ../../view/theme/diabook/theme.php:518 -msgid "Global Directory" -msgstr "综合目录" - -#: ../../mod/directory.php:57 ../../addon/forumdirectory/forumdirectory.php:79 -msgid "Find on this site" -msgstr "找在这网站" - -#: ../../mod/directory.php:60 ../../addon/forumdirectory/forumdirectory.php:82 -msgid "Site Directory" -msgstr "网站目录" - -#: ../../mod/directory.php:114 -#: ../../addon/forumdirectory/forumdirectory.php:136 -msgid "Gender: " -msgstr "性别:" - -#: ../../mod/directory.php:136 -#: ../../addon/forumdirectory/forumdirectory.php:158 -#: ../../include/profile_advanced.php:17 ../../boot.php:1381 -msgid "Gender:" -msgstr "性别:" - -#: ../../mod/directory.php:138 -#: ../../addon/forumdirectory/forumdirectory.php:160 -#: ../../include/profile_advanced.php:37 ../../boot.php:1384 -msgid "Status:" -msgstr "现状:" - -#: ../../mod/directory.php:140 -#: ../../addon/forumdirectory/forumdirectory.php:162 -#: ../../include/profile_advanced.php:48 ../../boot.php:1386 -msgid "Homepage:" -msgstr "主页:" - -#: ../../mod/directory.php:142 -#: ../../addon/forumdirectory/forumdirectory.php:164 -#: ../../include/profile_advanced.php:58 -msgid "About:" -msgstr "关于:" - -#: ../../mod/directory.php:187 -#: ../../addon/forumdirectory/forumdirectory.php:201 -msgid "No entries (some entries may be hidden)." -msgstr "没有文章(有的文章会被隐藏)。" +#: ../../mod/wall_upload.php:112 ../../mod/photos.php:801 +#: ../../mod/profile_photo.php:153 +msgid "Unable to process image." +msgstr "处理不了图像." + +#: ../../mod/wall_upload.php:138 ../../mod/photos.php:828 +#: ../../mod/profile_photo.php:301 +msgid "Image upload failed." +msgstr "图像上载失败了." #: ../../mod/invite.php:27 msgid "Total invitation limit exceeded." @@ -4982,6 +8601,11 @@ msgstr "发请柬" msgid "Enter email addresses, one per line:" msgstr "输入电子邮件地址,一行一个:" +#: ../../mod/invite.php:134 ../../mod/wallmessage.php:151 +#: ../../mod/message.php:329 ../../mod/message.php:558 +msgid "Your message:" +msgstr "你的消息:" + #: ../../mod/invite.php:135 msgid "" "You are cordially invited to join me and other close friends on Friendica - " @@ -5003,2888 +8627,1049 @@ msgid "" "important, please visit http://friendica.com" msgstr "看别的信息由于Friendica工程和怎么我们看重,请看http://friendica.com" -#: ../../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 "遥网站的回答明白不了。" - -#: ../../mod/dfrn_confirm.php:246 -msgid "Unexpected response from remote site: " -msgstr "居然回答从遥网站:" - -#: ../../mod/dfrn_confirm.php:254 -msgid "Confirmation completed successfully." -msgstr "确认成功完成。" - -#: ../../mod/dfrn_confirm.php:256 ../../mod/dfrn_confirm.php:270 -#: ../../mod/dfrn_confirm.php:277 -msgid "Remote site reported: " -msgstr "遥网站报案:" - -#: ../../mod/dfrn_confirm.php:268 -msgid "Temporary failure. Please wait and try again." -msgstr "临时失败。请等一会,再试。" - -#: ../../mod/dfrn_confirm.php:275 -msgid "Introduction failed or was revoked." -msgstr "介绍失败或被吊销。" - -#: ../../mod/dfrn_confirm.php:420 -msgid "Unable to set contact photo." -msgstr "不会指定熟人照片。" - -#: ../../mod/dfrn_confirm.php:477 ../../include/diaspora.php:621 -#: ../../include/conversation.php:172 +#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 #, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s是成为%2$s的朋友" +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "一天最多墙通知给%s超过了。通知没有通过 。" -#: ../../mod/dfrn_confirm.php:562 -#, php-format -msgid "No user record found for '%s' " -msgstr "找不到「%s」的用户记录" +#: ../../mod/wallmessage.php:56 ../../mod/message.php:63 +msgid "No recipient selected." +msgstr "没有选择的接受者。" -#: ../../mod/dfrn_confirm.php:572 -msgid "Our site encryption key is apparently messed up." -msgstr "看起来我们的加密钥匙失灵了。" +#: ../../mod/wallmessage.php:59 +msgid "Unable to check your home location." +msgstr "核对不了您的主页。" -#: ../../mod/dfrn_confirm.php:583 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "空的URL供应,或URL解不了码。" +#: ../../mod/wallmessage.php:62 ../../mod/message.php:70 +msgid "Message could not be sent." +msgstr "消息发不了。" -#: ../../mod/dfrn_confirm.php:604 -msgid "Contact record was not found for you on our site." -msgstr "熟人记录在我们的网站找不了。" +#: ../../mod/wallmessage.php:65 ../../mod/message.php:73 +msgid "Message collection failure." +msgstr "通信受到错误。" -#: ../../mod/dfrn_confirm.php:618 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "没有网站公开钥匙在熟人记录在URL%s。" +#: ../../mod/wallmessage.php:68 ../../mod/message.php:76 +msgid "Message sent." +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 "身份证明由您的系统是在我们的重做。你再试应该运行。" +#: ../../mod/wallmessage.php:86 ../../mod/wallmessage.php:95 +msgid "No recipient." +msgstr "没有接受者。" -#: ../../mod/dfrn_confirm.php:649 -msgid "Unable to set your contact credentials on our system." -msgstr "不能创作您的熟人证件在我们的系统。" +#: ../../mod/wallmessage.php:142 ../../mod/message.php:319 +msgid "Send Private Message" +msgstr "发私人的通信" -#: ../../mod/dfrn_confirm.php:716 -msgid "Unable to update your contact profile details on our system" -msgstr "不能更新您的熟人简介消息在我们的系统" - -#: ../../mod/dfrn_confirm.php:751 -#, php-format -msgid "Connection accepted at %s" -msgstr "联络接受了在%s" - -#: ../../mod/dfrn_confirm.php:800 -#, php-format -msgid "%1$s has joined %2$s" -msgstr "%1$s加入%2$s了" - -#: ../../addon/fromgplus/fromgplus.php:33 -#: ../../addon.old/fromgplus/fromgplus.php:29 -msgid "Google+ Import Settings" -msgstr "Google+进口设置" - -#: ../../addon/fromgplus/fromgplus.php:36 -#: ../../addon.old/fromgplus/fromgplus.php:32 -msgid "Enable Google+ Import" -msgstr "使Google+进口可用" - -#: ../../addon/fromgplus/fromgplus.php:39 -#: ../../addon.old/fromgplus/fromgplus.php:35 -msgid "Google Account ID" -msgstr "Google+用户名" - -#: ../../addon/fromgplus/fromgplus.php:59 -#: ../../addon.old/fromgplus/fromgplus.php:55 -msgid "Google+ Import Settings saved." -msgstr "把Google+进口设置保存了" - -#: ../../addon/facebook/facebook.php:525 -#: ../../addon.old/facebook/facebook.php:523 -msgid "Facebook disabled" -msgstr "Facebook废" - -#: ../../addon/facebook/facebook.php:530 -#: ../../addon.old/facebook/facebook.php:528 -msgid "Updating contacts" -msgstr "正才更新熟人" - -#: ../../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钥匙失踪的。" - -#: ../../addon/facebook/facebook.php:560 -#: ../../addon.old/facebook/facebook.php:558 -msgid "Facebook Connect" -msgstr "Facebook联络" - -#: ../../addon/facebook/facebook.php:566 -#: ../../addon.old/facebook/facebook.php:564 -msgid "Install Facebook connector for this account." -msgstr "安装Facebook连接器为这个账户。" - -#: ../../addon/facebook/facebook.php:573 -#: ../../addon.old/facebook/facebook.php:571 -msgid "Remove Facebook connector" -msgstr "删除Facebook连接器" - -#: ../../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密码变化了]" - -#: ../../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" - -#: ../../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朋友环节不能用。这下的设置没有印象。" - -#: ../../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朋友环节不能用。假如那样的话您不会再使可用的。" - -#: ../../addon/facebook/facebook.php:598 -#: ../../addon.old/facebook/facebook.php:596 -msgid "Link all your Facebook friends and conversations on this website" -msgstr "连接您所有的Facebook朋友们和交流在这个网站" - -#: ../../addon/facebook/facebook.php:600 -#: ../../addon.old/facebook/facebook.php:598 -msgid "" -"Facebook conversations consist of your profile wall and your friend" -" stream." -msgstr "Facebook交流由您的简介墙和您朋友的溪流组成。 " - -#: ../../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朋友溪流是只您可见的。" - -#: ../../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简介墙的隐私。" - -#: ../../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简介墙交流是只您可见的。" - -#: ../../addon/facebook/facebook.php:611 -#: ../../addon.old/facebook/facebook.php:609 -msgid "Do not import your Facebook profile wall conversations" -msgstr "别进口您Facebook简介墙交流" - -#: ../../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简介墙被在您这网站的简介墙融合和您的这网站隐私设置决定谁能看那些交流。" - -#: ../../addon/facebook/facebook.php:618 -#: ../../addon.old/facebook/facebook.php:616 -msgid "Comma separated applications to ignore" -msgstr "逗号分开的应用要不理" - -#: ../../addon/facebook/facebook.php:702 -#: ../../addon.old/facebook/facebook.php:700 -msgid "Problems with Facebook Real-Time Updates" -msgstr "Facebook实时更新有问题" - -#: ../../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 "管理员" - -#: ../../addon/facebook/facebook.php:731 -#: ../../addon.old/facebook/facebook.php:729 -msgid "Facebook Connector Settings" -msgstr "Facebook连接器设置" - -#: ../../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密码" - -#: ../../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.

" -msgstr "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。

" - -#: ../../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密码显得不对(取回不了应用代金券)。" - -#: ../../addon/facebook/facebook.php:763 -#: ../../addon.old/facebook/facebook.php:761 -msgid "The given API Key seems to work correctly." -msgstr "输入的API密码显得对地运行。" - -#: ../../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 "API钥匙的正确性发现不了。什么奇怪的进行" - -#: ../../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" - -#: ../../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 "应用密码" - -#: ../../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分钟)" - -#: ../../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评论错过了,代价增添系统工作量)" - -#: ../../addon/facebook/facebook.php:775 -#: ../../addon.old/facebook/facebook.php:773 -msgid "Real-Time Updates" -msgstr "实时更新" - -#: ../../addon/facebook/facebook.php:779 -#: ../../addon.old/facebook/facebook.php:777 -msgid "Real-Time Updates are activated." -msgstr "实时更新使活动" - -#: ../../addon/facebook/facebook.php:780 -#: ../../addon.old/facebook/facebook.php:778 -msgid "Deactivate Real-Time Updates" -msgstr "使实时更新不活动" - -#: ../../addon/facebook/facebook.php:782 -#: ../../addon.old/facebook/facebook.php:780 -msgid "Real-Time Updates not activated." -msgstr "实时更新使不活动" - -#: ../../addon/facebook/facebook.php:782 -#: ../../addon.old/facebook/facebook.php:780 -msgid "Activate Real-Time Updates" -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 "新的设置保存了。" - -#: ../../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" - -#: ../../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取消由于多网络准许矛盾。" - -#: ../../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" - -#: ../../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发送失败了。排队着待再试。" - -#: ../../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联系成无效的。请再认证。" - -#: ../../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联系成无效的" - -#: ../../addon/facebook/facebook.php:1226 ../../addon/fbpost/fbpost.php:845 -#: ../../addon.old/facebook/facebook.php:1224 -#: ../../addon.old/fbpost/fbpost.php:685 +#: ../../mod/wallmessage.php:143 #, 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。" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "如果您想%s回答,请核对您网站的隐私设置允许生发送人的私人邮件。" -#: ../../addon/snautofollow/snautofollow.php:32 -#: ../../addon.old/snautofollow/snautofollow.php:32 -msgid "StatusNet AutoFollow settings updated." -msgstr "StatusNet自动关注设置更新了。" +#: ../../mod/wallmessage.php:144 ../../mod/message.php:320 +#: ../../mod/message.php:553 +msgid "To:" +msgstr "到:" -#: ../../addon/snautofollow/snautofollow.php:56 -#: ../../addon.old/snautofollow/snautofollow.php:56 -msgid "StatusNet AutoFollow Settings" -msgstr "StatusNet自动关注设置" +#: ../../mod/wallmessage.php:145 ../../mod/message.php:325 +#: ../../mod/message.php:555 +msgid "Subject:" +msgstr "题目:" -#: ../../addon/snautofollow/snautofollow.php:58 -#: ../../addon.old/snautofollow/snautofollow.php:58 -msgid "Automatically follow any StatusNet followers/mentioners" -msgstr "自动关注所有的StatusGet关注者/提及" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" +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/localtime.php:26 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "Friendica提供这个服务目的是分享项目跟别的网络和朋友们在别的时区。" -#: ../../addon/privacy_image_cache/privacy_image_cache.php:356 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265 -msgid "Cache Statistics" -msgstr "缓存统计" - -#: ../../addon/privacy_image_cache/privacy_image_cache.php:359 -#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268 -msgid "Number of items" -msgstr "项目数量" - -#: ../../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 "缓存尺寸" - -#: ../../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 "删除全缓存" - -#: ../../addon/fbpost/fbpost.php:183 ../../addon.old/fbpost/fbpost.php:172 -msgid "Facebook Post disabled" -msgstr "使Facebook文章不可用的" - -#: ../../addon/fbpost/fbpost.php:210 ../../addon.old/fbpost/fbpost.php:199 -msgid "Facebook Post" -msgstr "Facebook文章" - -#: ../../addon/fbpost/fbpost.php:216 ../../addon.old/fbpost/fbpost.php:205 -msgid "Install Facebook Post connector for this account." -msgstr "安装Facebook文章连接器为这个账户" - -#: ../../addon/fbpost/fbpost.php:223 ../../addon.old/fbpost/fbpost.php:212 -msgid "Remove Facebook Post connector" -msgstr "把Facebook文章连接器删除" - -#: ../../addon/fbpost/fbpost.php:239 -msgid "Suppress \"View on friendica\"" -msgstr "禁止「看在Friendica」" - -#: ../../addon/fbpost/fbpost.php:243 -msgid "Mirror wall posts from facebook to friendica." -msgstr "复制墙文章从facebook到friendica。" - -#: ../../addon/fbpost/fbpost.php:253 -msgid "Post to page/group:" -msgstr "放在页/组:" - -#: ../../addon/fbpost/fbpost.php:295 ../../addon.old/fbpost/fbpost.php:240 -msgid "Facebook Post Settings" -msgstr "Facebook文章设置" - -#: ../../addon/fbpost/fbpost.php:375 +#: ../../mod/localtime.php:30 #, php-format -msgid "%s:" -msgstr "%s:" +msgid "UTC time: %s" +msgstr "UTC时间: %s" -#: ../../addon/widgets/widget_like.php:59 -#: ../../addon.old/widgets/widget_like.php:58 +#: ../../mod/localtime.php:33 #, php-format -msgid "%d person likes this" -msgid_plural "%d people like this" -msgstr[0] "%d人喜欢这个" +msgid "Current timezone: %s" +msgstr "现在时区: %s" -#: ../../addon/widgets/widget_like.php:62 -#: ../../addon.old/widgets/widget_like.php:61 +#: ../../mod/localtime.php:36 #, php-format -msgid "%d person doesn't like this" -msgid_plural "%d people don't like this" -msgstr[0] "%d人不喜欢这个" +msgid "Converted localtime: %s" +msgstr "装换的当地时间:%s" -#: ../../addon/widgets/widget_friendheader.php:40 -#: ../../addon.old/widgets/widget_friendheader.php:40 -msgid "Get added to this list!" -msgstr "被在这个单子加入!" +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "请选择你的时区:" -#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56 -msgid "Generate new key" -msgstr "造成新钥匙" +#: ../../mod/lockview.php:31 ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "摇隐私信息无效" -#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59 -msgid "Widgets key" -msgstr "小窗口钥匙" +#: ../../mod/lostpass.php:17 +msgid "No valid account found." +msgstr "找不到效的账户。" -#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61 -msgid "Widgets available" -msgstr "可用的小窗口" +#: ../../mod/lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "重设密码要求发布了。核对您的收件箱。" -#: ../../addon/widgets/widget_friends.php:40 -#: ../../addon.old/widgets/widget_friends.php:40 -msgid "Connect on Friendica!" -msgstr "连接在Friendica!" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslap" -msgstr "恶毒掌击" - -#: ../../addon/morepokes/morepokes.php:19 -#: ../../addon.old/morepokes/morepokes.php:19 -msgid "bitchslapped" -msgstr "恶毒掌击了" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shag" -msgstr "肏" - -#: ../../addon/morepokes/morepokes.php:20 -#: ../../addon.old/morepokes/morepokes.php:20 -msgid "shagged" -msgstr "肏了" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "do something obscenely biological to" -msgstr "做什么淫秽生物的于" - -#: ../../addon/morepokes/morepokes.php:21 -#: ../../addon.old/morepokes/morepokes.php:21 -msgid "did something obscenely biological to" -msgstr "做了什么淫秽生物的于" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "point out the poke feature to" -msgstr "把戳特点指给" - -#: ../../addon/morepokes/morepokes.php:22 -#: ../../addon.old/morepokes/morepokes.php:22 -msgid "pointed out the poke feature to" -msgstr "把了戳特点指给" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declare undying love for" -msgstr "表明永远的爱情为" - -#: ../../addon/morepokes/morepokes.php:23 -#: ../../addon.old/morepokes/morepokes.php:23 -msgid "declared undying love for" -msgstr "表明了永远的爱情为" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patent" -msgstr "专利" - -#: ../../addon/morepokes/morepokes.php:24 -#: ../../addon.old/morepokes/morepokes.php:24 -msgid "patented" -msgstr "专利了" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroke beard" -msgstr "摸胡子" - -#: ../../addon/morepokes/morepokes.php:25 -#: ../../addon.old/morepokes/morepokes.php:25 -msgid "stroked their beard at" -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 "哀叹现代的二三等教育规格的衰退给" - -#: ../../addon/morepokes/morepokes.php:26 -#: ../../addon.old/morepokes/morepokes.php:26 -msgid "" -"bemoans the declining standards of modern secondary and tertiary education " -"to" -msgstr "哀叹现代的二三等教育规格的衰退给" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hug" -msgstr "拥抱" - -#: ../../addon/morepokes/morepokes.php:27 -#: ../../addon.old/morepokes/morepokes.php:27 -msgid "hugged" -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 "亲吻了" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raise eyebrows at" -msgstr "举起眉毛于" - -#: ../../addon/morepokes/morepokes.php:29 -#: ../../addon.old/morepokes/morepokes.php:29 -msgid "raised their eyebrows at" -msgstr "举起了眉毛于" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insult" -msgstr "侮辱" - -#: ../../addon/morepokes/morepokes.php:30 -#: ../../addon.old/morepokes/morepokes.php:30 -msgid "insulted" -msgstr "侮辱" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praise" -msgstr "赞扬" - -#: ../../addon/morepokes/morepokes.php:31 -#: ../../addon.old/morepokes/morepokes.php:31 -msgid "praised" -msgstr "赞扬了" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "be dubious of" -msgstr "怀疑" - -#: ../../addon/morepokes/morepokes.php:32 -#: ../../addon.old/morepokes/morepokes.php:32 -msgid "was dubious of" -msgstr "怀疑了" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "eat" -msgstr "吃" - -#: ../../addon/morepokes/morepokes.php:33 -#: ../../addon.old/morepokes/morepokes.php:33 -msgid "ate" -msgstr "吃了" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggle and fawn at" -msgstr "咯咯地笑和巴结为" - -#: ../../addon/morepokes/morepokes.php:34 -#: ../../addon.old/morepokes/morepokes.php:34 -msgid "giggled and fawned at" -msgstr "咯咯地笑和巴结为了" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubt" -msgstr "怀疑" - -#: ../../addon/morepokes/morepokes.php:35 -#: ../../addon.old/morepokes/morepokes.php:35 -msgid "doubted" -msgstr "怀疑了" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glare" -msgstr "瞪" - -#: ../../addon/morepokes/morepokes.php:36 -#: ../../addon.old/morepokes/morepokes.php:36 -msgid "glared at" -msgstr "瞪了" - -#: ../../addon/yourls/yourls.php:55 ../../addon.old/yourls/yourls.php:55 -msgid "YourLS Settings" -msgstr "YourLS配置" - -#: ../../addon/yourls/yourls.php:57 ../../addon.old/yourls/yourls.php:57 -msgid "URL: http://" -msgstr "URL: http://" - -#: ../../addon/yourls/yourls.php:62 ../../addon.old/yourls/yourls.php:62 -msgid "Username:" -msgstr "用户名:" - -#: ../../addon/yourls/yourls.php:67 ../../addon.old/yourls/yourls.php:67 -msgid "Password:" -msgstr "密码:" - -#: ../../addon/yourls/yourls.php:72 ../../addon.old/yourls/yourls.php:72 -msgid "Use SSL " -msgstr "用SSL" - -#: ../../addon/yourls/yourls.php:92 ../../addon.old/yourls/yourls.php:92 -msgid "yourls Settings saved." -msgstr "yourls配置保存了。" - -#: ../../addon/ljpost/ljpost.php:39 ../../addon.old/ljpost/ljpost.php:39 -msgid "Post to LiveJournal" -msgstr "转播到LiveJournal" - -#: ../../addon/ljpost/ljpost.php:70 ../../addon.old/ljpost/ljpost.php:70 -msgid "LiveJournal Post Settings" -msgstr "LiveJournal转播设置" - -#: ../../addon/ljpost/ljpost.php:72 ../../addon.old/ljpost/ljpost.php:72 -msgid "Enable LiveJournal Post Plugin" -msgstr "使Livejournal转播插件可用" - -#: ../../addon/ljpost/ljpost.php:77 ../../addon.old/ljpost/ljpost.php:77 -msgid "LiveJournal username" -msgstr "LiveJournal用户名" - -#: ../../addon/ljpost/ljpost.php:82 ../../addon.old/ljpost/ljpost.php:82 -msgid "LiveJournal password" -msgstr "LiveJournal密码" - -#: ../../addon/ljpost/ljpost.php:87 ../../addon.old/ljpost/ljpost.php:87 -msgid "Post to LiveJournal by default" -msgstr "默认地转播到LiveJournal" - -#: ../../addon/nsfw/nsfw.php:78 ../../addon.old/nsfw/nsfw.php:78 -msgid "Not Safe For Work (General Purpose Content Filter) settings" -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." -msgstr "这个插件找您下面输入的词在所有的文章里,和把包括那些词的内容隐藏,省得不妥当的时候表示,比如性的影射在办公室里。是礼貌和建议的把什么包括裸体的内容跟#NSFW标签。这个过滤也会符合设么别的您输入的词,从而能当通用内容过滤有用的。" - -#: ../../addon/nsfw/nsfw.php:81 ../../addon.old/nsfw/nsfw.php:81 -msgid "Enable Content filter" -msgstr "使内容过滤可用" - -#: ../../addon/nsfw/nsfw.php:84 ../../addon.old/nsfw/nsfw.php:84 -msgid "Comma separated list of keywords to hide" -msgstr "逗号分隔单词要隐藏" - -#: ../../addon/nsfw/nsfw.php:89 ../../addon.old/nsfw/nsfw.php:89 -msgid "Use /expression/ to provide regular expressions" -msgstr "用/表达式/为输入正则表达式" - -#: ../../addon/nsfw/nsfw.php:105 ../../addon.old/nsfw/nsfw.php:105 -msgid "NSFW Settings saved." -msgstr "NSFW设置保持了。" - -#: ../../addon/nsfw/nsfw.php:157 ../../addon.old/nsfw/nsfw.php:157 +#: ../../mod/lostpass.php:44 #, php-format -msgid "%s - Click to open/close" -msgstr "%s - 点击为打开/关闭" +msgid "Password reset requested at %s" +msgstr "重设密码要求被发布%s" -#: ../../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 "论坛" - -#: ../../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 "评坛:" - -#: ../../addon/page/page.php:166 ../../addon.old/page/page.php:166 -msgid "Page settings updated." -msgstr "页设置更新了" - -#: ../../addon/page/page.php:195 ../../addon.old/page/page.php:195 -msgid "Page Settings" -msgstr "页设置" - -#: ../../addon/page/page.php:197 ../../addon.old/page/page.php:197 -msgid "How many forums to display on sidebar without paging" -msgstr "多少评坛要在工具栏上表示无分页" - -#: ../../addon/page/page.php:200 ../../addon.old/page/page.php:200 -msgid "Randomise Page/Forum list" -msgstr "把页/评坛单洗牌" - -#: ../../addon/page/page.php:203 ../../addon.old/page/page.php:203 -msgid "Show pages/forums on profile page" -msgstr "表示页/评坛在简介页" - -#: ../../addon/planets/planets.php:150 ../../addon.old/planets/planets.php:150 -msgid "Planets Settings" -msgstr "行星设置" - -#: ../../addon/planets/planets.php:152 ../../addon.old/planets/planets.php:152 -msgid "Enable Planets Plugin" -msgstr "使行星插件可用" - -#: ../../addon/forumdirectory/forumdirectory.php:22 -msgid "Forum Directory" -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 "登录" - -#: ../../addon/communityhome/communityhome.php:29 -#: ../../addon.old/communityhome/communityhome.php:29 -#: ../../addon.old/communityhome/twillingham/communityhome.php:29 -msgid "OpenID" -msgstr "OpenID" - -#: ../../addon/communityhome/communityhome.php:39 -#: ../../addon.old/communityhome/communityhome.php:38 -#: ../../addon.old/communityhome/twillingham/communityhome.php:38 -msgid "Latest 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 "最积极用户" - -#: ../../addon/communityhome/communityhome.php:102 -#: ../../addon.old/communityhome/communityhome.php:98 -msgid "Latest photos" -msgstr "最近照片" - -#: ../../addon/communityhome/communityhome.php:141 -#: ../../addon.old/communityhome/communityhome.php:133 -msgid "Latest likes" -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 "项目" - -#: ../../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 "看不了" - -#: ../../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 "开不了部件为编辑" - -#: ../../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 "返回日历" - -#: ../../addon/dav/common/wdcal_edit.inc.php:144 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:144 -msgid "Event data" -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 "日历" - -#: ../../addon/dav/common/wdcal_edit.inc.php:163 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:163 -msgid "Special color" -msgstr "特别颜色" - -#: ../../addon/dav/common/wdcal_edit.inc.php:169 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:169 -msgid "Subject" -msgstr "题目" - -#: ../../addon/dav/common/wdcal_edit.inc.php:173 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:173 -msgid "Starts" -msgstr "开始" - -#: ../../addon/dav/common/wdcal_edit.inc.php:178 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:178 -msgid "Ends" -msgstr "结束" - -#: ../../addon/dav/common/wdcal_edit.inc.php:185 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:185 -msgid "Description" -msgstr "描述" - -#: ../../addon/dav/common/wdcal_edit.inc.php:188 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:188 -msgid "Recurrence" -msgstr "复发" - -#: ../../addon/dav/common/wdcal_edit.inc.php:190 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:190 -msgid "Frequency" -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 "每日" - -#: ../../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 "每周" - -#: ../../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 "每月" - -#: ../../addon/dav/common/wdcal_edit.inc.php:203 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:203 -msgid "Yearly" -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 "天" - -#: ../../addon/dav/common/wdcal_edit.inc.php:215 -#: ../../include/datetime.php:287 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:215 -msgid "weeks" -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 "月" - -#: ../../addon/dav/common/wdcal_edit.inc.php:217 -#: ../../include/datetime.php:285 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:217 -msgid "years" -msgstr "年" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "Interval" -msgstr "间隔" - -#: ../../addon/dav/common/wdcal_edit.inc.php:218 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:218 -msgid "All %select% %time%" -msgstr "每%select%%time%" - -#: ../../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 "天" - -#: ../../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 "星期天" - -#: ../../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 "星期一" - -#: ../../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 "星期二" - -#: ../../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 "星期三" - -#: ../../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 "星期四" - -#: ../../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 "星期五" - -#: ../../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 "星期六" - -#: ../../addon/dav/common/wdcal_edit.inc.php:297 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:297 -msgid "First day of week:" -msgstr "星期第一天:" - -#: ../../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 "月里天数" - -#: ../../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#个" - -#: ../../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#个最后" - -#: ../../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#" - -#: ../../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 "每月第#num#个最后#wkday#" - -#: ../../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 "月" - -#: ../../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#个天" - -#: ../../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 "月第#num#个最后天" - -#: ../../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#" - -#: ../../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#" - -#: ../../addon/dav/common/wdcal_edit.inc.php:413 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:413 -msgid "Repeat until" -msgstr "重复到" - -#: ../../addon/dav/common/wdcal_edit.inc.php:417 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:417 -msgid "Infinite" -msgstr "无限的" - -#: ../../addon/dav/common/wdcal_edit.inc.php:420 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:420 -msgid "Until the following date" -msgstr "到下个日期" - -#: ../../addon/dav/common/wdcal_edit.inc.php:423 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:423 -msgid "Number of times" -msgstr "多少次" - -#: ../../addon/dav/common/wdcal_edit.inc.php:429 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:429 -msgid "Exceptions" -msgstr "除外" - -#: ../../addon/dav/common/wdcal_edit.inc.php:432 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:432 -msgid "none" -msgstr "没有" - -#: ../../addon/dav/common/wdcal_edit.inc.php:449 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:449 -msgid "Notification" -msgstr "通知" - -#: ../../addon/dav/common/wdcal_edit.inc.php:466 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:466 -msgid "Notify by" -msgstr "用地方法为通知" - -#: ../../addon/dav/common/wdcal_edit.inc.php:469 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:469 -msgid "E-Mail" -msgstr "电子邮件" - -#: ../../addon/dav/common/wdcal_edit.inc.php:470 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:470 -msgid "On Friendica / Display" -msgstr "在Friendica/表示" - -#: ../../addon/dav/common/wdcal_edit.inc.php:474 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:474 -msgid "Time" -msgstr "时间" - -#: ../../addon/dav/common/wdcal_edit.inc.php:478 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:478 -msgid "Hours" -msgstr "小时" - -#: ../../addon/dav/common/wdcal_edit.inc.php:479 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:479 -msgid "Minutes" -msgstr "分钟" - -#: ../../addon/dav/common/wdcal_edit.inc.php:480 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:480 -msgid "Seconds" -msgstr "秒" - -#: ../../addon/dav/common/wdcal_edit.inc.php:482 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:482 -msgid "Weeks" -msgstr "周" - -#: ../../addon/dav/common/wdcal_edit.inc.php:485 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:485 -msgid "before the" -msgstr "前" - -#: ../../addon/dav/common/wdcal_edit.inc.php:486 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:486 -msgid "start of the event" -msgstr "项目开始" - -#: ../../addon/dav/common/wdcal_edit.inc.php:487 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:487 -msgid "end of the event" -msgstr "项目结束" - -#: ../../addon/dav/common/wdcal_edit.inc.php:492 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:492 -msgid "Add a notification" -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" - -#: ../../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#快开始。" - -#: ../../addon/dav/common/wdcal_edit.inc.php:769 -#: ../../addon.old/dav/common/wdcal_edit.inc.php:769 -msgid "Saved" -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 "美国时间形式(月/日/年)" - -#: ../../addon/dav/common/wdcal_configuration.php:243 -#: ../../addon.old/dav/common/wdcal_configuration.php:243 -msgid "German Time Format (dd.mm.YYYY)" -msgstr "德国时间形式(日/月/年)" - -#: ../../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 "私人项目" - -#: ../../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 "私人通讯录" - -#: ../../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项目" - -#: ../../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熟人" - -#: ../../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熟人" - -#: ../../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/lostpass.php:66 msgid "" -"Something went wrong when trying to import the file. Sorry. Maybe some " -"events were imported anyway." -msgstr "进口文件出了问题。不好意思。可能一些项目却是成功地进口了。" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +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/lostpass.php:84 ../../boot.php:1072 +msgid "Password Reset" +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/lostpass.php:85 +msgid "Your password has been reset as requested." +msgstr "您的密码被重设如要求的。" -#: ../../addon/dav/friendica/layout.fnk.php:138 -#: ../../addon.old/dav/friendica/layout.fnk.php:138 -msgid "No file was uploaded." -msgstr "没有上传的文件。" +#: ../../mod/lostpass.php:86 +msgid "Your new password is" +msgstr "你的新的密码是" -#: ../../addon/dav/friendica/layout.fnk.php:147 -#: ../../addon.old/dav/friendica/layout.fnk.php:147 -msgid "Import a ICS-file" -msgstr "进口ICS文件" +#: ../../mod/lostpass.php:87 +msgid "Save or copy your new password - and then" +msgstr "保存或复制新密码-之后" -#: ../../addon/dav/friendica/layout.fnk.php:150 -#: ../../addon.old/dav/friendica/layout.fnk.php:150 -msgid "ICS-File" -msgstr "ICS文件" +#: ../../mod/lostpass.php:88 +msgid "click here to login" +msgstr "在这儿点击" -#: ../../addon/dav/friendica/layout.fnk.php:151 -#: ../../addon.old/dav/friendica/layout.fnk.php:151 -msgid "Overwrite all #num# existing events" -msgstr "替换所有#num#现有的项目" - -#: ../../addon/dav/friendica/layout.fnk.php:228 -#: ../../addon.old/dav/friendica/layout.fnk.php:228 -msgid "New event" -msgstr "新项目" - -#: ../../addon/dav/friendica/layout.fnk.php:232 -#: ../../addon.old/dav/friendica/layout.fnk.php:232 -msgid "Today" -msgstr "今天" - -#: ../../addon/dav/friendica/layout.fnk.php:241 -#: ../../addon.old/dav/friendica/layout.fnk.php:241 -msgid "Day" -msgstr "天" - -#: ../../addon/dav/friendica/layout.fnk.php:248 -#: ../../addon.old/dav/friendica/layout.fnk.php:248 -msgid "Week" -msgstr "周" - -#: ../../addon/dav/friendica/layout.fnk.php:260 -#: ../../addon.old/dav/friendica/layout.fnk.php:260 -msgid "Reload" -msgstr "再装入" - -#: ../../addon/dav/friendica/layout.fnk.php:271 -#: ../../addon.old/dav/friendica/layout.fnk.php:271 -msgid "Date" -msgstr "日期" - -#: ../../addon/dav/friendica/layout.fnk.php:313 -#: ../../addon.old/dav/friendica/layout.fnk.php:313 -msgid "Error" -msgstr "错误" - -#: ../../addon/dav/friendica/layout.fnk.php:380 -#: ../../addon.old/dav/friendica/layout.fnk.php:380 -msgid "The calendar has been updated." -msgstr "日历更新了。" - -#: ../../addon/dav/friendica/layout.fnk.php:393 -#: ../../addon.old/dav/friendica/layout.fnk.php:393 -msgid "The new calendar has been created." -msgstr "新日历创造了。" - -#: ../../addon/dav/friendica/layout.fnk.php:417 -#: ../../addon.old/dav/friendica/layout.fnk.php:417 -msgid "The calendar has been deleted." -msgstr "日历删除了。" - -#: ../../addon/dav/friendica/layout.fnk.php:424 -#: ../../addon.old/dav/friendica/layout.fnk.php:424 -msgid "Calendar Settings" -msgstr "日历设置" - -#: ../../addon/dav/friendica/layout.fnk.php:430 -#: ../../addon.old/dav/friendica/layout.fnk.php:430 -msgid "Date format" -msgstr "日期形式" - -#: ../../addon/dav/friendica/layout.fnk.php:439 -#: ../../addon.old/dav/friendica/layout.fnk.php:439 -msgid "Time zone" -msgstr "时区" - -#: ../../addon/dav/friendica/layout.fnk.php:445 -#: ../../addon.old/dav/friendica/layout.fnk.php:445 -msgid "Calendars" -msgstr "日历" - -#: ../../addon/dav/friendica/layout.fnk.php:487 -#: ../../addon.old/dav/friendica/layout.fnk.php:487 -msgid "Create a new calendar" -msgstr "创造新日历" - -#: ../../addon/dav/friendica/layout.fnk.php:496 -#: ../../addon.old/dav/friendica/layout.fnk.php:496 -msgid "Limitations" -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 "警告" - -#: ../../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, 案桌,等)" - -#: ../../addon/dav/friendica/layout.fnk.php:511 -#: ../../addon.old/dav/friendica/layout.fnk.php:511 -msgid "Synchronizing this calendar with the iPhone" -msgstr "正在把这个日历跟iPhone同步" - -#: ../../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同步" - -#: ../../addon/dav/friendica/main.php:202 -#: ../../addon.old/dav/friendica/main.php:202 +#: ../../mod/lostpass.php:89 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安装联系为维修。" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "您的密码能被变化从设置页成功登记后。" -#: ../../addon/dav/friendica/main.php:242 -#: ../../addon.old/dav/friendica/main.php:242 -msgid "Extended calendar with CalDAV-support" -msgstr "增能日历跟CalDAV支持" - -#: ../../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" - -#: ../../addon/dav/friendica/main.php:282 -#: ../../addon.old/dav/friendica/main.php:282 -msgid "Notification: " -msgstr "通知:" - -#: ../../addon/dav/friendica/main.php:309 -#: ../../addon.old/dav/friendica/main.php:309 -msgid "The database tables have been installed." -msgstr "数据库表格被安装了。" - -#: ../../addon/dav/friendica/main.php:310 -#: ../../addon.old/dav/friendica/main.php:310 -msgid "An error occurred during the installation." -msgstr "安装出错误。" - -#: ../../addon/dav/friendica/main.php:316 -#: ../../addon.old/dav/friendica/main.php:316 -msgid "The database tables have been updated." -msgstr "数据库表格更新了。" - -#: ../../addon/dav/friendica/main.php:317 -#: ../../addon.old/dav/friendica/main.php:317 -msgid "An error occurred during the update." -msgstr "更新出了问题。" - -#: ../../addon/dav/friendica/main.php:333 -#: ../../addon.old/dav/friendica/main.php:333 -msgid "No system-wide settings yet." -msgstr "还没有系统设置。" - -#: ../../addon/dav/friendica/main.php:336 -#: ../../addon.old/dav/friendica/main.php:336 -msgid "Database status" -msgstr "数据库现状" - -#: ../../addon/dav/friendica/main.php:339 -#: ../../addon.old/dav/friendica/main.php:339 -msgid "Installed" -msgstr "安装了" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade needed" -msgstr "必须更新" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "" -"Please back up all calendar data (the tables beginning with dav_*) before " -"proceeding. While all calendar events should 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_」)继续之前。虽然所有的日历项目应该被转化成新数据库体系,备份总是最好。下边您会看数据库命令进行按「更新」按钮的时候。" - -#: ../../addon/dav/friendica/main.php:343 -#: ../../addon.old/dav/friendica/main.php:343 -msgid "Upgrade" -msgstr "更新" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Not installed" -msgstr "没安装" - -#: ../../addon/dav/friendica/main.php:346 -#: ../../addon.old/dav/friendica/main.php:346 -msgid "Install" -msgstr "安装" - -#: ../../addon/dav/friendica/main.php:350 -#: ../../addon.old/dav/friendica/main.php:350 -msgid "Unknown" -msgstr "不知道的" - -#: ../../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 "出什么真糟糕的问题。我不能自动地恢复,不好意思。请看数据库系统,备份数据,而手动地把所有前缀着「dav_」表格删除。之后,这个安装程序应该能把表格自动地初始化。" - -#: ../../addon/dav/friendica/main.php:355 -#: ../../addon.old/dav/friendica/main.php:355 -msgid "Troubleshooting" -msgstr "调试" - -#: ../../addon/dav/friendica/main.php:356 -#: ../../addon.old/dav/friendica/main.php:356 -msgid "Manual creation of the database tables:" -msgstr "手动造成数据库表格:" - -#: ../../addon/dav/friendica/main.php:357 -#: ../../addon.old/dav/friendica/main.php:357 -msgid "Show SQL-statements" -msgstr "表示SQL陈述" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:206 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:206 -msgid "Private Calendar" -msgstr "私人日历" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:207 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:207 -msgid "Friendica Events: Mine" -msgstr "Friendica项目:我的" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:208 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:208 -msgid "Friendica Events: Contacts" -msgstr "Friendica项目:熟人" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:248 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:248 -msgid "Private Addresses" -msgstr "私人地址" - -#: ../../addon/dav/friendica/calendar.friendica.fnk.php:249 -#: ../../addon.old/dav/friendica/calendar.friendica.fnk.php:249 -msgid "Friendica Contacts" -msgstr "Friendica熟人" - -#: ../../addon/uhremotestorage/uhremotestorage.php:84 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:84 +#: ../../mod/lostpass.php:107 #, php-format +msgid "Your password has been changed at %s" +msgstr "您密码被变化在%s" + +#: ../../mod/lostpass.php:122 +msgid "Forgot your Password?" +msgstr "忘记你的密码吗?" + +#: ../../mod/lostpass.php:123 msgid "" -"Allow to use your friendica id (%s) to connecto to external unhosted-enabled" -" storage (like ownCloud). See RemoteStorage" -" WebFinger" -msgstr "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看RemoteStorage WebFinger" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "输入您的邮件地址和提交为重置密码。然后核对收件箱看别的说明。" -#: ../../addon/uhremotestorage/uhremotestorage.php:85 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:85 -msgid "Template URL (with {category})" -msgstr "模板URL(根{category})" +#: ../../mod/lostpass.php:124 +msgid "Nickname or Email: " +msgstr "昵称或邮件地址:" -#: ../../addon/uhremotestorage/uhremotestorage.php:86 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:86 -msgid "OAuth end-point" -msgstr "OAuth 端点" +#: ../../mod/lostpass.php:125 +msgid "Reset" +msgstr "复位" -#: ../../addon/uhremotestorage/uhremotestorage.php:87 -#: ../../addon.old/uhremotestorage/uhremotestorage.php:87 -msgid "Api" -msgstr "API" +#: ../../mod/maintenance.php:5 +msgid "System down for maintenance" +msgstr "系统关闭为了维持" -#: ../../addon/membersince/membersince.php:18 -#: ../../addon.old/membersince/membersince.php:18 -msgid "Member since:" -msgstr "客人从:" +#: ../../mod/manage.php:106 +msgid "Manage Identities and/or Pages" +msgstr "管理身份或页" -#: ../../addon/tictac/tictac.php:20 ../../addon.old/tictac/tictac.php:20 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "三维井字棋" - -#: ../../addon/tictac/tictac.php:53 ../../addon.old/tictac/tictac.php:53 -msgid "3D Tic-Tac-Toe" -msgstr "三维井字棋" - -#: ../../addon/tictac/tictac.php:58 ../../addon.old/tictac/tictac.php:58 -msgid "New game" -msgstr "新游戏" - -#: ../../addon/tictac/tictac.php:59 ../../addon.old/tictac/tictac.php:59 -msgid "New game with handicap" -msgstr "新游戏不利条件 " - -#: ../../addon/tictac/tictac.php:60 ../../addon.old/tictac/tictac.php:60 +#: ../../mod/manage.php:107 msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " -msgstr "三维井字棋跟传统的一样,除了完同时在多水平。" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +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 "这游戏有三水平。您赢经过实现三一连在任何水平,不亚于上,下,和倾斜跨越三水平。" +#: ../../mod/manage.php:108 +msgid "Select an identity to manage: " +msgstr "选择同一个人管理:" -#: ../../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/match.php:12 +msgid "Profile Match" +msgstr "简介符合" -#: ../../addon/tictac/tictac.php:182 ../../addon.old/tictac/tictac.php:182 -msgid "You go first..." -msgstr "您先下..." +#: ../../mod/match.php:20 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "没有符合的关键字。请在您的默认简介加关键字。" -#: ../../addon/tictac/tictac.php:187 ../../addon.old/tictac/tictac.php:187 -msgid "I'm going first this time..." -msgstr "这次我先下..." +#: ../../mod/match.php:57 +msgid "is interested in:" +msgstr "感兴趣对:" -#: ../../addon/tictac/tictac.php:193 ../../addon.old/tictac/tictac.php:193 -msgid "You won!" -msgstr "您赢了!" +#: ../../mod/message.php:67 +msgid "Unable to locate contact information." +msgstr "找不到熟人信息。" -#: ../../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/message.php:207 +msgid "Do you really want to delete this message?" +msgstr "您真的想删除这个通知吗?" -#: ../../addon/tictac/tictac.php:222 ../../addon.old/tictac/tictac.php:222 -msgid "I won!" -msgstr "我赢了!" +#: ../../mod/message.php:227 +msgid "Message deleted." +msgstr "消息删除了。" -#: ../../addon/randplace/randplace.php:169 -#: ../../addon.old/randplace/randplace.php:169 -msgid "Randplace Settings" -msgstr "随意下设置" +#: ../../mod/message.php:258 +msgid "Conversation removed." +msgstr "交流删除了。" -#: ../../addon/randplace/randplace.php:171 -#: ../../addon.old/randplace/randplace.php:171 -msgid "Enable Randplace Plugin" -msgstr "使随意下插件能用" +#: ../../mod/message.php:371 +msgid "No messages." +msgstr "没有消息" -#: ../../addon/dwpost/dwpost.php:39 ../../addon.old/dwpost/dwpost.php:39 -msgid "Post to Dreamwidth" -msgstr "转播到Dreamwidth" - -#: ../../addon/dwpost/dwpost.php:70 ../../addon.old/dwpost/dwpost.php:70 -msgid "Dreamwidth Post Settings" -msgstr "Dreamwidth转播设置" - -#: ../../addon/dwpost/dwpost.php:72 ../../addon.old/dwpost/dwpost.php:72 -msgid "Enable dreamwidth Post Plugin" -msgstr "使Dreamwidth转播插件可用" - -#: ../../addon/dwpost/dwpost.php:77 ../../addon.old/dwpost/dwpost.php:77 -msgid "dreamwidth username" -msgstr "Dreamwidth用户名" - -#: ../../addon/dwpost/dwpost.php:82 ../../addon.old/dwpost/dwpost.php:82 -msgid "dreamwidth password" -msgstr "Dreamwidth密码" - -#: ../../addon/dwpost/dwpost.php:87 ../../addon.old/dwpost/dwpost.php:87 -msgid "Post to dreamwidth by default" -msgstr "默认地转播到Dreamwidth" - -#: ../../addon/remote_permissions/remote_permissions.php:45 -msgid "Remote Permissions Settings" -msgstr "对外批准设置" - -#: ../../addon/remote_permissions/remote_permissions.php:46 -msgid "" -"Allow recipients of your private posts to see the other recipients of the " -"posts" -msgstr "允许您私人文章接受者看别接受者。" - -#: ../../addon/remote_permissions/remote_permissions.php:58 -msgid "Remote Permissions settings updated." -msgstr "对外批准设置更新了。" - -#: ../../addon/remote_permissions/remote_permissions.php:178 -msgid "Visible to" -msgstr "可见的给" - -#: ../../addon/remote_permissions/remote_permissions.php:178 -msgid "may only be a partial list" -msgstr "可能部分的单" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -#: ../../addon/altpager/altpager.php:99 -msgid "Global" -msgstr "综合" - -#: ../../addon/remote_permissions/remote_permissions.php:197 -msgid "The posts of every user on this server show the post recipients" -msgstr "这网站所有用户的文章表示接受者" - -#: ../../addon/remote_permissions/remote_permissions.php:198 -#: ../../addon/altpager/altpager.php:100 -msgid "Individual" -msgstr "一个人的" - -#: ../../addon/remote_permissions/remote_permissions.php:198 -msgid "Each user chooses whether his/her posts show the post recipients" -msgstr "各用户选择他问上是否表示接受者" - -#: ../../addon/startpage/startpage.php:83 -#: ../../addon.old/startpage/startpage.php:83 -msgid "Startpage Settings" -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 "主页登录后表示-留空白为简介墙" - -#: ../../addon/startpage/startpage.php:88 -#: ../../addon.old/startpage/startpage.php:88 -msgid "Examples: "network" or "notifications/system"" -msgstr "例如:"网络"或"通知/系统"" - -#: ../../addon/geonames/geonames.php:143 -#: ../../addon.old/geonames/geonames.php:143 -msgid "Geonames settings updated." -msgstr "Geonames设置更新了。" - -#: ../../addon/geonames/geonames.php:179 -#: ../../addon.old/geonames/geonames.php:179 -msgid "Geonames Settings" -msgstr "Geonames设置" - -#: ../../addon/geonames/geonames.php:181 -#: ../../addon.old/geonames/geonames.php:181 -msgid "Enable Geonames Plugin" -msgstr "使Geonames插件能用" - -#: ../../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 +#: ../../mod/message.php:378 #, php-format -msgid "Your account on %s will expire in a few days." -msgstr "您账户在%s几天后过期了。" +msgid "Unknown sender - %s" +msgstr "生发送人-%s" -#: ../../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账户快过期。" - -#: ../../addon/public_server/public_server.php:128 -#: ../../addon.old/public_server/public_server.php:128 +#: ../../mod/message.php:381 #, 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天至少一次登录。" +msgid "You and %s" +msgstr "您和%s" -#: ../../addon/js_upload/js_upload.php:43 -#: ../../addon.old/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "上传文件" - -#: ../../addon/js_upload/js_upload.php:44 -#: ../../addon.old/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "在这儿放文件为上传" - -#: ../../addon/js_upload/js_upload.php:46 -#: ../../addon.old/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "失败" - -#: ../../addon/js_upload/js_upload.php:303 -#: ../../addon.old/js_upload/js_upload.php:297 -msgid "No files were uploaded." -msgstr "没有文件上传。" - -#: ../../addon/js_upload/js_upload.php:309 -#: ../../addon.old/js_upload/js_upload.php:303 -msgid "Uploaded file is empty" -msgstr "上传的文件空的" - -#: ../../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 "文件扩展名无效的,应该是这些一个:" - -#: ../../addon/js_upload/js_upload.php:343 -#: ../../addon.old/js_upload/js_upload.php:337 -msgid "Upload was cancelled, or server error encountered" -msgstr "上传注销了,或相遇服务器错误" - -#: ../../addon/forumlist/forumlist.php:67 -#: ../../addon.old/forumlist/forumlist.php:63 -msgid "show/hide" -msgstr "表示/隐藏" - -#: ../../addon/forumlist/forumlist.php:81 -#: ../../addon.old/forumlist/forumlist.php:77 -msgid "No forum subscriptions" -msgstr "没有评坛订阅" - -#: ../../addon/forumlist/forumlist.php:134 -#: ../../addon.old/forumlist/forumlist.php:131 -msgid "Forumlist settings updated." -msgstr "评坛单设置更新了。" - -#: ../../addon/forumlist/forumlist.php:162 -#: ../../addon.old/forumlist/forumlist.php:159 -msgid "Forumlist Settings" -msgstr "评坛单设置" - -#: ../../addon/forumlist/forumlist.php:164 -#: ../../addon.old/forumlist/forumlist.php:161 -msgid "Randomise forum list" -msgstr "洗牌评坛单" - -#: ../../addon/forumlist/forumlist.php:167 -#: ../../addon.old/forumlist/forumlist.php:164 -msgid "Show forums on profile page" -msgstr "表示评坛在简介页" - -#: ../../addon/forumlist/forumlist.php:170 -#: ../../addon.old/forumlist/forumlist.php:167 -msgid "Show forums on network page" -msgstr "表示评坛在网络页" - -#: ../../addon/impressum/impressum.php:37 -#: ../../addon.old/impressum/impressum.php:37 -msgid "Impressum" -msgstr "Impressum(法定的出版信息)" - -#: ../../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 "网站主" - -#: ../../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 "电子邮件地址" - -#: ../../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 "邮政邮件地址" - -#: ../../addon/impressum/impressum.php:61 -#: ../../addon.old/impressum/impressum.php:61 -msgid "" -"The impressum addon needs to be configured!
Please add at least the " -"owner variable to your config file. For other variables please " -"refer to the README file of the addon." -msgstr "Impressum插件必须被设置!
请加至少owner变量在您的设置文件。关于别的变量请指插件的README文件。" - -#: ../../addon/impressum/impressum.php:84 -#: ../../addon.old/impressum/impressum.php:84 -msgid "The page operators name." -msgstr "也运作员名。" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Site Owners Profile" -msgstr "网站主的简介" - -#: ../../addon/impressum/impressum.php:85 -#: ../../addon.old/impressum/impressum.php:85 -msgid "Profile address of the operator." -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。" - -#: ../../addon/impressum/impressum.php:87 -#: ../../addon.old/impressum/impressum.php:87 -msgid "Notes" -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。" - -#: ../../addon/impressum/impressum.php:88 -#: ../../addon.old/impressum/impressum.php:88 -msgid "How to contact the operator via email. (will be displayed obfuscated)" -msgstr "怎么用电子邮件跟运作员联系。(将使混乱的表示)" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Footer note" -msgstr "页脚便条" - -#: ../../addon/impressum/impressum.php:89 -#: ../../addon.old/impressum/impressum.php:89 -msgid "Text for the footer. You can use BBCode here." -msgstr "页脚征文。您会用BBCode。" - -#: ../../addon/buglink/buglink.php:15 ../../addon.old/buglink/buglink.php:15 -msgid "Report Bug" -msgstr "报案程序错误" - -#: ../../addon/notimeline/notimeline.php:32 -#: ../../addon.old/notimeline/notimeline.php:32 -msgid "No Timeline settings updated." -msgstr "没有时间链设置更新" - -#: ../../addon/notimeline/notimeline.php:56 -#: ../../addon.old/notimeline/notimeline.php:56 -msgid "No Timeline Settings" -msgstr "没有时间链设置" - -#: ../../addon/notimeline/notimeline.php:58 -#: ../../addon.old/notimeline/notimeline.php:58 -msgid "Disable Archive selector on profile wall" -msgstr "使在简介墙上档案选择器不能用" - -#: ../../addon/blockem/blockem.php:51 ../../addon.old/blockem/blockem.php:51 -msgid "\"Blockem\" Settings" -msgstr "「Blockem」配置" - -#: ../../addon/blockem/blockem.php:53 ../../addon.old/blockem/blockem.php:53 -msgid "Comma separated profile URLS to block" -msgstr "逗号分简介URL为栏" - -#: ../../addon/blockem/blockem.php:70 ../../addon.old/blockem/blockem.php:70 -msgid "BLOCKEM Settings saved." -msgstr "「Blockem」配置保存了。" - -#: ../../addon/blockem/blockem.php:105 ../../addon.old/blockem/blockem.php:105 +#: ../../mod/message.php:384 #, php-format -msgid "Blocked %s - Click to open/close" -msgstr "%s拦了-点击为开关" +msgid "%s and You" +msgstr "%s和您" -#: ../../addon/blockem/blockem.php:160 ../../addon.old/blockem/blockem.php:160 -msgid "Unblock Author" -msgstr "不拦作家" +#: ../../mod/message.php:405 ../../mod/message.php:546 +msgid "Delete conversation" +msgstr "删除交谈" -#: ../../addon/blockem/blockem.php:162 ../../addon.old/blockem/blockem.php:162 -msgid "Block Author" -msgstr "拦作家" +#: ../../mod/message.php:408 +msgid "D, d M Y - g:i A" +msgstr "D, d M Y - g:i A" -#: ../../addon/blockem/blockem.php:194 ../../addon.old/blockem/blockem.php:194 -msgid "blockem settings updated" -msgstr "blockem设置更新了" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-)" -msgstr ":-)" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid ":-(" -msgstr ":-(" - -#: ../../addon/qcomment/qcomment.php:51 -#: ../../addon.old/qcomment/qcomment.php:51 -msgid "lol" -msgstr "lol" - -#: ../../addon/qcomment/qcomment.php:54 -#: ../../addon.old/qcomment/qcomment.php:54 -msgid "Quick Comment Settings" -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 "快捷评论是在评论文本框,有时候隐藏。点击它们为输入简单的回答。" - -#: ../../addon/qcomment/qcomment.php:57 -#: ../../addon.old/qcomment/qcomment.php:57 -msgid "Enter quick comments, one per line" -msgstr "输入快捷评论,一行一个" - -#: ../../addon/qcomment/qcomment.php:75 -#: ../../addon.old/qcomment/qcomment.php:75 -msgid "Quick Comment settings saved." -msgstr "快捷评论设置保存了。" - -#: ../../addon/openstreetmap/openstreetmap.php:95 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "Tile Server URL" -msgstr "砖服务器URL" - -#: ../../addon/openstreetmap/openstreetmap.php:95 -#: ../../addon.old/openstreetmap/openstreetmap.php:71 -msgid "" -"A list of public tile servers" -msgstr "一单公共砖服务器" - -#: ../../addon/openstreetmap/openstreetmap.php:96 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "Default zoom" -msgstr "默认变焦距" - -#: ../../addon/openstreetmap/openstreetmap.php:96 -#: ../../addon.old/openstreetmap/openstreetmap.php:72 -msgid "The default zoom level. (1:world, 18:highest)" -msgstr "默认变焦距。(1:世界, 18:最高)" - -#: ../../addon/group_text/group_text.php:46 -msgid "Group Text settings updated." -msgstr "组正文设置更新了。" - -#: ../../addon/group_text/group_text.php:76 -#: ../../addon.old/group_text/group_text.php:76 -msgid "Group Text" -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 "用光正文(无图片)组选择器在「组编辑」单" - -#: ../../addon/libravatar/libravatar.php:14 -#: ../../addon.old/libravatar/libravatar.php:14 -msgid "Could NOT install Libravatar successfully.
It requires PHP >= 5.3" -msgstr "安装不了Libravatar。
它要求PHP>=5.3" - -#: ../../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 "通用简介图片" - -#: ../../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 "随机的几何图案" - -#: ../../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 "怪物面子" - -#: ../../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 "电脑造成的面子" - -#: ../../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 "复古游乐场式面子" - -#: ../../addon/libravatar/libravatar.php:83 -#: ../../addon.old/libravatar/libravatar.php:83 +#: ../../mod/message.php:411 #, php-format -msgid "Your PHP version %s is lower than the required PHP >= 5.3." -msgstr "您PHP版体数%s是比要求的5.3少。" +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d通知" -#: ../../addon/libravatar/libravatar.php:84 -#: ../../addon.old/libravatar/libravatar.php:84 -msgid "This addon is not functional on your server." -msgstr "这个加件在您的服务器不可用的" +#: ../../mod/message.php:450 +msgid "Message not available." +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/message.php:520 +msgid "Delete message" +msgstr "删除消息" -#: ../../addon/libravatar/libravatar.php:93 -#: ../../addon.old/libravatar/libravatar.php:93 +#: ../../mod/message.php:548 msgid "" -"Gravatar addon is installed. Please disable the Gravatar addon.
The " -"Libravatar addon will fall back to Gravatar if nothing was found at " -"Libravatar." -msgstr "Gravatar加件安装着。请使Gravatar加件不可用。
如果找不到什么在Libravatar加件可依靠的是Gravatar。" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "没可用的安全交通。您可能会在发送人的简介页会回答。" -#: ../../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/message.php:552 +msgid "Send Reply" +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/mood.php:133 +msgid "Mood" +msgstr "心情" -#: ../../addon/libravatar/libravatar.php:112 -#: ../../addon.old/libravatar/libravatar.php:112 -msgid "Libravatar settings updated." -msgstr "Libravatar设置更新了。" +#: ../../mod/mood.php:134 +msgid "Set your current mood and tell your friends" +msgstr "选择现在的心情而告诉朋友们" -#: ../../addon/libertree/libertree.php:36 -#: ../../addon.old/libertree/libertree.php:36 -msgid "Post to libertree" -msgstr "转播到libertree" +#: ../../mod/network.php:181 +msgid "Search Results For:" +msgstr "搜索结果为:" -#: ../../addon/libertree/libertree.php:67 -#: ../../addon.old/libertree/libertree.php:67 -msgid "libertree Post Settings" -msgstr "libertree转播设置" +#: ../../mod/network.php:397 +msgid "Commented Order" +msgstr "评论时间顺序" -#: ../../addon/libertree/libertree.php:69 -#: ../../addon.old/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" -msgstr "使Libertree转播插件可用" +#: ../../mod/network.php:400 +msgid "Sort by Comment Date" +msgstr "按评论日期顺序排列" -#: ../../addon/libertree/libertree.php:74 -#: ../../addon.old/libertree/libertree.php:74 -msgid "Libertree API token" -msgstr "Libertree API令牌" +#: ../../mod/network.php:403 +msgid "Posted Order" +msgstr "贴时间顺序" -#: ../../addon/libertree/libertree.php:79 -#: ../../addon.old/libertree/libertree.php:79 -msgid "Libertree site URL" -msgstr "Libertree网站URL" +#: ../../mod/network.php:406 +msgid "Sort by Post Date" +msgstr "按发布日期顺序排列" -#: ../../addon/libertree/libertree.php:84 -#: ../../addon.old/libertree/libertree.php:84 -msgid "Post to Libertree by default" -msgstr "默认地转播到Libertree" +#: ../../mod/network.php:444 ../../mod/notifications.php:88 +msgid "Personal" +msgstr "私人" -#: ../../addon/altpager/altpager.php:46 -#: ../../addon.old/altpager/altpager.php:46 -msgid "Altpager settings updated." -msgstr "Altpager设置更新了。" +#: ../../mod/network.php:447 +msgid "Posts that mention or involve you" +msgstr "提或关您的文章" -#: ../../addon/altpager/altpager.php:83 -#: ../../addon.old/altpager/altpager.php:79 -msgid "Alternate Pagination Setting" -msgstr "供替换的分页设置" +#: ../../mod/network.php:453 +msgid "New" +msgstr "新" -#: ../../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/network.php:456 +msgid "Activity Stream - by date" +msgstr "活动河流-按日期" -#: ../../addon/altpager/altpager.php:99 -msgid "Force global use of the alternate pager" -msgstr "让大家用供替换的分页" +#: ../../mod/network.php:462 +msgid "Shared Links" +msgstr "共同环节" -#: ../../addon/altpager/altpager.php:100 -msgid "Each user chooses whether to use the alternate pager" -msgstr "每用户选择是否用供替换的分页" +#: ../../mod/network.php:465 +msgid "Interesting Links" +msgstr "有意思的超链接" -#: ../../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/network.php:471 +msgid "Starred" +msgstr "被星" -#: ../../addon/mathjax/mathjax.php:38 ../../addon.old/mathjax/mathjax.php:38 -msgid "Use the MathJax renderer" -msgstr "用MathJax表示器" +#: ../../mod/network.php:474 +msgid "Favourite Posts" +msgstr "最喜欢的文章" -#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74 -msgid "MathJax Base URL" -msgstr "MathJax基础URL" - -#: ../../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 "URL JavaScript文件应该包括为用MathJax。可以MathJax CDN或者别的MathJax安装。" - -#: ../../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设置更新了" - -#: ../../addon/editplain/editplain.php:76 -#: ../../addon.old/editplain/editplain.php:76 -msgid "Editplain Settings" -msgstr "Editplain设置" - -#: ../../addon/editplain/editplain.php:78 -#: ../../addon.old/editplain/editplain.php:78 -msgid "Disable richtext status editor" -msgstr "使richtext现状编辑 不能用" - -#: ../../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.
The Libravatar addon will fall back to Gravatar if " -"nothing was found at Libravatar." -msgstr "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。
Libravatar加件没找到在Libravatar的时候可依靠的是Gravatar" - -#: ../../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" - -#: ../../addon/gravatar/gravatar.php:97 -#: ../../addon.old/gravatar/gravatar.php:97 -msgid "Rating of images" -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" - -#: ../../addon/gravatar/gravatar.php:111 -#: ../../addon.old/gravatar/gravatar.php:111 -msgid "Gravatar settings updated." -msgstr "Gravatar设置更新了。" - -#: ../../addon/testdrive/testdrive.php:95 -#: ../../addon.old/testdrive/testdrive.php:95 -msgid "Your Friendica test account is about to expire." -msgstr "您Friendica化验账户快过期了。" - -#: ../../addon/testdrive/testdrive.php:96 -#: ../../addon.old/testdrive/testdrive.php:96 +#: ../../mod/network.php:546 #, 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。" +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成员从不安全网络。" -#: ../../addon/pageheader/pageheader.php:50 -#: ../../addon.old/pageheader/pageheader.php:50 -msgid "\"pageheader\" Settings" -msgstr "\"pageheader" +#: ../../mod/network.php:549 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "私人通信给这组回被公开。" -#: ../../addon/pageheader/pageheader.php:68 -#: ../../addon.old/pageheader/pageheader.php:68 -msgid "pageheader Settings saved." -msgstr "pageHeader配置保存了。" +#: ../../mod/network.php:596 ../../mod/content.php:119 +msgid "No such group" +msgstr "没有这个组" -#: ../../addon/ijpost/ijpost.php:39 ../../addon.old/ijpost/ijpost.php:39 -msgid "Post to Insanejournal" -msgstr "转播到Insanejournal" +#: ../../mod/network.php:607 ../../mod/content.php:130 +msgid "Group is empty" +msgstr "组没有成员" -#: ../../addon/ijpost/ijpost.php:70 ../../addon.old/ijpost/ijpost.php:70 -msgid "InsaneJournal Post Settings" -msgstr "Insanejournal转播设置" +#: ../../mod/network.php:611 ../../mod/content.php:134 +msgid "Group: " +msgstr "组:" -#: ../../addon/ijpost/ijpost.php:72 ../../addon.old/ijpost/ijpost.php:72 -msgid "Enable InsaneJournal Post Plugin" -msgstr "使InsaneJournal转播插件可用" +#: ../../mod/network.php:621 +msgid "Contact: " +msgstr "熟人:" -#: ../../addon/ijpost/ijpost.php:77 ../../addon.old/ijpost/ijpost.php:77 -msgid "InsaneJournal username" -msgstr "InsaneJournal用户名" +#: ../../mod/network.php:623 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "私人通信给这个人回被公开。" -#: ../../addon/ijpost/ijpost.php:82 ../../addon.old/ijpost/ijpost.php:82 -msgid "InsaneJournal password" -msgstr "InsaneJournal密码" +#: ../../mod/network.php:628 +msgid "Invalid contact." +msgstr "无效熟人。" -#: ../../addon/ijpost/ijpost.php:87 ../../addon.old/ijpost/ijpost.php:87 -msgid "Post to InsaneJournal by default" -msgstr "默认地转播到InsaneJournal" +#: ../../mod/community.php:23 +msgid "Not available." +msgstr "不可用的" -#: ../../addon/jappixmini/jappixmini.php:266 -#: ../../addon.old/jappixmini/jappixmini.php:266 -msgid "Jappix Mini addon settings" -msgstr "Jappix Mini加件设置" +#: ../../mod/photos.php:51 ../../boot.php:1878 +msgid "Photo Albums" +msgstr "相册" -#: ../../addon/jappixmini/jappixmini.php:268 -#: ../../addon.old/jappixmini/jappixmini.php:268 -msgid "Activate addon" -msgstr "使加件可用" +#: ../../mod/photos.php:66 ../../mod/photos.php:1222 ../../mod/photos.php:1795 +msgid "Upload New Photos" +msgstr "上传新照片" -#: ../../addon/jappixmini/jappixmini.php:271 -#: ../../addon.old/jappixmini/jappixmini.php:271 -msgid "" -"Do not insert the Jappixmini Chat-Widget into the webinterface" -msgstr "把Jappixmini聊小窗插入网用户界面" +#: ../../mod/photos.php:143 +msgid "Contact information unavailable" +msgstr "熟人信息不可用" -#: ../../addon/jappixmini/jappixmini.php:274 -#: ../../addon.old/jappixmini/jappixmini.php:274 -msgid "Jabber username" -msgstr "Jabber用户名" +#: ../../mod/photos.php:164 +msgid "Album not found." +msgstr "取回不了相册." -#: ../../addon/jappixmini/jappixmini.php:277 -#: ../../addon.old/jappixmini/jappixmini.php:277 -msgid "Jabber server" -msgstr "Jabber服务器" +#: ../../mod/photos.php:187 ../../mod/photos.php:199 ../../mod/photos.php:1200 +msgid "Delete Album" +msgstr "删除相册" -#: ../../addon/jappixmini/jappixmini.php:281 -#: ../../addon.old/jappixmini/jappixmini.php:281 -msgid "Jabber BOSH host" -msgstr "Jabber BOSH主机" +#: ../../mod/photos.php:197 +msgid "Do you really want to delete this photo album and all its photos?" +msgstr "您真的想删除这个相册和所有里面的照相吗?" -#: ../../addon/jappixmini/jappixmini.php:285 -#: ../../addon.old/jappixmini/jappixmini.php:285 -msgid "Jabber password" -msgstr "Jabber密码" +#: ../../mod/photos.php:276 ../../mod/photos.php:287 ../../mod/photos.php:1502 +msgid "Delete Photo" +msgstr "删除照片" -#: ../../addon/jappixmini/jappixmini.php:290 -#: ../../addon.old/jappixmini/jappixmini.php:290 -msgid "Encrypt Jabber password with Friendica password (recommended)" -msgstr "把Jabber密码跟Friendica密码加密(推荐的)" +#: ../../mod/photos.php:285 +msgid "Do you really want to delete this photo?" +msgstr "您真的想删除这个照相吗?" -#: ../../addon/jappixmini/jappixmini.php:293 -#: ../../addon.old/jappixmini/jappixmini.php:293 -msgid "Friendica password" -msgstr "Friendica密码" - -#: ../../addon/jappixmini/jappixmini.php:296 -#: ../../addon.old/jappixmini/jappixmini.php:296 -msgid "Approve subscription requests from Friendica contacts automatically" -msgstr "自动地批准从Friendica熟人的订阅要求" - -#: ../../addon/jappixmini/jappixmini.php:299 -#: ../../addon.old/jappixmini/jappixmini.php:299 -msgid "Subscribe to Friendica contacts automatically" -msgstr "自动地订阅Friendica熟人" - -#: ../../addon/jappixmini/jappixmini.php:302 -#: ../../addon.old/jappixmini/jappixmini.php:302 -msgid "Purge internal list of jabber addresses of contacts" -msgstr "把熟人jabber地址从内部单" - -#: ../../addon/jappixmini/jappixmini.php:308 -#: ../../addon.old/jappixmini/jappixmini.php:308 -msgid "Add contact" -msgstr "加熟人" - -#: ../../addon/viewsrc/viewsrc.php:39 ../../addon.old/viewsrc/viewsrc.php:37 -msgid "View Source" -msgstr "看源代码" - -#: ../../addon/statusnet/statusnet.php:138 -#: ../../addon.old/statusnet/statusnet.php:134 -msgid "Post to StatusNet" -msgstr "发送到StatusNet" - -#: ../../addon/statusnet/statusnet.php:180 -#: ../../addon.old/statusnet/statusnet.php:176 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "请联系您的网站行政人员。
提供的API URL无效。" - -#: ../../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在您输入的路径。" - -#: ../../addon/statusnet/statusnet.php:238 -#: ../../addon.old/statusnet/statusnet.php:232 -msgid "StatusNet settings updated." -msgstr "StatusNet设置更新了。" - -#: ../../addon/statusnet/statusnet.php:269 -#: ../../addon.old/statusnet/statusnet.php:257 -msgid "StatusNet Posting Settings" -msgstr "StatusNet发送设置" - -#: ../../addon/statusnet/statusnet.php:283 -#: ../../addon.old/statusnet/statusnet.php:271 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "综合可用的StatusNet OAuthKeys" - -#: ../../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(看下)。" - -#: ../../addon/statusnet/statusnet.php:292 -#: ../../addon.old/statusnet/statusnet.php:280 -msgid "Provide your own OAuth Credentials" -msgstr "提供您自己的OAuth证件" - -#: ../../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.
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基础根。
您登记您的OAuth钥匙双前问行政人员已经有没有钥匙双为这个Friendica安装在您最喜欢的StatusNet安装。" - -#: ../../addon/statusnet/statusnet.php:295 -#: ../../addon.old/statusnet/statusnet.php:283 -msgid "OAuth Consumer Key" -msgstr "Oauth消费者钥匙" - -#: ../../addon/statusnet/statusnet.php:298 -#: ../../addon.old/statusnet/statusnet.php:286 -msgid "OAuth Consumer Secret" -msgstr "Oauth消费者密码" - -#: ../../addon/statusnet/statusnet.php:301 -#: ../../addon.old/statusnet/statusnet.php:289 -msgid "Base API Path (remember the trailing /)" -msgstr "基础API地址(注意最后的/)" - -#: ../../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 public posts will be posted" -" to StatusNet." -msgstr "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。" - -#: ../../addon/statusnet/statusnet.php:323 -#: ../../addon.old/statusnet/statusnet.php:311 -msgid "Log in with StatusNet" -msgstr "用StatusNet登记" - -#: ../../addon/statusnet/statusnet.php:325 -#: ../../addon.old/statusnet/statusnet.php:313 -msgid "Copy the security code from StatusNet here" -msgstr "复制安全密码从StatusNet这儿" - -#: ../../addon/statusnet/statusnet.php:331 -#: ../../addon.old/statusnet/statusnet.php:319 -msgid "Cancel Connection Process" -msgstr "注销连接过程 " - -#: ../../addon/statusnet/statusnet.php:333 -#: ../../addon.old/statusnet/statusnet.php:321 -msgid "Current StatusNet API is" -msgstr "现在StatusNet API是" - -#: ../../addon/statusnet/statusnet.php:334 -#: ../../addon.old/statusnet/statusnet.php:322 -msgid "Cancel StatusNet Connection" -msgstr "注销StatusNet连接" - -#: ../../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 "现在连接到:" - -#: ../../addon/statusnet/statusnet.php:346 -#: ../../addon.old/statusnet/statusnet.php:334 -msgid "" -"If enabled all your public 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 "如果使可用的都您公开的文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。" - -#: ../../addon/statusnet/statusnet.php:348 -#: ../../addon.old/statusnet/statusnet.php:336 -msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "注意: 由于您的隐私设置(隐藏您的简介内容为生看者?)超链接可能包括在公文章转播到StatusNets会带领来客到空白页讲他看您的简介被限制。" - -#: ../../addon/statusnet/statusnet.php:351 -#: ../../addon.old/statusnet/statusnet.php:339 -msgid "Allow posting to StatusNet" -msgstr "许放在StatusNet" - -#: ../../addon/statusnet/statusnet.php:354 -#: ../../addon.old/statusnet/statusnet.php:342 -msgid "Send public postings to StatusNet by default" -msgstr "默认发送公开文章在StatusNet" - -#: ../../addon/statusnet/statusnet.php:358 -msgid "" -"Mirror all posts from statusnet that are no replies or repeated messages" -msgstr "复制所有文章从statusnet除了回答或重复的通知以外" - -#: ../../addon/statusnet/statusnet.php:362 -msgid "Shortening method that optimizes the post" -msgstr "缩短方法优化文章" - -#: ../../addon/statusnet/statusnet.php:366 -#: ../../addon.old/statusnet/statusnet.php:345 -msgid "Send linked #-tags and @-names to StatusNet" -msgstr "转播连接的#标签盒@名到StatusNet" - -#: ../../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设置" - -#: ../../addon/statusnet/statusnet.php:745 -#: ../../addon.old/statusnet/statusnet.php:568 -msgid "API URL" -msgstr "API URL" - -#: ../../addon/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -#: ../../addon.old/infiniteimprobabilitydrive/infiniteimprobabilitydrive.php:19 -msgid "Infinite Improbability Drive" -msgstr "无穷不至于机车" - -#: ../../addon/tumblr/tumblr.php:144 -msgid "You are now authenticated to tumblr." -msgstr "现在tumblr证明您是真的" - -#: ../../addon/tumblr/tumblr.php:145 -msgid "return to the connector page" -msgstr "会连接器页" - -#: ../../addon/tumblr/tumblr.php:158 ../../addon.old/tumblr/tumblr.php:36 -msgid "Post to Tumblr" -msgstr "发送到Tumblr" - -#: ../../addon/tumblr/tumblr.php:185 ../../addon.old/tumblr/tumblr.php:67 -msgid "Tumblr Post Settings" -msgstr "Tumblr发送设置" - -#: ../../addon/tumblr/tumblr.php:188 -msgid "(Re-)Authenticate your tumblr page" -msgstr "再认证您的tumblr页" - -#: ../../addon/tumblr/tumblr.php:192 ../../addon.old/tumblr/tumblr.php:69 -msgid "Enable Tumblr Post Plugin" -msgstr "使Tumblr发送插件能够" - -#: ../../addon/tumblr/tumblr.php:197 ../../addon.old/tumblr/tumblr.php:84 -msgid "Post to Tumblr by default" -msgstr "默认地给Tumblr发送" - -#: ../../addon/tumblr/tumblr.php:217 -msgid "Post to page:" -msgstr "放在页:" - -#: ../../addon/tumblr/tumblr.php:228 -msgid "You are not authenticated to tumblr" -msgstr "tumblr没证明您是真的" - -#: ../../addon/numfriends/numfriends.php:46 -#: ../../addon.old/numfriends/numfriends.php:46 -msgid "Numfriends settings updated." -msgstr "Numfriends设置更新了" - -#: ../../addon/numfriends/numfriends.php:77 -#: ../../addon.old/numfriends/numfriends.php:77 -msgid "Numfriends Settings" -msgstr "Numfriends设置" - -#: ../../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 "多少熟人表示在简介工具栏" - -#: ../../addon/gnot/gnot.php:48 ../../addon.old/gnot/gnot.php:48 -msgid "Gnot settings updated." -msgstr "Gnot设置更新了。" - -#: ../../addon/gnot/gnot.php:79 ../../addon.old/gnot/gnot.php:79 -msgid "Gnot Settings" -msgstr "Gnot设置" - -#: ../../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和匿名话题行。" - -#: ../../addon/gnot/gnot.php:82 ../../addon.old/gnot/gnot.php:82 -msgid "Enable this plugin/addon?" -msgstr "使这个插件/加件可用?" - -#: ../../addon/gnot/gnot.php:97 ../../addon.old/gnot/gnot.php:97 +#: ../../mod/photos.php:656 #, php-format -msgid "[Friendica:Notify] Comment to conversation #%d" -msgstr "[Friendica:Notify]评论在交流#%d" +msgid "%1$s was tagged in %2$s by %3$s" +msgstr "%1$s被%3$s标签在%2$s" -#: ../../addon/wppost/wppost.php:42 ../../addon.old/wppost/wppost.php:42 -msgid "Post to Wordpress" -msgstr "发送到Wordpress" +#: ../../mod/photos.php:656 +msgid "a photo" +msgstr "一张照片" -#: ../../addon/wppost/wppost.php:76 ../../addon.old/wppost/wppost.php:76 -msgid "WordPress Post Settings" -msgstr "Wordpress发送设置" +#: ../../mod/photos.php:769 +msgid "Image file is empty." +msgstr "图片文件空的。" -#: ../../addon/wppost/wppost.php:78 ../../addon.old/wppost/wppost.php:78 -msgid "Enable WordPress Post Plugin" -msgstr "使Wordpress发送插件可用" +#: ../../mod/photos.php:924 +msgid "No photos selected" +msgstr "没有照片挑选了" -#: ../../addon/wppost/wppost.php:83 ../../addon.old/wppost/wppost.php:83 -msgid "WordPress username" -msgstr "Wordpress用户名" +#: ../../mod/photos.php:1025 +msgid "Access to this item is restricted." +msgstr "这个项目使用权限的。" -#: ../../addon/wppost/wppost.php:88 ../../addon.old/wppost/wppost.php:88 -msgid "WordPress password" -msgstr "Wordpress密码" - -#: ../../addon/wppost/wppost.php:93 ../../addon.old/wppost/wppost.php:93 -msgid "WordPress API URL" -msgstr "WordPress API URL" - -#: ../../addon/wppost/wppost.php:98 ../../addon.old/wppost/wppost.php:98 -msgid "Post to WordPress by default" -msgstr "默认地发送到Wordpress" - -#: ../../addon/wppost/wppost.php:103 ../../addon.old/wppost/wppost.php:103 -msgid "Provide a backlink to the Friendica post" -msgstr "输入反向链接到Friendica文章" - -#: ../../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" - -#: ../../addon/wppost/wppost.php:207 ../../addon.old/wppost/wppost.php:207 -msgid "Read the original post and comment stream on Friendica" -msgstr "看原来文章和评论溪流在Friendica" - -#: ../../addon/showmore/showmore.php:38 -#: ../../addon.old/showmore/showmore.php:38 -msgid "\"Show more\" Settings" -msgstr "「看更多」设置" - -#: ../../addon/showmore/showmore.php:41 -#: ../../addon.old/showmore/showmore.php:41 -msgid "Enable Show More" -msgstr "使看更多能用" - -#: ../../addon/showmore/showmore.php:44 -#: ../../addon.old/showmore/showmore.php:44 -msgid "Cutting posts after how much characters" -msgstr "剪掉文章多少字后" - -#: ../../addon/showmore/showmore.php:65 -#: ../../addon.old/showmore/showmore.php:65 -msgid "Show More Settings saved." -msgstr "看更多设置保存了。" - -#: ../../addon/piwik/piwik.php:79 ../../addon.old/piwik/piwik.php:79 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "这个网站用Piwik分析工具追踪 。" - -#: ../../addon/piwik/piwik.php:82 ../../addon.old/piwik/piwik.php:82 +#: ../../mod/photos.php:1088 #, php-format +msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage." +msgstr "您用%2$.2f兆字节的%1$.2f兆字节照片存储。" + +#: ../../mod/photos.php:1123 +msgid "Upload Photos" +msgstr "上传照片" + +#: ../../mod/photos.php:1127 ../../mod/photos.php:1195 +msgid "New album name: " +msgstr "新册名:" + +#: ../../mod/photos.php:1128 +msgid "or existing album name: " +msgstr "或现有册名" + +#: ../../mod/photos.php:1129 +msgid "Do not show a status post for this upload" +msgstr "别显示现状报到关于这个上传" + +#: ../../mod/photos.php:1131 ../../mod/photos.php:1497 +msgid "Permissions" +msgstr "权利" + +#: ../../mod/photos.php:1142 +msgid "Private Photo" +msgstr "私人照相" + +#: ../../mod/photos.php:1143 +msgid "Public Photo" +msgstr "公开照相" + +#: ../../mod/photos.php:1210 +msgid "Edit Album" +msgstr "编照片册" + +#: ../../mod/photos.php:1216 +msgid "Show Newest First" +msgstr "先表示最新的" + +#: ../../mod/photos.php:1218 +msgid "Show Oldest First" +msgstr "先表示最老的" + +#: ../../mod/photos.php:1251 ../../mod/photos.php:1778 +msgid "View Photo" +msgstr "看照片" + +#: ../../mod/photos.php:1286 +msgid "Permission denied. Access to this item may be restricted." +msgstr "无权利。用这个项目可能受限制。" + +#: ../../mod/photos.php:1288 +msgid "Photo not available" +msgstr "照片不可获得的 " + +#: ../../mod/photos.php:1344 +msgid "View photo" +msgstr "看照片" + +#: ../../mod/photos.php:1344 +msgid "Edit photo" +msgstr "编辑照片" + +#: ../../mod/photos.php:1345 +msgid "Use as profile photo" +msgstr "用为资料图" + +#: ../../mod/photos.php:1351 ../../mod/content.php:643 +#: ../../object/Item.php:106 +msgid "Private Message" +msgstr "私人的新闻" + +#: ../../mod/photos.php:1370 +msgid "View Full Size" +msgstr "看全尺寸" + +#: ../../mod/photos.php:1444 +msgid "Tags: " +msgstr "标签:" + +#: ../../mod/photos.php:1447 +msgid "[Remove any tag]" +msgstr "[删除任何标签]" + +#: ../../mod/photos.php:1487 +msgid "Rotate CW (right)" +msgstr "顺时针地转动(左)" + +#: ../../mod/photos.php:1488 +msgid "Rotate CCW (left)" +msgstr "反顺时针地转动(右)" + +#: ../../mod/photos.php:1490 +msgid "New album name" +msgstr "新册名" + +#: ../../mod/photos.php:1493 +msgid "Caption" +msgstr "字幕" + +#: ../../mod/photos.php:1495 +msgid "Add a Tag" +msgstr "加标签" + +#: ../../mod/photos.php:1499 msgid "" -"If you do not want that your visits are logged this way you can" -" set a cookie to prevent Piwik from tracking further visits of the site " -"(opt-out)." -msgstr "如果您不想您访问这样记录您可以用一个cookie防Piwik追踪未来的访问(选择性退出)。" +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +msgstr "例子:@zhang, @Zhang_San, @li@example.com, #Beijing, #ktv" -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 -msgid "Piwik Base URL" -msgstr "Piwik基础URL" +#: ../../mod/photos.php:1508 +msgid "Private photo" +msgstr "私人照相" -#: ../../addon/piwik/piwik.php:90 ../../addon.old/piwik/piwik.php:90 +#: ../../mod/photos.php:1509 +msgid "Public photo" +msgstr "公开照相" + +#: ../../mod/photos.php:1529 ../../mod/content.php:707 +#: ../../object/Item.php:223 +msgid "I like this (toggle)" +msgstr "我喜欢这(交替)" + +#: ../../mod/photos.php:1530 ../../mod/content.php:708 +#: ../../object/Item.php:224 +msgid "I don't like this (toggle)" +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 "这是你" + +#: ../../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 "评论" + +#: ../../mod/photos.php:1784 +msgid "View Album" +msgstr "看照片册" + +#: ../../mod/photos.php:1793 +msgid "Recent Photos" +msgstr "最近的照片" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendica" +msgstr "Friendica欢迎你" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "新的成员一览表" + +#: ../../mod/newmember.php:12 msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" -msgstr "绝对道路到Piwik安装。(没有协议(http/s)跟斜线后缀)" +"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 "我们想提高几个建议和超链接为让你的经历愉快。点击一个项目为了访问相应的网页。你最初登记两周以上一个环节到这儿来在你的首页,然后悄声地消失。" -#: ../../addon/piwik/piwik.php:91 ../../addon.old/piwik/piwik.php:91 -msgid "Site ID" -msgstr "网站ID" +#: ../../mod/newmember.php:14 +msgid "Getting Started" +msgstr "开始方法" -#: ../../addon/piwik/piwik.php:92 ../../addon.old/piwik/piwik.php:92 -msgid "Show opt-out cookie link?" -msgstr " 显示选择性退出cookie按钮?" +#: ../../mod/newmember.php:18 +msgid "Friendica Walk-Through" +msgstr "Friendica游览" -#: ../../addon/piwik/piwik.php:93 ../../addon.old/piwik/piwik.php:93 -msgid "Asynchronous tracking" -msgstr "异步追踪" - -#: ../../addon/twitter/twitter.php:77 ../../addon.old/twitter/twitter.php:73 -msgid "Post to Twitter" -msgstr "发送到在Twitter" - -#: ../../addon/twitter/twitter.php:129 ../../addon.old/twitter/twitter.php:122 -msgid "Twitter settings updated." -msgstr "Twitter设置更新了。" - -#: ../../addon/twitter/twitter.php:157 ../../addon.old/twitter/twitter.php:146 -msgid "Twitter Posting Settings" -msgstr "Twitter发送设置" - -#: ../../addon/twitter/twitter.php:164 ../../addon.old/twitter/twitter.php:153 +#: ../../mod/newmember.php:18 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "找不到Twitter的消费钥匙双。请联系您的网页行政人员。" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "在您的快开始页-看段介绍您的简介和网络分页,结新联系,而找新组为加入。" -#: ../../addon/twitter/twitter.php:183 ../../addon.old/twitter/twitter.php:172 +#: ../../mod/newmember.php:26 +msgid "Go to Your Settings" +msgstr "您的设置" + +#: ../../mod/newmember.php:26 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 public posts will" -" be posted to Twitter." -msgstr "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的公开文章被发送到Twitter。" +"On your Settings 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 "在你的设置页 - 改变你的最初的密码。也记住你的客户地址。这好像一个电子邮件地址,是用于在自由社会化网络交朋友们有用的。" -#: ../../addon/twitter/twitter.php:184 ../../addon.old/twitter/twitter.php:173 -msgid "Log in with Twitter" -msgstr "用Twitter登记" - -#: ../../addon/twitter/twitter.php:186 ../../addon.old/twitter/twitter.php:175 -msgid "Copy the PIN from Twitter here" -msgstr "复制Twitter密码这儿" - -#: ../../addon/twitter/twitter.php:201 ../../addon.old/twitter/twitter.php:190 +#: ../../mod/newmember.php:28 msgid "" -"If enabled all your public 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 "如果使可用的都您公开的文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。" +"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 "校对别的设置,特别隐私设置。一个未出版的目录项目是跟未出版的电话号码一样。平时,你可能应该出版你的目录项目-除非都你的朋友们和可交的朋友们已经知道确切地怎么找你。" -#: ../../addon/twitter/twitter.php:203 ../../addon.old/twitter/twitter.php:192 +#: ../../mod/newmember.php:36 ../../mod/profile_photo.php:244 +msgid "Upload Profile Photo" +msgstr "上传简历照片" + +#: ../../mod/newmember.php:36 msgid "" -"Note: Due your privacy settings (Hide your profile " -"details from unknown viewers?) 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 "注意:由于您的隐私设置(隐藏您的简介内容为生人?)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。" +"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 "上传一张简历照片除非你已经做过。研究表明有真正自己的照片的人比没有的交朋友们可能多十倍。" -#: ../../addon/twitter/twitter.php:206 ../../addon.old/twitter/twitter.php:195 -msgid "Allow posting to Twitter" -msgstr "允许发送到Twitter" +#: ../../mod/newmember.php:38 +msgid "Edit Your Profile" +msgstr "编辑您的简介" -#: ../../addon/twitter/twitter.php:209 ../../addon.old/twitter/twitter.php:198 -msgid "Send public postings to Twitter by default" -msgstr "默认地发送公开文章到Twitter" - -#: ../../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:221 ../../addon.old/twitter/twitter.php:201 -msgid "Send linked #-tags and @-names to Twitter" -msgstr "转播连接的#标签盒@名到Twitter" - -#: ../../addon/twitter/twitter.php:558 ../../addon.old/twitter/twitter.php:396 -msgid "Consumer key" -msgstr "钥匙(Consumer key)" - -#: ../../addon/twitter/twitter.php:559 ../../addon.old/twitter/twitter.php:397 -msgid "Consumer secret" -msgstr "密码(Consumer secret)" - -#: ../../addon/twitter/twitter.php:560 -msgid "Name of the Twitter Application" -msgstr "Twitter应用名" - -#: ../../addon/twitter/twitter.php:560 +#: ../../mod/newmember.php:38 msgid "" -"set this to avoid mirroring postings from ~friendica back to ~friendica" -msgstr "选择这个为避免复制文章从~friendica回归~friendica" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。" -#: ../../addon/irc/irc.php:44 ../../addon.old/irc/irc.php:44 -msgid "IRC Settings" -msgstr "IRC设置" +#: ../../mod/newmember.php:40 +msgid "Profile Keywords" +msgstr "简介关键字" -#: ../../addon/irc/irc.php:46 ../../addon.old/irc/irc.php:46 -msgid "Channel(s) to auto connect (comma separated)" -msgstr "频道要自动地连接(逗号分隔)" - -#: ../../addon/irc/irc.php:51 ../../addon.old/irc/irc.php:51 -msgid "Popular Channels (comma separated)" -msgstr "流行频道(逗号分隔)" - -#: ../../addon/irc/irc.php:69 ../../addon.old/irc/irc.php:69 -msgid "IRC settings saved." -msgstr "IRC设置保存了。" - -#: ../../addon/irc/irc.php:74 ../../addon.old/irc/irc.php:74 -msgid "IRC Chatroom" -msgstr "IRC聊间" - -#: ../../addon/irc/irc.php:96 ../../addon.old/irc/irc.php:96 -msgid "Popular Channels" -msgstr "流行频道" - -#: ../../addon/fromapp/fromapp.php:38 ../../addon.old/fromapp/fromapp.php:38 -msgid "Fromapp settings updated." -msgstr "Fromapp设置更新了" - -#: ../../addon/fromapp/fromapp.php:64 ../../addon.old/fromapp/fromapp.php:64 -msgid "FromApp Settings" -msgstr "Fromapp设置" - -#: ../../addon/fromapp/fromapp.php:66 ../../addon.old/fromapp/fromapp.php:66 +#: ../../mod/newmember.php:40 msgid "" -"The application name you would like to show your posts originating from." -msgstr "应用名您想当您文章的来源" +"Set some public keywords for your default profile which describe your " +"interests. We may be able to find other people with similar interests and " +"suggest friendships." +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/newmember.php:44 +msgid "Connecting" +msgstr "连接着" -#: ../../addon/blogger/blogger.php:42 ../../addon.old/blogger/blogger.php:42 -msgid "Post to blogger" -msgstr "转播到blogger" +#: ../../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朋友们和交谈。" -#: ../../addon/blogger/blogger.php:74 ../../addon.old/blogger/blogger.php:74 -msgid "Blogger Post Settings" -msgstr "Blogger转播设置" +#: ../../mod/newmember.php:51 +msgid "" +"If this is your own personal server, installing the Facebook addon " +"may ease your transition to the free social web." +msgstr "要是这是你的私利服务器,安装Facebook插件会把你的过渡到自由社会化网络自在一点。" -#: ../../addon/blogger/blogger.php:76 ../../addon.old/blogger/blogger.php:76 -msgid "Enable Blogger Post Plugin" -msgstr "使Blogger转播插件可用" +#: ../../mod/newmember.php:56 +msgid "Importing Emails" +msgstr "进口着邮件" -#: ../../addon/blogger/blogger.php:81 ../../addon.old/blogger/blogger.php:81 -msgid "Blogger username" -msgstr "Blogger用户名" +#: ../../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 "输入你电子邮件使用信息在插销设置页,要是你想用你的电子邮件进口和互动朋友们或邮件表。" -#: ../../addon/blogger/blogger.php:86 ../../addon.old/blogger/blogger.php:86 -msgid "Blogger password" -msgstr "Blogger密码" +#: ../../mod/newmember.php:58 +msgid "Go to Your Contacts Page" +msgstr "您的熟人页" -#: ../../addon/blogger/blogger.php:91 ../../addon.old/blogger/blogger.php:91 -msgid "Blogger API URL" -msgstr "Blogger API URL" +#: ../../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 Add New Contact dialog." +msgstr "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。" -#: ../../addon/blogger/blogger.php:96 ../../addon.old/blogger/blogger.php:96 -msgid "Post to Blogger by default" -msgstr "默认地转播到Blogger" +#: ../../mod/newmember.php:60 +msgid "Go to Your Site's Directory" +msgstr "您网站的目录" -#: ../../addon/posterous/posterous.php:37 -#: ../../addon.old/posterous/posterous.php:37 -msgid "Post to Posterous" -msgstr "发送往Posterous" +#: ../../mod/newmember.php:60 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "目录页让您找别人在这个网络或别的同盟的网站。找一个连接关注按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。" -#: ../../addon/posterous/posterous.php:70 -#: ../../addon.old/posterous/posterous.php:70 -msgid "Posterous Post Settings" -msgstr "Posterous发送设置" +#: ../../mod/newmember.php:62 +msgid "Finding New People" +msgstr "找新人" -#: ../../addon/posterous/posterous.php:72 -#: ../../addon.old/posterous/posterous.php:72 -msgid "Enable Posterous Post Plugin" -msgstr "使Posterous发送插件可用的" +#: ../../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小时后。" -#: ../../addon/posterous/posterous.php:77 -#: ../../addon.old/posterous/posterous.php:77 -msgid "Posterous login" -msgstr "Posterous登记名" +#: ../../mod/newmember.php:70 +msgid "Group Your Contacts" +msgstr "把熟人组起来" -#: ../../addon/posterous/posterous.php:82 -#: ../../addon.old/posterous/posterous.php:82 -msgid "Posterous password" -msgstr "Posterous密码" +#: ../../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 "您交朋友们后,组织他们分私人交流组在您熟人页的边栏,您会私下地跟组交流在您的网络页。" -#: ../../addon/posterous/posterous.php:87 -#: ../../addon.old/posterous/posterous.php:87 -msgid "Posterous site ID" -msgstr "Posterous网站身份证明" +#: ../../mod/newmember.php:73 +msgid "Why Aren't My Posts Public?" +msgstr "我文章怎么没公开的?" -#: ../../addon/posterous/posterous.php:92 -#: ../../addon.old/posterous/posterous.php:92 -msgid "Posterous API token" -msgstr "Posterous API令牌" +#: ../../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尊敬您的隐私。默认是您文章只被您朋友们看。更多消息在帮助部分在上面的链接。" -#: ../../addon/posterous/posterous.php:97 -#: ../../addon.old/posterous/posterous.php:97 -msgid "Post to Posterous by default" -msgstr "默认地发送往Posterous" +#: ../../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 help pages may be consulted for detail on other program" +" features and resources." +msgstr "我们帮助页可查阅到详情关于别的编程特点和资源。" + +#: ../../mod/profile.php:21 ../../boot.php:1246 +msgid "Requested profile is not available." +msgstr "要求的简介联系不上的。" + +#: ../../mod/profile.php:180 +msgid "Tips for New Members" +msgstr "提示对新成员" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "无效要求身份号。" + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:165 +#: ../../mod/notifications.php:211 +msgid "Discard" +msgstr "丢弃" + +#: ../../mod/notifications.php:78 +msgid "System" +msgstr "系统" + +#: ../../mod/notifications.php:122 +msgid "Show Ignored Requests" +msgstr "显示不理的要求" + +#: ../../mod/notifications.php:122 +msgid "Hide Ignored Requests" +msgstr "隐藏不理的要求" + +#: ../../mod/notifications.php:149 ../../mod/notifications.php:195 +msgid "Notification type: " +msgstr "通知种类:" + +#: ../../mod/notifications.php:150 +msgid "Friend Suggestion" +msgstr "朋友建议" + +#: ../../mod/notifications.php:152 +#, php-format +msgid "suggested by %s" +msgstr "由%s建议的" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "Post a new friend activity" +msgstr "表新朋友活动" + +#: ../../mod/notifications.php:158 ../../mod/notifications.php:205 +msgid "if applicable" +msgstr "或适用" + +#: ../../mod/notifications.php:181 +msgid "Claims to be known to you: " +msgstr "声称被您认识:" + +#: ../../mod/notifications.php:181 +msgid "yes" +msgstr "是" + +#: ../../mod/notifications.php:181 +msgid "no" +msgstr "否" + +#: ../../mod/notifications.php:188 +msgid "Approve as: " +msgstr "批准作为" + +#: ../../mod/notifications.php:189 +msgid "Friend" +msgstr "朋友" + +#: ../../mod/notifications.php:190 +msgid "Sharer" +msgstr "分享者" + +#: ../../mod/notifications.php:190 +msgid "Fan/Admirer" +msgstr "迷/赞赏者" + +#: ../../mod/notifications.php:196 +msgid "Friend/Connect Request" +msgstr "友谊/联络要求" + +#: ../../mod/notifications.php:196 +msgid "New Follower" +msgstr "新关注者:" + +#: ../../mod/notifications.php:217 +msgid "No introductions." +msgstr "没有介绍。" + +#: ../../mod/notifications.php:257 ../../mod/notifications.php:382 +#: ../../mod/notifications.php:469 +#, php-format +msgid "%s liked %s's post" +msgstr "%s喜欢了%s的消息" + +#: ../../mod/notifications.php:266 ../../mod/notifications.php:391 +#: ../../mod/notifications.php:478 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s不喜欢了%s的消息" + +#: ../../mod/notifications.php:280 ../../mod/notifications.php:405 +#: ../../mod/notifications.php:492 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s成为%s的朋友" + +#: ../../mod/notifications.php:287 ../../mod/notifications.php:412 +#, php-format +msgid "%s created a new post" +msgstr "%s造成新文章" + +#: ../../mod/notifications.php:288 ../../mod/notifications.php:413 +#: ../../mod/notifications.php:501 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s便条%s的文章" + +#: ../../mod/notifications.php:302 +msgid "No more network notifications." +msgstr "没有别的网络通信。" + +#: ../../mod/notifications.php:306 +msgid "Network Notifications" +msgstr "网络通知" + +#: ../../mod/notifications.php:332 ../../mod/notify.php:61 +msgid "No more system notifications." +msgstr "没别系统通知。" + +#: ../../mod/notifications.php:336 ../../mod/notify.php:65 +msgid "System Notifications" +msgstr "系统通知" + +#: ../../mod/notifications.php:427 +msgid "No more personal notifications." +msgstr "没有别的私人通信。" + +#: ../../mod/notifications.php:431 +msgid "Personal Notifications" +msgstr "私人通知" + +#: ../../mod/notifications.php:508 +msgid "No more home notifications." +msgstr "没有别的家通信。" + +#: ../../mod/notifications.php:512 +msgid "Home Notifications" +msgstr "主页通知" + +#: ../../mod/oexchange.php:25 +msgid "Post successful." +msgstr "评论发表了。" + +#: ../../mod/openid.php:24 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID协议错误。没ID还。 " + +#: ../../mod/openid.php:53 +msgid "" +"Account not found and OpenID registration is not permitted on this site." +msgstr "找不到账户和OpenID注册不允许。" + +#: ../../mod/profile_photo.php:44 +msgid "Image uploaded but image cropping failed." +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]失灵。" + +#: ../../mod/profile_photo.php:118 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "万一新照片一会出现,换档重新加载或者成为空浏览器高速缓存。" + +#: ../../mod/profile_photo.php:128 +msgid "Unable to process image" +msgstr "不能处理照片" + +#: ../../mod/profile_photo.php:242 +msgid "Upload File:" +msgstr "上传文件:" + +#: ../../mod/profile_photo.php:243 +msgid "Select a profile:" +msgstr "选择一个简介" + +#: ../../mod/profile_photo.php:248 +msgid "skip this step" +msgstr "略过这步" + +#: ../../mod/profile_photo.php:248 +msgid "select a photo from your photo albums" +msgstr "从您的照片册选择一片。" + +#: ../../mod/profile_photo.php:262 +msgid "Crop Image" +msgstr "修剪照片" + +#: ../../mod/profile_photo.php:263 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "请调图片剪裁为最好看。" + +#: ../../mod/profile_photo.php:265 +msgid "Done Editing" +msgstr "编完了" + +#: ../../mod/profile_photo.php:299 +msgid "Image uploaded successfully." +msgstr "照片成功地上传了" + +#: ../../mod/content.php:626 ../../object/Item.php:352 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d评论" + +#: ../../mod/content.php:707 ../../object/Item.php:223 +msgid "like" +msgstr "喜欢" + +#: ../../mod/content.php:708 ../../object/Item.php:224 +msgid "dislike" +msgstr "讨厌" + +#: ../../mod/content.php:710 ../../object/Item.php:226 +msgid "Share this" +msgstr "分享这个" + +#: ../../mod/content.php:710 ../../object/Item.php:226 +msgid "share" +msgstr "分享" + +#: ../../mod/content.php:734 ../../object/Item.php:644 +msgid "Bold" +msgstr "粗体字 " + +#: ../../mod/content.php:735 ../../object/Item.php:645 +msgid "Italic" +msgstr "斜体 " + +#: ../../mod/content.php:736 ../../object/Item.php:646 +msgid "Underline" +msgstr "下划线" + +#: ../../mod/content.php:737 ../../object/Item.php:647 +msgid "Quote" +msgstr "引语" + +#: ../../mod/content.php:738 ../../object/Item.php:648 +msgid "Code" +msgstr "源代码" + +#: ../../mod/content.php:739 ../../object/Item.php:649 +msgid "Image" +msgstr "图片" + +#: ../../mod/content.php:740 ../../object/Item.php:650 +msgid "Link" +msgstr "环节" + +#: ../../mod/content.php:741 ../../object/Item.php:651 +msgid "Video" +msgstr "录像" + +#: ../../mod/content.php:776 ../../object/Item.php:202 +msgid "add star" +msgstr "加星" + +#: ../../mod/content.php:777 ../../object/Item.php:203 +msgid "remove star" +msgstr "消星" + +#: ../../mod/content.php:778 ../../object/Item.php:204 +msgid "toggle star status" +msgstr "转变星现状" + +#: ../../mod/content.php:781 ../../object/Item.php:207 +msgid "starred" +msgstr "被贴星" + +#: ../../mod/content.php:782 ../../object/Item.php:212 +msgid "add tag" +msgstr "加标签" + +#: ../../mod/content.php:786 ../../object/Item.php:123 +msgid "save to folder" +msgstr "保存在文件夹" + +#: ../../mod/content.php:877 ../../object/Item.php:299 +msgid "to" +msgstr "至" + +#: ../../mod/content.php:878 ../../object/Item.php:301 +msgid "Wall-to-Wall" +msgstr "从墙到墙" + +#: ../../mod/content.php:879 ../../object/Item.php:302 +msgid "via Wall-To-Wall:" +msgstr "通过从墙到墙" + +#: ../../object/Item.php:300 +msgid "via" +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 +#: ../../view/theme/dispy/config.php:72 ../../view/theme/quattro/config.php:66 msgid "Theme settings" msgstr "主题设置" @@ -7907,140 +9692,6 @@ msgstr "选择主题宽" msgid "Color scheme" msgstr " 色彩设计" -#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:76 -#: ../../include/nav.php:143 -msgid "Your posts and conversations" -msgstr "你的消息和交谈" - -#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:77 -msgid "Your profile page" -msgstr "你的简介页" - -#: ../../view/theme/diabook/theme.php:89 -msgid "Your contacts" -msgstr "您的熟人" - -#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:78 -msgid "Your photos" -msgstr "你的照片" - -#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:79 -msgid "Your events" -msgstr "你的项目" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 -msgid "Personal notes" -msgstr "私人的便条" - -#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:80 -msgid "Your personal photos" -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 "社会页" - -#: ../../view/theme/diabook/theme.php:384 -#: ../../view/theme/diabook/theme.php:634 -#: ../../view/theme/diabook/config.php:165 -msgid "Community Profiles" -msgstr "社会简介" - -#: ../../view/theme/diabook/theme.php:405 -#: ../../view/theme/diabook/theme.php:639 -#: ../../view/theme/diabook/config.php:170 -msgid "Last users" -msgstr "上次用户" - -#: ../../view/theme/diabook/theme.php:434 -#: ../../view/theme/diabook/theme.php:641 -#: ../../view/theme/diabook/config.php:172 -msgid "Last likes" -msgstr "上次喜欢" - -#: ../../view/theme/diabook/theme.php:479 -#: ../../view/theme/diabook/theme.php:640 -#: ../../view/theme/diabook/config.php:171 -msgid "Last photos" -msgstr "上次照片" - -#: ../../view/theme/diabook/theme.php:516 -#: ../../view/theme/diabook/theme.php:637 -#: ../../view/theme/diabook/config.php:168 -msgid "Find Friends" -msgstr "找朋友们" - -#: ../../view/theme/diabook/theme.php:517 -msgid "Local Directory" -msgstr "当地目录" - -#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35 -msgid "Similar Interests" -msgstr "相似兴趣" - -#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37 -msgid "Invite Friends" -msgstr "邀请朋友们" - -#: ../../view/theme/diabook/theme.php:572 -#: ../../view/theme/diabook/theme.php:633 -#: ../../view/theme/diabook/config.php:164 -msgid "Earth Layers" -msgstr "地球层" - -#: ../../view/theme/diabook/theme.php:577 -msgid "Set zoomfactor for Earth Layers" -msgstr "选择拉近镜头级在地球层" - -#: ../../view/theme/diabook/theme.php:578 -#: ../../view/theme/diabook/config.php:161 -msgid "Set longitude (X) for Earth Layers" -msgstr "选择经度(X)在地球层" - -#: ../../view/theme/diabook/theme.php:579 -#: ../../view/theme/diabook/config.php:162 -msgid "Set latitude (Y) for Earth Layers" -msgstr "选择纬度(Y)在地球层" - -#: ../../view/theme/diabook/theme.php:592 -#: ../../view/theme/diabook/theme.php:635 -#: ../../view/theme/diabook/config.php:166 -msgid "Help or @NewHere ?" -msgstr "帮助或@菜鸟?" - -#: ../../view/theme/diabook/theme.php:599 -#: ../../view/theme/diabook/theme.php:636 -#: ../../view/theme/diabook/config.php:167 -msgid "Connect Services" -msgstr "连接服务" - -#: ../../view/theme/diabook/theme.php:606 -#: ../../view/theme/diabook/theme.php:638 -msgid "Last Tweets" -msgstr "最后准文" - -#: ../../view/theme/diabook/theme.php:609 -#: ../../view/theme/diabook/config.php:159 -msgid "Set twitter search term" -msgstr "选择Twitter搜索关键" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:327 -msgid "don't show" -msgstr "别著" - -#: ../../view/theme/diabook/theme.php:629 -#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:326 -msgid "show" -msgstr "著" - -#: ../../view/theme/diabook/theme.php:630 -msgid "Show/hide boxes at right-hand column:" -msgstr "表示/隐藏盒子在友兰:" - #: ../../view/theme/diabook/config.php:156 #: ../../view/theme/dispy/config.php:74 msgid "Set line-height for posts and comments" @@ -8054,14 +9705,109 @@ msgstr "决定中栏的显示分辨率列表" msgid "Set color scheme" msgstr "选择色彩设计" +#: ../../view/theme/diabook/config.php:159 +#: ../../view/theme/diabook/theme.php:609 +msgid "Set twitter search term" +msgstr "选择Twitter搜索关键" + #: ../../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 "选择经度(X)在地球层" + +#: ../../view/theme/diabook/config.php:162 +#: ../../view/theme/diabook/theme.php:579 +msgid "Set latitude (Y) for Earth Layers" +msgstr "选择纬度(Y)在地球层" + +#: ../../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 "社会页" + +#: ../../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 "帮助或@菜鸟?" + +#: ../../view/theme/diabook/config.php:167 +#: ../../view/theme/diabook/theme.php:599 +#: ../../view/theme/diabook/theme.php:636 +msgid "Connect Services" +msgstr "连接服务" + +#: ../../view/theme/diabook/config.php:168 +#: ../../view/theme/diabook/theme.php:516 +#: ../../view/theme/diabook/theme.php:637 +msgid "Find Friends" +msgstr "找朋友们" + #: ../../view/theme/diabook/config.php:169 msgid "Last tweets" msgstr "最后准文" +#: ../../view/theme/diabook/config.php:170 +#: ../../view/theme/diabook/theme.php:405 +#: ../../view/theme/diabook/theme.php:639 +msgid "Last users" +msgstr "上次用户" + +#: ../../view/theme/diabook/config.php:171 +#: ../../view/theme/diabook/theme.php:479 +#: ../../view/theme/diabook/theme.php:640 +msgid "Last photos" +msgstr "上次照片" + +#: ../../view/theme/diabook/config.php:172 +#: ../../view/theme/diabook/theme.php:434 +#: ../../view/theme/diabook/theme.php:641 +msgid "Last likes" +msgstr "上次喜欢" + +#: ../../view/theme/diabook/theme.php:89 +msgid "Your contacts" +msgstr "您的熟人" + +#: ../../view/theme/diabook/theme.php:517 +msgid "Local Directory" +msgstr "当地目录" + +#: ../../view/theme/diabook/theme.php:577 +msgid "Set zoomfactor for Earth Layers" +msgstr "选择拉近镜头级在地球层" + +#: ../../view/theme/diabook/theme.php:606 +#: ../../view/theme/diabook/theme.php:638 +msgid "Last Tweets" +msgstr "最后准文" + +#: ../../view/theme/diabook/theme.php:630 +msgid "Show/hide boxes at right-hand column:" +msgstr "表示/隐藏盒子在友兰:" + +#: ../../view/theme/dispy/config.php:75 +msgid "Set colour scheme" +msgstr "选择色彩设计" + #: ../../view/theme/quattro/config.php:67 msgid "Alignment" msgstr "成直线 " @@ -8082,1856 +9828,128 @@ msgstr "文章" msgid "Textareas font size" msgstr "文本区字体大小" -#: ../../view/theme/dispy/config.php:75 -msgid "Set colour scheme" -msgstr "选择色彩设计" - -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" -msgstr "j F, Y" - -#: ../../include/profile_advanced.php:23 -msgid "j F" -msgstr "j F" - -#: ../../include/profile_advanced.php:30 -msgid "Birthday:" -msgstr "生日:" - -#: ../../include/profile_advanced.php:34 -msgid "Age:" -msgstr "年纪:" - -#: ../../include/profile_advanced.php:43 -#, php-format -msgid "for %1$d %2$s" -msgstr "为%1$d %2$s" - -#: ../../include/profile_advanced.php:52 -msgid "Tags:" -msgstr "标签:" - -#: ../../include/profile_advanced.php:56 -msgid "Religion:" -msgstr "宗教:" - -#: ../../include/profile_advanced.php:60 -msgid "Hobbies/Interests:" -msgstr "爱好/兴趣" - -#: ../../include/profile_advanced.php:67 -msgid "Contact information and Social Networks:" -msgstr "熟人消息和社会化网络" - -#: ../../include/profile_advanced.php:69 -msgid "Musical interests:" -msgstr "音乐兴趣:" - -#: ../../include/profile_advanced.php:71 -msgid "Books, literature:" -msgstr "书,文学" - -#: ../../include/profile_advanced.php:73 -msgid "Television:" -msgstr "电视:" - -#: ../../include/profile_advanced.php:75 -msgid "Film/dance/culture/entertainment:" -msgstr "电影/跳舞/文化/娱乐:" - -#: ../../include/profile_advanced.php:77 -msgid "Love/Romance:" -msgstr "爱情/浪漫" - -#: ../../include/profile_advanced.php:79 -msgid "Work/employment:" -msgstr "工作" - -#: ../../include/profile_advanced.php:81 -msgid "School/education:" -msgstr "学院/教育" - -#: ../../include/contact_selectors.php:32 -msgid "Unknown | Not categorised" -msgstr "未知的 |无分类" - -#: ../../include/contact_selectors.php:33 -msgid "Block immediately" -msgstr "立即拦" - -#: ../../include/contact_selectors.php:34 -msgid "Shady, spammer, self-marketer" -msgstr "可疑,发垃圾者,自市场开发者" - -#: ../../include/contact_selectors.php:35 -msgid "Known to me, but no opinion" -msgstr "我认识,但没有意见" - -#: ../../include/contact_selectors.php:36 -msgid "OK, probably harmless" -msgstr "行,大概无恶意的" - -#: ../../include/contact_selectors.php:37 -msgid "Reputable, has my trust" -msgstr "可信的,有我的信任" - -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "时常" - -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "每小时" - -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "每日两次" - -#: ../../include/contact_selectors.php:77 -msgid "OStatus" -msgstr "OStatus" - -#: ../../include/contact_selectors.php:78 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: ../../include/contact_selectors.php:82 -msgid "Zot!" -msgstr "Zot!" - -#: ../../include/contact_selectors.php:83 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: ../../include/contact_selectors.php:84 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: ../../include/contact_selectors.php:85 -msgid "MySpace" -msgstr "MySpace" - -#: ../../include/contact_selectors.php:87 -msgid "Google+" -msgstr "Google+" - -#: ../../include/profile_selectors.php:6 -msgid "Male" -msgstr "男的" - -#: ../../include/profile_selectors.php:6 -msgid "Female" -msgstr "女的" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "现在男的" - -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "现在女的" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "主要男的" - -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "主要女的" - -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "跨性別" - -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "阴阳人" - -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "”转基因“人" - -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "两性体" - -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "中性的" - -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "不明确的" - -#: ../../include/profile_selectors.php:6 -msgid "Other" -msgstr "别的" - -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "未决" - -#: ../../include/profile_selectors.php:23 -msgid "Males" -msgstr "男人" - -#: ../../include/profile_selectors.php:23 -msgid "Females" -msgstr "女人" - -#: ../../include/profile_selectors.php:23 -msgid "Gay" -msgstr "男同性恋的" - -#: ../../include/profile_selectors.php:23 -msgid "Lesbian" -msgstr "女同性恋的" - -#: ../../include/profile_selectors.php:23 -msgid "No Preference" -msgstr "无偏爱" - -#: ../../include/profile_selectors.php:23 -msgid "Bisexual" -msgstr "双性恋的" - -#: ../../include/profile_selectors.php:23 -msgid "Autosexual" -msgstr "自性的" - -#: ../../include/profile_selectors.php:23 -msgid "Abstinent" -msgstr "有节制的" - -#: ../../include/profile_selectors.php:23 -msgid "Virgin" -msgstr "原始的" - -#: ../../include/profile_selectors.php:23 -msgid "Deviant" -msgstr "变态" - -#: ../../include/profile_selectors.php:23 -msgid "Fetish" -msgstr "恋物对象" - -#: ../../include/profile_selectors.php:23 -msgid "Oodles" -msgstr "多多" - -#: ../../include/profile_selectors.php:23 -msgid "Nonsexual" -msgstr "无性" - -#: ../../include/profile_selectors.php:42 -msgid "Single" -msgstr "单身" - -#: ../../include/profile_selectors.php:42 -msgid "Lonely" -msgstr "寂寞" - -#: ../../include/profile_selectors.php:42 -msgid "Available" -msgstr "单身的" - -#: ../../include/profile_selectors.php:42 -msgid "Unavailable" -msgstr "不可获得的" - -#: ../../include/profile_selectors.php:42 -msgid "Has crush" -msgstr "迷恋" - -#: ../../include/profile_selectors.php:42 -msgid "Infatuated" -msgstr "痴迷" - -#: ../../include/profile_selectors.php:42 -msgid "Dating" -msgstr "约会" - -#: ../../include/profile_selectors.php:42 -msgid "Unfaithful" -msgstr "外遇" - -#: ../../include/profile_selectors.php:42 -msgid "Sex Addict" -msgstr "性交因成瘾者" - -#: ../../include/profile_selectors.php:42 ../../include/user.php:279 -#: ../../include/user.php:283 -msgid "Friends" -msgstr "朋友" - -#: ../../include/profile_selectors.php:42 -msgid "Friends/Benefits" -msgstr "朋友/益" - -#: ../../include/profile_selectors.php:42 -msgid "Casual" -msgstr "休闲" - -#: ../../include/profile_selectors.php:42 -msgid "Engaged" -msgstr "已订婚的" - -#: ../../include/profile_selectors.php:42 -msgid "Married" -msgstr "结婚" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily married" -msgstr "想像结婚" - -#: ../../include/profile_selectors.php:42 -msgid "Partners" -msgstr "伴侣" - -#: ../../include/profile_selectors.php:42 -msgid "Cohabiting" -msgstr "同居" - -#: ../../include/profile_selectors.php:42 -msgid "Common law" -msgstr "普通法结婚" - -#: ../../include/profile_selectors.php:42 -msgid "Happy" -msgstr "幸福" - -#: ../../include/profile_selectors.php:42 -msgid "Not looking" -msgstr "没找" - -#: ../../include/profile_selectors.php:42 -msgid "Swinger" -msgstr "交换性伴侣的" - -#: ../../include/profile_selectors.php:42 -msgid "Betrayed" -msgstr "被背叛" - -#: ../../include/profile_selectors.php:42 -msgid "Separated" -msgstr "分手" - -#: ../../include/profile_selectors.php:42 -msgid "Unstable" -msgstr "不稳" - -#: ../../include/profile_selectors.php:42 -msgid "Divorced" -msgstr "离婚" - -#: ../../include/profile_selectors.php:42 -msgid "Imaginarily divorced" -msgstr "想像离婚" - -#: ../../include/profile_selectors.php:42 -msgid "Widowed" -msgstr "寡妇" - -#: ../../include/profile_selectors.php:42 -msgid "Uncertain" -msgstr "不确定" - -#: ../../include/profile_selectors.php:42 -msgid "It's complicated" -msgstr "是复杂" - -#: ../../include/profile_selectors.php:42 -msgid "Don't care" -msgstr "无所谓" - -#: ../../include/profile_selectors.php:42 -msgid "Ask me" -msgstr "问我" - -#: ../../include/event.php:20 ../../include/bb2diaspora.php:399 -msgid "Starts:" -msgstr "开始:" - -#: ../../include/event.php:30 ../../include/bb2diaspora.php:407 -msgid "Finishes:" -msgstr "结束:" - -#: ../../include/delivery.php:457 ../../include/notifier.php:775 -msgid "(no subject)" -msgstr "沒有题目" - -#: ../../include/Scrape.php:583 -msgid " on Last.fm" -msgstr "在Last.fm" - -#: ../../include/text.php:262 -msgid "prev" -msgstr "上个" - -#: ../../include/text.php:264 -msgid "first" -msgstr "首先" - -#: ../../include/text.php:293 -msgid "last" -msgstr "最后" - -#: ../../include/text.php:296 -msgid "next" -msgstr "下个" - -#: ../../include/text.php:314 -msgid "newer" -msgstr "更新" - -#: ../../include/text.php:318 -msgid "older" -msgstr "更旧" - -#: ../../include/text.php:657 -msgid "No contacts" -msgstr "没有熟人" - -#: ../../include/text.php:666 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d熟人" - -#: ../../include/text.php:779 -msgid "poke" -msgstr "戳" - -#: ../../include/text.php:779 ../../include/conversation.php:211 -msgid "poked" -msgstr "戳了" - -#: ../../include/text.php:780 -msgid "ping" -msgstr "砰" - -#: ../../include/text.php:780 -msgid "pinged" -msgstr "砰了" - -#: ../../include/text.php:781 -msgid "prod" -msgstr "柔戳" - -#: ../../include/text.php:781 -msgid "prodded" -msgstr "柔戳了" - -#: ../../include/text.php:782 -msgid "slap" -msgstr "掌击" - -#: ../../include/text.php:782 -msgid "slapped" -msgstr "掌击了" - -#: ../../include/text.php:783 -msgid "finger" -msgstr "指" - -#: ../../include/text.php:783 -msgid "fingered" -msgstr "指了" - -#: ../../include/text.php:784 -msgid "rebuff" -msgstr "窝脖儿" - -#: ../../include/text.php:784 -msgid "rebuffed" -msgstr "窝脖儿了" - -#: ../../include/text.php:796 -msgid "happy" -msgstr "开心" - -#: ../../include/text.php:797 -msgid "sad" -msgstr "伤心" - -#: ../../include/text.php:798 -msgid "mellow" -msgstr "轻松" - -#: ../../include/text.php:799 -msgid "tired" -msgstr "累" - -#: ../../include/text.php:800 -msgid "perky" -msgstr "机敏" - -#: ../../include/text.php:801 -msgid "angry" -msgstr "生气" - -#: ../../include/text.php:802 -msgid "stupified" -msgstr "麻醉" - -#: ../../include/text.php:803 -msgid "puzzled" -msgstr "纳闷" - -#: ../../include/text.php:804 -msgid "interested" -msgstr "有兴趣" - -#: ../../include/text.php:805 -msgid "bitter" -msgstr "苦" - -#: ../../include/text.php:806 -msgid "cheerful" -msgstr "快乐" - -#: ../../include/text.php:807 -msgid "alive" -msgstr "活着" - -#: ../../include/text.php:808 -msgid "annoyed" -msgstr "被烦恼" - -#: ../../include/text.php:809 -msgid "anxious" -msgstr "心焦" - -#: ../../include/text.php:810 -msgid "cranky" -msgstr "不稳" - -#: ../../include/text.php:811 -msgid "disturbed" -msgstr "不安" - -#: ../../include/text.php:812 -msgid "frustrated" -msgstr "被作梗" - -#: ../../include/text.php:813 -msgid "motivated" -msgstr "士气高涨" - -#: ../../include/text.php:814 -msgid "relaxed" -msgstr "轻松" - -#: ../../include/text.php:815 -msgid "surprised" -msgstr "诧异" - -#: ../../include/text.php:979 -msgid "January" -msgstr "一月" - -#: ../../include/text.php:979 -msgid "February" -msgstr "二月" - -#: ../../include/text.php:979 -msgid "March" -msgstr "三月" - -#: ../../include/text.php:979 -msgid "April" -msgstr "四月" - -#: ../../include/text.php:979 -msgid "May" -msgstr "五月" - -#: ../../include/text.php:979 -msgid "June" -msgstr "六月" - -#: ../../include/text.php:979 -msgid "July" -msgstr "七月" - -#: ../../include/text.php:979 -msgid "August" -msgstr "八月" - -#: ../../include/text.php:979 -msgid "September" -msgstr "九月" - -#: ../../include/text.php:979 -msgid "October" -msgstr "十月" - -#: ../../include/text.php:979 -msgid "November" -msgstr "十一月" - -#: ../../include/text.php:979 -msgid "December" -msgstr "十二月" - -#: ../../include/text.php:1078 -msgid "bytes" -msgstr "字节" - -#: ../../include/text.php:1105 ../../include/text.php:1117 -msgid "Click to open/close" -msgstr "点击为开关" - -#: ../../include/text.php:1290 ../../include/user.php:237 -msgid "default" -msgstr "默认" - -#: ../../include/text.php:1302 -msgid "Select an alternate language" -msgstr "选择别的语言" - -#: ../../include/text.php:1512 -msgid "activity" -msgstr "活动" - -#: ../../include/text.php:1515 -msgid "post" -msgstr "文章" - -#: ../../include/text.php:1670 -msgid "Item filed" -msgstr "把项目归档了" - -#: ../../include/diaspora.php:704 -msgid "Sharing notification from Diaspora network" -msgstr "分享通知从Diaspora网络" - -#: ../../include/diaspora.php:2248 -msgid "Attachments:" -msgstr "附件:" - -#: ../../include/network.php:850 -msgid "view full size" -msgstr "看全尺寸" - -#: ../../include/oembed.php:138 -msgid "Embedded content" -msgstr "嵌入内容" - -#: ../../include/oembed.php:147 -msgid "Embedding disabled" -msgstr "嵌入不能用" - -#: ../../include/uimport.php:61 -msgid "Error decoding account file" -msgstr "解码账户文件出错误" - -#: ../../include/uimport.php:67 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "错误!文件没有版本数!这不是Friendica账户文件吗?" - -#: ../../include/uimport.php:72 -msgid "Error! I can't import this file: DB schema version is not compatible." -msgstr "错误!我进口不了这个文件:数据库版本不相容的。" - -#: ../../include/uimport.php:81 -msgid "Error! Cannot check nickname" -msgstr "错误!不能检查昵称" - -#: ../../include/uimport.php:85 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "用户「%s」已经存在这个服务器!" - -#: ../../include/uimport.php:104 -msgid "User creation error" -msgstr "用户创造错误" - -#: ../../include/uimport.php:122 -msgid "User profile creation error" -msgstr "用户简介创造错误" - -#: ../../include/uimport.php:167 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d熟人没进口了" - -#: ../../include/uimport.php:245 -msgid "Done. You can now login with your username and password" -msgstr "完了。您现在会用您用户名和密码登录" - -#: ../../include/group.php:25 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "一个删除的组用这名被复兴。现有的项目权利可能还效为这个组和未来的成员。如果这不是您想的,请造成新组给起别的名。" - -#: ../../include/group.php:207 -msgid "Default privacy group for new contacts" -msgstr "默认隐私组为新熟人" - -#: ../../include/group.php:226 -msgid "Everybody" -msgstr "每人" - -#: ../../include/group.php:249 -msgid "edit" -msgstr "编辑" - -#: ../../include/group.php:271 -msgid "Edit group" -msgstr "编辑组" - -#: ../../include/group.php:272 -msgid "Create a new group" -msgstr "创造新组" - -#: ../../include/group.php:273 -msgid "Contacts not in any group" -msgstr "熟人没有组" - -#: ../../include/nav.php:73 ../../boot.php:1036 -msgid "Logout" -msgstr "注销" - -#: ../../include/nav.php:73 -msgid "End this session" -msgstr "结束这段时间" - -#: ../../include/nav.php:76 ../../boot.php:1833 -msgid "Status" -msgstr "现状" - -#: ../../include/nav.php:91 -msgid "Sign in" -msgstr "登记" - -#: ../../include/nav.php:104 -msgid "Home Page" -msgstr "主页" - -#: ../../include/nav.php:108 -msgid "Create an account" -msgstr "注册" - -#: ../../include/nav.php:113 -msgid "Help and documentation" -msgstr "帮助证件" - -#: ../../include/nav.php:116 -msgid "Apps" -msgstr "应用程序" - -#: ../../include/nav.php:116 -msgid "Addon applications, utilities, games" -msgstr "可加的应用,设施,游戏" - -#: ../../include/nav.php:118 -msgid "Search site content" -msgstr "搜索网站内容" - -#: ../../include/nav.php:128 -msgid "Conversations on this site" -msgstr "这个网站的交谈" - -#: ../../include/nav.php:130 -msgid "Directory" -msgstr "名录" - -#: ../../include/nav.php:130 -msgid "People directory" -msgstr "人物名录" - -#: ../../include/nav.php:140 -msgid "Conversations from your friends" -msgstr "从你朋友们的交谈" - -#: ../../include/nav.php:141 -msgid "Network Reset" -msgstr "网络重设" - -#: ../../include/nav.php:141 -msgid "Load Network page with no filters" -msgstr "表示网络页无滤器" - -#: ../../include/nav.php:149 -msgid "Friend Requests" -msgstr "友谊邀请" - -#: ../../include/nav.php:151 -msgid "See all notifications" -msgstr "看所有的通知" - -#: ../../include/nav.php:152 -msgid "Mark all system notifications seen" -msgstr "记号各系统通知看过的" - -#: ../../include/nav.php:156 -msgid "Private mail" -msgstr "私人的邮件" - -#: ../../include/nav.php:157 -msgid "Inbox" -msgstr "收件箱" - -#: ../../include/nav.php:158 -msgid "Outbox" -msgstr "发件箱" - -#: ../../include/nav.php:162 -msgid "Manage" -msgstr "代用户" - -#: ../../include/nav.php:162 -msgid "Manage other pages" -msgstr "管理别的页" - -#: ../../include/nav.php:165 -msgid "Delegations" -msgstr "代表" - -#: ../../include/nav.php:169 ../../boot.php:1339 -msgid "Profiles" -msgstr "简介" - -#: ../../include/nav.php:169 -msgid "Manage/Edit Profiles" -msgstr "管理/编辑简介" - -#: ../../include/nav.php:171 -msgid "Manage/edit friends and contacts" -msgstr "管理/编朋友们和熟人们" - -#: ../../include/nav.php:178 -msgid "Site setup and configuration" -msgstr "网站开办和配置" - -#: ../../include/nav.php:182 -msgid "Navigation" -msgstr "航行" - -#: ../../include/nav.php:182 -msgid "Site map" -msgstr "网站地图" - -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" -msgstr "增添新的熟人" - -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" -msgstr "输入地址或网位置" - -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "比如:li@example.com, http://example.com/li" - -#: ../../include/contact_widgets.php:23 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d邀请可用的" - -#: ../../include/contact_widgets.php:29 -msgid "Find People" -msgstr "找人物" - -#: ../../include/contact_widgets.php:30 -msgid "Enter name or interest" -msgstr "输入名字或兴趣" - -#: ../../include/contact_widgets.php:31 -msgid "Connect/Follow" -msgstr "连接/关注" - -#: ../../include/contact_widgets.php:32 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "比如:李某,打鱼" - -#: ../../include/contact_widgets.php:36 -msgid "Random Profile" -msgstr "随机简介" - -#: ../../include/contact_widgets.php:70 -msgid "Networks" -msgstr "网络" - -#: ../../include/contact_widgets.php:73 -msgid "All Networks" -msgstr "所有网络" - -#: ../../include/contact_widgets.php:103 ../../include/features.php:59 -msgid "Saved Folders" -msgstr "保存的文件夹" - -#: ../../include/contact_widgets.php:106 ../../include/contact_widgets.php:138 -msgid "Everything" -msgstr "一切" - -#: ../../include/contact_widgets.php:135 -msgid "Categories" -msgstr "种类" - -#: ../../include/auth.php:38 -msgid "Logged out." -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登录的时候碰到问题。请核实拼法是对的。" - -#: ../../include/auth.php:128 -msgid "The error message was:" -msgstr "错误通知是:" - -#: ../../include/datetime.php:43 ../../include/datetime.php:45 -msgid "Miscellaneous" -msgstr "形形色色" - -#: ../../include/datetime.php:153 ../../include/datetime.php:285 -msgid "year" -msgstr "年" - -#: ../../include/datetime.php:158 ../../include/datetime.php:286 -msgid "month" -msgstr "月" - -#: ../../include/datetime.php:163 ../../include/datetime.php:288 -msgid "day" -msgstr "日" - -#: ../../include/datetime.php:276 -msgid "never" -msgstr "从未" - -#: ../../include/datetime.php:282 -msgid "less than a second ago" -msgstr "一秒以内" - -#: ../../include/datetime.php:287 -msgid "week" -msgstr "星期" - -#: ../../include/datetime.php:289 -msgid "hour" -msgstr "小时" - -#: ../../include/datetime.php:289 -msgid "hours" -msgstr "小时" - -#: ../../include/datetime.php:290 -msgid "minute" -msgstr "分钟" - -#: ../../include/datetime.php:290 -msgid "minutes" -msgstr "分钟" - -#: ../../include/datetime.php:291 -msgid "second" -msgstr "秒" - -#: ../../include/datetime.php:291 -msgid "seconds" -msgstr "秒" - -#: ../../include/datetime.php:300 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s以前" - -#: ../../include/datetime.php:472 ../../include/items.php:1705 -#, php-format -msgid "%s's birthday" -msgstr "%s的生日" - -#: ../../include/datetime.php:473 ../../include/items.php:1706 -#, php-format -msgid "Happy Birthday %s" -msgstr "生日快乐%s" - -#: ../../include/bbcode.php:210 ../../include/bbcode.php:515 -msgid "Image/photo" -msgstr "图像/照片" - -#: ../../include/bbcode.php:272 -#, php-format -msgid "" -"%s wrote the following post" -msgstr "%s写了下面的文章" - -#: ../../include/bbcode.php:480 ../../include/bbcode.php:500 -msgid "$1 wrote:" -msgstr "$1写:" - -#: ../../include/bbcode.php:520 ../../include/bbcode.php:521 -msgid "Encrypted content" -msgstr "加密的内容" - -#: ../../include/features.php:23 -msgid "General Features" -msgstr "总的特点" - -#: ../../include/features.php:25 -msgid "Multiple Profiles" -msgstr "多简介" - -#: ../../include/features.php:25 -msgid "Ability to create multiple profiles" -msgstr "能穿凿多简介" - -#: ../../include/features.php:30 -msgid "Post Composition Features" -msgstr "写文章特点" - -#: ../../include/features.php:31 -msgid "Richtext Editor" -msgstr "富文本格式编辑" - -#: ../../include/features.php:31 -msgid "Enable richtext editor" -msgstr "使富文本格式编辑可用" - -#: ../../include/features.php:32 -msgid "Post Preview" -msgstr "文章预演" - -#: ../../include/features.php:32 -msgid "Allow previewing posts and comments before publishing them" -msgstr "允许文章和评论出版前预演" - -#: ../../include/features.php:37 -msgid "Network Sidebar Widgets" -msgstr "网络工具栏小窗口" - -#: ../../include/features.php:38 -msgid "Search by Date" -msgstr "按日期搜索" - -#: ../../include/features.php:38 -msgid "Ability to select posts by date ranges" -msgstr "能按时期范围选择文章" - -#: ../../include/features.php:39 -msgid "Group Filter" -msgstr "组滤器" - -#: ../../include/features.php:39 -msgid "Enable widget to display Network posts only from selected group" -msgstr "使光表示网络文章从选择的组小窗口" - -#: ../../include/features.php:40 -msgid "Network Filter" -msgstr "网络滤器" - -#: ../../include/features.php:40 -msgid "Enable widget to display Network posts only from selected network" -msgstr "使光表示网络文章从选择的网络小窗口" - -#: ../../include/features.php:41 -msgid "Save search terms for re-use" -msgstr "保存搜索关键为再用" - -#: ../../include/features.php:46 -msgid "Network Tabs" -msgstr "网络分页" - -#: ../../include/features.php:47 -msgid "Network Personal Tab" -msgstr "网络私人分页" - -#: ../../include/features.php:47 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "使表示光网络文章您参加了分页可用" - -#: ../../include/features.php:48 -msgid "Network New Tab" -msgstr "网络新分页" - -#: ../../include/features.php:48 -msgid "Enable tab to display only new Network posts (from the last 12 hours)" -msgstr "使表示光网络文章在12小时内分页可用" - -#: ../../include/features.php:49 -msgid "Network Shared Links Tab" -msgstr "网络分享链接分页" - -#: ../../include/features.php:49 -msgid "Enable tab to display only Network posts with links in them" -msgstr "使表示光网络文章包括链接分页可用" - -#: ../../include/features.php:54 -msgid "Post/Comment Tools" -msgstr "文章/评论工具" - -#: ../../include/features.php:55 -msgid "Multiple Deletion" -msgstr "多删除" - -#: ../../include/features.php:55 -msgid "Select and delete multiple posts/comments at once" -msgstr "选择和删除多文章/评论一次" - -#: ../../include/features.php:56 -msgid "Edit Sent Posts" -msgstr "编辑发送的文章" - -#: ../../include/features.php:56 -msgid "Edit and correct posts and comments after sending" -msgstr "编辑或修改文章和评论发送后" - -#: ../../include/features.php:57 -msgid "Tagging" -msgstr "标签" - -#: ../../include/features.php:57 -msgid "Ability to tag existing posts" -msgstr "能把目前的文章标签" - -#: ../../include/features.php:58 -msgid "Post Categories" -msgstr "文章种类" - -#: ../../include/features.php:58 -msgid "Add categories to your posts" -msgstr "加入种类给您的文章" - -#: ../../include/features.php:59 -msgid "Ability to file posts under folders" -msgstr "能把文章归档在文件夹 " - -#: ../../include/features.php:60 -msgid "Dislike Posts" -msgstr "不喜欢文章" - -#: ../../include/features.php:60 -msgid "Ability to dislike posts/comments" -msgstr "能不喜欢文章/评论" - -#: ../../include/features.php:61 -msgid "Star Posts" -msgstr "文章星" - -#: ../../include/features.php:61 -msgid "Ability to mark special posts with a star indicator" -msgstr "能把优秀文章跟星标注" - -#: ../../include/dba.php:41 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "找不到DNS信息为数据库服务器「%s」" - -#: ../../include/message.php:15 ../../include/message.php:172 -msgid "[no subject]" -msgstr "[无题目]" - -#: ../../include/acl_selectors.php:325 -msgid "Visible to everybody" -msgstr "任何人可见的" - -#: ../../include/enotify.php:16 -msgid "Friendica Notification" -msgstr "Friendica 通知" - -#: ../../include/enotify.php:19 -msgid "Thank You," -msgstr "谢谢," - -#: ../../include/enotify.php:21 -#, php-format -msgid "%s Administrator" -msgstr "%s管理员" - -#: ../../include/enotify.php:40 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:44 -#, php-format -msgid "[Friendica:Notify] New mail received at %s" -msgstr "[Friendica:Notify]收到新邮件在%s" - -#: ../../include/enotify.php:46 -#, php-format -msgid "%1$s sent you a new private message at %2$s." -msgstr "%1$s发给您新私人通知在%2$s." - -#: ../../include/enotify.php:47 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s发给您%2$s." - -#: ../../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 "清去%s为了看或回答你私人的消息" - -#: ../../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]评论了" - -#: ../../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]评论了" - -#: ../../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]评论了" - -#: ../../include/enotify.php:115 -#, php-format -msgid "[Friendica:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Friendica:Notify]于交流#%1$d由%2$s评论" - -#: ../../include/enotify.php:116 -#, php-format -msgid "%s commented on an item/conversation you have been following." -msgstr "%s对你有兴趣的项目/ 交谈发表意见" - -#: ../../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为了看或回答交谈" - -#: ../../include/enotify.php:126 -#, php-format -msgid "[Friendica:Notify] %s posted to your profile wall" -msgstr "[Friendica:Notify] %s贴在您的简介墙" - -#: ../../include/enotify.php:128 -#, php-format -msgid "%1$s posted to your profile wall at %2$s" -msgstr "%1$s放在您的简介墙在%2$s" - -#: ../../include/enotify.php:130 -#, php-format -msgid "%1$s posted to [url=%2$s]your wall[/url]" -msgstr "%1$s放在[url=%2$s]您的墙[/url]" - -#: ../../include/enotify.php:141 -#, php-format -msgid "[Friendica:Notify] %s tagged you" -msgstr "[Friendica:Notify] %s标签您" - -#: ../../include/enotify.php:142 -#, php-format -msgid "%1$s tagged you at %2$s" -msgstr "%1$s把您在%2$s标签" - -#: ../../include/enotify.php:143 -#, php-format -msgid "%1$s [url=%2$s]tagged you[/url]." -msgstr "%1$s[url=%2$s]把您标签[/url]." - -#: ../../include/enotify.php:155 -#, php-format -msgid "[Friendica:Notify] %1$s poked you" -msgstr "[Friendica:Notify]您被%1$s戳" - -#: ../../include/enotify.php:156 -#, php-format -msgid "%1$s poked you at %2$s" -msgstr "您被%1$s戳在%2$s" - -#: ../../include/enotify.php:157 -#, php-format -msgid "%1$s [url=%2$s]poked you[/url]." -msgstr "%1$s[url=%2$s]把您戳[/url]。" - -#: ../../include/enotify.php:172 -#, php-format -msgid "[Friendica:Notify] %s tagged your post" -msgstr "[Friendica:Notify] %s标前您的文章" - -#: ../../include/enotify.php:173 -#, php-format -msgid "%1$s tagged your post at %2$s" -msgstr "%1$s把您的文章在%2$s标签" - -#: ../../include/enotify.php:174 -#, php-format -msgid "%1$s tagged [url=%2$s]your post[/url]" -msgstr "%1$s把[url=%2$s]您的文章[/url]标签" - -#: ../../include/enotify.php:185 -msgid "[Friendica:Notify] Introduction received" -msgstr "[Friendica:Notify] 收到介绍" - -#: ../../include/enotify.php:186 -#, php-format -msgid "You've received an introduction from '%1$s' at %2$s" -msgstr "您从「%1$s」受到一个介绍在%2$s" - -#: ../../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]。" - -#: ../../include/enotify.php:190 ../../include/enotify.php:208 -#, php-format -msgid "You may visit their profile at %s" -msgstr "你能看他的简介在%s" - -#: ../../include/enotify.php:192 -#, 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] 收到朋友建议" - -#: ../../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]。" - -#: ../../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。" - -#: ../../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 "请批准或拒绝建议在%s" - -#: ../../include/follow.php:32 -msgid "Connect URL missing." -msgstr "连接URL失踪的。" - -#: ../../include/follow.php:59 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "这网站没配置允许跟别的网络交流." - -#: ../../include/follow.php:60 ../../include/follow.php:80 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "没有兼容协议或者摘要找到了." - -#: ../../include/follow.php:78 -msgid "The profile address specified does not provide adequate information." -msgstr "输入的简介地址没有够消息。" - -#: ../../include/follow.php:82 -msgid "An author or name was not found." -msgstr "找不到作者或名。" - -#: ../../include/follow.php:84 -msgid "No browser URL could be matched to this address." -msgstr "这个地址没有符合什么游览器URL。" - -#: ../../include/follow.php:86 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "使不了知道的相配或邮件熟人相配 " - -#: ../../include/follow.php:87 -msgid "Use mailto: in front of address to force email check." -msgstr "输入mailto:地址前为要求电子邮件检查。" - -#: ../../include/follow.php:93 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "输入的简介地址属在这个网站使不可用的网络。" - -#: ../../include/follow.php:103 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "有限的简介。这人不会接受直达/私人通信从您。" - -#: ../../include/follow.php:205 -msgid "Unable to retrieve contact information." -msgstr "不能取回熟人消息。" - -#: ../../include/follow.php:259 -msgid "following" -msgstr "关注" - -#: ../../include/items.php:3373 -msgid "A new person is sharing with you at " -msgstr "一位新人给你分享在" - -#: ../../include/items.php:3373 -msgid "You have a new follower at " -msgstr "你有新的关注者在" - -#: ../../include/items.php:3892 -msgid "Do you really want to delete this item?" -msgstr "您真的想删除这个项目吗?" - -#: ../../include/items.php:4085 -msgid "Archives" -msgstr "档案" - -#: ../../include/user.php:39 -msgid "An invitation is required." -msgstr "邀请必要的。" - -#: ../../include/user.php:44 -msgid "Invitation could not be verified." -msgstr "不能证实邀请。" - -#: ../../include/user.php:52 -msgid "Invalid OpenID url" -msgstr "无效的OpenID url" - -#: ../../include/user.php:67 -msgid "Please enter the required information." -msgstr "请输入必要的信息。" - -#: ../../include/user.php:81 -msgid "Please use a shorter name." -msgstr "请用短一点名。" - -#: ../../include/user.php:83 -msgid "Name too short." -msgstr "名字太短。" - -#: ../../include/user.php:98 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "这看上去不是您的全姓名。" - -#: ../../include/user.php:103 -msgid "Your email domain is not among those allowed on this site." -msgstr "这网站允许的域名中没有您的" - -#: ../../include/user.php:106 -msgid "Not a valid email address." -msgstr "无效的邮件地址。" - -#: ../../include/user.php:116 -msgid "Cannot use that email." -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\",\"-\"和\"_\",还有头一字必须是拉丁字。" - -#: ../../include/user.php:128 ../../include/user.php:226 -msgid "Nickname is already registered. Please choose another." -msgstr "昵称已经报到。请选择新的。" - -#: ../../include/user.php:138 -msgid "" -"Nickname was once registered here and may not be re-used. Please choose " -"another." -msgstr "昵称曾经这里注册于是不能再用。请选择别的。" - -#: ../../include/user.php:154 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "要紧错误:产生安全钥匙失败了。" - -#: ../../include/user.php:212 -msgid "An error occurred during registration. Please try again." -msgstr "报到出了问题。请再试。" - -#: ../../include/user.php:247 -msgid "An error occurred creating your default profile. Please try again." -msgstr "造成默认简介出了问题。请再试。" - -#: ../../include/security.php:22 -msgid "Welcome " -msgstr "欢迎" - -#: ../../include/security.php:23 -msgid "Please upload a profile photo." -msgstr "请上传一张简介照片" - -#: ../../include/security.php:26 -msgid "Welcome back " -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 "表格安全令牌不对。最可能因为表格开着太久(三个小时以上)提交前。" - -#: ../../include/Contact.php:115 -msgid "stopped following" -msgstr "结束关注了" - -#: ../../include/Contact.php:225 ../../include/conversation.php:820 -msgid "Poke" -msgstr "戳" - -#: ../../include/Contact.php:226 ../../include/conversation.php:814 -msgid "View Status" -msgstr "看现状" - -#: ../../include/Contact.php:227 ../../include/conversation.php:815 -msgid "View Profile" -msgstr "看简介" - -#: ../../include/Contact.php:228 ../../include/conversation.php:816 -msgid "View Photos" -msgstr "看照片" - -#: ../../include/Contact.php:229 ../../include/Contact.php:251 -#: ../../include/conversation.php:817 -msgid "Network Posts" -msgstr "网络文章" - -#: ../../include/Contact.php:230 ../../include/Contact.php:251 -#: ../../include/conversation.php:818 -msgid "Edit Contact" -msgstr "编辑熟人" - -#: ../../include/Contact.php:231 ../../include/Contact.php:251 -#: ../../include/conversation.php:819 -msgid "Send PM" -msgstr "法私人的新闻" - -#: ../../include/conversation.php:207 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s把%2$s戳" - -#: ../../include/conversation.php:291 -msgid "post/item" -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为偏爱" - -#: ../../include/conversation.php:621 ../../object/Item.php:249 -msgid "Categories:" -msgstr "种类:" - -#: ../../include/conversation.php:622 ../../object/Item.php:250 -msgid "Filed under:" -msgstr "归档在:" - -#: ../../include/conversation.php:710 -msgid "remove" -msgstr "删除" - -#: ../../include/conversation.php:714 -msgid "Delete Selected Items" -msgstr "删除选的项目" - -#: ../../include/conversation.php:813 -msgid "Follow Thread" -msgstr "关注线绳" - -#: ../../include/conversation.php:882 -#, php-format -msgid "%s likes this." -msgstr "%s喜欢这个." - -#: ../../include/conversation.php:882 -#, php-format -msgid "%s doesn't like this." -msgstr "%s没有喜欢这个." - -#: ../../include/conversation.php:887 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d人们喜欢这个" - -#: ../../include/conversation.php:890 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d人们不喜欢这个" - -#: ../../include/conversation.php:904 -msgid "and" -msgstr "和" - -#: ../../include/conversation.php:910 -#, php-format -msgid ", and %d other people" -msgstr ",和%d别人" - -#: ../../include/conversation.php:912 -#, php-format -msgid "%s like this." -msgstr "%s喜欢这个" - -#: ../../include/conversation.php:912 -#, php-format -msgid "%s don't like this." -msgstr "%s不喜欢这个" - -#: ../../include/conversation.php:939 ../../include/conversation.php:957 -msgid "Visible to everybody" -msgstr "大家可见的" - -#: ../../include/conversation.php:941 ../../include/conversation.php:959 -msgid "Please enter a video link/URL:" -msgstr "请输入视频连接/URL:" - -#: ../../include/conversation.php:942 ../../include/conversation.php:960 -msgid "Please enter an audio link/URL:" -msgstr "请输入音响连接/URL:" - -#: ../../include/conversation.php:943 ../../include/conversation.php:961 -msgid "Tag term:" -msgstr "标签:" - -#: ../../include/conversation.php:945 ../../include/conversation.php:963 -msgid "Where are you right now?" -msgstr "你在哪里?" - -#: ../../include/conversation.php:946 -msgid "Delete item(s)?" -msgstr "把项目删除吗?" - -#: ../../include/conversation.php:988 -msgid "Post to Email" -msgstr "电邮发布" - -#: ../../include/conversation.php:1044 -msgid "permissions" -msgstr "权利" - -#: ../../include/conversation.php:1068 -msgid "Post to Groups" -msgstr "发到组" - -#: ../../include/conversation.php:1069 -msgid "Post to Contacts" -msgstr "发到熟人" - -#: ../../include/conversation.php:1070 -msgid "Private post" -msgstr "私人文章" - -#: ../../include/plugin.php:429 ../../include/plugin.php:431 -msgid "Click here to upgrade." -msgstr "这里点击为更新。" - -#: ../../include/plugin.php:437 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "这个行动超过您订阅的限制。" - -#: ../../include/plugin.php:442 -msgid "This action is not available under your subscription plan." -msgstr "这个行动在您的订阅不可用的。" - -#: ../../boot.php:640 -msgid "Delete this item?" -msgstr "删除这个项目?" - -#: ../../boot.php:643 -msgid "show fewer" -msgstr "显示更小" - -#: ../../boot.php:899 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "更新%s美通过。看错误记录。" - -#: ../../boot.php:901 -#, php-format -msgid "Update Error at %s" -msgstr "更新错误在%s" - -#: ../../boot.php:1011 -msgid "Create a New Account" -msgstr "创造新的账户" - -#: ../../boot.php:1039 -msgid "Nickname or Email address: " -msgstr "绰号或电子邮件地址: " - -#: ../../boot.php:1040 -msgid "Password: " -msgstr "密码: " - -#: ../../boot.php:1041 -msgid "Remember me" -msgstr "记住我" - -#: ../../boot.php:1044 -msgid "Or login using OpenID: " -msgstr "或者用OpenID登记:" - -#: ../../boot.php:1050 -msgid "Forgot your password?" -msgstr "忘记你的密码吗?" - -#: ../../boot.php:1053 -msgid "Website Terms of Service" -msgstr "网站的各项规定" - -#: ../../boot.php:1054 -msgid "terms of service" -msgstr "各项规定" - -#: ../../boot.php:1056 -msgid "Website Privacy Policy" -msgstr "网站隐私政策" - -#: ../../boot.php:1057 -msgid "privacy policy" -msgstr "隐私政策" - -#: ../../boot.php:1186 -msgid "Requested account is not available." -msgstr "要求的账户不可用。" - -#: ../../boot.php:1265 -msgid "Edit profile" -msgstr "修改简介" - -#: ../../boot.php:1331 -msgid "Message" -msgstr "通知" - -#: ../../boot.php:1339 -msgid "Manage/edit profiles" -msgstr "管理/修改简介" - -#: ../../boot.php:1461 ../../boot.php:1547 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../boot.php:1462 ../../boot.php:1548 -msgid "F d" -msgstr "F d" - -#: ../../boot.php:1507 ../../boot.php:1588 -msgid "[today]" -msgstr "[今天]" - -#: ../../boot.php:1519 -msgid "Birthday Reminders" -msgstr "提醒生日" - -#: ../../boot.php:1520 -msgid "Birthdays this week:" -msgstr "这周的生日:" - -#: ../../boot.php:1581 -msgid "[No description]" -msgstr "[无描述]" - -#: ../../boot.php:1599 -msgid "Event Reminders" -msgstr "事件提醒" - -#: ../../boot.php:1600 -msgid "Events this week:" -msgstr "这周的事件:" - -#: ../../boot.php:1836 -msgid "Status Messages and Posts" -msgstr "现状通知和文章" - -#: ../../boot.php:1843 -msgid "Profile Details" -msgstr "简介内容" - -#: ../../boot.php:1860 -msgid "Events and Calendar" -msgstr "项目和日历" - -#: ../../boot.php:1867 -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设置更新了" +#: ../../boot.php:650 +msgid "Delete this item?" +msgstr "删除这个项目?" -#: ../../addon.old/bg/bg.php:82 -msgid "Bg Settings" -msgstr "Bg设置" +#: ../../boot.php:653 +msgid "show fewer" +msgstr "显示更小" -#: ../../addon.old/drpost/drpost.php:35 -msgid "Post to Drupal" -msgstr "发到Drupal" +#: ../../boot.php:920 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "更新%s美通过。看错误记录。" -#: ../../addon.old/drpost/drpost.php:72 -msgid "Drupal Post Settings" -msgstr "Drupal设置" +#: ../../boot.php:922 +#, php-format +msgid "Update Error at %s" +msgstr "更新错误在%s" -#: ../../addon.old/drpost/drpost.php:74 -msgid "Enable Drupal Post Plugin" -msgstr "使Drupal插件能够" +#: ../../boot.php:1032 +msgid "Create a New Account" +msgstr "创造新的账户" -#: ../../addon.old/drpost/drpost.php:79 -msgid "Drupal username" -msgstr "Drupal用户名" +#: ../../boot.php:1060 +msgid "Nickname or Email address: " +msgstr "绰号或电子邮件地址: " -#: ../../addon.old/drpost/drpost.php:84 -msgid "Drupal password" -msgstr "Drupal密码" +#: ../../boot.php:1061 +msgid "Password: " +msgstr "密码: " -#: ../../addon.old/drpost/drpost.php:89 -msgid "Post Type - article,page,or blog" -msgstr "文章种类-文章,页,博客" +#: ../../boot.php:1062 +msgid "Remember me" +msgstr "记住我" -#: ../../addon.old/drpost/drpost.php:94 -msgid "Drupal site URL" -msgstr "Drupal网站URL" +#: ../../boot.php:1065 +msgid "Or login using OpenID: " +msgstr "或者用OpenID登记:" -#: ../../addon.old/drpost/drpost.php:99 -msgid "Drupal site uses clean URLS" -msgstr "Drupal网站用整洁URL" +#: ../../boot.php:1071 +msgid "Forgot your password?" +msgstr "忘记你的密码吗?" -#: ../../addon.old/drpost/drpost.php:104 -msgid "Post to Drupal by default" -msgstr "默认地发到Drupal" +#: ../../boot.php:1074 +msgid "Website Terms of Service" +msgstr "网站的各项规定" -#: ../../addon.old/oembed.old/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "OEmbed设置更新了" +#: ../../boot.php:1075 +msgid "terms of service" +msgstr "各项规定" -#: ../../addon.old/oembed.old/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "用OEmbed为YouTube视频" +#: ../../boot.php:1077 +msgid "Website Privacy Policy" +msgstr "网站隐私政策" -#: ../../addon.old/oembed.old/oembed.php:71 -msgid "URL to embed:" -msgstr "URL要嵌入:" +#: ../../boot.php:1078 +msgid "privacy policy" +msgstr "隐私政策" -#: ../../addon.old/tumblr/tumblr.php:74 -msgid "Tumblr login" -msgstr "Tumblr登记名" +#: ../../boot.php:1207 +msgid "Requested account is not available." +msgstr "要求的账户不可用。" -#: ../../addon.old/tumblr/tumblr.php:79 -msgid "Tumblr password" -msgstr "Tumblr密码" +#: ../../boot.php:1286 ../../boot.php:1390 +msgid "Edit profile" +msgstr "修改简介" + +#: ../../boot.php:1352 +msgid "Message" +msgstr "通知" + +#: ../../boot.php:1360 +msgid "Manage/edit profiles" +msgstr "管理/修改简介" + +#: ../../boot.php:1489 ../../boot.php:1575 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../boot.php:1490 ../../boot.php:1576 +msgid "F d" +msgstr "F d" + +#: ../../boot.php:1535 ../../boot.php:1616 +msgid "[today]" +msgstr "[今天]" + +#: ../../boot.php:1547 +msgid "Birthday Reminders" +msgstr "提醒生日" + +#: ../../boot.php:1548 +msgid "Birthdays this week:" +msgstr "这周的生日:" + +#: ../../boot.php:1609 +msgid "[No description]" +msgstr "[无描述]" + +#: ../../boot.php:1627 +msgid "Event Reminders" +msgstr "事件提醒" + +#: ../../boot.php:1628 +msgid "Events this week:" +msgstr "这周的事件:" + +#: ../../boot.php:1864 +msgid "Status Messages and Posts" +msgstr "现状通知和文章" + +#: ../../boot.php:1871 +msgid "Profile Details" +msgstr "简介内容" + +#: ../../boot.php:1888 +msgid "Events and Calendar" +msgstr "项目和日历" + +#: ../../boot.php:1895 +msgid "Only You Can See This" +msgstr "只您许看这个" diff --git a/view/zh-cn/strings.php b/view/zh-cn/strings.php index b98b8fba39..f038e6bad9 100644 --- a/view/zh-cn/strings.php +++ b/view/zh-cn/strings.php @@ -1,145 +1,1007 @@ 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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "注意:这是很高等的,你输入错的信息你和熟人的沟通会弄失灵了。"; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "请立即用后退按钮如果您不确定怎么用这页"; -$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["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"] = "限制"; +$a->strings["Warning"] = "警告"; +$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "同步(iPhone,Thunderbird Lightning, 案桌,等)"; +$a->strings["Synchronizing this calendar with the iPhone"] = "正在把这个日历跟iPhone同步"; +$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "正在把您的Friendica熟人跟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."] = "现有的插件没安装好。请跟系统管理您的friendica安装联系为维修。"; +$a->strings["Extended calendar with CalDAV-support"] = "增能日历跟CalDAV支持"; +$a->strings["noreply"] = "noreply"; +$a->strings["Notification: "] = "通知:"; +$a->strings["The database tables have been installed."] = "数据库表格被安装了。"; +$a->strings["An error occurred during the installation."] = "安装出错误。"; +$a->strings["The database tables have been updated."] = "数据库表格更新了。"; +$a->strings["An error occurred during the update."] = "更新出了问题。"; +$a->strings["No system-wide settings yet."] = "还没有系统设置。"; +$a->strings["Database status"] = "数据库现状"; +$a->strings["Installed"] = "安装了"; +$a->strings["Upgrade needed"] = "必须更新"; +$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should 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."] = "请备份所有的日历数据(表格有前缀「dav_」)继续之前。虽然所有的日历项目应该被转化成新数据库体系,备份总是最好。下边您会看数据库命令进行按「更新」按钮的时候。"; +$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."] = "出什么真糟糕的问题。我不能自动地恢复,不好意思。请看数据库系统,备份数据,而手动地把所有前缀着「dav_」表格删除。之后,这个安装程序应该能把表格自动地初始化。"; +$a->strings["Troubleshooting"] = "调试"; +$a->strings["Manual creation of the database tables:"] = "手动造成数据库表格:"; +$a->strings["Show SQL-statements"] = "表示SQL陈述"; +$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["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 profile wall and your friend stream."] = "Facebook交流由您的简介墙和您朋友的溪流组成。 "; +$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.

"] = "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。

"; +$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["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["Information"] = "信息"; +$a->strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。
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["Group Text"] = "组正文"; +$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!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Impressum插件必须被设置!
请加至少owner变量在您的设置文件。关于别的变量请指插件的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 not insert the Jappixmini Chat-Widget into the webinterface"] = "把Jappixmini聊小窗插入网用户界面"; +$a->strings["Jabber username"] = "Jabber用户名"; +$a->strings["Jabber server"] = "Jabber服务器"; +$a->strings["Jabber BOSH host"] = "Jabber BOSH主机"; +$a->strings["Jabber password"] = "Jabber密码"; +$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "把Jabber密码跟Friendica密码加密(推荐的)"; +$a->strings["Friendica password"] = "Friendica密码"; +$a->strings["Approve subscription requests from Friendica contacts automatically"] = "自动地批准从Friendica熟人的订阅要求"; +$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["Upload a file"] = "上传文件"; +$a->strings["Drop files here to upload"] = "在这儿放文件为上传"; $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["Failed"] = "失败"; +$a->strings["No files were uploaded."] = "没有文件上传。"; +$a->strings["Uploaded file is empty"] = "上传的文件空的"; $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["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.
It requires PHP >= 5.3"] = "安装不了Libravatar。
它要求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.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Gravatar加件安装着。请使Gravatar加件不可用。
如果找不到什么在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"] = "用/表达式/为输入正则表达式"; +$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 public tile servers"] = "一单公共砖服务器"; +$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 Piwik analytics tool."] = "这个网站用Piwik分析工具追踪 。"; +$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "如果您不想您访问这样记录您可以用一个cookie防Piwik追踪未来的访问(选择性退出)。"; +$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: "network" or "notifications/system""] = "例如:"网络"或"通知/系统""; +$a->strings["Post to StatusNet"] = "发送到StatusNet"; +$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "请联系您的网站行政人员。
提供的API URL无效。"; +$a->strings["We could not contact the StatusNet API with the Path you entered."] = "我们不能联系StatusNet API在您输入的路径。"; +$a->strings["StatusNet settings updated."] = "StatusNet设置更新了。"; +$a->strings["StatusNet Posting Settings"] = "StatusNet发送设置"; +$a->strings["Globally Available StatusNet OAuthKeys"] = "综合可用的StatusNet OAuthKeys"; +$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)."] = "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。"; +$a->strings["Provide your own OAuth Credentials"] = "提供您自己的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.
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."] = "找不到「consumer key」双为StatusNet。注册您Friendica账户当「desktop client」在您的StatusNet账户,粘贴「consumer key」双这儿和输入API基础根。
您登记您的OAuth钥匙双前问行政人员已经有没有钥匙双为这个Friendica安装在您最喜欢的StatusNet安装。"; +$a->strings["OAuth Consumer Key"] = "Oauth消费者钥匙"; +$a->strings["OAuth Consumer Secret"] = "Oauth消费者密码"; +$a->strings["Base API Path (remember the trailing /)"] = "基础API地址(注意最后的/)"; +$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 public posts will be posted to StatusNet."] = "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。"; +$a->strings["Log in with StatusNet"] = "用StatusNet登记"; +$a->strings["Copy the security code from StatusNet here"] = "复制安全密码从StatusNet这儿"; +$a->strings["Cancel Connection Process"] = "注销连接过程 "; +$a->strings["Current StatusNet API is"] = "现在StatusNet API是"; +$a->strings["Cancel StatusNet Connection"] = "注销StatusNet连接"; +$a->strings["Currently connected to: "] = "现在连接到:"; +$a->strings["If enabled all your public 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."] = "如果使可用的都您公开的文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "注意: 由于您的隐私设置(隐藏您的简介内容为生看者?)超链接可能包括在公文章转播到StatusNets会带领来客到空白页讲他看您的简介被限制。"; +$a->strings["Allow posting to StatusNet"] = "许放在StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "默认发送公开文章在StatusNet"; +$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["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["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 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 public posts will be posted to Twitter."] = "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的公开文章被发送到Twitter。"; +$a->strings["Log in with Twitter"] = "用Twitter登记"; +$a->strings["Copy the PIN from Twitter here"] = "复制Twitter密码这儿"; +$a->strings["If enabled all your public 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."] = "如果使可用的都您公开的文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"; +$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "注意:由于您的隐私设置(隐藏您的简介内容为生人?)环节包括在转播到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 RemoteStorage WebFinger"] = "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看RemoteStorage WebFinger"; +$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发送插件可用"; +$a->strings["WordPress username"] = "Wordpress用户名"; +$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["Read the original post and comment stream on Friendica"] = "看原来文章和评论溪流在Friendica"; +$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["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["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["Name of the Twitter Application"] = "Twitter应用名"; +$a->strings["set this to avoid mirroring postings from ~friendica back to ~friendica"] = "选择这个为避免复制文章从~friendica回归~friendica"; +$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["%s wrote the following post"] = "%s写了下面的文章"; +$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 "] = "%s "; +$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 may 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"] = "默认隐私组为新熟人"; +$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 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 Friendica.com to learn more about the Friendica project."] = "请看Friendica.com发现多关于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["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["%2\$d people like this"] = "%2\$d人们喜欢这个"; +$a->strings["%2\$d people don't like this"] = "%2\$d人们不喜欢这个"; +$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 everybody"] = "大家可见的"; +$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"] = "附上文件"; @@ -154,629 +1016,169 @@ $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["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["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 this profile."] = "错误的用户登记者。请用这个用户。"; -$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["Connect as an email follower (Coming soon)"] = "连接当邮件关注(快来)"; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "如果您还没有自由社会网络成员之一,点击这个环节找公开Friendica网站今天加入."; -$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 'Activating scheduled tasks'"] = "如果您没有命令行PHP在服务器,您实行不了用cron背景检查。看「使安排做的任务可用」"; -$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["

What next

"] = "

下步是什么

"; -$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 may still be visible"] = "回答/喜欢关您公开文章还可见的"; -$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 Settings page after successful login."] = "您的密码能被变化从设置页成功登记后。"; -$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 not published."] = "简介是没出版"; -$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 interesting 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 Quick Start 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 Settings 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"] = "简介"; -$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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。"; -$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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "要是这是你的私利服务器,安装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 Add New Contact dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。"; -$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 Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "目录页让您找别人在这个网络或别的同盟的网站。找一个连接关注按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。"; -$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 help pages may be consulted for detail on other program features and resources."] = "我们帮助页可查阅到详情关于别的编程特点和资源。"; -$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 'nickname@\$sitename'."] = "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@\$sitename」."; -$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["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["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["Logout"] = "注销"; +$a->strings["End this session"] = "结束这段时间"; +$a->strings["Status"] = "现状"; +$a->strings["Your posts and conversations"] = "你的消息和交谈"; +$a->strings["Your profile page"] = "你的简介页"; +$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["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["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 may be able to respond from the sender's profile page."] = "没可用的安全交通。您可能会在发送人的简介页会回答。"; -$a->strings["Send Reply"] = "发回答"; -$a->strings["Friends of %s"] = "%s的朋友们"; -$a->strings["No friends to display."] = "没有朋友展示。"; +$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["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 “%3\$s”"] = "%1\$s把%2\$s变化成“%3\$s”"; +$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[" Marital Status:"] = "婚姻状况:"; +$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 public profile.
It may be visible to anybody using the internet."] = "这是你的公开的简介。
可能被所有的因特网用的看到。"; +$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"] = "用户"; @@ -784,7 +1186,6 @@ $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"] = "正常帐户"; @@ -801,17 +1202,19 @@ $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["Site name"] = "网页名字"; $a->strings["Banner/Logo"] = "标题/标志"; $a->strings["System language"] = "系统语言"; $a->strings["System theme"] = "系统主题"; @@ -822,6 +1225,10 @@ $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"] = "最大图片大小"; @@ -907,9 +1314,12 @@ $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["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"] = "上次登录"; @@ -934,124 +1344,54 @@ $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["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["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 'nickname@\$sitename'."] = "选择简介昵称。昵称头一字必须拉丁字。您再这个网站的简介地址将「example@\$sitename」."; +$a->strings["Choose a nickname: "] = "选择昵称:"; $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 “%3\$s”"] = "%1\$s把%2\$s变化成“%3\$s”"; -$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[" Marital Status:"] = "婚姻状况:"; -$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 public profile.
It may be visible to anybody using the internet."] = "这是你的公开的简介。
可能被所有的因特网用的看到。"; -$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["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: "] = "源代码输入:"; @@ -1064,19 +1404,427 @@ $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 may still be visible"] = "回答/喜欢关您公开文章还可见的"; +$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 not published."] = "简介是没出版"; +$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 interesting 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["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "注意:这是很高等的,你输入错的信息你和熟人的沟通会弄失灵了。"; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "请立即用后退按钮如果您不确定怎么用这页"; +$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["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 this profile."] = "错误的用户登记者。请用这个用户。"; +$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["Connect as an email follower (Coming soon)"] = "连接当邮件关注(快来)"; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica site and join us today."] = "如果您还没有自由社会网络成员之一,点击这个环节找公开Friendica网站今天加入."; +$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["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["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 Friendica.com to learn more about the Friendica project."] = "请看Friendica.com发现多关于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 'Activating scheduled tasks'"] = "如果您没有命令行PHP在服务器,您实行不了用cron背景检查。看「使安排做的任务可用」"; +$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["

What next

"] = "

下步是什么

"; +$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"; @@ -1092,1008 +1840,284 @@ $a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced $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["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 profile wall and your friend stream."] = "Facebook交流由您的简介墙和您朋友的溪流组成。 "; -$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.

"] = "错误:看上去您输入App-ID和-Secret在您的.htconfig.php文件。它们那里输入的时候,您不能把他们在这个表格输入。

"; -$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["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 Settings page after successful login."] = "您的密码能被变化从设置页成功登记后。"; +$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["%d person doesn't like this"] = array( - 0 => "%d人不喜欢这个", +$a->strings["Message not available."] = "通信不可用的"; +$a->strings["Delete message"] = "删除消息"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "没可用的安全交通。您可能会在发送人的简介页会回答。"; +$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["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"] = "用/表达式/为输入正则表达式"; -$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["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["Calendars"] = "日历"; -$a->strings["Create a new calendar"] = "创造新日历"; -$a->strings["Limitations"] = "限制"; -$a->strings["Warning"] = "警告"; -$a->strings["Synchronization (iPhone, Thunderbird Lightning, Android, ...)"] = "同步(iPhone,Thunderbird Lightning, 案桌,等)"; -$a->strings["Synchronizing this calendar with the iPhone"] = "正在把这个日历跟iPhone同步"; -$a->strings["Synchronizing your Friendica-Contacts with the iPhone"] = "正在把您的Friendica熟人跟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."] = "现有的插件没安装好。请跟系统管理您的friendica安装联系为维修。"; -$a->strings["Extended calendar with CalDAV-support"] = "增能日历跟CalDAV支持"; -$a->strings["noreply"] = "noreply"; -$a->strings["Notification: "] = "通知:"; -$a->strings["The database tables have been installed."] = "数据库表格被安装了。"; -$a->strings["An error occurred during the installation."] = "安装出错误。"; -$a->strings["The database tables have been updated."] = "数据库表格更新了。"; -$a->strings["An error occurred during the update."] = "更新出了问题。"; -$a->strings["No system-wide settings yet."] = "还没有系统设置。"; -$a->strings["Database status"] = "数据库现状"; -$a->strings["Installed"] = "安装了"; -$a->strings["Upgrade needed"] = "必须更新"; -$a->strings["Please back up all calendar data (the tables beginning with dav_*) before proceeding. While all calendar events should 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."] = "请备份所有的日历数据(表格有前缀「dav_」)继续之前。虽然所有的日历项目应该被转化成新数据库体系,备份总是最好。下边您会看数据库命令进行按「更新」按钮的时候。"; -$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."] = "出什么真糟糕的问题。我不能自动地恢复,不好意思。请看数据库系统,备份数据,而手动地把所有前缀着「dav_」表格删除。之后,这个安装程序应该能把表格自动地初始化。"; -$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 RemoteStorage WebFinger"] = "许用您的friendica用户名(%s)根对外没主办的贮藏(比如ownCloud)。看RemoteStorage WebFinger"; -$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 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: "network" or "notifications/system""] = "例如:"网络"或"通知/系统""; -$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["show/hide"] = "表示/隐藏"; -$a->strings["No forum subscriptions"] = "没有评坛订阅"; -$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!
Please add at least the owner variable to your config file. For other variables please refer to the README file of the addon."] = "Impressum插件必须被设置!
请加至少owner变量在您的设置文件。关于别的变量请指插件的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 public tile servers"] = "一单公共砖服务器"; -$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"] = "组正文"; -$a->strings["Use a text only (non-image) group selector in the \"group edit\" menu"] = "用光正文(无图片)组选择器在「组编辑」单"; -$a->strings["Could NOT install Libravatar successfully.
It requires PHP >= 5.3"] = "安装不了Libravatar。
它要求PHP>=5.3"; -$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.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Gravatar加件安装着。请使Gravatar加件不可用。
如果找不到什么在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.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = "Libravatar加件页安装着。请是Libravatar加件或者这个Gravatar加件。
Libravatar加件没找到在Libravatar的时候可依靠的是Gravatar"; -$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["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["Jappix Mini addon settings"] = "Jappix Mini加件设置"; -$a->strings["Activate addon"] = "使加件可用"; -$a->strings["Do not insert the Jappixmini Chat-Widget into the webinterface"] = "把Jappixmini聊小窗插入网用户界面"; -$a->strings["Jabber username"] = "Jabber用户名"; -$a->strings["Jabber server"] = "Jabber服务器"; -$a->strings["Jabber BOSH host"] = "Jabber BOSH主机"; -$a->strings["Jabber password"] = "Jabber密码"; -$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "把Jabber密码跟Friendica密码加密(推荐的)"; -$a->strings["Friendica password"] = "Friendica密码"; -$a->strings["Approve subscription requests from Friendica contacts automatically"] = "自动地批准从Friendica熟人的订阅要求"; -$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["Post to StatusNet"] = "发送到StatusNet"; -$a->strings["Please contact your site administrator.
The provided API URL is not valid."] = "请联系您的网站行政人员。
提供的API URL无效。"; -$a->strings["We could not contact the StatusNet API with the Path you entered."] = "我们不能联系StatusNet API在您输入的路径。"; -$a->strings["StatusNet settings updated."] = "StatusNet设置更新了。"; -$a->strings["StatusNet Posting Settings"] = "StatusNet发送设置"; -$a->strings["Globally Available StatusNet OAuthKeys"] = "综合可用的StatusNet OAuthKeys"; -$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)."] = "有已经装配的OAuth钥匙双于有的StatusNet服务器可用。如果您用那些之一,请用那个。否则随便连接任何别的StatusNet(看下)。"; -$a->strings["Provide your own OAuth Credentials"] = "提供您自己的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.
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."] = "找不到「consumer key」双为StatusNet。注册您Friendica账户当「desktop client」在您的StatusNet账户,粘贴「consumer key」双这儿和输入API基础根。
您登记您的OAuth钥匙双前问行政人员已经有没有钥匙双为这个Friendica安装在您最喜欢的StatusNet安装。"; -$a->strings["OAuth Consumer Key"] = "Oauth消费者钥匙"; -$a->strings["OAuth Consumer Secret"] = "Oauth消费者密码"; -$a->strings["Base API Path (remember the trailing /)"] = "基础API地址(注意最后的/)"; -$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 public posts will be posted to StatusNet."] = "为连接您的StatusNet账户点击下按钮得到安全密码从StatusNet您要在输入在下个栏和提交表单。只您的公开文章被送到StatusNet。"; -$a->strings["Log in with StatusNet"] = "用StatusNet登记"; -$a->strings["Copy the security code from StatusNet here"] = "复制安全密码从StatusNet这儿"; -$a->strings["Cancel Connection Process"] = "注销连接过程 "; -$a->strings["Current StatusNet API is"] = "现在StatusNet API是"; -$a->strings["Cancel StatusNet Connection"] = "注销StatusNet连接"; -$a->strings["Currently connected to: "] = "现在连接到:"; -$a->strings["If enabled all your public 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."] = "如果使可用的都您公开的文章会被发送到有关的StatusNet账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "注意: 由于您的隐私设置(隐藏您的简介内容为生看者?)超链接可能包括在公文章转播到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["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["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["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 Wordpress"] = "发送到Wordpress"; -$a->strings["WordPress Post Settings"] = "Wordpress发送设置"; -$a->strings["Enable WordPress Post Plugin"] = "使Wordpress发送插件可用"; -$a->strings["WordPress username"] = "Wordpress用户名"; -$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 Piwik analytics tool."] = "这个网站用Piwik分析工具追踪 。"; -$a->strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = "如果您不想您访问这样记录您可以用一个cookie防Piwik追踪未来的访问(选择性退出)。"; -$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 public posts will be posted to Twitter."] = "在这个Friendica网站使Twitter插件可用的可您还没有把您的账户和您Twitter账户连通。为这做点击下边的按钮得到密码从Twitter您要粘贴在下边的输入框和提交。只您的公开文章被发送到Twitter。"; -$a->strings["Log in with Twitter"] = "用Twitter登记"; -$a->strings["Copy the PIN from Twitter here"] = "复制Twitter密码这儿"; -$a->strings["If enabled all your public 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."] = "如果使可用的都您公开的文章会被发送到有关的Twitter账户。您会选择默认地这样做(这儿)或个文章分开地写字时候选择在文章设置。"; -$a->strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) 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."] = "注意:由于您的隐私设置(隐藏您的简介内容为生人?)环节包括在转播到Twitter的条文可能通空白页通知看者看您的简介有限。"; -$a->strings["Allow posting to Twitter"] = "允许发送到Twitter"; -$a->strings["Send public postings to Twitter by default"] = "默认地发送公开文章到Twitter"; -$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["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 Quick Start 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 Settings 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"] = "上传简历照片"; +$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 default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "随意编你的公开的简历。评论设置为藏起来你的朋友表和简历过陌生来客。"; +$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["If this is your own personal server, installing the Facebook addon may ease your transition to the free social web."] = "要是这是你的私利服务器,安装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 Add New Contact dialog."] = "您熟人页是您门口为管理熟人和连接朋友们在别的网络。典型您输入他的地址或者网站URL在添加新熟人对话框。"; +$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 Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "目录页让您找别人在这个网络或别的同盟的网站。找一个连接关注按钮在他们的简介页。您被要求的话,提供您自己的同一个人地址。"; +$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 help pages may be consulted for detail on other program features and resources."] = "我们帮助页可查阅到详情关于别的编程特点和资源。"; +$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["Your posts and conversations"] = "你的消息和交谈"; -$a->strings["Your profile page"] = "你的简介页"; -$a->strings["Your contacts"] = "您的熟人"; -$a->strings["Your photos"] = "你的照片"; -$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 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["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["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["Done. You can now login with your username and password"] = "完了。您现在会用您用户名和密码登录"; -$a->strings["A deleted group with this name was revived. Existing item permissions may 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"] = "默认隐私组为新熟人"; -$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["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["%s wrote the following post"] = "%s写了下面的文章"; -$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 "] = "%s "; -$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["%2\$d people like this"] = "%2\$d人们喜欢这个"; -$a->strings["%2\$d people don't like this"] = "%2\$d人们不喜欢这个"; -$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 everybody"] = "大家可见的"; -$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["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密码";