From 8e588b530ffd6ef0f20425d19152e6288c9ad6b6 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 15:59:53 +0100 Subject: duepuntozero: fix input width in aside --- view/theme/duepuntozero/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/view/theme/duepuntozero/style.css b/view/theme/duepuntozero/style.css index 867756302..662518d43 100644 --- a/view/theme/duepuntozero/style.css +++ b/view/theme/duepuntozero/style.css @@ -1830,6 +1830,10 @@ a.mail-list-link { margin-top: 10px; } +aside input[type='text'] { + width: 180px; +} + .widget { border: 1px solid #DDDDDD; padding: 8px; -- cgit v1.2.3 From 5c7fb2b0fe578d4271f8752d3853e1fa4b121942 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 16:17:36 +0100 Subject: quattro: fix delete selected items --- view/wall_item.tpl | 2 +- view/wallwall_item.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/wall_item.tpl b/view/wall_item.tpl index ef822750a..29dc62b47 100644 --- a/view/wall_item.tpl +++ b/view/wall_item.tpl @@ -56,7 +56,7 @@
{{ if $drop.dropping }} - + $drop.delete {{ endif }} {{ if $edpost }} diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index 2429bc20f..7ae489e6a 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -62,7 +62,7 @@
{{ if $drop.dropping }} - + $drop.delete {{ endif }} {{ if $edpost }} -- cgit v1.2.3 From 962467ee686046434e6ad060863eabb55fef2652 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 17:41:38 +0100 Subject: item tags as array to templates --- include/conversation.php | 53 +++++++++++++++++++++++++++++-- include/text.php | 8 ----- view/theme/dispy/wall_item.tpl | 8 ++++- view/theme/dispy/wallwall_item.tpl | 8 ++++- view/theme/duepuntozero/wall_item.tpl | 8 ++++- view/theme/duepuntozero/wallwall_item.tpl | 8 ++++- view/theme/quattro/colors.less | 1 + view/theme/quattro/quattro.less | 23 ++++++++++++-- view/theme/quattro/style.css | 33 +++++++++++++++++-- view/theme/testbubble/wall_item.tpl | 8 ++++- view/theme/testbubble/wallwall_item.tpl | 8 ++++- 11 files changed, 143 insertions(+), 23 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index b8f855803..7f9627a7d 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -4,7 +4,7 @@ * Render actions localized */ function localize_item(&$item){ - + $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; if ($item['verb']=== ACTIVITY_LIKE || $item['verb']=== ACTIVITY_DISLIKE){ $r = q("SELECT * from `item`,`contact` WHERE @@ -79,7 +79,44 @@ function localize_item(&$item){ $item['body'] = sprintf( t('%1$s is now friends with %2$s'), $A, $B)."\n\n\n".$Bphoto; } - + if ($item['verb']===ACTIVITY_TAG){ + $r = q("SELECT * from `item`,`contact` WHERE + `item`.`contact-id`=`contact`.`id` AND `item`.`uri`='%s';", + dbesc($item['parent-uri'])); + if(count($r)==0) return; + $obj=$r[0]; + + $author = '[url=' . $item['author-link'] . ']' . $item['author-name'] . '[/url]'; + $objauthor = '[url=' . $obj['author-link'] . ']' . $obj['author-name'] . '[/url]'; + + switch($obj['verb']){ + case ACTIVITY_POST: + switch ($obj['object-type']){ + case ACTIVITY_OBJ_EVENT: + $post_type = t('event'); + break; + default: + $post_type = t('status'); + } + break; + default: + if($obj['resource-id']){ + $post_type = t('photo'); + $m=array(); preg_match("/\[url=([^]]*)\]/", $obj['body'], $m); + $rr['plink'] = $m[1]; + } else { + $post_type = t('status'); + } + } + $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]'; + + $parsedobj = parse_xml_string($xmlhead.$item['object']); + + $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->link, $parsedobj->content); + $item['body'] = sprintf( t('%1$s tagged %2$s\'s %3$s with %4$s'), $author, $objauthor, $plink, $tag ); + + + } } @@ -522,12 +559,22 @@ function conversation(&$a, $items, $mode, $update) { // localize_item($item); + + $tags=array(); + foreach(explode(',',$item['tag']) as $tag){ + $tag = trim($tag); + if ($tag!="") $tags[] = bbcode($tag); + } + + // Build the HTML $body = prepare_body($item,true); - + $tmp_item = replace_macros($template,array( + '$type' => implode("",array_slice(split("/",$item['verb']),-1)), + '$tags' => $tags, '$body' => template_escape($body), '$id' => $item['item_id'], '$linktitle' => sprintf( t('View %s\'s profile @ %s'), $profile_name, ((strlen($item['author-link'])) ? $item['author-link'] : $item['url'])), diff --git a/include/text.php b/include/text.php index 59fc15007..08803cc9b 100644 --- a/include/text.php +++ b/include/text.php @@ -788,14 +788,6 @@ function prepare_body($item,$attach = false) { $s .= '
'; } - $arr = explode(',',$item['tag']); - if(count($arr)) { - $s .= '
'; - foreach($arr as $r) { - $s .= bbcode($r) . ' '; - } - $s .= '
'; - } $prep_arr = array('item' => $item, 'html' => $s); call_hooks('prepare_body_final', $prep_arr); diff --git a/view/theme/dispy/wall_item.tpl b/view/theme/dispy/wall_item.tpl index f555ed813..51431d4eb 100644 --- a/view/theme/dispy/wall_item.tpl +++ b/view/theme/dispy/wall_item.tpl @@ -50,7 +50,13 @@
$title
-
$body
+
$body +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
$name diff --git a/view/theme/dispy/wallwall_item.tpl b/view/theme/dispy/wallwall_item.tpl index 9e6ea40a1..4b2b52b85 100644 --- a/view/theme/dispy/wallwall_item.tpl +++ b/view/theme/dispy/wallwall_item.tpl @@ -55,7 +55,13 @@
$title
-
$body
+
$body +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
$name diff --git a/view/theme/duepuntozero/wall_item.tpl b/view/theme/duepuntozero/wall_item.tpl index 3a4a49729..62f33ddee 100644 --- a/view/theme/duepuntozero/wall_item.tpl +++ b/view/theme/duepuntozero/wall_item.tpl @@ -29,7 +29,13 @@
$title
-
$body
+
$body +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
{{ if $vote }} diff --git a/view/theme/duepuntozero/wallwall_item.tpl b/view/theme/duepuntozero/wallwall_item.tpl index aaa542760..050abb02d 100644 --- a/view/theme/duepuntozero/wallwall_item.tpl +++ b/view/theme/duepuntozero/wallwall_item.tpl @@ -33,7 +33,13 @@
$title
-
$body
+
$body +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
{{ if $vote }} diff --git a/view/theme/quattro/colors.less b/view/theme/quattro/colors.less index a7a91114c..d36ff05b0 100644 --- a/view/theme/quattro/colors.less +++ b/view/theme/quattro/colors.less @@ -77,3 +77,4 @@ @CommentBoxFullColor: @Grey5; @CommentBoxFullBorderColor: @Grey5; +@TagColor: @Grey1; diff --git a/view/theme/quattro/quattro.less b/view/theme/quattro/quattro.less index ea699d5c6..babcff3e8 100644 --- a/view/theme/quattro/quattro.less +++ b/view/theme/quattro/quattro.less @@ -3,7 +3,7 @@ /* global */ body { font-family: Liberation Sans,helvetica,arial,clean,sans-serif; - font-size: 12px; + font-size: 10px; background-color: @BodyBackground; color: @BodyColor; margin: 50px 0px 0px 0px; @@ -302,6 +302,9 @@ section { .wall-item-item, .wall-item-bottom { display: table-row; } + + .wall-item-bottom { .opaque(0.5); } + &:hover .wall-item-bottom { .opaque(1); } .wall-item-info { display: table-cell; vertical-align: top; @@ -326,7 +329,7 @@ section { } .wall-item-content { display: table-cell; - font-size: 16px; + font-size: 12px; max-width: 720px; word-wrap: break-word; } @@ -355,11 +358,12 @@ section { a { float: right; } input { float: right; } } + } .wall-item-container.comment { - margin-top: 50px; + /*margin-top: 50px;*/ .wall-item-photo { width: 32px; height: 32px; margin-left: 16px;} .wall-item-photo-menu-button { top: 13px !important; @@ -385,6 +389,19 @@ section { } } +.tag { + background: url("../../../images/tag_b.png") no-repeat center left; + color: @TagColor; + padding-left: 3px; + a { + padding-right: 8px; + background: url("../../../images/tag.png") no-repeat center right; + color: @TagColor; + } +} + + + #profile-jot-wrapper { width: 100%; margin: 0px 2em 20px 0px; diff --git a/view/theme/quattro/style.css b/view/theme/quattro/style.css index 95c3d087e..560f53c2c 100644 --- a/view/theme/quattro/style.css +++ b/view/theme/quattro/style.css @@ -153,7 +153,7 @@ /* global */ body { font-family: Liberation Sans, helvetica, arial, clean, sans-serif; - font-size: 12px; + font-size: 10px; background-color: #ffffff; color: #2d2d2d; margin: 50px 0px 0px 0px; @@ -535,6 +535,22 @@ section { .wall-item-container .wall-item-item, .wall-item-container .wall-item-bottom { display: table-row; } +.wall-item-container .wall-item-bottom { + opacity: 0.5; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} +.wall-item-container:hover .wall-item-bottom { + opacity: 1; + -webkit-transition: all 0.2s ease-in-out; + -moz-transition: all 0.2s ease-in-out; + -o-transition: all 0.2s ease-in-out; + -ms-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; +} .wall-item-container .wall-item-info { display: table-cell; vertical-align: top; @@ -563,7 +579,7 @@ section { } .wall-item-container .wall-item-content { display: table-cell; - font-size: 16px; + font-size: 12px; max-width: 720px; word-wrap: break-word; } @@ -619,7 +635,8 @@ section { float: right; } .wall-item-container.comment { - margin-top: 50px; + /*margin-top: 50px;*/ + } .wall-item-container.comment .wall-item-photo { width: 32px; @@ -653,6 +670,16 @@ section { color: #2d2d2d; border: 1px solid #2d2d2d; } +.tag { + background: url("../../../images/tag_b.png") no-repeat center left; + color: #ffffff; + padding-left: 3px; +} +.tag a { + padding-right: 8px; + background: url("../../../images/tag.png") no-repeat center right; + color: #ffffff; +} #profile-jot-wrapper { width: 100%; margin: 0px 2em 20px 0px; diff --git a/view/theme/testbubble/wall_item.tpl b/view/theme/testbubble/wall_item.tpl index 199381fd3..4fe819f4b 100644 --- a/view/theme/testbubble/wall_item.tpl +++ b/view/theme/testbubble/wall_item.tpl @@ -25,7 +25,13 @@
$title
-
$body
+
$body +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
diff --git a/view/theme/testbubble/wallwall_item.tpl b/view/theme/testbubble/wallwall_item.tpl index ba62d30fb..015e62f3e 100644 --- a/view/theme/testbubble/wallwall_item.tpl +++ b/view/theme/testbubble/wallwall_item.tpl @@ -56,7 +56,13 @@
$title
-
$body
+
$body +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
$name -- cgit v1.2.3 From 9b2cbc33ae0a4adfca156085898eeef5fd471657 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 17:41:51 +0100 Subject: ping: show tags --- mod/ping.php | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/mod/ping.php b/mod/ping.php index 9965ea918..9f6ae1974 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -8,9 +8,10 @@ function ping_init(&$a) { echo " "; + $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; if(local_user()){ - + $tags = array(); $comments = array(); $likes = array(); $dislikes = array(); @@ -29,6 +30,11 @@ function ping_init(&$a) { $network = count($r); foreach ($r as $it) { switch($it['verb']){ + case ACTIVITY_TAG: + $obj = parse_xml_string($xmlhead.$it['object']); + $it['tname'] = $obj->content; + $tags[] = $it; + break; case ACTIVITY_LIKE: $likes[] = $it; break; @@ -36,7 +42,6 @@ function ping_init(&$a) { $dislikes[] = $it; break; case ACTIVITY_FRIEND: - $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; $obj = parse_xml_string($xmlhead.$it['object']); $it['fname'] = $obj->title; $friends[] = $it; @@ -61,6 +66,11 @@ function ping_init(&$a) { $home = count($r); foreach ($r as $it) { switch($it['verb']){ + case ACTIVITY_TAG: + $obj = parse_xml_string($xmlhead.$it['object']); + $it['tname'] = $obj->content; + $tags[] = $it; + break; case ACTIVITY_LIKE: $likes[] = $it; break; @@ -68,7 +78,6 @@ function ping_init(&$a) { $dislikes[] = $it; break; case ACTIVITY_FRIEND: - $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">"; $obj = parse_xml_string($xmlhead.$it['object']); $it['fname'] = $obj->title; $friends[] = $it; @@ -129,7 +138,7 @@ function ping_init(&$a) { $home"; if ($register!=0) echo "$register"; - $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts); + $tot = $mail+$intro+$register+count($comments)+count($likes)+count($dislikes)+count($friends)+count($posts)+count($tags); echo ' '; if ($intro>0){ @@ -173,6 +182,11 @@ function ping_init(&$a) { echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} posted") ) ); }; } + if (count($tags)){ + foreach ($tags as $i) { + echo xmlize( $a->get_baseurl().'/display/'.$a->user['nickname']."/".$i['parent'], $i['author-name'], $i['author-link'], $i['author-avatar'], relative_date($i['created']), sprintf( t("{0} tagged %s's post with #%s"), $i['pname'], $i['tname'] ) ); + }; + } echo " "; } -- cgit v1.2.3 From f5bfe5a1a361125bf2711e8ba6a4cbe31e184b17 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 17:42:30 +0100 Subject: quattro: tags style --- images/tag.png | Bin 0 -> 528 bytes images/tag_b.png | Bin 0 -> 346 bytes view/wall_item.tpl | 15 +++++++++++++++ view/wallwall_item.tpl | 14 ++++++++++++++ 4 files changed, 29 insertions(+) create mode 100644 images/tag.png create mode 100644 images/tag_b.png diff --git a/images/tag.png b/images/tag.png new file mode 100644 index 000000000..40c5fd44e Binary files /dev/null and b/images/tag.png differ diff --git a/images/tag_b.png b/images/tag_b.png new file mode 100644 index 000000000..66c03415d Binary files /dev/null and b/images/tag_b.png differ diff --git a/view/wall_item.tpl b/view/wall_item.tpl index 29dc62b47..e3213b891 100644 --- a/view/wall_item.tpl +++ b/view/wall_item.tpl @@ -29,6 +29,15 @@
+
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
+
+
{{ if $plink }}$plink.title{{ endif }}
@@ -66,7 +75,13 @@
+
+ + +
$dislike
+
+
$comment
diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl index 7ae489e6a..e47014985 100644 --- a/view/wallwall_item.tpl +++ b/view/wallwall_item.tpl @@ -32,6 +32,15 @@ $body
+
+ +
+ {{ for $tags as $tag }} + $tag + {{ endfor }} +
+
+
+ + +
$dislike
+
$comment -- cgit v1.2.3 From dc3d47edcf764daf144132d94fdb811f650f345e Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 17:42:45 +0100 Subject: update messages.po --- util/messages.po | 4816 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 2518 insertions(+), 2298 deletions(-) diff --git a/util/messages.po b/util/messages.po index 46677fcf6..b893d273d 100644 --- a/util/messages.po +++ b/util/messages.po @@ -6,2349 +6,2770 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2.3.1137\n" +"Project-Id-Version: 2.3.1165\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-18 04:25-0700\n" +"POT-Creation-Date: 2011-11-15 17:20+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../../mod/oexchange.php:27 -msgid "Post successful." -msgstr "" - -#: ../../mod/update_notes.php:41 ../../mod/update_community.php:18 -#: ../../mod/update_network.php:22 ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" +#: ../../index.php:213 ../../mod/help.php:38 +msgid "Not Found" msgstr "" -#: ../../mod/crepair.php:68 -msgid "Contact settings applied." +#: ../../index.php:216 ../../mod/help.php:41 +msgid "Page not found." msgstr "" -#: ../../mod/crepair.php:70 -msgid "Contact update failed." +#: ../../index.php:279 ../../mod/profperm.php:19 ../../mod/group.php:67 +msgid "Permission denied" msgstr "" -#: ../../mod/crepair.php:81 ../../mod/wall_attach.php:43 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:109 ../../mod/photos.php:123 -#: ../../mod/photos.php:847 ../../mod/editpost.php:10 ../../mod/install.php:96 -#: ../../mod/notifications.php:62 ../../mod/contacts.php:103 -#: ../../mod/settings.php:41 ../../mod/settings.php:46 -#: ../../mod/settings.php:317 ../../mod/manage.php:75 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19 -#: ../../mod/viewcontacts.php:21 ../../mod/register.php:27 -#: ../../mod/regmod.php:111 ../../mod/item.php:113 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 -#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155 +#: ../../index.php:280 ../../mod/manage.php:75 ../../mod/wall_upload.php:42 +#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:137 ../../mod/profile_photo.php:148 +#: ../../mod/profile_photo.php:159 ../../mod/wall_attach.php:43 +#: ../../mod/suggest.php:28 ../../mod/regmod.php:111 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:229 ../../mod/settings.php:41 +#: ../../mod/settings.php:46 ../../mod/settings.php:376 +#: ../../mod/photos.php:123 ../../mod/photos.php:858 ../../mod/display.php:111 +#: ../../mod/editpost.php:10 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/contacts.php:115 ../../mod/register.php:27 +#: ../../mod/allfriends.php:9 ../../mod/install.php:96 ../../mod/network.php:6 +#: ../../mod/events.php:109 ../../mod/notifications.php:62 +#: ../../mod/crepair.php:113 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/notes.php:20 ../../mod/fsuggest.php:78 ../../mod/item.php:113 #: ../../mod/message.php:9 ../../mod/message.php:42 -#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8 -#: ../../mod/display.php:108 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:226 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:330 -#: ../../include/items.php:2718 ../../index.php:279 +#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:21 +#: ../../mod/group.php:19 ../../mod/attach.php:33 ../../mod/common.php:9 +#: ../../addon/facebook/facebook.php:331 ../../include/items.php:2874 msgid "Permission denied." msgstr "" -#: ../../mod/crepair.php:95 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/contacts.php:213 -#: ../../mod/dfrn_confirm.php:114 -msgid "Contact not found." +#: ../../boot.php:419 +msgid "Delete this item?" msgstr "" -#: ../../mod/crepair.php:101 -msgid "Repair Contact Settings" +#: ../../boot.php:420 ../../mod/photos.php:1202 ../../mod/photos.php:1241 +#: ../../mod/photos.php:1272 ../../include/conversation.php:433 +msgid "Comment" msgstr "" -#: ../../mod/crepair.php:103 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect " -"information your communications with this contact will stop working." +#: ../../boot.php:662 +msgid "Create a New Account" msgstr "" -#: ../../mod/crepair.php:104 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." +#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77 +msgid "Register" msgstr "" -#: ../../mod/crepair.php:112 ../../mod/admin.php:464 ../../mod/admin.php:473 -msgid "Name" +#: ../../boot.php:679 ../../include/nav.php:44 +msgid "Logout" msgstr "" -#: ../../mod/crepair.php:113 -msgid "Account Nickname" +#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28 +#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62 +msgid "Login" msgstr "" -#: ../../mod/crepair.php:114 -msgid "@Tagname - overrides Name/Nickname" +#: ../../boot.php:682 +msgid "Nickname or Email address: " msgstr "" -#: ../../mod/crepair.php:115 -msgid "Account URL" +#: ../../boot.php:683 +msgid "Password: " msgstr "" -#: ../../mod/crepair.php:116 -msgid "Friend Request URL" +#: ../../boot.php:686 +msgid "OpenID: " msgstr "" -#: ../../mod/crepair.php:117 -msgid "Friend Confirm URL" +#: ../../boot.php:692 +msgid "Forgot your password?" msgstr "" -#: ../../mod/crepair.php:118 -msgid "Notification Endpoint URL" +#: ../../boot.php:693 ../../mod/lostpass.php:82 +msgid "Password Reset" msgstr "" -#: ../../mod/crepair.php:119 -msgid "Poll/Feed URL" +#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10 +msgid "No profile" msgstr "" -#: ../../mod/crepair.php:120 -msgid "New photo from this URL" +#: ../../boot.php:839 +msgid "Edit profile" msgstr "" -#: ../../mod/crepair.php:130 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:330 ../../mod/photos.php:875 ../../mod/photos.php:933 -#: ../../mod/photos.php:1152 ../../mod/photos.php:1192 -#: ../../mod/photos.php:1231 ../../mod/photos.php:1262 -#: ../../mod/install.php:137 ../../mod/localtime.php:45 -#: ../../mod/contacts.php:270 ../../mod/settings.php:420 -#: ../../mod/settings.php:556 ../../mod/manage.php:106 ../../mod/group.php:84 -#: ../../mod/group.php:167 ../../mod/admin.php:296 ../../mod/admin.php:461 -#: ../../mod/admin.php:587 ../../mod/admin.php:652 ../../mod/profiles.php:372 -#: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:403 -#: ../../addon/nsfw/nsfw.php:53 ../../addon/randplace/randplace.php:178 -#: ../../addon/impressum/impressum.php:69 ../../addon/oembed/oembed.php:41 -#: ../../addon/statusnet/statusnet.php:282 -#: ../../addon/statusnet/statusnet.php:296 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:329 -#: ../../addon/statusnet/statusnet.php:351 -#: ../../addon/statusnet/statusnet.php:486 ../../addon/wppost/wppost.php:101 -#: ../../addon/piwik/piwik.php:81 ../../addon/twitter/twitter.php:179 -#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299 -#: ../../include/conversation.php:434 -msgid "Submit" +#: ../../boot.php:890 ../../include/contact_widgets.php:9 +msgid "Connect" msgstr "" -#: ../../mod/help.php:30 -msgid "Help:" +#: ../../boot.php:900 ../../include/nav.php:129 +msgid "Profiles" msgstr "" -#: ../../mod/help.php:34 ../../include/nav.php:82 -msgid "Help" +#: ../../boot.php:900 ../../include/nav.php:129 +msgid "Manage/edit profiles" msgstr "" -#: ../../mod/help.php:38 ../../index.php:212 -msgid "Not Found" +#: ../../boot.php:906 ../../mod/profiles.php:462 +msgid "Change profile photo" msgstr "" -#: ../../mod/help.php:41 ../../index.php:215 -msgid "Page not found." +#: ../../boot.php:907 ../../mod/profiles.php:463 +msgid "Create New Profile" msgstr "" -#: ../../mod/wall_attach.php:57 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../boot.php:917 ../../mod/profiles.php:473 +msgid "Profile Image" msgstr "" -#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 -msgid "File upload failed." +#: ../../boot.php:920 ../../mod/profiles.php:475 +msgid "visible to everybody" msgstr "" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." +#: ../../boot.php:921 ../../mod/profiles.php:476 +msgid "Edit visibility" msgstr "" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" +#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37 +#: ../../include/bb2diaspora.php:249 +msgid "Location:" msgstr "" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" +#: ../../boot.php:942 ../../include/profile_advanced.php:17 +msgid "Gender:" msgstr "" -#: ../../mod/events.php:61 -msgid "Event description and start time are required." +#: ../../boot.php:945 ../../include/profile_advanced.php:37 +msgid "Status:" msgstr "" -#: ../../mod/events.php:117 ../../include/nav.php:50 ../../boot.php:1212 -msgid "Events" +#: ../../boot.php:947 ../../include/profile_advanced.php:45 +msgid "Homepage:" msgstr "" -#: ../../mod/events.php:207 -msgid "Create New Event" +#: ../../boot.php:1006 ../../boot.php:1068 +msgid "g A l F d" msgstr "" -#: ../../mod/events.php:210 -msgid "Previous" +#: ../../boot.php:1007 ../../boot.php:1069 +msgid "F d" msgstr "" -#: ../../mod/events.php:213 -msgid "Next" +#: ../../boot.php:1030 +msgid "Birthday Reminders" msgstr "" -#: ../../mod/events.php:220 -msgid "l, F j" +#: ../../boot.php:1031 +msgid "Birthdays this week:" msgstr "" -#: ../../mod/events.php:232 -msgid "Edit event" +#: ../../boot.php:1047 ../../boot.php:1111 +msgid "[today]" msgstr "" -#: ../../mod/events.php:234 ../../include/text.php:848 -msgid "link to source" +#: ../../boot.php:1092 +msgid "Event Reminders" msgstr "" -#: ../../mod/events.php:302 -msgid "hour:minute" +#: ../../boot.php:1093 +msgid "Events this week:" msgstr "" -#: ../../mod/events.php:311 -msgid "Event details" +#: ../../boot.php:1105 +msgid "[No description]" msgstr "" -#: ../../mod/events.php:312 -#, php-format -msgid "Format is %s %s. Starting date and Description are required." +#: ../../boot.php:1282 ../../include/nav.php:47 +msgid "Status" msgstr "" -#: ../../mod/events.php:313 -msgid "Event Starts:" +#: ../../boot.php:1287 ../../mod/profperm.php:103 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74 +#: ../../include/nav.php:48 +msgid "Profile" msgstr "" -#: ../../mod/events.php:316 -msgid "Finish date/time is not known or not relevant" +#: ../../boot.php:1292 ../../include/nav.php:49 +msgid "Photos" msgstr "" -#: ../../mod/events.php:318 -msgid "Event Finishes:" +#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50 +msgid "Events" msgstr "" -#: ../../mod/events.php:321 -msgid "Adjust for viewer timezone" +#: ../../boot.php:1305 ../../mod/notes.php:44 +msgid "Personal Notes" msgstr "" -#: ../../mod/events.php:323 -msgid "Description:" +#: ../../mod/manage.php:37 +#, php-format +msgid "Welcome back %s" msgstr "" -#: ../../mod/events.php:325 ../../include/event.php:37 -#: ../../include/bb2diaspora.php:210 ../../boot.php:919 -msgid "Location:" +#: ../../mod/manage.php:87 +msgid "Manage Identities and/or Pages" msgstr "" -#: ../../mod/events.php:327 -msgid "Share this event" +#: ../../mod/manage.php:90 +msgid "" +"(Toggle between different identities or community/group pages which share " +"your account details.)" msgstr "" -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:651 ../../addon/js_upload/js_upload.php:45 -msgid "Cancel" +#: ../../mod/manage.php:92 +msgid "Select an identity to manage: " msgstr "" -#: ../../mod/tagrm.php:41 -msgid "Tag removed" +#: ../../mod/manage.php:106 ../../mod/profiles.php:375 +#: ../../mod/settings.php:420 ../../mod/settings.php:559 +#: ../../mod/settings.php:707 ../../mod/photos.php:886 +#: ../../mod/photos.php:944 ../../mod/photos.php:1163 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1242 +#: ../../mod/photos.php:1273 ../../mod/localtime.php:45 +#: ../../mod/invite.php:106 ../../mod/contacts.php:306 +#: ../../mod/install.php:137 ../../mod/events.php:330 +#: ../../mod/crepair.php:162 ../../mod/fsuggest.php:107 +#: ../../mod/admin.php:296 ../../mod/admin.php:461 ../../mod/admin.php:587 +#: ../../mod/admin.php:652 ../../mod/group.php:84 ../../mod/group.php:167 +#: ../../addon/tumblr/tumblr.php:89 ../../addon/twitter/twitter.php:179 +#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299 +#: ../../addon/statusnet/statusnet.php:282 +#: ../../addon/statusnet/statusnet.php:296 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:329 +#: ../../addon/statusnet/statusnet.php:351 +#: ../../addon/statusnet/statusnet.php:486 ../../addon/oembed/oembed.php:41 +#: ../../addon/uhremotestorage/uhremotestorage.php:58 +#: ../../addon/impressum/impressum.php:69 +#: ../../addon/facebook/facebook.php:404 ../../addon/nsfw/nsfw.php:53 +#: ../../addon/randplace/randplace.php:178 ../../addon/piwik/piwik.php:81 +#: ../../addon/wppost/wppost.php:101 ../../include/conversation.php:434 +msgid "Submit" msgstr "" -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" +#: ../../mod/dirfind.php:23 +msgid "People Search" msgstr "" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " +#: ../../mod/dirfind.php:57 ../../mod/match.php:57 +msgid "No matches" msgstr "" -#: ../../mod/tagrm.php:93 -msgid "Remove" +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113 +#, php-format +msgid "Image exceeds size limit of %d" msgstr "" -#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 -#, php-format -msgid "%s welcomes %s" +#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122 +#: ../../mod/photos.php:647 +msgid "Unable to process image." msgstr "" -#: ../../mod/photos.php:42 -msgid "Photo Albums" +#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90 +#: ../../mod/wall_upload.php:97 ../../mod/item.php:299 +#: ../../include/message.php:82 +msgid "Wall Photos" msgstr "" -#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:855 -#: ../../mod/photos.php:925 ../../mod/photos.php:940 ../../mod/photos.php:1340 -#: ../../mod/photos.php:1352 ../../addon/communityhome/communityhome.php:105 -msgid "Contact Photos" +#: ../../mod/wall_upload.php:84 ../../mod/profile_photo.php:251 +#: ../../mod/photos.php:667 +msgid "Image upload failed." msgstr "" -#: ../../mod/photos.php:62 ../../mod/settings.php:9 -msgid "everybody" +#: ../../mod/profile.php:105 ../../mod/display.php:66 +msgid "Access to this profile has been restricted." msgstr "" -#: ../../mod/photos.php:133 -msgid "Contact information unavailable" +#: ../../mod/profile.php:127 +msgid "Tips for New Members" msgstr "" -#: ../../mod/photos.php:144 ../../mod/photos.php:580 ../../mod/photos.php:925 -#: ../../mod/photos.php:940 ../../mod/register.php:316 -#: ../../mod/register.php:323 ../../mod/register.php:330 -#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 -#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:166 -#: ../../mod/profile_photo.php:242 ../../mod/profile_photo.php:251 -#: ../../addon/communityhome/communityhome.php:106 -msgid "Profile Photos" +#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340 +msgid "Disallowed profile URL." msgstr "" -#: ../../mod/photos.php:154 -msgid "Album not found." +#: ../../mod/follow.php:39 +msgid "" +"This site is not configured to allow communications with other networks." msgstr "" -#: ../../mod/photos.php:172 ../../mod/photos.php:934 -msgid "Delete Album" +#: ../../mod/follow.php:40 ../../mod/follow.php:50 +msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: ../../mod/photos.php:235 ../../mod/photos.php:1153 -msgid "Delete Photo" +#: ../../mod/follow.php:48 +msgid "The profile address specified does not provide adequate information." msgstr "" -#: ../../mod/photos.php:511 -msgid "was tagged in a" +#: ../../mod/follow.php:52 +msgid "An author or name was not found." msgstr "" -#: ../../mod/photos.php:511 ../../mod/like.php:127 ../../mod/tagger.php:44 -#: ../../addon/communityhome/communityhome.php:159 -#: ../../include/diaspora.php:989 ../../include/conversation.php:31 -msgid "photo" +#: ../../mod/follow.php:54 +msgid "No browser URL could be matched to this address." msgstr "" -#: ../../mod/photos.php:511 -msgid "by" +#: ../../mod/follow.php:61 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." msgstr "" -#: ../../mod/photos.php:614 ../../addon/js_upload/js_upload.php:312 -msgid "Image exceeds size limit of " +#: ../../mod/follow.php:66 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." msgstr "" -#: ../../mod/photos.php:622 -msgid "Image file is empty." +#: ../../mod/follow.php:133 +msgid "Unable to retrieve contact information." msgstr "" -#: ../../mod/photos.php:636 ../../mod/profile_photo.php:118 -#: ../../mod/wall_upload.php:65 -msgid "Unable to process image." +#: ../../mod/follow.php:179 +msgid "following" msgstr "" -#: ../../mod/photos.php:656 ../../mod/profile_photo.php:247 -#: ../../mod/wall_upload.php:84 -msgid "Image upload failed." +#: ../../mod/profile_photo.php:28 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../mod/photos.php:741 ../../mod/community.php:16 -#: ../../mod/dfrn_request.php:590 ../../mod/viewcontacts.php:16 -#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:31 -msgid "Public access denied." +#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 +#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170 +#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255 +#: ../../mod/photos.php:144 ../../mod/photos.php:591 ../../mod/photos.php:936 +#: ../../mod/photos.php:951 ../../mod/register.php:318 +#: ../../mod/register.php:325 ../../mod/register.php:332 +#: ../../addon/communityhome/communityhome.php:111 +msgid "Profile Photos" msgstr "" -#: ../../mod/photos.php:751 -msgid "No photos selected" +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258 +#, php-format +msgid "Image size reduction [%s] failed." msgstr "" -#: ../../mod/photos.php:828 -msgid "Access to this item is restricted." +#: ../../mod/profile_photo.php:89 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../mod/photos.php:882 -msgid "Upload Photos" +#: ../../mod/profile_photo.php:99 +msgid "Unable to process image" msgstr "" -#: ../../mod/photos.php:885 ../../mod/photos.php:929 -msgid "New album name: " +#: ../../mod/profile_photo.php:203 +msgid "Upload File:" msgstr "" -#: ../../mod/photos.php:886 -msgid "or existing album name: " +#: ../../mod/profile_photo.php:204 +msgid "Upload Profile Photo" msgstr "" -#: ../../mod/photos.php:887 -msgid "Do not show a status post for this upload" +#: ../../mod/profile_photo.php:205 +msgid "Upload" msgstr "" -#: ../../mod/photos.php:889 ../../mod/photos.php:1148 -msgid "Permissions" +#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686 +msgid "or" msgstr "" -#: ../../mod/photos.php:944 -msgid "Edit Album" +#: ../../mod/profile_photo.php:206 +msgid "skip this step" msgstr "" -#: ../../mod/photos.php:954 ../../mod/photos.php:1370 -msgid "View Photo" +#: ../../mod/profile_photo.php:206 +msgid "select a photo from your photo albums" msgstr "" -#: ../../mod/photos.php:989 -msgid "Permission denied. Access to this item may be restricted." +#: ../../mod/profile_photo.php:219 +msgid "Crop Image" msgstr "" -#: ../../mod/photos.php:991 -msgid "Photo not available" +#: ../../mod/profile_photo.php:220 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../mod/photos.php:1041 -msgid "View photo" +#: ../../mod/profile_photo.php:221 +msgid "Done Editing" msgstr "" -#: ../../mod/photos.php:1041 -msgid "Edit photo" +#: ../../mod/profile_photo.php:249 +msgid "Image uploaded successfully." msgstr "" -#: ../../mod/photos.php:1042 -msgid "Use as profile photo" +#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../mod/photos.php:1048 ../../include/conversation.php:369 -msgid "Private Message" +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_profile.php:41 ../../mod/update_notes.php:41 +msgid "[Embedded content - reload page to view]" msgstr "" -#: ../../mod/photos.php:1059 -msgid "View Full Size" +#: ../../mod/wall_attach.php:57 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../mod/photos.php:1127 -msgid "Tags: " +#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 +msgid "File upload failed." msgstr "" -#: ../../mod/photos.php:1130 -msgid "[Remove any tag]" +#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35 +msgid "Friend Suggestions" msgstr "" -#: ../../mod/photos.php:1141 -msgid "New album name" +#: ../../mod/suggest.php:42 +msgid "" +"No suggestions. This works best when you have more than one contact/friend." msgstr "" -#: ../../mod/photos.php:1144 -msgid "Caption" +#: ../../mod/suggest.php:55 +msgid "Ignore/Hide" msgstr "" -#: ../../mod/photos.php:1146 -msgid "Add a Tag" +#: ../../mod/regmod.php:52 ../../mod/register.php:369 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../mod/photos.php:1150 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../mod/regmod.php:54 ../../mod/register.php:371 +#: ../../mod/register.php:425 ../../mod/dfrn_request.php:553 +#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106 +#: ../../mod/dfrn_confirm.php:703 ../../include/items.php:1767 +#: ../../include/items.php:2114 ../../include/items.php:2440 +msgid "Administrator" msgstr "" -#: ../../mod/photos.php:1170 ../../include/conversation.php:416 -msgid "I like this (toggle)" +#: ../../mod/regmod.php:61 +msgid "Account approved." msgstr "" -#: ../../mod/photos.php:1171 ../../include/conversation.php:417 -msgid "I don't like this (toggle)" +#: ../../mod/regmod.php:93 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../mod/photos.php:1172 ../../include/conversation.php:793 -msgid "Share" +#: ../../mod/regmod.php:105 +msgid "Please login." msgstr "" -#: ../../mod/photos.php:1173 ../../mod/editpost.php:99 -#: ../../mod/message.php:137 ../../mod/message.php:270 -#: ../../include/conversation.php:251 ../../include/conversation.php:559 -#: ../../include/conversation.php:802 -msgid "Please wait" +#: ../../mod/profiles.php:21 ../../mod/profiles.php:239 +#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." msgstr "" -#: ../../mod/photos.php:1189 ../../mod/photos.php:1228 -#: ../../mod/photos.php:1259 ../../include/conversation.php:431 -msgid "This is you" +#: ../../mod/profiles.php:28 +msgid "Profile Name is required." msgstr "" -#: ../../mod/photos.php:1191 ../../mod/photos.php:1230 -#: ../../mod/photos.php:1261 ../../include/conversation.php:433 -#: ../../boot.php:417 -msgid "Comment" +#: ../../mod/profiles.php:198 +msgid "Profile updated." msgstr "" -#: ../../mod/photos.php:1289 ../../mod/group.php:154 ../../mod/admin.php:468 -#: ../../include/conversation.php:211 ../../include/conversation.php:454 -msgid "Delete" +#: ../../mod/profiles.php:256 +msgid "Profile deleted." msgstr "" -#: ../../mod/photos.php:1357 -msgid "Recent Photos" +#: ../../mod/profiles.php:272 ../../mod/profiles.php:303 +msgid "Profile-" msgstr "" -#: ../../mod/photos.php:1361 -msgid "Upload New Photos" +#: ../../mod/profiles.php:291 ../../mod/profiles.php:330 +msgid "New profile created." msgstr "" -#: ../../mod/photos.php:1374 -msgid "View Album" +#: ../../mod/profiles.php:309 +msgid "Profile unavailable to clone." msgstr "" -#: ../../mod/community.php:21 -msgid "Not available." +#: ../../mod/profiles.php:356 +msgid "Hide your contact/friend list from viewers of this profile?" msgstr "" -#: ../../mod/community.php:30 ../../include/nav.php:97 -msgid "Community" +#: ../../mod/profiles.php:357 ../../mod/settings.php:629 +#: ../../mod/settings.php:635 ../../mod/settings.php:643 +#: ../../mod/settings.php:647 ../../mod/settings.php:652 +#: ../../mod/settings.php:658 ../../mod/register.php:500 +#: ../../mod/dfrn_request.php:645 ../../mod/api.php:105 +msgid "Yes" msgstr "" -#: ../../mod/community.php:60 ../../mod/search.php:122 -msgid "No results." +#: ../../mod/profiles.php:358 ../../mod/settings.php:629 +#: ../../mod/settings.php:635 ../../mod/settings.php:643 +#: ../../mod/settings.php:647 ../../mod/settings.php:652 +#: ../../mod/settings.php:658 ../../mod/register.php:501 +#: ../../mod/dfrn_request.php:646 ../../mod/api.php:106 +msgid "No" msgstr "" -#: ../../mod/community.php:87 -msgid "" -"Shared content is covered by the Creative Commons Attribution 3.0 license." +#: ../../mod/profiles.php:374 +msgid "Edit Profile Details" msgstr "" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" +#: ../../mod/profiles.php:376 +msgid "View this profile" msgstr "" -#: ../../mod/editpost.php:32 -msgid "Edit post" +#: ../../mod/profiles.php:377 +msgid "Create a new profile using these settings" msgstr "" -#: ../../mod/editpost.php:75 ../../include/conversation.php:779 -msgid "Post to Email" +#: ../../mod/profiles.php:378 +msgid "Clone this profile" msgstr "" -#: ../../mod/editpost.php:90 ../../include/group.php:190 -#: ../../include/group.php:191 ../../include/conversation.php:441 -msgid "Edit" +#: ../../mod/profiles.php:379 +msgid "Delete this profile" msgstr "" -#: ../../mod/editpost.php:91 ../../mod/message.php:135 -#: ../../mod/message.php:268 ../../include/conversation.php:794 -msgid "Upload photo" +#: ../../mod/profiles.php:380 +msgid "Profile Name:" msgstr "" -#: ../../mod/editpost.php:92 ../../include/conversation.php:795 -msgid "Attach file" +#: ../../mod/profiles.php:381 +msgid "Your Full Name:" msgstr "" -#: ../../mod/editpost.php:93 ../../mod/message.php:136 -#: ../../mod/message.php:269 ../../include/conversation.php:796 -msgid "Insert web link" +#: ../../mod/profiles.php:382 +msgid "Title/Description:" msgstr "" -#: ../../mod/editpost.php:94 -msgid "Insert YouTube video" +#: ../../mod/profiles.php:383 +msgid "Your Gender:" msgstr "" -#: ../../mod/editpost.php:95 -msgid "Insert Vorbis [.ogg] video" +#: ../../mod/profiles.php:384 +#, php-format +msgid "Birthday (%s):" msgstr "" -#: ../../mod/editpost.php:96 -msgid "Insert Vorbis [.ogg] audio" +#: ../../mod/profiles.php:385 +msgid "Street Address:" msgstr "" -#: ../../mod/editpost.php:97 ../../include/conversation.php:799 -msgid "Set your location" +#: ../../mod/profiles.php:386 +msgid "Locality/City:" msgstr "" -#: ../../mod/editpost.php:98 ../../include/conversation.php:800 -msgid "Clear browser location" +#: ../../mod/profiles.php:387 +msgid "Postal/Zip Code:" msgstr "" -#: ../../mod/editpost.php:100 ../../include/conversation.php:803 -msgid "Permission settings" +#: ../../mod/profiles.php:388 +msgid "Country:" msgstr "" -#: ../../mod/editpost.php:108 ../../include/conversation.php:811 -msgid "CC: email addresses" +#: ../../mod/profiles.php:389 +msgid "Region/State:" msgstr "" -#: ../../mod/editpost.php:109 ../../include/conversation.php:812 -msgid "Public post" +#: ../../mod/profiles.php:390 +msgid " Marital Status:" msgstr "" -#: ../../mod/editpost.php:111 ../../include/conversation.php:814 -msgid "Example: bob@example.com, mary@example.com" +#: ../../mod/profiles.php:391 +msgid "Who: (if applicable)" msgstr "" -#: ../../mod/dfrn_request.php:92 -msgid "This introduction has already been accepted." +#: ../../mod/profiles.php:392 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:349 -msgid "Profile location is not valid or does not contain profile information." +#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43 +msgid "Sexual Preference:" msgstr "" -#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:354 -msgid "Warning: profile location has no identifiable owner name." +#: ../../mod/profiles.php:394 +msgid "Homepage URL:" msgstr "" -#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:356 -msgid "Warning: profile location has no profile photo." +#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47 +msgid "Political Views:" msgstr "" -#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:359 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" +#: ../../mod/profiles.php:396 +msgid "Religious Views:" +msgstr "" -#: ../../mod/dfrn_request.php:165 -msgid "Introduction complete." +#: ../../mod/profiles.php:397 +msgid "Public Keywords:" msgstr "" -#: ../../mod/dfrn_request.php:189 -msgid "Unrecoverable protocol error." +#: ../../mod/profiles.php:398 +msgid "Private Keywords:" msgstr "" -#: ../../mod/dfrn_request.php:217 -msgid "Profile unavailable." +#: ../../mod/profiles.php:399 +msgid "Example: fishing photography software" msgstr "" -#: ../../mod/dfrn_request.php:242 -#, php-format -msgid "%s has received too many connection requests today." +#: ../../mod/profiles.php:400 +msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: ../../mod/dfrn_request.php:243 -msgid "Spam protection measures have been invoked." +#: ../../mod/profiles.php:401 +msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: ../../mod/dfrn_request.php:244 -msgid "Friends are advised to please try again in 24 hours." +#: ../../mod/profiles.php:402 +msgid "Tell us about yourself..." msgstr "" -#: ../../mod/dfrn_request.php:274 -msgid "Invalid locator" +#: ../../mod/profiles.php:403 +msgid "Hobbies/Interests" msgstr "" -#: ../../mod/dfrn_request.php:294 -msgid "Unable to resolve your name at the provided location." +#: ../../mod/profiles.php:404 +msgid "Contact information and Social Networks" msgstr "" -#: ../../mod/dfrn_request.php:307 -msgid "You have already introduced yourself here." +#: ../../mod/profiles.php:405 +msgid "Musical interests" msgstr "" -#: ../../mod/dfrn_request.php:311 -#, php-format -msgid "Apparently you are already friends with %s." +#: ../../mod/profiles.php:406 +msgid "Books, literature" msgstr "" -#: ../../mod/dfrn_request.php:332 -msgid "Invalid profile URL." +#: ../../mod/profiles.php:407 +msgid "Television" msgstr "" -#: ../../mod/dfrn_request.php:338 ../../mod/follow.php:20 -msgid "Disallowed profile URL." +#: ../../mod/profiles.php:408 +msgid "Film/dance/culture/entertainment" msgstr "" -#: ../../mod/dfrn_request.php:405 ../../mod/contacts.php:87 -msgid "Failed to update contact record." +#: ../../mod/profiles.php:409 +msgid "Love/romance" msgstr "" -#: ../../mod/dfrn_request.php:426 -msgid "Your introduction has been sent." +#: ../../mod/profiles.php:410 +msgid "Work/employment" msgstr "" -#: ../../mod/dfrn_request.php:479 -msgid "Please login to confirm introduction." +#: ../../mod/profiles.php:411 +msgid "School/education" msgstr "" -#: ../../mod/dfrn_request.php:493 +#: ../../mod/profiles.php:416 msgid "" -"Incorrect identity currently logged in. Please login to this profile." +"This is your public profile.
It may " +"be visible to anybody using the internet." msgstr "" -#: ../../mod/dfrn_request.php:505 -#, php-format -msgid "Welcome home %s." +#: ../../mod/profiles.php:426 ../../mod/directory.php:122 +msgid "Age: " msgstr "" -#: ../../mod/dfrn_request.php:506 -#, php-format -msgid "Please confirm your introduction/connection request to %s." +#: ../../mod/profiles.php:461 +msgid "Edit/Manage Profiles" msgstr "" -#: ../../mod/dfrn_request.php:507 -msgid "Confirm" +#: ../../mod/notice.php:15 ../../mod/display.php:28 ../../mod/display.php:115 +#: ../../mod/viewsrc.php:15 ../../mod/admin.php:111 ../../mod/admin.php:502 +#: ../../include/items.php:2786 +msgid "Item not found." msgstr "" -#: ../../mod/dfrn_request.php:540 ../../include/items.php:2275 -msgid "[Name Withheld]" +#: ../../mod/settings.php:9 ../../mod/photos.php:62 +msgid "everybody" msgstr "" -#: ../../mod/dfrn_request.php:547 -msgid "Introduction received at " +#: ../../mod/settings.php:67 +msgid "Missing some important data!" msgstr "" -#: ../../mod/dfrn_request.php:549 ../../mod/lostpass.php:44 -#: ../../mod/lostpass.php:106 ../../mod/register.php:369 -#: ../../mod/register.php:423 ../../mod/regmod.php:54 -#: ../../mod/dfrn_confirm.php:702 ../../include/items.php:1704 -#: ../../include/items.php:1985 ../../include/items.php:2284 -msgid "Administrator" +#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62 +msgid "Update" msgstr "" -#: ../../mod/dfrn_request.php:631 -#, php-format -msgid "" -"Diaspora members: Please do not use this form. Instead, enter \"%s\" into " -"your Diaspora search bar." +#: ../../mod/settings.php:165 +msgid "Failed to connect with email account using the settings provided." msgstr "" -#: ../../mod/dfrn_request.php:634 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"social networks:" +#: ../../mod/settings.php:170 +msgid "Email settings updated." msgstr "" -#: ../../mod/dfrn_request.php:637 -msgid "Friend/Connection Request" +#: ../../mod/settings.php:188 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../mod/dfrn_request.php:638 -msgid "" -"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, " -"testuser@identi.ca" +#: ../../mod/settings.php:193 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../mod/dfrn_request.php:639 -msgid "Please answer the following:" +#: ../../mod/settings.php:204 +msgid "Password changed." msgstr "" -#: ../../mod/dfrn_request.php:640 -#, php-format -msgid "Does %s know you?" +#: ../../mod/settings.php:206 +msgid "Password update failed. Please try again." msgstr "" -#: ../../mod/dfrn_request.php:641 ../../mod/settings.php:489 -#: ../../mod/settings.php:495 ../../mod/settings.php:503 -#: ../../mod/settings.php:507 ../../mod/register.php:498 -#: ../../mod/profiles.php:354 -msgid "Yes" +#: ../../mod/settings.php:253 +msgid " Please use a shorter name." msgstr "" -#: ../../mod/dfrn_request.php:642 ../../mod/settings.php:489 -#: ../../mod/settings.php:495 ../../mod/settings.php:503 -#: ../../mod/settings.php:507 ../../mod/register.php:499 -#: ../../mod/profiles.php:355 -msgid "No" +#: ../../mod/settings.php:255 +msgid " Name too short." msgstr "" -#: ../../mod/dfrn_request.php:643 -msgid "Add a personal note:" +#: ../../mod/settings.php:261 +msgid " Not valid email." msgstr "" -#: ../../mod/dfrn_request.php:645 ../../include/contact_selectors.php:78 -msgid "Friendika" +#: ../../mod/settings.php:263 +msgid " Cannot change to that email." msgstr "" -#: ../../mod/dfrn_request.php:646 -msgid "StatusNet/Federated Social Web" +#: ../../mod/settings.php:323 ../../addon/twitter/twitter.php:294 +#: ../../addon/impressum/impressum.php:64 +#: ../../addon/facebook/facebook.php:320 ../../addon/piwik/piwik.php:94 +msgid "Settings updated." msgstr "" -#: ../../mod/dfrn_request.php:647 ../../mod/settings.php:376 -#: ../../include/contact_selectors.php:78 -msgid "Diaspora" +#: ../../mod/settings.php:382 ../../include/nav.php:128 +msgid "Account settings" msgstr "" -#: ../../mod/dfrn_request.php:648 -msgid "- please share from your own site as noted above" +#: ../../mod/settings.php:387 +msgid "Connector settings" msgstr "" -#: ../../mod/dfrn_request.php:649 -msgid "Your Identity Address:" +#: ../../mod/settings.php:392 +msgid "Plugin settings" msgstr "" -#: ../../mod/dfrn_request.php:650 -msgid "Submit Request" +#: ../../mod/settings.php:397 +msgid "Connections" msgstr "" -#: ../../mod/install.php:34 -msgid "Could not create/connect to database." +#: ../../mod/settings.php:402 +msgid "Export personal data" msgstr "" -#: ../../mod/install.php:39 -msgid "Connected to database." +#: ../../mod/settings.php:419 ../../mod/settings.php:445 +#: ../../mod/settings.php:478 +msgid "Add application" msgstr "" -#: ../../mod/install.php:75 -msgid "Proceed with Installation" +#: ../../mod/settings.php:421 ../../mod/settings.php:447 +#: ../../mod/dfrn_request.php:655 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:45 +msgid "Cancel" msgstr "" -#: ../../mod/install.php:77 -msgid "Your Friendika site database has been installed." +#: ../../mod/settings.php:422 ../../mod/settings.php:448 +#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473 +msgid "Name" msgstr "" -#: ../../mod/install.php:78 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../mod/settings.php:423 ../../mod/settings.php:449 +#: ../../addon/statusnet/statusnet.php:480 +msgid "Consumer Key" msgstr "" -#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 -msgid "Please see the file \"INSTALL.txt\"." +#: ../../mod/settings.php:424 ../../mod/settings.php:450 +#: ../../addon/statusnet/statusnet.php:479 +msgid "Consumer Secret" msgstr "" -#: ../../mod/install.php:81 -msgid "Proceed to registration" +#: ../../mod/settings.php:425 ../../mod/settings.php:451 +msgid "Redirect" msgstr "" -#: ../../mod/install.php:87 -msgid "Database import failed." +#: ../../mod/settings.php:426 ../../mod/settings.php:452 +msgid "Icon url" msgstr "" -#: ../../mod/install.php:88 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." +#: ../../mod/settings.php:437 +msgid "You can't edit this application." msgstr "" -#: ../../mod/install.php:101 -msgid "Welcome to Friendika." +#: ../../mod/settings.php:477 +msgid "Connected Apps" msgstr "" -#: ../../mod/install.php:124 -msgid "Friendika Social Network" +#: ../../mod/settings.php:479 ../../mod/editpost.php:90 +#: ../../include/conversation.php:441 ../../include/group.php:190 +msgid "Edit" msgstr "" -#: ../../mod/install.php:125 -msgid "Installation" +#: ../../mod/settings.php:480 ../../mod/photos.php:1300 +#: ../../mod/admin.php:468 ../../mod/group.php:154 +#: ../../include/conversation.php:211 ../../include/conversation.php:454 +msgid "Delete" msgstr "" -#: ../../mod/install.php:126 -msgid "" -"In order to install Friendika we need to know how to connect to your " -"database." +#: ../../mod/settings.php:481 +msgid "Client key starts with" msgstr "" -#: ../../mod/install.php:127 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../mod/settings.php:482 +msgid "No name" msgstr "" -#: ../../mod/install.php:128 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/settings.php:483 +msgid "Remove authorization" msgstr "" -#: ../../mod/install.php:129 -msgid "Database Server Name" +#: ../../mod/settings.php:495 +msgid "No Plugin settings configured" msgstr "" -#: ../../mod/install.php:130 -msgid "Database Login Name" +#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122 +msgid "Plugin Settings" msgstr "" -#: ../../mod/install.php:131 -msgid "Database Login Password" +#: ../../mod/settings.php:515 ../../mod/settings.php:516 +#, php-format +msgid "Built-in support for %s connectivity is %s" msgstr "" -#: ../../mod/install.php:132 -msgid "Database Name" +#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651 +#: ../../include/contact_selectors.php:78 +msgid "Diaspora" msgstr "" -#: ../../mod/install.php:133 -msgid "Please select a default timezone for your website" +#: ../../mod/settings.php:515 ../../mod/settings.php:516 +msgid "enabled" msgstr "" -#: ../../mod/install.php:134 -msgid "" -"Site administrator email address. Your account email address must match this " -"in order to use the web admin panel." +#: ../../mod/settings.php:515 ../../mod/settings.php:516 +msgid "disabled" msgstr "" -#: ../../mod/install.php:153 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/settings.php:516 +msgid "StatusNet" msgstr "" -#: ../../mod/install.php:154 -msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." +#: ../../mod/settings.php:542 +msgid "Connector Settings" msgstr "" -#: ../../mod/install.php:161 +#: ../../mod/settings.php:548 +msgid "Email/Mailbox Setup" +msgstr "" + +#: ../../mod/settings.php:549 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." msgstr "" -#: ../../mod/install.php:162 -msgid "This is required for message delivery to work." +#: ../../mod/settings.php:550 +msgid "Last successful email check:" msgstr "" -#: ../../mod/install.php:184 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../mod/settings.php:551 +msgid "Email access is disabled on this site." msgstr "" -#: ../../mod/install.php:185 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../mod/settings.php:552 +msgid "IMAP server name:" msgstr "" -#: ../../mod/install.php:194 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../mod/settings.php:553 +msgid "IMAP port:" msgstr "" -#: ../../mod/install.php:196 -msgid "Error: libCURL PHP module required but not installed." +#: ../../mod/settings.php:554 +msgid "Security:" msgstr "" -#: ../../mod/install.php:198 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../mod/settings.php:554 +msgid "None" msgstr "" -#: ../../mod/install.php:200 -msgid "Error: openssl PHP module required but not installed." +#: ../../mod/settings.php:555 +msgid "Email login name:" msgstr "" -#: ../../mod/install.php:202 -msgid "Error: mysqli PHP module required but not installed." +#: ../../mod/settings.php:556 +msgid "Email password:" msgstr "" -#: ../../mod/install.php:204 -msgid "Error: mb_string PHP module required but not installed." +#: ../../mod/settings.php:557 +msgid "Reply-to address:" msgstr "" -#: ../../mod/install.php:216 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../mod/settings.php:558 +msgid "Send public posts to all email contacts:" msgstr "" -#: ../../mod/install.php:217 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443 +msgid "Normal Account" msgstr "" -#: ../../mod/install.php:218 -msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." +#: ../../mod/settings.php:597 +msgid "This account is a normal personal profile" msgstr "" -#: ../../mod/install.php:219 -msgid "" -"If not, you may be required to perform a manual installation. Please see the " -"file \"INSTALL.txt\" for instructions." +#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444 +msgid "Soapbox Account" msgstr "" -#: ../../mod/install.php:228 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +#: ../../mod/settings.php:601 +msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -#: ../../mod/install.php:243 -msgid "Errors encountered creating database tables." +#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445 +msgid "Community/Celebrity Account" msgstr "" -#: ../../mod/localtime.php:12 ../../include/event.php:11 -#: ../../include/bb2diaspora.php:188 -msgid "l F d, Y \\@ g:i A" +#: ../../mod/settings.php:605 +msgid "Automatically approve all connection/friend requests as read-write fans" msgstr "" -#: ../../mod/localtime.php:24 -msgid "Time Conversion" +#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446 +msgid "Automatic Friend Account" msgstr "" -#: ../../mod/localtime.php:26 -msgid "" -"Friendika provides this service for sharing events with other networks and " -"friends in unknown timezones." +#: ../../mod/settings.php:609 +msgid "Automatically approve all connection/friend requests as friends" msgstr "" -#: ../../mod/localtime.php:30 -#, php-format -msgid "UTC time: %s" +#: ../../mod/settings.php:619 +msgid "OpenID:" msgstr "" -#: ../../mod/localtime.php:33 -#, php-format -msgid "Current timezone: %s" +#: ../../mod/settings.php:619 +msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: ../../mod/localtime.php:36 -#, php-format -msgid "Converted localtime: %s" +#: ../../mod/settings.php:629 +msgid "Publish your default profile in your local site directory?" msgstr "" -#: ../../mod/localtime.php:41 -msgid "Please select your timezone:" +#: ../../mod/settings.php:635 +msgid "Publish your default profile in the global social directory?" msgstr "" -#: ../../mod/match.php:10 -msgid "Profile Match" +#: ../../mod/settings.php:643 +msgid "Hide your contact/friend list from viewers of your default profile?" msgstr "" -#: ../../mod/match.php:18 -msgid "No keywords to match. Please add keywords to your default profile." +#: ../../mod/settings.php:647 +msgid "Hide profile details and all your messages from unknown viewers?" msgstr "" -#: ../../mod/match.php:57 ../../mod/dirfind.php:57 -msgid "No matches" +#: ../../mod/settings.php:652 +msgid "Allow friends to post to your profile page?" msgstr "" -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." +#: ../../mod/settings.php:658 +msgid "Allow friends to tag your posts?" msgstr "" -#: ../../mod/lockview.php:43 -msgid "Visible to:" +#: ../../mod/settings.php:667 +msgid "Profile is not published." msgstr "" -#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:176 -#, php-format -msgid "Welcome to %s" +#: ../../mod/settings.php:691 +msgid "Your Identity Address is" msgstr "" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." +#: ../../mod/settings.php:705 +msgid "Account Settings" msgstr "" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:144 -#: ../../mod/notifications.php:188 -msgid "Discard" +#: ../../mod/settings.php:713 +msgid "Password Settings" msgstr "" -#: ../../mod/notifications.php:47 ../../mod/notifications.php:143 -#: ../../mod/notifications.php:187 -msgid "Ignore" +#: ../../mod/settings.php:714 +msgid "New Password:" msgstr "" -#: ../../mod/notifications.php:71 ../../include/nav.php:109 -msgid "Network" +#: ../../mod/settings.php:715 +msgid "Confirm:" msgstr "" -#: ../../mod/notifications.php:76 ../../include/nav.php:73 -#: ../../include/nav.php:111 -msgid "Home" +#: ../../mod/settings.php:715 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../mod/notifications.php:81 ../../include/nav.php:117 -msgid "Introductions" +#: ../../mod/settings.php:719 +msgid "Basic Settings" msgstr "" -#: ../../mod/notifications.php:86 ../../mod/message.php:72 -#: ../../include/nav.php:122 -msgid "Messages" +#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15 +msgid "Full Name:" msgstr "" -#: ../../mod/notifications.php:105 -msgid "Show Ignored Requests" +#: ../../mod/settings.php:721 +msgid "Email Address:" msgstr "" -#: ../../mod/notifications.php:105 -msgid "Hide Ignored Requests" +#: ../../mod/settings.php:722 +msgid "Your Timezone:" msgstr "" -#: ../../mod/notifications.php:131 ../../mod/notifications.php:174 -msgid "Notification type: " +#: ../../mod/settings.php:723 +msgid "Default Post Location:" msgstr "" -#: ../../mod/notifications.php:132 -msgid "Friend Suggestion" +#: ../../mod/settings.php:724 +msgid "Use Browser Location:" msgstr "" -#: ../../mod/notifications.php:134 -#, php-format -msgid "suggested by %s" +#: ../../mod/settings.php:725 +msgid "Display Theme:" msgstr "" -#: ../../mod/notifications.php:140 ../../mod/notifications.php:185 -#: ../../mod/admin.php:466 -msgid "Approve" +#: ../../mod/settings.php:729 +msgid "Security and Privacy Settings" msgstr "" -#: ../../mod/notifications.php:160 -msgid "Claims to be known to you: " +#: ../../mod/settings.php:731 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../mod/notifications.php:160 -msgid "yes" +#: ../../mod/settings.php:731 +msgid "(to prevent spam abuse)" msgstr "" -#: ../../mod/notifications.php:160 -msgid "no" +#: ../../mod/settings.php:732 +msgid "Default Post Permissions" msgstr "" -#: ../../mod/notifications.php:167 -msgid "Approve as: " +#: ../../mod/settings.php:733 +msgid "(click to open/close)" msgstr "" -#: ../../mod/notifications.php:168 -msgid "Friend" +#: ../../mod/settings.php:739 +msgid "Automatically expire posts after days:" msgstr "" -#: ../../mod/notifications.php:169 -msgid "Sharer" +#: ../../mod/settings.php:739 +msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: ../../mod/notifications.php:169 -msgid "Fan/Admirer" +#: ../../mod/settings.php:748 +msgid "Notification Settings" msgstr "" -#: ../../mod/notifications.php:175 -msgid "Friend/Connect Request" +#: ../../mod/settings.php:749 +msgid "Send a notification email when:" msgstr "" -#: ../../mod/notifications.php:175 -msgid "New Follower" +#: ../../mod/settings.php:750 +msgid "You receive an introduction" msgstr "" -#: ../../mod/notifications.php:194 -msgid "No notifications." +#: ../../mod/settings.php:751 +msgid "Your introductions are confirmed" msgstr "" -#: ../../mod/notifications.php:197 ../../mod/notifications.php:283 -#: ../../mod/notifications.php:359 ../../include/nav.php:118 -msgid "Notifications" +#: ../../mod/settings.php:752 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../mod/notifications.php:234 ../../mod/notifications.php:316 -#, php-format -msgid "%s liked %s's post" +#: ../../mod/settings.php:753 +msgid "Someone writes a followup comment" msgstr "" -#: ../../mod/notifications.php:243 ../../mod/notifications.php:325 -#, php-format -msgid "%s disliked %s's post" +#: ../../mod/settings.php:754 +msgid "You receive a private message" msgstr "" -#: ../../mod/notifications.php:257 ../../mod/notifications.php:339 -#, php-format -msgid "%s is now friends with %s" +#: ../../mod/settings.php:758 +msgid "Advanced Page Settings" msgstr "" -#: ../../mod/notifications.php:264 -#, php-format -msgid "%s created a new post" +#: ../../mod/search.php:13 ../../mod/network.php:75 +msgid "Saved Searches" msgstr "" -#: ../../mod/notifications.php:265 ../../mod/notifications.php:348 -#, php-format -msgid "%s commented on %s's post" +#: ../../mod/search.php:16 ../../mod/network.php:81 +msgid "Remove term" msgstr "" -#: ../../mod/notifications.php:279 ../../mod/notifications.php:355 -msgid "Nothing new!" +#: ../../mod/search.php:71 ../../mod/photos.php:752 ../../mod/display.php:7 +#: ../../mod/dfrn_request.php:594 ../../mod/directory.php:31 +#: ../../mod/viewcontacts.php:16 ../../mod/community.php:16 +msgid "Public access denied." msgstr "" -#: ../../mod/contacts.php:50 ../../mod/contacts.php:121 -msgid "Could not access contact record." +#: ../../mod/search.php:83 +msgid "Search This Site" msgstr "" -#: ../../mod/contacts.php:64 -msgid "Could not locate selected profile." +#: ../../mod/search.php:125 ../../mod/community.php:60 +msgid "No results." msgstr "" -#: ../../mod/contacts.php:85 -msgid "Contact updated." +#: ../../mod/photos.php:42 +msgid "Photo Albums" msgstr "" -#: ../../mod/contacts.php:143 -msgid "Contact has been blocked" +#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:866 +#: ../../mod/photos.php:936 ../../mod/photos.php:951 ../../mod/photos.php:1351 +#: ../../mod/photos.php:1363 ../../addon/communityhome/communityhome.php:110 +msgid "Contact Photos" msgstr "" -#: ../../mod/contacts.php:143 -msgid "Contact has been unblocked" +#: ../../mod/photos.php:133 +msgid "Contact information unavailable" msgstr "" -#: ../../mod/contacts.php:157 -msgid "Contact has been ignored" +#: ../../mod/photos.php:154 +msgid "Album not found." msgstr "" -#: ../../mod/contacts.php:157 -msgid "Contact has been unignored" +#: ../../mod/photos.php:172 ../../mod/photos.php:945 +msgid "Delete Album" msgstr "" -#: ../../mod/contacts.php:178 -msgid "stopped following" +#: ../../mod/photos.php:235 ../../mod/photos.php:1164 +msgid "Delete Photo" msgstr "" -#: ../../mod/contacts.php:199 -msgid "Contact has been removed." +#: ../../mod/photos.php:522 +msgid "was tagged in a" msgstr "" -#: ../../mod/contacts.php:227 ../../mod/contacts.php:370 -msgid "Mutual Friendship" +#: ../../mod/photos.php:522 ../../mod/tagger.php:70 ../../mod/like.php:127 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../include/conversation.php:31 ../../include/diaspora.php:1211 +msgid "photo" msgstr "" -#: ../../mod/contacts.php:231 ../../mod/contacts.php:374 -msgid "is a fan of yours" +#: ../../mod/photos.php:522 +msgid "by" msgstr "" -#: ../../mod/contacts.php:236 ../../mod/contacts.php:378 -msgid "you are a fan of" +#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312 +msgid "Image exceeds size limit of " msgstr "" -#: ../../mod/contacts.php:251 -msgid "Privacy Unavailable" +#: ../../mod/photos.php:633 +msgid "Image file is empty." msgstr "" -#: ../../mod/contacts.php:252 -msgid "Private communications are not available for this contact." +#: ../../mod/photos.php:762 +msgid "No photos selected" msgstr "" -#: ../../mod/contacts.php:255 -msgid "Never" +#: ../../mod/photos.php:839 +msgid "Access to this item is restricted." msgstr "" -#: ../../mod/contacts.php:259 -msgid "(Update was successful)" +#: ../../mod/photos.php:893 +msgid "Upload Photos" msgstr "" -#: ../../mod/contacts.php:259 -msgid "(Update was not successful)" +#: ../../mod/photos.php:896 ../../mod/photos.php:940 +msgid "New album name: " msgstr "" -#: ../../mod/contacts.php:262 -msgid "Suggest friends" +#: ../../mod/photos.php:897 +msgid "or existing album name: " msgstr "" -#: ../../mod/contacts.php:266 -#, php-format -msgid "Network type: %s" +#: ../../mod/photos.php:898 +msgid "Do not show a status post for this upload" msgstr "" -#: ../../mod/contacts.php:269 -msgid "Contact Editor" +#: ../../mod/photos.php:900 ../../mod/photos.php:1159 +msgid "Permissions" msgstr "" -#: ../../mod/contacts.php:271 -msgid "Profile Visibility" +#: ../../mod/photos.php:955 +msgid "Edit Album" msgstr "" -#: ../../mod/contacts.php:272 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../mod/photos.php:965 ../../mod/photos.php:1381 +msgid "View Photo" msgstr "" -#: ../../mod/contacts.php:273 -msgid "Contact Information / Notes" +#: ../../mod/photos.php:1000 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../mod/contacts.php:274 -msgid "Online Reputation" +#: ../../mod/photos.php:1002 +msgid "Photo not available" msgstr "" -#: ../../mod/contacts.php:275 -msgid "" -"Occasionally your friends may wish to inquire about this person's online " -"legitimacy." +#: ../../mod/photos.php:1052 +msgid "View photo" msgstr "" -#: ../../mod/contacts.php:276 -msgid "" -"You may help them choose whether or not to interact with this person by " -"providing a reputation to guide them." +#: ../../mod/photos.php:1052 +msgid "Edit photo" msgstr "" -#: ../../mod/contacts.php:277 -msgid "" -"Please take a moment to elaborate on this selection if you feel it could be " -"helpful to others." +#: ../../mod/photos.php:1053 +msgid "Use as profile photo" msgstr "" -#: ../../mod/contacts.php:278 ../../mod/contacts.php:394 -#: ../../mod/viewcontacts.php:61 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../mod/photos.php:1059 ../../include/conversation.php:369 +msgid "Private Message" msgstr "" -#: ../../mod/contacts.php:279 -msgid "Block/Unblock contact" +#: ../../mod/photos.php:1070 +msgid "View Full Size" msgstr "" -#: ../../mod/contacts.php:280 -msgid "Ignore contact" +#: ../../mod/photos.php:1138 +msgid "Tags: " msgstr "" -#: ../../mod/contacts.php:281 -msgid "Repair contact URL settings" +#: ../../mod/photos.php:1141 +msgid "[Remove any tag]" msgstr "" -#: ../../mod/contacts.php:282 -msgid "Repair contact URL settings (WARNING: Advanced)" +#: ../../mod/photos.php:1152 +msgid "New album name" msgstr "" -#: ../../mod/contacts.php:283 -msgid "View conversations" +#: ../../mod/photos.php:1155 +msgid "Caption" msgstr "" -#: ../../mod/contacts.php:285 -msgid "Delete contact" +#: ../../mod/photos.php:1157 +msgid "Add a Tag" msgstr "" -#: ../../mod/contacts.php:289 -msgid "Last updated: " +#: ../../mod/photos.php:1161 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -#: ../../mod/contacts.php:290 -msgid "Update public posts: " +#: ../../mod/photos.php:1181 ../../include/conversation.php:416 +msgid "I like this (toggle)" msgstr "" -#: ../../mod/contacts.php:292 ../../mod/admin.php:701 -msgid "Update now" +#: ../../mod/photos.php:1182 ../../include/conversation.php:417 +msgid "I don't like this (toggle)" msgstr "" -#: ../../mod/contacts.php:295 -msgid "Unblock this contact" +#: ../../mod/photos.php:1183 ../../include/conversation.php:814 +msgid "Share" msgstr "" -#: ../../mod/contacts.php:295 -msgid "Block this contact" +#: ../../mod/photos.php:1184 ../../mod/editpost.php:99 +#: ../../mod/message.php:137 ../../mod/message.php:270 +#: ../../include/conversation.php:251 ../../include/conversation.php:578 +#: ../../include/conversation.php:823 +msgid "Please wait" msgstr "" -#: ../../mod/contacts.php:296 -msgid "Unignore this contact" +#: ../../mod/photos.php:1200 ../../mod/photos.php:1239 +#: ../../mod/photos.php:1270 ../../include/conversation.php:431 +msgid "This is you" msgstr "" -#: ../../mod/contacts.php:296 -msgid "Ignore this contact" +#: ../../mod/photos.php:1368 +msgid "Recent Photos" msgstr "" -#: ../../mod/contacts.php:299 -msgid "Currently blocked" +#: ../../mod/photos.php:1372 +msgid "Upload New Photos" msgstr "" -#: ../../mod/contacts.php:300 -msgid "Currently ignored" +#: ../../mod/photos.php:1385 +msgid "View Album" msgstr "" -#: ../../mod/contacts.php:328 ../../include/nav.php:130 -msgid "Contacts" +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendika" msgstr "" -#: ../../mod/contacts.php:330 -msgid "Show Blocked Connections" +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" msgstr "" -#: ../../mod/contacts.php:330 -msgid "Hide Blocked Connections" +#: ../../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." msgstr "" -#: ../../mod/contacts.php:332 -msgid "Search your contacts" +#: ../../mod/newmember.php:16 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This will be useful in making friends." msgstr "" -#: ../../mod/contacts.php:333 ../../mod/directory.php:65 -msgid "Finding: " +#: ../../mod/newmember.php:18 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished " +"directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." msgstr "" -#: ../../mod/contacts.php:334 ../../mod/directory.php:67 -#: ../../include/contact_widgets.php:34 -msgid "Find" +#: ../../mod/newmember.php:20 +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/contacts.php:395 ../../include/Contact.php:129 -#: ../../include/conversation.php:660 -msgid "Edit contact" +#: ../../mod/newmember.php:23 +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/lostpass.php:16 -msgid "No valid account found." +#: ../../mod/newmember.php:28 +msgid "" +"Enter your email access information on your Settings page if you wish to " +"import and interact with friends or mailing lists from your email INBOX" msgstr "" -#: ../../mod/lostpass.php:31 -msgid "Password reset request issued. Check your email." +#: ../../mod/newmember.php:30 +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/lostpass.php:42 -#, php-format -msgid "Password reset requested at %s" +#: ../../mod/newmember.php:32 +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/lostpass.php:64 +#: ../../mod/newmember.php:34 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +"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 Connect dialog." msgstr "" -#: ../../mod/lostpass.php:82 ../../boot.php:689 -msgid "Password Reset" +#: ../../mod/newmember.php:36 +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/lostpass.php:83 -msgid "Your password has been reset as requested." +#: ../../mod/newmember.php:38 +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/lostpass.php:84 -msgid "Your new password is" +#: ../../mod/newmember.php:40 +msgid "" +"Our help pages may be consulted for detail on other program " +"features and resources." msgstr "" -#: ../../mod/lostpass.php:85 -msgid "Save or copy your new password - and then" +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:227 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../mod/lostpass.php:86 -msgid "click here to login" +#: ../../mod/localtime.php:24 +msgid "Time Conversion" msgstr "" -#: ../../mod/lostpass.php:87 +#: ../../mod/localtime.php:26 msgid "" -"Your password may be changed from the Settings page after " -"successful login." +"Friendika provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -#: ../../mod/lostpass.php:118 -msgid "Forgot your Password?" +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" msgstr "" -#: ../../mod/lostpass.php:119 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" msgstr "" -#: ../../mod/lostpass.php:120 -msgid "Nickname or Email: " +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" msgstr "" -#: ../../mod/lostpass.php:121 -msgid "Reset" +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" msgstr "" -#: ../../mod/settings.php:113 -msgid "Failed to connect with email account using the settings provided." +#: ../../mod/display.php:108 +msgid "Item has been removed." msgstr "" -#: ../../mod/settings.php:118 -msgid "Email settings updated." +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" msgstr "" -#: ../../mod/settings.php:136 -msgid "Passwords do not match. Password unchanged." +#: ../../mod/editpost.php:32 +msgid "Edit post" msgstr "" -#: ../../mod/settings.php:141 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../mod/editpost.php:75 ../../include/conversation.php:800 +msgid "Post to Email" msgstr "" -#: ../../mod/settings.php:152 -msgid "Password changed." +#: ../../mod/editpost.php:91 ../../mod/message.php:135 +#: ../../mod/message.php:268 ../../include/conversation.php:815 +msgid "Upload photo" msgstr "" -#: ../../mod/settings.php:154 -msgid "Password update failed. Please try again." +#: ../../mod/editpost.php:92 ../../include/conversation.php:816 +msgid "Attach file" msgstr "" -#: ../../mod/settings.php:200 -msgid " Please use a shorter name." +#: ../../mod/editpost.php:93 ../../mod/message.php:136 +#: ../../mod/message.php:269 ../../include/conversation.php:817 +msgid "Insert web link" msgstr "" -#: ../../mod/settings.php:202 -msgid " Name too short." +#: ../../mod/editpost.php:94 +msgid "Insert YouTube video" msgstr "" -#: ../../mod/settings.php:208 -msgid " Not valid email." +#: ../../mod/editpost.php:95 +msgid "Insert Vorbis [.ogg] video" msgstr "" -#: ../../mod/settings.php:210 -msgid " Cannot change to that email." +#: ../../mod/editpost.php:96 +msgid "Insert Vorbis [.ogg] audio" msgstr "" -#: ../../mod/settings.php:269 ../../addon/facebook/facebook.php:319 -#: ../../addon/impressum/impressum.php:64 ../../addon/piwik/piwik.php:94 -#: ../../addon/twitter/twitter.php:294 -msgid "Settings updated." +#: ../../mod/editpost.php:97 ../../include/conversation.php:820 +msgid "Set your location" msgstr "" -#: ../../mod/settings.php:323 ../../include/nav.php:128 -msgid "Account settings" +#: ../../mod/editpost.php:98 ../../include/conversation.php:821 +msgid "Clear browser location" msgstr "" -#: ../../mod/settings.php:328 -msgid "Connector settings" +#: ../../mod/editpost.php:100 ../../include/conversation.php:824 +msgid "Permission settings" msgstr "" -#: ../../mod/settings.php:333 -msgid "Plugin settings" +#: ../../mod/editpost.php:108 ../../include/conversation.php:832 +msgid "CC: email addresses" msgstr "" -#: ../../mod/settings.php:338 -msgid "Export personal data" +#: ../../mod/editpost.php:109 ../../include/conversation.php:833 +msgid "Public post" msgstr "" -#: ../../mod/settings.php:356 -msgid "No Plugin settings configured" +#: ../../mod/editpost.php:111 ../../include/conversation.php:835 +msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: ../../mod/settings.php:363 ../../addon/widgets/widgets.php:122 -msgid "Plugin Settings" +#: ../../mod/invite.php:35 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../mod/settings.php:376 ../../mod/settings.php:377 +#: ../../mod/invite.php:59 #, php-format -msgid "Built-in support for %s connectivity is %s" +msgid "Please join my network on %s" msgstr "" -#: ../../mod/settings.php:376 ../../mod/settings.php:377 -msgid "enabled" +#: ../../mod/invite.php:69 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../mod/settings.php:376 ../../mod/settings.php:377 -msgid "disabled" -msgstr "" +#: ../../mod/invite.php:73 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../mod/settings.php:377 -msgid "StatusNet" +#: ../../mod/invite.php:92 +msgid "You have no more invitations available" msgstr "" -#: ../../mod/settings.php:403 -msgid "Connector Settings" +#: ../../mod/invite.php:99 +msgid "Send invitations" msgstr "" -#: ../../mod/settings.php:409 -msgid "Email/Mailbox Setup" +#: ../../mod/invite.php:100 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../mod/settings.php:410 -msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." +#: ../../mod/invite.php:101 ../../mod/message.php:132 +#: ../../mod/message.php:265 +msgid "Your message:" msgstr "" -#: ../../mod/settings.php:411 -msgid "Last successful email check:" +#: ../../mod/invite.php:102 +#, php-format +msgid "Please join my social network on %s" msgstr "" -#: ../../mod/settings.php:412 -msgid "Email access is disabled on this site." +#: ../../mod/invite.php:103 +msgid "To accept this invitation, please visit:" msgstr "" -#: ../../mod/settings.php:413 -msgid "IMAP server name:" +#: ../../mod/invite.php:104 +msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: ../../mod/settings.php:414 -msgid "IMAP port:" +#: ../../mod/invite.php:104 +msgid "" +"Once you have registered, please connect with me via my profile page at:" msgstr "" -#: ../../mod/settings.php:415 -msgid "Security:" +#: ../../mod/ping.php:146 +msgid "{0} wants to be your friend" msgstr "" -#: ../../mod/settings.php:415 -msgid "None" +#: ../../mod/ping.php:151 +msgid "{0} sent you a message" msgstr "" -#: ../../mod/settings.php:416 -msgid "Email login name:" +#: ../../mod/ping.php:156 +msgid "{0} requested registration" msgstr "" -#: ../../mod/settings.php:417 -msgid "Email password:" +#: ../../mod/ping.php:162 +#, php-format +msgid "{0} commented %s's post" msgstr "" -#: ../../mod/settings.php:418 -msgid "Reply-to address:" +#: ../../mod/ping.php:167 +#, php-format +msgid "{0} liked %s's post" msgstr "" -#: ../../mod/settings.php:419 -msgid "Send public posts to all email contacts:" +#: ../../mod/ping.php:172 +#, php-format +msgid "{0} disliked %s's post" msgstr "" -#: ../../mod/settings.php:456 ../../mod/admin.php:126 ../../mod/admin.php:443 -msgid "Normal Account" +#: ../../mod/ping.php:177 +#, php-format +msgid "{0} is now friends with %s" msgstr "" -#: ../../mod/settings.php:457 -msgid "This account is a normal personal profile" +#: ../../mod/ping.php:182 +msgid "{0} posted" msgstr "" -#: ../../mod/settings.php:460 ../../mod/admin.php:127 ../../mod/admin.php:444 -msgid "Soapbox Account" +#: ../../mod/ping.php:187 +#, php-format +msgid "{0} tagged %s's post with #%s" msgstr "" -#: ../../mod/settings.php:461 -msgid "Automatically approve all connection/friend requests as read-only fans" +#: ../../mod/contacts.php:62 ../../mod/contacts.php:133 +msgid "Could not access contact record." msgstr "" -#: ../../mod/settings.php:464 ../../mod/admin.php:128 ../../mod/admin.php:445 -msgid "Community/Celebrity Account" +#: ../../mod/contacts.php:76 +msgid "Could not locate selected profile." msgstr "" -#: ../../mod/settings.php:465 -msgid "Automatically approve all connection/friend requests as read-write fans" +#: ../../mod/contacts.php:97 +msgid "Contact updated." msgstr "" -#: ../../mod/settings.php:468 ../../mod/admin.php:129 ../../mod/admin.php:446 -msgid "Automatic Friend Account" +#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409 +msgid "Failed to update contact record." msgstr "" -#: ../../mod/settings.php:469 -msgid "Automatically approve all connection/friend requests as friends" +#: ../../mod/contacts.php:155 +msgid "Contact has been blocked" msgstr "" -#: ../../mod/settings.php:479 -msgid "OpenID:" +#: ../../mod/contacts.php:155 +msgid "Contact has been unblocked" msgstr "" -#: ../../mod/settings.php:479 -msgid "(Optional) Allow this OpenID to login to this account." +#: ../../mod/contacts.php:169 +msgid "Contact has been ignored" msgstr "" -#: ../../mod/settings.php:489 -msgid "Publish your default profile in your local site directory?" +#: ../../mod/contacts.php:169 +msgid "Contact has been unignored" msgstr "" -#: ../../mod/settings.php:495 -msgid "Publish your default profile in the global social directory?" +#: ../../mod/contacts.php:190 +msgid "stopped following" msgstr "" -#: ../../mod/settings.php:503 -msgid "Hide your contact/friend list from viewers of your default profile?" +#: ../../mod/contacts.php:211 +msgid "Contact has been removed." msgstr "" -#: ../../mod/settings.php:507 -msgid "Hide profile details and all your messages from unknown viewers?" +#: ../../mod/contacts.php:232 +#, php-format +msgid "You are mutual friends with %s" msgstr "" -#: ../../mod/settings.php:516 -msgid "Profile is not published." +#: ../../mod/contacts.php:236 +#, php-format +msgid "You are sharing with %s" msgstr "" -#: ../../mod/settings.php:535 ../../mod/profile_photo.php:202 -msgid "or" +#: ../../mod/contacts.php:241 +#, php-format +msgid "%s is sharing with you" msgstr "" -#: ../../mod/settings.php:540 -msgid "Your Identity Address is" +#: ../../mod/contacts.php:258 +msgid "Private communications are not available for this contact." msgstr "" -#: ../../mod/settings.php:554 -msgid "Account Settings" +#: ../../mod/contacts.php:261 +msgid "Never" msgstr "" -#: ../../mod/settings.php:562 -msgid "Password Settings" +#: ../../mod/contacts.php:265 +msgid "(Update was successful)" msgstr "" -#: ../../mod/settings.php:563 -msgid "New Password:" +#: ../../mod/contacts.php:265 +msgid "(Update was not successful)" msgstr "" -#: ../../mod/settings.php:564 -msgid "Confirm:" +#: ../../mod/contacts.php:267 +msgid "Suggest friends" msgstr "" -#: ../../mod/settings.php:564 -msgid "Leave password fields blank unless changing" +#: ../../mod/contacts.php:271 +#, php-format +msgid "Network type: %s" msgstr "" -#: ../../mod/settings.php:568 -msgid "Basic Settings" -msgstr "" +#: ../../mod/contacts.php:274 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/settings.php:569 ../../include/profile_advanced.php:15 -msgid "Full Name:" +#: ../../mod/contacts.php:279 +msgid "View all contacts" msgstr "" -#: ../../mod/settings.php:570 -msgid "Email Address:" +#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 +#: ../../mod/admin.php:470 +msgid "Unblock" msgstr "" -#: ../../mod/settings.php:571 -msgid "Your Timezone:" +#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 +#: ../../mod/admin.php:469 +msgid "Block" msgstr "" -#: ../../mod/settings.php:572 -msgid "Default Post Location:" +#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 +msgid "Unignore" msgstr "" -#: ../../mod/settings.php:573 -msgid "Use Browser Location:" +#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 +#: ../../mod/notifications.php:47 ../../mod/notifications.php:143 +#: ../../mod/notifications.php:187 +msgid "Ignore" msgstr "" -#: ../../mod/settings.php:574 -msgid "Display Theme:" +#: ../../mod/contacts.php:294 +msgid "Repair" msgstr "" -#: ../../mod/settings.php:578 -msgid "Security and Privacy Settings" +#: ../../mod/contacts.php:304 +msgid "Contact Editor" msgstr "" -#: ../../mod/settings.php:580 -msgid "Maximum Friend Requests/Day:" +#: ../../mod/contacts.php:307 +msgid "Profile Visibility" msgstr "" -#: ../../mod/settings.php:580 -msgid "(to prevent spam abuse)" +#: ../../mod/contacts.php:308 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../mod/settings.php:581 -msgid "Default Post Permissions" +#: ../../mod/contacts.php:309 +msgid "Contact Information / Notes" msgstr "" -#: ../../mod/settings.php:582 -msgid "(click to open/close)" +#: ../../mod/contacts.php:310 +msgid "Edit contact notes" msgstr "" -#: ../../mod/settings.php:586 -msgid "Allow friends to post to your profile page:" +#: ../../mod/contacts.php:315 ../../mod/contacts.php:430 +#: ../../mod/viewcontacts.php:61 +#, php-format +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../mod/settings.php:587 -msgid "Automatically expire posts after days:" +#: ../../mod/contacts.php:316 +msgid "Block/Unblock contact" msgstr "" -#: ../../mod/settings.php:587 -msgid "If empty, posts will not expire. Expired posts will be deleted" +#: ../../mod/contacts.php:317 +msgid "Ignore contact" msgstr "" -#: ../../mod/settings.php:596 -msgid "Notification Settings" +#: ../../mod/contacts.php:318 +msgid "Repair URL settings" msgstr "" -#: ../../mod/settings.php:597 -msgid "Send a notification email when:" +#: ../../mod/contacts.php:319 +msgid "View conversations" msgstr "" -#: ../../mod/settings.php:598 -msgid "You receive an introduction" +#: ../../mod/contacts.php:321 +msgid "Delete contact" msgstr "" -#: ../../mod/settings.php:599 -msgid "Your introductions are confirmed" +#: ../../mod/contacts.php:325 +msgid "Last update:" msgstr "" -#: ../../mod/settings.php:600 -msgid "Someone writes on your profile wall" +#: ../../mod/contacts.php:326 +msgid "Update public posts" msgstr "" -#: ../../mod/settings.php:601 -msgid "Someone writes a followup comment" +#: ../../mod/contacts.php:328 ../../mod/admin.php:701 +msgid "Update now" msgstr "" -#: ../../mod/settings.php:602 -msgid "You receive a private message" +#: ../../mod/contacts.php:335 +msgid "Currently blocked" msgstr "" -#: ../../mod/settings.php:606 -msgid "Advanced Page Settings" +#: ../../mod/contacts.php:336 +msgid "Currently ignored" msgstr "" -#: ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" +#: ../../mod/contacts.php:364 ../../include/nav.php:130 +msgid "Contacts" msgstr "" -#: ../../mod/manage.php:87 -msgid "Manage Identities and/or Pages" +#: ../../mod/contacts.php:366 +msgid "Show Blocked Connections" msgstr "" -#: ../../mod/manage.php:90 -msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" +#: ../../mod/contacts.php:366 +msgid "Hide Blocked Connections" msgstr "" -#: ../../mod/manage.php:92 -msgid "Select an identity to manage: " +#: ../../mod/contacts.php:368 +msgid "Search your contacts" msgstr "" -#: ../../mod/network.php:75 ../../mod/search.php:13 -msgid "Saved Searches" +#: ../../mod/contacts.php:369 ../../mod/directory.php:65 +msgid "Finding: " msgstr "" -#: ../../mod/network.php:81 ../../mod/search.php:16 -msgid "Remove term" +#: ../../mod/contacts.php:370 ../../mod/directory.php:67 +#: ../../include/contact_widgets.php:34 +msgid "Find" msgstr "" -#: ../../mod/network.php:148 -msgid "Commented Order" +#: ../../mod/contacts.php:406 +msgid "Mutual Friendship" msgstr "" -#: ../../mod/network.php:153 -msgid "Posted Order" +#: ../../mod/contacts.php:410 +msgid "is a fan of yours" msgstr "" -#: ../../mod/network.php:159 -msgid "New" +#: ../../mod/contacts.php:414 +msgid "you are a fan of" msgstr "" -#: ../../mod/network.php:164 -msgid "Starred" +#: ../../mod/contacts.php:431 ../../include/Contact.php:129 +#: ../../include/conversation.php:679 +msgid "Edit contact" msgstr "" -#: ../../mod/network.php:169 -msgid "Bookmarks" +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." msgstr "" -#: ../../mod/network.php:216 -#, 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] "" -msgstr[1] "" - -#: ../../mod/network.php:219 -msgid "Private messages to this group are at risk of public disclosure." +#: ../../mod/lockview.php:43 +msgid "Visible to:" msgstr "" -#: ../../mod/network.php:292 -msgid "No such group" +#: ../../mod/register.php:53 +msgid "An invitation is required." msgstr "" -#: ../../mod/network.php:303 -msgid "Group is empty" +#: ../../mod/register.php:58 +msgid "Invitation could not be verified." msgstr "" -#: ../../mod/network.php:308 -msgid "Group: " +#: ../../mod/register.php:66 +msgid "Invalid OpenID url" msgstr "" -#: ../../mod/network.php:318 -msgid "Contact: " +#: ../../mod/register.php:81 +msgid "Please enter the required information." msgstr "" -#: ../../mod/network.php:320 -msgid "Private messages to this person are at risk of public disclosure." +#: ../../mod/register.php:95 +msgid "Please use a shorter name." msgstr "" -#: ../../mod/network.php:325 -msgid "Invalid contact." +#: ../../mod/register.php:97 +msgid "Name too short." msgstr "" -#: ../../mod/notes.php:44 ../../boot.php:1217 -msgid "Personal Notes" +#: ../../mod/register.php:112 +msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: ../../mod/notes.php:63 ../../include/text.php:625 -msgid "Save" +#: ../../mod/register.php:117 +msgid "Your email domain is not among those allowed on this site." msgstr "" -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendika" +#: ../../mod/register.php:120 +msgid "Not a valid email address." msgstr "" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" +#: ../../mod/register.php:130 +msgid "Cannot use that email." msgstr "" -#: ../../mod/newmember.php:12 +#: ../../mod/register.php:136 msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page." +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." msgstr "" -#: ../../mod/newmember.php:16 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This will be useful in making friends." +#: ../../mod/register.php:142 ../../mod/register.php:243 +msgid "Nickname is already registered. Please choose another." msgstr "" -#: ../../mod/newmember.php:18 +#: ../../mod/register.php:161 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "" + +#: ../../mod/register.php:229 +msgid "An error occurred during registration. Please try again." +msgstr "" + +#: ../../mod/register.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "" + +#: ../../mod/register.php:377 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." +"Registration successful. Please check your email for further instructions." msgstr "" -#: ../../mod/newmember.php:20 +#: ../../mod/register.php:381 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" + +#: ../../mod/register.php:386 +msgid "Your registration can not be processed." +msgstr "" + +#: ../../mod/register.php:423 +#, php-format +msgid "Registration request at %s" +msgstr "" + +#: ../../mod/register.php:432 +msgid "Your registration is pending approval by the site owner." +msgstr "" + +#: ../../mod/register.php:481 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." +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." msgstr "" -#: ../../mod/newmember.php:23 +#: ../../mod/register.php:482 msgid "" -"Authorise the Facebook Connector if you currently have a Facebook account " -"and we will (optionally) import all your Facebook friends and conversations." +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." msgstr "" -#: ../../mod/newmember.php:28 +#: ../../mod/register.php:483 +msgid "Your OpenID (optional): " +msgstr "" + +#: ../../mod/register.php:497 +msgid "Include your profile in member directory?" +msgstr "" + +#: ../../mod/register.php:512 +msgid "Membership on this site is by invitation only." +msgstr "" + +#: ../../mod/register.php:513 +msgid "Your invitation ID: " +msgstr "" + +#: ../../mod/register.php:516 ../../mod/admin.php:297 +msgid "Registration" +msgstr "" + +#: ../../mod/register.php:524 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "" + +#: ../../mod/register.php:525 +msgid "Your Email Address: " +msgstr "" + +#: ../../mod/register.php:526 msgid "" -"Enter your email access information on your Settings page if you wish to " -"import and interact with friends or mailing lists from your email INBOX" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be 'nickname@$sitename'." msgstr "" -#: ../../mod/newmember.php:30 +#: ../../mod/register.php:527 +msgid "Choose a nickname: " +msgstr "" + +#: ../../mod/oexchange.php:27 +msgid "Post successful." +msgstr "" + +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "" + +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "" + +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "" + +#: ../../mod/help.php:34 ../../include/nav.php:82 +msgid "Help" +msgstr "" + +#: ../../mod/install.php:34 +msgid "Could not create/connect to database." +msgstr "" + +#: ../../mod/install.php:39 +msgid "Connected to database." +msgstr "" + +#: ../../mod/install.php:75 +msgid "Proceed with Installation" +msgstr "" + +#: ../../mod/install.php:77 +msgid "Your Friendika site database has been installed." +msgstr "" + +#: ../../mod/install.php:78 msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown " -"visitors." +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../mod/newmember.php:32 +#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "" + +#: ../../mod/install.php:81 +msgid "Proceed to registration" +msgstr "" + +#: ../../mod/install.php:87 +msgid "Database import failed." +msgstr "" + +#: ../../mod/install.php:88 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." +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." msgstr "" -#: ../../mod/newmember.php:34 +#: ../../mod/install.php:101 +msgid "Welcome to Friendika." +msgstr "" + +#: ../../mod/install.php:124 +msgid "Friendika Social Network" +msgstr "" + +#: ../../mod/install.php:125 +msgid "Installation" +msgstr "" + +#: ../../mod/install.php:126 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 Connect dialog." +"In order to install Friendika we need to know how to connect to your " +"database." msgstr "" -#: ../../mod/newmember.php:36 +#: ../../mod/install.php:127 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." +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../mod/newmember.php:38 +#: ../../mod/install.php:128 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." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../mod/newmember.php:40 +#: ../../mod/install.php:129 +msgid "Database Server Name" +msgstr "" + +#: ../../mod/install.php:130 +msgid "Database Login Name" +msgstr "" + +#: ../../mod/install.php:131 +msgid "Database Login Password" +msgstr "" + +#: ../../mod/install.php:132 +msgid "Database Name" +msgstr "" + +#: ../../mod/install.php:133 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../mod/install.php:134 msgid "" -"Our help pages may be consulted for detail on other program " -"features and resources." +"Site administrator email address. Your account email address must match this " +"in order to use the web admin panel." msgstr "" -#: ../../mod/attach.php:8 -msgid "Item not available." +#: ../../mod/install.php:153 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../mod/attach.php:20 -msgid "Item was not found." +#: ../../mod/install.php:154 +msgid "" +"This is required. Please adjust the configuration file .htconfig.php " +"accordingly." msgstr "" -#: ../../mod/group.php:27 -msgid "Group created." +#: ../../mod/install.php:161 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../mod/group.php:33 -msgid "Could not create group." +#: ../../mod/install.php:162 +msgid "This is required for message delivery to work." msgstr "" -#: ../../mod/group.php:43 ../../mod/group.php:123 -msgid "Group not found." +#: ../../mod/install.php:184 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../mod/group.php:56 -msgid "Group name changed." +#: ../../mod/install.php:185 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:278 -msgid "Permission denied" +#: ../../mod/install.php:194 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../mod/group.php:82 -msgid "Create a group of contacts/friends." +#: ../../mod/install.php:196 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../mod/group.php:83 ../../mod/group.php:166 -msgid "Group Name: " +#: ../../mod/install.php:198 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../mod/install.php:200 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:202 +msgid "Error: mysqli PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:204 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../mod/install.php:216 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\" " +"in the top folder of your web server and it is unable to do so." +msgstr "" + +#: ../../mod/install.php:217 +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:218 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "" + +#: ../../mod/install.php:219 +msgid "" +"If not, you may be required to perform a manual installation. Please see the " +"file \"INSTALL.txt\" for instructions." +msgstr "" + +#: ../../mod/install.php:228 +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 "" + +#: ../../mod/install.php:243 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../mod/network.php:148 +msgid "Commented Order" +msgstr "" + +#: ../../mod/network.php:153 +msgid "Posted Order" +msgstr "" + +#: ../../mod/network.php:159 +msgid "New" +msgstr "" + +#: ../../mod/network.php:164 +msgid "Starred" +msgstr "" + +#: ../../mod/network.php:169 +msgid "Bookmarks" +msgstr "" + +#: ../../mod/network.php:216 +#, 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] "" +msgstr[1] "" + +#: ../../mod/network.php:219 +msgid "Private messages to this group are at risk of public disclosure." +msgstr "" + +#: ../../mod/network.php:292 +msgid "No such group" +msgstr "" + +#: ../../mod/network.php:303 +msgid "Group is empty" +msgstr "" + +#: ../../mod/network.php:308 +msgid "Group: " +msgstr "" + +#: ../../mod/network.php:318 +msgid "Contact: " +msgstr "" + +#: ../../mod/network.php:320 +msgid "Private messages to this person are at risk of public disclosure." +msgstr "" + +#: ../../mod/network.php:325 +msgid "Invalid contact." +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:164 +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/events.php:61 +msgid "Event description and start time are required." +msgstr "" + +#: ../../mod/events.php:207 +msgid "Create New Event" +msgstr "" + +#: ../../mod/events.php:210 +msgid "Previous" +msgstr "" + +#: ../../mod/events.php:213 +msgid "Next" +msgstr "" + +#: ../../mod/events.php:220 +msgid "l, F j" +msgstr "" + +#: ../../mod/events.php:232 +msgid "Edit event" +msgstr "" + +#: ../../mod/events.php:234 ../../include/text.php:857 +msgid "link to source" +msgstr "" + +#: ../../mod/events.php:302 +msgid "hour:minute" +msgstr "" + +#: ../../mod/events.php:311 +msgid "Event details" +msgstr "" + +#: ../../mod/events.php:312 +#, php-format +msgid "Format is %s %s. Starting date and Description are required." +msgstr "" + +#: ../../mod/events.php:313 +msgid "Event Starts:" +msgstr "" + +#: ../../mod/events.php:316 +msgid "Finish date/time is not known or not relevant" +msgstr "" + +#: ../../mod/events.php:318 +msgid "Event Finishes:" +msgstr "" + +#: ../../mod/events.php:321 +msgid "Adjust for viewer timezone" +msgstr "" + +#: ../../mod/events.php:323 +msgid "Description:" +msgstr "" + +#: ../../mod/events.php:327 +msgid "Share this event" +msgstr "" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "" + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:144 +#: ../../mod/notifications.php:188 +msgid "Discard" +msgstr "" + +#: ../../mod/notifications.php:71 ../../include/nav.php:109 +msgid "Network" +msgstr "" + +#: ../../mod/notifications.php:76 ../../include/nav.php:73 +#: ../../include/nav.php:111 +msgid "Home" +msgstr "" + +#: ../../mod/notifications.php:81 ../../include/nav.php:117 +msgid "Introductions" +msgstr "" + +#: ../../mod/notifications.php:86 ../../mod/message.php:72 +#: ../../include/nav.php:122 +msgid "Messages" +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "Show Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:105 +msgid "Hide Ignored Requests" +msgstr "" + +#: ../../mod/notifications.php:131 ../../mod/notifications.php:174 +msgid "Notification type: " +msgstr "" + +#: ../../mod/notifications.php:132 +msgid "Friend Suggestion" +msgstr "" + +#: ../../mod/notifications.php:134 +#, php-format +msgid "suggested by %s" +msgstr "" + +#: ../../mod/notifications.php:140 ../../mod/notifications.php:185 +#: ../../mod/admin.php:466 +msgid "Approve" +msgstr "" + +#: ../../mod/notifications.php:160 +msgid "Claims to be known to you: " +msgstr "" + +#: ../../mod/notifications.php:160 +msgid "yes" +msgstr "" + +#: ../../mod/notifications.php:160 +msgid "no" +msgstr "" + +#: ../../mod/notifications.php:167 +msgid "Approve as: " +msgstr "" + +#: ../../mod/notifications.php:168 +msgid "Friend" +msgstr "" + +#: ../../mod/notifications.php:169 +msgid "Sharer" +msgstr "" + +#: ../../mod/notifications.php:169 +msgid "Fan/Admirer" msgstr "" -#: ../../mod/group.php:98 -msgid "Group removed." +#: ../../mod/notifications.php:175 +msgid "Friend/Connect Request" msgstr "" -#: ../../mod/group.php:100 -msgid "Unable to remove group." +#: ../../mod/notifications.php:175 +msgid "New Follower" msgstr "" -#: ../../mod/group.php:164 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." +#: ../../mod/notifications.php:194 +msgid "No notifications." msgstr "" -#: ../../mod/group.php:165 -msgid "Group Editor" +#: ../../mod/notifications.php:197 ../../mod/notifications.php:283 +#: ../../mod/notifications.php:359 ../../include/nav.php:118 +msgid "Notifications" msgstr "" -#: ../../mod/group.php:179 -msgid "Members" +#: ../../mod/notifications.php:234 ../../mod/notifications.php:316 +#, php-format +msgid "%s liked %s's post" msgstr "" -#: ../../mod/group.php:194 -msgid "All Contacts" +#: ../../mod/notifications.php:243 ../../mod/notifications.php:325 +#, php-format +msgid "%s disliked %s's post" msgstr "" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." +#: ../../mod/notifications.php:257 ../../mod/notifications.php:339 +#, php-format +msgid "%s is now friends with %s" msgstr "" -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" +#: ../../mod/notifications.php:264 +#, php-format +msgid "%s created a new post" msgstr "" -#: ../../mod/profperm.php:103 ../../include/profile_advanced.php:7 -#: ../../include/profile_advanced.php:74 ../../include/nav.php:48 -#: ../../boot.php:1199 -msgid "Profile" +#: ../../mod/notifications.php:265 ../../mod/notifications.php:348 +#, php-format +msgid "%s commented on %s's post" msgstr "" -#: ../../mod/profperm.php:114 -msgid "Visible To" +#: ../../mod/notifications.php:279 ../../mod/notifications.php:355 +msgid "Nothing new!" msgstr "" -#: ../../mod/profperm.php:130 -msgid "All Contacts (with secure profile access)" +#: ../../mod/crepair.php:100 +msgid "Contact settings applied." msgstr "" -#: ../../mod/viewcontacts.php:25 ../../include/text.php:564 -msgid "View Contacts" +#: ../../mod/crepair.php:102 +msgid "Contact update failed." msgstr "" -#: ../../mod/viewcontacts.php:40 -msgid "No contacts." +#: ../../mod/crepair.php:127 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:114 +msgid "Contact not found." msgstr "" -#: ../../mod/register.php:53 -msgid "An invitation is required." +#: ../../mod/crepair.php:133 +msgid "Repair Contact Settings" msgstr "" -#: ../../mod/register.php:58 -msgid "Invitation could not be verified." +#: ../../mod/crepair.php:135 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect " +"information your communications with this contact may stop working." msgstr "" -#: ../../mod/register.php:66 -msgid "Invalid OpenID url" +#: ../../mod/crepair.php:136 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." msgstr "" -#: ../../mod/register.php:81 -msgid "Please enter the required information." +#: ../../mod/crepair.php:145 +msgid "Account Nickname" msgstr "" -#: ../../mod/register.php:95 -msgid "Please use a shorter name." +#: ../../mod/crepair.php:146 +msgid "@Tagname - overrides Name/Nickname" msgstr "" -#: ../../mod/register.php:97 -msgid "Name too short." +#: ../../mod/crepair.php:147 +msgid "Account URL" msgstr "" -#: ../../mod/register.php:112 -msgid "That doesn't appear to be your full (First Last) name." +#: ../../mod/crepair.php:148 +msgid "Friend Request URL" msgstr "" -#: ../../mod/register.php:117 -msgid "Your email domain is not among those allowed on this site." +#: ../../mod/crepair.php:149 +msgid "Friend Confirm URL" msgstr "" -#: ../../mod/register.php:120 -msgid "Not a valid email address." +#: ../../mod/crepair.php:150 +msgid "Notification Endpoint URL" msgstr "" -#: ../../mod/register.php:130 -msgid "Cannot use that email." +#: ../../mod/crepair.php:151 +msgid "Poll/Feed URL" msgstr "" -#: ../../mod/register.php:136 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." +#: ../../mod/crepair.php:152 +msgid "New photo from this URL" msgstr "" -#: ../../mod/register.php:142 ../../mod/register.php:243 -msgid "Nickname is already registered. Please choose another." +#: ../../mod/dfrn_request.php:92 +msgid "This introduction has already been accepted." msgstr "" -#: ../../mod/register.php:161 -msgid "SERIOUS ERROR: Generation of security keys failed." +#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:351 +msgid "Profile location is not valid or does not contain profile information." msgstr "" -#: ../../mod/register.php:229 -msgid "An error occurred during registration. Please try again." +#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356 +msgid "Warning: profile location has no identifiable owner name." msgstr "" -#: ../../mod/register.php:265 -msgid "An error occurred creating your default profile. Please try again." +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358 +msgid "Warning: profile location has no profile photo." msgstr "" -#: ../../mod/register.php:367 ../../mod/regmod.php:52 +#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:361 #, php-format -msgid "Registration details for %s" -msgstr "" +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "" +msgstr[1] "" -#: ../../mod/register.php:375 -msgid "" -"Registration successful. Please check your email for further instructions." +#: ../../mod/dfrn_request.php:167 +msgid "Introduction complete." msgstr "" -#: ../../mod/register.php:379 -msgid "Failed to send email message. Here is the message that failed." +#: ../../mod/dfrn_request.php:191 +msgid "Unrecoverable protocol error." msgstr "" -#: ../../mod/register.php:384 -msgid "Your registration can not be processed." +#: ../../mod/dfrn_request.php:219 +msgid "Profile unavailable." msgstr "" -#: ../../mod/register.php:421 +#: ../../mod/dfrn_request.php:244 #, php-format -msgid "Registration request at %s" -msgstr "" - -#: ../../mod/register.php:430 -msgid "Your registration is pending approval by the site owner." +msgid "%s has received too many connection requests today." msgstr "" -#: ../../mod/register.php:479 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." +#: ../../mod/dfrn_request.php:245 +msgid "Spam protection measures have been invoked." msgstr "" -#: ../../mod/register.php:480 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." +#: ../../mod/dfrn_request.php:246 +msgid "Friends are advised to please try again in 24 hours." msgstr "" -#: ../../mod/register.php:481 -msgid "Your OpenID (optional): " +#: ../../mod/dfrn_request.php:276 +msgid "Invalid locator" msgstr "" -#: ../../mod/register.php:495 -msgid "Include your profile in member directory?" +#: ../../mod/dfrn_request.php:296 +msgid "Unable to resolve your name at the provided location." msgstr "" -#: ../../mod/register.php:510 -msgid "Membership on this site is by invitation only." +#: ../../mod/dfrn_request.php:309 +msgid "You have already introduced yourself here." msgstr "" -#: ../../mod/register.php:511 -msgid "Your invitation ID: " +#: ../../mod/dfrn_request.php:313 +#, php-format +msgid "Apparently you are already friends with %s." msgstr "" -#: ../../mod/register.php:514 ../../mod/admin.php:297 -msgid "Registration" +#: ../../mod/dfrn_request.php:334 +msgid "Invalid profile URL." msgstr "" -#: ../../mod/register.php:522 -msgid "Your Full Name (e.g. Joe Smith): " +#: ../../mod/dfrn_request.php:430 +msgid "Your introduction has been sent." msgstr "" -#: ../../mod/register.php:523 -msgid "Your Email Address: " +#: ../../mod/dfrn_request.php:483 +msgid "Please login to confirm introduction." msgstr "" -#: ../../mod/register.php:524 +#: ../../mod/dfrn_request.php:497 msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be 'nickname@$sitename'." +"Incorrect identity currently logged in. Please login to this profile." msgstr "" -#: ../../mod/register.php:525 -msgid "Choose a nickname: " +#: ../../mod/dfrn_request.php:509 +#, php-format +msgid "Welcome home %s." msgstr "" -#: ../../mod/register.php:528 ../../include/nav.php:77 ../../boot.php:660 -msgid "Register" +#: ../../mod/dfrn_request.php:510 +#, php-format +msgid "Please confirm your introduction/connection request to %s." msgstr "" -#: ../../mod/dirfind.php:23 -msgid "People Search" +#: ../../mod/dfrn_request.php:511 +msgid "Confirm" msgstr "" -#: ../../mod/like.php:127 ../../mod/tagger.php:44 -#: ../../addon/facebook/facebook.php:1030 -#: ../../addon/communityhome/communityhome.php:154 -#: ../../addon/communityhome/communityhome.php:163 -#: ../../include/diaspora.php:989 ../../include/conversation.php:26 -#: ../../include/conversation.php:35 -msgid "status" +#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431 +msgid "[Name Withheld]" msgstr "" -#: ../../mod/like.php:144 ../../mod/tagger.php:64 -#: ../../addon/facebook/facebook.php:1034 -#: ../../addon/communityhome/communityhome.php:168 -#: ../../include/diaspora.php:1005 ../../include/conversation.php:43 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../mod/dfrn_request.php:551 +msgid "Introduction received at " msgstr "" -#: ../../mod/like.php:146 ../../mod/tagger.php:66 -#: ../../include/conversation.php:46 +#: ../../mod/dfrn_request.php:635 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" +msgid "" +"Diaspora members: Please do not use this form. Instead, enter \"%s\" into " +"your Diaspora search bar." msgstr "" -#: ../../mod/friendika.php:43 -msgid "This is Friendika version" +#: ../../mod/dfrn_request.php:638 +msgid "" +"Please enter your 'Identity Address' from one of the following supported " +"social networks:" msgstr "" -#: ../../mod/friendika.php:44 -msgid "running at web location" +#: ../../mod/dfrn_request.php:641 +msgid "Friend/Connection Request" msgstr "" -#: ../../mod/friendika.php:46 +#: ../../mod/dfrn_request.php:642 msgid "" -"Please visit Project.Friendika.com to learn more about the Friendika project." +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -#: ../../mod/friendika.php:48 -msgid "Bug reports and issues: please visit" +#: ../../mod/dfrn_request.php:643 +msgid "Please answer the following:" msgstr "" -#: ../../mod/friendika.php:49 -msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - " -"dot com" +#: ../../mod/dfrn_request.php:644 +#, php-format +msgid "Does %s know you?" msgstr "" -#: ../../mod/friendika.php:54 -msgid "Installed plugins/addons/apps" +#: ../../mod/dfrn_request.php:647 +msgid "Add a personal note:" msgstr "" -#: ../../mod/friendika.php:62 -msgid "No installed plugins/addons/apps" +#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78 +msgid "Friendica" msgstr "" -#: ../../mod/regmod.php:61 -msgid "Account approved." +#: ../../mod/dfrn_request.php:650 +msgid "StatusNet/Federated Social Web" msgstr "" -#: ../../mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" +#: ../../mod/dfrn_request.php:652 +msgid "- please share from your own site as noted above" msgstr "" -#: ../../mod/regmod.php:105 -msgid "Please login." +#: ../../mod/dfrn_request.php:653 +msgid "Your Identity Address:" msgstr "" -#: ../../mod/item.php:84 -msgid "Unable to locate original post." +#: ../../mod/dfrn_request.php:654 +msgid "Submit Request" msgstr "" -#: ../../mod/item.php:199 -msgid "Empty post discarded." +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" msgstr "" -#: ../../mod/item.php:299 ../../mod/wall_upload.php:81 -#: ../../mod/wall_upload.php:90 ../../mod/wall_upload.php:97 -#: ../../include/message.php:82 -msgid "Wall Photos" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" msgstr "" -#: ../../mod/item.php:651 ../../mod/item.php:696 ../../mod/item.php:740 -#: ../../mod/item.php:783 ../../include/items.php:1706 -#: ../../include/items.php:1939 ../../include/items.php:1986 -#: ../../include/items.php:2072 ../../include/items.php:2118 -msgid "noreply" +#: ../../mod/api.php:89 +msgid "Please login to continue." msgstr "" -#: ../../mod/item.php:695 ../../mod/item.php:782 ../../include/items.php:2117 -msgid "Administrator@" +#: ../../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/item.php:698 ../../include/items.php:1988 -#: ../../include/items.php:2120 -#, php-format -msgid "%s commented on an item at %s" +#: ../../mod/tagger.php:70 ../../mod/like.php:127 +#: ../../addon/facebook/facebook.php:1024 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../include/conversation.php:26 ../../include/conversation.php:35 +#: ../../include/diaspora.php:1211 +msgid "status" msgstr "" -#: ../../mod/item.php:785 +#: ../../mod/tagger.php:103 #, php-format -msgid "%s posted to your profile wall at %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../mod/item.php:819 -msgid "System error. Post not saved." +#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1028 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../include/conversation.php:43 ../../include/diaspora.php:1227 +#, php-format +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../mod/item.php:844 +#: ../../mod/like.php:146 ../../include/conversation.php:46 #, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendika social network." +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../mod/item.php:846 +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "" + +#: ../../mod/lostpass.php:31 +msgid "Password reset request issued. Check your email." +msgstr "" + +#: ../../mod/lostpass.php:42 #, php-format -msgid "You may visit them online at %s" +msgid "Password reset requested at %s" msgstr "" -#: ../../mod/item.php:847 +#: ../../mod/lostpass.php:64 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../mod/item.php:849 -#, php-format -msgid "%s posted an update." +#: ../../mod/lostpass.php:83 +msgid "Your password has been reset as requested." msgstr "" -#: ../../mod/profile_photo.php:28 -msgid "Image uploaded but image cropping failed." +#: ../../mod/lostpass.php:84 +msgid "Your new password is" msgstr "" -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:254 -#, php-format -msgid "Image size reduction [%s] failed." +#: ../../mod/lostpass.php:85 +msgid "Save or copy your new password - and then" +msgstr "" + +#: ../../mod/lostpass.php:86 +msgid "click here to login" msgstr "" -#: ../../mod/profile_photo.php:95 -msgid "Unable to process image" +#: ../../mod/lostpass.php:87 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." msgstr "" -#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56 -#, php-format -msgid "Image exceeds size limit of %d" +#: ../../mod/lostpass.php:118 +msgid "Forgot your Password?" msgstr "" -#: ../../mod/profile_photo.php:199 -msgid "Upload File:" +#: ../../mod/lostpass.php:119 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../mod/profile_photo.php:200 -msgid "Upload Profile Photo" +#: ../../mod/lostpass.php:120 +msgid "Nickname or Email: " msgstr "" -#: ../../mod/profile_photo.php:201 -msgid "Upload" +#: ../../mod/lostpass.php:121 +msgid "Reset" msgstr "" -#: ../../mod/profile_photo.php:202 -msgid "skip this step" +#: ../../mod/friendica.php:43 +msgid "This is Friendica, version" msgstr "" -#: ../../mod/profile_photo.php:202 -msgid "select a photo from your photo albums" +#: ../../mod/friendica.php:44 +msgid "running at web location" msgstr "" -#: ../../mod/profile_photo.php:215 -msgid "Crop Image" +#: ../../mod/friendica.php:46 +msgid "" +"Please visit Project.Friendika.com to learn more about the Friendica project." msgstr "" -#: ../../mod/profile_photo.php:216 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../mod/friendica.php:48 +msgid "Bug reports and issues: please visit" msgstr "" -#: ../../mod/profile_photo.php:217 -msgid "Done Editing" +#: ../../mod/friendica.php:49 +msgid "" +"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - " +"dot com" msgstr "" -#: ../../mod/profile_photo.php:245 -msgid "Image uploaded successfully." +#: ../../mod/friendica.php:54 +msgid "Installed plugins/addons/apps" msgstr "" -#: ../../mod/hcard.php:10 ../../mod/profile.php:10 ../../boot.php:811 -msgid "No profile" +#: ../../mod/friendica.php:62 +msgid "No installed plugins/addons/apps" msgstr "" #: ../../mod/removeme.php:42 ../../mod/removeme.php:45 @@ -2365,85 +2786,61 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "" -#: ../../mod/message.php:23 -msgid "No recipient selected." -msgstr "" - -#: ../../mod/message.php:26 -msgid "Unable to locate contact information." -msgstr "" - -#: ../../mod/message.php:29 -msgid "Message could not be sent." -msgstr "" - -#: ../../mod/message.php:31 -msgid "Message sent." -msgstr "" - -#: ../../mod/message.php:51 -msgid "Inbox" -msgstr "" - -#: ../../mod/message.php:56 -msgid "Outbox" -msgstr "" - -#: ../../mod/message.php:61 -msgid "New Message" +#: ../../mod/apps.php:4 +msgid "Applications" msgstr "" -#: ../../mod/message.php:87 -msgid "Message deleted." +#: ../../mod/apps.php:7 +msgid "No installed applications." msgstr "" -#: ../../mod/message.php:103 -msgid "Conversation removed." +#: ../../mod/notes.php:63 ../../include/text.php:628 +msgid "Save" msgstr "" -#: ../../mod/message.php:119 ../../include/conversation.php:747 -msgid "Please enter a link URL:" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." msgstr "" -#: ../../mod/message.php:127 -msgid "Send Private Message" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" msgstr "" -#: ../../mod/message.php:128 ../../mod/message.php:261 -msgid "To:" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" msgstr "" -#: ../../mod/message.php:129 ../../mod/message.php:262 -msgid "Subject:" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." msgstr "" -#: ../../mod/message.php:132 ../../mod/message.php:265 -#: ../../mod/invite.php:101 -msgid "Your message:" +#: ../../mod/directory.php:49 +msgid "Global Directory" msgstr "" -#: ../../mod/message.php:170 -msgid "No messages." +#: ../../mod/directory.php:55 +msgid "Normal site view" msgstr "" -#: ../../mod/message.php:183 -msgid "Delete conversation" +#: ../../mod/directory.php:57 +msgid "Admin - View all site entries" msgstr "" -#: ../../mod/message.php:186 -msgid "D, d M Y - g:i A" +#: ../../mod/directory.php:63 +msgid "Find on this site" msgstr "" -#: ../../mod/message.php:213 -msgid "Message not available." +#: ../../mod/directory.php:66 +msgid "Site Directory" msgstr "" -#: ../../mod/message.php:250 -msgid "Delete message" +#: ../../mod/directory.php:125 +msgid "Gender: " msgstr "" -#: ../../mod/message.php:260 -msgid "Send Reply" +#: ../../mod/directory.php:151 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../mod/admin.php:59 ../../mod/admin.php:295 @@ -2458,10 +2855,6 @@ msgstr "" msgid "Plugins" msgstr "" -#: ../../mod/admin.php:62 -msgid "Update" -msgstr "" - #: ../../mod/admin.php:76 ../../mod/admin.php:651 msgid "Logs" msgstr "" @@ -2470,11 +2863,6 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: ../../mod/admin.php:111 ../../mod/admin.php:502 ../../mod/display.php:25 -#: ../../mod/display.php:112 ../../include/items.php:2630 -msgid "Item not found." -msgstr "" - #: ../../mod/admin.php:144 ../../mod/admin.php:294 ../../mod/admin.php:459 #: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650 msgid "Administration" @@ -2692,14 +3080,6 @@ msgstr "" msgid "Deny" msgstr "" -#: ../../mod/admin.php:469 -msgid "Block" -msgstr "" - -#: ../../mod/admin.php:470 -msgid "Unblock" -msgstr "" - #: ../../mod/admin.php:473 msgid "Register date" msgstr "" @@ -2798,659 +3178,551 @@ msgstr "" msgid "FTP Password" msgstr "" -#: ../../mod/profile.php:104 ../../mod/display.php:63 -msgid "Access to this profile has been restricted." -msgstr "" - -#: ../../mod/profile.php:126 -msgid "Tips for New Members" +#: ../../mod/item.php:84 +msgid "Unable to locate original post." msgstr "" -#: ../../mod/ping.php:137 -msgid "{0} wants to be your friend" +#: ../../mod/item.php:199 +msgid "Empty post discarded." msgstr "" -#: ../../mod/ping.php:142 -msgid "{0} sent you a message" +#: ../../mod/item.php:675 ../../mod/item.php:720 ../../mod/item.php:764 +#: ../../mod/item.php:807 ../../include/items.php:1769 +#: ../../include/items.php:2068 ../../include/items.php:2115 +#: ../../include/items.php:2227 ../../include/items.php:2273 +msgid "noreply" msgstr "" -#: ../../mod/ping.php:147 -msgid "{0} requested registration" +#: ../../mod/item.php:719 ../../mod/item.php:806 ../../include/items.php:2272 +msgid "Administrator@" msgstr "" -#: ../../mod/ping.php:153 +#: ../../mod/item.php:722 ../../include/items.php:2117 +#: ../../include/items.php:2275 #, php-format -msgid "{0} commented %s's post" +msgid "%s commented on an item at %s" msgstr "" -#: ../../mod/ping.php:158 +#: ../../mod/item.php:809 #, php-format -msgid "{0} liked %s's post" +msgid "%s posted to your profile wall at %s" msgstr "" -#: ../../mod/ping.php:163 -#, php-format -msgid "{0} disliked %s's post" +#: ../../mod/item.php:843 +msgid "System error. Post not saved." msgstr "" -#: ../../mod/ping.php:168 +#: ../../mod/item.php:868 #, php-format -msgid "{0} is now friends with %s" -msgstr "" - -#: ../../mod/ping.php:173 -msgid "{0} posted" -msgstr "" - -#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122 -#: ../../include/auth.php:147 ../../include/auth.php:201 -msgid "Login failed." -msgstr "" - -#: ../../mod/openid.php:79 ../../include/auth.php:217 -msgid "Welcome " -msgstr "" - -#: ../../mod/openid.php:80 ../../include/auth.php:218 -msgid "Please upload a profile photo." -msgstr "" - -#: ../../mod/openid.php:83 ../../include/auth.php:221 -msgid "Welcome back " -msgstr "" - -#: ../../mod/follow.php:39 msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" - -#: ../../mod/follow.php:40 ../../mod/follow.php:50 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" - -#: ../../mod/follow.php:48 -msgid "The profile address specified does not provide adequate information." -msgstr "" - -#: ../../mod/follow.php:52 -msgid "An author or name was not found." -msgstr "" - -#: ../../mod/follow.php:54 -msgid "No browser URL could be matched to this address." +"This message was sent to you by %s, a member of the Friendika social network." msgstr "" -#: ../../mod/follow.php:61 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." +#: ../../mod/item.php:870 +#, php-format +msgid "You may visit them online at %s" msgstr "" -#: ../../mod/follow.php:66 +#: ../../mod/item.php:871 msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "" - -#: ../../mod/follow.php:131 -msgid "Unable to retrieve contact information." -msgstr "" - -#: ../../mod/follow.php:177 -msgid "following" -msgstr "" - -#: ../../mod/display.php:105 -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:83 -msgid "Search This Site" -msgstr "" - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:236 -#: ../../mod/profiles.php:341 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "" - -#: ../../mod/profiles.php:28 -msgid "Profile Name is required." -msgstr "" - -#: ../../mod/profiles.php:198 -msgid "Profile updated." -msgstr "" - -#: ../../mod/profiles.php:253 -msgid "Profile deleted." -msgstr "" - -#: ../../mod/profiles.php:269 ../../mod/profiles.php:300 -msgid "Profile-" -msgstr "" - -#: ../../mod/profiles.php:288 ../../mod/profiles.php:327 -msgid "New profile created." -msgstr "" - -#: ../../mod/profiles.php:306 -msgid "Profile unavailable to clone." -msgstr "" - -#: ../../mod/profiles.php:353 -msgid "Hide your contact/friend list from viewers of this profile?" -msgstr "" - -#: ../../mod/profiles.php:371 -msgid "Edit Profile Details" -msgstr "" - -#: ../../mod/profiles.php:373 -msgid "View this profile" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." msgstr "" -#: ../../mod/profiles.php:374 -msgid "Create a new profile using these settings" +#: ../../mod/item.php:873 +#, php-format +msgid "%s posted an update." msgstr "" -#: ../../mod/profiles.php:375 -msgid "Clone this profile" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" msgstr "" -#: ../../mod/profiles.php:376 -msgid "Delete this profile" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" msgstr "" -#: ../../mod/profiles.php:377 -msgid "Profile Name:" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " msgstr "" -#: ../../mod/profiles.php:378 -msgid "Your Full Name:" +#: ../../mod/tagrm.php:93 +msgid "Remove" msgstr "" -#: ../../mod/profiles.php:379 -msgid "Title/Description:" +#: ../../mod/message.php:23 +msgid "No recipient selected." msgstr "" -#: ../../mod/profiles.php:380 -msgid "Your Gender:" +#: ../../mod/message.php:26 +msgid "Unable to locate contact information." msgstr "" -#: ../../mod/profiles.php:381 -#, php-format -msgid "Birthday (%s):" +#: ../../mod/message.php:29 +msgid "Message could not be sent." msgstr "" -#: ../../mod/profiles.php:382 -msgid "Street Address:" +#: ../../mod/message.php:31 +msgid "Message sent." msgstr "" -#: ../../mod/profiles.php:383 -msgid "Locality/City:" +#: ../../mod/message.php:51 +msgid "Inbox" msgstr "" -#: ../../mod/profiles.php:384 -msgid "Postal/Zip Code:" +#: ../../mod/message.php:56 +msgid "Outbox" msgstr "" -#: ../../mod/profiles.php:385 -msgid "Country:" +#: ../../mod/message.php:61 +msgid "New Message" msgstr "" -#: ../../mod/profiles.php:386 -msgid "Region/State:" +#: ../../mod/message.php:87 +msgid "Message deleted." msgstr "" -#: ../../mod/profiles.php:387 -msgid " Marital Status:" +#: ../../mod/message.php:103 +msgid "Conversation removed." msgstr "" -#: ../../mod/profiles.php:388 -msgid "Who: (if applicable)" +#: ../../mod/message.php:119 ../../include/conversation.php:767 +msgid "Please enter a link URL:" msgstr "" -#: ../../mod/profiles.php:389 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/message.php:127 +msgid "Send Private Message" msgstr "" -#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:43 -msgid "Sexual Preference:" +#: ../../mod/message.php:128 ../../mod/message.php:261 +msgid "To:" msgstr "" -#: ../../mod/profiles.php:391 -msgid "Homepage URL:" +#: ../../mod/message.php:129 ../../mod/message.php:262 +msgid "Subject:" msgstr "" -#: ../../mod/profiles.php:392 ../../include/profile_advanced.php:47 -msgid "Political Views:" +#: ../../mod/message.php:170 +msgid "No messages." msgstr "" -#: ../../mod/profiles.php:393 -msgid "Religious Views:" +#: ../../mod/message.php:183 +msgid "Delete conversation" msgstr "" -#: ../../mod/profiles.php:394 -msgid "Public Keywords:" +#: ../../mod/message.php:186 +msgid "D, d M Y - g:i A" msgstr "" -#: ../../mod/profiles.php:395 -msgid "Private Keywords:" +#: ../../mod/message.php:213 +msgid "Message not available." msgstr "" -#: ../../mod/profiles.php:396 -msgid "Example: fishing photography software" +#: ../../mod/message.php:250 +msgid "Delete message" msgstr "" -#: ../../mod/profiles.php:397 -msgid "(Used for suggesting potential friends, can be seen by others)" +#: ../../mod/message.php:260 +msgid "Send Reply" msgstr "" -#: ../../mod/profiles.php:398 -msgid "(Used for searching profiles, never shown to others)" +#: ../../mod/dfrn_confirm.php:234 +msgid "Response from remote site was not understood." msgstr "" -#: ../../mod/profiles.php:399 -msgid "Tell us about yourself..." +#: ../../mod/dfrn_confirm.php:243 +msgid "Unexpected response from remote site: " msgstr "" -#: ../../mod/profiles.php:400 -msgid "Hobbies/Interests" +#: ../../mod/dfrn_confirm.php:251 +msgid "Confirmation completed successfully." msgstr "" -#: ../../mod/profiles.php:401 -msgid "Contact information and Social Networks" +#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267 +#: ../../mod/dfrn_confirm.php:274 +msgid "Remote site reported: " msgstr "" -#: ../../mod/profiles.php:402 -msgid "Musical interests" +#: ../../mod/dfrn_confirm.php:265 +msgid "Temporary failure. Please wait and try again." msgstr "" -#: ../../mod/profiles.php:403 -msgid "Books, literature" +#: ../../mod/dfrn_confirm.php:272 +msgid "Introduction failed or was revoked." msgstr "" -#: ../../mod/profiles.php:404 -msgid "Television" +#: ../../mod/dfrn_confirm.php:409 +msgid "Unable to set contact photo." msgstr "" -#: ../../mod/profiles.php:405 -msgid "Film/dance/culture/entertainment" +#: ../../mod/dfrn_confirm.php:459 ../../include/conversation.php:79 +#: ../../include/diaspora.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" msgstr "" -#: ../../mod/profiles.php:406 -msgid "Love/romance" +#: ../../mod/dfrn_confirm.php:530 +#, php-format +msgid "No user record found for '%s' " msgstr "" -#: ../../mod/profiles.php:407 -msgid "Work/employment" +#: ../../mod/dfrn_confirm.php:540 +msgid "Our site encryption key is apparently messed up." msgstr "" -#: ../../mod/profiles.php:408 -msgid "School/education" +#: ../../mod/dfrn_confirm.php:551 +msgid "Empty site URL was provided or URL could not be decrypted by us." msgstr "" -#: ../../mod/profiles.php:413 -msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." +#: ../../mod/dfrn_confirm.php:572 +msgid "Contact record was not found for you on our site." msgstr "" -#: ../../mod/profiles.php:423 ../../mod/directory.php:122 -msgid "Age: " +#: ../../mod/dfrn_confirm.php:586 +#, php-format +msgid "Site public key not available in contact record for URL %s." msgstr "" -#: ../../mod/profiles.php:458 ../../include/nav.php:129 ../../boot.php:879 -msgid "Profiles" +#: ../../mod/dfrn_confirm.php:606 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." msgstr "" -#: ../../mod/profiles.php:459 ../../boot.php:885 -msgid "Change profile photo" +#: ../../mod/dfrn_confirm.php:617 +msgid "Unable to set your contact credentials on our system." msgstr "" -#: ../../mod/profiles.php:460 ../../boot.php:886 -msgid "Create New Profile" +#: ../../mod/dfrn_confirm.php:671 +msgid "Unable to update your contact profile details on our system" msgstr "" -#: ../../mod/profiles.php:470 ../../boot.php:896 -msgid "Profile Image" +#: ../../mod/dfrn_confirm.php:701 +#, php-format +msgid "Connection accepted at %s" msgstr "" -#: ../../mod/profiles.php:472 ../../boot.php:899 -msgid "visible to everybody" +#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122 +#: ../../include/auth.php:147 ../../include/auth.php:201 +msgid "Login failed." msgstr "" -#: ../../mod/profiles.php:473 ../../boot.php:900 -msgid "Edit visibility" +#: ../../mod/openid.php:79 ../../include/auth.php:217 +msgid "Welcome " msgstr "" -#: ../../mod/directory.php:49 -msgid "Global Directory" +#: ../../mod/openid.php:80 ../../include/auth.php:218 +msgid "Please upload a profile photo." msgstr "" -#: ../../mod/directory.php:55 -msgid "Normal site view" +#: ../../mod/openid.php:83 ../../include/auth.php:221 +msgid "Welcome back " msgstr "" -#: ../../mod/directory.php:57 -msgid "Admin - View all site entries" +#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 +#, php-format +msgid "%s welcomes %s" msgstr "" -#: ../../mod/directory.php:63 -msgid "Find on this site" +#: ../../mod/viewcontacts.php:25 ../../include/text.php:567 +msgid "View Contacts" msgstr "" -#: ../../mod/directory.php:66 -msgid "Site Directory" +#: ../../mod/viewcontacts.php:40 +msgid "No contacts." msgstr "" -#: ../../mod/directory.php:125 -msgid "Gender: " +#: ../../mod/group.php:27 +msgid "Group created." msgstr "" -#: ../../mod/directory.php:151 -msgid "No entries (some entries may be hidden)." +#: ../../mod/group.php:33 +msgid "Could not create group." msgstr "" -#: ../../mod/invite.php:35 -#, php-format -msgid "%s : Not a valid email address." +#: ../../mod/group.php:43 ../../mod/group.php:123 +msgid "Group not found." msgstr "" -#: ../../mod/invite.php:59 -#, php-format -msgid "Please join my network on %s" +#: ../../mod/group.php:56 +msgid "Group name changed." msgstr "" -#: ../../mod/invite.php:69 -#, php-format -msgid "%s : Message delivery failed." +#: ../../mod/group.php:82 +msgid "Create a group of contacts/friends." msgstr "" -#: ../../mod/invite.php:73 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../mod/invite.php:92 -msgid "You have no more invitations available" +#: ../../mod/group.php:83 ../../mod/group.php:166 +msgid "Group Name: " msgstr "" -#: ../../mod/invite.php:99 -msgid "Send invitations" +#: ../../mod/group.php:98 +msgid "Group removed." msgstr "" -#: ../../mod/invite.php:100 -msgid "Enter email addresses, one per line:" +#: ../../mod/group.php:100 +msgid "Unable to remove group." msgstr "" -#: ../../mod/invite.php:102 -#, php-format -msgid "Please join my social network on %s" +#: ../../mod/group.php:165 +msgid "Group Editor" msgstr "" -#: ../../mod/invite.php:103 -msgid "To accept this invitation, please visit:" +#: ../../mod/group.php:179 +msgid "Members" msgstr "" -#: ../../mod/invite.php:104 -msgid "You will need to supply this invitation code: $invite_code" +#: ../../mod/group.php:194 +msgid "All Contacts" msgstr "" -#: ../../mod/invite.php:104 -msgid "" -"Once you have registered, please connect with me via my profile page at:" +#: ../../mod/attach.php:8 +msgid "Item not available." msgstr "" -#: ../../mod/dfrn_confirm.php:234 -msgid "Response from remote site was not understood." +#: ../../mod/attach.php:20 +msgid "Item was not found." msgstr "" -#: ../../mod/dfrn_confirm.php:243 -msgid "Unexpected response from remote site: " +#: ../../mod/common.php:34 +msgid "Common Friends" msgstr "" -#: ../../mod/dfrn_confirm.php:251 -msgid "Confirmation completed successfully." +#: ../../mod/common.php:42 +msgid "No friends in common." msgstr "" -#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267 -#: ../../mod/dfrn_confirm.php:274 -msgid "Remote site reported: " +#: ../../mod/match.php:10 +msgid "Profile Match" msgstr "" -#: ../../mod/dfrn_confirm.php:265 -msgid "Temporary failure. Please wait and try again." +#: ../../mod/match.php:18 +msgid "No keywords to match. Please add keywords to your default profile." msgstr "" -#: ../../mod/dfrn_confirm.php:272 -msgid "Introduction failed or was revoked." +#: ../../mod/community.php:21 +msgid "Not available." msgstr "" -#: ../../mod/dfrn_confirm.php:409 -msgid "Unable to set contact photo." +#: ../../mod/community.php:30 ../../include/nav.php:97 +msgid "Community" msgstr "" -#: ../../mod/dfrn_confirm.php:458 ../../include/conversation.php:79 -#, php-format -msgid "%1$s is now friends with %2$s" +#: ../../mod/community.php:87 +msgid "" +"Shared content is covered by the
Creative Commons Attribution 3.0 license." msgstr "" -#: ../../mod/dfrn_confirm.php:529 -#, php-format -msgid "No user record found for '%s' " +#: ../../addon/tumblr/tumblr.php:35 +msgid "Post to Tumblr" msgstr "" -#: ../../mod/dfrn_confirm.php:539 -msgid "Our site encryption key is apparently messed up." +#: ../../addon/tumblr/tumblr.php:66 +msgid "Tumblr Post Settings" msgstr "" -#: ../../mod/dfrn_confirm.php:550 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: ../../addon/tumblr/tumblr.php:68 +msgid "Enable Tumblr Post Plugin" msgstr "" -#: ../../mod/dfrn_confirm.php:571 -msgid "Contact record was not found for you on our site." +#: ../../addon/tumblr/tumblr.php:73 +msgid "Tumblr login" msgstr "" -#: ../../mod/dfrn_confirm.php:585 -#, php-format -msgid "Site public key not available in contact record for URL %s." +#: ../../addon/tumblr/tumblr.php:78 +msgid "Tumblr password" msgstr "" -#: ../../mod/dfrn_confirm.php:605 -msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." +#: ../../addon/tumblr/tumblr.php:83 +msgid "Post to Tumblr by default" msgstr "" -#: ../../mod/dfrn_confirm.php:616 -msgid "Unable to set your contact credentials on our system." +#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171 +msgid "Post from Friendica" msgstr "" -#: ../../mod/dfrn_confirm.php:670 -msgid "Unable to update your contact profile details on our system" +#: ../../addon/twitter/twitter.php:78 +msgid "Post to Twitter" msgstr "" -#: ../../mod/dfrn_confirm.php:700 -#, php-format -msgid "Connection accepted at %s" +#: ../../addon/twitter/twitter.php:123 +msgid "Twitter settings updated." msgstr "" -#: ../../addon/facebook/facebook.php:336 -msgid "Facebook disabled" +#: ../../addon/twitter/twitter.php:145 +msgid "Twitter Posting Settings" msgstr "" -#: ../../addon/facebook/facebook.php:341 -msgid "Updating contacts" +#: ../../addon/twitter/twitter.php:152 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -#: ../../addon/facebook/facebook.php:350 -msgid "Facebook API key is missing." +#: ../../addon/twitter/twitter.php:171 +msgid "" +"At this Friendika 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/facebook/facebook.php:357 -msgid "Facebook Connect" +#: ../../addon/twitter/twitter.php:172 +msgid "Log in with Twitter" msgstr "" -#: ../../addon/facebook/facebook.php:363 -msgid "Install Facebook connector for this account." +#: ../../addon/twitter/twitter.php:174 +msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../addon/facebook/facebook.php:370 -msgid "Remove Facebook connector" +#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337 +msgid "Currently connected to: " msgstr "" -#: ../../addon/facebook/facebook.php:375 +#: ../../addon/twitter/twitter.php:189 msgid "" -"Re-authenticate [This is necessary whenever your Facebook password is " -"changed.]" +"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/facebook/facebook.php:382 -msgid "Post to Facebook by default" +#: ../../addon/twitter/twitter.php:191 +msgid "Allow posting to Twitter" msgstr "" -#: ../../addon/facebook/facebook.php:386 -msgid "Link all your Facebook friends and conversations on this website" +#: ../../addon/twitter/twitter.php:194 +msgid "Send public postings to Twitter by default" msgstr "" -#: ../../addon/facebook/facebook.php:388 -msgid "" -"Facebook conversations consist of your profile wall and your friend " -"stream." +#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348 +msgid "Clear OAuth configuration" msgstr "" -#: ../../addon/facebook/facebook.php:389 -msgid "On this website, your Facebook friend stream is only visible to you." +#: ../../addon/twitter/twitter.php:301 +msgid "Consumer key" msgstr "" -#: ../../addon/facebook/facebook.php:390 -msgid "" -"The following settings determine the privacy of your Facebook profile wall " -"on this website." +#: ../../addon/twitter/twitter.php:302 +msgid "Consumer secret" msgstr "" -#: ../../addon/facebook/facebook.php:394 -msgid "" -"On this website your Facebook profile wall conversations will only be " -"visible to you" +#: ../../addon/statusnet/statusnet.php:141 +msgid "Post to StatusNet" msgstr "" -#: ../../addon/facebook/facebook.php:399 -msgid "Do not import your Facebook profile wall conversations" +#: ../../addon/statusnet/statusnet.php:183 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." msgstr "" -#: ../../addon/facebook/facebook.php:401 -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." +#: ../../addon/statusnet/statusnet.php:211 +msgid "We could not contact the StatusNet API with the Path you entered." msgstr "" -#: ../../addon/facebook/facebook.php:468 -#: ../../include/contact_selectors.php:78 -msgid "Facebook" +#: ../../addon/statusnet/statusnet.php:238 +msgid "StatusNet settings updated." msgstr "" -#: ../../addon/facebook/facebook.php:469 -msgid "Facebook Connector Settings" +#: ../../addon/statusnet/statusnet.php:261 +msgid "StatusNet Posting Settings" msgstr "" -#: ../../addon/facebook/facebook.php:483 -msgid "Post to Facebook" +#: ../../addon/statusnet/statusnet.php:275 +msgid "Globally Available StatusNet OAuthKeys" msgstr "" -#: ../../addon/facebook/facebook.php:560 +#: ../../addon/statusnet/statusnet.php:276 msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." +"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/facebook/facebook.php:623 -msgid "Image: " +#: ../../addon/statusnet/statusnet.php:284 +msgid "Provide your own OAuth Credentials" msgstr "" -#: ../../addon/facebook/facebook.php:699 -msgid "View on Friendika" +#: ../../addon/statusnet/statusnet.php:285 +msgid "" +"No consumer key pair for StatusNet found. Register your Friendika 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 Friendika " +"installation at your favorited StatusNet installation." msgstr "" -#: ../../addon/facebook/facebook.php:730 -msgid "Facebook post failed. Queued for retry." +#: ../../addon/statusnet/statusnet.php:287 +msgid "OAuth Consumer Key" msgstr "" -#: ../../addon/widgets/widgets.php:53 -msgid "Generate new key" +#: ../../addon/statusnet/statusnet.php:290 +msgid "OAuth Consumer Secret" msgstr "" -#: ../../addon/widgets/widgets.php:56 -msgid "Widgets key" +#: ../../addon/statusnet/statusnet.php:293 +msgid "Base API Path (remember the trailing /)" msgstr "" -#: ../../addon/widgets/widgets.php:58 -msgid "Widgets available" +#: ../../addon/statusnet/statusnet.php:314 +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 "" -#: ../../addon/widgets/widget_friends.php:30 -msgid "Connect on Friendika!" +#: ../../addon/statusnet/statusnet.php:315 +msgid "Log in with StatusNet" msgstr "" -#: ../../addon/nsfw/nsfw.php:47 -msgid "\"Not Safe For Work\" Settings" +#: ../../addon/statusnet/statusnet.php:317 +msgid "Copy the security code from StatusNet here" msgstr "" -#: ../../addon/nsfw/nsfw.php:49 -msgid "Comma separated words to treat as NSFW" +#: ../../addon/statusnet/statusnet.php:323 +msgid "Cancel Connection Process" msgstr "" -#: ../../addon/nsfw/nsfw.php:66 -msgid "NSFW Settings saved." +#: ../../addon/statusnet/statusnet.php:325 +msgid "Current StatusNet API is" msgstr "" -#: ../../addon/nsfw/nsfw.php:98 -msgid "NSFW - Click to open/close" +#: ../../addon/statusnet/statusnet.php:326 +msgid "Cancel StatusNet Connection" msgstr "" -#: ../../addon/communityhome/communityhome.php:28 ../../include/nav.php:62 -#: ../../boot.php:677 -msgid "Login" +#: ../../addon/statusnet/statusnet.php:338 +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/communityhome/communityhome.php:32 -msgid "Last users" +#: ../../addon/statusnet/statusnet.php:340 +msgid "Allow posting to StatusNet" msgstr "" -#: ../../addon/communityhome/communityhome.php:76 -msgid "Most active users" +#: ../../addon/statusnet/statusnet.php:343 +msgid "Send public postings to StatusNet by default" msgstr "" -#: ../../addon/communityhome/communityhome.php:94 -msgid "Last photos" +#: ../../addon/statusnet/statusnet.php:478 +msgid "API URL" msgstr "" -#: ../../addon/communityhome/communityhome.php:129 -msgid "Last likes" +#: ../../addon/oembed/oembed.php:30 +msgid "OEmbed settings updated" msgstr "" -#: ../../addon/communityhome/communityhome.php:151 -#: ../../include/conversation.php:23 -msgid "event" +#: ../../addon/oembed/oembed.php:43 +msgid "Use OEmbed for YouTube videos" msgstr "" -#: ../../addon/membersince/membersince.php:17 -#, php-format -msgid " - Member since: %s" +#: ../../addon/oembed/oembed.php:71 +msgid "URL to embed:" msgstr "" #: ../../addon/tictac/tictac.php:20 @@ -3507,40 +3779,15 @@ msgstr "" msgid "I won!" msgstr "" -#: ../../addon/randplace/randplace.php:170 -msgid "Randplace Settings" -msgstr "" - -#: ../../addon/randplace/randplace.php:172 -msgid "Enable Randplace Plugin" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:294 -msgid "No files were uploaded." -msgstr "" - -#: ../../addon/js_upload/js_upload.php:300 -msgid "Uploaded file is empty" -msgstr "" - -#: ../../addon/js_upload/js_upload.php:323 -msgid "File has an invalid extension, it should be one of " +#: ../../addon/uhremotestorage/uhremotestorage.php:56 +#, php-format +msgid "" +"Allow to use your friendika id (%s) to connecto to external unhosted-enabled " +"storage (like ownCloud)" msgstr "" -#: ../../addon/js_upload/js_upload.php:334 -msgid "Upload was cancelled, or server error encountered" +#: ../../addon/uhremotestorage/uhremotestorage.php:57 +msgid "Unhosted DAV storage url" msgstr "" #: ../../addon/impressum/impressum.php:25 @@ -3570,330 +3817,290 @@ msgid "" "refer to the README file of the addon." msgstr "" -#: ../../addon/impressum/impressum.php:71 -msgid "Site Owners Profile" -msgstr "" - -#: ../../addon/impressum/impressum.php:73 -msgid "Notes" -msgstr "" - -#: ../../addon/oembed/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "" - -#: ../../addon/oembed/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "" - -#: ../../addon/oembed/oembed.php:71 -msgid "URL to embed:" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:141 -msgid "Post to StatusNet" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:183 -msgid "" -"Please contact your site administrator.
The provided API URL is not " -"valid." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:211 -msgid "We could not contact the StatusNet API with the Path you entered." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:238 -msgid "StatusNet settings updated." -msgstr "" - -#: ../../addon/statusnet/statusnet.php:261 -msgid "StatusNet Posting Settings" +#: ../../addon/impressum/impressum.php:71 +msgid "Site Owners Profile" msgstr "" -#: ../../addon/statusnet/statusnet.php:275 -msgid "Globally Available StatusNet OAuthKeys" +#: ../../addon/impressum/impressum.php:73 +msgid "Notes" msgstr "" -#: ../../addon/statusnet/statusnet.php:276 -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)." +#: ../../addon/facebook/facebook.php:337 +msgid "Facebook disabled" msgstr "" -#: ../../addon/statusnet/statusnet.php:284 -msgid "Provide your own OAuth Credentials" +#: ../../addon/facebook/facebook.php:342 +msgid "Updating contacts" msgstr "" -#: ../../addon/statusnet/statusnet.php:285 -msgid "" -"No consumer key pair for StatusNet found. Register your Friendika 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 Friendika " -"installation at your favorited StatusNet installation." +#: ../../addon/facebook/facebook.php:351 +msgid "Facebook API key is missing." msgstr "" -#: ../../addon/statusnet/statusnet.php:287 -msgid "OAuth Consumer Key" +#: ../../addon/facebook/facebook.php:358 +msgid "Facebook Connect" msgstr "" -#: ../../addon/statusnet/statusnet.php:290 -msgid "OAuth Consumer Secret" +#: ../../addon/facebook/facebook.php:364 +msgid "Install Facebook connector for this account." msgstr "" -#: ../../addon/statusnet/statusnet.php:293 -msgid "Base API Path (remember the trailing /)" +#: ../../addon/facebook/facebook.php:371 +msgid "Remove Facebook connector" msgstr "" -#: ../../addon/statusnet/statusnet.php:314 +#: ../../addon/facebook/facebook.php:376 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 "" - -#: ../../addon/statusnet/statusnet.php:315 -msgid "Log in with StatusNet" +"Re-authenticate [This is necessary whenever your Facebook password is " +"changed.]" msgstr "" -#: ../../addon/statusnet/statusnet.php:317 -msgid "Copy the security code from StatusNet here" +#: ../../addon/facebook/facebook.php:383 +msgid "Post to Facebook by default" msgstr "" -#: ../../addon/statusnet/statusnet.php:323 -msgid "Cancel Connection Process" +#: ../../addon/facebook/facebook.php:387 +msgid "Link all your Facebook friends and conversations on this website" msgstr "" -#: ../../addon/statusnet/statusnet.php:325 -msgid "Current StatusNet API is" +#: ../../addon/facebook/facebook.php:389 +msgid "" +"Facebook conversations consist of your profile wall and your friend " +"stream." msgstr "" -#: ../../addon/statusnet/statusnet.php:326 -msgid "Cancel StatusNet Connection" +#: ../../addon/facebook/facebook.php:390 +msgid "On this website, your Facebook friend stream is only visible to you." msgstr "" -#: ../../addon/statusnet/statusnet.php:337 ../../addon/twitter/twitter.php:188 -msgid "Currently connected to: " +#: ../../addon/facebook/facebook.php:391 +msgid "" +"The following settings determine the privacy of your Facebook profile wall " +"on this website." msgstr "" -#: ../../addon/statusnet/statusnet.php:338 +#: ../../addon/facebook/facebook.php:395 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." +"On this website your Facebook profile wall conversations will only be " +"visible to you" msgstr "" -#: ../../addon/statusnet/statusnet.php:340 -msgid "Allow posting to StatusNet" +#: ../../addon/facebook/facebook.php:400 +msgid "Do not import your Facebook profile wall conversations" msgstr "" -#: ../../addon/statusnet/statusnet.php:343 -msgid "Send public postings to StatusNet by default" +#: ../../addon/facebook/facebook.php:402 +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 "" -#: ../../addon/statusnet/statusnet.php:348 ../../addon/twitter/twitter.php:199 -msgid "Clear OAuth configuration" +#: ../../addon/facebook/facebook.php:469 +#: ../../include/contact_selectors.php:78 +msgid "Facebook" msgstr "" -#: ../../addon/statusnet/statusnet.php:478 -msgid "API URL" +#: ../../addon/facebook/facebook.php:470 +msgid "Facebook Connector Settings" msgstr "" -#: ../../addon/statusnet/statusnet.php:479 -msgid "Consumer Secret" +#: ../../addon/facebook/facebook.php:484 +msgid "Post to Facebook" msgstr "" -#: ../../addon/statusnet/statusnet.php:480 -msgid "Consumer Key" +#: ../../addon/facebook/facebook.php:561 +msgid "" +"Post to Facebook cancelled because of multi-network access permission " +"conflict." msgstr "" -#: ../../addon/wppost/wppost.php:41 -msgid "Post to Wordpress" +#: ../../addon/facebook/facebook.php:624 +msgid "Image: " msgstr "" -#: ../../addon/wppost/wppost.php:73 -msgid "WordPress Post Settings" +#: ../../addon/facebook/facebook.php:700 +msgid "View on Friendika" msgstr "" -#: ../../addon/wppost/wppost.php:75 -msgid "Enable WordPress Post Plugin" +#: ../../addon/facebook/facebook.php:724 +msgid "Facebook post failed. Queued for retry." msgstr "" -#: ../../addon/wppost/wppost.php:80 -msgid "WordPress username" +#: ../../addon/widgets/widgets.php:55 +msgid "Generate new key" msgstr "" -#: ../../addon/wppost/wppost.php:85 -msgid "WordPress password" +#: ../../addon/widgets/widgets.php:58 +msgid "Widgets key" msgstr "" -#: ../../addon/wppost/wppost.php:90 -msgid "WordPress API URL" +#: ../../addon/widgets/widgets.php:60 +msgid "Widgets available" msgstr "" -#: ../../addon/wppost/wppost.php:95 -msgid "Post to WordPress by default" +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendika!" msgstr "" -#: ../../addon/piwik/piwik.php:70 -msgid "" -"This website is tracked using the Piwik " -"analytics tool." -msgstr "" +#: ../../addon/widgets/widget_like.php:58 +#, php-format +msgid "%d person likes this" +msgid_plural "%d people like this" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/piwik/piwik.php:73 +#: ../../addon/widgets/widget_like.php:61 #, 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 "" +msgid "%d person doesn't like this" +msgid_plural "%d people don't like this" +msgstr[0] "" +msgstr[1] "" -#: ../../addon/piwik/piwik.php:82 -msgid "Piwik Base URL" +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" msgstr "" -#: ../../addon/piwik/piwik.php:83 -msgid "Site ID" +#: ../../addon/nsfw/nsfw.php:47 +msgid "\"Not Safe For Work\" Settings" msgstr "" -#: ../../addon/piwik/piwik.php:84 -msgid "Show opt-out cookie link?" +#: ../../addon/nsfw/nsfw.php:49 +msgid "Comma separated words to treat as NSFW" msgstr "" -#: ../../addon/twitter/twitter.php:78 -msgid "Post to Twitter" +#: ../../addon/nsfw/nsfw.php:66 +msgid "NSFW Settings saved." msgstr "" -#: ../../addon/twitter/twitter.php:123 -msgid "Twitter settings updated." +#: ../../addon/nsfw/nsfw.php:102 +#, php-format +msgid "%s - Click to open/close" msgstr "" -#: ../../addon/twitter/twitter.php:145 -msgid "Twitter Posting Settings" +#: ../../addon/communityhome/communityhome.php:29 +msgid "OpenID" msgstr "" -#: ../../addon/twitter/twitter.php:152 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." +#: ../../addon/communityhome/communityhome.php:38 +msgid "Last users" msgstr "" -#: ../../addon/twitter/twitter.php:171 -msgid "" -"At this Friendika 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." +#: ../../addon/communityhome/communityhome.php:81 +msgid "Most active users" msgstr "" -#: ../../addon/twitter/twitter.php:172 -msgid "Log in with Twitter" +#: ../../addon/communityhome/communityhome.php:98 +msgid "Last photos" msgstr "" -#: ../../addon/twitter/twitter.php:174 -msgid "Copy the PIN from Twitter here" +#: ../../addon/communityhome/communityhome.php:133 +msgid "Last likes" msgstr "" -#: ../../addon/twitter/twitter.php:189 -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." +#: ../../addon/communityhome/communityhome.php:155 +#: ../../include/conversation.php:23 +msgid "event" msgstr "" -#: ../../addon/twitter/twitter.php:191 -msgid "Allow posting to Twitter" +#: ../../addon/membersince/membersince.php:17 +#, php-format +msgid " - Member since: %s" msgstr "" -#: ../../addon/twitter/twitter.php:194 -msgid "Send public postings to Twitter by default" +#: ../../addon/randplace/randplace.php:170 +msgid "Randplace Settings" msgstr "" -#: ../../addon/twitter/twitter.php:301 -msgid "Consumer key" +#: ../../addon/randplace/randplace.php:172 +msgid "Enable Randplace Plugin" msgstr "" -#: ../../addon/twitter/twitter.php:302 -msgid "Consumer secret" +#: ../../addon/piwik/piwik.php:70 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." msgstr "" -#: ../../include/profile_advanced.php:17 ../../boot.php:921 -msgid "Gender:" +#: ../../addon/piwik/piwik.php:73 +#, 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 "" -#: ../../include/profile_advanced.php:22 -msgid "j F, Y" +#: ../../addon/piwik/piwik.php:82 +msgid "Piwik Base URL" msgstr "" -#: ../../include/profile_advanced.php:23 -msgid "j F" +#: ../../addon/piwik/piwik.php:83 +msgid "Site ID" msgstr "" -#: ../../include/profile_advanced.php:30 ../../include/datetime.php:421 -#: ../../include/items.php:1215 -msgid "Birthday:" +#: ../../addon/piwik/piwik.php:84 +msgid "Show opt-out cookie link?" msgstr "" -#: ../../include/profile_advanced.php:34 -msgid "Age:" +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" msgstr "" -#: ../../include/profile_advanced.php:37 ../../boot.php:924 -msgid "Status:" +#: ../../addon/js_upload/js_upload.php:44 +msgid "Drop files here to upload" msgstr "" -#: ../../include/profile_advanced.php:45 ../../boot.php:926 -msgid "Homepage:" +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" msgstr "" -#: ../../include/profile_advanced.php:49 -msgid "Religion:" +#: ../../addon/js_upload/js_upload.php:294 +msgid "No files were uploaded." msgstr "" -#: ../../include/profile_advanced.php:51 -msgid "About:" +#: ../../addon/js_upload/js_upload.php:300 +msgid "Uploaded file is empty" msgstr "" -#: ../../include/profile_advanced.php:53 -msgid "Hobbies/Interests:" +#: ../../addon/js_upload/js_upload.php:323 +msgid "File has an invalid extension, it should be one of " msgstr "" -#: ../../include/profile_advanced.php:55 -msgid "Contact information and Social Networks:" +#: ../../addon/js_upload/js_upload.php:334 +msgid "Upload was cancelled, or server error encountered" msgstr "" -#: ../../include/profile_advanced.php:57 -msgid "Musical interests:" +#: ../../addon/wppost/wppost.php:41 +msgid "Post to Wordpress" msgstr "" -#: ../../include/profile_advanced.php:59 -msgid "Books, literature:" +#: ../../addon/wppost/wppost.php:73 +msgid "WordPress Post Settings" msgstr "" -#: ../../include/profile_advanced.php:61 -msgid "Television:" +#: ../../addon/wppost/wppost.php:75 +msgid "Enable WordPress Post Plugin" +msgstr "" + +#: ../../addon/wppost/wppost.php:80 +msgid "WordPress username" msgstr "" -#: ../../include/profile_advanced.php:63 -msgid "Film/dance/culture/entertainment:" +#: ../../addon/wppost/wppost.php:85 +msgid "WordPress password" msgstr "" -#: ../../include/profile_advanced.php:65 -msgid "Love/Romance:" +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress API URL" msgstr "" -#: ../../include/profile_advanced.php:67 -msgid "Work/employment:" +#: ../../addon/wppost/wppost.php:95 +msgid "Post to WordPress by default" msgstr "" -#: ../../include/profile_advanced.php:69 -msgid "School/education:" +#: ../../include/notifier.php:616 ../../include/delivery.php:415 +msgid "(no subject)" msgstr "" #: ../../include/contact_selectors.php:32 @@ -4168,486 +4375,427 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/event.php:17 ../../include/bb2diaspora.php:194 +#: ../../include/event.php:17 ../../include/bb2diaspora.php:233 msgid "Starts:" msgstr "" -#: ../../include/event.php:27 ../../include/bb2diaspora.php:202 +#: ../../include/event.php:27 ../../include/bb2diaspora.php:241 msgid "Finishes:" msgstr "" -#: ../../include/delivery.php:427 ../../include/notifier.php:623 -msgid "(no subject)" -msgstr "" - -#: ../../include/text.php:229 -msgid "prev" -msgstr "" - -#: ../../include/text.php:231 -msgid "first" -msgstr "" - -#: ../../include/text.php:260 -msgid "last" -msgstr "" - -#: ../../include/text.php:263 -msgid "next" -msgstr "" - -#: ../../include/text.php:543 -msgid "No contacts" -msgstr "" - -#: ../../include/text.php:552 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/text.php:623 ../../include/nav.php:87 -msgid "Search" -msgstr "" - -#: ../../include/text.php:705 -msgid "Monday" -msgstr "" - -#: ../../include/text.php:705 -msgid "Tuesday" -msgstr "" - -#: ../../include/text.php:705 -msgid "Wednesday" -msgstr "" - -#: ../../include/text.php:705 -msgid "Thursday" -msgstr "" - -#: ../../include/text.php:705 -msgid "Friday" -msgstr "" - -#: ../../include/text.php:705 -msgid "Saturday" +#: ../../include/acl_selectors.php:279 +msgid "Visible to everybody" msgstr "" -#: ../../include/text.php:705 -msgid "Sunday" +#: ../../include/acl_selectors.php:280 +msgid "show" msgstr "" -#: ../../include/text.php:709 -msgid "January" +#: ../../include/acl_selectors.php:281 +msgid "don't show" msgstr "" -#: ../../include/text.php:709 -msgid "February" +#: ../../include/auth.php:27 +msgid "Logged out." msgstr "" -#: ../../include/text.php:709 -msgid "March" +#: ../../include/bbcode.php:147 +msgid "Image/photo" msgstr "" -#: ../../include/text.php:709 -msgid "April" +#: ../../include/poller.php:457 +msgid "From: " msgstr "" -#: ../../include/text.php:709 -msgid "May" +#: ../../include/Contact.php:125 ../../include/conversation.php:675 +msgid "View status" msgstr "" -#: ../../include/text.php:709 -msgid "June" +#: ../../include/Contact.php:126 ../../include/conversation.php:676 +msgid "View profile" msgstr "" -#: ../../include/text.php:709 -msgid "July" +#: ../../include/Contact.php:127 ../../include/conversation.php:677 +msgid "View photos" msgstr "" -#: ../../include/text.php:709 -msgid "August" +#: ../../include/Contact.php:128 ../../include/Contact.php:141 +#: ../../include/conversation.php:678 +msgid "View recent" msgstr "" -#: ../../include/text.php:709 -msgid "September" +#: ../../include/Contact.php:130 ../../include/Contact.php:141 +#: ../../include/conversation.php:680 +msgid "Send PM" msgstr "" -#: ../../include/text.php:709 -msgid "October" +#: ../../include/datetime.php:44 ../../include/datetime.php:46 +msgid "Miscellaneous" msgstr "" -#: ../../include/text.php:709 -msgid "November" +#: ../../include/datetime.php:105 ../../include/datetime.php:237 +msgid "year" msgstr "" -#: ../../include/text.php:709 -msgid "December" +#: ../../include/datetime.php:110 ../../include/datetime.php:238 +msgid "month" msgstr "" -#: ../../include/text.php:777 -msgid "bytes" +#: ../../include/datetime.php:115 ../../include/datetime.php:240 +msgid "day" msgstr "" -#: ../../include/text.php:866 -msgid "Select an alternate language" +#: ../../include/datetime.php:228 +msgid "never" msgstr "" -#: ../../include/text.php:878 -msgid "default" +#: ../../include/datetime.php:234 +msgid "less than a second ago" msgstr "" -#: ../../include/diaspora.php:479 -msgid "Sharing notification from Diaspora network" +#: ../../include/datetime.php:237 +msgid "years" msgstr "" -#: ../../include/diaspora.php:1242 -msgid "link" +#: ../../include/datetime.php:238 +msgid "months" msgstr "" -#: ../../include/diaspora.php:1423 -#, php-format -msgid "[Relayed] Comment authored by %s from network %s" +#: ../../include/datetime.php:239 +msgid "week" msgstr "" -#: ../../include/oembed.php:99 -msgid "Embedding disabled" +#: ../../include/datetime.php:239 +msgid "weeks" 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." +#: ../../include/datetime.php:240 +msgid "days" msgstr "" -#: ../../include/group.php:165 -msgid "Create a new group" +#: ../../include/datetime.php:241 +msgid "hour" msgstr "" -#: ../../include/group.php:166 -msgid "Everybody" +#: ../../include/datetime.php:241 +msgid "hours" msgstr "" -#: ../../include/nav.php:44 ../../boot.php:676 -msgid "Logout" +#: ../../include/datetime.php:242 +msgid "minute" msgstr "" -#: ../../include/nav.php:44 -msgid "End this session" +#: ../../include/datetime.php:242 +msgid "minutes" msgstr "" -#: ../../include/nav.php:47 ../../boot.php:1194 -msgid "Status" +#: ../../include/datetime.php:243 +msgid "second" msgstr "" -#: ../../include/nav.php:47 ../../include/nav.php:111 -msgid "Your posts and conversations" +#: ../../include/datetime.php:243 +msgid "seconds" msgstr "" -#: ../../include/nav.php:48 -msgid "Your profile page" +#: ../../include/datetime.php:250 +msgid " ago" msgstr "" -#: ../../include/nav.php:49 ../../boot.php:1204 -msgid "Photos" +#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30 +#: ../../include/items.php:1215 +msgid "Birthday:" msgstr "" -#: ../../include/nav.php:49 -msgid "Your photos" +#: ../../include/profile_advanced.php:22 +msgid "j F, Y" msgstr "" -#: ../../include/nav.php:50 -msgid "Your events" +#: ../../include/profile_advanced.php:23 +msgid "j F" msgstr "" -#: ../../include/nav.php:51 -msgid "Personal notes" +#: ../../include/profile_advanced.php:34 +msgid "Age:" msgstr "" -#: ../../include/nav.php:51 -msgid "Your personal photos" +#: ../../include/profile_advanced.php:49 +msgid "Religion:" msgstr "" -#: ../../include/nav.php:62 -msgid "Sign in" +#: ../../include/profile_advanced.php:51 +msgid "About:" msgstr "" -#: ../../include/nav.php:73 -msgid "Home Page" +#: ../../include/profile_advanced.php:53 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/nav.php:77 -msgid "Create an account" +#: ../../include/profile_advanced.php:55 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/nav.php:82 -msgid "Help and documentation" +#: ../../include/profile_advanced.php:57 +msgid "Musical interests:" msgstr "" -#: ../../include/nav.php:85 -msgid "Apps" +#: ../../include/profile_advanced.php:59 +msgid "Books, literature:" msgstr "" -#: ../../include/nav.php:85 -msgid "Addon applications, utilities, games" +#: ../../include/profile_advanced.php:61 +msgid "Television:" msgstr "" -#: ../../include/nav.php:87 -msgid "Search site content" +#: ../../include/profile_advanced.php:63 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/nav.php:97 -msgid "Conversations on this site" +#: ../../include/profile_advanced.php:65 +msgid "Love/Romance:" msgstr "" -#: ../../include/nav.php:99 -msgid "Directory" +#: ../../include/profile_advanced.php:67 +msgid "Work/employment:" msgstr "" -#: ../../include/nav.php:99 -msgid "People directory" +#: ../../include/profile_advanced.php:69 +msgid "School/education:" msgstr "" -#: ../../include/nav.php:109 -msgid "Conversations from your friends" +#: ../../include/text.php:232 +msgid "prev" msgstr "" -#: ../../include/nav.php:117 -msgid "Friend Requests" +#: ../../include/text.php:234 +msgid "first" msgstr "" -#: ../../include/nav.php:122 -msgid "Private mail" +#: ../../include/text.php:263 +msgid "last" msgstr "" -#: ../../include/nav.php:125 -msgid "Manage" +#: ../../include/text.php:266 +msgid "next" msgstr "" -#: ../../include/nav.php:125 -msgid "Manage other pages" +#: ../../include/text.php:546 +msgid "No contacts" msgstr "" -#: ../../include/nav.php:129 ../../boot.php:879 -msgid "Manage/edit profiles" -msgstr "" +#: ../../include/text.php:555 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "" +msgstr[1] "" -#: ../../include/nav.php:130 -msgid "Manage/edit friends and contacts" +#: ../../include/text.php:626 ../../include/nav.php:87 +msgid "Search" msgstr "" -#: ../../include/nav.php:137 -msgid "Admin" +#: ../../include/text.php:709 +msgid "Monday" msgstr "" -#: ../../include/nav.php:137 -msgid "Site setup and configuration" +#: ../../include/text.php:709 +msgid "Tuesday" msgstr "" -#: ../../include/nav.php:160 -msgid "Nothing new here" +#: ../../include/text.php:709 +msgid "Wednesday" msgstr "" -#: ../../include/contact_widgets.php:6 -msgid "Add New Contact" +#: ../../include/text.php:709 +msgid "Thursday" msgstr "" -#: ../../include/contact_widgets.php:7 -msgid "Enter address or web location" +#: ../../include/text.php:709 +msgid "Friday" msgstr "" -#: ../../include/contact_widgets.php:8 -msgid "Example: bob@example.com, http://example.com/barbara" +#: ../../include/text.php:709 +msgid "Saturday" msgstr "" -#: ../../include/contact_widgets.php:9 ../../boot.php:869 -msgid "Connect" +#: ../../include/text.php:709 +msgid "Sunday" msgstr "" -#: ../../include/contact_widgets.php:18 -msgid "Invite Friends" +#: ../../include/text.php:713 +msgid "January" msgstr "" -#: ../../include/contact_widgets.php:24 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "" -msgstr[1] "" +#: ../../include/text.php:713 +msgid "February" +msgstr "" -#: ../../include/contact_widgets.php:30 -msgid "Find People" +#: ../../include/text.php:713 +msgid "March" msgstr "" -#: ../../include/contact_widgets.php:31 -msgid "Enter name or interest" +#: ../../include/text.php:713 +msgid "April" msgstr "" -#: ../../include/contact_widgets.php:32 -msgid "Connect/Follow" +#: ../../include/text.php:713 +msgid "May" msgstr "" -#: ../../include/contact_widgets.php:33 -msgid "Examples: Robert Morgenstein, Fishing" +#: ../../include/text.php:713 +msgid "June" msgstr "" -#: ../../include/contact_widgets.php:35 -msgid "Similar Interests" +#: ../../include/text.php:713 +msgid "July" msgstr "" -#: ../../include/auth.php:27 -msgid "Logged out." +#: ../../include/text.php:713 +msgid "August" msgstr "" -#: ../../include/datetime.php:44 ../../include/datetime.php:46 -msgid "Miscellaneous" +#: ../../include/text.php:713 +msgid "September" msgstr "" -#: ../../include/datetime.php:105 ../../include/datetime.php:237 -msgid "year" +#: ../../include/text.php:713 +msgid "October" msgstr "" -#: ../../include/datetime.php:110 ../../include/datetime.php:238 -msgid "month" +#: ../../include/text.php:713 +msgid "November" msgstr "" -#: ../../include/datetime.php:115 ../../include/datetime.php:240 -msgid "day" +#: ../../include/text.php:713 +msgid "December" msgstr "" -#: ../../include/datetime.php:228 -msgid "never" +#: ../../include/text.php:783 +msgid "bytes" msgstr "" -#: ../../include/datetime.php:234 -msgid "less than a second ago" +#: ../../include/text.php:875 +msgid "Select an alternate language" msgstr "" -#: ../../include/datetime.php:237 -msgid "years" +#: ../../include/text.php:887 +msgid "default" msgstr "" -#: ../../include/datetime.php:238 -msgid "months" +#: ../../include/nav.php:44 +msgid "End this session" msgstr "" -#: ../../include/datetime.php:239 -msgid "week" +#: ../../include/nav.php:47 ../../include/nav.php:111 +msgid "Your posts and conversations" msgstr "" -#: ../../include/datetime.php:239 -msgid "weeks" +#: ../../include/nav.php:48 +msgid "Your profile page" msgstr "" -#: ../../include/datetime.php:240 -msgid "days" +#: ../../include/nav.php:49 +msgid "Your photos" msgstr "" -#: ../../include/datetime.php:241 -msgid "hour" +#: ../../include/nav.php:50 +msgid "Your events" msgstr "" -#: ../../include/datetime.php:241 -msgid "hours" +#: ../../include/nav.php:51 +msgid "Personal notes" msgstr "" -#: ../../include/datetime.php:242 -msgid "minute" +#: ../../include/nav.php:51 +msgid "Your personal photos" msgstr "" -#: ../../include/datetime.php:242 -msgid "minutes" +#: ../../include/nav.php:62 +msgid "Sign in" msgstr "" -#: ../../include/datetime.php:243 -msgid "second" +#: ../../include/nav.php:73 +msgid "Home Page" msgstr "" -#: ../../include/datetime.php:243 -msgid "seconds" +#: ../../include/nav.php:77 +msgid "Create an account" msgstr "" -#: ../../include/datetime.php:250 -msgid " ago" +#: ../../include/nav.php:82 +msgid "Help and documentation" msgstr "" -#: ../../include/poller.php:446 -msgid "From: " +#: ../../include/nav.php:85 +msgid "Apps" msgstr "" -#: ../../include/bbcode.php:121 -msgid "Image/photo" +#: ../../include/nav.php:85 +msgid "Addon applications, utilities, games" msgstr "" -#: ../../include/dba.php:31 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../include/nav.php:87 +msgid "Search site content" msgstr "" -#: ../../include/message.php:13 -msgid "[no subject]" +#: ../../include/nav.php:97 +msgid "Conversations on this site" msgstr "" -#: ../../include/acl_selectors.php:279 -msgid "Visible to everybody" +#: ../../include/nav.php:99 +msgid "Directory" msgstr "" -#: ../../include/acl_selectors.php:280 -msgid "show" +#: ../../include/nav.php:99 +msgid "People directory" msgstr "" -#: ../../include/acl_selectors.php:281 -msgid "don't show" +#: ../../include/nav.php:109 +msgid "Conversations from your friends" msgstr "" -#: ../../include/items.php:1766 -msgid "New mail received at " +#: ../../include/nav.php:117 +msgid "Friend Requests" msgstr "" -#: ../../include/items.php:2282 -msgid "A new person is sharing with you at " +#: ../../include/nav.php:122 +msgid "Private mail" msgstr "" -#: ../../include/items.php:2282 -msgid "You have a new follower at " +#: ../../include/nav.php:125 +msgid "Manage" msgstr "" -#: ../../include/Contact.php:125 ../../include/conversation.php:656 -msgid "View status" +#: ../../include/nav.php:125 +msgid "Manage other pages" msgstr "" -#: ../../include/Contact.php:126 ../../include/conversation.php:657 -msgid "View profile" +#: ../../include/nav.php:130 +msgid "Manage/edit friends and contacts" msgstr "" -#: ../../include/Contact.php:127 ../../include/conversation.php:658 -msgid "View photos" +#: ../../include/nav.php:137 +msgid "Admin" msgstr "" -#: ../../include/Contact.php:128 ../../include/Contact.php:141 -#: ../../include/conversation.php:659 -msgid "View recent" +#: ../../include/nav.php:137 +msgid "Site setup and configuration" msgstr "" -#: ../../include/Contact.php:130 ../../include/Contact.php:141 -#: ../../include/conversation.php:661 -msgid "Send PM" +#: ../../include/nav.php:160 +msgid "Nothing new here" msgstr "" #: ../../include/conversation.php:210 ../../include/conversation.php:453 msgid "Select" msgstr "" -#: ../../include/conversation.php:225 ../../include/conversation.php:531 -#: ../../include/conversation.php:532 +#: ../../include/conversation.php:225 ../../include/conversation.php:550 +#: ../../include/conversation.php:551 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:234 ../../include/conversation.php:543 +#: ../../include/conversation.php:234 ../../include/conversation.php:562 #, php-format msgid "%s from %s" msgstr "" @@ -4693,133 +4841,205 @@ msgstr "" msgid "starred" msgstr "" -#: ../../include/conversation.php:533 +#: ../../include/conversation.php:469 +msgid "add tag" +msgstr "" + +#: ../../include/conversation.php:552 msgid "to" msgstr "" -#: ../../include/conversation.php:534 +#: ../../include/conversation.php:553 msgid "Wall-to-Wall" msgstr "" -#: ../../include/conversation.php:535 +#: ../../include/conversation.php:554 msgid "via Wall-To-Wall:" msgstr "" -#: ../../include/conversation.php:581 +#: ../../include/conversation.php:600 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:730 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:730 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:715 +#: ../../include/conversation.php:734 #, php-format msgid "%2$d people like this." msgstr "" -#: ../../include/conversation.php:717 +#: ../../include/conversation.php:736 #, php-format msgid "%2$d people don't like this." msgstr "" -#: ../../include/conversation.php:723 +#: ../../include/conversation.php:742 msgid "and" msgstr "" -#: ../../include/conversation.php:726 +#: ../../include/conversation.php:745 #, php-format msgid ", and %d other people" msgstr "" -#: ../../include/conversation.php:727 +#: ../../include/conversation.php:746 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:727 +#: ../../include/conversation.php:746 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:746 +#: ../../include/conversation.php:766 msgid "Visible to everybody" msgstr "" -#: ../../include/conversation.php:748 +#: ../../include/conversation.php:768 msgid "Please enter a video link/URL:" msgstr "" -#: ../../include/conversation.php:749 +#: ../../include/conversation.php:769 msgid "Please enter an audio link/URL:" msgstr "" -#: ../../include/conversation.php:750 +#: ../../include/conversation.php:770 +msgid "Tag term:" +msgstr "" + +#: ../../include/conversation.php:771 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:751 +#: ../../include/conversation.php:772 msgid "Enter a title for this item" msgstr "" -#: ../../include/conversation.php:797 +#: ../../include/conversation.php:818 msgid "Insert video link" msgstr "" -#: ../../include/conversation.php:798 +#: ../../include/conversation.php:819 msgid "Insert audio link" msgstr "" -#: ../../include/conversation.php:801 +#: ../../include/conversation.php:822 msgid "Set title" msgstr "" -#: ../../boot.php:416 -msgid "Delete this item?" +#: ../../include/bb2diaspora.php:51 +msgid "view full size" msgstr "" -#: ../../boot.php:659 -msgid "Create a New Account" +#: ../../include/bb2diaspora.php:102 +msgid "image/photo" msgstr "" -#: ../../boot.php:679 -msgid "Nickname or Email address: " +#: ../../include/dba.php:31 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" msgstr "" -#: ../../boot.php:680 -msgid "Password: " +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" msgstr "" -#: ../../boot.php:683 -msgid "OpenID: " +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" msgstr "" -#: ../../boot.php:688 -msgid "Forgot your password?" +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" msgstr "" -#: ../../boot.php:985 -msgid "g A l F d" +#: ../../include/contact_widgets.php:18 +msgid "Invite Friends" msgstr "" -#: ../../boot.php:986 -msgid "F d" +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/contact_widgets.php:30 +msgid "Find People" msgstr "" -#: ../../boot.php:1004 -msgid "Birthday Reminders" +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" msgstr "" -#: ../../boot.php:1005 -msgid "Birthdays this week:" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" msgstr "" -#: ../../boot.php:1023 -msgid "[today]" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "" + +#: ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "" + +#: ../../include/items.php:1829 +msgid "New mail received at " +msgstr "" + +#: ../../include/items.php:2438 +msgid "A new person is sharing with you at " +msgstr "" + +#: ../../include/items.php:2438 +msgid "You have a new follower at " +msgstr "" + +#: ../../include/message.php:13 +msgid "[no subject]" +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:165 +msgid "Create a new group" +msgstr "" + +#: ../../include/group.php:166 +msgid "Everybody" +msgstr "" + +#: ../../include/diaspora.php:544 +msgid "Sharing notification from Diaspora network" +msgstr "" + +#: ../../include/diaspora.php:1527 +msgid "Attachments:" +msgstr "" + +#: ../../include/diaspora.php:1710 +#, php-format +msgid "[Relayed] Comment authored by %s from network %s" +msgstr "" + +#: ../../include/oembed.php:122 +msgid "Embedded content" +msgstr "" + +#: ../../include/oembed.php:131 +msgid "Embedding disabled" msgstr "" -- cgit v1.2.3 From 281f9edce72f928e17d2a1075f28803ea3e265f2 Mon Sep 17 00:00:00 2001 From: Fabio Comuni Date: Tue, 15 Nov 2011 19:40:38 +0100 Subject: Update IT strings --- view/it/messages.po | 6424 ++++++++++++++++++++++++++++----------------------- view/it/strings.php | 1423 +++++++----- 2 files changed, 4328 insertions(+), 3519 deletions(-) diff --git a/view/it/messages.po b/view/it/messages.po index 235cfbcf7..0a94134ae 100644 --- a/view/it/messages.po +++ b/view/it/messages.po @@ -2,1208 +2,1768 @@ # Copyright (C) 2010, 2011 Mike Macgirvin # This file is distributed under the same license as the Friendika package. # -# , 2011. +# Translators: # fabrixxm , 2011. +# , 2011. msgid "" msgstr "" -"Project-Id-Version: friendika\n" -"Report-Msgid-Bugs-To: http://bugs.friendika.com/\n" -"POT-Creation-Date: 2011-08-14 21:17-0700\n" -"PO-Revision-Date: 2011-09-01 10:32+0000\n" +"Project-Id-Version: friendica\n" +"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" +"POT-Creation-Date: 2011-11-15 17:20+0100\n" +"PO-Revision-Date: 2011-11-15 18:40+0000\n" "Last-Translator: fabrixxm \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/friendika/team/it/)\n" +"Language-Team: Italian (http://www.transifex.net/projects/p/friendica/team/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../../mod/oexchange.php:27 -msgid "Post successful." -msgstr "Inviato con successo." +#: ../../index.php:213 ../../mod/help.php:38 +msgid "Not Found" +msgstr "Non Trovato" -#: ../../mod/crepair.php:42 -msgid "Contact settings applied." -msgstr "Impostazioni del contatto applicate." +#: ../../index.php:216 ../../mod/help.php:41 +msgid "Page not found." +msgstr "Pagina non trovata." -#: ../../mod/crepair.php:44 -msgid "Contact update failed." -msgstr "Aggiornamento del contatto non riuscito." +#: ../../index.php:279 ../../mod/profperm.php:19 ../../mod/group.php:67 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43 -#: ../../mod/fsuggest.php:78 ../../mod/events.php:102 ../../mod/photos.php:122 -#: ../../mod/photos.php:849 ../../mod/editpost.php:10 ../../mod/install.php:96 -#: ../../mod/notifications.php:62 ../../mod/contacts.php:132 -#: ../../mod/settings.php:41 ../../mod/settings.php:46 -#: ../../mod/settings.php:305 ../../mod/manage.php:75 ../../mod/network.php:6 -#: ../../mod/notes.php:20 ../../mod/attach.php:33 ../../mod/group.php:19 -#: ../../mod/viewcontacts.php:21 ../../mod/register.php:27 -#: ../../mod/regmod.php:111 ../../mod/item.php:110 -#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133 -#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155 -#: ../../mod/message.php:8 ../../mod/message.php:116 ../../mod/admin.php:10 -#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8 -#: ../../mod/display.php:108 ../../mod/profiles.php:7 -#: ../../mod/profiles.php:226 ../../mod/invite.php:13 ../../mod/invite.php:81 -#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:308 -#: ../../include/items.php:1930 ../../index.php:266 +#: ../../index.php:280 ../../mod/manage.php:75 ../../mod/wall_upload.php:42 +#: ../../mod/follow.php:8 ../../mod/profile_photo.php:19 +#: ../../mod/profile_photo.php:137 ../../mod/profile_photo.php:148 +#: ../../mod/profile_photo.php:159 ../../mod/wall_attach.php:43 +#: ../../mod/suggest.php:28 ../../mod/regmod.php:111 ../../mod/profiles.php:7 +#: ../../mod/profiles.php:229 ../../mod/settings.php:41 +#: ../../mod/settings.php:46 ../../mod/settings.php:376 +#: ../../mod/photos.php:123 ../../mod/photos.php:858 ../../mod/display.php:111 +#: ../../mod/editpost.php:10 ../../mod/invite.php:13 ../../mod/invite.php:81 +#: ../../mod/contacts.php:115 ../../mod/register.php:27 +#: ../../mod/allfriends.php:9 ../../mod/install.php:96 ../../mod/network.php:6 +#: ../../mod/events.php:109 ../../mod/notifications.php:62 +#: ../../mod/crepair.php:113 ../../mod/api.php:26 ../../mod/api.php:31 +#: ../../mod/notes.php:20 ../../mod/fsuggest.php:78 ../../mod/item.php:113 +#: ../../mod/message.php:9 ../../mod/message.php:42 +#: ../../mod/dfrn_confirm.php:53 ../../mod/viewcontacts.php:21 +#: ../../mod/group.php:19 ../../mod/attach.php:33 ../../mod/common.php:9 +#: ../../addon/facebook/facebook.php:331 ../../include/items.php:2874 msgid "Permission denied." msgstr "Permesso negato." -#: ../../mod/crepair.php:68 ../../mod/fsuggest.php:20 -#: ../../mod/fsuggest.php:92 ../../mod/contacts.php:240 -#: ../../mod/dfrn_confirm.php:114 -msgid "Contact not found." -msgstr "Contatto non trovato." +#: ../../boot.php:419 +msgid "Delete this item?" +msgstr "Cancellare questo elemento?" -#: ../../mod/crepair.php:74 -msgid "Repair Contact Settings" -msgstr "Ripara le Impostazioni del Contatto" +#: ../../boot.php:420 ../../mod/photos.php:1202 ../../mod/photos.php:1241 +#: ../../mod/photos.php:1272 ../../include/conversation.php:433 +msgid "Comment" +msgstr "Commento" -#: ../../mod/crepair.php:76 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact will stop working." -msgstr "" -"ATTENZIONE: Per utenti esperti! Se inserisci informazioni " -"non corrette le tue comunicazioni con questo contatto smetteranno di " -"funzionare." +#: ../../boot.php:662 +msgid "Create a New Account" +msgstr "Crea un Nuovo Account" -#: ../../mod/crepair.php:77 -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." +#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77 +msgid "Register" +msgstr "Regitrati" -#: ../../mod/crepair.php:85 ../../mod/admin.php:464 ../../mod/admin.php:473 -msgid "Name" -msgstr "Nome" +#: ../../boot.php:679 ../../include/nav.php:44 +msgid "Logout" +msgstr "Esci" -#: ../../mod/crepair.php:86 -msgid "Account Nickname" -msgstr "Nickname dell'utente" +#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28 +#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62 +msgid "Login" +msgstr "Accedi" -#: ../../mod/crepair.php:87 -msgid "Account URL" -msgstr "URL dell'utente" +#: ../../boot.php:682 +msgid "Nickname or Email address: " +msgstr "Soprannome o indirizzo Email: " -#: ../../mod/crepair.php:88 -msgid "Friend Request URL" -msgstr "URL Richiesta Amicizia" +#: ../../boot.php:683 +msgid "Password: " +msgstr "Password: " -#: ../../mod/crepair.php:89 -msgid "Friend Confirm URL" -msgstr "URL Conferma Amicizia" +#: ../../boot.php:686 +msgid "OpenID: " +msgstr "OpenID:" -#: ../../mod/crepair.php:90 -msgid "Notification Endpoint URL" -msgstr "URL Notifiche" +#: ../../boot.php:692 +msgid "Forgot your password?" +msgstr "Dimenticata la password?" -#: ../../mod/crepair.php:91 -msgid "Poll/Feed URL" -msgstr "URL Feed" +#: ../../boot.php:693 ../../mod/lostpass.php:82 +msgid "Password Reset" +msgstr "Resetta password" -#: ../../mod/crepair.php:100 ../../mod/fsuggest.php:107 -#: ../../mod/events.php:333 ../../mod/photos.php:877 ../../mod/photos.php:934 -#: ../../mod/photos.php:1144 ../../mod/photos.php:1184 -#: ../../mod/photos.php:1223 ../../mod/photos.php:1254 -#: ../../mod/install.php:137 ../../mod/contacts.php:296 -#: ../../mod/settings.php:482 ../../mod/manage.php:106 ../../mod/group.php:84 -#: ../../mod/group.php:167 ../../mod/admin.php:298 ../../mod/admin.php:461 -#: ../../mod/admin.php:587 ../../mod/admin.php:652 ../../mod/profiles.php:372 -#: ../../mod/invite.php:106 ../../addon/facebook/facebook.php:366 -#: ../../addon/randplace/randplace.php:178 -#: ../../addon/impressum/impressum.php:69 ../../addon/oembed/oembed.php:41 -#: ../../addon/statusnet/statusnet.php:274 -#: ../../addon/statusnet/statusnet.php:288 -#: ../../addon/statusnet/statusnet.php:314 -#: ../../addon/statusnet/statusnet.php:321 -#: ../../addon/statusnet/statusnet.php:343 -#: ../../addon/statusnet/statusnet.php:468 ../../addon/piwik/piwik.php:76 -#: ../../addon/twitter/twitter.php:171 ../../addon/twitter/twitter.php:194 -#: ../../addon/twitter/twitter.php:280 ../../include/conversation.php:409 -msgid "Submit" -msgstr "Invia" +#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10 +msgid "No profile" +msgstr "Nessun profilo" -#: ../../mod/help.php:27 -msgid "Help:" -msgstr "Guida:" +#: ../../boot.php:839 +msgid "Edit profile" +msgstr "Modifica il profilo" -#: ../../mod/help.php:31 ../../include/nav.php:64 -msgid "Help" -msgstr "Guida" +#: ../../boot.php:890 ../../include/contact_widgets.php:9 +msgid "Connect" +msgstr "Connetti" -#: ../../mod/wall_attach.php:57 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera il limite di dimensione di %d" +#: ../../boot.php:900 ../../include/nav.php:129 +msgid "Profiles" +msgstr "Profili" -#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 -msgid "File upload failed." -msgstr "Caricamento del file non riuscito." +#: ../../boot.php:900 ../../include/nav.php:129 +msgid "Manage/edit profiles" +msgstr "Gestisci/modifica i profili" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Suggerimento di amicizia inviato." +#: ../../boot.php:906 ../../mod/profiles.php:462 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Suggerisci Amici" +#: ../../boot.php:907 ../../mod/profiles.php:463 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Suggerisci un amico a %s" +#: ../../boot.php:917 ../../mod/profiles.php:473 +msgid "Profile Image" +msgstr "Immagine del Profilo" + +#: ../../boot.php:920 ../../mod/profiles.php:475 +msgid "visible to everybody" +msgstr "visibile a tutti" + +#: ../../boot.php:921 ../../mod/profiles.php:476 +msgid "Edit visibility" +msgstr "Modifica visibilità" + +#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37 +#: ../../include/bb2diaspora.php:249 +msgid "Location:" +msgstr "Posizione:" + +#: ../../boot.php:942 ../../include/profile_advanced.php:17 +msgid "Gender:" +msgstr "Genere:" + +#: ../../boot.php:945 ../../include/profile_advanced.php:37 +msgid "Status:" +msgstr "Stato:" + +#: ../../boot.php:947 ../../include/profile_advanced.php:45 +msgid "Homepage:" +msgstr "Homepage:" + +#: ../../boot.php:1006 ../../boot.php:1068 +msgid "g A l F d" +msgstr "g A l d F" + +#: ../../boot.php:1007 ../../boot.php:1069 +msgid "F d" +msgstr "d F" + +#: ../../boot.php:1030 +msgid "Birthday Reminders" +msgstr "Promemoria Compleanni" + +#: ../../boot.php:1031 +msgid "Birthdays this week:" +msgstr "Compleanni questa settimana:" + +#: ../../boot.php:1047 ../../boot.php:1111 +msgid "[today]" +msgstr "[oggi]" + +#: ../../boot.php:1092 +msgid "Event Reminders" +msgstr "Promemoria" + +#: ../../boot.php:1093 +msgid "Events this week:" +msgstr "Eventi di questa settimana:" + +#: ../../boot.php:1105 +msgid "[No description]" +msgstr "[Nessuna descrizione]" -#: ../../mod/events.php:112 ../../mod/photos.php:834 ../../mod/notes.php:46 -#: ../../mod/profile.php:116 +#: ../../boot.php:1282 ../../include/nav.php:47 msgid "Status" msgstr "Stato" -#: ../../mod/events.php:113 ../../mod/photos.php:835 ../../mod/notes.php:47 -#: ../../mod/profperm.php:103 ../../mod/profile.php:117 -#: ../../include/profile_advanced.php:7 +#: ../../boot.php:1287 ../../mod/profperm.php:103 +#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74 +#: ../../include/nav.php:48 msgid "Profile" msgstr "Profilo" -#: ../../mod/events.php:114 ../../mod/photos.php:836 ../../mod/notes.php:48 -#: ../../mod/profile.php:118 +#: ../../boot.php:1292 ../../include/nav.php:49 msgid "Photos" msgstr "Foto" -#: ../../mod/events.php:115 ../../mod/events.php:120 ../../mod/photos.php:837 -#: ../../mod/notes.php:49 ../../mod/profile.php:119 +#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50 msgid "Events" msgstr "Eventi" -#: ../../mod/events.php:116 ../../mod/photos.php:838 ../../mod/notes.php:50 -#: ../../mod/notes.php:55 ../../mod/profile.php:120 +#: ../../boot.php:1305 ../../mod/notes.php:44 msgid "Personal Notes" msgstr "Note personali" -#: ../../mod/events.php:210 -msgid "Create New Event" -msgstr "Crea un nuovo Evento" - -#: ../../mod/events.php:213 -msgid "Previous" -msgstr "Precendente" +#: ../../mod/manage.php:37 +#, php-format +msgid "Welcome back %s" +msgstr "Bentornato %s" -#: ../../mod/events.php:216 -msgid "Next" -msgstr "Successivo" +#: ../../mod/manage.php:87 +msgid "Manage Identities and/or Pages" +msgstr "Gestisci Indentità e/o Pagine" -#: ../../mod/events.php:223 -msgid "l, F j" -msgstr "l j F" +#: ../../mod/manage.php:90 +msgid "" +"(Toggle between different identities or community/group pages which share " +"your account details.)" +msgstr "" +"(Passa tra diverse identità o pagine di comunità/gruppi che condividono i " +"dettagli del tuo account.)" -#: ../../mod/events.php:235 -msgid "Edit event" -msgstr "Modifca Evento" +#: ../../mod/manage.php:92 +msgid "Select an identity to manage: " +msgstr "Seleziona una identità da gestire:" -#: ../../mod/events.php:237 ../../include/text.php:846 -msgid "link to source" -msgstr "Collegamento all'originale" +#: ../../mod/manage.php:106 ../../mod/profiles.php:375 +#: ../../mod/settings.php:420 ../../mod/settings.php:559 +#: ../../mod/settings.php:707 ../../mod/photos.php:886 +#: ../../mod/photos.php:944 ../../mod/photos.php:1163 +#: ../../mod/photos.php:1203 ../../mod/photos.php:1242 +#: ../../mod/photos.php:1273 ../../mod/localtime.php:45 +#: ../../mod/invite.php:106 ../../mod/contacts.php:306 +#: ../../mod/install.php:137 ../../mod/events.php:330 +#: ../../mod/crepair.php:162 ../../mod/fsuggest.php:107 +#: ../../mod/admin.php:296 ../../mod/admin.php:461 ../../mod/admin.php:587 +#: ../../mod/admin.php:652 ../../mod/group.php:84 ../../mod/group.php:167 +#: ../../addon/tumblr/tumblr.php:89 ../../addon/twitter/twitter.php:179 +#: ../../addon/twitter/twitter.php:202 ../../addon/twitter/twitter.php:299 +#: ../../addon/statusnet/statusnet.php:282 +#: ../../addon/statusnet/statusnet.php:296 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:329 +#: ../../addon/statusnet/statusnet.php:351 +#: ../../addon/statusnet/statusnet.php:486 ../../addon/oembed/oembed.php:41 +#: ../../addon/uhremotestorage/uhremotestorage.php:58 +#: ../../addon/impressum/impressum.php:69 +#: ../../addon/facebook/facebook.php:404 ../../addon/nsfw/nsfw.php:53 +#: ../../addon/randplace/randplace.php:178 ../../addon/piwik/piwik.php:81 +#: ../../addon/wppost/wppost.php:101 ../../include/conversation.php:434 +msgid "Submit" +msgstr "Invia" -#: ../../mod/events.php:305 -msgid "hour:minute" -msgstr "ora:minuti" +#: ../../mod/dirfind.php:23 +msgid "People Search" +msgstr "Cerca persone" -#: ../../mod/events.php:314 -msgid "Event details" -msgstr "Dettagli dell'Evento" +#: ../../mod/dirfind.php:57 ../../mod/match.php:57 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../mod/events.php:315 +#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113 #, php-format -msgid "Format is %s %s. Starting date and Description are required." -msgstr "" -"Il formato è %s %s. La data di inizio e la descrizione sono obbligatori." +msgid "Image exceeds size limit of %d" +msgstr "La dimensionde dell'immagine supera il limite di %d" -#: ../../mod/events.php:316 -msgid "Event Starts:" -msgstr "L'Evento inizia:" +#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122 +#: ../../mod/photos.php:647 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../mod/events.php:319 -msgid "Finish date/time is not known or not relevant" -msgstr "La data/l'ora di fine è sconosciuta o non importante" +#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90 +#: ../../mod/wall_upload.php:97 ../../mod/item.php:299 +#: ../../include/message.php:82 +msgid "Wall Photos" +msgstr "Foto Bacheca" -#: ../../mod/events.php:321 -msgid "Event Finishes:" -msgstr "L'Evento finisce:" +#: ../../mod/wall_upload.php:84 ../../mod/profile_photo.php:251 +#: ../../mod/photos.php:667 +msgid "Image upload failed." +msgstr "Caricamento immagine fallito." -#: ../../mod/events.php:324 -msgid "Adjust for viewer timezone" -msgstr "Regola nel fuso orario di chi legge" +#: ../../mod/profile.php:105 ../../mod/display.php:66 +msgid "Access to this profile has been restricted." +msgstr "L'accesso a questo profilo è stato limitato." -#: ../../mod/events.php:326 -msgid "Description:" -msgstr "Descrizione" +#: ../../mod/profile.php:127 +msgid "Tips for New Members" +msgstr "Consigli per i Nuovi Utenti" -#: ../../mod/events.php:328 ../../include/event.php:37 ../../boot.php:868 -msgid "Location:" -msgstr "Posizione:" +#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340 +msgid "Disallowed profile URL." +msgstr "Indirizzo profilo non permesso." -#: ../../mod/events.php:330 -msgid "Share this event" -msgstr "Condividi questo Evento" +#: ../../mod/follow.php:39 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "" +"Questo sito non è configurato per permettere la comunicazione con altri " +"network." -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 -#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:45 -msgid "Cancel" -msgstr "Annulla" +#: ../../mod/follow.php:40 ../../mod/follow.php:50 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "" +"Non sono stati trovati nessun protocollo di comunicazione o feed " +"compatibili." -#: ../../mod/tagrm.php:41 -msgid "Tag removed" -msgstr "TAg rimosso" +#: ../../mod/follow.php:48 +msgid "The profile address specified does not provide adequate information." +msgstr "" +"L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: ../../mod/tagrm.php:79 -msgid "Remove Item Tag" -msgstr "Rimuovi tag dall'elemento" +#: ../../mod/follow.php:52 +msgid "An author or name was not found." +msgstr "Non è stato trovato un nome dell'autore" -#: ../../mod/tagrm.php:81 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../mod/follow.php:54 +msgid "No browser URL could be matched to this address." +msgstr "Nessun URL puo' essere associato a questo indirizzo." -#: ../../mod/tagrm.php:93 -msgid "Remove" -msgstr "Rimuovi" +#: ../../mod/follow.php:61 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "" +"L'indirizzo del profilo specificato appartiene a un network che è stato " +"disabilitato su questo sito." -#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 -#, php-format -msgid "%s welcomes %s" -msgstr "%s da il benvenuto a %s" - -#: ../../mod/photos.php:37 -msgid "Photo Albums" -msgstr "Album Foto" +#: ../../mod/follow.php:66 +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 nofiche " +"dirette/personali da te." -#: ../../mod/photos.php:45 ../../mod/photos.php:143 ../../mod/photos.php:857 -#: ../../mod/photos.php:926 ../../mod/photos.php:941 ../../mod/photos.php:1332 -#: ../../mod/photos.php:1344 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../mod/follow.php:133 +msgid "Unable to retrieve contact information." +msgstr "Impossibile recuperare informazioni sul contatto." -#: ../../mod/photos.php:57 ../../mod/settings.php:9 -msgid "everybody" -msgstr "tutti" +#: ../../mod/follow.php:179 +msgid "following" +msgstr "segue" -#: ../../mod/photos.php:132 -msgid "Contact information unavailable" -msgstr "Informazione sul contatto non disponibile" +#: ../../mod/profile_photo.php:28 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il ritaglio è fallito." -#: ../../mod/photos.php:143 ../../mod/photos.php:577 ../../mod/photos.php:926 -#: ../../mod/photos.php:941 ../../mod/register.php:316 -#: ../../mod/register.php:323 ../../mod/register.php:330 #: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65 -#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160 -#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245 +#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:170 +#: ../../mod/profile_photo.php:246 ../../mod/profile_photo.php:255 +#: ../../mod/photos.php:144 ../../mod/photos.php:591 ../../mod/photos.php:936 +#: ../../mod/photos.php:951 ../../mod/register.php:318 +#: ../../mod/register.php:325 ../../mod/register.php:332 +#: ../../addon/communityhome/communityhome.php:111 msgid "Profile Photos" msgstr "Foto del profilo" -#: ../../mod/photos.php:153 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../mod/photos.php:171 ../../mod/photos.php:935 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 +#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:258 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "Riduzione della dimensione dell'immagine [%s] fallito." -#: ../../mod/photos.php:234 ../../mod/photos.php:1145 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../mod/profile_photo.php:89 +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/photos.php:508 -msgid "was tagged in a" -msgstr "è stato taggato in" +#: ../../mod/profile_photo.php:99 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../mod/photos.php:508 ../../mod/like.php:110 -#: ../../include/diaspora.php:446 ../../include/conversation.php:31 -msgid "photo" -msgstr "foto" +#: ../../mod/profile_photo.php:203 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../mod/photos.php:508 -msgid "by" -msgstr "da" +#: ../../mod/profile_photo.php:204 +msgid "Upload Profile Photo" +msgstr "Carica la Foto del Profilo" -#: ../../mod/photos.php:608 ../../addon/js_upload/js_upload.php:310 -msgid "Image exceeds size limit of " -msgstr "L'immagine supera il limite di dimensione di " +#: ../../mod/profile_photo.php:205 +msgid "Upload" +msgstr "Carica" -#: ../../mod/photos.php:616 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686 +msgid "or" +msgstr "o" -#: ../../mod/photos.php:630 ../../mod/profile_photo.php:118 -#: ../../mod/wall_upload.php:65 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../mod/profile_photo.php:206 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../mod/photos.php:650 ../../mod/profile_photo.php:241 -#: ../../mod/wall_upload.php:84 -msgid "Image upload failed." -msgstr "Caricamento immagine fallito." +#: ../../mod/profile_photo.php:206 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../mod/photos.php:733 ../../mod/community.php:9 -#: ../../mod/dfrn_request.php:591 ../../mod/viewcontacts.php:16 -#: ../../mod/display.php:7 ../../mod/search.php:13 ../../mod/directory.php:20 -msgid "Public access denied." -msgstr "Accesso pubblico non consentito." +#: ../../mod/profile_photo.php:219 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../mod/photos.php:743 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../mod/profile_photo.php:220 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Sistema il ritaglio dell'imagine per una visualizzazione ottimale." -#: ../../mod/photos.php:820 -msgid "Access to this item is restricted." -msgstr "L'accesso a questo elemento è limitato." +#: ../../mod/profile_photo.php:221 +msgid "Done Editing" +msgstr "Fatto" -#: ../../mod/photos.php:884 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../mod/profile_photo.php:249 +msgid "Image uploaded successfully." +msgstr "Immagine caricata con successo." -#: ../../mod/photos.php:887 ../../mod/photos.php:930 -msgid "New album name: " -msgstr "Nome nuovo album: " +#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179 +#, php-format +msgid "Welcome to %s" +msgstr "Benvenuto su %s" -#: ../../mod/photos.php:888 -msgid "or existing album name: " -msgstr "o nome di un album esistente: " +#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 +#: ../../mod/update_profile.php:41 ../../mod/update_notes.php:41 +msgid "[Embedded content - reload page to view]" +msgstr "[Contenuto incorporato - ricarica la pagina per vederlo]" -#: ../../mod/photos.php:890 ../../mod/photos.php:1140 -msgid "Permissions" -msgstr "Permessi" +#: ../../mod/wall_attach.php:57 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera il limite di dimensione di %d" -#: ../../mod/photos.php:945 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98 +msgid "File upload failed." +msgstr "Caricamento del file non riuscito." -#: ../../mod/photos.php:955 ../../mod/photos.php:1362 -msgid "View Photo" -msgstr "Vedi foto" +#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35 +msgid "Friend Suggestions" +msgstr "Contatti suggeriti" -#: ../../mod/photos.php:984 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../mod/suggest.php:42 +msgid "" +"No suggestions. This works best when you have more than one contact/friend." +msgstr "Nessun suggerimento. Funziona meglio quando si ha più di un contatto." -#: ../../mod/photos.php:1033 -msgid "Edit photo" -msgstr "Modifica foto" +#: ../../mod/suggest.php:55 +msgid "Ignore/Hide" +msgstr "Ignora / Nascondi" -#: ../../mod/photos.php:1034 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../mod/regmod.php:52 ../../mod/register.php:369 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli registrazione per %s" -#: ../../mod/photos.php:1040 ../../include/conversation.php:342 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../mod/regmod.php:54 ../../mod/register.php:371 +#: ../../mod/register.php:425 ../../mod/dfrn_request.php:553 +#: ../../mod/lostpass.php:44 ../../mod/lostpass.php:106 +#: ../../mod/dfrn_confirm.php:703 ../../include/items.php:1767 +#: ../../include/items.php:2114 ../../include/items.php:2440 +msgid "Administrator" +msgstr "Amministratore" -#: ../../mod/photos.php:1051 -msgid "View Full Size" -msgstr "Vedi dimensione intera" +#: ../../mod/regmod.php:61 +msgid "Account approved." +msgstr "Account approvato." -#: ../../mod/photos.php:1119 -msgid "Tags: " -msgstr "Tag: " +#: ../../mod/regmod.php:93 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../mod/photos.php:1122 -msgid "[Remove any tag]" -msgstr "[Rimuovi tutti i tag]" +#: ../../mod/regmod.php:105 +msgid "Please login." +msgstr "Accedi." -#: ../../mod/photos.php:1133 -msgid "New album name" -msgstr "Nuovo nome album" +#: ../../mod/profiles.php:21 ../../mod/profiles.php:239 +#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../mod/photos.php:1136 -msgid "Caption" -msgstr "Didascalia" +#: ../../mod/profiles.php:28 +msgid "Profile Name is required." +msgstr "Il Nome Profilo è richiesto ." -#: ../../mod/photos.php:1138 -msgid "Add a Tag" -msgstr "Aggiungi un tag" +#: ../../mod/profiles.php:198 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../mod/photos.php:1142 -msgid "" -"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -msgstr "" -"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" +#: ../../mod/profiles.php:256 +msgid "Profile deleted." +msgstr "Profilo elminato." -#: ../../mod/photos.php:1162 ../../include/conversation.php:390 -msgid "I like this (toggle)" -msgstr "Mi piace questo (metti/togli)" +#: ../../mod/profiles.php:272 ../../mod/profiles.php:303 +msgid "Profile-" +msgstr "Profilo-" -#: ../../mod/photos.php:1163 ../../include/conversation.php:391 -msgid "I don't like this (toggle)" -msgstr "Non mi piace questo (metti/togli)" +#: ../../mod/profiles.php:291 ../../mod/profiles.php:330 +msgid "New profile created." +msgstr "Nuovo profilo creato." -#: ../../mod/photos.php:1164 ../../include/conversation.php:392 -#: ../../include/conversation.php:746 -msgid "Share" -msgstr "Condividi" +#: ../../mod/profiles.php:309 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il plrofilo." -#: ../../mod/photos.php:1165 ../../mod/editpost.php:99 -#: ../../mod/message.php:190 ../../mod/message.php:324 -#: ../../include/conversation.php:393 ../../include/conversation.php:756 -msgid "Please wait" -msgstr "Attendi" +#: ../../mod/profiles.php:356 +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/photos.php:1181 ../../mod/photos.php:1220 -#: ../../mod/photos.php:1251 ../../include/conversation.php:406 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../mod/profiles.php:357 ../../mod/settings.php:629 +#: ../../mod/settings.php:635 ../../mod/settings.php:643 +#: ../../mod/settings.php:647 ../../mod/settings.php:652 +#: ../../mod/settings.php:658 ../../mod/register.php:500 +#: ../../mod/dfrn_request.php:645 ../../mod/api.php:105 +msgid "Yes" +msgstr "Si" -#: ../../mod/photos.php:1183 ../../mod/photos.php:1222 -#: ../../mod/photos.php:1253 ../../include/conversation.php:408 -#: ../../boot.php:411 -msgid "Comment" -msgstr "Commento" +#: ../../mod/profiles.php:358 ../../mod/settings.php:629 +#: ../../mod/settings.php:635 ../../mod/settings.php:643 +#: ../../mod/settings.php:647 ../../mod/settings.php:652 +#: ../../mod/settings.php:658 ../../mod/register.php:501 +#: ../../mod/dfrn_request.php:646 ../../mod/api.php:106 +msgid "No" +msgstr "No" -#: ../../mod/photos.php:1281 ../../mod/group.php:154 ../../mod/admin.php:468 -#: ../../include/conversation.php:427 -msgid "Delete" -msgstr "Cancella" +#: ../../mod/profiles.php:374 +msgid "Edit Profile Details" +msgstr "Modifica i Dettagli del Profilo" -#: ../../mod/photos.php:1349 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../mod/profiles.php:376 +msgid "View this profile" +msgstr "Visualizza questo profilo" -#: ../../mod/photos.php:1353 -msgid "Upload New Photos" -msgstr "Carica nuova foto" +#: ../../mod/profiles.php:377 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../mod/photos.php:1366 -msgid "View Album" -msgstr "Vedi album" +#: ../../mod/profiles.php:378 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../mod/community.php:14 -msgid "Not available." -msgstr "Non disponibile." +#: ../../mod/profiles.php:379 +msgid "Delete this profile" +msgstr "Cancella questo profilo" -#: ../../mod/community.php:26 ../../include/nav.php:79 -msgid "Community" -msgstr "Comunità" +#: ../../mod/profiles.php:380 +msgid "Profile Name:" +msgstr "Nome del profilo:" -#: ../../mod/community.php:56 ../../mod/search.php:65 -msgid "No results." -msgstr "Nessun risultato." +#: ../../mod/profiles.php:381 +msgid "Your Full Name:" +msgstr "Il tuo nome completo:" -#: ../../mod/community.php:83 ../../mod/network.php:302 -#: ../../mod/register.php:504 ../../mod/profile.php:241 -#: ../../mod/display.php:117 -msgid "" -"Shared content is covered by the Creative Commons " -"Attribution 3.0 license." -msgstr "" -"Il contenuto in comune è coperto dalla licenza Creative Commons" -" Attribuzione 3.0." +#: ../../mod/profiles.php:382 +msgid "Title/Description:" +msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../mod/profiles.php:383 +msgid "Your Gender:" +msgstr "Il tuo sesso:" -#: ../../mod/editpost.php:32 -msgid "Edit post" -msgstr "Modifica messaggio" +#: ../../mod/profiles.php:384 +#, php-format +msgid "Birthday (%s):" +msgstr "Compleanno (%s)" -#: ../../mod/editpost.php:75 ../../include/conversation.php:732 -msgid "Post to Email" -msgstr "Invia a Email" +#: ../../mod/profiles.php:385 +msgid "Street Address:" +msgstr "Indirizzo:" -#: ../../mod/editpost.php:90 ../../include/group.php:171 -#: ../../include/group.php:172 ../../include/conversation.php:417 -msgid "Edit" -msgstr "Modifica" +#: ../../mod/profiles.php:386 +msgid "Locality/City:" +msgstr "Località/Città:" -#: ../../mod/editpost.php:91 ../../mod/message.php:188 -#: ../../mod/message.php:322 ../../include/conversation.php:747 -msgid "Upload photo" -msgstr "Carica foto" +#: ../../mod/profiles.php:387 +msgid "Postal/Zip Code:" +msgstr "CAP:" -#: ../../mod/editpost.php:92 ../../include/conversation.php:748 -msgid "Attach file" -msgstr "Allega file" +#: ../../mod/profiles.php:388 +msgid "Country:" +msgstr "Nazione:" -#: ../../mod/editpost.php:93 ../../mod/message.php:189 -#: ../../mod/message.php:323 ../../include/conversation.php:749 -msgid "Insert web link" -msgstr "Inserisci link" +#: ../../mod/profiles.php:389 +msgid "Region/State:" +msgstr "Regione/Stato:" -#: ../../mod/editpost.php:94 ../../include/conversation.php:750 -msgid "Insert YouTube video" -msgstr "Inserisci video da YouTube" +#: ../../mod/profiles.php:390 +msgid " Marital Status:" +msgstr " Stato sentimentale:" -#: ../../mod/editpost.php:95 ../../include/conversation.php:751 -msgid "Insert Vorbis [.ogg] video" -msgstr "Inserisci video Theora [.ogg]" +#: ../../mod/profiles.php:391 +msgid "Who: (if applicable)" +msgstr "Con chi: (se possibile)" -#: ../../mod/editpost.php:96 ../../include/conversation.php:752 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Inserisci audio Vorbis [.ogg]" +#: ../../mod/profiles.php:392 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../mod/editpost.php:97 ../../include/conversation.php:753 -msgid "Set your location" -msgstr "Imposta la tua posizione" +#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43 +msgid "Sexual Preference:" +msgstr "Preferenza sessuale:" -#: ../../mod/editpost.php:98 ../../include/conversation.php:754 -msgid "Clear browser location" -msgstr "Cancella la tua posizione data dal browser" +#: ../../mod/profiles.php:394 +msgid "Homepage URL:" +msgstr "Indirizzo homepage:" -#: ../../mod/editpost.php:100 ../../include/conversation.php:757 -msgid "Permission settings" -msgstr "Impostazione permessi" +#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../mod/editpost.php:108 ../../include/conversation.php:765 -msgid "CC: email addresses" -msgstr "CC: indirizzi email" +#: ../../mod/profiles.php:396 +msgid "Religious Views:" +msgstr "Orientamento religioso:" -#: ../../mod/editpost.php:109 ../../include/conversation.php:766 -msgid "Public post" -msgstr "Messaggio pubblico" +#: ../../mod/profiles.php:397 +msgid "Public Keywords:" +msgstr "Parole chiave pubbliche:" -#: ../../mod/editpost.php:111 ../../include/conversation.php:768 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Esempio: bob@example.com, mary@example.com" +#: ../../mod/profiles.php:398 +msgid "Private Keywords:" +msgstr "Parole chiave private:" -#: ../../mod/dfrn_request.php:96 -msgid "This introduction has already been accepted." -msgstr "Questa presentazione è già stata accettata." +#: ../../mod/profiles.php:399 +msgid "Example: fishing photography software" +msgstr "Esempio: pesca fotografia programmazione" -#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351 -msgid "Profile location is not valid or does not contain profile information." +#: ../../mod/profiles.php:400 +msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -"La posizione del profilo non è valida o non contiene informazioni di " -"profilo." +"(Utilizzato per suggerire potenziali amici, può essere visto da altri)" -#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:356 -msgid "Warning: profile location has no identifiable owner name." -msgstr "" -"Attenzione: la posizione del profilo non ha un identificabile proprietario." +#: ../../mod/profiles.php:401 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)" -#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:358 -msgid "Warning: profile location has no profile photo." -msgstr "Attenzione: la posizione del profilo non ha una foto." +#: ../../mod/profiles.php:402 +msgid "Tell us about yourself..." +msgstr "Racconta di te..." -#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361 -#, 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 nella posizione data" -msgstr[1] "%d parametri richiesti non sono stati trovati nella posizione data" +#: ../../mod/profiles.php:403 +msgid "Hobbies/Interests" +msgstr "Hobbie/Interessi" -#: ../../mod/dfrn_request.php:168 -msgid "Introduction complete." -msgstr "Presentazione completa." +#: ../../mod/profiles.php:404 +msgid "Contact information and Social Networks" +msgstr "Informazioni su contatti e Social network" -#: ../../mod/dfrn_request.php:192 -msgid "Unrecoverable protocol error." -msgstr "Errore di protocollo non recuperabile." +#: ../../mod/profiles.php:405 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../mod/dfrn_request.php:220 -msgid "Profile unavailable." -msgstr "Profilo non disponibile." +#: ../../mod/profiles.php:406 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../mod/dfrn_request.php:245 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s ha ricevuto troppe richieste di connessione per oggi." +#: ../../mod/profiles.php:407 +msgid "Television" +msgstr "Televisione" -#: ../../mod/dfrn_request.php:246 -msgid "Spam protection measures have been invoked." -msgstr "Sono state attivate le misure di protezione contro lo spam." +#: ../../mod/profiles.php:408 +msgid "Film/dance/culture/entertainment" +msgstr "Film/danza/cultura/intrattenimento" -#: ../../mod/dfrn_request.php:247 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Gli amici sono pregati di riprovare tra 24 ore." +#: ../../mod/profiles.php:409 +msgid "Love/romance" +msgstr "Amore/romanticismo" -#: ../../mod/dfrn_request.php:277 -msgid "Invalid locator" -msgstr "Invalid locator" +#: ../../mod/profiles.php:410 +msgid "Work/employment" +msgstr "Lavoro/impiego" -#: ../../mod/dfrn_request.php:296 -msgid "Unable to resolve your name at the provided location." -msgstr "Impossibile risolvere il tuo nome nella posizione indicata." +#: ../../mod/profiles.php:411 +msgid "School/education" +msgstr "Scuola/educazione" -#: ../../mod/dfrn_request.php:309 -msgid "You have already introduced yourself here." -msgstr "Ti sei già presentato qui." +#: ../../mod/profiles.php:416 +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/dfrn_request.php:313 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Sembra che tu sia già amico di %s." +#: ../../mod/profiles.php:426 ../../mod/directory.php:122 +msgid "Age: " +msgstr "Età : " -#: ../../mod/dfrn_request.php:334 -msgid "Invalid profile URL." -msgstr "Indirizzo profilo invalido." +#: ../../mod/profiles.php:461 +msgid "Edit/Manage Profiles" +msgstr "Modifica / Gestisci profili" -#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:20 -msgid "Disallowed profile URL." -msgstr "Indirizzo profilo non permesso." +#: ../../mod/notice.php:15 ../../mod/display.php:28 ../../mod/display.php:115 +#: ../../mod/viewsrc.php:15 ../../mod/admin.php:111 ../../mod/admin.php:502 +#: ../../include/items.php:2786 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:116 -msgid "Failed to update contact record." -msgstr "Errore aggiornando il contatto." +#: ../../mod/settings.php:9 ../../mod/photos.php:62 +msgid "everybody" +msgstr "tutti" -#: ../../mod/dfrn_request.php:427 -msgid "Your introduction has been sent." -msgstr "La tua presentazione è stata inviata." +#: ../../mod/settings.php:67 +msgid "Missing some important data!" +msgstr "Mancano alcuni dati importanti!" -#: ../../mod/dfrn_request.php:481 -msgid "Please login to confirm introduction." -msgstr "Accedi per confermare la presentazione." +#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62 +msgid "Update" +msgstr "Aggiorna" -#: ../../mod/dfrn_request.php:495 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "" -"Accesso con identà incorretta. Accedi a questo profilo." +#: ../../mod/settings.php:165 +msgid "Failed to connect with email account using the settings provided." +msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: ../../mod/dfrn_request.php:507 -#, php-format -msgid "Welcome home %s." -msgstr "Bentornato a casa %s." +#: ../../mod/settings.php:170 +msgid "Email settings updated." +msgstr "Impostazioni e-mail aggiornate." -#: ../../mod/dfrn_request.php:508 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Conferma la tua richiesta di connessione con %s." +#: ../../mod/settings.php:188 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Passoword non cambiata." -#: ../../mod/dfrn_request.php:509 -msgid "Confirm" -msgstr "Conferma" +#: ../../mod/settings.php:193 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Password vuote non sono consentite. Password non cambiata." -#: ../../mod/dfrn_request.php:542 ../../include/items.php:1519 -msgid "[Name Withheld]" -msgstr "[Nome Nascosto]" +#: ../../mod/settings.php:204 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../mod/dfrn_request.php:549 -msgid "Introduction received at " -msgstr "Introduzione ricevuta su " +#: ../../mod/settings.php:206 +msgid "Password update failed. Please try again." +msgstr "Aggiornamento password fallito. Prova ancora." -#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:44 -#: ../../mod/lostpass.php:106 ../../mod/register.php:369 -#: ../../mod/register.php:423 ../../mod/regmod.php:54 -#: ../../mod/dfrn_notify.php:291 ../../mod/dfrn_notify.php:547 -#: ../../mod/dfrn_confirm.php:674 ../../include/items.php:1528 -msgid "Administrator" -msgstr "Amministratore" +#: ../../mod/settings.php:253 +msgid " Please use a shorter name." +msgstr " Usa un nome più corto." -#: ../../mod/dfrn_request.php:630 -msgid "Friend/Connection Request" -msgstr "Richieste di Amicizia/Connessione" +#: ../../mod/settings.php:255 +msgid " Name too short." +msgstr " Nome troppo corto." -#: ../../mod/dfrn_request.php:631 -msgid "" -"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, " -"testuser@identi.ca" -msgstr "" -"Esempi: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, " -"testuser@identi.ca" +#: ../../mod/settings.php:261 +msgid " Not valid email." +msgstr " Email non valida." -#: ../../mod/dfrn_request.php:632 -msgid "Please answer the following:" -msgstr "Rispondi al seguente:" +#: ../../mod/settings.php:263 +msgid " Cannot change to that email." +msgstr "Non puoi usare quella email." -#: ../../mod/dfrn_request.php:633 -#, php-format -msgid "Does %s know you?" -msgstr "%s ti conosce?" +#: ../../mod/settings.php:323 ../../addon/twitter/twitter.php:294 +#: ../../addon/impressum/impressum.php:64 +#: ../../addon/facebook/facebook.php:320 ../../addon/piwik/piwik.php:94 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:415 -#: ../../mod/settings.php:421 ../../mod/settings.php:429 -#: ../../mod/settings.php:433 ../../mod/register.php:498 -#: ../../mod/profiles.php:354 -msgid "Yes" -msgstr "Si" +#: ../../mod/settings.php:382 ../../include/nav.php:128 +msgid "Account settings" +msgstr "Parametri account" -#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:415 -#: ../../mod/settings.php:421 ../../mod/settings.php:429 -#: ../../mod/settings.php:433 ../../mod/register.php:499 -#: ../../mod/profiles.php:355 -msgid "No" -msgstr "No" +#: ../../mod/settings.php:387 +msgid "Connector settings" +msgstr "Impostazioni connettori" -#: ../../mod/dfrn_request.php:636 -msgid "Add a personal note:" -msgstr "Aggiungi una nota personale:" +#: ../../mod/settings.php:392 +msgid "Plugin settings" +msgstr "Impostazioni plugin" -#: ../../mod/dfrn_request.php:637 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"social networks:" -msgstr "" -"Inserisci il tuo \"Indirizzo Identità\" da uno dei social network " -"supportati:" +#: ../../mod/settings.php:397 +msgid "Connections" +msgstr "Connessioni" -#: ../../mod/dfrn_request.php:638 -msgid "Friendika" -msgstr "Friendika" +#: ../../mod/settings.php:402 +msgid "Export personal data" +msgstr "Esporta dati personali" -#: ../../mod/dfrn_request.php:639 -msgid "StatusNet/Federated Social Web" -msgstr "StatusNet/Federated Social Web" +#: ../../mod/settings.php:419 ../../mod/settings.php:445 +#: ../../mod/settings.php:478 +msgid "Add application" +msgstr "Aggiungi applicazione" -#: ../../mod/dfrn_request.php:640 -msgid "Private (secure) network" -msgstr "Network (sicuro) privato" +#: ../../mod/settings.php:421 ../../mod/settings.php:447 +#: ../../mod/dfrn_request.php:655 ../../mod/tagrm.php:11 +#: ../../mod/tagrm.php:94 ../../addon/js_upload/js_upload.php:45 +msgid "Cancel" +msgstr "Annulla" -#: ../../mod/dfrn_request.php:641 -msgid "Public (insecure) network" -msgstr "Network (insicuro) pubblico" +#: ../../mod/settings.php:422 ../../mod/settings.php:448 +#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473 +msgid "Name" +msgstr "Nome" -#: ../../mod/dfrn_request.php:642 -msgid "Your Identity Address:" -msgstr "Il tuo Indirizzo Identità:" +#: ../../mod/settings.php:423 ../../mod/settings.php:449 +#: ../../addon/statusnet/statusnet.php:480 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/dfrn_request.php:643 -msgid "Submit Request" -msgstr "Invia richiesta" +#: ../../mod/settings.php:424 ../../mod/settings.php:450 +#: ../../addon/statusnet/statusnet.php:479 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/install.php:34 -msgid "Could not create/connect to database." -msgstr "Impossibile creare/collegarsi al database." +#: ../../mod/settings.php:425 ../../mod/settings.php:451 +msgid "Redirect" +msgstr "Redirect" -#: ../../mod/install.php:39 -msgid "Connected to database." -msgstr "Collegato al database." +#: ../../mod/settings.php:426 ../../mod/settings.php:452 +msgid "Icon url" +msgstr "Url icona" -#: ../../mod/install.php:75 -msgid "Proceed with Installation" -msgstr "Continua con l'installazione" +#: ../../mod/settings.php:437 +msgid "You can't edit this application." +msgstr "Non puoi modificare questa applicazione." -#: ../../mod/install.php:77 -msgid "Your Friendika site database has been installed." -msgstr "Il database del tuo sito Friendika è stato installato." +#: ../../mod/settings.php:477 +msgid "Connected Apps" +msgstr "Applicazioni Collegate" -#: ../../mod/install.php:78 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "" -"IMPORTANTE: Devi impostare manualmente un operazione pianificata per il " -"poller" +#: ../../mod/settings.php:479 ../../mod/editpost.php:90 +#: ../../include/conversation.php:441 ../../include/group.php:190 +msgid "Edit" +msgstr "Modifica" -#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 -msgid "Please see the file \"INSTALL.txt\"." -msgstr "Guarda il file \"INSTALL.txt\"." +#: ../../mod/settings.php:480 ../../mod/photos.php:1300 +#: ../../mod/admin.php:468 ../../mod/group.php:154 +#: ../../include/conversation.php:211 ../../include/conversation.php:454 +msgid "Delete" +msgstr "Cancella" -#: ../../mod/install.php:81 -msgid "Proceed to registration" -msgstr "Continua con la registrazione" +#: ../../mod/settings.php:481 +msgid "Client key starts with" +msgstr "Chiave del client inizia con" -#: ../../mod/install.php:87 -msgid "Database import failed." -msgstr "Importazione database fallita." +#: ../../mod/settings.php:482 +msgid "No name" +msgstr "Nessun nome" -#: ../../mod/install.php:88 +#: ../../mod/settings.php:483 +msgid "Remove authorization" +msgstr "Rimuovi l'autorizzazione" + +#: ../../mod/settings.php:495 +msgid "No Plugin settings configured" +msgstr "Nessun Plugin ha delle configurazioni che puoi modificare" + +#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122 +msgid "Plugin Settings" +msgstr "Impostazioni Plugin" + +#: ../../mod/settings.php:515 ../../mod/settings.php:516 +#, php-format +msgid "Built-in support for %s connectivity is %s" +msgstr "Il supporto integrato per la connettività con %s è %s" + +#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651 +#: ../../include/contact_selectors.php:78 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../mod/settings.php:515 ../../mod/settings.php:516 +msgid "enabled" +msgstr "abilitato" + +#: ../../mod/settings.php:515 ../../mod/settings.php:516 +msgid "disabled" +msgstr "disabilitato" + +#: ../../mod/settings.php:516 +msgid "StatusNet" +msgstr "StatusNet" + +#: ../../mod/settings.php:542 +msgid "Connector Settings" +msgstr "Impostazioni Connettore" + +#: ../../mod/settings.php:548 +msgid "Email/Mailbox Setup" +msgstr "Impostazioni Email" + +#: ../../mod/settings.php:549 msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." +"If you wish to communicate with email contacts using this service " +"(optional), please specify how to connect to your mailbox." msgstr "" -"Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin" -" o mysql" +"Se vuoi comunicare con i contatti email usando questo servizio, specifica " +"come collegarti alla tua casella di posta. (opzionale)" -#: ../../mod/install.php:101 -msgid "Welcome to Friendika." -msgstr "Benvenuto su Friendika." +#: ../../mod/settings.php:550 +msgid "Last successful email check:" +msgstr "Ultimo controllo email eseguito con successo:" -#: ../../mod/install.php:124 -msgid "Friendika Social Network" -msgstr "Friendika Social Network" +#: ../../mod/settings.php:551 +msgid "Email access is disabled on this site." +msgstr "L'accesso Email è disabilitato su questo sito." -#: ../../mod/install.php:125 -msgid "Installation" -msgstr "Installazione" +#: ../../mod/settings.php:552 +msgid "IMAP server name:" +msgstr "Nome server IMAP:" -#: ../../mod/install.php:126 -msgid "" -"In order to install Friendika we need to know how to connect to your " -"database." +#: ../../mod/settings.php:553 +msgid "IMAP port:" +msgstr "Porta IMAP:" + +#: ../../mod/settings.php:554 +msgid "Security:" +msgstr "Sicurezza:" + +#: ../../mod/settings.php:554 +msgid "None" +msgstr "Nessuna" + +#: ../../mod/settings.php:555 +msgid "Email login name:" +msgstr "Nome utente Email:" + +#: ../../mod/settings.php:556 +msgid "Email password:" +msgstr "Password Email:" + +#: ../../mod/settings.php:557 +msgid "Reply-to address:" +msgstr "Indirizzo di risposta:" + +#: ../../mod/settings.php:558 +msgid "Send public posts to all email contacts:" +msgstr "Invia i messaggi pubblici ai contatti email:" + +#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443 +msgid "Normal Account" +msgstr "Account normale" + +#: ../../mod/settings.php:597 +msgid "This account is a normal personal profile" +msgstr "Questo account è un normale profilo personale" + +#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444 +msgid "Soapbox Account" +msgstr "Account Palco" + +#: ../../mod/settings.php:601 +msgid "Automatically approve all connection/friend requests as read-only fans" msgstr "" -"Per instalare Friendika dobbiamo sapere come collegarci al tuo database." +"Accetta automaticamente le richieste di connessione/amicizia come fan che " +"possono solamente leggere" -#: ../../mod/install.php:127 +#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445 +msgid "Community/Celebrity Account" +msgstr "Account Celebrità/Comunità" + +#: ../../mod/settings.php:605 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +"Automatically approve all connection/friend requests as read-write fans" msgstr "" -"Contatta il tuo fornitore di hosting o l'amministratore del sito se hai " -"domande su questi settaggi." +"Accetta automaticamente le richieste di connessione/amicizia come fan che " +"possono scrivere in bacheca" -#: ../../mod/install.php:128 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446 +msgid "Automatic Friend Account" +msgstr "Account Amico Automatico" + +#: ../../mod/settings.php:609 +msgid "Automatically approve all connection/friend requests as friends" msgstr "" -"Il database dovrà già esistere. Se non esiste, crealo prima di continuare." +"Accetta automaticamente le richieste di connessione/amicizia come amici" -#: ../../mod/install.php:129 -msgid "Database Server Name" -msgstr "Nome Database Server" +#: ../../mod/settings.php:619 +msgid "OpenID:" +msgstr "OpenID:" -#: ../../mod/install.php:130 -msgid "Database Login Name" -msgstr "Nome utente Database" +#: ../../mod/settings.php:619 +msgid "(Optional) Allow this OpenID to login to this account." +msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: ../../mod/install.php:131 -msgid "Database Login Password" -msgstr "Password utente Database" +#: ../../mod/settings.php:629 +msgid "Publish your default profile in your local site directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" -#: ../../mod/install.php:132 -msgid "Database Name" -msgstr "Nome Database" +#: ../../mod/settings.php:635 +msgid "Publish your default profile in the global social directory?" +msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" -#: ../../mod/install.php:133 -msgid "Please select a default timezone for your website" -msgstr "Seleziona un fuso orario di default per il tuo sito web" +#: ../../mod/settings.php:643 +msgid "Hide your contact/friend list from viewers of your default profile?" +msgstr "" +"Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo " +"predefinito" -#: ../../mod/install.php:134 -msgid "" -"Site administrator email address. Your account email address must match this" -" in order to use the web admin panel." +#: ../../mod/settings.php:647 +msgid "Hide profile details and all your messages from unknown viewers?" msgstr "" -"Indirizzo email dell'amministratore del sito. L'email del tuo account deve " -"corrispodere a questa, per poter utilizzare il pannello di amministrazione" +"Nascondi i dettagli del profilo e tutti i tuoi messaggi ai visitatori " +"sconosciuti?" -#: ../../mod/install.php:153 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../mod/settings.php:652 +msgid "Allow friends to post to your profile page?" +msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" + +#: ../../mod/settings.php:658 +msgid "Allow friends to tag your posts?" +msgstr "Permetti agli amici di taggare i tuoi messaggi?" + +#: ../../mod/settings.php:667 +msgid "Profile is not published." +msgstr "Il profilo non è pubblicato." + +#: ../../mod/settings.php:691 +msgid "Your Identity Address is" +msgstr "Il tuo Indirizzo Identità è" + +#: ../../mod/settings.php:705 +msgid "Account Settings" +msgstr "Impostazioni Account" + +#: ../../mod/settings.php:713 +msgid "Password Settings" +msgstr "Impostazioni Password" + +#: ../../mod/settings.php:714 +msgid "New Password:" +msgstr "Nuova Password:" + +#: ../../mod/settings.php:715 +msgid "Confirm:" +msgstr "Conferma:" + +#: ../../mod/settings.php:715 +msgid "Leave password fields blank unless changing" msgstr "" -"Non riesco a trovare una versione da riga di comando di PHP nel PATH del " -"server web" +"Lascia questi campi in bianco per non effettuare variazioni alla password" -#: ../../mod/install.php:154 -msgid "" -"This is required. Please adjust the configuration file .htconfig.php " -"accordingly." -msgstr "E' richiesto. Aggiorna il file .htconfig.php di conseguenza." +#: ../../mod/settings.php:719 +msgid "Basic Settings" +msgstr "Impostazioni base" -#: ../../mod/install.php:161 +#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../mod/settings.php:721 +msgid "Email Address:" +msgstr "Indirizzo Email:" + +#: ../../mod/settings.php:722 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../mod/settings.php:723 +msgid "Default Post Location:" +msgstr "Località di default per l'invio:" + +#: ../../mod/settings.php:724 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../mod/settings.php:725 +msgid "Display Theme:" +msgstr "Tema:" + +#: ../../mod/settings.php:729 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di Sicurezza e Privacy" + +#: ../../mod/settings.php:731 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo di richieste di amicizia per giorno:" + +#: ../../mod/settings.php:731 +msgid "(to prevent spam abuse)" +msgstr "(per prevenire lo spam)" + +#: ../../mod/settings.php:732 +msgid "Default Post Permissions" +msgstr "Permessi di default per i messaggi" + +#: ../../mod/settings.php:733 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../mod/settings.php:739 +msgid "Automatically expire posts after days:" +msgstr "Cancella automaticamente i messaggi dopo giorni:" + +#: ../../mod/settings.php:739 +msgid "If empty, posts will not expire. Expired posts will be deleted" +msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." + +#: ../../mod/settings.php:748 +msgid "Notification Settings" +msgstr "Impostazioni Notifiche" + +#: ../../mod/settings.php:749 +msgid "Send a notification email when:" +msgstr "Invia una mail di notifica quando:" + +#: ../../mod/settings.php:750 +msgid "You receive an introduction" +msgstr "Ricevi una presentazione" + +#: ../../mod/settings.php:751 +msgid "Your introductions are confirmed" +msgstr "Le tue presentazioni sono confermate" + +#: ../../mod/settings.php:752 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla bacheca del tuo profilo" + +#: ../../mod/settings.php:753 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento a un tuo messaggio" + +#: ../../mod/settings.php:754 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../mod/settings.php:758 +msgid "Advanced Page Settings" +msgstr "Impostazioni Avanzate Account" + +#: ../../mod/search.php:13 ../../mod/network.php:75 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../mod/search.php:16 ../../mod/network.php:81 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../mod/search.php:71 ../../mod/photos.php:752 ../../mod/display.php:7 +#: ../../mod/dfrn_request.php:594 ../../mod/directory.php:31 +#: ../../mod/viewcontacts.php:16 ../../mod/community.php:16 +msgid "Public access denied." +msgstr "Accesso pubblico non consentito." + +#: ../../mod/search.php:83 +msgid "Search This Site" +msgstr "Cerca nel sito" + +#: ../../mod/search.php:125 ../../mod/community.php:60 +msgid "No results." +msgstr "Nessun risultato." + +#: ../../mod/photos.php:42 +msgid "Photo Albums" +msgstr "Album Foto" + +#: ../../mod/photos.php:50 ../../mod/photos.php:144 ../../mod/photos.php:866 +#: ../../mod/photos.php:936 ../../mod/photos.php:951 ../../mod/photos.php:1351 +#: ../../mod/photos.php:1363 ../../addon/communityhome/communityhome.php:110 +msgid "Contact Photos" +msgstr "Foto dei contatti" + +#: ../../mod/photos.php:133 +msgid "Contact information unavailable" +msgstr "Informazione sul contatto non disponibile" + +#: ../../mod/photos.php:154 +msgid "Album not found." +msgstr "Album non trovato." + +#: ../../mod/photos.php:172 ../../mod/photos.php:945 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../mod/photos.php:235 ../../mod/photos.php:1164 +msgid "Delete Photo" +msgstr "Elimina foto" + +#: ../../mod/photos.php:522 +msgid "was tagged in a" +msgstr "è stato taggato in" + +#: ../../mod/photos.php:522 ../../mod/tagger.php:70 ../../mod/like.php:127 +#: ../../addon/communityhome/communityhome.php:163 +#: ../../include/conversation.php:31 ../../include/diaspora.php:1211 +msgid "photo" +msgstr "foto" + +#: ../../mod/photos.php:522 +msgid "by" +msgstr "da" + +#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312 +msgid "Image exceeds size limit of " +msgstr "L'immagine supera il limite di dimensione di " + +#: ../../mod/photos.php:633 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../mod/photos.php:762 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" + +#: ../../mod/photos.php:839 +msgid "Access to this item is restricted." +msgstr "L'accesso a questo elemento è limitato." + +#: ../../mod/photos.php:893 +msgid "Upload Photos" +msgstr "Carica foto" + +#: ../../mod/photos.php:896 ../../mod/photos.php:940 +msgid "New album name: " +msgstr "Nome nuovo album: " + +#: ../../mod/photos.php:897 +msgid "or existing album name: " +msgstr "o nome di un album esistente: " + +#: ../../mod/photos.php:898 +msgid "Do not show a status post for this upload" +msgstr "Non creare un post per questo upload" + +#: ../../mod/photos.php:900 ../../mod/photos.php:1159 +msgid "Permissions" +msgstr "Permessi" + +#: ../../mod/photos.php:955 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../mod/photos.php:965 ../../mod/photos.php:1381 +msgid "View Photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1000 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." + +#: ../../mod/photos.php:1002 +msgid "Photo not available" +msgstr "Foto non disponibile" + +#: ../../mod/photos.php:1052 +msgid "View photo" +msgstr "Vedi foto" + +#: ../../mod/photos.php:1052 +msgid "Edit photo" +msgstr "Modifica foto" + +#: ../../mod/photos.php:1053 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../mod/photos.php:1059 ../../include/conversation.php:369 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../mod/photos.php:1070 +msgid "View Full Size" +msgstr "Vedi dimensione intera" + +#: ../../mod/photos.php:1138 +msgid "Tags: " +msgstr "Tag: " + +#: ../../mod/photos.php:1141 +msgid "[Remove any tag]" +msgstr "[Rimuovi tutti i tag]" + +#: ../../mod/photos.php:1152 +msgid "New album name" +msgstr "Nuovo nome album" + +#: ../../mod/photos.php:1155 +msgid "Caption" +msgstr "Didascalia" + +#: ../../mod/photos.php:1157 +msgid "Add a Tag" +msgstr "Aggiungi un tag" + +#: ../../mod/photos.php:1161 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "" -"La versione da riga di comando di PHP nel sistema non ha abilitato " -"\"register_argc_argv\"." +"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: ../../mod/install.php:162 -msgid "This is required for message delivery to work." -msgstr "Ciò è richiesto per far funzionare la consegna dei messaggi." +#: ../../mod/photos.php:1181 ../../include/conversation.php:416 +msgid "I like this (toggle)" +msgstr "Mi piace questo (metti/togli)" -#: ../../mod/install.php:184 +#: ../../mod/photos.php:1182 ../../include/conversation.php:417 +msgid "I don't like this (toggle)" +msgstr "Non mi piace questo (metti/togli)" + +#: ../../mod/photos.php:1183 ../../include/conversation.php:814 +msgid "Share" +msgstr "Condividi" + +#: ../../mod/photos.php:1184 ../../mod/editpost.php:99 +#: ../../mod/message.php:137 ../../mod/message.php:270 +#: ../../include/conversation.php:251 ../../include/conversation.php:578 +#: ../../include/conversation.php:823 +msgid "Please wait" +msgstr "Attendi" + +#: ../../mod/photos.php:1200 ../../mod/photos.php:1239 +#: ../../mod/photos.php:1270 ../../include/conversation.php:431 +msgid "This is you" +msgstr "Questo sei tu" + +#: ../../mod/photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" + +#: ../../mod/photos.php:1372 +msgid "Upload New Photos" +msgstr "Carica nuova foto" + +#: ../../mod/photos.php:1385 +msgid "View Album" +msgstr "Vedi album" + +#: ../../mod/newmember.php:6 +msgid "Welcome to Friendika" +msgstr "Benvenuto in Friendika" + +#: ../../mod/newmember.php:8 +msgid "New Member Checklist" +msgstr "Cose da fare per i Nuovi Utenti" + +#: ../../mod/newmember.php:12 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page." msgstr "" -"Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di" -" generare le chiavi di criptazione" +"Vorremmo offrire alcuni suggerimenti e link per contribuire a rendere la tua" +" esperienza piacevole. Fai clic su un elemento per visitare la pagina " +"corrispondente." -#: ../../mod/install.php:185 +#: ../../mod/newmember.php:16 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This will be useful in making friends." msgstr "" -"Se stai eseguendo friendika su windows, guarda " -"\"http://www.php.net/manual/en/openssl.installation.php\"." +"Nella tua pagina Impostazioni - cambia la tua password iniziale. " +"E prendi nota del tuo Indirizzo Identità. Questo tornerà utile nello " +"stringere amicizie." -#: ../../mod/install.php:194 +#: ../../mod/newmember.php:18 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +"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 "" -"Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato" +"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/install.php:196 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../mod/newmember.php:20 +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/install.php:198 +#: ../../mod/newmember.php:23 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +"Authorise the Facebook Connector if you currently have a Facebook account " +"and we will (optionally) import all your Facebook friends and conversations." msgstr "" -"Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non " -"installato." +"Autorizza il Facebook Connector se hai un account Facebook, e noi " +"(opzionalmente) importeremo tuti i tuoi amici e le tue conversazioni da " +"Facebook." -#: ../../mod/install.php:200 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../mod/newmember.php:28 +msgid "" +"Enter your email access information on your Settings page if you wish to " +"import and interact with friends or mailing lists from your email INBOX" +msgstr "" +"Inserisci i dati per accedere alla tua email nella pagina Impostazioni se " +"vuoi importare e interagire con amici o mailing list dalla posta in arrivo " +"della tua email." -#: ../../mod/install.php:202 -msgid "Error: mysqli PHP module required but not installed." -msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato" +#: ../../mod/newmember.php:30 +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/install.php:204 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../mod/newmember.php:32 +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/install.php:216 +#: ../../mod/newmember.php:34 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." +"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 Connect dialog." msgstr "" -"L'installazione web deve poter creare un file chiamato \".htconfig.php\" " -"nella cartella principale del tuo web server ma non è in grado di farlo." +"La pagina Contatti è il centro di controllo per la gestione delle amicizie e" +" per collegarti ad amici su altri network. Basta che inserisci il loro " +"indirizzo o l'URL del sito nel box Connetti." -#: ../../mod/install.php:217 +#: ../../mod/newmember.php:36 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." +"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 "" -"Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' " -"scrivere il file nella tua cartella, anche se tu puoi." +"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/install.php:218 +#: ../../mod/newmember.php:38 msgid "" -"Please check with your site documentation or support people to see if this " -"situation can be corrected." +"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 "" -"Controlla la documentazione del tuo sito o con il personale di suporto se la" -" situazione puo' essere corretta." +"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/install.php:219 +#: ../../mod/newmember.php:40 msgid "" -"If not, you may be required to perform a manual installation. Please see the" -" file \"INSTALL.txt\" for instructions." +"Our help pages may be consulted for detail on other program" +" features and resources." msgstr "" -"Altrimenti dovrai procedere con l'installazione manuale. Guarda il file " -"\"INSTALL.txt\" per istuzioni" +"Le nostre pagine della guida possono essere consultate per " +"avere dettagli su altre caratteristiche del programma e altre risorse." -#: ../../mod/install.php:228 +#: ../../mod/localtime.php:12 ../../include/event.php:11 +#: ../../include/bb2diaspora.php:227 +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 "" -"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." +"Friendika provides this service for sharing events with other networks and " +"friends in unknown timezones." msgstr "" -"Il file di configurazione del database \".htconfig.php\" non puo' essere " -"scritto. Usa il testo qui di seguito per creare un file di configurazione " -"nella cartella principale del tuo sito." +"Friendika fornisce questo servizio per la condivisione di eventi con altre " +"reti e contatti in fusi orari sconosciuti." -#: ../../mod/install.php:243 -msgid "Errors encountered creating database tables." -msgstr "Errori creando le tabelle nel database." +#: ../../mod/localtime.php:30 +#, php-format +msgid "UTC time: %s" +msgstr "Ora UTC: %s" -#: ../../mod/update_community.php:18 ../../mod/update_network.php:22 -#: ../../mod/update_profile.php:41 -msgid "[Embedded content - reload page to view]" -msgstr "[Contenuto incorporato - ricarica la pagina per vederlo]" +#: ../../mod/localtime.php:33 +#, php-format +msgid "Current timezone: %s" +msgstr "Fuso orario corrente: %s" -#: ../../mod/match.php:10 -msgid "Profile Match" -msgstr "Profili combacianti" +#: ../../mod/localtime.php:36 +#, php-format +msgid "Converted localtime: %s" +msgstr "Ora locale convertita: %s" -#: ../../mod/match.php:18 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "" -"Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo " -"profilo predefinito." +#: ../../mod/localtime.php:41 +msgid "Please select your timezone:" +msgstr "Selezionare il tuo fuso orario:" -#: ../../mod/match.php:54 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../mod/display.php:108 +msgid "Item has been removed." +msgstr "L'elemento è stato rimosso." -#: ../../mod/lockview.php:39 -msgid "Remote privacy information not available." -msgstr "Informazioni remote sulla privacy non disponibili." +#: ../../mod/editpost.php:17 ../../mod/editpost.php:27 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../mod/lockview.php:43 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../mod/editpost.php:32 +msgid "Edit post" +msgstr "Modifica messaggio" -#: ../../mod/home.php:23 -#, php-format -msgid "Welcome to %s" -msgstr "Benvenuto su %s" +#: ../../mod/editpost.php:75 ../../include/conversation.php:800 +msgid "Post to Email" +msgstr "Invia a Email" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Identificativo richiesta invalido." +#: ../../mod/editpost.php:91 ../../mod/message.php:135 +#: ../../mod/message.php:268 ../../include/conversation.php:815 +msgid "Upload photo" +msgstr "Carica foto" -#: ../../mod/notifications.php:35 ../../mod/notifications.php:118 -#: ../../mod/notifications.php:162 -msgid "Discard" -msgstr "Scarta" +#: ../../mod/editpost.php:92 ../../include/conversation.php:816 +msgid "Attach file" +msgstr "Allega file" -#: ../../mod/notifications.php:47 ../../mod/notifications.php:117 -#: ../../mod/notifications.php:161 -msgid "Ignore" -msgstr "Ignora" +#: ../../mod/editpost.php:93 ../../mod/message.php:136 +#: ../../mod/message.php:269 ../../include/conversation.php:817 +msgid "Insert web link" +msgstr "Inserisci link" -#: ../../mod/notifications.php:74 -msgid "Pending Friend/Connect Notifications" -msgstr "Richieste di amicizia/connessione in attesa" +#: ../../mod/editpost.php:94 +msgid "Insert YouTube video" +msgstr "Inserisci video da YouTube" -#: ../../mod/notifications.php:78 -msgid "Show Ignored Requests" -msgstr "Mostra richieste ignorate" +#: ../../mod/editpost.php:95 +msgid "Insert Vorbis [.ogg] video" +msgstr "Inserisci video Theora [.ogg]" -#: ../../mod/notifications.php:78 -msgid "Hide Ignored Requests" -msgstr "Nascondi richieste ignorate" +#: ../../mod/editpost.php:96 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Inserisci audio Vorbis [.ogg]" -#: ../../mod/notifications.php:105 ../../mod/notifications.php:148 -msgid "Notification type: " -msgstr "Tipo di notifica: " +#: ../../mod/editpost.php:97 ../../include/conversation.php:820 +msgid "Set your location" +msgstr "Imposta la tua posizione" -#: ../../mod/notifications.php:106 -msgid "Friend Suggestion" -msgstr "Amico suggerito" +#: ../../mod/editpost.php:98 ../../include/conversation.php:821 +msgid "Clear browser location" +msgstr "Cancella la tua posizione data dal browser" + +#: ../../mod/editpost.php:100 ../../include/conversation.php:824 +msgid "Permission settings" +msgstr "Impostazione permessi" + +#: ../../mod/editpost.php:108 ../../include/conversation.php:832 +msgid "CC: email addresses" +msgstr "CC: indirizzi email" + +#: ../../mod/editpost.php:109 ../../include/conversation.php:833 +msgid "Public post" +msgstr "Messaggio pubblico" + +#: ../../mod/editpost.php:111 ../../include/conversation.php:835 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Esempio: bob@example.com, mary@example.com" -#: ../../mod/notifications.php:108 +#: ../../mod/invite.php:35 #, php-format -msgid "suggested by %s" -msgstr "sugerito da %s" +msgid "%s : Not a valid email address." +msgstr "%s: Non è un indirizzo email valido." -#: ../../mod/notifications.php:114 ../../mod/notifications.php:159 -#: ../../mod/admin.php:466 -msgid "Approve" -msgstr "Approva" +#: ../../mod/invite.php:59 +#, php-format +msgid "Please join my network on %s" +msgstr "Unisciti al mio social network su %s" -#: ../../mod/notifications.php:133 -msgid "Claims to be known to you: " -msgstr "Dice di conoscerti: " +#: ../../mod/invite.php:69 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Consegna del messaggio fallita." -#: ../../mod/notifications.php:133 -msgid "yes" -msgstr "si" +#: ../../mod/invite.php:73 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../mod/notifications.php:133 -msgid "no" -msgstr "no" +#: ../../mod/invite.php:92 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../mod/notifications.php:139 -msgid "Approve as: " -msgstr "Approva come: " +#: ../../mod/invite.php:99 +msgid "Send invitations" +msgstr "Invia inviti" -#: ../../mod/notifications.php:140 -msgid "Friend" -msgstr "Amico" +#: ../../mod/invite.php:100 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../mod/notifications.php:141 -msgid "Fan/Admirer" -msgstr "Fan/Ammiratore" +#: ../../mod/invite.php:101 ../../mod/message.php:132 +#: ../../mod/message.php:265 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../mod/notifications.php:149 -msgid "Friend/Connect Request" -msgstr "Richiesta Amicizia/Connessione" +#: ../../mod/invite.php:102 +#, php-format +msgid "Please join my social network on %s" +msgstr "Unisciti al mio social network su %s" -#: ../../mod/notifications.php:149 -msgid "New Follower" -msgstr "Nuovo Seguace" +#: ../../mod/invite.php:103 +msgid "To accept this invitation, please visit:" +msgstr "Per accettare questo invito visita:" -#: ../../mod/notifications.php:168 -msgid "No notifications." -msgstr "Nessuna notifica." +#: ../../mod/invite.php:104 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Sarà necessario fornire questo codice invito: $invite_code" -#: ../../mod/contacts.php:26 -msgid "Invite Friends" -msgstr "Invita Amici" +#: ../../mod/invite.php:104 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Una volta registrato, connettiti con me sul mio profilo a:" + +#: ../../mod/ping.php:146 +msgid "{0} wants to be your friend" +msgstr "{0} vuole essere tuo amico" + +#: ../../mod/ping.php:151 +msgid "{0} sent you a message" +msgstr "{0} ti ha inviato un messaggio" + +#: ../../mod/ping.php:156 +msgid "{0} requested registration" +msgstr "{0} chiede la registrazione" -#: ../../mod/contacts.php:32 +#: ../../mod/ping.php:162 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "{0} commented %s's post" +msgstr "{0} ha commentato il post di %s" -#: ../../mod/contacts.php:41 -msgid "Find People With Shared Interests" -msgstr "Trova persone che condividono i tuoi interessi" +#: ../../mod/ping.php:167 +#, php-format +msgid "{0} liked %s's post" +msgstr "a {0} piace il post di %s" -#: ../../mod/contacts.php:45 -msgid "Connect/Follow" -msgstr "Connetti/Segui" +#: ../../mod/ping.php:172 +#, php-format +msgid "{0} disliked %s's post" +msgstr "a {0} non piace il post di %s" -#: ../../mod/contacts.php:46 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Esempio: bob@example.com, http://example.com/barbara" +#: ../../mod/ping.php:177 +#, php-format +msgid "{0} is now friends with %s" +msgstr "{0} ora è amico di %s" + +#: ../../mod/ping.php:182 +msgid "{0} posted" +msgstr "{0} ha inviato un nuovo messaggio" -#: ../../mod/contacts.php:47 -msgid "Follow" -msgstr "Segui" +#: ../../mod/ping.php:187 +#, php-format +msgid "{0} tagged %s's post with #%s" +msgstr "{0} ha taggato il post di %s con #%s" -#: ../../mod/contacts.php:69 ../../mod/contacts.php:150 +#: ../../mod/contacts.php:62 ../../mod/contacts.php:133 msgid "Could not access contact record." msgstr "Non si puo' accedere al contatto." -#: ../../mod/contacts.php:83 +#: ../../mod/contacts.php:76 msgid "Could not locate selected profile." msgstr "Non riesco a trovare il profilo selezionato." -#: ../../mod/contacts.php:114 +#: ../../mod/contacts.php:97 msgid "Contact updated." msgstr "Contatto aggiornato." -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409 +msgid "Failed to update contact record." +msgstr "Errore aggiornando il contatto." + +#: ../../mod/contacts.php:155 msgid "Contact has been blocked" msgstr "Il contatto è stato bloccato" -#: ../../mod/contacts.php:172 +#: ../../mod/contacts.php:155 msgid "Contact has been unblocked" msgstr "Il contatto è stato sbloccato" -#: ../../mod/contacts.php:186 +#: ../../mod/contacts.php:169 msgid "Contact has been ignored" msgstr "Il contatto è ignorato" -#: ../../mod/contacts.php:186 +#: ../../mod/contacts.php:169 msgid "Contact has been unignored" msgstr "Il conttatto è non ignorato" -#: ../../mod/contacts.php:207 +#: ../../mod/contacts.php:190 msgid "stopped following" msgstr "tolto dai seguiti" -#: ../../mod/contacts.php:226 +#: ../../mod/contacts.php:211 msgid "Contact has been removed." msgstr "Il contatto è stato rimosso." -#: ../../mod/contacts.php:254 ../../mod/contacts.php:397 -msgid "Mutual Friendship" -msgstr "Reciproca amicizia" - -#: ../../mod/contacts.php:258 ../../mod/contacts.php:401 -msgid "is a fan of yours" -msgstr "è un tuo fan" +#: ../../mod/contacts.php:232 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Sei amico reciproco con %s" -#: ../../mod/contacts.php:263 ../../mod/contacts.php:405 -msgid "you are a fan of" -msgstr "sei un fan di" +#: ../../mod/contacts.php:236 +#, php-format +msgid "You are sharing with %s" +msgstr "Stai condividendo con %s" -#: ../../mod/contacts.php:280 -msgid "Privacy Unavailable" -msgstr "Privacy non disponibile" +#: ../../mod/contacts.php:241 +#, php-format +msgid "%s is sharing with you" +msgstr "%s sta condividendo con te" -#: ../../mod/contacts.php:281 +#: ../../mod/contacts.php:258 msgid "Private communications are not available for this contact." msgstr "Le comunicazioni private non sono disponibili per questo contatto." -#: ../../mod/contacts.php:284 +#: ../../mod/contacts.php:261 msgid "Never" msgstr "Mai" -#: ../../mod/contacts.php:288 -msgid "(Update was successful)" -msgstr "(L'aggiornamento è stato completato)" +#: ../../mod/contacts.php:265 +msgid "(Update was successful)" +msgstr "(L'aggiornamento è stato completato)" + +#: ../../mod/contacts.php:265 +msgid "(Update was not successful)" +msgstr "(L'aggiornamento non è stato completato)" + +#: ../../mod/contacts.php:267 +msgid "Suggest friends" +msgstr "Suggerisci amici" + +#: ../../mod/contacts.php:271 +#, php-format +msgid "Network type: %s" +msgstr "Tipo di rete: %s" + +#: ../../mod/contacts.php:274 +#, 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:279 +msgid "View all contacts" +msgstr "Vedi tutti i contatti" + +#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 +#: ../../mod/admin.php:470 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../mod/contacts.php:284 ../../mod/contacts.php:331 +#: ../../mod/admin.php:469 +msgid "Block" +msgstr "Blocca" + +#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../mod/contacts.php:288 -msgid "(Update was not successful)" -msgstr "(L'aggiornamento non è stato completato)" +#: ../../mod/contacts.php:289 ../../mod/contacts.php:332 +#: ../../mod/notifications.php:47 ../../mod/notifications.php:143 +#: ../../mod/notifications.php:187 +msgid "Ignore" +msgstr "Ignora" -#: ../../mod/contacts.php:291 -msgid "Suggest friends" -msgstr "Suggerisci amici" +#: ../../mod/contacts.php:294 +msgid "Repair" +msgstr "Ripara" -#: ../../mod/contacts.php:295 +#: ../../mod/contacts.php:304 msgid "Contact Editor" msgstr "Editor dei Contatti" -#: ../../mod/contacts.php:297 +#: ../../mod/contacts.php:307 msgid "Profile Visibility" msgstr "Visibilità del profilo" -#: ../../mod/contacts.php:298 +#: ../../mod/contacts.php:308 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " @@ -1212,540 +1772,521 @@ msgstr "" "Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in " "modo sicuro." -#: ../../mod/contacts.php:299 +#: ../../mod/contacts.php:309 msgid "Contact Information / Notes" msgstr "Informazioni / Note sul contatto" -#: ../../mod/contacts.php:300 -msgid "Online Reputation" -msgstr "Reputazione Online" - -#: ../../mod/contacts.php:301 -msgid "" -"Occasionally your friends may wish to inquire about this person's online " -"legitimacy." -msgstr "" -"Puo' capitare che i tuoi amici vogliano sapere la legittimità online dei " -"questa persona." - -#: ../../mod/contacts.php:302 -msgid "" -"You may help them choose whether or not to interact with this person by " -"providing a reputation to guide them." -msgstr "" -"Puoi aiutarli a scegliere se interagire o no con questa persona fornendo una" -" reputazione per guidarli." - -#: ../../mod/contacts.php:303 -msgid "" -"Please take a moment to elaborate on this selection if you feel it could be " -"helpful to others." -msgstr "" -"Prenditi un momento per pensare su questa selezione se senti che puo' essere" -" utile ad altri." +#: ../../mod/contacts.php:310 +msgid "Edit contact notes" +msgstr "Modifica note contatto" -#: ../../mod/contacts.php:304 ../../mod/contacts.php:421 +#: ../../mod/contacts.php:315 ../../mod/contacts.php:430 #: ../../mod/viewcontacts.php:61 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: ../../mod/contacts.php:305 +#: ../../mod/contacts.php:316 msgid "Block/Unblock contact" msgstr "Blocca/Sblocca contatto" -#: ../../mod/contacts.php:306 +#: ../../mod/contacts.php:317 msgid "Ignore contact" msgstr "Ingnora il contatto" -#: ../../mod/contacts.php:307 -msgid "Repair contact URL settings" -msgstr "Sistema impostazioni URL del contatto" - -#: ../../mod/contacts.php:308 -msgid "Repair contact URL settings (WARNING: Advanced)" -msgstr "Sistema impostazioni URL del contatto (ATTENZIONE: Avanzato)" +#: ../../mod/contacts.php:318 +msgid "Repair URL settings" +msgstr "Impostazioni riparazione URL" -#: ../../mod/contacts.php:309 +#: ../../mod/contacts.php:319 msgid "View conversations" msgstr "Vedi conversazioni" -#: ../../mod/contacts.php:312 +#: ../../mod/contacts.php:321 msgid "Delete contact" msgstr "Rimuovi contatto" -#: ../../mod/contacts.php:314 -msgid "Last updated: " -msgstr "Ultimo aggiornameto: " +#: ../../mod/contacts.php:325 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../mod/contacts.php:315 -msgid "Update public posts: " -msgstr "Aggiorna messaggi pubblici: " +#: ../../mod/contacts.php:326 +msgid "Update public posts" +msgstr "Aggiorna messaggi pubblici" -#: ../../mod/contacts.php:317 ../../mod/admin.php:701 +#: ../../mod/contacts.php:328 ../../mod/admin.php:701 msgid "Update now" msgstr "Aggiorna adesso" -#: ../../mod/contacts.php:320 -msgid "Unblock this contact" -msgstr "Sblocca questo contatto" - -#: ../../mod/contacts.php:320 -msgid "Block this contact" -msgstr "Blocca questo contatto" - -#: ../../mod/contacts.php:321 -msgid "Unignore this contact" -msgstr "Rimuovi dai contatti ingorati" - -#: ../../mod/contacts.php:321 -msgid "Ignore this contact" -msgstr "Aggiungi ai contatti ignorati" - -#: ../../mod/contacts.php:324 +#: ../../mod/contacts.php:335 msgid "Currently blocked" msgstr "Bloccato" -#: ../../mod/contacts.php:325 +#: ../../mod/contacts.php:336 msgid "Currently ignored" msgstr "Ignorato" -#: ../../mod/contacts.php:356 ../../include/nav.php:110 +#: ../../mod/contacts.php:364 ../../include/nav.php:130 msgid "Contacts" msgstr "Contatti" -#: ../../mod/contacts.php:358 +#: ../../mod/contacts.php:366 msgid "Show Blocked Connections" msgstr "Mostra connessioni bloccate" -#: ../../mod/contacts.php:358 +#: ../../mod/contacts.php:366 msgid "Hide Blocked Connections" msgstr "Nascondi connessioni bloccate" -#: ../../mod/contacts.php:360 ../../mod/directory.php:55 +#: ../../mod/contacts.php:368 +msgid "Search your contacts" +msgstr "Cerca nei tuoi contatti" + +#: ../../mod/contacts.php:369 ../../mod/directory.php:65 msgid "Finding: " msgstr "Cerco: " -#: ../../mod/contacts.php:361 ../../mod/directory.php:57 +#: ../../mod/contacts.php:370 ../../mod/directory.php:67 +#: ../../include/contact_widgets.php:34 msgid "Find" msgstr "Trova" -#: ../../mod/contacts.php:422 ../../include/conversation.php:612 +#: ../../mod/contacts.php:406 +msgid "Mutual Friendship" +msgstr "Reciproca amicizia" + +#: ../../mod/contacts.php:410 +msgid "is a fan of yours" +msgstr "è un tuo fan" + +#: ../../mod/contacts.php:414 +msgid "you are a fan of" +msgstr "sei un fan di" + +#: ../../mod/contacts.php:431 ../../include/Contact.php:129 +#: ../../include/conversation.php:679 msgid "Edit contact" msgstr "Modifca contatto" -#: ../../mod/lostpass.php:16 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../mod/lockview.php:39 +msgid "Remote privacy information not available." +msgstr "Informazioni remote sulla privacy non disponibili." -#: ../../mod/lostpass.php:31 -msgid "Password reset request issued. Check your email." -msgstr "Richiesta di reimpostazione pasword inviata. Controlla la tua email." +#: ../../mod/lockview.php:43 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../mod/lostpass.php:42 -#, php-format -msgid "Password reset requested at %s" -msgstr "Richiesta recupero password su %s" +#: ../../mod/register.php:53 +msgid "An invitation is required." +msgstr "E' richiesto un invito." -#: ../../mod/lostpass.php:64 -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/register.php:58 +msgid "Invitation could not be verified." +msgstr "L'invito non puo' essere verificato." -#: ../../mod/lostpass.php:82 ../../boot.php:654 -msgid "Password Reset" -msgstr "Resetta password" +#: ../../mod/register.php:66 +msgid "Invalid OpenID url" +msgstr "Url OpenID non valido" -#: ../../mod/lostpass.php:83 -msgid "Your password has been reset as requested." -msgstr "La tua password è stata reimpostata come richiesto." +#: ../../mod/register.php:81 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../mod/lostpass.php:84 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../mod/register.php:95 +msgid "Please use a shorter name." +msgstr "Usa un nome più corto." -#: ../../mod/lostpass.php:85 -msgid "Save or copy your new password - and then" -msgstr "Sava o copa la tua nuova password, quindi" +#: ../../mod/register.php:97 +msgid "Name too short." +msgstr "Il Nome è troppo corto." -#: ../../mod/lostpass.php:86 -msgid "click here to login" -msgstr "clicca qui per entrare" +#: ../../mod/register.php:112 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." -#: ../../mod/lostpass.php:87 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." +#: ../../mod/register.php:117 +msgid "Your email domain is not among those allowed on this site." msgstr "" -"Puoi cambiare la tua password dalla pagina Impostazioni dopo essere" -" entrato." +"Il dominio della tua email non è tra quelli autorizzati su questo sito." -#: ../../mod/lostpass.php:118 -msgid "Forgot your Password?" -msgstr "Dimenticato la tua password?" +#: ../../mod/register.php:120 +msgid "Not a valid email address." +msgstr "Indirizzo email invaildo." -#: ../../mod/lostpass.php:119 +#: ../../mod/register.php:130 +msgid "Cannot use that email." +msgstr "Questa email non si puo' usare." + +#: ../../mod/register.php:136 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " +"must also begin with a letter." msgstr "" -"Inserisci il tuo indirizzo email per richiedere di reimpostare la tua " -"passwork." - -#: ../../mod/lostpass.php:120 -msgid "Nickname or Email: " -msgstr "Nome utente o Email: " - -#: ../../mod/lostpass.php:121 -msgid "Reset" -msgstr "Reimposta" - -#: ../../mod/settings.php:64 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Passoword non cambiata." - -#: ../../mod/settings.php:69 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Password vuote non sono consentite. Password non cambiata." - -#: ../../mod/settings.php:80 -msgid "Password changed." -msgstr "Password cambiata." - -#: ../../mod/settings.php:82 -msgid "Password update failed. Please try again." -msgstr "Aggiornamento password fallito. Prova ancora." - -#: ../../mod/settings.php:161 -msgid "Failed to connect with email account using the settings provided." -msgstr "Impossibile collegarsi all'account email con i parametri forniti." - -#: ../../mod/settings.php:188 -msgid " Please use a shorter name." -msgstr " Usa un nome più corto." - -#: ../../mod/settings.php:190 -msgid " Name too short." -msgstr " Nome troppo corto." - -#: ../../mod/settings.php:196 -msgid " Not valid email." -msgstr " Email non valida." - -#: ../../mod/settings.php:198 -msgid " Cannot change to that email." -msgstr "Non puoi usare quella email." +"Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", " +"e deve cominciare con una lettera." -#: ../../mod/settings.php:257 ../../addon/facebook/facebook.php:297 -#: ../../addon/impressum/impressum.php:64 ../../addon/piwik/piwik.php:89 -#: ../../addon/twitter/twitter.php:275 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../mod/register.php:142 ../../mod/register.php:243 +msgid "Nickname is already registered. Please choose another." +msgstr "Soprannome già registrato. Scegline un'altro." -#: ../../mod/settings.php:311 ../../include/nav.php:108 -msgid "Account settings" -msgstr "Parametri account" +#: ../../mod/register.php:161 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito." -#: ../../mod/settings.php:312 -msgid "Plugin settings" -msgstr "Impostazioni plugin" +#: ../../mod/register.php:229 +msgid "An error occurred during registration. Please try again." +msgstr "Si è verificato un errore durante la registrazione. Prova ancora." -#: ../../mod/settings.php:322 -msgid "No Plugin settings configured" -msgstr "Nessun Plugin ha delle configurazioni che puoi modificare" +#: ../../mod/register.php:265 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora." -#: ../../mod/settings.php:329 ../../addon/widgets/widgets.php:122 -msgid "Plugin Settings" -msgstr "Impostazioni Plugin" +#: ../../mod/register.php:377 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "" +"Registrazione completata. Controlla la tua mail per ulteriori informazioni." -#: ../../mod/settings.php:382 ../../mod/admin.php:133 ../../mod/admin.php:443 -msgid "Normal Account" -msgstr "Account normale" +#: ../../mod/register.php:381 +msgid "Failed to send email message. Here is the message that failed." +msgstr "" +"Errore inviando il messaggio email. Questo è il messaggio non inviato." -#: ../../mod/settings.php:383 -msgid "This account is a normal personal profile" -msgstr "Questo account è un normale profilo personale" +#: ../../mod/register.php:386 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere elaborata." -#: ../../mod/settings.php:386 ../../mod/admin.php:134 ../../mod/admin.php:444 -msgid "Soapbox Account" -msgstr "Account Palco" +#: ../../mod/register.php:423 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../mod/settings.php:387 -msgid "Automatically approve all connection/friend requests as read-only fans" +#: ../../mod/register.php:432 +msgid "Your registration is pending approval by the site owner." msgstr "" -"Accetta automaticamente le richieste di connessione/amicizia come fan che " -"possono solamente leggere" - -#: ../../mod/settings.php:390 ../../mod/admin.php:135 ../../mod/admin.php:445 -msgid "Community/Celebrity Account" -msgstr "Account Celebrità/Comunità" +"La tua richiesta è in attesa di approvazione da parte del prorietario del " +"sito." -#: ../../mod/settings.php:391 +#: ../../mod/register.php:481 msgid "" -"Automatically approve all connection/friend requests as read-write fans" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking 'Register'." msgstr "" -"Accetta automaticamente le richieste di connessione/amicizia come fan che " -"possono scrivere in bacheca" - -#: ../../mod/settings.php:394 ../../mod/admin.php:136 ../../mod/admin.php:446 -msgid "Automatic Friend Account" -msgstr "Account Amico Automatico" +"Puoi (opzionalmente) riempire questa maschera via OpenID inserendo il tuo " +"OpenID e cliccando 'Registra'." -#: ../../mod/settings.php:395 -msgid "Automatically approve all connection/friend requests as friends" +#: ../../mod/register.php:482 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." msgstr "" -"Accetta automaticamente le richieste di connessione/amicizia come amici" - -#: ../../mod/settings.php:405 -msgid "OpenID:" -msgstr "OpenID:" +"Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il " +"resto della maschera." -#: ../../mod/settings.php:405 -msgid "(Optional) Allow this OpenID to login to this account." -msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" +#: ../../mod/register.php:483 +msgid "Your OpenID (optional): " +msgstr "Il tuo OpenID (opzionale): " -#: ../../mod/settings.php:415 -msgid "Publish your default profile in your local site directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco locale del sito" +#: ../../mod/register.php:497 +msgid "Include your profile in member directory?" +msgstr "Includi il tuo profilo nell'elenco dei membir?" -#: ../../mod/settings.php:421 -msgid "Publish your default profile in the global social directory?" -msgstr "Pubblica il tuo profilo predefinito nell'elenco sociale globale" +#: ../../mod/register.php:512 +msgid "Membership on this site is by invitation only." +msgstr "La registrazione su questo sito è solo su invito." -#: ../../mod/settings.php:429 -msgid "Hide your contact/friend list from viewers of your default profile?" -msgstr "" -"Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo " -"predefinito" +#: ../../mod/register.php:513 +msgid "Your invitation ID: " +msgstr "L'ID del tuo invito:" -#: ../../mod/settings.php:433 -msgid "Hide profile details and all your messages from unknown viewers?" -msgstr "" -"Nascondi i dettagli del profilo e tutti i tuoi messaggi ai visitatori " -"sconosciuti?" +#: ../../mod/register.php:516 ../../mod/admin.php:297 +msgid "Registration" +msgstr "Registrazione" -#: ../../mod/settings.php:442 -msgid "Profile is not published." -msgstr "Il profilo non è pubblicato." +#: ../../mod/register.php:524 +msgid "Your Full Name (e.g. Joe Smith): " +msgstr "Il tuo Nome Completo (p.e. Mario Rossi): " -#: ../../mod/settings.php:461 ../../mod/profile_photo.php:196 -msgid "or" -msgstr "o" +#: ../../mod/register.php:525 +msgid "Your Email Address: " +msgstr "Il tuo Indirizzo Email: " -#: ../../mod/settings.php:466 -msgid "Your Identity Address is" -msgstr "Il tuo Indirizzo Identità è" +#: ../../mod/register.php:526 +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be " +"'nickname@$sitename'." +msgstr "" +"Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo " +"profilo sarà 'soprannome@$sitename'." -#: ../../mod/settings.php:480 -msgid "Account Settings" -msgstr "Impostazioni Account" +#: ../../mod/register.php:527 +msgid "Choose a nickname: " +msgstr "Scegli un soprannome: " -#: ../../mod/settings.php:487 -msgid "Export Personal Data" -msgstr "Esporta i Dati Personali" +#: ../../mod/oexchange.php:27 +msgid "Post successful." +msgstr "Inviato con successo." -#: ../../mod/settings.php:490 -msgid "Password Settings" -msgstr "Impostazioni Password" +#: ../../mod/allfriends.php:34 +#, php-format +msgid "Friends of %s" +msgstr "Amici di %s" -#: ../../mod/settings.php:491 -msgid "New Password:" -msgstr "Nuova Password:" +#: ../../mod/allfriends.php:40 +msgid "No friends to display." +msgstr "Nessun amico da visualizzare." -#: ../../mod/settings.php:492 -msgid "Confirm:" -msgstr "Conferma:" +#: ../../mod/help.php:30 +msgid "Help:" +msgstr "Guida:" -#: ../../mod/settings.php:492 -msgid "Leave password fields blank unless changing" -msgstr "" -"Lascia questi campi in bianco per non effettuare variazioni alla password" +#: ../../mod/help.php:34 ../../include/nav.php:82 +msgid "Help" +msgstr "Guida" -#: ../../mod/settings.php:496 -msgid "Basic Settings" -msgstr "Impostazioni base" +#: ../../mod/install.php:34 +msgid "Could not create/connect to database." +msgstr "Impossibile creare/collegarsi al database." -#: ../../mod/settings.php:497 ../../include/profile_advanced.php:10 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../mod/install.php:39 +msgid "Connected to database." +msgstr "Collegato al database." -#: ../../mod/settings.php:498 -msgid "Email Address:" -msgstr "Indirizzo Email:" +#: ../../mod/install.php:75 +msgid "Proceed with Installation" +msgstr "Continua con l'installazione" -#: ../../mod/settings.php:499 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../mod/install.php:77 +msgid "Your Friendika site database has been installed." +msgstr "Il database del tuo sito Friendika è stato installato." -#: ../../mod/settings.php:500 -msgid "Default Post Location:" -msgstr "Località di default per l'invio:" +#: ../../mod/install.php:78 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "" +"IMPORTANTE: Devi impostare manualmente un operazione pianificata per il " +"poller" -#: ../../mod/settings.php:501 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207 +msgid "Please see the file \"INSTALL.txt\"." +msgstr "Guarda il file \"INSTALL.txt\"." -#: ../../mod/settings.php:502 -msgid "Display Theme:" -msgstr "Tema:" +#: ../../mod/install.php:81 +msgid "Proceed to registration" +msgstr "Continua con la registrazione" -#: ../../mod/settings.php:506 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di Sicurezza e Privacy" +#: ../../mod/install.php:87 +msgid "Database import failed." +msgstr "Importazione database fallita." -#: ../../mod/settings.php:508 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo di richieste di amicizia per giorno:" +#: ../../mod/install.php:88 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "" +"Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin" +" o mysql" -#: ../../mod/settings.php:508 -msgid "(to prevent spam abuse)" -msgstr "(per prevenire lo spam)" +#: ../../mod/install.php:101 +msgid "Welcome to Friendika." +msgstr "Benvenuto su Friendika." -#: ../../mod/settings.php:509 -msgid "Default Post Permissions" -msgstr "Permessi di default per i messaggi" +#: ../../mod/install.php:124 +msgid "Friendika Social Network" +msgstr "Friendika Social Network" -#: ../../mod/settings.php:510 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../mod/install.php:125 +msgid "Installation" +msgstr "Installazione" -#: ../../mod/settings.php:514 -msgid "Allow friends to post to your profile page:" -msgstr "Permetti agli amici di inviare messaggi sulla tua bacheca:" +#: ../../mod/install.php:126 +msgid "" +"In order to install Friendika we need to know how to connect to your " +"database." +msgstr "" +"Per instalare Friendika dobbiamo sapere come collegarci al tuo database." -#: ../../mod/settings.php:515 -msgid "Automatically expire posts after days:" -msgstr "Cancella automaticamente i messaggi dopo giorni:" +#: ../../mod/install.php:127 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" +"Contatta il tuo fornitore di hosting o l'amministratore del sito se hai " +"domande su questi settaggi." -#: ../../mod/settings.php:515 -msgid "If empty, posts will not expire. Expired posts will be deleted" -msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." +#: ../../mod/install.php:128 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" +"Il database dovrà già esistere. Se non esiste, crealo prima di continuare." -#: ../../mod/settings.php:524 -msgid "Notification Settings" -msgstr "Impostazioni Notifiche" +#: ../../mod/install.php:129 +msgid "Database Server Name" +msgstr "Nome Database Server" -#: ../../mod/settings.php:525 -msgid "Send a notification email when:" -msgstr "Invia una mail di notifica quando:" +#: ../../mod/install.php:130 +msgid "Database Login Name" +msgstr "Nome utente Database" -#: ../../mod/settings.php:526 -msgid "You receive an introduction" -msgstr "Ricevi una presentazione" +#: ../../mod/install.php:131 +msgid "Database Login Password" +msgstr "Password utente Database" -#: ../../mod/settings.php:527 -msgid "Your introductions are confirmed" -msgstr "Le tue presentazioni sono confermate" +#: ../../mod/install.php:132 +msgid "Database Name" +msgstr "Nome Database" -#: ../../mod/settings.php:528 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla bacheca del tuo profilo" +#: ../../mod/install.php:133 +msgid "Please select a default timezone for your website" +msgstr "Seleziona un fuso orario di default per il tuo sito web" -#: ../../mod/settings.php:529 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento a un tuo messaggio" +#: ../../mod/install.php:134 +msgid "" +"Site administrator email address. Your account email address must match this" +" in order to use the web admin panel." +msgstr "" +"Indirizzo email dell'amministratore del sito. L'email del tuo account deve " +"corrispodere a questa, per poter utilizzare il pannello di amministrazione" -#: ../../mod/settings.php:530 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../mod/install.php:153 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" +"Non riesco a trovare una versione da riga di comando di PHP nel PATH del " +"server web" -#: ../../mod/settings.php:534 -msgid "Email/Mailbox Setup" -msgstr "Impostazioni Email" +#: ../../mod/install.php:154 +msgid "" +"This is required. Please adjust the configuration file .htconfig.php " +"accordingly." +msgstr "E' richiesto. Aggiorna il file .htconfig.php di conseguenza." -#: ../../mod/settings.php:535 +#: ../../mod/install.php:161 msgid "" -"If you wish to communicate with email contacts using this service " -"(optional), please specify how to connect to your mailbox." +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -"Se vuoi comunicare con i contatti email usando questo servizio, specifica " -"come collegarti alla tua casella di posta. (opzionale)" +"La versione da riga di comando di PHP nel sistema non ha abilitato " +"\"register_argc_argv\"." -#: ../../mod/settings.php:536 -msgid "Last successful email check:" -msgstr "Ultimo controllo email eseguito con successo:" +#: ../../mod/install.php:162 +msgid "This is required for message delivery to work." +msgstr "Ciò è richiesto per far funzionare la consegna dei messaggi." -#: ../../mod/settings.php:537 -msgid "Email access is disabled on this site." -msgstr "L'accesso Email è disabilitato su questo sito." +#: ../../mod/install.php:184 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" +"Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di" +" generare le chiavi di criptazione" -#: ../../mod/settings.php:538 -msgid "IMAP server name:" -msgstr "Nome server IMAP:" +#: ../../mod/install.php:185 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "" +"Se stai eseguendo friendika su windows, guarda " +"\"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/settings.php:539 -msgid "IMAP port:" -msgstr "Porta IMAP:" +#: ../../mod/install.php:194 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" +"Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato" -#: ../../mod/settings.php:540 -msgid "Security:" -msgstr "Sicurezza:" +#: ../../mod/install.php:196 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../mod/settings.php:540 -msgid "None" -msgstr "Nessuna" +#: ../../mod/install.php:198 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" +"Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non " +"installato." -#: ../../mod/settings.php:541 -msgid "Email login name:" -msgstr "Nome utente Email:" +#: ../../mod/install.php:200 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../mod/settings.php:542 -msgid "Email password:" -msgstr "Password Email:" +#: ../../mod/install.php:202 +msgid "Error: mysqli PHP module required but not installed." +msgstr "Errore: il modulo mysqli di PHP è richiesto ma non installato" -#: ../../mod/settings.php:543 -msgid "Reply-to address:" -msgstr "Indirizzo di risposta:" +#: ../../mod/install.php:204 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../mod/settings.php:544 -msgid "Send public posts to all email contacts:" -msgstr "Invia i messaggi pubblici ai contatti email:" +#: ../../mod/install.php:216 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "" +"L'installazione web deve poter creare un file chiamato \".htconfig.php\" " +"nella cartella principale del tuo web server ma non è in grado di farlo." -#: ../../mod/settings.php:549 -msgid "Advanced Page Settings" -msgstr "Impostazioni Avanzate Account" +#: ../../mod/install.php:217 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "" +"Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo' " +"scrivere il file nella tua cartella, anche se tu puoi." -#: ../../mod/manage.php:37 -#, php-format -msgid "Welcome back %s" -msgstr "Bentornato %s" +#: ../../mod/install.php:218 +msgid "" +"Please check with your site documentation or support people to see if this " +"situation can be corrected." +msgstr "" +"Controlla la documentazione del tuo sito o con il personale di suporto se la" +" situazione puo' essere corretta." -#: ../../mod/manage.php:87 -msgid "Manage Identities and/or Pages" -msgstr "Gestisci Indentità e/o Pagine" +#: ../../mod/install.php:219 +msgid "" +"If not, you may be required to perform a manual installation. Please see the" +" file \"INSTALL.txt\" for instructions." +msgstr "" +"Altrimenti dovrai procedere con l'installazione manuale. Guarda il file " +"\"INSTALL.txt\" per istuzioni" -#: ../../mod/manage.php:90 +#: ../../mod/install.php:228 msgid "" -"(Toggle between different identities or community/group pages which share " -"your account details.)" +"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 "" -"(Passa tra diverse identità o pagine di comunità/gruppi che condividono i " -"dettagli del tuo account.)" +"Il file di configurazione del database \".htconfig.php\" non puo' essere " +"scritto. Usa il testo qui di seguito per creare un file di configurazione " +"nella cartella principale del tuo sito." -#: ../../mod/manage.php:92 -msgid "Select an identity to manage: " -msgstr "Seleziona una identità da gestire:" +#: ../../mod/install.php:243 +msgid "Errors encountered creating database tables." +msgstr "Errori creando le tabelle nel database." -#: ../../mod/network.php:27 -msgid "View Conversations" -msgstr "Vedi conversazioni" +#: ../../mod/network.php:148 +msgid "Commented Order" +msgstr "Ordina per commento" + +#: ../../mod/network.php:153 +msgid "Posted Order" +msgstr "Ordina per invio" -#: ../../mod/network.php:29 -msgid "View New Items" -msgstr "Vedi nuovi elementi" +#: ../../mod/network.php:159 +msgid "New" +msgstr "Nuovo" -#: ../../mod/network.php:35 -msgid "View Any Items" -msgstr "Vedi tutti gli elementi" +#: ../../mod/network.php:164 +msgid "Starred" +msgstr "Speciali" -#: ../../mod/network.php:43 -msgid "View Starred Items" -msgstr "Vedi elementi preferiti" +#: ../../mod/network.php:169 +msgid "Bookmarks" +msgstr "Preferiti" -#: ../../mod/network.php:94 +#: ../../mod/network.php:216 #, php-format msgid "Warning: This group contains %s member from an insecure network." msgid_plural "" @@ -1753,610 +2294,635 @@ msgid_plural "" msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro." msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro." -#: ../../mod/network.php:97 +#: ../../mod/network.php:219 msgid "Private messages to this group are at risk of public disclosure." msgstr "" "I messaggi privati a questo gruppo sono a rischio di visualizzazione " "pubblica." -#: ../../mod/network.php:164 +#: ../../mod/network.php:292 msgid "No such group" msgstr "Nessun gruppo" -#: ../../mod/network.php:175 +#: ../../mod/network.php:303 msgid "Group is empty" msgstr "Il gruppo è vuoto" -#: ../../mod/network.php:180 +#: ../../mod/network.php:308 msgid "Group: " msgstr "Gruppo: " -#: ../../mod/network.php:190 +#: ../../mod/network.php:318 msgid "Contact: " msgstr "Contatto:" -#: ../../mod/network.php:192 +#: ../../mod/network.php:320 msgid "Private messages to this person are at risk of public disclosure." msgstr "" "I messaggi privati ​​a questa persona sono a rischio di divulgazione al " "pubblico." -#: ../../mod/network.php:197 +#: ../../mod/network.php:325 msgid "Invalid contact." msgstr "Contatto non valido." -#: ../../mod/notes.php:74 -msgid "Save" -msgstr "Salva" +#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../mod/newmember.php:6 -msgid "Welcome to Friendika" -msgstr "Benvenuto in Friendika" +#: ../../mod/profperm.php:101 +msgid "Profile Visibility Editor" +msgstr "Modifica Visibilità del Profilo" -#: ../../mod/newmember.php:8 -msgid "New Member Checklist" -msgstr "Cose da fare per i Nuovi Utenti" +#: ../../mod/profperm.php:105 ../../mod/group.php:164 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../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." -msgstr "" -"Vorremmo offrire alcuni suggerimenti e link per contribuire a rendere la tua" -" esperienza piacevole. Fai clic su un elemento per visitare la pagina " -"corrispondente." +#: ../../mod/profperm.php:114 +msgid "Visible To" +msgstr "Visibile A" -#: ../../mod/newmember.php:16 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This will be useful in making friends." -msgstr "" -"Nella tua pagina Impostazioni - cambia la tua password iniziale. " -"E prendi nota del tuo Indirizzo Identità. Questo tornerà utile nello " -"stringere amicizie." +#: ../../mod/profperm.php:130 +msgid "All Contacts (with secure profile access)" +msgstr "Tutti i Contatti (con profilo ad accesso sicuro)" -#: ../../mod/newmember.php:18 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "" -"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/events.php:61 +msgid "Event description and start time are required." +msgstr "Descrizione dell'evento e ora di inizio sono obbligatori." -#: ../../mod/newmember.php:20 -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/events.php:207 +msgid "Create New Event" +msgstr "Crea un nuovo Evento" -#: ../../mod/newmember.php:23 -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/events.php:210 +msgid "Previous" +msgstr "Precendente" -#: ../../mod/newmember.php:28 -msgid "" -"Enter your email access information on your Settings page if you wish to " -"import and interact with friends or mailing lists from your email INBOX" -msgstr "" -"Inserisci i dati per accedere alla tua email nella pagina Impostazioni se " -"vuoi importare e interagire con amici o mailing list dalla posta in arrivo " -"della tua email." +#: ../../mod/events.php:213 +msgid "Next" +msgstr "Successivo" -#: ../../mod/newmember.php:30 -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/events.php:220 +msgid "l, F j" +msgstr "l j F" -#: ../../mod/newmember.php:32 -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/events.php:232 +msgid "Edit event" +msgstr "Modifca Evento" -#: ../../mod/newmember.php:34 -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 Connect dialog." -msgstr "" -"La pagina Contatti è il centro di controllo per la gestione delle amicizie e" -" per collegarti ad amici su altri network. Basta che inserisci il loro " -"indirizzo o l'URL del sito nel box Connetti." +#: ../../mod/events.php:234 ../../include/text.php:857 +msgid "link to source" +msgstr "Collegamento all'originale" -#: ../../mod/newmember.php:36 -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/events.php:302 +msgid "hour:minute" +msgstr "ora:minuti" -#: ../../mod/newmember.php:38 -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/events.php:311 +msgid "Event details" +msgstr "Dettagli dell'Evento" -#: ../../mod/newmember.php:40 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." +#: ../../mod/events.php:312 +#, php-format +msgid "Format is %s %s. Starting date and Description are required." msgstr "" -"Le nostre pagine della guida possono essere consultate per " -"avere dettagli su altre caratteristiche del programma e altre risorse." +"Il formato è %s %s. La data di inizio e la descrizione sono obbligatori." -#: ../../mod/attach.php:8 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../mod/events.php:313 +msgid "Event Starts:" +msgstr "L'Evento inizia:" -#: ../../mod/attach.php:20 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../mod/events.php:316 +msgid "Finish date/time is not known or not relevant" +msgstr "La data/l'ora di fine è sconosciuta o non importante" -#: ../../mod/group.php:27 -msgid "Group created." -msgstr "Gruppo creato." +#: ../../mod/events.php:318 +msgid "Event Finishes:" +msgstr "L'Evento finisce:" + +#: ../../mod/events.php:321 +msgid "Adjust for viewer timezone" +msgstr "Regola nel fuso orario di chi legge" + +#: ../../mod/events.php:323 +msgid "Description:" +msgstr "Descrizione" + +#: ../../mod/events.php:327 +msgid "Share this event" +msgstr "Condividi questo Evento" + +#: ../../mod/notifications.php:26 +msgid "Invalid request identifier." +msgstr "Identificativo richiesta invalido." + +#: ../../mod/notifications.php:35 ../../mod/notifications.php:144 +#: ../../mod/notifications.php:188 +msgid "Discard" +msgstr "Scarta" + +#: ../../mod/notifications.php:71 ../../include/nav.php:109 +msgid "Network" +msgstr "Rete" + +#: ../../mod/notifications.php:76 ../../include/nav.php:73 +#: ../../include/nav.php:111 +msgid "Home" +msgstr "Home" + +#: ../../mod/notifications.php:81 ../../include/nav.php:117 +msgid "Introductions" +msgstr "Presentazioni" + +#: ../../mod/notifications.php:86 ../../mod/message.php:72 +#: ../../include/nav.php:122 +msgid "Messages" +msgstr "Messaggi" + +#: ../../mod/notifications.php:105 +msgid "Show Ignored Requests" +msgstr "Mostra richieste ignorate" + +#: ../../mod/notifications.php:105 +msgid "Hide Ignored Requests" +msgstr "Nascondi richieste ignorate" + +#: ../../mod/notifications.php:131 ../../mod/notifications.php:174 +msgid "Notification type: " +msgstr "Tipo di notifica: " -#: ../../mod/group.php:33 -msgid "Could not create group." -msgstr "Impossibile creare il gruppo." +#: ../../mod/notifications.php:132 +msgid "Friend Suggestion" +msgstr "Amico suggerito" -#: ../../mod/group.php:43 ../../mod/group.php:123 -msgid "Group not found." -msgstr "Gruppo non trovato." +#: ../../mod/notifications.php:134 +#, php-format +msgid "suggested by %s" +msgstr "sugerito da %s" -#: ../../mod/group.php:56 -msgid "Group name changed." -msgstr "Il nome del gruppo è cambiato." +#: ../../mod/notifications.php:140 ../../mod/notifications.php:185 +#: ../../mod/admin.php:466 +msgid "Approve" +msgstr "Approva" -#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:265 -msgid "Permission denied" -msgstr "Permesso negato" +#: ../../mod/notifications.php:160 +msgid "Claims to be known to you: " +msgstr "Dice di conoscerti: " -#: ../../mod/group.php:82 -msgid "Create a group of contacts/friends." -msgstr "Crea un gruppo di amici/contatti." +#: ../../mod/notifications.php:160 +msgid "yes" +msgstr "si" -#: ../../mod/group.php:83 ../../mod/group.php:166 -msgid "Group Name: " -msgstr "Nome del gruppo:" +#: ../../mod/notifications.php:160 +msgid "no" +msgstr "no" -#: ../../mod/group.php:98 -msgid "Group removed." -msgstr "Gruppo rimosso." +#: ../../mod/notifications.php:167 +msgid "Approve as: " +msgstr "Approva come: " -#: ../../mod/group.php:100 -msgid "Unable to remove group." -msgstr "Impossibile rimuovere il gruppo." +#: ../../mod/notifications.php:168 +msgid "Friend" +msgstr "Amico" -#: ../../mod/group.php:164 ../../mod/profperm.php:105 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../mod/notifications.php:169 +msgid "Sharer" +msgstr "Condivisore" -#: ../../mod/group.php:165 -msgid "Group Editor" -msgstr "Modifica gruppo" +#: ../../mod/notifications.php:169 +msgid "Fan/Admirer" +msgstr "Fan/Ammiratore" -#: ../../mod/group.php:180 -msgid "Members" -msgstr "Membri" +#: ../../mod/notifications.php:175 +msgid "Friend/Connect Request" +msgstr "Richiesta Amicizia/Connessione" -#: ../../mod/group.php:195 -msgid "All Contacts" -msgstr "Tutti i Contatti" +#: ../../mod/notifications.php:175 +msgid "New Follower" +msgstr "Nuovo Seguace" -#: ../../mod/profperm.php:25 ../../mod/profperm.php:55 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../mod/notifications.php:194 +msgid "No notifications." +msgstr "Nessuna notifica." -#: ../../mod/profperm.php:101 -msgid "Profile Visibility Editor" -msgstr "Modifica Visibilità del Profilo" +#: ../../mod/notifications.php:197 ../../mod/notifications.php:283 +#: ../../mod/notifications.php:359 ../../include/nav.php:118 +msgid "Notifications" +msgstr "Notifiche" -#: ../../mod/profperm.php:114 -msgid "Visible To" -msgstr "Visibile A" +#: ../../mod/notifications.php:234 ../../mod/notifications.php:316 +#, php-format +msgid "%s liked %s's post" +msgstr "a %s è piaciuto il messaggio di %s" -#: ../../mod/profperm.php:128 -msgid "All Contacts (with secure profile access)" -msgstr "Tutti i Contatti (con profilo ad accesso sicuro)" +#: ../../mod/notifications.php:243 ../../mod/notifications.php:325 +#, php-format +msgid "%s disliked %s's post" +msgstr "a %s non è piaciuto il messaggio di %s" -#: ../../mod/viewcontacts.php:25 ../../include/text.php:555 -msgid "View Contacts" -msgstr "Guarda contatti" +#: ../../mod/notifications.php:257 ../../mod/notifications.php:339 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s è ora amico di %s" -#: ../../mod/viewcontacts.php:40 -msgid "No contacts." -msgstr "Nessuno contatto." +#: ../../mod/notifications.php:264 +#, php-format +msgid "%s created a new post" +msgstr "%s a creato un nuovo messaggio" -#: ../../mod/register.php:53 -msgid "An invitation is required." -msgstr "E' richiesto un invito." +#: ../../mod/notifications.php:265 ../../mod/notifications.php:348 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s ha commentato il messaggio di %s" -#: ../../mod/register.php:58 -msgid "Invitation could not be verified." -msgstr "L'invito non puo' essere verificato." +#: ../../mod/notifications.php:279 ../../mod/notifications.php:355 +msgid "Nothing new!" +msgstr "Niente di nuovo!" -#: ../../mod/register.php:66 -msgid "Invalid OpenID url" -msgstr "Url OpenID non valido" +#: ../../mod/crepair.php:100 +msgid "Contact settings applied." +msgstr "Impostazioni del contatto applicate." -#: ../../mod/register.php:81 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../mod/crepair.php:102 +msgid "Contact update failed." +msgstr "Aggiornamento del contatto non riuscito." -#: ../../mod/register.php:95 -msgid "Please use a shorter name." -msgstr "Usa un nome più corto." +#: ../../mod/crepair.php:127 ../../mod/fsuggest.php:20 +#: ../../mod/fsuggest.php:92 ../../mod/dfrn_confirm.php:114 +msgid "Contact not found." +msgstr "Contatto non trovato." -#: ../../mod/register.php:97 -msgid "Name too short." -msgstr "Il Nome è troppo corto." +#: ../../mod/crepair.php:133 +msgid "Repair Contact Settings" +msgstr "Ripara le Impostazioni del Contatto" -#: ../../mod/register.php:112 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)." +#: ../../mod/crepair.php:135 +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ù" -#: ../../mod/register.php:117 -msgid "Your email domain is not among those allowed on this site." +#: ../../mod/crepair.php:136 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." msgstr "" -"Il dominio della tua email non è tra quelli autorizzati su questo sito." +"Usa ora il tasto 'Indietro' del tuo browser se non sei " +"sicuro di cosa fare in questa pagina." -#: ../../mod/register.php:120 -msgid "Not a valid email address." -msgstr "Indirizzo email invaildo." +#: ../../mod/crepair.php:145 +msgid "Account Nickname" +msgstr "Nickname dell'utente" -#: ../../mod/register.php:130 -msgid "Cannot use that email." -msgstr "Questa email non si puo' usare." +#: ../../mod/crepair.php:146 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@TagName - rimpiazza il nome / soprannome" -#: ../../mod/register.php:136 -msgid "" -"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and " -"must also begin with a letter." -msgstr "" -"Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", " -"e deve cominciare con una lettera." +#: ../../mod/crepair.php:147 +msgid "Account URL" +msgstr "URL dell'utente" -#: ../../mod/register.php:142 ../../mod/register.php:243 -msgid "Nickname is already registered. Please choose another." -msgstr "Soprannome già registrato. Scegline un'altro." +#: ../../mod/crepair.php:148 +msgid "Friend Request URL" +msgstr "URL Richiesta Amicizia" -#: ../../mod/register.php:161 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito." +#: ../../mod/crepair.php:149 +msgid "Friend Confirm URL" +msgstr "URL Conferma Amicizia" -#: ../../mod/register.php:229 -msgid "An error occurred during registration. Please try again." -msgstr "Si è verificato un errore durante la registrazione. Prova ancora." +#: ../../mod/crepair.php:150 +msgid "Notification Endpoint URL" +msgstr "URL Notifiche" -#: ../../mod/register.php:265 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora." +#: ../../mod/crepair.php:151 +msgid "Poll/Feed URL" +msgstr "URL Feed" -#: ../../mod/register.php:367 ../../mod/regmod.php:52 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli registrazione per %s" +#: ../../mod/crepair.php:152 +msgid "New photo from this URL" +msgstr "Nuova foto da questo URL" -#: ../../mod/register.php:375 -msgid "" -"Registration successful. Please check your email for further instructions." +#: ../../mod/dfrn_request.php:92 +msgid "This introduction has already been accepted." +msgstr "Questa presentazione è già stata accettata." + +#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:351 +msgid "Profile location is not valid or does not contain profile information." msgstr "" -"Registrazione completata. Controlla la tua mail per ulteriori informazioni." +"La posizione del profilo non è valida o non contiene informazioni di " +"profilo." -#: ../../mod/register.php:379 -msgid "Failed to send email message. Here is the message that failed." +#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356 +msgid "Warning: profile location has no identifiable owner name." msgstr "" -"Errore inviando il messaggio email. Questo è il messaggio non inviato." +"Attenzione: la posizione del profilo non ha un identificabile proprietario." -#: ../../mod/register.php:384 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere elaborata." +#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358 +msgid "Warning: profile location has no profile photo." +msgstr "Attenzione: la posizione del profilo non ha una foto." -#: ../../mod/register.php:421 +#: ../../mod/dfrn_request.php:126 ../../mod/dfrn_request.php:361 #, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %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 nella posizione data" +msgstr[1] "%d parametri richiesti non sono stati trovati nella posizione data" -#: ../../mod/register.php:430 -msgid "Your registration is pending approval by the site owner." -msgstr "" -"La tua richiesta è in attesa di approvazione da parte del prorietario del " -"sito." +#: ../../mod/dfrn_request.php:167 +msgid "Introduction complete." +msgstr "Presentazione completa." -#: ../../mod/register.php:479 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking 'Register'." -msgstr "" -"Puoi (opzionalmento) riempire questa maschera via OpenID inserendo il tuo " -"OpenID e cliccando 'Registra'." +#: ../../mod/dfrn_request.php:191 +msgid "Unrecoverable protocol error." +msgstr "Errore di protocollo non recuperabile." -#: ../../mod/register.php:480 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "" -"Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il " -"resto della maschera." +#: ../../mod/dfrn_request.php:219 +msgid "Profile unavailable." +msgstr "Profilo non disponibile." -#: ../../mod/register.php:481 -msgid "Your OpenID (optional): " -msgstr "Il tuo OpenID (opzionale): " +#: ../../mod/dfrn_request.php:244 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s ha ricevuto troppe richieste di connessione per oggi." -#: ../../mod/register.php:495 -msgid "Include your profile in member directory?" -msgstr "Includi il tuo profilo nell'elenco dei membir?" +#: ../../mod/dfrn_request.php:245 +msgid "Spam protection measures have been invoked." +msgstr "Sono state attivate le misure di protezione contro lo spam." -#: ../../mod/register.php:511 -msgid "Membership on this site is by invitation only." -msgstr "La registrazione su questo sito è solo su invito." +#: ../../mod/dfrn_request.php:246 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Gli amici sono pregati di riprovare tra 24 ore." -#: ../../mod/register.php:512 -msgid "Your invitation ID: " -msgstr "L'ID del tuo invito:" +#: ../../mod/dfrn_request.php:276 +msgid "Invalid locator" +msgstr "Invalid locator" -#: ../../mod/register.php:515 ../../mod/admin.php:299 -msgid "Registration" -msgstr "Registrazione" +#: ../../mod/dfrn_request.php:296 +msgid "Unable to resolve your name at the provided location." +msgstr "Impossibile risolvere il tuo nome nella posizione indicata." -#: ../../mod/register.php:523 -msgid "Your Full Name (e.g. Joe Smith): " -msgstr "Il tuo Nome Completo (p.e. Mario Rossi): " +#: ../../mod/dfrn_request.php:309 +msgid "You have already introduced yourself here." +msgstr "Ti sei già presentato qui." -#: ../../mod/register.php:524 -msgid "Your Email Address: " -msgstr "Il tuo Indirizzo Email: " +#: ../../mod/dfrn_request.php:313 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Sembra che tu sia già amico di %s." -#: ../../mod/register.php:525 -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be " -"'nickname@$sitename'." -msgstr "" -"Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo " -"profilo sarà 'soprannome@$sitename'." +#: ../../mod/dfrn_request.php:334 +msgid "Invalid profile URL." +msgstr "Indirizzo profilo invalido." -#: ../../mod/register.php:526 -msgid "Choose a nickname: " -msgstr "Scegli un soprannome: " +#: ../../mod/dfrn_request.php:430 +msgid "Your introduction has been sent." +msgstr "La tua presentazione è stata inviata." -#: ../../mod/register.php:529 ../../include/nav.php:59 ../../boot.php:637 -msgid "Register" -msgstr "Regitrati" +#: ../../mod/dfrn_request.php:483 +msgid "Please login to confirm introduction." +msgstr "Accedi per confermare la presentazione." -#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:954 -#: ../../include/diaspora.php:446 ../../include/conversation.php:26 -#: ../../include/conversation.php:35 -msgid "status" -msgstr "lo stato" +#: ../../mod/dfrn_request.php:497 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "" +"Accesso con identà incorretta. Accedi a questo profilo." -#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:958 -#: ../../include/diaspora.php:463 ../../include/conversation.php:43 +#: ../../mod/dfrn_request.php:509 #, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +msgid "Welcome home %s." +msgstr "Bentornato a casa %s." -#: ../../mod/like.php:129 ../../include/diaspora.php:465 -#: ../../include/conversation.php:46 +#: ../../mod/dfrn_request.php:510 #, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +msgid "Please confirm your introduction/connection request to %s." +msgstr "Conferma la tua richiesta di connessione con %s." -#: ../../mod/friendika.php:42 -msgid "This is Friendika version" -msgstr "Questo è Friendika versione" +#: ../../mod/dfrn_request.php:511 +msgid "Confirm" +msgstr "Conferma" -#: ../../mod/friendika.php:43 -msgid "running at web location" -msgstr "in esecuzione all'indirizzo" +#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431 +msgid "[Name Withheld]" +msgstr "[Nome Nascosto]" + +#: ../../mod/dfrn_request.php:551 +msgid "Introduction received at " +msgstr "Introduzione ricevuta su " -#: ../../mod/friendika.php:45 +#: ../../mod/dfrn_request.php:635 +#, php-format msgid "" -"Shared content within the Friendika network is provided under the Creative Commons " -"Attribution 3.0 license" +"Diaspora members: Please do not use this form. Instead, enter \"%s\" into " +"your Diaspora search bar." msgstr "" -"I contenuti condivisi nel network Friendika è rilasciato sotto la licenza Creative Commons " -"Attribution 3.0 license" +"Untenti Diaspora: non utilizzate questo modulo. Al contrario, digitate " +"\"%s\" nella barra di ricerca sul vostro pod Diaspora." -#: ../../mod/friendika.php:47 +#: ../../mod/dfrn_request.php:638 msgid "" -"Please visit Project.Friendika.com to learn " -"more about the Friendika project." +"Please enter your 'Identity Address' from one of the following supported " +"social networks:" msgstr "" -"Visita Project.Friendika.com " -"per saperne di più sul progetto Friendika." +"Inserisci il tuo \"Indirizzo Identità\" da uno dei social network " +"supportati:" -#: ../../mod/friendika.php:49 -msgid "Bug reports and issues: please visit" -msgstr "Segnalazioni di bug e problemi: visita" +#: ../../mod/dfrn_request.php:641 +msgid "Friend/Connection Request" +msgstr "Richieste di Amicizia/Connessione" -#: ../../mod/friendika.php:50 +#: ../../mod/dfrn_request.php:642 msgid "" -"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - " -"dot com" +"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" msgstr "" -"Suggerimenti, preghiere, donazioni, etc - invia una email a \"Info\" at " -"Friendika - dot.com" +"Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " +"testuser@identi.ca" -#: ../../mod/friendika.php:55 -msgid "Installed plugins/addons/apps" -msgstr "Plugin/Addon/Applicazioni installate" +#: ../../mod/dfrn_request.php:643 +msgid "Please answer the following:" +msgstr "Rispondi al seguente:" -#: ../../mod/friendika.php:63 -msgid "No installed plugins/addons/apps" -msgstr "Nessuno plugin/addons/applicazione installata" +#: ../../mod/dfrn_request.php:644 +#, php-format +msgid "Does %s know you?" +msgstr "%s ti conosce?" -#: ../../mod/regmod.php:61 -msgid "Account approved." -msgstr "Account approvato." +#: ../../mod/dfrn_request.php:647 +msgid "Add a personal note:" +msgstr "Aggiungi una nota personale:" -#: ../../mod/regmod.php:93 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/regmod.php:105 -msgid "Please login." -msgstr "Accedi." +#: ../../mod/dfrn_request.php:650 +msgid "StatusNet/Federated Social Web" +msgstr "StatusNet/Federated Social Web" -#: ../../mod/item.php:81 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../mod/dfrn_request.php:652 +msgid "- please share from your own site as noted above" +msgstr "- condividere dal tuo sito come osservato in precedenza" -#: ../../mod/item.php:196 -msgid "Empty post discarded." -msgstr "Messaggio vuoto scartato." +#: ../../mod/dfrn_request.php:653 +msgid "Your Identity Address:" +msgstr "Il tuo Indirizzo Identità:" -#: ../../mod/item.php:296 ../../mod/message.php:93 -#: ../../mod/wall_upload.php:81 ../../mod/wall_upload.php:90 -#: ../../mod/wall_upload.php:97 -msgid "Wall Photos" -msgstr "Foto Bacheca" +#: ../../mod/dfrn_request.php:654 +msgid "Submit Request" +msgstr "Invia richiesta" -#: ../../mod/item.php:623 ../../mod/item.php:668 ../../mod/item.php:691 -#: ../../mod/item.php:734 ../../mod/dfrn_notify.php:293 -#: ../../mod/dfrn_notify.php:503 ../../mod/dfrn_notify.php:548 -#: ../../mod/dfrn_notify.php:634 ../../mod/dfrn_notify.php:677 -msgid "noreply" -msgstr "nessuna risposta" +#: ../../mod/api.php:76 ../../mod/api.php:102 +msgid "Authorize application connection" +msgstr "Autorizza la connessione dell'applicazione" -#: ../../mod/item.php:667 ../../mod/item.php:733 ../../mod/dfrn_notify.php:676 -msgid "Administrator@" -msgstr "Amministratore@" +#: ../../mod/api.php:77 +msgid "Return to your app and insert this Securty Code:" +msgstr "Torna alla tua applicazione e inserisci questo codice di sicurezza:" -#: ../../mod/item.php:670 ../../mod/dfrn_notify.php:550 -#: ../../mod/dfrn_notify.php:679 -#, php-format -msgid "%s commented on an item at %s" -msgstr "%s ha commentato un elemento su %s" +#: ../../mod/api.php:89 +msgid "Please login to continue." +msgstr "Effettua il login per continuare." + +#: ../../mod/api.php:104 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "" +"Vuoi autorizzare questa applicazione per accedere ai messaggi e ai contatti," +" e / o creare nuovi messaggi per te?" + +#: ../../mod/tagger.php:70 ../../mod/like.php:127 +#: ../../addon/facebook/facebook.php:1024 +#: ../../addon/communityhome/communityhome.php:158 +#: ../../addon/communityhome/communityhome.php:167 +#: ../../include/conversation.php:26 ../../include/conversation.php:35 +#: ../../include/diaspora.php:1211 +msgid "status" +msgstr "lo stato" -#: ../../mod/item.php:736 +#: ../../mod/tagger.php:103 #, php-format -msgid "%s posted to your profile wall at %s" -msgstr "%s ha scritto sulla tua bacheca su %s" +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/item.php:765 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Messaggio non salvato." +#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1028 +#: ../../addon/communityhome/communityhome.php:172 +#: ../../include/conversation.php:43 ../../include/diaspora.php:1227 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../mod/item.php:784 +#: ../../mod/like.php:146 ../../include/conversation.php:46 #, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendika social " -"network." -msgstr "" -"Questo messaggio ti è stato inviato da %s, un membro del social network " -"Friendika." +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: ../../mod/lostpass.php:16 +msgid "No valid account found." +msgstr "Nessun account valido trovato." + +#: ../../mod/lostpass.php:31 +msgid "Password reset request issued. Check your email." +msgstr "Richiesta di reimpostazione pasword inviata. Controlla la tua email." -#: ../../mod/item.php:786 +#: ../../mod/lostpass.php:42 #, php-format -msgid "You may visit them online at %s" -msgstr "Puoi visitarli online presso %s" +msgid "Password reset requested at %s" +msgstr "Richiesta recupero password su %s" -#: ../../mod/item.php:787 +#: ../../mod/lostpass.php:64 msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi " -"messaggi." +"La richiesta non può essere verificata. (Puoi averla già richiesta " +"precendentemente). Reimpostazione password fallita." -#: ../../mod/item.php:789 -#, php-format -msgid "%s posted an update." -msgstr "%s ha inviato un aggiornamento." +#: ../../mod/lostpass.php:83 +msgid "Your password has been reset as requested." +msgstr "La tua password è stata reimpostata come richiesto." -#: ../../mod/profile_photo.php:28 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il ritaglio è fallito." +#: ../../mod/lostpass.php:84 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../mod/profile_photo.php:61 ../../mod/profile_photo.php:68 -#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:248 -#, php-format -msgid "Image size reduction [%s] failed." -msgstr "Riduzione della dimensione dell'immagine [%s] fallito." +#: ../../mod/lostpass.php:85 +msgid "Save or copy your new password - and then" +msgstr "Sava o copa la tua nuova password, quindi" -#: ../../mod/profile_photo.php:95 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../mod/lostpass.php:86 +msgid "click here to login" +msgstr "clicca qui per entrare" -#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56 -#, php-format -msgid "Image exceeds size limit of %d" -msgstr "La dimensionde dell'immagine supera il limite di %d" +#: ../../mod/lostpass.php:87 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "" +"Puoi cambiare la tua password dalla pagina Impostazioni dopo essere" +" entrato." -#: ../../mod/profile_photo.php:193 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../mod/lostpass.php:118 +msgid "Forgot your Password?" +msgstr "Dimenticato la tua password?" -#: ../../mod/profile_photo.php:194 -msgid "Upload Profile Photo" -msgstr "Carica la Foto del Profilo" +#: ../../mod/lostpass.php:119 +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 richiedere di reimpostare la tua " +"passwork." -#: ../../mod/profile_photo.php:195 -msgid "Upload" -msgstr "Carica" +#: ../../mod/lostpass.php:120 +msgid "Nickname or Email: " +msgstr "Nome utente o Email: " -#: ../../mod/profile_photo.php:196 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../mod/lostpass.php:121 +msgid "Reset" +msgstr "Reimposta" -#: ../../mod/profile_photo.php:196 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../mod/friendica.php:43 +msgid "This is Friendica, version" +msgstr "Questo è Friendica, versione" -#: ../../mod/profile_photo.php:209 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../mod/friendica.php:44 +msgid "running at web location" +msgstr "in esecuzione all'indirizzo" -#: ../../mod/profile_photo.php:210 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Sistema il ritaglio dell'imagine per una visualizzazione ottimale." +#: ../../mod/friendica.php:46 +msgid "" +"Please visit Project.Friendika.com to learn " +"more about the Friendica project." +msgstr "" +"Visita friendica.com per saperne di più" +" sul progetto Friendica." -#: ../../mod/profile_photo.php:211 -msgid "Done Editing" -msgstr "Fatto" +#: ../../mod/friendica.php:48 +msgid "Bug reports and issues: please visit" +msgstr "Segnalazioni di bug e problemi: visita" -#: ../../mod/profile_photo.php:239 -msgid "Image uploaded successfully." -msgstr "Immagine caricata con successo." +#: ../../mod/friendica.php:49 +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/hcard.php:11 ../../mod/profile.php:11 ../../boot.php:792 -msgid "No profile" -msgstr "Nessun profilo" +#: ../../mod/friendica.php:54 +msgid "Installed plugins/addons/apps" +msgstr "Plugin/Addon/Applicazioni installate" + +#: ../../mod/friendica.php:62 +msgid "No installed plugins/addons/apps" +msgstr "Nessuno plugin/addons/applicazione installata" #: ../../mod/removeme.php:42 ../../mod/removeme.php:45 msgid "Remove My Account" @@ -2374,253 +2940,228 @@ msgstr "" msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" -#: ../../mod/message.php:18 -msgid "No recipient selected." -msgstr "Nessun destinatario selezionato." - -#: ../../mod/message.php:23 -msgid "[no subject]" -msgstr "[nessun oggetto]" - -#: ../../mod/message.php:34 -msgid "Unable to locate contact information." -msgstr "Impossibile trovare le informazioni del contatto." - -#: ../../mod/message.php:102 -msgid "Message sent." -msgstr "Messaggio inviato." - -#: ../../mod/message.php:105 -msgid "Message could not be sent." -msgstr "Il messaggio non puo' essere inviato." - -#: ../../mod/message.php:125 ../../include/nav.php:102 -msgid "Messages" -msgstr "Messaggi" - -#: ../../mod/message.php:126 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../mod/message.php:127 -msgid "Outbox" -msgstr "Inviati" - -#: ../../mod/message.php:128 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../mod/apps.php:4 +msgid "Applications" +msgstr "Applicazioni" -#: ../../mod/message.php:142 -msgid "Message deleted." -msgstr "Messaggio cancellato." +#: ../../mod/apps.php:7 +msgid "No installed applications." +msgstr "Nessuna applicazione installata." -#: ../../mod/message.php:158 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../mod/notes.php:63 ../../include/text.php:628 +msgid "Save" +msgstr "Salva" -#: ../../mod/message.php:172 ../../include/conversation.php:699 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../mod/fsuggest.php:63 +msgid "Friend suggestion sent." +msgstr "Suggerimento di amicizia inviato." -#: ../../mod/message.php:180 -msgid "Send Private Message" -msgstr "Invia messaggio privato" +#: ../../mod/fsuggest.php:97 +msgid "Suggest Friends" +msgstr "Suggerisci Amici" -#: ../../mod/message.php:181 ../../mod/message.php:315 -msgid "To:" -msgstr "A:" +#: ../../mod/fsuggest.php:99 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Suggerisci un amico a %s" -#: ../../mod/message.php:182 ../../mod/message.php:316 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../mod/viewsrc.php:7 +msgid "Access denied." +msgstr "Accesso negato." -#: ../../mod/message.php:185 ../../mod/message.php:319 -#: ../../mod/invite.php:101 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../mod/directory.php:49 +msgid "Global Directory" +msgstr "Elenco Globale" -#: ../../mod/message.php:224 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../mod/directory.php:55 +msgid "Normal site view" +msgstr "Vista normale" -#: ../../mod/message.php:237 -msgid "Delete conversation" -msgstr "Cancella conversazione" +#: ../../mod/directory.php:57 +msgid "Admin - View all site entries" +msgstr "Admin - Visualizza tutte le voci del sito" -#: ../../mod/message.php:240 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" +#: ../../mod/directory.php:63 +msgid "Find on this site" +msgstr "Cerca nel sito" -#: ../../mod/message.php:267 -msgid "Message not available." -msgstr "Messaggio non disponibile." +#: ../../mod/directory.php:66 +msgid "Site Directory" +msgstr "Elenco del Sito" -#: ../../mod/message.php:304 -msgid "Delete message" -msgstr "Cancella messaggio" +#: ../../mod/directory.php:125 +msgid "Gender: " +msgstr "Genere:" -#: ../../mod/message.php:314 -msgid "Send Reply" -msgstr "Invia risposta" +#: ../../mod/directory.php:151 +msgid "No entries (some entries may be hidden)." +msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." -#: ../../mod/admin.php:66 ../../mod/admin.php:297 +#: ../../mod/admin.php:59 ../../mod/admin.php:295 msgid "Site" msgstr "Sito" -#: ../../mod/admin.php:67 ../../mod/admin.php:460 ../../mod/admin.php:472 +#: ../../mod/admin.php:60 ../../mod/admin.php:460 ../../mod/admin.php:472 msgid "Users" msgstr "Utenti" -#: ../../mod/admin.php:68 ../../mod/admin.php:549 ../../mod/admin.php:586 +#: ../../mod/admin.php:61 ../../mod/admin.php:549 ../../mod/admin.php:586 msgid "Plugins" msgstr "Plugin" -#: ../../mod/admin.php:69 -msgid "Update" -msgstr "Aggiorna" - -#: ../../mod/admin.php:83 ../../mod/admin.php:651 +#: ../../mod/admin.php:76 ../../mod/admin.php:651 msgid "Logs" msgstr "Log" -#: ../../mod/admin.php:88 +#: ../../mod/admin.php:81 msgid "User registrations waiting for confirmation" msgstr "Utenti registrati in attesa di conferma" -#: ../../mod/admin.php:118 ../../mod/admin.php:502 ../../mod/display.php:25 -#: ../../mod/display.php:112 ../../include/items.php:1842 -msgid "Item not found." -msgstr "Elemento non trovato." - -#: ../../mod/admin.php:151 ../../mod/admin.php:296 ../../mod/admin.php:459 +#: ../../mod/admin.php:144 ../../mod/admin.php:294 ../../mod/admin.php:459 #: ../../mod/admin.php:548 ../../mod/admin.php:585 ../../mod/admin.php:650 msgid "Administration" msgstr "Amministrazione" -#: ../../mod/admin.php:152 +#: ../../mod/admin.php:145 msgid "Summary" msgstr "Sommario" -#: ../../mod/admin.php:153 +#: ../../mod/admin.php:146 msgid "Registered users" msgstr "Utenti registrati" -#: ../../mod/admin.php:155 +#: ../../mod/admin.php:148 msgid "Pending registrations" msgstr "Registrazioni in attesa" -#: ../../mod/admin.php:156 +#: ../../mod/admin.php:149 msgid "Version" msgstr "Versione" -#: ../../mod/admin.php:158 +#: ../../mod/admin.php:151 msgid "Active plugins" msgstr "Plugin attivi" -#: ../../mod/admin.php:245 +#: ../../mod/admin.php:243 msgid "Site settings updated." msgstr "Impostazioni del sito aggiornate." -#: ../../mod/admin.php:289 +#: ../../mod/admin.php:287 msgid "Closed" msgstr "Chiusa" -#: ../../mod/admin.php:290 +#: ../../mod/admin.php:288 msgid "Requires approval" msgstr "Richiede l'approvazione" -#: ../../mod/admin.php:291 +#: ../../mod/admin.php:289 msgid "Open" msgstr "Aperta" -#: ../../mod/admin.php:300 +#: ../../mod/admin.php:298 msgid "File upload" msgstr "Caricamento file" -#: ../../mod/admin.php:301 +#: ../../mod/admin.php:299 msgid "Policies" msgstr "Politiche" -#: ../../mod/admin.php:302 +#: ../../mod/admin.php:300 msgid "Advanced" msgstr "Avanzate" -#: ../../mod/admin.php:306 ../../addon/statusnet/statusnet.php:459 +#: ../../mod/admin.php:304 ../../addon/statusnet/statusnet.php:477 msgid "Site name" msgstr "Nome del sito" -#: ../../mod/admin.php:307 +#: ../../mod/admin.php:305 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../mod/admin.php:308 +#: ../../mod/admin.php:306 msgid "System language" msgstr "Lingua di sistema" -#: ../../mod/admin.php:309 +#: ../../mod/admin.php:307 msgid "System theme" msgstr "Tema di sistema" -#: ../../mod/admin.php:311 +#: ../../mod/admin.php:309 msgid "Maximum image size" msgstr "Massima dimensione immagini" -#: ../../mod/admin.php:313 +#: ../../mod/admin.php:311 msgid "Register policy" msgstr "Politica di registrazione" -#: ../../mod/admin.php:314 +#: ../../mod/admin.php:312 msgid "Register text" msgstr "Testo registrazione" -#: ../../mod/admin.php:315 +#: ../../mod/admin.php:313 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo x giorni" + +#: ../../mod/admin.php:313 +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:314 msgid "Allowed friend domains" msgstr "Domini amici consentiti" -#: ../../mod/admin.php:316 +#: ../../mod/admin.php:315 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: ../../mod/admin.php:317 +#: ../../mod/admin.php:316 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: ../../mod/admin.php:318 +#: ../../mod/admin.php:317 msgid "Force publish" msgstr "Forza publicazione" -#: ../../mod/admin.php:319 +#: ../../mod/admin.php:318 msgid "Global directory update URL" msgstr "URL aggiornamento Elenco Globale" -#: ../../mod/admin.php:321 +#: ../../mod/admin.php:320 msgid "Block multiple registrations" msgstr "Blocca registrazioni multiple" -#: ../../mod/admin.php:322 +#: ../../mod/admin.php:321 msgid "OpenID support" msgstr "Supporto OpenID" -#: ../../mod/admin.php:323 +#: ../../mod/admin.php:322 msgid "Gravatar support" msgstr "Supporto Gravatar" -#: ../../mod/admin.php:324 +#: ../../mod/admin.php:323 msgid "Fullname check" msgstr "Controllo nome completo" -#: ../../mod/admin.php:325 +#: ../../mod/admin.php:324 msgid "UTF-8 Regular expressions" msgstr "Espressioni regolari UTF-8" -#: ../../mod/admin.php:326 +#: ../../mod/admin.php:325 msgid "Show Community Page" msgstr "Mostra pagina Comunità" -#: ../../mod/admin.php:327 +#: ../../mod/admin.php:326 msgid "Enable OStatus support" msgstr "Abilita supporto OStatus" +#: ../../mod/admin.php:327 +msgid "Enable Diaspora support" +msgstr "Abilita il supporto a Diaspora" + #: ../../mod/admin.php:328 msgid "Only allow Friendika contacts" msgstr "Permetti solo contatti Friendika" @@ -2683,6 +3224,7 @@ msgid "Request date" msgstr "Data richiesta" #: ../../mod/admin.php:464 ../../mod/admin.php:473 +#: ../../include/contact_selectors.php:78 msgid "Email" msgstr "Email" @@ -2694,14 +3236,6 @@ msgstr "Nessuna registrazione." msgid "Deny" msgstr "Nega" -#: ../../mod/admin.php:469 -msgid "Block" -msgstr "Blocca" - -#: ../../mod/admin.php:470 -msgid "Unblock" -msgstr "Sblocca" - #: ../../mod/admin.php:473 msgid "Register date" msgstr "Data registrazione" @@ -2757,7 +3291,7 @@ msgstr "Abilita" msgid "Toggle" msgstr "Inverti" -#: ../../mod/admin.php:551 ../../include/nav.php:108 +#: ../../mod/admin.php:551 ../../include/nav.php:128 msgid "Settings" msgstr "Impostazioni" @@ -2807,563 +3341,598 @@ msgstr "Utente FTP" msgid "FTP Password" msgstr "Pasword FTP" -#: ../../mod/profile.php:102 ../../mod/display.php:63 -msgid "Access to this profile has been restricted." -msgstr "L'accesso a questo profilo è stato limitato." +#: ../../mod/item.php:84 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../mod/profile.php:133 -msgid "Tips for New Members" -msgstr "Consigli per i Nuovi Utenti" +#: ../../mod/item.php:199 +msgid "Empty post discarded." +msgstr "Messaggio vuoto scartato." -#: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:120 -#: ../../include/auth.php:145 ../../include/auth.php:198 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../mod/item.php:675 ../../mod/item.php:720 ../../mod/item.php:764 +#: ../../mod/item.php:807 ../../include/items.php:1769 +#: ../../include/items.php:2068 ../../include/items.php:2115 +#: ../../include/items.php:2227 ../../include/items.php:2273 +msgid "noreply" +msgstr "nessuna risposta" -#: ../../mod/openid.php:78 ../../include/auth.php:214 -msgid "Welcome " -msgstr "Benvenuto" +#: ../../mod/item.php:719 ../../mod/item.php:806 ../../include/items.php:2272 +msgid "Administrator@" +msgstr "Amministratore@" -#: ../../mod/openid.php:79 ../../include/auth.php:215 -msgid "Please upload a profile photo." -msgstr "Carica una foto per il profilo." +#: ../../mod/item.php:722 ../../include/items.php:2117 +#: ../../include/items.php:2275 +#, php-format +msgid "%s commented on an item at %s" +msgstr "%s ha commentato un elemento su %s" -#: ../../mod/openid.php:82 ../../include/auth.php:218 -msgid "Welcome back " -msgstr "Bentornato " +#: ../../mod/item.php:809 +#, php-format +msgid "%s posted to your profile wall at %s" +msgstr "%s ha scritto sulla tua bacheca su %s" -#: ../../mod/follow.php:39 +#: ../../mod/item.php:843 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Messaggio non salvato." + +#: ../../mod/item.php:868 +#, php-format msgid "" -"This site is not configured to allow communications with other networks." -msgstr "" -"Questo sito non è configurato per permettere la comunicazione con altri " +"This message was sent to you by %s, a member of the Friendika social " "network." - -#: ../../mod/follow.php:40 ../../mod/follow.php:50 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "" -"Non sono stati trovati nessun protocollo di comunicazione o feed " -"compatibili." - -#: ../../mod/follow.php:48 -msgid "The profile address specified does not provide adequate information." msgstr "" -"L'indirizzo del profilo specificato non fornisce adeguate informazioni." - -#: ../../mod/follow.php:52 -msgid "An author or name was not found." -msgstr "Non è stato trovato un nome dell'autore" - -#: ../../mod/follow.php:54 -msgid "No browser URL could be matched to this address." -msgstr "Nessun URL puo' essere associato a questo indirizzo." +"Questo messaggio ti è stato inviato da %s, un membro del social network " +"Friendika." -#: ../../mod/follow.php:61 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "" -"L'indirizzo del profilo specificato appartiene a un network che è stato " -"disabilitato su questo sito." +#: ../../mod/item.php:870 +#, php-format +msgid "You may visit them online at %s" +msgstr "Puoi visitarli online presso %s" -#: ../../mod/follow.php:66 +#: ../../mod/item.php:871 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 nofiche " -"dirette/personali da te." - -#: ../../mod/follow.php:122 -msgid "Unable to retrieve contact information." -msgstr "Impossibile recuperare informazioni sul contatto." - -#: ../../mod/follow.php:168 -msgid "following" -msgstr "segue" - -#: ../../mod/display.php:105 -msgid "Item has been removed." -msgstr "L'elemento è stato rimosso." - -#: ../../mod/dfrn_notify.php:353 -msgid "New mail received at " -msgstr "Nuova mail ricevuta su " - -#: ../../mod/apps.php:6 -msgid "Applications" -msgstr "Applicazioni" - -#: ../../mod/apps.php:11 -msgid "No installed applications." -msgstr "Nessuna applicazione installata." - -#: ../../mod/search.php:26 ../../include/text.php:610 ../../include/nav.php:69 -msgid "Search" -msgstr "Cerca" - -#: ../../mod/profiles.php:21 ../../mod/profiles.php:236 -#: ../../mod/profiles.php:341 ../../mod/dfrn_confirm.php:62 -msgid "Profile not found." -msgstr "Profilo non trovato." - -#: ../../mod/profiles.php:28 -msgid "Profile Name is required." -msgstr "Il Nome Profilo è richiesto ." - -#: ../../mod/profiles.php:198 -msgid "Profile updated." -msgstr "Profilo aggiornato." - -#: ../../mod/profiles.php:253 -msgid "Profile deleted." -msgstr "Profilo elminato." - -#: ../../mod/profiles.php:269 ../../mod/profiles.php:300 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../mod/profiles.php:288 ../../mod/profiles.php:327 -msgid "New profile created." -msgstr "Nuovo profilo creato." - -#: ../../mod/profiles.php:306 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il plrofilo." - -#: ../../mod/profiles.php:353 -msgid "Hide your contact/friend list from viewers of this profile?" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." msgstr "" -"Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?" +"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi " +"messaggi." -#: ../../mod/profiles.php:371 -msgid "Edit Profile Details" -msgstr "Modifica i Dettagli del Profilo" +#: ../../mod/item.php:873 +#, php-format +msgid "%s posted an update." +msgstr "%s ha inviato un aggiornamento." -#: ../../mod/profiles.php:373 -msgid "View this profile" -msgstr "Visualizza questo profilo" +#: ../../mod/tagrm.php:41 +msgid "Tag removed" +msgstr "TAg rimosso" -#: ../../mod/profiles.php:374 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../mod/tagrm.php:79 +msgid "Remove Item Tag" +msgstr "Rimuovi tag dall'elemento" -#: ../../mod/profiles.php:375 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../mod/tagrm.php:81 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../mod/profiles.php:376 -msgid "Delete this profile" -msgstr "Cancella questo profilo" +#: ../../mod/tagrm.php:93 +msgid "Remove" +msgstr "Rimuovi" -#: ../../mod/profiles.php:377 -msgid "Profile Name:" -msgstr "Nome del profilo:" +#: ../../mod/message.php:23 +msgid "No recipient selected." +msgstr "Nessun destinatario selezionato." -#: ../../mod/profiles.php:378 -msgid "Your Full Name:" -msgstr "Il tuo nome completo:" +#: ../../mod/message.php:26 +msgid "Unable to locate contact information." +msgstr "Impossibile trovare le informazioni del contatto." -#: ../../mod/profiles.php:379 -msgid "Title/Description:" -msgstr "Breve descrizione (es. titolo, posizione, altro):" +#: ../../mod/message.php:29 +msgid "Message could not be sent." +msgstr "Il messaggio non puo' essere inviato." -#: ../../mod/profiles.php:380 -msgid "Your Gender:" -msgstr "Il tuo sesso:" +#: ../../mod/message.php:31 +msgid "Message sent." +msgstr "Messaggio inviato." -#: ../../mod/profiles.php:381 -#, php-format -msgid "Birthday (%s):" -msgstr "Compleanno (%s)" +#: ../../mod/message.php:51 +msgid "Inbox" +msgstr "In arrivo" -#: ../../mod/profiles.php:382 -msgid "Street Address:" -msgstr "Indirizzo:" +#: ../../mod/message.php:56 +msgid "Outbox" +msgstr "Inviati" -#: ../../mod/profiles.php:383 -msgid "Locality/City:" -msgstr "Località/Città:" +#: ../../mod/message.php:61 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../mod/profiles.php:384 -msgid "Postal/Zip Code:" -msgstr "CAP:" +#: ../../mod/message.php:87 +msgid "Message deleted." +msgstr "Messaggio cancellato." -#: ../../mod/profiles.php:385 -msgid "Country:" -msgstr "Nazione:" +#: ../../mod/message.php:103 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../mod/profiles.php:386 -msgid "Region/State:" -msgstr "Regione/Stato:" +#: ../../mod/message.php:119 ../../include/conversation.php:767 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../mod/profiles.php:387 -msgid " Marital Status:" -msgstr " Stato sentimentale:" +#: ../../mod/message.php:127 +msgid "Send Private Message" +msgstr "Invia messaggio privato" -#: ../../mod/profiles.php:388 -msgid "Who: (if applicable)" -msgstr "Con chi: (se possibile)" +#: ../../mod/message.php:128 ../../mod/message.php:261 +msgid "To:" +msgstr "A:" -#: ../../mod/profiles.php:389 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../mod/message.php:129 ../../mod/message.php:262 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:90 -msgid "Sexual Preference:" -msgstr "Preferenza sessuale:" +#: ../../mod/message.php:170 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../mod/profiles.php:391 -msgid "Homepage URL:" -msgstr "Indirizzo homepage:" +#: ../../mod/message.php:183 +msgid "Delete conversation" +msgstr "Cancella conversazione" -#: ../../mod/profiles.php:392 ../../include/profile_advanced.php:115 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../mod/message.php:186 +msgid "D, d M Y - g:i A" +msgstr "D d M Y - G:i" -#: ../../mod/profiles.php:393 -msgid "Religious Views:" -msgstr "Orientamento religioso:" +#: ../../mod/message.php:213 +msgid "Message not available." +msgstr "Messaggio non disponibile." -#: ../../mod/profiles.php:394 -msgid "Public Keywords:" -msgstr "Parole chiave pubbliche:" +#: ../../mod/message.php:250 +msgid "Delete message" +msgstr "Cancella messaggio" -#: ../../mod/profiles.php:395 -msgid "Private Keywords:" -msgstr "Parole chiave private:" +#: ../../mod/message.php:260 +msgid "Send Reply" +msgstr "Invia risposta" -#: ../../mod/profiles.php:396 -msgid "Example: fishing photography software" -msgstr "Esempio: pesca fotografia programmazione" +#: ../../mod/dfrn_confirm.php:234 +msgid "Response from remote site was not understood." +msgstr "La risposta dal sito remota non è stata capita." -#: ../../mod/profiles.php:397 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "" -"(Utilizzato per suggerire potenziali amici, può essere visto da altri)" +#: ../../mod/dfrn_confirm.php:243 +msgid "Unexpected response from remote site: " +msgstr "Risposta dal sito remoto inaspettata: " -#: ../../mod/profiles.php:398 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)" +#: ../../mod/dfrn_confirm.php:251 +msgid "Confirmation completed successfully." +msgstr "Conferma completata con successo." -#: ../../mod/profiles.php:399 -msgid "Tell us about yourself..." -msgstr "Racconta di te..." +#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267 +#: ../../mod/dfrn_confirm.php:274 +msgid "Remote site reported: " +msgstr "Il sito remoto riporta: " -#: ../../mod/profiles.php:400 -msgid "Hobbies/Interests" -msgstr "Hobbie/Interessi" +#: ../../mod/dfrn_confirm.php:265 +msgid "Temporary failure. Please wait and try again." +msgstr "Errore temporaneo. Attendi e riprova." -#: ../../mod/profiles.php:401 -msgid "Contact information and Social Networks" -msgstr "Informazioni su contatti e Social network" +#: ../../mod/dfrn_confirm.php:272 +msgid "Introduction failed or was revoked." +msgstr "La presentazione è fallita o è stata revocata." -#: ../../mod/profiles.php:402 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../mod/dfrn_confirm.php:409 +msgid "Unable to set contact photo." +msgstr "Impossibile impostare la foto del contatto." -#: ../../mod/profiles.php:403 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../mod/dfrn_confirm.php:459 ../../include/conversation.php:79 +#: ../../include/diaspora.php:477 +#, php-format +msgid "%1$s is now friends with %2$s" +msgstr "%1$s è ora amico di %2$s" -#: ../../mod/profiles.php:404 -msgid "Television" -msgstr "Televisione" +#: ../../mod/dfrn_confirm.php:530 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nessun utente trovato per '%s'" -#: ../../mod/profiles.php:405 -msgid "Film/dance/culture/entertainment" -msgstr "Film/danza/cultura/intrattenimento" +#: ../../mod/dfrn_confirm.php:540 +msgid "Our site encryption key is apparently messed up." +msgstr "La nostra chiave di criptazione del sito è apparentemente incasinata." -#: ../../mod/profiles.php:406 -msgid "Love/romance" -msgstr "Amore/romanticismo" +#: ../../mod/dfrn_confirm.php:551 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "" +"E' stato fornito un indirizzo vuoto o non possiamo decriptare l'indirizzo." -#: ../../mod/profiles.php:407 -msgid "Work/employment" -msgstr "Lavoro/impiego" +#: ../../mod/dfrn_confirm.php:572 +msgid "Contact record was not found for you on our site." +msgstr "Il contatto non è stato trovato sul nostro sito." -#: ../../mod/profiles.php:408 -msgid "School/education" -msgstr "Scuola/educazione" +#: ../../mod/dfrn_confirm.php:586 +#, 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/profiles.php:413 +#: ../../mod/dfrn_confirm.php:606 msgid "" -"This is your public profile.
It may " -"be visible to anybody using the internet." +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." msgstr "" -"Questo è il tuo profilo publico.
Potrebbe essere visto da chiunque attraverso internet." +"L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe " +"funzionare se provi ancora." -#: ../../mod/profiles.php:423 ../../mod/directory.php:112 -msgid "Age: " -msgstr "Età : " +#: ../../mod/dfrn_confirm.php:617 +msgid "Unable to set your contact credentials on our system." +msgstr "" +"Impossibile impostare le credenziali del tuo contatto sul nostro sistema." -#: ../../mod/profiles.php:458 ../../include/nav.php:109 -msgid "Profiles" -msgstr "Profili" +#: ../../mod/dfrn_confirm.php:671 +msgid "Unable to update your contact profile details on our system" +msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" -#: ../../mod/profiles.php:459 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../mod/dfrn_confirm.php:701 +#, php-format +msgid "Connection accepted at %s" +msgstr "Connession accettata su %s" -#: ../../mod/profiles.php:460 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../mod/openid.php:63 ../../mod/openid.php:123 ../../include/auth.php:122 +#: ../../include/auth.php:147 ../../include/auth.php:201 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../mod/profiles.php:470 -msgid "Profile Image" -msgstr "Immagine del Profilo" +#: ../../mod/openid.php:79 ../../include/auth.php:217 +msgid "Welcome " +msgstr "Benvenuto" -#: ../../mod/profiles.php:472 -msgid "visible to everybody" -msgstr "visibile a tutti" +#: ../../mod/openid.php:80 ../../include/auth.php:218 +msgid "Please upload a profile photo." +msgstr "Carica una foto per il profilo." -#: ../../mod/profiles.php:473 -msgid "Edit visibility" -msgstr "Modifica visibilità" +#: ../../mod/openid.php:83 ../../include/auth.php:221 +msgid "Welcome back " +msgstr "Bentornato " -#: ../../mod/directory.php:40 -msgid "Global Directory" -msgstr "Elenco Globale" +#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516 +#, php-format +msgid "%s welcomes %s" +msgstr "%s da il benvenuto a %s" -#: ../../mod/directory.php:46 -msgid "Normal site view" -msgstr "Vista normale" +#: ../../mod/viewcontacts.php:25 ../../include/text.php:567 +msgid "View Contacts" +msgstr "Guarda contatti" -#: ../../mod/directory.php:48 -msgid "View all site entries" -msgstr "Visualizza tutte le voci del sito" +#: ../../mod/viewcontacts.php:40 +msgid "No contacts." +msgstr "Nessuno contatto." -#: ../../mod/directory.php:56 -msgid "Site Directory" -msgstr "Elenco del Sito" +#: ../../mod/group.php:27 +msgid "Group created." +msgstr "Gruppo creato." -#: ../../mod/directory.php:115 -msgid "Gender: " -msgstr "Genere:" +#: ../../mod/group.php:33 +msgid "Could not create group." +msgstr "Impossibile creare il gruppo." -#: ../../mod/directory.php:141 -msgid "No entries (some entries may be hidden)." -msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." +#: ../../mod/group.php:43 ../../mod/group.php:123 +msgid "Group not found." +msgstr "Gruppo non trovato." -#: ../../mod/invite.php:35 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: Non è un indirizzo email valido." +#: ../../mod/group.php:56 +msgid "Group name changed." +msgstr "Il nome del gruppo è cambiato." -#: ../../mod/invite.php:59 -#, php-format -msgid "Please join my network on %s" -msgstr "Unisciti al mio social network su %s" +#: ../../mod/group.php:82 +msgid "Create a group of contacts/friends." +msgstr "Crea un gruppo di amici/contatti." + +#: ../../mod/group.php:83 ../../mod/group.php:166 +msgid "Group Name: " +msgstr "Nome del gruppo:" + +#: ../../mod/group.php:98 +msgid "Group removed." +msgstr "Gruppo rimosso." + +#: ../../mod/group.php:100 +msgid "Unable to remove group." +msgstr "Impossibile rimuovere il gruppo." + +#: ../../mod/group.php:165 +msgid "Group Editor" +msgstr "Modifica gruppo" + +#: ../../mod/group.php:179 +msgid "Members" +msgstr "Membri" -#: ../../mod/invite.php:69 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Consegna del messaggio fallita." +#: ../../mod/group.php:194 +msgid "All Contacts" +msgstr "Tutti i Contatti" -#: ../../mod/invite.php:73 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../mod/attach.php:8 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../mod/invite.php:92 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../mod/attach.php:20 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../mod/invite.php:99 -msgid "Send invitations" -msgstr "Invia inviti" +#: ../../mod/common.php:34 +msgid "Common Friends" +msgstr "Amici in comune" -#: ../../mod/invite.php:100 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../mod/common.php:42 +msgid "No friends in common." +msgstr "Non ci sono amici in comune." -#: ../../mod/invite.php:102 -#, php-format -msgid "Please join my social network on %s" -msgstr "Unisciti al mio social network su %s" +#: ../../mod/match.php:10 +msgid "Profile Match" +msgstr "Profili combacianti" -#: ../../mod/invite.php:103 -msgid "To accept this invitation, please visit:" -msgstr "Per accettare questo invito visita:" +#: ../../mod/match.php:18 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "" +"Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo " +"profilo predefinito." -#: ../../mod/invite.php:104 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Sarà necessario fornire questo codice invito: $ invite_code" +#: ../../mod/community.php:21 +msgid "Not available." +msgstr "Non disponibile." -#: ../../mod/invite.php:104 +#: ../../mod/community.php:30 ../../include/nav.php:97 +msgid "Community" +msgstr "Comunità" + +#: ../../mod/community.php:87 msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Una volta registrato, connettiti con me sul mio profilo a:" +"Shared content is covered by the Creative Commons " +"Attribution 3.0 license." +msgstr "" +"Il contenuto in comune è coperto dalla licenza Creative Commons" +" Attribuzione 3.0." -#: ../../mod/dfrn_confirm.php:233 -msgid "Response from remote site was not understood." -msgstr "La risposta dal sito remota non è stata capita." +#: ../../addon/tumblr/tumblr.php:35 +msgid "Post to Tumblr" +msgstr "Pubblica su Tumblr" -#: ../../mod/dfrn_confirm.php:242 -msgid "Unexpected response from remote site: " -msgstr "Risposta dal sito remoto inaspettata: " +#: ../../addon/tumblr/tumblr.php:66 +msgid "Tumblr Post Settings" +msgstr "Impostazioni di invio a Tumblr" -#: ../../mod/dfrn_confirm.php:250 -msgid "Confirmation completed successfully." -msgstr "Conferma completata con successo." +#: ../../addon/tumblr/tumblr.php:68 +msgid "Enable Tumblr Post Plugin" +msgstr "Abilita Plugin Tumblr" -#: ../../mod/dfrn_confirm.php:252 ../../mod/dfrn_confirm.php:266 -#: ../../mod/dfrn_confirm.php:273 -msgid "Remote site reported: " -msgstr "Il sito remoto riporta: " +#: ../../addon/tumblr/tumblr.php:73 +msgid "Tumblr login" +msgstr "Tumblr login" -#: ../../mod/dfrn_confirm.php:264 -msgid "Temporary failure. Please wait and try again." -msgstr "Errore temporaneo. Attendi e riprova." +#: ../../addon/tumblr/tumblr.php:78 +msgid "Tumblr password" +msgstr "Tumblr password" -#: ../../mod/dfrn_confirm.php:271 -msgid "Introduction failed or was revoked." -msgstr "La presentazione è fallita o è stata revocata." +#: ../../addon/tumblr/tumblr.php:83 +msgid "Post to Tumblr by default" +msgstr "Pubblica su Tumblr di default" -#: ../../mod/dfrn_confirm.php:393 -msgid "Unable to set contact photo." -msgstr "Impossibile impostare la foto del contatto." +#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171 +msgid "Post from Friendica" +msgstr "Messaggio da Friendica" -#: ../../mod/dfrn_confirm.php:436 ../../include/conversation.php:79 -#, php-format -msgid "%1$s is now friends with %2$s" -msgstr "%1$s è ora amico di %2$s" +#: ../../addon/twitter/twitter.php:78 +msgid "Post to Twitter" +msgstr "Inva a Twitter" -#: ../../mod/dfrn_confirm.php:507 -#, php-format -msgid "No user record found for '%s' " -msgstr "Nessun utente trovato per '%s'" +#: ../../addon/twitter/twitter.php:123 +msgid "Twitter settings updated." +msgstr "Impostazioni di Twitter aggiornate." -#: ../../mod/dfrn_confirm.php:517 -msgid "Our site encryption key is apparently messed up." -msgstr "La nostra chiave di criptazione del sito è apparentemente incasinata." +#: ../../addon/twitter/twitter.php:145 +msgid "Twitter Posting Settings" +msgstr "Impostazioni Invio a Twitter" -#: ../../mod/dfrn_confirm.php:528 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: ../../addon/twitter/twitter.php:152 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -"E' stato fornito un indirizzo vuoto o non possiamo decriptare l'indirizzo." - -#: ../../mod/dfrn_confirm.php:549 -msgid "Contact record was not found for you on our site." -msgstr "Il contatto non è stato trovato sul nostro sito." +"Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore" +" del sito." -#: ../../mod/dfrn_confirm.php:578 +#: ../../addon/twitter/twitter.php:171 msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." +"At this Friendika 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 "" -"L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe " -"funzionare se provi ancora." +"Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai" +" ancora collegato il tuo account locale con il tuo account su Twitter. Per " +"farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che " +"dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi " +"messaggi pubblici verranno inviati anche su Twitter." -#: ../../mod/dfrn_confirm.php:589 -msgid "Unable to set your contact credentials on our system." +#: ../../addon/twitter/twitter.php:172 +msgid "Log in with Twitter" +msgstr "Accedi con Twitter" + +#: ../../addon/twitter/twitter.php:174 +msgid "Copy the PIN from Twitter here" +msgstr "Copia il PIN da Twitter qui" + +#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337 +msgid "Currently connected to: " +msgstr "Al momento collegato con:" + +#: ../../addon/twitter/twitter.php:189 +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 "" -"Impossibile impostare le credenziali del tuo contatto sul nostro sistema." +"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." -#: ../../mod/dfrn_confirm.php:642 -msgid "Unable to update your contact profile details on our system" -msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema" +#: ../../addon/twitter/twitter.php:191 +msgid "Allow posting to Twitter" +msgstr "Permetti l'invio a Twitter" -#: ../../mod/dfrn_confirm.php:672 -#, php-format -msgid "Connection accepted at %s" -msgstr "Connession accettata su %s" +#: ../../addon/twitter/twitter.php:194 +msgid "Send public postings to Twitter by default" +msgstr "Invia sempre i messaggi pubblici a Twitter" -#: ../../addon/facebook/facebook.php:314 -msgid "Facebook disabled" -msgstr "Facebook disabilitato" +#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348 +msgid "Clear OAuth configuration" +msgstr "Cancella la configurazione OAuth" -#: ../../addon/facebook/facebook.php:319 -msgid "Updating contacts" -msgstr "Aggiornamento contatti" +#: ../../addon/twitter/twitter.php:301 +msgid "Consumer key" +msgstr "Consumer key" -#: ../../addon/facebook/facebook.php:328 -msgid "Facebook API key is missing." -msgstr "Chiave API Facebook mancante." +#: ../../addon/twitter/twitter.php:302 +msgid "Consumer secret" +msgstr "Consumer secret" -#: ../../addon/facebook/facebook.php:335 -msgid "Facebook Connect" -msgstr "Facebook Connect" +#: ../../addon/statusnet/statusnet.php:141 +msgid "Post to StatusNet" +msgstr "Invia a StatusNet" -#: ../../addon/facebook/facebook.php:341 -msgid "Install Facebook connector for this account." -msgstr "Installa Facebook connector per questo account" +#: ../../addon/statusnet/statusnet.php:183 +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/facebook/facebook.php:348 -msgid "Remove Facebook connector" -msgstr "Rimuovi Facebook connector" +#: ../../addon/statusnet/statusnet.php:211 +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/facebook/facebook.php:354 -msgid "Post to Facebook by default" -msgstr "Invia su Facebook di default" +#: ../../addon/statusnet/statusnet.php:238 +msgid "StatusNet settings updated." +msgstr "Impostazioni StatusNet aggiornate." -#: ../../addon/facebook/facebook.php:358 -msgid "Link all your Facebook friends and conversations" -msgstr "Collega tutti i tuoi amici di Facebook e le conversazioni" +#: ../../addon/statusnet/statusnet.php:261 +msgid "StatusNet Posting Settings" +msgstr "Impostazioni di invio a StatusNet" + +#: ../../addon/statusnet/statusnet.php:275 +msgid "Globally Available StatusNet OAuthKeys" +msgstr "Chiavi OAuth StatusNet disponibili sul sito" -#: ../../addon/facebook/facebook.php:363 -msgid "Warning: Your Facebook privacy settings can not be imported." +#: ../../addon/statusnet/statusnet.php:276 +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 "" -"Attenzione: Le impostazioni di privacy di Facebook non possono essere " -"importate." +"Queste sono chiavi OAuth precofigurate disponibili per alcuni server " +"StatusNet. Se stai usando uno di questi server, per favore usa queste " +"credenziali. Altrimenti sei libero di collegarti a un'altra installazione di" +" StatusNet (vedi sotto)." -#: ../../addon/facebook/facebook.php:364 +#: ../../addon/statusnet/statusnet.php:284 +msgid "Provide your own OAuth Credentials" +msgstr "Fornisci le tue credenziali OAuth" + +#: ../../addon/statusnet/statusnet.php:285 msgid "" -"Linked Facebook items may be publicly visible, depending on" -" your privacy settings for this website/account." +"No consumer key pair for StatusNet found. Register your Friendika 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 " +"Friendika installation at your favorited StatusNet installation." msgstr "" -"Gli elementi da Facebook possono essere visibili " -"pubblicamente, a seconda delle tue impostazioni di privacy per questo " -"sito/account" +"Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo " +"Account Friendika come un client desktop sul tuo account StatusNet, copia la" +" coppia di chiavi qui e inserisci l'url di base delle API.
Prima di " +"registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se " +"esiste già una coppia di chiavi per questa installazione di Friendika sulla " +"installazione di StatusNet che ti interessa." -#: ../../addon/facebook/facebook.php:419 -msgid "Facebook" -msgstr "Facebook" +#: ../../addon/statusnet/statusnet.php:287 +msgid "OAuth Consumer Key" +msgstr "OAuth Consumer Key" -#: ../../addon/facebook/facebook.php:420 -msgid "Facebook Connector Settings" -msgstr "Impostazioni Connettore Facebook" +#: ../../addon/statusnet/statusnet.php:290 +msgid "OAuth Consumer Secret" +msgstr "OAuth Consumer Secret" -#: ../../addon/facebook/facebook.php:434 -msgid "Post to Facebook" -msgstr "Invia a Facebook" +#: ../../addon/statusnet/statusnet.php:293 +msgid "Base API Path (remember the trailing /)" +msgstr "Indirizzo di base per le API (ricorda la / alla fine)" -#: ../../addon/facebook/facebook.php:507 +#: ../../addon/statusnet/statusnet.php:314 msgid "" -"Post to Facebook cancelled because of multi-network access permission " -"conflict." -msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso." +"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 qui sotto per " +"ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più" +" sotto per poi inviare la form. Solo i tuoi messaggi " +"pubblci saranno inviati a StatusNet." -#: ../../addon/facebook/facebook.php:580 -msgid "Image: " -msgstr "Immagine: " +#: ../../addon/statusnet/statusnet.php:315 +msgid "Log in with StatusNet" +msgstr "Login con StatuNet" -#: ../../addon/facebook/facebook.php:656 -msgid "View on Friendika" -msgstr "Vedi su Friendika" +#: ../../addon/statusnet/statusnet.php:317 +msgid "Copy the security code from StatusNet here" +msgstr "Copia il codice di sicurezza da StatusNet qui" + +#: ../../addon/statusnet/statusnet.php:323 +msgid "Cancel Connection Process" +msgstr "Annulla il processo di connessione" + +#: ../../addon/statusnet/statusnet.php:325 +msgid "Current StatusNet API is" +msgstr "Le API StatusNet correnti sono" + +#: ../../addon/statusnet/statusnet.php:326 +msgid "Cancel StatusNet Connection" +msgstr "Annulla la connessione a StatusNet" + +#: ../../addon/statusnet/statusnet.php:338 +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/facebook/facebook.php:687 -msgid "Facebook post failed. Queued for retry." -msgstr "Invio a Facebook fallito. In attesa di riprovare." +#: ../../addon/statusnet/statusnet.php:340 +msgid "Allow posting to StatusNet" +msgstr "Permetti l'invio a StatusNet" -#: ../../addon/widgets/widgets.php:53 -msgid "Generate new key" -msgstr "Genera una nuova chiave" +#: ../../addon/statusnet/statusnet.php:343 +msgid "Send public postings to StatusNet by default" +msgstr "Di default invia i messaggi pubblici a StatusNet" -#: ../../addon/widgets/widgets.php:56 -msgid "Widgets key" -msgstr "Chiave Widget" +#: ../../addon/statusnet/statusnet.php:478 +msgid "API URL" +msgstr "API URL" -#: ../../addon/widgets/widgets.php:58 -msgid "Widgets available" -msgstr "Widget disponibili" +#: ../../addon/oembed/oembed.php:30 +msgid "OEmbed settings updated" +msgstr "Impostazioni OEmbed aggiornate" -#: ../../addon/widgets/widget_friends.php:30 -msgid "Connect on Friendika!" -msgstr "Connettiti su Friendika!" +#: ../../addon/oembed/oembed.php:43 +msgid "Use OEmbed for YouTube videos" +msgstr "Usa OEmbed per i video di YouTube" + +#: ../../addon/oembed/oembed.php:71 +msgid "URL to embed:" +msgstr "URL da incorporare:" #: ../../addon/tictac/tictac.php:20 msgid "Three Dimensional Tic-Tac-Toe" @@ -3426,42 +3995,16 @@ msgstr "Stallo!" msgid "I won!" msgstr "Ho vinto!" -#: ../../addon/randplace/randplace.php:170 -msgid "Randplace Settings" -msgstr "Impostazioni Randplace" - -#: ../../addon/randplace/randplace.php:172 -msgid "Enable Randplace Plugin" -msgstr "Abilita il plugin Randplace" - -#: ../../addon/js_upload/js_upload.php:43 -msgid "Upload a file" -msgstr "Carica un file" - -#: ../../addon/js_upload/js_upload.php:44 -msgid "Drop files here to upload" -msgstr "Trascina un file qui per caricarlo" - -#: ../../addon/js_upload/js_upload.php:46 -msgid "Failed" -msgstr "Fallito" - -#: ../../addon/js_upload/js_upload.php:292 -msgid "No files were uploaded." -msgstr "Nessun file è stato caricato." - -#: ../../addon/js_upload/js_upload.php:298 -msgid "Uploaded file is empty" -msgstr "Il file caricato è vuoto" - -#: ../../addon/js_upload/js_upload.php:321 -msgid "File has an invalid extension, it should be one of " -msgstr "Il file ha una estensione non valida, dovrebbe essere una di " +#: ../../addon/uhremotestorage/uhremotestorage.php:56 +#, php-format +msgid "" +"Allow to use your friendika id (%s) to connecto to external unhosted-enabled" +" storage (like ownCloud)" +msgstr "" -#: ../../addon/js_upload/js_upload.php:332 -msgid "Upload was cancelled, or server error encountered" +#: ../../addon/uhremotestorage/uhremotestorage.php:57 +msgid "Unhosted DAV storage url" msgstr "" -"Il caricamento è stato cancellato, o si è verificato un errore sul server" #: ../../addon/impressum/impressum.php:25 msgid "Impressum" @@ -3500,311 +4043,304 @@ msgstr "Profilo del proprietario del sito" msgid "Notes" msgstr "Note" -#: ../../addon/oembed/oembed.php:30 -msgid "OEmbed settings updated" -msgstr "Impostazioni OEmbed aggiornate" +#: ../../addon/facebook/facebook.php:337 +msgid "Facebook disabled" +msgstr "Facebook disabilitato" -#: ../../addon/oembed/oembed.php:43 -msgid "Use OEmbed for YouTube videos" -msgstr "Usa OEmbed per i video di YouTube" +#: ../../addon/facebook/facebook.php:342 +msgid "Updating contacts" +msgstr "Aggiornamento contatti" -#: ../../addon/oembed/oembed.php:71 -msgid "URL to embed:" -msgstr "URL da incorporare:" +#: ../../addon/facebook/facebook.php:351 +msgid "Facebook API key is missing." +msgstr "Chiave API Facebook mancante." -#: ../../addon/statusnet/statusnet.php:133 -msgid "Post to StatusNet" -msgstr "Invia a StatusNet" +#: ../../addon/facebook/facebook.php:358 +msgid "Facebook Connect" +msgstr "Facebook Connect" -#: ../../addon/statusnet/statusnet.php:175 -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/facebook/facebook.php:364 +msgid "Install Facebook connector for this account." +msgstr "Installa Facebook connector per questo account" -#: ../../addon/statusnet/statusnet.php:203 -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/facebook/facebook.php:371 +msgid "Remove Facebook connector" +msgstr "Rimuovi Facebook connector" -#: ../../addon/statusnet/statusnet.php:230 -msgid "StatusNet settings updated." -msgstr "Impostazioni StatusNet aggiornate." +#: ../../addon/facebook/facebook.php:376 +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/statusnet/statusnet.php:253 -msgid "StatusNet Posting Settings" -msgstr "Impostazioni di invio a StatusNet" +#: ../../addon/facebook/facebook.php:383 +msgid "Post to Facebook by default" +msgstr "Invia su Facebook di default" -#: ../../addon/statusnet/statusnet.php:267 -msgid "Globally Available StatusNet OAuthKeys" -msgstr "Chiavi OAuth StatusNet disponibili sul sito" +#: ../../addon/facebook/facebook.php:387 +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/statusnet/statusnet.php:268 +#: ../../addon/facebook/facebook.php:389 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)." +"Facebook conversations consist of your profile wall and your friend" +" stream." msgstr "" -"Queste sono chiavi OAuth precofigurate disponibili per alcuni server " -"StatusNet. Se stai usando uno di questi server, per favore usa queste " -"credenziali. Altrimenti sei libero di collegarti a un'altra installazione di" -" StatusNet (vedi sotto)." +"Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e" +" dai messaggi dei tuoi amici" -#: ../../addon/statusnet/statusnet.php:276 -msgid "Provide your own OAuth Credentials" -msgstr "Fornisci le tue credenziali OAuth" +#: ../../addon/facebook/facebook.php:390 +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/statusnet/statusnet.php:277 +#: ../../addon/facebook/facebook.php:391 msgid "" -"No consumer key pair for StatusNet found. Register your Friendika 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 " -"Friendika installation at your favorited StatusNet installation." +"The following settings determine the privacy of your Facebook profile wall " +"on this website." msgstr "" -"Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo " -"Account Friendika come un client desktop sul tuo account StatusNet, copia la" -" coppia di chiavi qui e inserisci l'url di base delle API.
Prima di " -"registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se " -"esiste già una coppia di chiavi per questa installazione di Friendika sulla " -"installazione di StatusNet che ti interessa." - -#: ../../addon/statusnet/statusnet.php:279 -msgid "OAuth Consumer Key" -msgstr "OAuth Consumer Key" +"Le seguenti impostazioni determinano la privacy della vostra bacheca di " +"Facebook su questo sito." -#: ../../addon/statusnet/statusnet.php:282 -msgid "OAuth Consumer Secret" -msgstr "OAuth Consumer Secret" +#: ../../addon/facebook/facebook.php:395 +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/statusnet/statusnet.php:285 -msgid "Base API Path (remember the trailing /)" -msgstr "Indirizzo di base per le API (ricorda la / alla fine)" +#: ../../addon/facebook/facebook.php:400 +msgid "Do not import your Facebook profile wall conversations" +msgstr "Non importare le conversazione sulla tua bacheca di Facebook" -#: ../../addon/statusnet/statusnet.php:306 +#: ../../addon/facebook/facebook.php:402 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." +"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 "" -"Per collegare il tuo account StatusNet, clicca sul bottone qui sotto per " -"ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più" -" sotto per poi inviare la form. Solo i tuoi messaggi " -"pubblci saranno inviati a StatusNet." +"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/statusnet/statusnet.php:307 -msgid "Log in with StatusNet" -msgstr "Login con StatuNet" +#: ../../addon/facebook/facebook.php:469 +#: ../../include/contact_selectors.php:78 +msgid "Facebook" +msgstr "Facebook" -#: ../../addon/statusnet/statusnet.php:309 -msgid "Copy the security code from StatusNet here" -msgstr "Copia il codice di sicurezza da StatusNet qui" +#: ../../addon/facebook/facebook.php:470 +msgid "Facebook Connector Settings" +msgstr "Impostazioni Connettore Facebook" -#: ../../addon/statusnet/statusnet.php:315 -msgid "Cancel Connection Process" -msgstr "Annulla il processo di connessione" +#: ../../addon/facebook/facebook.php:484 +msgid "Post to Facebook" +msgstr "Invia a Facebook" -#: ../../addon/statusnet/statusnet.php:317 -msgid "Current StatusNet API is" -msgstr "Le API StatusNet correnti sono" +#: ../../addon/facebook/facebook.php:561 +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/statusnet/statusnet.php:318 -msgid "Cancel StatusNet Connection" -msgstr "Annulla la connessione a StatusNet" +#: ../../addon/facebook/facebook.php:624 +msgid "Image: " +msgstr "Immagine: " -#: ../../addon/statusnet/statusnet.php:329 ../../addon/twitter/twitter.php:180 -msgid "Currently connected to: " -msgstr "Al momento collegato con:" +#: ../../addon/facebook/facebook.php:700 +msgid "View on Friendika" +msgstr "Vedi su Friendika" -#: ../../addon/statusnet/statusnet.php:330 -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/facebook/facebook.php:724 +msgid "Facebook post failed. Queued for retry." +msgstr "Invio a Facebook fallito. In attesa di riprovare." -#: ../../addon/statusnet/statusnet.php:332 -msgid "Allow posting to StatusNet" -msgstr "Permetti l'invio a StatusNet" +#: ../../addon/widgets/widgets.php:55 +msgid "Generate new key" +msgstr "Genera una nuova chiave" -#: ../../addon/statusnet/statusnet.php:335 -msgid "Send public postings to StatusNet by default" -msgstr "Di default invia i messaggi pubblici a StatusNet" +#: ../../addon/widgets/widgets.php:58 +msgid "Widgets key" +msgstr "Chiave Widget" -#: ../../addon/statusnet/statusnet.php:340 ../../addon/twitter/twitter.php:191 -msgid "Clear OAuth configuration" -msgstr "Cancella la configurazione OAuth" +#: ../../addon/widgets/widgets.php:60 +msgid "Widgets available" +msgstr "Widget disponibili" -#: ../../addon/statusnet/statusnet.php:460 -msgid "API URL" -msgstr "API URL" +#: ../../addon/widgets/widget_friends.php:40 +msgid "Connect on Friendika!" +msgstr "Connettiti su Friendika!" -#: ../../addon/statusnet/statusnet.php:461 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../addon/widgets/widget_like.php:58 +#, 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/statusnet/statusnet.php:462 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../addon/widgets/widget_like.php:61 +#, 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/piwik/piwik.php:77 -msgid "Piwik Base URL" -msgstr "Piwik Base URL" +#: ../../addon/buglink/buglink.php:15 +msgid "Report Bug" +msgstr "Segnala un Bug" -#: ../../addon/piwik/piwik.php:78 -msgid "Site ID" -msgstr "Site ID" +#: ../../addon/nsfw/nsfw.php:47 +msgid "\"Not Safe For Work\" Settings" +msgstr "Impostazioni \"Non sicuro per il lavoro\" (NSFW)" -#: ../../addon/piwik/piwik.php:79 -msgid "Show opt-out cookie link?" -msgstr "Mostra il link per il cookie opt-out?" +#: ../../addon/nsfw/nsfw.php:49 +msgid "Comma separated words to treat as NSFW" +msgstr "Lista di parole, separate da virgola, da trattare come NSFW" -#: ../../addon/twitter/twitter.php:70 -msgid "Post to Twitter" -msgstr "Inva a Twitter" +#: ../../addon/nsfw/nsfw.php:66 +msgid "NSFW Settings saved." +msgstr "Impostazioni NSFW salvate." -#: ../../addon/twitter/twitter.php:115 -msgid "Twitter settings updated." -msgstr "Impostazioni di Twitter aggiornate." +#: ../../addon/nsfw/nsfw.php:102 +#, php-format +msgid "%s - Click to open/close" +msgstr "%s - Clicca per aprire / chiudere" -#: ../../addon/twitter/twitter.php:137 -msgid "Twitter Posting Settings" -msgstr "Impostazioni Invio a Twitter" +#: ../../addon/communityhome/communityhome.php:29 +msgid "OpenID" +msgstr "OpenID" -#: ../../addon/twitter/twitter.php:144 -msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." -msgstr "" -"Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore" -" del sito." +#: ../../addon/communityhome/communityhome.php:38 +msgid "Last users" +msgstr "Ultimi utenti" -#: ../../addon/twitter/twitter.php:163 -msgid "" -"At this Friendika 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 "" -"Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai" -" ancora collegato il tuo account locale con il tuo account su Twitter. Per " -"farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che " -"dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi " -"messaggi pubblici verranno inviati anche su Twitter." +#: ../../addon/communityhome/communityhome.php:81 +msgid "Most active users" +msgstr "Utenti più attivi" -#: ../../addon/twitter/twitter.php:164 -msgid "Log in with Twitter" -msgstr "Accedi con Twitter" +#: ../../addon/communityhome/communityhome.php:98 +msgid "Last photos" +msgstr "Ultime foto" -#: ../../addon/twitter/twitter.php:166 -msgid "Copy the PIN from Twitter here" -msgstr "Copia il PIN da Twitter qui" +#: ../../addon/communityhome/communityhome.php:133 +msgid "Last likes" +msgstr "Ultimi \"mi piace\"" -#: ../../addon/twitter/twitter.php:181 -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/communityhome/communityhome.php:155 +#: ../../include/conversation.php:23 +msgid "event" +msgstr "l'evento" + +#: ../../addon/membersince/membersince.php:17 +#, php-format +msgid " - Member since: %s" +msgstr "- Iscritto dal: %s" -#: ../../addon/twitter/twitter.php:183 -msgid "Allow posting to Twitter" -msgstr "Permetti l'invio a Twitter" +#: ../../addon/randplace/randplace.php:170 +msgid "Randplace Settings" +msgstr "Impostazioni Randplace" -#: ../../addon/twitter/twitter.php:186 -msgid "Send public postings to Twitter by default" -msgstr "Invia sempre i messaggi pubblici a Twitter" +#: ../../addon/randplace/randplace.php:172 +msgid "Enable Randplace Plugin" +msgstr "Abilita il plugin Randplace" -#: ../../addon/twitter/twitter.php:282 -msgid "Consumer key" -msgstr "Consumer key" +#: ../../addon/piwik/piwik.php:70 +msgid "" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" +"Questo sito è monitorato con lo strumento di analisi Piwik." -#: ../../addon/twitter/twitter.php:283 -msgid "Consumer secret" -msgstr "Consumer secret" +#: ../../addon/piwik/piwik.php:73 +#, 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)." -#: ../../include/profile_advanced.php:23 ../../boot.php:880 -msgid "Gender:" -msgstr "Genere:" +#: ../../addon/piwik/piwik.php:82 +msgid "Piwik Base URL" +msgstr "Piwik Base URL" -#: ../../include/profile_advanced.php:36 ../../include/items.php:1137 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../addon/piwik/piwik.php:83 +msgid "Site ID" +msgstr "Site ID" -#: ../../include/profile_advanced.php:45 -msgid "j F, Y" -msgstr "j F Y" +#: ../../addon/piwik/piwik.php:84 +msgid "Show opt-out cookie link?" +msgstr "Mostra il link per il cookie opt-out?" -#: ../../include/profile_advanced.php:46 -msgid "j F" -msgstr "j F" +#: ../../addon/js_upload/js_upload.php:43 +msgid "Upload a file" +msgstr "Carica un file" -#: ../../include/profile_advanced.php:59 -msgid "Age:" -msgstr "Età:" +#: ../../addon/js_upload/js_upload.php:44 +msgid "Drop files here to upload" +msgstr "Trascina un file qui per caricarlo" -#: ../../include/profile_advanced.php:70 -msgid " Status:" -msgstr " Stato sentimentale:" +#: ../../addon/js_upload/js_upload.php:46 +msgid "Failed" +msgstr "Fallito" -#: ../../include/profile_advanced.php:103 ../../boot.php:886 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../addon/js_upload/js_upload.php:294 +msgid "No files were uploaded." +msgstr "Nessun file è stato caricato." -#: ../../include/profile_advanced.php:127 -msgid "Religion:" -msgstr "Religione:" +#: ../../addon/js_upload/js_upload.php:300 +msgid "Uploaded file is empty" +msgstr "Il file caricato è vuoto" -#: ../../include/profile_advanced.php:138 -msgid "About:" -msgstr "Informazioni:" +#: ../../addon/js_upload/js_upload.php:323 +msgid "File has an invalid extension, it should be one of " +msgstr "Il file ha una estensione non valida, dovrebbe essere una di " -#: ../../include/profile_advanced.php:150 -msgid "Hobbies/Interests:" -msgstr "Hobbie/Interessi:" +#: ../../addon/js_upload/js_upload.php:334 +msgid "Upload was cancelled, or server error encountered" +msgstr "" +"Il caricamento è stato cancellato, o si è verificato un errore sul server" -#: ../../include/profile_advanced.php:162 -msgid "Contact information and Social Networks:" -msgstr "Informazioni su contatti e Social network:" +#: ../../addon/wppost/wppost.php:41 +msgid "Post to Wordpress" +msgstr "Pubblica su Wordpress" -#: ../../include/profile_advanced.php:174 -msgid "Musical interests:" -msgstr "Interessi musicali:" +#: ../../addon/wppost/wppost.php:73 +msgid "WordPress Post Settings" +msgstr "Impostazioni invio a WordPress" -#: ../../include/profile_advanced.php:186 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../addon/wppost/wppost.php:75 +msgid "Enable WordPress Post Plugin" +msgstr "Abilita plugin \"invia a WordPress\"" -#: ../../include/profile_advanced.php:198 -msgid "Television:" -msgstr "Televisione:" +#: ../../addon/wppost/wppost.php:80 +msgid "WordPress username" +msgstr "nome utente WordPress" -#: ../../include/profile_advanced.php:210 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/danza/cultura/intrattenimento:" +#: ../../addon/wppost/wppost.php:85 +msgid "WordPress password" +msgstr "password WordPress" -#: ../../include/profile_advanced.php:222 -msgid "Love/Romance:" -msgstr "Amore/romanticismo:" +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress API URL" +msgstr "WordPress API URL" -#: ../../include/profile_advanced.php:234 -msgid "Work/employment:" -msgstr "Lavoro/impiego:" +#: ../../addon/wppost/wppost.php:95 +msgid "Post to WordPress by default" +msgstr "Pubblica su WordPress di default" -#: ../../include/profile_advanced.php:246 -msgid "School/education:" -msgstr "Scuola/educazione:" +#: ../../include/notifier.php:616 ../../include/delivery.php:415 +msgid "(no subject)" +msgstr "(nessun oggetto)" #: ../../include/contact_selectors.php:32 msgid "Unknown | Not categorised" @@ -3830,30 +4366,42 @@ msgstr "E' ok, probabilmente innocuo" msgid "Reputable, has my trust" msgstr "Rispettabile, ha la mia fiducia" -#: ../../include/contact_selectors.php:55 +#: ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Frequentemente" -#: ../../include/contact_selectors.php:56 +#: ../../include/contact_selectors.php:57 msgid "Hourly" msgstr "Ogni ora" -#: ../../include/contact_selectors.php:57 +#: ../../include/contact_selectors.php:58 msgid "Twice daily" msgstr "Due volte al dì" -#: ../../include/contact_selectors.php:58 +#: ../../include/contact_selectors.php:59 msgid "Daily" msgstr "Giornalmente" -#: ../../include/contact_selectors.php:59 +#: ../../include/contact_selectors.php:60 msgid "Weekly" msgstr "Settimanalmente" -#: ../../include/contact_selectors.php:60 +#: ../../include/contact_selectors.php:61 msgid "Monthly" msgstr "Mensilmente" +#: ../../include/contact_selectors.php:78 +msgid "OStatus" +msgstr "Ostatus" + +#: ../../include/contact_selectors.php:78 +msgid "RSS/Atom" +msgstr "RSS / Atom" + +#: ../../include/contact_selectors.php:78 +msgid "Zot!" +msgstr "Zot!" + #: ../../include/profile_selectors.php:6 msgid "Male" msgstr "Maschio" @@ -4066,563 +4614,677 @@ msgstr "Non interessa" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/event.php:11 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:17 +#: ../../include/event.php:17 ../../include/bb2diaspora.php:233 msgid "Starts:" msgstr "Inizia:" -#: ../../include/event.php:27 +#: ../../include/event.php:27 ../../include/bb2diaspora.php:241 msgid "Finishes:" msgstr "Finisce:" -#: ../../include/text.php:229 +#: ../../include/acl_selectors.php:279 +msgid "Visible to everybody" +msgstr "Visibile a tutti" + +#: ../../include/acl_selectors.php:280 +msgid "show" +msgstr "mostra" + +#: ../../include/acl_selectors.php:281 +msgid "don't show" +msgstr "non mostrare" + +#: ../../include/auth.php:27 +msgid "Logged out." +msgstr "Sei uscito." + +#: ../../include/bbcode.php:147 +msgid "Image/photo" +msgstr "Immagine/foto" + +#: ../../include/poller.php:457 +msgid "From: " +msgstr "Da: " + +#: ../../include/Contact.php:125 ../../include/conversation.php:675 +msgid "View status" +msgstr "Vedi stato" + +#: ../../include/Contact.php:126 ../../include/conversation.php:676 +msgid "View profile" +msgstr "Vedi profilo" + +#: ../../include/Contact.php:127 ../../include/conversation.php:677 +msgid "View photos" +msgstr "Vedi foto" + +#: ../../include/Contact.php:128 ../../include/Contact.php:141 +#: ../../include/conversation.php:678 +msgid "View recent" +msgstr "Visualizza recente" + +#: ../../include/Contact.php:130 ../../include/Contact.php:141 +#: ../../include/conversation.php:680 +msgid "Send PM" +msgstr "Invia messaggio privato" + +#: ../../include/datetime.php:44 ../../include/datetime.php:46 +msgid "Miscellaneous" +msgstr "Varie" + +#: ../../include/datetime.php:105 ../../include/datetime.php:237 +msgid "year" +msgstr "anno" + +#: ../../include/datetime.php:110 ../../include/datetime.php:238 +msgid "month" +msgstr "mese" + +#: ../../include/datetime.php:115 ../../include/datetime.php:240 +msgid "day" +msgstr "giorno" + +#: ../../include/datetime.php:228 +msgid "never" +msgstr "mai" + +#: ../../include/datetime.php:234 +msgid "less than a second ago" +msgstr "meno di un secondo fa" + +#: ../../include/datetime.php:237 +msgid "years" +msgstr "anni" + +#: ../../include/datetime.php:238 +msgid "months" +msgstr "mesi" + +#: ../../include/datetime.php:239 +msgid "week" +msgstr "settimana" + +#: ../../include/datetime.php:239 +msgid "weeks" +msgstr "settimane" + +#: ../../include/datetime.php:240 +msgid "days" +msgstr "giorni" + +#: ../../include/datetime.php:241 +msgid "hour" +msgstr "ora" + +#: ../../include/datetime.php:241 +msgid "hours" +msgstr "ore" + +#: ../../include/datetime.php:242 +msgid "minute" +msgstr "minuto" + +#: ../../include/datetime.php:242 +msgid "minutes" +msgstr "minuti" + +#: ../../include/datetime.php:243 +msgid "second" +msgstr "secondo" + +#: ../../include/datetime.php:243 +msgid "seconds" +msgstr "secondi" + +#: ../../include/datetime.php:250 +msgid " ago" +msgstr " fa" + +#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30 +#: ../../include/items.php:1215 +msgid "Birthday:" +msgstr "Compleanno:" + +#: ../../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:34 +msgid "Age:" +msgstr "Età:" + +#: ../../include/profile_advanced.php:49 +msgid "Religion:" +msgstr "Religione:" + +#: ../../include/profile_advanced.php:51 +msgid "About:" +msgstr "Informazioni:" + +#: ../../include/profile_advanced.php:53 +msgid "Hobbies/Interests:" +msgstr "Hobbie/Interessi:" + +#: ../../include/profile_advanced.php:55 +msgid "Contact information and Social Networks:" +msgstr "Informazioni su contatti e Social network:" + +#: ../../include/profile_advanced.php:57 +msgid "Musical interests:" +msgstr "Interessi musicali:" + +#: ../../include/profile_advanced.php:59 +msgid "Books, literature:" +msgstr "Libri, letteratura:" + +#: ../../include/profile_advanced.php:61 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/profile_advanced.php:63 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/danza/cultura/intrattenimento:" + +#: ../../include/profile_advanced.php:65 +msgid "Love/Romance:" +msgstr "Amore/romanticismo:" + +#: ../../include/profile_advanced.php:67 +msgid "Work/employment:" +msgstr "Lavoro/impiego:" + +#: ../../include/profile_advanced.php:69 +msgid "School/education:" +msgstr "Scuola/educazione:" + +#: ../../include/text.php:232 msgid "prev" msgstr "prec" -#: ../../include/text.php:231 +#: ../../include/text.php:234 msgid "first" msgstr "primo" -#: ../../include/text.php:260 +#: ../../include/text.php:263 msgid "last" msgstr "ultimo" -#: ../../include/text.php:263 +#: ../../include/text.php:266 msgid "next" msgstr "succ" -#: ../../include/text.php:542 +#: ../../include/text.php:546 msgid "No contacts" msgstr "Nessun contatto" -#: ../../include/text.php:550 +#: ../../include/text.php:555 #, php-format msgid "%d Contact" msgid_plural "%d Contacts" msgstr[0] "%d Contatto" msgstr[1] "%d Contatti" -#: ../../include/text.php:711 +#: ../../include/text.php:626 ../../include/nav.php:87 +msgid "Search" +msgstr "Cerca" + +#: ../../include/text.php:709 msgid "Monday" msgstr "Lunedì" -#: ../../include/text.php:711 +#: ../../include/text.php:709 msgid "Tuesday" msgstr "Martedì" -#: ../../include/text.php:711 +#: ../../include/text.php:709 msgid "Wednesday" msgstr "Mercoledì" -#: ../../include/text.php:711 +#: ../../include/text.php:709 msgid "Thursday" msgstr "Giovedì" -#: ../../include/text.php:711 +#: ../../include/text.php:709 msgid "Friday" msgstr "Venerdì" -#: ../../include/text.php:711 +#: ../../include/text.php:709 msgid "Saturday" msgstr "Sabato" -#: ../../include/text.php:711 +#: ../../include/text.php:709 msgid "Sunday" msgstr "Domenica" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "January" msgstr "Gennaio" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "February" msgstr "Febbraio" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "March" msgstr "Marzo" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "April" msgstr "Aprile" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "May" msgstr "Maggio" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "June" msgstr "Giugno" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "July" msgstr "Luglio" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "August" msgstr "Agosto" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "September" msgstr "Settembre" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "October" msgstr "Ottobre" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "November" msgstr "Novembre" -#: ../../include/text.php:715 +#: ../../include/text.php:713 msgid "December" msgstr "Dicembre" -#: ../../include/text.php:778 +#: ../../include/text.php:783 msgid "bytes" msgstr "bytes" -#: ../../include/text.php:861 +#: ../../include/text.php:875 msgid "Select an alternate language" msgstr "Seleziona una diversa lingua" -#: ../../include/diaspora.php:309 -msgid "Sharing notification from Diaspora network" -msgstr "Notifica di condivisione dal network Diaspora*" +#: ../../include/text.php:887 +msgid "default" +msgstr "default" -#: ../../include/oembed.php:95 -msgid "Embedding disabled" -msgstr "Inclusione disabilitata" +#: ../../include/nav.php:44 +msgid "End this session" +msgstr "Finisci questa sessione" -#: ../../include/group.php:146 -msgid "Create a new group" -msgstr "Crea un nuovo gruppo" +#: ../../include/nav.php:47 ../../include/nav.php:111 +msgid "Your posts and conversations" +msgstr "I tuoi messaggi e le tue conversazioni" -#: ../../include/group.php:147 -msgid "Everybody" -msgstr "Tutti" +#: ../../include/nav.php:48 +msgid "Your profile page" +msgstr "Pagina del tuo profilo" -#: ../../include/nav.php:41 ../../boot.php:667 -msgid "Logout" -msgstr "Esci" +#: ../../include/nav.php:49 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../include/nav.php:41 -msgid "End this session" -msgstr "Finisci questa sessione" +#: ../../include/nav.php:50 +msgid "Your events" +msgstr "I tuoi eventi" -#: ../../include/nav.php:44 ../../boot.php:645 ../../boot.php:651 -msgid "Login" -msgstr "Accedi" +#: ../../include/nav.php:51 +msgid "Personal notes" +msgstr "Note personali" -#: ../../include/nav.php:44 +#: ../../include/nav.php:51 +msgid "Your personal photos" +msgstr "Le tue foto personali" + +#: ../../include/nav.php:62 msgid "Sign in" msgstr "Entra" -#: ../../include/nav.php:55 ../../include/nav.php:93 -msgid "Home" -msgstr "Home" - -#: ../../include/nav.php:55 +#: ../../include/nav.php:73 msgid "Home Page" msgstr "Home Page" -#: ../../include/nav.php:59 +#: ../../include/nav.php:77 msgid "Create an account" msgstr "Crea un account" -#: ../../include/nav.php:64 +#: ../../include/nav.php:82 msgid "Help and documentation" msgstr "Guida e documentazione" -#: ../../include/nav.php:67 +#: ../../include/nav.php:85 msgid "Apps" msgstr "Applicazioni" -#: ../../include/nav.php:67 +#: ../../include/nav.php:85 msgid "Addon applications, utilities, games" msgstr "Applicazioni, utilità e giochi aggiuntivi" -#: ../../include/nav.php:69 +#: ../../include/nav.php:87 msgid "Search site content" msgstr "Cerca nel contenuto del sito" -#: ../../include/nav.php:79 +#: ../../include/nav.php:97 msgid "Conversations on this site" msgstr "Conversazioni su questo sito" -#: ../../include/nav.php:81 +#: ../../include/nav.php:99 msgid "Directory" msgstr "Elenco" -#: ../../include/nav.php:81 +#: ../../include/nav.php:99 msgid "People directory" msgstr "Elenco delle persone" -#: ../../include/nav.php:91 -msgid "Network" -msgstr "Rete" - -#: ../../include/nav.php:91 +#: ../../include/nav.php:109 msgid "Conversations from your friends" msgstr "Conversazioni dai tuoi amici" -#: ../../include/nav.php:93 -msgid "Your posts and conversations" -msgstr "I tuoi messaggi e le tue conversazioni" - -#: ../../include/nav.php:99 -msgid "Notifications" -msgstr "Notifiche" - -#: ../../include/nav.php:99 -msgid "Friend requests" +#: ../../include/nav.php:117 +msgid "Friend Requests" msgstr "Richieste di amicizia" -#: ../../include/nav.php:102 +#: ../../include/nav.php:122 msgid "Private mail" msgstr "Posta privata" -#: ../../include/nav.php:105 +#: ../../include/nav.php:125 msgid "Manage" msgstr "Gestisci" -#: ../../include/nav.php:105 +#: ../../include/nav.php:125 msgid "Manage other pages" msgstr "Gestisci altre pagine" -#: ../../include/nav.php:109 -msgid "Manage/edit profiles" -msgstr "Gestisci/modifica i profili" - -#: ../../include/nav.php:110 +#: ../../include/nav.php:130 msgid "Manage/edit friends and contacts" msgstr "Gestisci/modifica amici e contatti" -#: ../../include/nav.php:117 +#: ../../include/nav.php:137 msgid "Admin" msgstr "Amministrazione" -#: ../../include/nav.php:117 +#: ../../include/nav.php:137 msgid "Site setup and configuration" msgstr "Configurazione del sito" -#: ../../include/auth.php:27 -msgid "Logged out." -msgstr "Sei uscito." - -#: ../../include/datetime.php:44 ../../include/datetime.php:46 -msgid "Miscellaneous" -msgstr "Varie" - -#: ../../include/datetime.php:105 ../../include/datetime.php:237 -msgid "year" -msgstr "anno" - -#: ../../include/datetime.php:110 ../../include/datetime.php:238 -msgid "month" -msgstr "mese" - -#: ../../include/datetime.php:115 ../../include/datetime.php:240 -msgid "day" -msgstr "giorno" - -#: ../../include/datetime.php:228 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:234 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:237 -msgid "years" -msgstr "anni" - -#: ../../include/datetime.php:238 -msgid "months" -msgstr "mesi" - -#: ../../include/datetime.php:239 -msgid "week" -msgstr "settimana" - -#: ../../include/datetime.php:239 -msgid "weeks" -msgstr "settimane" - -#: ../../include/datetime.php:240 -msgid "days" -msgstr "giorni" - -#: ../../include/datetime.php:241 -msgid "hour" -msgstr "ora" - -#: ../../include/datetime.php:241 -msgid "hours" -msgstr "ore" - -#: ../../include/datetime.php:242 -msgid "minute" -msgstr "minuto" - -#: ../../include/datetime.php:242 -msgid "minutes" -msgstr "minuti" - -#: ../../include/datetime.php:243 -msgid "second" -msgstr "secondo" - -#: ../../include/datetime.php:243 -msgid "seconds" -msgstr "secondi" - -#: ../../include/datetime.php:250 -msgid " ago" -msgstr " fa" - -#: ../../include/poller.php:418 -msgid "From: " -msgstr "Da: " - -#: ../../include/bbcode.php:116 -msgid "Image/photo" -msgstr "Immagine/foto" - -#: ../../include/dba.php:31 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" - -#: ../../include/acl_selectors.php:279 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/acl_selectors.php:280 -msgid "show" -msgstr "mostra" - -#: ../../include/acl_selectors.php:281 -msgid "don't show" -msgstr "non mostrare" - -#: ../../include/notifier.php:465 -msgid "(no subject)" -msgstr "(nessun oggetto)" - -#: ../../include/items.php:1526 -msgid "You have a new follower at " -msgstr "Hai un nuovo seguace su " +#: ../../include/nav.php:160 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../include/conversation.php:23 -msgid "event" -msgstr "l'evento" +#: ../../include/conversation.php:210 ../../include/conversation.php:453 +msgid "Select" +msgstr "Seleziona" -#: ../../include/conversation.php:213 ../../include/conversation.php:488 -#: ../../include/conversation.php:489 +#: ../../include/conversation.php:225 ../../include/conversation.php:550 +#: ../../include/conversation.php:551 #, php-format -msgid "View %s's profile" -msgstr "Vedi il profilo di %s" +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/conversation.php:222 ../../include/conversation.php:501 +#: ../../include/conversation.php:234 ../../include/conversation.php:562 #, php-format msgid "%s from %s" msgstr "%s da %s" -#: ../../include/conversation.php:230 +#: ../../include/conversation.php:250 msgid "View in context" msgstr "Vedi nel contesto" -#: ../../include/conversation.php:301 -msgid "See more posts like this" -msgstr "Vedi altri post come questo" - -#: ../../include/conversation.php:329 +#: ../../include/conversation.php:356 #, php-format msgid "See all %d comments" msgstr "Vedi tutti i %d commenti" -#: ../../include/conversation.php:427 -msgid "Select" -msgstr "Seleziona" +#: ../../include/conversation.php:416 +msgid "like" +msgstr "mi piace" + +#: ../../include/conversation.php:417 +msgid "dislike" +msgstr "non mi piace" + +#: ../../include/conversation.php:419 +msgid "Share this" +msgstr "Condividi questo" + +#: ../../include/conversation.php:419 +msgid "share" +msgstr "condividi" -#: ../../include/conversation.php:429 +#: ../../include/conversation.php:463 +msgid "add star" +msgstr "aggiungi a speciali" + +#: ../../include/conversation.php:464 +msgid "remove star" +msgstr "rimuovi da speciali" + +#: ../../include/conversation.php:465 msgid "toggle star status" msgstr "Inverti stato preferito" -#: ../../include/conversation.php:490 +#: ../../include/conversation.php:468 +msgid "starred" +msgstr "speciale" + +#: ../../include/conversation.php:469 +msgid "add tag" +msgstr "aggiungi tag" + +#: ../../include/conversation.php:552 msgid "to" msgstr "a" -#: ../../include/conversation.php:491 +#: ../../include/conversation.php:553 msgid "Wall-to-Wall" msgstr "Bacheca-A-Bacheca" -#: ../../include/conversation.php:492 +#: ../../include/conversation.php:554 msgid "via Wall-To-Wall:" -msgstr "sulla sua Bacheca:" +msgstr "sulla sua Bacheca" -#: ../../include/conversation.php:534 +#: ../../include/conversation.php:600 msgid "Delete Selected Items" msgstr "Cancella elementi selezionati" -#: ../../include/conversation.php:608 -msgid "View status" -msgstr "Vedi stato" - -#: ../../include/conversation.php:609 -msgid "View profile" -msgstr "Vedi profilo" - -#: ../../include/conversation.php:610 -msgid "View photos" -msgstr "Vedi foto" - -#: ../../include/conversation.php:611 -msgid "View recent" -msgstr "Visualizza recente" - -#: ../../include/conversation.php:613 -msgid "Send PM" -msgstr "Invia messaggio privato" - -#: ../../include/conversation.php:663 +#: ../../include/conversation.php:730 #, php-format msgid "%s likes this." msgstr "Piace a %s." -#: ../../include/conversation.php:663 +#: ../../include/conversation.php:730 #, php-format msgid "%s doesn't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:667 +#: ../../include/conversation.php:734 #, php-format msgid "%2$d people like this." msgstr "Piace a %2$d persone." -#: ../../include/conversation.php:669 +#: ../../include/conversation.php:736 #, php-format msgid "%2$d people don't like this." msgstr "Non piace a %2$d persone." -#: ../../include/conversation.php:675 +#: ../../include/conversation.php:742 msgid "and" msgstr "e" -#: ../../include/conversation.php:678 +#: ../../include/conversation.php:745 #, php-format msgid ", and %d other people" msgstr ", e altre %d persone" -#: ../../include/conversation.php:679 +#: ../../include/conversation.php:746 #, php-format msgid "%s like this." msgstr "Piace a %s." -#: ../../include/conversation.php:679 +#: ../../include/conversation.php:746 #, php-format msgid "%s don't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:698 +#: ../../include/conversation.php:766 msgid "Visible to everybody" msgstr "Vsibile a tutti" -#: ../../include/conversation.php:700 -msgid "Please enter a YouTube link:" -msgstr "Inserisci l'indirizzo di YouTube:" +#: ../../include/conversation.php:768 +msgid "Please enter a video link/URL:" +msgstr "Inserisci un collegamento video / URL:" -#: ../../include/conversation.php:701 -msgid "Please enter a video(.ogg) link/URL:" -msgstr "Inserisci il link a un video (.ogg):" +#: ../../include/conversation.php:769 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci un collegamento audio / URL:" -#: ../../include/conversation.php:702 -msgid "Please enter an audio(.ogg) link/URL:" -msgstr "Inserisci il link a un audio (.ogg):" +#: ../../include/conversation.php:770 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/conversation.php:703 +#: ../../include/conversation.php:771 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: ../../include/conversation.php:704 +#: ../../include/conversation.php:772 msgid "Enter a title for this item" msgstr "Inserisci un titolo per questo elemento" -#: ../../include/conversation.php:755 +#: ../../include/conversation.php:818 +msgid "Insert video link" +msgstr "Inserire collegamento video" + +#: ../../include/conversation.php:819 +msgid "Insert audio link" +msgstr "Inserisci collegamento audio" + +#: ../../include/conversation.php:822 msgid "Set title" msgstr "Imposta il titolo" -#: ../../boot.php:410 -msgid "Delete this item?" -msgstr "Cancellare questo elemento?" +#: ../../include/bb2diaspora.php:51 +msgid "view full size" +msgstr "vedi a schermo intero" -#: ../../boot.php:636 -msgid "Create a New Account" -msgstr "Crea un Nuovo Account" +#: ../../include/bb2diaspora.php:102 +msgid "image/photo" +msgstr "immagine / foto" -#: ../../boot.php:643 -msgid "Nickname or Email address: " -msgstr "Soprannome o indirizzo Email: " +#: ../../include/dba.php:31 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../boot.php:644 -msgid "Password: " -msgstr "Password: " +#: ../../include/contact_widgets.php:6 +msgid "Add New Contact" +msgstr "Aggiungi nuovo contatto" -#: ../../boot.php:649 -msgid "Nickname/Email/OpenID: " -msgstr "Soprannome/Email/OpenID: " +#: ../../include/contact_widgets.php:7 +msgid "Enter address or web location" +msgstr "Inserisci posizione o indirizzo web" -#: ../../boot.php:650 -msgid "Password (if not OpenID): " -msgstr "Password (se non OpenID): " +#: ../../include/contact_widgets.php:8 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Esempio: bob@example.com, http://example.com/barbara" -#: ../../boot.php:653 -msgid "Forgot your password?" -msgstr "Dimenticata la password?" +#: ../../include/contact_widgets.php:18 +msgid "Invite Friends" +msgstr "Invita Amici" -#: ../../boot.php:853 -msgid "Connect" -msgstr "Connetti" +#: ../../include/contact_widgets.php:24 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../boot.php:872 -msgid ", " -msgstr ", " +#: ../../include/contact_widgets.php:30 +msgid "Find People" +msgstr "Trova persone" -#: ../../boot.php:884 -msgid "Status:" -msgstr "Stato:" +#: ../../include/contact_widgets.php:31 +msgid "Enter name or interest" +msgstr "Inserisci un nome o un interesse" -#: ../../boot.php:975 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../include/contact_widgets.php:32 +msgid "Connect/Follow" +msgstr "Connetti/Segui" -#: ../../boot.php:993 -msgid "Birthday Reminders" -msgstr "Promemoria Compleanni" +#: ../../include/contact_widgets.php:33 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Esempi: Mario Rossi, Pesca" -#: ../../boot.php:994 -msgid "Birthdays this week:" -msgstr "Compleanni questa settimana:" +#: ../../include/contact_widgets.php:36 +msgid "Similar Interests" +msgstr "Interessi simili" -#: ../../boot.php:995 -msgid "(Adjusted for local time)" -msgstr "(Convertiti all'ora locale)" +#: ../../include/items.php:1829 +msgid "New mail received at " +msgstr "Nuova mail ricevuta su " -#: ../../boot.php:1006 -msgid "[today]" -msgstr "[oggi]" +#: ../../include/items.php:2438 +msgid "A new person is sharing with you at " +msgstr "Una nuova persona sta condividendo con te da " -#: ../../index.php:209 -msgid "Not Found" -msgstr "Non Trovato" +#: ../../include/items.php:2438 +msgid "You have a new follower at " +msgstr "Hai un nuovo seguace su " -#: ../../index.php:210 -msgid "Page not found." -msgstr "Pagina non trovata." +#: ../../include/message.php:13 +msgid "[no subject]" +msgstr "[nessun oggetto]" + +#: ../../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:165 +msgid "Create a new group" +msgstr "Crea un nuovo gruppo" + +#: ../../include/group.php:166 +msgid "Everybody" +msgstr "Tutti" + +#: ../../include/diaspora.php:544 +msgid "Sharing notification from Diaspora network" +msgstr "Notifica di condivisione dal network Diaspora*" + +#: ../../include/diaspora.php:1527 +msgid "Attachments:" +msgstr "Allegati:" + +#: ../../include/diaspora.php:1710 +#, php-format +msgid "[Relayed] Comment authored by %s from network %s" +msgstr "[Inoltrato] Commento scritto da %s dalla rete %s" + +#: ../../include/oembed.php:122 +msgid "Embedded content" +msgstr "Contenuto incorporato" + +#: ../../include/oembed.php:131 +msgid "Embedding disabled" +msgstr "Inclusione disabilitata" diff --git a/view/it/strings.php b/view/it/strings.php index 3a0aed70f..5fd187f7a 100644 --- a/view/it/strings.php +++ b/view/it/strings.php @@ -4,61 +4,255 @@ function string_plural_select_it($n){ return ($n != 1); } ; -$a->strings["Post successful."] = "Inviato con successo."; -$a->strings["Contact settings applied."] = "Impostazioni del contatto applicate."; -$a->strings["Contact update failed."] = "Aggiornamento del contatto non riuscito."; +$a->strings["Not Found"] = "Non Trovato"; +$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["Permission denied"] = "Permesso negato"; $a->strings["Permission denied."] = "Permesso negato."; -$a->strings["Contact not found."] = "Contatto non trovato."; -$a->strings["Repair Contact Settings"] = "Ripara le Impostazioni del Contatto"; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact will stop working."] = "ATTENZIONE: Per utenti esperti! Se inserisci informazioni non corrette le tue comunicazioni con questo contatto smetteranno di funzionare."; -$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["Name"] = "Nome"; -$a->strings["Account Nickname"] = "Nickname dell'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["Submit"] = "Invia"; -$a->strings["Help:"] = "Guida:"; -$a->strings["Help"] = "Guida"; -$a->strings["File exceeds size limit of %d"] = "Il file supera il limite di dimensione di %d"; -$a->strings["File upload failed."] = "Caricamento del file non riuscito."; -$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["Delete this item?"] = "Cancellare questo elemento?"; +$a->strings["Comment"] = "Commento"; +$a->strings["Create a New Account"] = "Crea un Nuovo Account"; +$a->strings["Register"] = "Regitrati"; +$a->strings["Logout"] = "Esci"; +$a->strings["Login"] = "Accedi"; +$a->strings["Nickname or Email address: "] = "Soprannome o indirizzo Email: "; +$a->strings["Password: "] = "Password: "; +$a->strings["OpenID: "] = "OpenID:"; +$a->strings["Forgot your password?"] = "Dimenticata la password?"; +$a->strings["Password Reset"] = "Resetta password"; +$a->strings["No profile"] = "Nessun profilo"; +$a->strings["Edit profile"] = "Modifica il profilo"; +$a->strings["Connect"] = "Connetti"; +$a->strings["Profiles"] = "Profili"; +$a->strings["Manage/edit profiles"] = "Gestisci/modifica i 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["Location:"] = "Posizione:"; +$a->strings["Gender:"] = "Genere:"; +$a->strings["Status:"] = "Stato:"; +$a->strings["Homepage:"] = "Homepage:"; +$a->strings["g A l F d"] = "g A l d F"; +$a->strings["F d"] = "d F"; +$a->strings["Birthday Reminders"] = "Promemoria Compleanni"; +$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; +$a->strings["[today]"] = "[oggi]"; +$a->strings["Event Reminders"] = "Promemoria"; +$a->strings["Events this week:"] = "Eventi di questa settimana:"; +$a->strings["[No description]"] = "[Nessuna descrizione]"; $a->strings["Status"] = "Stato"; $a->strings["Profile"] = "Profilo"; $a->strings["Photos"] = "Foto"; $a->strings["Events"] = "Eventi"; $a->strings["Personal Notes"] = "Note personali"; -$a->strings["Create New Event"] = "Crea un nuovo Evento"; -$a->strings["Previous"] = "Precendente"; -$a->strings["Next"] = "Successivo"; -$a->strings["l, F j"] = "l j F"; -$a->strings["Edit event"] = "Modifca Evento"; -$a->strings["link to source"] = "Collegamento all'originale"; -$a->strings["hour:minute"] = "ora:minuti"; -$a->strings["Event details"] = "Dettagli dell'Evento"; -$a->strings["Format is %s %s. Starting date and Description are required."] = "Il formato è %s %s. La data di inizio e la descrizione sono obbligatori."; -$a->strings["Event Starts:"] = "L'Evento inizia:"; -$a->strings["Finish date/time is not known or not relevant"] = "La data/l'ora di fine è sconosciuta o non importante"; -$a->strings["Event Finishes:"] = "L'Evento finisce:"; -$a->strings["Adjust for viewer timezone"] = "Regola nel fuso orario di chi legge"; -$a->strings["Description:"] = "Descrizione"; -$a->strings["Location:"] = "Posizione:"; -$a->strings["Share this event"] = "Condividi questo Evento"; +$a->strings["Welcome back %s"] = "Bentornato %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.)"] = "(Passa tra diverse identità o pagine di comunità/gruppi che condividono i dettagli del tuo account.)"; +$a->strings["Select an identity to manage: "] = "Seleziona una identità da gestire:"; +$a->strings["Submit"] = "Invia"; +$a->strings["People Search"] = "Cerca persone"; +$a->strings["No matches"] = "Nessun risultato"; +$a->strings["Image exceeds size limit of %d"] = "La dimensionde dell'immagine supera il limite di %d"; +$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +$a->strings["Wall Photos"] = "Foto Bacheca"; +$a->strings["Image upload failed."] = "Caricamento immagine fallito."; +$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["Disallowed profile URL."] = "Indirizzo profilo non permesso."; +$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 nessun protocollo 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 dell'autore"; +$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; +$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 nofiche dirette/personali da te."; +$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; +$a->strings["following"] = "segue"; +$a->strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il ritaglio è fallito."; +$a->strings["Profile Photos"] = "Foto del profilo"; +$a->strings["Image size reduction [%s] failed."] = "Riduzione della dimensione dell'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["Upload Profile Photo"] = "Carica la Foto del Profilo"; +$a->strings["Upload"] = "Carica"; +$a->strings["or"] = "o"; +$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."] = "Sistema il ritaglio dell'imagine per una visualizzazione ottimale."; +$a->strings["Done Editing"] = "Fatto"; +$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; +$a->strings["Welcome to %s"] = "Benvenuto su %s"; +$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per vederlo]"; +$a->strings["File exceeds size limit of %d"] = "Il file supera il limite di dimensione di %d"; +$a->strings["File upload failed."] = "Caricamento del file non riuscito."; +$a->strings["Friend Suggestions"] = "Contatti suggeriti"; +$a->strings["No suggestions. This works best when you have more than one contact/friend."] = "Nessun suggerimento. Funziona meglio quando si ha più di un contatto."; +$a->strings["Ignore/Hide"] = "Ignora / Nascondi"; +$a->strings["Registration details for %s"] = "Dettagli registrazione per %s"; +$a->strings["Administrator"] = "Amministratore"; +$a->strings["Account approved."] = "Account approvato."; +$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +$a->strings["Please login."] = "Accedi."; +$a->strings["Profile not found."] = "Profilo non trovato."; +$a->strings["Profile Name is required."] = "Il Nome Profilo è richiesto ."; +$a->strings["Profile updated."] = "Profilo aggiornato."; +$a->strings["Profile deleted."] = "Profilo elminato."; +$a->strings["Profile-"] = "Profilo-"; +$a->strings["New profile created."] = "Nuovo profilo creato."; +$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il plrofilo."; +$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["Yes"] = "Si"; +$a->strings["No"] = "No"; +$a->strings["Edit Profile Details"] = "Modifica i Dettagli 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"] = "Cancella 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:"; +$a->strings["Locality/City:"] = "Località/Città:"; +$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["Sexual Preference:"] = "Preferenza sessuale:"; +$a->strings["Homepage URL:"] = "Indirizzo homepage:"; +$a->strings["Political Views:"] = "Orientamento politico:"; +$a->strings["Religious Views:"] = "Orientamento religioso:"; +$a->strings["Public Keywords:"] = "Parole chiave pubbliche:"; +$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)"] = "(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, mai mostrato ad altri)"; +$a->strings["Tell us about yourself..."] = "Racconta di te..."; +$a->strings["Hobbies/Interests"] = "Hobbie/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/romanticismo"; +$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["Item not found."] = "Elemento non trovato."; +$a->strings["everybody"] = "tutti"; +$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["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Passoword non cambiata."; +$a->strings["Empty passwords are not allowed. Password unchanged."] = "Password vuote non sono consentite. Password non cambiata."; +$a->strings["Password changed."] = "Password cambiata."; +$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; +$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["Settings updated."] = "Impostazioni aggiornate."; +$a->strings["Account settings"] = "Parametri account"; +$a->strings["Connector settings"] = "Impostazioni connettori"; +$a->strings["Plugin settings"] = "Impostazioni plugin"; +$a->strings["Connections"] = "Connessioni"; +$a->strings["Export personal data"] = "Esporta dati personali"; +$a->strings["Add application"] = "Aggiungi applicazione"; $a->strings["Cancel"] = "Annulla"; -$a->strings["Tag removed"] = "TAg rimosso"; -$a->strings["Remove Item Tag"] = "Rimuovi tag dall'elemento"; -$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -$a->strings["Remove"] = "Rimuovi"; -$a->strings["%s welcomes %s"] = "%s da il benvenuto a %s"; +$a->strings["Name"] = "Nome"; +$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["Delete"] = "Cancella"; +$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 delle configurazioni che puoi modificare"; +$a->strings["Plugin Settings"] = "Impostazioni Plugin"; +$a->strings["Built-in support for %s connectivity is %s"] = "Il supporto integrato per la connettività con %s è %s"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["enabled"] = "abilitato"; +$a->strings["disabled"] = "disabilitato"; +$a->strings["StatusNet"] = "StatusNet"; +$a->strings["Connector Settings"] = "Impostazioni Connettore"; +$a->strings["Email/Mailbox Setup"] = "Impostazioni Email"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; +$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; +$a->strings["Email access is disabled on this site."] = "L'accesso Email è disabilitato su questo sito."; +$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:"; +$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; +$a->strings["Normal Account"] = "Account normale"; +$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; +$a->strings["Soapbox Account"] = "Account Palco"; +$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accetta automaticamente le richieste di connessione/amicizia come fan che possono solamente leggere"; +$a->strings["Community/Celebrity Account"] = "Account Celebrità/Comunità"; +$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accetta automaticamente le richieste di connessione/amicizia come fan che possono scrivere in bacheca"; +$a->strings["Automatic Friend Account"] = "Account Amico Automatico"; +$a->strings["Automatically approve all connection/friend requests as friends"] = "Accetta automaticamente le richieste di connessione/amicizia come amici"; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; +$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; +$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; +$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; +$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Nascondi i dettagli del profilo e tutti i tuoi messaggi ai visitatori sconosciuti?"; +$a->strings["Allow friends to post to your profile page?"] = "Permetti agli amici di scrivere sulla tua pagina profilo?"; +$a->strings["Allow friends to tag your posts?"] = "Permetti agli amici di taggare i tuoi messaggi?"; +$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; +$a->strings["Your Identity Address is"] = "Il tuo Indirizzo Identità è"; +$a->strings["Account Settings"] = "Impostazioni Account"; +$a->strings["Password Settings"] = "Impostazioni Password"; +$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à di default per l'invio:"; +$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +$a->strings["Display Theme:"] = "Tema:"; +$a->strings["Security and Privacy Settings"] = "Impostazioni di Sicurezza e Privacy"; +$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia per giorno:"; +$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; +$a->strings["Default Post Permissions"] = "Permessi di default per i messaggi"; +$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +$a->strings["Automatically expire posts after days:"] = "Cancella automaticamente i messaggi dopo giorni:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; +$a->strings["Notification Settings"] = "Impostazioni Notifiche"; +$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"; +$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; +$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; +$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; +$a->strings["Advanced Page Settings"] = "Impostazioni Avanzate Account"; +$a->strings["Saved Searches"] = "Ricerche salvate"; +$a->strings["Remove term"] = "Rimuovi termine"; +$a->strings["Public access denied."] = "Accesso pubblico non consentito."; +$a->strings["Search This Site"] = "Cerca nel sito"; +$a->strings["No results."] = "Nessun risultato."; $a->strings["Photo Albums"] = "Album Foto"; $a->strings["Contact Photos"] = "Foto dei contatti"; -$a->strings["everybody"] = "tutti"; $a->strings["Contact information unavailable"] = "Informazione sul contatto non disponibile"; -$a->strings["Profile Photos"] = "Foto del profilo"; $a->strings["Album not found."] = "Album non trovato."; $a->strings["Delete Album"] = "Elimina album"; $a->strings["Delete Photo"] = "Elimina foto"; @@ -67,18 +261,18 @@ $a->strings["photo"] = "foto"; $a->strings["by"] = "da"; $a->strings["Image exceeds size limit of "] = "L'immagine supera il limite di dimensione di "; $a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -$a->strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -$a->strings["Image upload failed."] = "Caricamento immagine fallito."; -$a->strings["Public access denied."] = "Accesso pubblico non consentito."; $a->strings["No photos selected"] = "Nessuna foto selezionata"; $a->strings["Access to this item is restricted."] = "L'accesso a questo elemento è limitato."; $a->strings["Upload Photos"] = "Carica foto"; $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["Edit Album"] = "Modifica album"; $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"; @@ -94,19 +288,34 @@ $a->strings["I don't like this (toggle)"] = "Non mi piace questo (metti/togli)"; $a->strings["Share"] = "Condividi"; $a->strings["Please wait"] = "Attendi"; $a->strings["This is you"] = "Questo sei tu"; -$a->strings["Comment"] = "Commento"; -$a->strings["Delete"] = "Cancella"; $a->strings["Recent Photos"] = "Foto recenti"; $a->strings["Upload New Photos"] = "Carica nuova foto"; $a->strings["View Album"] = "Vedi album"; -$a->strings["Not available."] = "Non disponibile."; -$a->strings["Community"] = "Comunità"; -$a->strings["No results."] = "Nessun risultato."; -$a->strings["Shared content is covered by the Creative Commons Attribution 3.0 license."] = "Il contenuto in comune è coperto dalla licenza Creative Commons Attribuzione 3.0."; +$a->strings["Welcome to Friendika"] = "Benvenuto in Friendika"; +$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."] = "Vorremmo offrire alcuni suggerimenti e link per contribuire a rendere la tua esperienza piacevole. Fai clic su un elemento per visitare la pagina corrispondente."; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. E prendi nota del tuo Indirizzo Identità. Questo tornerà utile nello stringere amicizie."; +$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 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["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["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i dati per accedere alla tua email nella pagina Impostazioni se vuoi importare e interagire con amici o mailing list dalla posta in arrivo della tua email."; +$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["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["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 Connect dialog."] = "La pagina Contatti è il centro di controllo per la gestione delle amicizie e per collegarti ad amici su altri network. Basta che inserisci il loro indirizzo o l'URL del sito nel box Connetti."; +$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["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["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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +$a->strings["Time Conversion"] = "Conversione Ora"; +$a->strings["Friendika provides this service for sharing events with other networks and friends in unknown timezones."] = "Friendika fornisce questo servizio per la condivisione di eventi con altre reti e contatti 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["Item has been removed."] = "L'elemento è stato rimosso."; $a->strings["Item not found"] = "Elemento non trovato"; $a->strings["Edit post"] = "Modifica messaggio"; $a->strings["Post to Email"] = "Invia a Email"; -$a->strings["Edit"] = "Modifica"; $a->strings["Upload photo"] = "Carica foto"; $a->strings["Attach file"] = "Allega file"; $a->strings["Insert web link"] = "Inserisci link"; @@ -119,313 +328,87 @@ $a->strings["Permission settings"] = "Impostazione 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["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; -$a->strings["Profile location is not valid or does not contain profile information."] = "La posizione del profilo non è valida o non contiene informazioni di profilo."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: la posizione del profilo non ha un identificabile proprietario."; -$a->strings["Warning: profile location has no profile photo."] = "Attenzione: la posizione 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 nella posizione data", - 1 => "%d parametri richiesti non sono stati trovati nella posizione data", -); -$a->strings["Introduction complete."] = "Presentazione completa."; -$a->strings["Unrecoverable protocol error."] = "Errore di protocollo non recuperabile."; -$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["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."] = "Sembra che tu sia già amico di %s."; -$a->strings["Invalid profile URL."] = "Indirizzo profilo invalido."; -$a->strings["Disallowed profile URL."] = "Indirizzo profilo non permesso."; -$a->strings["Failed to update contact record."] = "Errore aggiornando il 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."] = "Accesso con identà incorretta. Accedi a questo profilo."; -$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["Introduction received at "] = "Introduzione ricevuta su "; -$a->strings["Administrator"] = "Amministratore"; -$a->strings["Friend/Connection Request"] = "Richieste di Amicizia/Connessione"; -$a->strings["Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"] = "Esempi: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, testuser@identi.ca"; -$a->strings["Please answer the following:"] = "Rispondi al seguente:"; -$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["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Inserisci il tuo \"Indirizzo Identità\" da uno dei social network supportati:"; -$a->strings["Friendika"] = "Friendika"; -$a->strings["StatusNet/Federated Social Web"] = "StatusNet/Federated Social Web"; -$a->strings["Private (secure) network"] = "Network (sicuro) privato"; -$a->strings["Public (insecure) network"] = "Network (insicuro) pubblico"; -$a->strings["Your Identity Address:"] = "Il tuo Indirizzo Identità:"; -$a->strings["Submit Request"] = "Invia richiesta"; -$a->strings["Could not create/connect to database."] = "Impossibile creare/collegarsi al database."; -$a->strings["Connected to database."] = "Collegato al database."; -$a->strings["Proceed with Installation"] = "Continua con l'installazione"; -$a->strings["Your Friendika site database has been installed."] = "Il database del tuo sito Friendika è stato installato."; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare manualmente un operazione pianificata per il poller"; -$a->strings["Please see the file \"INSTALL.txt\"."] = "Guarda il file \"INSTALL.txt\"."; -$a->strings["Proceed to registration"] = "Continua con la registrazione"; -$a->strings["Database import failed."] = "Importazione database fallita."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; -$a->strings["Welcome to Friendika."] = "Benvenuto su Friendika."; -$a->strings["Friendika Social Network"] = "Friendika Social Network"; -$a->strings["Installation"] = "Installazione"; -$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Per instalare Friendika dobbiamo sapere come collegarci al tuo database."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su questi settaggi."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; -$a->strings["Database Server Name"] = "Nome Database Server"; -$a->strings["Database Login Name"] = "Nome utente Database"; -$a->strings["Database Login Password"] = "Password utente Database"; -$a->strings["Database Name"] = "Nome Database"; -$a->strings["Please select a default timezone for your website"] = "Seleziona un fuso orario di default per il tuo sito web"; -$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "Indirizzo email dell'amministratore del sito. L'email del tuo account deve corrispodere a questa, per poter utilizzare il pannello di amministrazione"; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare una versione da riga di comando di PHP nel PATH del server web"; -$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "E' richiesto. Aggiorna il file .htconfig.php di conseguenza."; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -$a->strings["This is required for message delivery to work."] = "Ciò è richiesto per far funzionare la consegna dei messaggi."; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non 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 installato."; -$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; -$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non 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 puo' scrivere il file nella tua cartella, anche se tu puoi."; -$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Controlla la documentazione del tuo sito o con il personale di suporto se la situazione puo' essere corretta."; -$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Altrimenti dovrai procedere con l'installazione manuale. Guarda il file \"INSTALL.txt\" per istuzioni"; -$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 puo' 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."] = "Errori creando le tabelle nel database."; -$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per vederlo]"; -$a->strings["Profile Match"] = "Profili combacianti"; -$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["No matches"] = "Nessun risultato"; -$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; -$a->strings["Visible to:"] = "Visibile a:"; -$a->strings["Welcome to %s"] = "Benvenuto su %s"; -$a->strings["Invalid request identifier."] = "Identificativo richiesta invalido."; -$a->strings["Discard"] = "Scarta"; -$a->strings["Ignore"] = "Ignora"; -$a->strings["Pending Friend/Connect Notifications"] = "Richieste di amicizia/connessione in attesa"; -$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["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["Fan/Admirer"] = "Fan/Ammiratore"; -$a->strings["Friend/Connect Request"] = "Richiesta Amicizia/Connessione"; -$a->strings["New Follower"] = "Nuovo Seguace"; -$a->strings["No notifications."] = "Nessuna notifica."; -$a->strings["Invite Friends"] = "Invita Amici"; -$a->strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", +$a->strings["%s : Not a valid email address."] = "%s: Non è un indirizzo email valido."; +$a->strings["Please join my network on %s"] = "Unisciti al mio social network su %s"; +$a->strings["%s : Message delivery failed."] = "%s: Consegna del messaggio fallita."; +$a->strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", ); -$a->strings["Find People With Shared Interests"] = "Trova persone che condividono i tuoi interessi"; -$a->strings["Connect/Follow"] = "Connetti/Segui"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Esempio: bob@example.com, http://example.com/barbara"; -$a->strings["Follow"] = "Segui"; +$a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +$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["Please join my social network on %s"] = "Unisciti al mio social network su %s"; +$a->strings["To accept this invitation, please visit:"] = "Per accettare questo invito visita:"; +$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 sul mio profilo a:"; +$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["Could not access contact record."] = "Non si puo' 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 aggiornando il 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 conttatto è non ignorato"; $a->strings["stopped following"] = "tolto dai seguiti"; $a->strings["Contact has been removed."] = "Il contatto è stato rimosso."; -$a->strings["Mutual Friendship"] = "Reciproca amicizia"; -$a->strings["is a fan of yours"] = "è un tuo fan"; -$a->strings["you are a fan of"] = "sei un fan di"; -$a->strings["Privacy Unavailable"] = "Privacy non disponibile"; +$a->strings["You are mutual friends with %s"] = "Sei amico reciproco con %s"; +$a->strings["You are sharing with %s"] = "Stai condividendo con %s"; +$a->strings["%s is sharing with you"] = "%s sta condividendo con te"; $a->strings["Private communications are not available for this contact."] = "Le comunicazioni private non sono disponibili per questo contatto."; $a->strings["Never"] = "Mai"; $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["Unblock"] = "Sblocca"; +$a->strings["Block"] = "Blocca"; +$a->strings["Unignore"] = "Non ignorare"; +$a->strings["Ignore"] = "Ignora"; +$a->strings["Repair"] = "Ripara"; $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."; $a->strings["Contact Information / Notes"] = "Informazioni / Note sul contatto"; -$a->strings["Online Reputation"] = "Reputazione Online"; -$a->strings["Occasionally your friends may wish to inquire about this person's online legitimacy."] = "Puo' capitare che i tuoi amici vogliano sapere la legittimità online dei questa persona."; -$a->strings["You may help them choose whether or not to interact with this person by providing a reputation to guide them."] = "Puoi aiutarli a scegliere se interagire o no con questa persona fornendo una reputazione per guidarli."; -$a->strings["Please take a moment to elaborate on this selection if you feel it could be helpful to others."] = "Prenditi un momento per pensare su questa selezione se senti che puo' essere utile ad altri."; +$a->strings["Edit contact notes"] = "Modifica note contatto"; $a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; $a->strings["Block/Unblock contact"] = "Blocca/Sblocca contatto"; $a->strings["Ignore contact"] = "Ingnora il contatto"; -$a->strings["Repair contact URL settings"] = "Sistema impostazioni URL del contatto"; -$a->strings["Repair contact URL settings (WARNING: Advanced)"] = "Sistema impostazioni URL del contatto (ATTENZIONE: Avanzato)"; +$a->strings["Repair URL settings"] = "Impostazioni riparazione URL"; $a->strings["View conversations"] = "Vedi conversazioni"; $a->strings["Delete contact"] = "Rimuovi contatto"; -$a->strings["Last updated: "] = "Ultimo aggiornameto: "; -$a->strings["Update public posts: "] = "Aggiorna messaggi pubblici: "; +$a->strings["Last update:"] = "Ultimo aggiornamento:"; +$a->strings["Update public posts"] = "Aggiorna messaggi pubblici"; $a->strings["Update now"] = "Aggiorna adesso"; -$a->strings["Unblock this contact"] = "Sblocca questo contatto"; -$a->strings["Block this contact"] = "Blocca questo contatto"; -$a->strings["Unignore this contact"] = "Rimuovi dai contatti ingorati"; -$a->strings["Ignore this contact"] = "Aggiungi ai contatti ignorati"; $a->strings["Currently blocked"] = "Bloccato"; $a->strings["Currently ignored"] = "Ignorato"; $a->strings["Contacts"] = "Contatti"; $a->strings["Show Blocked Connections"] = "Mostra connessioni bloccate"; $a->strings["Hide Blocked Connections"] = "Nascondi connessioni bloccate"; +$a->strings["Search your contacts"] = "Cerca nei tuoi contatti"; $a->strings["Finding: "] = "Cerco: "; $a->strings["Find"] = "Trova"; +$a->strings["Mutual Friendship"] = "Reciproca amicizia"; +$a->strings["is a fan of yours"] = "è un tuo fan"; +$a->strings["you are a fan of"] = "sei un fan di"; $a->strings["Edit contact"] = "Modifca contatto"; -$a->strings["No valid account found."] = "Nessun account valido trovato."; -$a->strings["Password reset request issued. Check your email."] = "Richiesta di reimpostazione pasword inviata. Controlla la tua email."; -$a->strings["Password reset requested at %s"] = "Richiesta recupero 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"] = "Resetta 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"] = "Sava o copa 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 essere entrato."; -$a->strings["Forgot your Password?"] = "Dimenticato la tua 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 richiedere di reimpostare la tua passwork."; -$a->strings["Nickname or Email: "] = "Nome utente o Email: "; -$a->strings["Reset"] = "Reimposta"; -$a->strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Passoword non cambiata."; -$a->strings["Empty passwords are not allowed. Password unchanged."] = "Password vuote non sono consentite. Password non cambiata."; -$a->strings["Password changed."] = "Password cambiata."; -$a->strings["Password update failed. Please try again."] = "Aggiornamento password fallito. Prova ancora."; -$a->strings["Failed to connect with email account using the settings provided."] = "Impossibile collegarsi all'account email con i parametri forniti."; -$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["Settings updated."] = "Impostazioni aggiornate."; -$a->strings["Account settings"] = "Parametri account"; -$a->strings["Plugin settings"] = "Impostazioni plugin"; -$a->strings["No Plugin settings configured"] = "Nessun Plugin ha delle configurazioni che puoi modificare"; -$a->strings["Plugin Settings"] = "Impostazioni Plugin"; -$a->strings["Normal Account"] = "Account normale"; -$a->strings["This account is a normal personal profile"] = "Questo account è un normale profilo personale"; -$a->strings["Soapbox Account"] = "Account Palco"; -$a->strings["Automatically approve all connection/friend requests as read-only fans"] = "Accetta automaticamente le richieste di connessione/amicizia come fan che possono solamente leggere"; -$a->strings["Community/Celebrity Account"] = "Account Celebrità/Comunità"; -$a->strings["Automatically approve all connection/friend requests as read-write fans"] = "Accetta automaticamente le richieste di connessione/amicizia come fan che possono scrivere in bacheca"; -$a->strings["Automatic Friend Account"] = "Account Amico Automatico"; -$a->strings["Automatically approve all connection/friend requests as friends"] = "Accetta automaticamente le richieste di connessione/amicizia come amici"; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Opzionale) Consente di loggarti in questo account con questo OpenID"; -$a->strings["Publish your default profile in your local site directory?"] = "Pubblica il tuo profilo predefinito nell'elenco locale del sito"; -$a->strings["Publish your default profile in the global social directory?"] = "Pubblica il tuo profilo predefinito nell'elenco sociale globale"; -$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Nascondi la lista dei tuoi contatti/amici dai visitatori del tuo profilo predefinito"; -$a->strings["Hide profile details and all your messages from unknown viewers?"] = "Nascondi i dettagli del profilo e tutti i tuoi messaggi ai visitatori sconosciuti?"; -$a->strings["Profile is not published."] = "Il profilo non è pubblicato."; -$a->strings["or"] = "o"; -$a->strings["Your Identity Address is"] = "Il tuo Indirizzo Identità è"; -$a->strings["Account Settings"] = "Impostazioni Account"; -$a->strings["Export Personal Data"] = "Esporta i Dati Personali"; -$a->strings["Password Settings"] = "Impostazioni Password"; -$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à di default per l'invio:"; -$a->strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -$a->strings["Display Theme:"] = "Tema:"; -$a->strings["Security and Privacy Settings"] = "Impostazioni di Sicurezza e Privacy"; -$a->strings["Maximum Friend Requests/Day:"] = "Numero massimo di richieste di amicizia per giorno:"; -$a->strings["(to prevent spam abuse)"] = "(per prevenire lo spam)"; -$a->strings["Default Post Permissions"] = "Permessi di default per i messaggi"; -$a->strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -$a->strings["Allow friends to post to your profile page:"] = "Permetti agli amici di inviare messaggi sulla tua bacheca:"; -$a->strings["Automatically expire posts after days:"] = "Cancella automaticamente i messaggi dopo giorni:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Se lasciato vuoto, i messaggi non verranno cancellati."; -$a->strings["Notification Settings"] = "Impostazioni Notifiche"; -$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"; -$a->strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla bacheca del tuo profilo"; -$a->strings["Someone writes a followup comment"] = "Qualcuno scrive un commento a un tuo messaggio"; -$a->strings["You receive a private message"] = "Ricevi un messaggio privato"; -$a->strings["Email/Mailbox Setup"] = "Impostazioni Email"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)"; -$a->strings["Last successful email check:"] = "Ultimo controllo email eseguito con successo:"; -$a->strings["Email access is disabled on this site."] = "L'accesso Email è disabilitato su questo sito."; -$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:"; -$a->strings["Send public posts to all email contacts:"] = "Invia i messaggi pubblici ai contatti email:"; -$a->strings["Advanced Page Settings"] = "Impostazioni Avanzate Account"; -$a->strings["Welcome back %s"] = "Bentornato %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.)"] = "(Passa tra diverse identità o pagine di comunità/gruppi che condividono i dettagli del tuo account.)"; -$a->strings["Select an identity to manage: "] = "Seleziona una identità da gestire:"; -$a->strings["View Conversations"] = "Vedi conversazioni"; -$a->strings["View New Items"] = "Vedi nuovi elementi"; -$a->strings["View Any Items"] = "Vedi tutti gli elementi"; -$a->strings["View Starred Items"] = "Vedi elementi preferiti"; -$a->strings["Warning: This group contains %s member from an insecure network."] = array( - 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", - 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", -); -$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati a questo gruppo sono a rischio di visualizzazione pubblica."; -$a->strings["No such group"] = "Nessun gruppo"; -$a->strings["Group is empty"] = "Il gruppo è vuoto"; -$a->strings["Group: "] = "Gruppo: "; -$a->strings["Contact: "] = "Contatto:"; -$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati ​​a questa persona sono a rischio di divulgazione al pubblico."; -$a->strings["Invalid contact."] = "Contatto non valido."; -$a->strings["Save"] = "Salva"; -$a->strings["Welcome to Friendika"] = "Benvenuto in Friendika"; -$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."] = "Vorremmo offrire alcuni suggerimenti e link per contribuire a rendere la tua esperienza piacevole. Fai clic su un elemento per visitare la pagina corrispondente."; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Nella tua pagina Impostazioni - cambia la tua password iniziale. E prendi nota del tuo Indirizzo Identità. Questo tornerà utile nello stringere amicizie."; -$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 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["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["Enter your email access information on your Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Inserisci i dati per accedere alla tua email nella pagina Impostazioni se vuoi importare e interagire con amici o mailing list dalla posta in arrivo della tua email."; -$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["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["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 Connect dialog."] = "La pagina Contatti è il centro di controllo per la gestione delle amicizie e per collegarti ad amici su altri network. Basta che inserisci il loro indirizzo o l'URL del sito nel box Connetti."; -$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["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["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["Item not available."] = "Elemento non disponibile."; -$a->strings["Item was not found."] = "Elemento non trovato."; -$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["Permission denied"] = "Permesso negato"; -$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["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -$a->strings["Group Editor"] = "Modifica gruppo"; -$a->strings["Members"] = "Membri"; -$a->strings["All Contacts"] = "Tutti i Contatti"; -$a->strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; -$a->strings["Profile Visibility Editor"] = "Modifica Visibilità del Profilo"; -$a->strings["Visible To"] = "Visibile A"; -$a->strings["All Contacts (with secure profile access)"] = "Tutti i Contatti (con profilo ad accesso sicuro)"; -$a->strings["View Contacts"] = "Guarda contatti"; -$a->strings["No contacts."] = "Nessuno contatto."; +$a->strings["Remote privacy information not available."] = "Informazioni remote sulla privacy non disponibili."; +$a->strings["Visible to:"] = "Visibile a:"; $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"; @@ -441,13 +424,12 @@ $a->strings["Nickname is already registered. Please choose another."] = "Soprann $a->strings["SERIOUS ERROR: Generation of security keys failed."] = "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito."; $a->strings["An error occurred during registration. Please try again."] = "Si è verificato un errore durante la registrazione. Prova ancora."; $a->strings["An error occurred creating your default profile. Please try again."] = "Si è verificato un errore creando il tuo profilo. Prova ancora."; -$a->strings["Registration details for %s"] = "Dettagli registrazione per %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 inviando il messaggio email. Questo è il messaggio non inviato."; $a->strings["Your registration can not be processed."] = "La tua registrazione non puo' essere elaborata."; $a->strings["Registration request at %s"] = "Richiesta di registrazione su %s"; $a->strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte del prorietario del sito."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puoi (opzionalmento) riempire questa maschera via OpenID inserendo il tuo OpenID e cliccando 'Registra'."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Puoi (opzionalmente) riempire questa maschera via OpenID inserendo il tuo OpenID e cliccando 'Registra'."; $a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il resto della maschera."; $a->strings["Your OpenID (optional): "] = "Il tuo OpenID (opzionale): "; $a->strings["Include your profile in member directory?"] = "Includi il tuo profilo nell'elenco dei membir?"; @@ -458,79 +440,219 @@ $a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo Nome Completo (p.e. M $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 soprannome. Deve cominciare con un carattere. L'indirizzo del tuo profilo sarà 'soprannome@\$sitename'."; $a->strings["Choose a nickname: "] = "Scegli un soprannome: "; -$a->strings["Register"] = "Regitrati"; +$a->strings["Post successful."] = "Inviato con successo."; +$a->strings["Friends of %s"] = "Amici di %s"; +$a->strings["No friends to display."] = "Nessun amico da visualizzare."; +$a->strings["Help:"] = "Guida:"; +$a->strings["Help"] = "Guida"; +$a->strings["Could not create/connect to database."] = "Impossibile creare/collegarsi al database."; +$a->strings["Connected to database."] = "Collegato al database."; +$a->strings["Proceed with Installation"] = "Continua con l'installazione"; +$a->strings["Your Friendika site database has been installed."] = "Il database del tuo sito Friendika è stato installato."; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi impostare manualmente un operazione pianificata per il poller"; +$a->strings["Please see the file \"INSTALL.txt\"."] = "Guarda il file \"INSTALL.txt\"."; +$a->strings["Proceed to registration"] = "Continua con la registrazione"; +$a->strings["Database import failed."] = "Importazione database fallita."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Potresti dover importare il file \"database.sql\" manualmente con phpmyadmin o mysql"; +$a->strings["Welcome to Friendika."] = "Benvenuto su Friendika."; +$a->strings["Friendika Social Network"] = "Friendika Social Network"; +$a->strings["Installation"] = "Installazione"; +$a->strings["In order to install Friendika we need to know how to connect to your database."] = "Per instalare Friendika dobbiamo sapere come collegarci al tuo database."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su questi settaggi."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database dovrà già esistere. Se non esiste, crealo prima di continuare."; +$a->strings["Database Server Name"] = "Nome Database Server"; +$a->strings["Database Login Name"] = "Nome utente Database"; +$a->strings["Database Login Password"] = "Password utente Database"; +$a->strings["Database Name"] = "Nome Database"; +$a->strings["Please select a default timezone for your website"] = "Seleziona un fuso orario di default per il tuo sito web"; +$a->strings["Site administrator email address. Your account email address must match this in order to use the web admin panel."] = "Indirizzo email dell'amministratore del sito. L'email del tuo account deve corrispodere a questa, per poter utilizzare il pannello di amministrazione"; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Non riesco a trovare una versione da riga di comando di PHP nel PATH del server web"; +$a->strings["This is required. Please adjust the configuration file .htconfig.php accordingly."] = "E' richiesto. Aggiorna il file .htconfig.php di conseguenza."; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +$a->strings["This is required for message delivery to work."] = "Ciò è richiesto per far funzionare la consegna dei messaggi."; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non 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 installato."; +$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; +$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto ma non installato"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non 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 puo' scrivere il file nella tua cartella, anche se tu puoi."; +$a->strings["Please check with your site documentation or support people to see if this situation can be corrected."] = "Controlla la documentazione del tuo sito o con il personale di suporto se la situazione puo' essere corretta."; +$a->strings["If not, you may be required to perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Altrimenti dovrai procedere con l'installazione manuale. Guarda il file \"INSTALL.txt\" per istuzioni"; +$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 puo' 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."] = "Errori creando le tabelle nel database."; +$a->strings["Commented Order"] = "Ordina per commento"; +$a->strings["Posted Order"] = "Ordina per invio"; +$a->strings["New"] = "Nuovo"; +$a->strings["Starred"] = "Speciali"; +$a->strings["Bookmarks"] = "Preferiti"; +$a->strings["Warning: This group contains %s member from an insecure network."] = array( + 0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.", + 1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.", +); +$a->strings["Private messages to this group are at risk of public disclosure."] = "I messaggi privati a questo gruppo sono a rischio di visualizzazione pubblica."; +$a->strings["No such group"] = "Nessun gruppo"; +$a->strings["Group is empty"] = "Il gruppo è vuoto"; +$a->strings["Group: "] = "Gruppo: "; +$a->strings["Contact: "] = "Contatto:"; +$a->strings["Private messages to this person are at risk of public disclosure."] = "I messaggi privati ​​a questa persona sono a rischio di divulgazione al pubblico."; +$a->strings["Invalid contact."] = "Contatto non valido."; +$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["Event description and start time are required."] = "Descrizione dell'evento e ora di inizio sono obbligatori."; +$a->strings["Create New Event"] = "Crea un nuovo Evento"; +$a->strings["Previous"] = "Precendente"; +$a->strings["Next"] = "Successivo"; +$a->strings["l, F j"] = "l j F"; +$a->strings["Edit event"] = "Modifca Evento"; +$a->strings["link to source"] = "Collegamento all'originale"; +$a->strings["hour:minute"] = "ora:minuti"; +$a->strings["Event details"] = "Dettagli dell'Evento"; +$a->strings["Format is %s %s. Starting date and Description are required."] = "Il formato è %s %s. La data di inizio e la descrizione sono obbligatori."; +$a->strings["Event Starts:"] = "L'Evento inizia:"; +$a->strings["Finish date/time is not known or not relevant"] = "La data/l'ora di fine è sconosciuta o non importante"; +$a->strings["Event Finishes:"] = "L'Evento finisce:"; +$a->strings["Adjust for viewer timezone"] = "Regola nel fuso orario di chi legge"; +$a->strings["Description:"] = "Descrizione"; +$a->strings["Share this event"] = "Condividi questo Evento"; +$a->strings["Invalid request identifier."] = "Identificativo richiesta invalido."; +$a->strings["Discard"] = "Scarta"; +$a->strings["Network"] = "Rete"; +$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["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"] = "Nuovo Seguace"; +$a->strings["No notifications."] = "Nessuna notifica."; +$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["Nothing new!"] = "Niente di nuovo!"; +$a->strings["Contact settings applied."] = "Impostazioni del contatto applicate."; +$a->strings["Contact update failed."] = "Aggiornamento del contatto non riuscito."; +$a->strings["Contact not found."] = "Contatto non trovato."; +$a->strings["Repair Contact Settings"] = "Ripara le Impostazioni del 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["Account Nickname"] = "Nickname dell'utente"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@TagName - rimpiazza il nome / soprannome"; +$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["This introduction has already been accepted."] = "Questa presentazione è già stata accettata."; +$a->strings["Profile location is not valid or does not contain profile information."] = "La posizione del profilo non è valida o non contiene informazioni di profilo."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Attenzione: la posizione del profilo non ha un identificabile proprietario."; +$a->strings["Warning: profile location has no profile photo."] = "Attenzione: la posizione 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 nella posizione data", + 1 => "%d parametri richiesti non sono stati trovati nella posizione data", +); +$a->strings["Introduction complete."] = "Presentazione completa."; +$a->strings["Unrecoverable protocol error."] = "Errore di protocollo non recuperabile."; +$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["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."] = "Sembra che tu sia già amico di %s."; +$a->strings["Invalid profile URL."] = "Indirizzo profilo invalido."; +$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."] = "Accesso con identà incorretta. Accedi a questo profilo."; +$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["Introduction received at "] = "Introduzione ricevuta su "; +$a->strings["Diaspora members: Please do not use this form. Instead, enter \"%s\" into your Diaspora search bar."] = "Untenti Diaspora: non utilizzate questo modulo. Al contrario, digitate \"%s\" nella barra di ricerca sul vostro pod Diaspora."; +$a->strings["Please enter your 'Identity Address' from one of the following supported social networks:"] = "Inserisci il tuo \"Indirizzo Identità\" da uno dei social network supportati:"; +$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 al seguente:"; +$a->strings["Does %s know you?"] = "%s ti conosce?"; +$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["- please share from your own site as noted above"] = "- condividere dal tuo sito come osservato in precedenza"; +$a->strings["Your Identity Address:"] = "Il tuo Indirizzo Identità:"; +$a->strings["Submit Request"] = "Invia richiesta"; +$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["status"] = "lo stato"; +$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["%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["This is Friendika version"] = "Questo è Friendika versione"; +$a->strings["No valid account found."] = "Nessun account valido trovato."; +$a->strings["Password reset request issued. Check your email."] = "Richiesta di reimpostazione pasword inviata. Controlla la tua email."; +$a->strings["Password reset requested at %s"] = "Richiesta recupero 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["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"] = "Sava o copa 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 essere entrato."; +$a->strings["Forgot your Password?"] = "Dimenticato la tua 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 richiedere di reimpostare la tua passwork."; +$a->strings["Nickname or Email: "] = "Nome utente o Email: "; +$a->strings["Reset"] = "Reimposta"; +$a->strings["This is Friendica, version"] = "Questo è Friendica, versione"; $a->strings["running at web location"] = "in esecuzione all'indirizzo"; -$a->strings["Shared content within the Friendika network is provided under the Creative Commons Attribution 3.0 license"] = "I contenuti condivisi nel network Friendika è rilasciato sotto la licenza Creative Commons Attribution 3.0 license"; -$a->strings["Please visit Project.Friendika.com to learn more about the Friendika project."] = "Visita Project.Friendika.com per saperne di più sul progetto Friendika."; +$a->strings["Please visit Project.Friendika.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 Friendika - dot com"] = "Suggerimenti, preghiere, donazioni, etc - invia una email a \"Info\" at Friendika - dot.com"; +$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 installate"; $a->strings["No installed plugins/addons/apps"] = "Nessuno plugin/addons/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["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; -$a->strings["Wall Photos"] = "Foto Bacheca"; -$a->strings["noreply"] = "nessuna risposta"; -$a->strings["Administrator@"] = "Amministratore@"; -$a->strings["%s commented on an item at %s"] = "%s ha commentato un elemento su %s"; -$a->strings["%s posted to your profile wall at %s"] = "%s ha scritto sulla tua bacheca su %s"; -$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; -$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendika."; -$a->strings["You may visit them online at %s"] = "Puoi visitarli online presso %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["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il ritaglio è fallito."; -$a->strings["Image size reduction [%s] failed."] = "Riduzione della dimensione dell'immagine [%s] fallito."; -$a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -$a->strings["Image exceeds size limit of %d"] = "La dimensionde dell'immagine supera il limite di %d"; -$a->strings["Upload File:"] = "Carica un file:"; -$a->strings["Upload Profile Photo"] = "Carica la Foto del 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."] = "Sistema il ritaglio dell'imagine per una visualizzazione ottimale."; -$a->strings["Done Editing"] = "Fatto"; -$a->strings["Image uploaded successfully."] = "Immagine caricata con successo."; -$a->strings["No profile"] = "Nessun profilo"; $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 rimuoverà completamente il tuo account. Una volta rimosso non si potrà recuperarlo."; $a->strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; -$a->strings["No recipient selected."] = "Nessun destinatario selezionato."; -$a->strings["[no subject]"] = "[nessun oggetto]"; -$a->strings["Unable to locate contact information."] = "Impossibile trovare le informazioni del contatto."; -$a->strings["Message sent."] = "Messaggio inviato."; -$a->strings["Message could not be sent."] = "Il messaggio non puo' essere inviato."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Inbox"] = "In arrivo"; -$a->strings["Outbox"] = "Inviati"; -$a->strings["New Message"] = "Nuovo messaggio"; -$a->strings["Message deleted."] = "Messaggio cancellato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Send Private Message"] = "Invia messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["No messages."] = "Nessun messaggio."; -$a->strings["Delete conversation"] = "Cancella conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; -$a->strings["Message not available."] = "Messaggio non disponibile."; -$a->strings["Delete message"] = "Cancella messaggio"; -$a->strings["Send Reply"] = "Invia risposta"; +$a->strings["Applications"] = "Applicazioni"; +$a->strings["No installed applications."] = "Nessuna applicazione installata."; +$a->strings["Save"] = "Salva"; +$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["Access denied."] = "Accesso negato."; +$a->strings["Global Directory"] = "Elenco Globale"; +$a->strings["Normal site view"] = "Vista normale"; +$a->strings["Admin - View all site entries"] = "Admin - Visualizza tutte le voci del sito"; +$a->strings["Find on this site"] = "Cerca nel sito"; +$a->strings["Site Directory"] = "Elenco del Sito"; +$a->strings["Gender: "] = "Genere:"; +$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; $a->strings["Site"] = "Sito"; $a->strings["Users"] = "Utenti"; $a->strings["Plugins"] = "Plugin"; -$a->strings["Update"] = "Aggiorna"; $a->strings["Logs"] = "Log"; $a->strings["User registrations waiting for confirmation"] = "Utenti registrati in attesa di conferma"; -$a->strings["Item not found."] = "Elemento non trovato."; $a->strings["Administration"] = "Amministrazione"; $a->strings["Summary"] = "Sommario"; $a->strings["Registered users"] = "Utenti registrati"; @@ -551,6 +673,8 @@ $a->strings["System theme"] = "Tema di sistema"; $a->strings["Maximum image size"] = "Massima dimensione immagini"; $a->strings["Register policy"] = "Politica di registrazione"; $a->strings["Register text"] = "Testo registrazione"; +$a->strings["Accounts abandoned after x days"] = "Account abbandonati dopo x giorni"; +$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Non spreca risorse di sistema controllando siti esterni per gli account abbandonati. Immettere 0 per nessun limite di tempo."; $a->strings["Allowed friend domains"] = "Domini amici consentiti"; $a->strings["Allowed email domains"] = "Domini email consentiti"; $a->strings["Block public"] = "Blocca pagine pubbliche"; @@ -563,6 +687,7 @@ $a->strings["Fullname check"] = "Controllo nome completo"; $a->strings["UTF-8 Regular expressions"] = "Espressioni regolari UTF-8"; $a->strings["Show Community Page"] = "Mostra pagina Comunità"; $a->strings["Enable OStatus support"] = "Abilita supporto OStatus"; +$a->strings["Enable Diaspora support"] = "Abilita il supporto a Diaspora"; $a->strings["Only allow Friendika contacts"] = "Permetti solo contatti Friendika"; $a->strings["Verify SSL"] = "Verifica SSL"; $a->strings["Proxy user"] = "Utente Proxy"; @@ -585,8 +710,6 @@ $a->strings["Request date"] = "Data richiesta"; $a->strings["Email"] = "Email"; $a->strings["No registrations."] = "Nessuna registrazione."; $a->strings["Deny"] = "Nega"; -$a->strings["Block"] = "Blocca"; -$a->strings["Unblock"] = "Sblocca"; $a->strings["Register date"] = "Data registrazione"; $a->strings["Last login"] = "Ultimo accesso"; $a->strings["Last item"] = "Ultimo elemento"; @@ -610,99 +733,40 @@ $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["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["Login failed."] = "Accesso fallito."; -$a->strings["Welcome "] = "Benvenuto"; -$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; -$a->strings["Welcome back "] = "Bentornato "; -$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 nessun protocollo 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 dell'autore"; -$a->strings["No browser URL could be matched to this address."] = "Nessun URL puo' essere associato a questo indirizzo."; -$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 nofiche dirette/personali da te."; -$a->strings["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto."; -$a->strings["following"] = "segue"; -$a->strings["Item has been removed."] = "L'elemento è stato rimosso."; -$a->strings["New mail received at "] = "Nuova mail ricevuta su "; -$a->strings["Applications"] = "Applicazioni"; -$a->strings["No installed applications."] = "Nessuna applicazione installata."; -$a->strings["Search"] = "Cerca"; -$a->strings["Profile not found."] = "Profilo non trovato."; -$a->strings["Profile Name is required."] = "Il Nome Profilo è richiesto ."; -$a->strings["Profile updated."] = "Profilo aggiornato."; -$a->strings["Profile deleted."] = "Profilo elminato."; -$a->strings["Profile-"] = "Profilo-"; -$a->strings["New profile created."] = "Nuovo profilo creato."; -$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il plrofilo."; -$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["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"] = "Cancella 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:"; -$a->strings["Locality/City:"] = "Località/Città:"; -$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["Sexual Preference:"] = "Preferenza sessuale:"; -$a->strings["Homepage URL:"] = "Indirizzo homepage:"; -$a->strings["Political Views:"] = "Orientamento politico:"; -$a->strings["Religious Views:"] = "Orientamento religioso:"; -$a->strings["Public Keywords:"] = "Parole chiave pubbliche:"; -$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)"] = "(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, mai mostrato ad altri)"; -$a->strings["Tell us about yourself..."] = "Racconta di te..."; -$a->strings["Hobbies/Interests"] = "Hobbie/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/romanticismo"; -$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["Profiles"] = "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["Global Directory"] = "Elenco Globale"; -$a->strings["Normal site view"] = "Vista normale"; -$a->strings["View all site entries"] = "Visualizza tutte le voci del sito"; -$a->strings["Site Directory"] = "Elenco del Sito"; -$a->strings["Gender: "] = "Genere:"; -$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta)."; -$a->strings["%s : Not a valid email address."] = "%s: Non è un indirizzo email valido."; -$a->strings["Please join my network on %s"] = "Unisciti al mio social network su %s"; -$a->strings["%s : Message delivery failed."] = "%s: 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["Send invitations"] = "Invia inviti"; -$a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -$a->strings["Please join my social network on %s"] = "Unisciti al mio social network su %s"; -$a->strings["To accept this invitation, please visit:"] = "Per accettare questo invito visita:"; -$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 sul mio profilo a:"; +$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +$a->strings["Empty post discarded."] = "Messaggio vuoto scartato."; +$a->strings["noreply"] = "nessuna risposta"; +$a->strings["Administrator@"] = "Amministratore@"; +$a->strings["%s commented on an item at %s"] = "%s ha commentato un elemento su %s"; +$a->strings["%s posted to your profile wall at %s"] = "%s ha scritto sulla tua bacheca su %s"; +$a->strings["System error. Post not saved."] = "Errore di sistema. Messaggio non salvato."; +$a->strings["This message was sent to you by %s, a member of the Friendika social network."] = "Questo messaggio ti è stato inviato da %s, un membro del social network Friendika."; +$a->strings["You may visit them online at %s"] = "Puoi visitarli online presso %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["Tag removed"] = "TAg rimosso"; +$a->strings["Remove Item Tag"] = "Rimuovi tag dall'elemento"; +$a->strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +$a->strings["Remove"] = "Rimuovi"; +$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 sent."] = "Messaggio inviato."; +$a->strings["Inbox"] = "In arrivo"; +$a->strings["Outbox"] = "Inviati"; +$a->strings["New Message"] = "Nuovo messaggio"; +$a->strings["Message deleted."] = "Messaggio cancellato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Send Private Message"] = "Invia messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["No messages."] = "Nessun messaggio."; +$a->strings["Delete conversation"] = "Cancella conversazione"; +$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; +$a->strings["Message not available."] = "Messaggio non disponibile."; +$a->strings["Delete message"] = "Cancella messaggio"; +$a->strings["Send Reply"] = "Invia risposta"; $a->strings["Response from remote site was not understood."] = "La risposta dal sito remota non è stata capita."; $a->strings["Unexpected response from remote site: "] = "Risposta dal sito remoto inaspettata: "; $a->strings["Confirmation completed successfully."] = "Conferma completata con successo."; @@ -715,20 +779,120 @@ $a->strings["No user record found for '%s' "] = "Nessun utente trovato per '%s'" $a->strings["Our site encryption key is apparently messed up."] = "La nostra chiave di criptazione del sito è apparentemente incasinata."; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "E' stato fornito un indirizzo vuoto o non possiamo decriptare 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. Dovrebbe funzionare se provi ancora."; $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["Login failed."] = "Accesso fallito."; +$a->strings["Welcome "] = "Benvenuto"; +$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo."; +$a->strings["Welcome back "] = "Bentornato "; +$a->strings["%s welcomes %s"] = "%s da il benvenuto a %s"; +$a->strings["View Contacts"] = "Guarda contatti"; +$a->strings["No contacts."] = "Nessuno contatto."; +$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["All Contacts"] = "Tutti i Contatti"; +$a->strings["Item not available."] = "Elemento non disponibile."; +$a->strings["Item was not found."] = "Elemento non trovato."; +$a->strings["Common Friends"] = "Amici in comune"; +$a->strings["No friends in common."] = "Non ci sono amici in comune."; +$a->strings["Profile Match"] = "Profili combacianti"; +$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["Not available."] = "Non disponibile."; +$a->strings["Community"] = "Comunità"; +$a->strings["Shared content is covered by the Creative Commons Attribution 3.0 license."] = "Il contenuto in comune è coperto dalla licenza Creative Commons Attribuzione 3.0."; +$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 from Friendica"] = "Messaggio da Friendica"; +$a->strings["Post to Twitter"] = "Inva a Twitter"; +$a->strings["Twitter settings updated."] = "Impostazioni di Twitter aggiornate."; +$a->strings["Twitter Posting Settings"] = "Impostazioni Invio a Twitter"; +$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore del sito."; +$a->strings["At this Friendika 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."] = "Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai ancora collegato il tuo account locale con il tuo account su Twitter. Per farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi pubblici verranno inviati anche su 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["Currently connected to: "] = "Al momento collegato con:"; +$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["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["Clear OAuth configuration"] = "Cancella la configurazione OAuth"; +$a->strings["Consumer key"] = "Consumer key"; +$a->strings["Consumer secret"] = "Consumer secret"; +$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"] = "Chiavi OAuth StatusNet disponibili sul sito"; +$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)."] = "Queste sono chiavi OAuth precofigurate disponibili per alcuni server StatusNet. Se stai usando uno di questi server, per favore usa 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 Friendika 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 Friendika installation at your favorited StatusNet installation."] = "Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo Account Friendika come un client desktop sul tuo account StatusNet, copia la coppia di chiavi qui e inserisci l'url di base delle API.
Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questa installazione di Friendika sulla installazione di StatusNet che ti interessa."; +$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 qui sotto per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi pubblci saranno inviati a StatusNet."; +$a->strings["Log in with StatusNet"] = "Login 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["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["Allow posting to StatusNet"] = "Permetti l'invio a StatusNet"; +$a->strings["Send public postings to StatusNet by default"] = "Di default invia i messaggi pubblici a StatusNet"; +$a->strings["API URL"] = "API URL"; +$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["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale"; +$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; +$a->strings["New game"] = "Nuovo gioco"; +$a->strings["New game with handicap"] = "Nuovo gioco con l'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 tra livelli. Puoi vincere facendo tre caselle 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["Allow to use your friendika id (%s) to connecto to external unhosted-enabled storage (like ownCloud)"] = ""; +$a->strings["Unhosted DAV storage url"] = ""; +$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["Site Owners Profile"] = "Profilo del proprietario del sito"; +$a->strings["Notes"] = "Note"; $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 su Facebook di default"; -$a->strings["Link all your Facebook friends and conversations"] = "Collega tutti i tuoi amici di Facebook e le conversazioni"; -$a->strings["Warning: Your Facebook privacy settings can not be imported."] = "Attenzione: Le impostazioni di privacy di Facebook non possono essere importate."; -$a->strings["Linked Facebook items may be publicly visible, depending on your privacy settings for this website/account."] = "Gli elementi da Facebook possono essere visibili pubblicamente, a seconda delle tue impostazioni di privacy per questo sito/account"; +$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["Facebook"] = "Facebook"; $a->strings["Facebook Connector Settings"] = "Impostazioni Connettore Facebook"; $a->strings["Post to Facebook"] = "Invia a Facebook"; @@ -740,20 +904,33 @@ $a->strings["Generate new key"] = "Genera una nuova chiave"; $a->strings["Widgets key"] = "Chiave Widget"; $a->strings["Widgets available"] = "Widget disponibili"; $a->strings["Connect on Friendika!"] = "Connettiti su Friendika!"; -$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"] = "Nuovo gioco"; -$a->strings["New game with handicap"] = "Nuovo gioco con l'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 tra livelli. Puoi vincere facendo tre caselle 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["%d person likes this"] = array( + 0 => "piace a %d persona", + 1 => "piace a %d persone", +); +$a->strings["%d person doesn't like this"] = array( + 0 => "non piace a %d persona", + 1 => "non piace a %d persone", +); +$a->strings["Report Bug"] = "Segnala un Bug"; +$a->strings["\"Not Safe For Work\" Settings"] = "Impostazioni \"Non sicuro per il lavoro\" (NSFW)"; +$a->strings["Comma separated words to treat as NSFW"] = "Lista di parole, separate da virgola, da trattare come NSFW"; +$a->strings["NSFW Settings saved."] = "Impostazioni NSFW salvate."; +$a->strings["%s - Click to open/close"] = "%s - Clicca per aprire / chiudere"; +$a->strings["OpenID"] = "OpenID"; +$a->strings["Last users"] = "Ultimi utenti"; +$a->strings["Most active users"] = "Utenti più attivi"; +$a->strings["Last photos"] = "Ultime foto"; +$a->strings["Last likes"] = "Ultimi \"mi piace\""; +$a->strings["event"] = "l'evento"; +$a->strings[" - Member since: %s"] = "- Iscritto dal: %s"; $a->strings["Randplace Settings"] = "Impostazioni Randplace"; $a->strings["Enable Randplace Plugin"] = "Abilita il plugin Randplace"; +$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["Site ID"] = "Site ID"; +$a->strings["Show opt-out cookie link?"] = "Mostra il link per il cookie opt-out?"; $a->strings["Upload a file"] = "Carica un file"; $a->strings["Drop files here to upload"] = "Trascina un file qui per caricarlo"; $a->strings["Failed"] = "Fallito"; @@ -761,75 +938,14 @@ $a->strings["No files were uploaded."] = "Nessun file è stato caricato."; $a->strings["Uploaded file is empty"] = "Il file caricato è vuoto"; $a->strings["File has an invalid extension, it should be one of "] = "Il file ha una estensione non valida, dovrebbe essere una di "; $a->strings["Upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server"; -$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["Site Owners Profile"] = "Profilo del proprietario del sito"; -$a->strings["Notes"] = "Note"; -$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["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"] = "Chiavi OAuth StatusNet disponibili sul sito"; -$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)."] = "Queste sono chiavi OAuth precofigurate disponibili per alcuni server StatusNet. Se stai usando uno di questi server, per favore usa 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 Friendika 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 Friendika installation at your favorited StatusNet installation."] = "Nessuna coppia di chiavi consumer per StatusNet trovata. Regitstra il tuo Account Friendika come un client desktop sul tuo account StatusNet, copia la coppia di chiavi qui e inserisci l'url di base delle API.
Prima di registrare la tua coppia di chiavi OAuth, chiedi all'amministratore se esiste già una coppia di chiavi per questa installazione di Friendika sulla installazione di StatusNet che ti interessa."; -$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 qui sotto per ottenere un codice di sicurezza da StatusNet, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi pubblci saranno inviati a StatusNet."; -$a->strings["Log in with StatusNet"] = "Login 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 collegato 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["Allow posting to StatusNet"] = "Permetti l'invio a StatusNet"; -$a->strings["Send public postings to StatusNet by default"] = "Di default invia i messaggi pubblici a StatusNet"; -$a->strings["Clear OAuth configuration"] = "Cancella la configurazione OAuth"; -$a->strings["API URL"] = "API URL"; -$a->strings["Consumer Secret"] = "Consumer Secret"; -$a->strings["Consumer Key"] = "Consumer Key"; -$a->strings["Piwik Base URL"] = "Piwik Base URL"; -$a->strings["Site ID"] = "Site ID"; -$a->strings["Show opt-out cookie link?"] = "Mostra il link per il cookie opt-out?"; -$a->strings["Post to Twitter"] = "Inva a Twitter"; -$a->strings["Twitter settings updated."] = "Impostazioni di Twitter aggiornate."; -$a->strings["Twitter Posting Settings"] = "Impostazioni Invio a Twitter"; -$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nessuna coopia di chiavi per Twitter trovata. Contatta il tuo amministratore del sito."; -$a->strings["At this Friendika 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."] = "Questa installazione di Friendika ha il plugin Twitter abilitato, ma non hai ancora collegato il tuo account locale con il tuo account su Twitter. Per farlo, clicca il bottone qui sotto per ottenere un PIN da Twitter, che dovrai copiare nel box più sotto per poi inviare la form. Solo i tuoi messaggi pubblici verranno inviati anche su 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["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["Consumer key"] = "Consumer key"; -$a->strings["Consumer secret"] = "Consumer secret"; -$a->strings["Gender:"] = "Genere:"; -$a->strings["Birthday:"] = "Compleanno:"; -$a->strings["j F, Y"] = "j F Y"; -$a->strings["j F"] = "j F"; -$a->strings["Age:"] = "Età:"; -$a->strings[" Status:"] = " Stato sentimentale:"; -$a->strings["Homepage:"] = "Homepage:"; -$a->strings["Religion:"] = "Religione:"; -$a->strings["About:"] = "Informazioni:"; -$a->strings["Hobbies/Interests:"] = "Hobbie/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/romanticismo:"; -$a->strings["Work/employment:"] = "Lavoro/impiego:"; -$a->strings["School/education:"] = "Scuola/educazione:"; +$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["(no subject)"] = "(nessun oggetto)"; $a->strings["Unknown | Not categorised"] = "Sconosciuto | non categorizzato"; $a->strings["Block immediately"] = "Blocca immediatamente"; $a->strings["Shady, spammer, self-marketer"] = "Shady, spammer, self-marketer"; @@ -842,6 +958,9 @@ $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["Male"] = "Maschio"; $a->strings["Female"] = "Femmina"; $a->strings["Currently Male"] = "Al momento maschio"; @@ -895,9 +1014,52 @@ $a->strings["Uncertain"] = "Incerto"; $a->strings["Complicated"] = "Complicato"; $a->strings["Don't care"] = "Non interessa"; $a->strings["Ask me"] = "Chiedimelo"; -$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["Visible to everybody"] = "Visibile a tutti"; +$a->strings["show"] = "mostra"; +$a->strings["don't show"] = "non mostrare"; +$a->strings["Logged out."] = "Sei uscito."; +$a->strings["Image/photo"] = "Immagine/foto"; +$a->strings["From: "] = "Da: "; +$a->strings["View status"] = "Vedi stato"; +$a->strings["View profile"] = "Vedi profilo"; +$a->strings["View photos"] = "Vedi foto"; +$a->strings["View recent"] = "Visualizza recente"; +$a->strings["Send PM"] = "Invia messaggio privato"; +$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[" ago"] = " fa"; +$a->strings["Birthday:"] = "Compleanno:"; +$a->strings["j F, Y"] = "j F Y"; +$a->strings["j F"] = "j F"; +$a->strings["Age:"] = "Età:"; +$a->strings["Religion:"] = "Religione:"; +$a->strings["About:"] = "Informazioni:"; +$a->strings["Hobbies/Interests:"] = "Hobbie/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/romanticismo:"; +$a->strings["Work/employment:"] = "Lavoro/impiego:"; +$a->strings["School/education:"] = "Scuola/educazione:"; $a->strings["prev"] = "prec"; $a->strings["first"] = "primo"; $a->strings["last"] = "ultimo"; @@ -907,6 +1069,7 @@ $a->strings["%d Contact"] = array( 0 => "%d Contatto", 1 => "%d Contatti", ); +$a->strings["Search"] = "Cerca"; $a->strings["Monday"] = "Lunedì"; $a->strings["Tuesday"] = "Martedì"; $a->strings["Wednesday"] = "Mercoledì"; @@ -928,15 +1091,15 @@ $a->strings["November"] = "Novembre"; $a->strings["December"] = "Dicembre"; $a->strings["bytes"] = "bytes"; $a->strings["Select an alternate language"] = "Seleziona una diversa lingua"; -$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; -$a->strings["Embedding disabled"] = "Inclusione disabilitata"; -$a->strings["Create a new group"] = "Crea un nuovo gruppo"; -$a->strings["Everybody"] = "Tutti"; -$a->strings["Logout"] = "Esci"; +$a->strings["default"] = "default"; $a->strings["End this session"] = "Finisci questa sessione"; -$a->strings["Login"] = "Accedi"; +$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 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["Sign in"] = "Entra"; -$a->strings["Home"] = "Home"; $a->strings["Home Page"] = "Home Page"; $a->strings["Create an account"] = "Crea un account"; $a->strings["Help and documentation"] = "Guida e documentazione"; @@ -946,62 +1109,33 @@ $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["Network"] = "Rete"; $a->strings["Conversations from your friends"] = "Conversazioni dai tuoi amici"; -$a->strings["Your posts and conversations"] = "I tuoi messaggi e le tue conversazioni"; -$a->strings["Notifications"] = "Notifiche"; -$a->strings["Friend requests"] = "Richieste di amicizia"; +$a->strings["Friend Requests"] = "Richieste di amicizia"; $a->strings["Private mail"] = "Posta privata"; $a->strings["Manage"] = "Gestisci"; $a->strings["Manage other pages"] = "Gestisci altre pagine"; -$a->strings["Manage/edit profiles"] = "Gestisci/modifica i profili"; $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["Logged out."] = "Sei uscito."; -$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[" ago"] = " fa"; -$a->strings["From: "] = "Da: "; -$a->strings["Image/photo"] = "Immagine/foto"; -$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -$a->strings["Visible to everybody"] = "Visibile a tutti"; -$a->strings["show"] = "mostra"; -$a->strings["don't show"] = "non mostrare"; -$a->strings["(no subject)"] = "(nessun oggetto)"; -$a->strings["You have a new follower at "] = "Hai un nuovo seguace su "; -$a->strings["event"] = "l'evento"; -$a->strings["View %s's profile"] = "Vedi il profilo di %s"; +$a->strings["Nothing new here"] = "Niente di nuovo qui"; +$a->strings["Select"] = "Seleziona"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; $a->strings["%s from %s"] = "%s da %s"; $a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["See more posts like this"] = "Vedi altri post come questo"; $a->strings["See all %d comments"] = "Vedi tutti i %d commenti"; -$a->strings["Select"] = "Seleziona"; +$a->strings["like"] = "mi piace"; +$a->strings["dislike"] = "non mi piace"; +$a->strings["Share this"] = "Condividi questo"; +$a->strings["share"] = "condividi"; +$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"] = "speciale"; +$a->strings["add tag"] = "aggiungi tag"; $a->strings["to"] = "a"; $a->strings["Wall-to-Wall"] = "Bacheca-A-Bacheca"; -$a->strings["via Wall-To-Wall:"] = "sulla sua Bacheca:"; +$a->strings["via Wall-To-Wall:"] = "sulla sua Bacheca"; $a->strings["Delete Selected Items"] = "Cancella elementi selezionati"; -$a->strings["View status"] = "Vedi stato"; -$a->strings["View profile"] = "Vedi profilo"; -$a->strings["View photos"] = "Vedi foto"; -$a->strings["View recent"] = "Visualizza recente"; -$a->strings["Send PM"] = "Invia messaggio privato"; $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."; @@ -1011,26 +1145,39 @@ $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"] = "Vsibile a tutti"; -$a->strings["Please enter a YouTube link:"] = "Inserisci l'indirizzo di YouTube:"; -$a->strings["Please enter a video(.ogg) link/URL:"] = "Inserisci il link a un video (.ogg):"; -$a->strings["Please enter an audio(.ogg) link/URL:"] = "Inserisci il link a un audio (.ogg):"; +$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["Enter a title for this item"] = "Inserisci un titolo per questo elemento"; +$a->strings["Insert video link"] = "Inserire collegamento video"; +$a->strings["Insert audio link"] = "Inserisci collegamento audio"; $a->strings["Set title"] = "Imposta il titolo"; -$a->strings["Delete this item?"] = "Cancellare questo elemento?"; -$a->strings["Create a New Account"] = "Crea un Nuovo Account"; -$a->strings["Nickname or Email address: "] = "Soprannome o indirizzo Email: "; -$a->strings["Password: "] = "Password: "; -$a->strings["Nickname/Email/OpenID: "] = "Soprannome/Email/OpenID: "; -$a->strings["Password (if not OpenID): "] = "Password (se non OpenID): "; -$a->strings["Forgot your password?"] = "Dimenticata la password?"; -$a->strings["Connect"] = "Connetti"; -$a->strings[", "] = ", "; -$a->strings["Status:"] = "Stato:"; -$a->strings["g A l F d"] = "g A l d F"; -$a->strings["Birthday Reminders"] = "Promemoria Compleanni"; -$a->strings["Birthdays this week:"] = "Compleanni questa settimana:"; -$a->strings["(Adjusted for local time)"] = "(Convertiti all'ora locale)"; -$a->strings["[today]"] = "[oggi]"; -$a->strings["Not Found"] = "Non Trovato"; -$a->strings["Page not found."] = "Pagina non trovata."; +$a->strings["view full size"] = "vedi a schermo intero"; +$a->strings["image/photo"] = "immagine / foto"; +$a->strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +$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["Invite Friends"] = "Invita Amici"; +$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["Similar Interests"] = "Interessi simili"; +$a->strings["New mail received at "] = "Nuova mail ricevuta su "; +$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 "] = "Hai un nuovo seguace su "; +$a->strings["[no subject]"] = "[nessun oggetto]"; +$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["Create a new group"] = "Crea un nuovo gruppo"; +$a->strings["Everybody"] = "Tutti"; +$a->strings["Sharing notification from Diaspora network"] = "Notifica di condivisione dal network Diaspora*"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["[Relayed] Comment authored by %s from network %s"] = "[Inoltrato] Commento scritto da %s dalla rete %s"; +$a->strings["Embedded content"] = "Contenuto incorporato"; +$a->strings["Embedding disabled"] = "Inclusione disabilitata"; -- cgit v1.2.3