aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfabrixxm <fabrix.xm@gmail.com>2011-11-15 10:43:57 -0800
committerfabrixxm <fabrix.xm@gmail.com>2011-11-15 10:43:57 -0800
commit5a890b0ef910f58db906cf502e76d3b7eb4aca38 (patch)
tree4d02791c20e67afb0610362b146510175b054d2d
parentd23452db2ba6bf11e2b9445bd8191aec8c22253a (diff)
parent281f9edce72f928e17d2a1075f28803ea3e265f2 (diff)
downloadvolse-hubzilla-5a890b0ef910f58db906cf502e76d3b7eb4aca38.tar.gz
volse-hubzilla-5a890b0ef910f58db906cf502e76d3b7eb4aca38.tar.bz2
volse-hubzilla-5a890b0ef910f58db906cf502e76d3b7eb4aca38.zip
Merge pull request #5 from fabrixxm/master
themes and strings works
-rw-r--r--images/tag.pngbin0 -> 528 bytes
-rw-r--r--images/tag_b.pngbin0 -> 346 bytes
-rw-r--r--include/conversation.php53
-rw-r--r--include/text.php8
-rw-r--r--mod/ping.php22
-rw-r--r--util/messages.po4664
-rw-r--r--view/it/messages.po6204
-rw-r--r--view/it/strings.php1411
-rw-r--r--view/theme/dispy/wall_item.tpl8
-rw-r--r--view/theme/dispy/wallwall_item.tpl8
-rw-r--r--view/theme/duepuntozero/style.css4
-rw-r--r--view/theme/duepuntozero/wall_item.tpl8
-rw-r--r--view/theme/duepuntozero/wallwall_item.tpl8
-rw-r--r--view/theme/quattro/colors.less1
-rw-r--r--view/theme/quattro/quattro.less23
-rw-r--r--view/theme/quattro/style.css33
-rw-r--r--view/theme/testbubble/wall_item.tpl8
-rw-r--r--view/theme/testbubble/wallwall_item.tpl8
-rw-r--r--view/wall_item.tpl17
-rw-r--r--view/wallwall_item.tpl16
20 files changed, 6850 insertions, 5654 deletions
diff --git a/images/tag.png b/images/tag.png
new file mode 100644
index 000000000..40c5fd44e
--- /dev/null
+++ b/images/tag.png
Binary files differ
diff --git a/images/tag_b.png b/images/tag_b.png
new file mode 100644
index 000000000..66c03415d
--- /dev/null
+++ b/images/tag_b.png
Binary files differ
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 .= '<div class="clear"></div></div>';
}
- $arr = explode(',',$item['tag']);
- if(count($arr)) {
- $s .= '<div class="body-tag">';
- foreach($arr as $r) {
- $s .= bbcode($r) . ' ';
- }
- $s .= '</div>';
- }
$prep_arr = array('item' => $item, 'html' => $s);
call_hooks('prepare_body_final', $prep_arr);
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 "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>
<result>";
+ $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>$home</home>";
if ($register!=0) echo "<register>$register</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 ' <notif count="'.$tot.'">';
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 " </notif>";
}
diff --git a/util/messages.po b/util/messages.po
index 46677fcf6..b893d273d 100644
--- a/util/messages.po
+++ b/util/messages.po
@@ -6,150 +6,414 @@
#, 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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 ""
-"<strong>WARNING: This is highly advanced</strong> 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 <strong>now</strong> 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 ""
+
+#: ../../boot.php:890 ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr ""
+
+#: ../../boot.php:900 ../../include/nav.php:129
+msgid "Profiles"
+msgstr ""
+
+#: ../../boot.php:900 ../../include/nav.php:129
+msgid "Manage/edit profiles"
+msgstr ""
+
+#: ../../boot.php:906 ../../mod/profiles.php:462
+msgid "Change profile photo"
+msgstr ""
+
+#: ../../boot.php:907 ../../mod/profiles.php:463
+msgid "Create New Profile"
+msgstr ""
+
+#: ../../boot.php:917 ../../mod/profiles.php:473
+msgid "Profile Image"
+msgstr ""
+
+#: ../../boot.php:920 ../../mod/profiles.php:475
+msgid "visible to everybody"
+msgstr ""
+
+#: ../../boot.php:921 ../../mod/profiles.php:476
+msgid "Edit visibility"
+msgstr ""
+
+#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37
+#: ../../include/bb2diaspora.php:249
+msgid "Location:"
+msgstr ""
+
+#: ../../boot.php:942 ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr ""
+
+#: ../../boot.php:945 ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr ""
+
+#: ../../boot.php:947 ../../include/profile_advanced.php:45
+msgid "Homepage:"
+msgstr ""
+
+#: ../../boot.php:1006 ../../boot.php:1068
+msgid "g A l F d"
+msgstr ""
+
+#: ../../boot.php:1007 ../../boot.php:1069
+msgid "F d"
+msgstr ""
+
+#: ../../boot.php:1030
+msgid "Birthday Reminders"
+msgstr ""
+
+#: ../../boot.php:1031
+msgid "Birthdays this week:"
+msgstr ""
+
+#: ../../boot.php:1047 ../../boot.php:1111
+msgid "[today]"
+msgstr ""
+
+#: ../../boot.php:1092
+msgid "Event Reminders"
+msgstr ""
+
+#: ../../boot.php:1093
+msgid "Events this week:"
+msgstr ""
+
+#: ../../boot.php:1105
+msgid "[No description]"
+msgstr ""
+
+#: ../../boot.php:1282 ../../include/nav.php:47
+msgid "Status"
+msgstr ""
+
+#: ../../boot.php:1287 ../../mod/profperm.php:103
+#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
+#: ../../include/nav.php:48
+msgid "Profile"
+msgstr ""
+
+#: ../../boot.php:1292 ../../include/nav.php:49
+msgid "Photos"
+msgstr ""
+
+#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50
+msgid "Events"
+msgstr ""
+
+#: ../../boot.php:1305 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr ""
+
+#: ../../mod/manage.php:37
+#, php-format
+msgid "Welcome back %s"
+msgstr ""
+
+#: ../../mod/manage.php:87
+msgid "Manage Identities and/or Pages"
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
+#: ../../mod/manage.php:90
+msgid ""
+"(Toggle between different identities or community/group pages which share "
+"your account details.)"
+msgstr ""
+
+#: ../../mod/manage.php:92
+msgid "Select an identity to manage: "
+msgstr ""
+
+#: ../../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/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
+#: ../../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/help.php:30
-msgid "Help:"
+#: ../../mod/dirfind.php:23
+msgid "People Search"
msgstr ""
-#: ../../mod/help.php:34 ../../include/nav.php:82
-msgid "Help"
+#: ../../mod/dirfind.php:57 ../../mod/match.php:57
+msgid "No matches"
msgstr ""
-#: ../../mod/help.php:38 ../../index.php:212
-msgid "Not Found"
+#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113
+#, php-format
+msgid "Image exceeds size limit of %d"
msgstr ""
-#: ../../mod/help.php:41 ../../index.php:215
-msgid "Page not found."
+#: ../../mod/wall_upload.php:65 ../../mod/profile_photo.php:122
+#: ../../mod/photos.php:647
+msgid "Unable to process image."
+msgstr ""
+
+#: ../../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/wall_upload.php:84 ../../mod/profile_photo.php:251
+#: ../../mod/photos.php:667
+msgid "Image upload failed."
+msgstr ""
+
+#: ../../mod/profile.php:105 ../../mod/display.php:66
+msgid "Access to this profile has been restricted."
+msgstr ""
+
+#: ../../mod/profile.php:127
+msgid "Tips for New Members"
+msgstr ""
+
+#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340
+msgid "Disallowed profile URL."
+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."
+msgstr ""
+
+#: ../../mod/follow.php:61
+msgid ""
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
+msgstr ""
+
+#: ../../mod/follow.php:66
+msgid ""
+"Limited profile. This person will be unable to receive direct/personal "
+"notifications from you."
+msgstr ""
+
+#: ../../mod/follow.php:133
+msgid "Unable to retrieve contact information."
+msgstr ""
+
+#: ../../mod/follow.php:179
+msgid "following"
+msgstr ""
+
+#: ../../mod/profile_photo.php:28
+msgid "Image uploaded but image cropping failed."
+msgstr ""
+
+#: ../../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/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/profile_photo.php:89
+msgid ""
+"Shift-reload the page or clear browser cache if the new photo does not "
+"display immediately."
+msgstr ""
+
+#: ../../mod/profile_photo.php:99
+msgid "Unable to process image"
+msgstr ""
+
+#: ../../mod/profile_photo.php:203
+msgid "Upload File:"
+msgstr ""
+
+#: ../../mod/profile_photo.php:204
+msgid "Upload Profile Photo"
+msgstr ""
+
+#: ../../mod/profile_photo.php:205
+msgid "Upload"
+msgstr ""
+
+#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686
+msgid "or"
+msgstr ""
+
+#: ../../mod/profile_photo.php:206
+msgid "skip this step"
+msgstr ""
+
+#: ../../mod/profile_photo.php:206
+msgid "select a photo from your photo albums"
+msgstr ""
+
+#: ../../mod/profile_photo.php:219
+msgid "Crop Image"
+msgstr ""
+
+#: ../../mod/profile_photo.php:220
+msgid "Please adjust the image cropping for optimum viewing."
+msgstr ""
+
+#: ../../mod/profile_photo.php:221
+msgid "Done Editing"
+msgstr ""
+
+#: ../../mod/profile_photo.php:249
+msgid "Image uploaded successfully."
+msgstr ""
+
+#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179
+#, php-format
+msgid "Welcome to %s"
+msgstr ""
+
+#: ../../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/wall_attach.php:57
@@ -161,803 +425,954 @@ msgstr ""
msgid "File upload failed."
msgstr ""
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
+#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35
+msgid "Friend Suggestions"
msgstr ""
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
+#: ../../mod/suggest.php:42
+msgid ""
+"No suggestions. This works best when you have more than one contact/friend."
msgstr ""
-#: ../../mod/fsuggest.php:99
+#: ../../mod/suggest.php:55
+msgid "Ignore/Hide"
+msgstr ""
+
+#: ../../mod/regmod.php:52 ../../mod/register.php:369
#, php-format
-msgid "Suggest a friend for %s"
+msgid "Registration details for %s"
msgstr ""
-#: ../../mod/events.php:61
-msgid "Event description and start time are required."
+#: ../../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/events.php:117 ../../include/nav.php:50 ../../boot.php:1212
-msgid "Events"
+#: ../../mod/regmod.php:61
+msgid "Account approved."
msgstr ""
-#: ../../mod/events.php:207
-msgid "Create New Event"
+#: ../../mod/regmod.php:93
+#, php-format
+msgid "Registration revoked for %s"
msgstr ""
-#: ../../mod/events.php:210
-msgid "Previous"
+#: ../../mod/regmod.php:105
+msgid "Please login."
msgstr ""
-#: ../../mod/events.php:213
-msgid "Next"
+#: ../../mod/profiles.php:21 ../../mod/profiles.php:239
+#: ../../mod/profiles.php:344 ../../mod/dfrn_confirm.php:62
+msgid "Profile not found."
msgstr ""
-#: ../../mod/events.php:220
-msgid "l, F j"
+#: ../../mod/profiles.php:28
+msgid "Profile Name is required."
msgstr ""
-#: ../../mod/events.php:232
-msgid "Edit event"
+#: ../../mod/profiles.php:198
+msgid "Profile updated."
msgstr ""
-#: ../../mod/events.php:234 ../../include/text.php:848
-msgid "link to source"
+#: ../../mod/profiles.php:256
+msgid "Profile deleted."
msgstr ""
-#: ../../mod/events.php:302
-msgid "hour:minute"
+#: ../../mod/profiles.php:272 ../../mod/profiles.php:303
+msgid "Profile-"
msgstr ""
-#: ../../mod/events.php:311
-msgid "Event details"
+#: ../../mod/profiles.php:291 ../../mod/profiles.php:330
+msgid "New profile created."
msgstr ""
-#: ../../mod/events.php:312
-#, php-format
-msgid "Format is %s %s. Starting date and Description are required."
+#: ../../mod/profiles.php:309
+msgid "Profile unavailable to clone."
msgstr ""
-#: ../../mod/events.php:313
-msgid "Event Starts:"
+#: ../../mod/profiles.php:356
+msgid "Hide your contact/friend list from viewers of this profile?"
msgstr ""
-#: ../../mod/events.php:316
-msgid "Finish date/time is not known or not relevant"
+#: ../../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/events.php:318
-msgid "Event Finishes:"
+#: ../../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/events.php:321
-msgid "Adjust for viewer timezone"
+#: ../../mod/profiles.php:374
+msgid "Edit Profile Details"
msgstr ""
-#: ../../mod/events.php:323
-msgid "Description:"
+#: ../../mod/profiles.php:376
+msgid "View this profile"
msgstr ""
-#: ../../mod/events.php:325 ../../include/event.php:37
-#: ../../include/bb2diaspora.php:210 ../../boot.php:919
-msgid "Location:"
+#: ../../mod/profiles.php:377
+msgid "Create a new profile using these settings"
msgstr ""
-#: ../../mod/events.php:327
-msgid "Share this event"
+#: ../../mod/profiles.php:378
+msgid "Clone this profile"
msgstr ""
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/dfrn_request.php:651 ../../addon/js_upload/js_upload.php:45
-msgid "Cancel"
+#: ../../mod/profiles.php:379
+msgid "Delete this profile"
msgstr ""
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
+#: ../../mod/profiles.php:380
+msgid "Profile Name:"
msgstr ""
-#: ../../mod/tagrm.php:79
-msgid "Remove Item Tag"
+#: ../../mod/profiles.php:381
+msgid "Your Full Name:"
msgstr ""
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
+#: ../../mod/profiles.php:382
+msgid "Title/Description:"
msgstr ""
-#: ../../mod/tagrm.php:93
-msgid "Remove"
+#: ../../mod/profiles.php:383
+msgid "Your Gender:"
msgstr ""
-#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
+#: ../../mod/profiles.php:384
#, php-format
-msgid "%s welcomes %s"
+msgid "Birthday (%s):"
msgstr ""
-#: ../../mod/photos.php:42
-msgid "Photo Albums"
+#: ../../mod/profiles.php:385
+msgid "Street Address:"
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/profiles.php:386
+msgid "Locality/City:"
msgstr ""
-#: ../../mod/photos.php:62 ../../mod/settings.php:9
-msgid "everybody"
+#: ../../mod/profiles.php:387
+msgid "Postal/Zip Code:"
msgstr ""
-#: ../../mod/photos.php:133
-msgid "Contact information unavailable"
+#: ../../mod/profiles.php:388
+msgid "Country:"
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/profiles.php:389
+msgid "Region/State:"
msgstr ""
-#: ../../mod/photos.php:154
-msgid "Album not found."
+#: ../../mod/profiles.php:390
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
msgstr ""
-#: ../../mod/photos.php:172 ../../mod/photos.php:934
-msgid "Delete Album"
+#: ../../mod/profiles.php:391
+msgid "Who: (if applicable)"
msgstr ""
-#: ../../mod/photos.php:235 ../../mod/photos.php:1153
-msgid "Delete Photo"
+#: ../../mod/profiles.php:392
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
msgstr ""
-#: ../../mod/photos.php:511
-msgid "was tagged in a"
+#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43
+msgid "Sexual Preference:"
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/profiles.php:394
+msgid "Homepage URL:"
msgstr ""
-#: ../../mod/photos.php:511
-msgid "by"
+#: ../../mod/profiles.php:395 ../../include/profile_advanced.php:47
+msgid "Political Views:"
msgstr ""
-#: ../../mod/photos.php:614 ../../addon/js_upload/js_upload.php:312
-msgid "Image exceeds size limit of "
+#: ../../mod/profiles.php:396
+msgid "Religious Views:"
msgstr ""
-#: ../../mod/photos.php:622
-msgid "Image file is empty."
+#: ../../mod/profiles.php:397
+msgid "Public Keywords:"
msgstr ""
-#: ../../mod/photos.php:636 ../../mod/profile_photo.php:118
-#: ../../mod/wall_upload.php:65
-msgid "Unable to process image."
+#: ../../mod/profiles.php:398
+msgid "Private Keywords:"
msgstr ""
-#: ../../mod/photos.php:656 ../../mod/profile_photo.php:247
-#: ../../mod/wall_upload.php:84
-msgid "Image upload failed."
+#: ../../mod/profiles.php:399
+msgid "Example: fishing photography software"
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/profiles.php:400
+msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
-#: ../../mod/photos.php:751
-msgid "No photos selected"
+#: ../../mod/profiles.php:401
+msgid "(Used for searching profiles, never shown to others)"
msgstr ""
-#: ../../mod/photos.php:828
-msgid "Access to this item is restricted."
+#: ../../mod/profiles.php:402
+msgid "Tell us about yourself..."
msgstr ""
-#: ../../mod/photos.php:882
-msgid "Upload Photos"
+#: ../../mod/profiles.php:403
+msgid "Hobbies/Interests"
msgstr ""
-#: ../../mod/photos.php:885 ../../mod/photos.php:929
-msgid "New album name: "
+#: ../../mod/profiles.php:404
+msgid "Contact information and Social Networks"
msgstr ""
-#: ../../mod/photos.php:886
-msgid "or existing album name: "
+#: ../../mod/profiles.php:405
+msgid "Musical interests"
msgstr ""
-#: ../../mod/photos.php:887
-msgid "Do not show a status post for this upload"
+#: ../../mod/profiles.php:406
+msgid "Books, literature"
msgstr ""
-#: ../../mod/photos.php:889 ../../mod/photos.php:1148
-msgid "Permissions"
+#: ../../mod/profiles.php:407
+msgid "Television"
msgstr ""
-#: ../../mod/photos.php:944
-msgid "Edit Album"
+#: ../../mod/profiles.php:408
+msgid "Film/dance/culture/entertainment"
msgstr ""
-#: ../../mod/photos.php:954 ../../mod/photos.php:1370
-msgid "View Photo"
+#: ../../mod/profiles.php:409
+msgid "Love/romance"
msgstr ""
-#: ../../mod/photos.php:989
-msgid "Permission denied. Access to this item may be restricted."
+#: ../../mod/profiles.php:410
+msgid "Work/employment"
msgstr ""
-#: ../../mod/photos.php:991
-msgid "Photo not available"
+#: ../../mod/profiles.php:411
+msgid "School/education"
msgstr ""
-#: ../../mod/photos.php:1041
-msgid "View photo"
+#: ../../mod/profiles.php:416
+msgid ""
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
msgstr ""
-#: ../../mod/photos.php:1041
-msgid "Edit photo"
+#: ../../mod/profiles.php:426 ../../mod/directory.php:122
+msgid "Age: "
msgstr ""
-#: ../../mod/photos.php:1042
-msgid "Use as profile photo"
+#: ../../mod/profiles.php:461
+msgid "Edit/Manage Profiles"
msgstr ""
-#: ../../mod/photos.php:1048 ../../include/conversation.php:369
-msgid "Private Message"
+#: ../../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/photos.php:1059
-msgid "View Full Size"
+#: ../../mod/settings.php:9 ../../mod/photos.php:62
+msgid "everybody"
msgstr ""
-#: ../../mod/photos.php:1127
-msgid "Tags: "
+#: ../../mod/settings.php:67
+msgid "Missing some important data!"
msgstr ""
-#: ../../mod/photos.php:1130
-msgid "[Remove any tag]"
+#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62
+msgid "Update"
msgstr ""
-#: ../../mod/photos.php:1141
-msgid "New album name"
+#: ../../mod/settings.php:165
+msgid "Failed to connect with email account using the settings provided."
msgstr ""
-#: ../../mod/photos.php:1144
-msgid "Caption"
+#: ../../mod/settings.php:170
+msgid "Email settings updated."
msgstr ""
-#: ../../mod/photos.php:1146
-msgid "Add a Tag"
+#: ../../mod/settings.php:188
+msgid "Passwords do not match. Password unchanged."
msgstr ""
-#: ../../mod/photos.php:1150
-msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+#: ../../mod/settings.php:193
+msgid "Empty passwords are not allowed. Password unchanged."
msgstr ""
-#: ../../mod/photos.php:1170 ../../include/conversation.php:416
-msgid "I like this (toggle)"
+#: ../../mod/settings.php:204
+msgid "Password changed."
msgstr ""
-#: ../../mod/photos.php:1171 ../../include/conversation.php:417
-msgid "I don't like this (toggle)"
+#: ../../mod/settings.php:206
+msgid "Password update failed. Please try again."
msgstr ""
-#: ../../mod/photos.php:1172 ../../include/conversation.php:793
-msgid "Share"
+#: ../../mod/settings.php:253
+msgid " Please use a shorter name."
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/settings.php:255
+msgid " Name too short."
msgstr ""
-#: ../../mod/photos.php:1189 ../../mod/photos.php:1228
-#: ../../mod/photos.php:1259 ../../include/conversation.php:431
-msgid "This is you"
+#: ../../mod/settings.php:261
+msgid " Not valid email."
msgstr ""
-#: ../../mod/photos.php:1191 ../../mod/photos.php:1230
-#: ../../mod/photos.php:1261 ../../include/conversation.php:433
-#: ../../boot.php:417
-msgid "Comment"
+#: ../../mod/settings.php:263
+msgid " Cannot change to that email."
+msgstr ""
+
+#: ../../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/settings.php:382 ../../include/nav.php:128
+msgid "Account settings"
+msgstr ""
+
+#: ../../mod/settings.php:387
+msgid "Connector settings"
+msgstr ""
+
+#: ../../mod/settings.php:392
+msgid "Plugin settings"
+msgstr ""
+
+#: ../../mod/settings.php:397
+msgid "Connections"
+msgstr ""
+
+#: ../../mod/settings.php:402
+msgid "Export personal data"
msgstr ""
-#: ../../mod/photos.php:1289 ../../mod/group.php:154 ../../mod/admin.php:468
+#: ../../mod/settings.php:419 ../../mod/settings.php:445
+#: ../../mod/settings.php:478
+msgid "Add application"
+msgstr ""
+
+#: ../../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/settings.php:422 ../../mod/settings.php:448
+#: ../../mod/crepair.php:144 ../../mod/admin.php:464 ../../mod/admin.php:473
+msgid "Name"
+msgstr ""
+
+#: ../../mod/settings.php:423 ../../mod/settings.php:449
+#: ../../addon/statusnet/statusnet.php:480
+msgid "Consumer Key"
+msgstr ""
+
+#: ../../mod/settings.php:424 ../../mod/settings.php:450
+#: ../../addon/statusnet/statusnet.php:479
+msgid "Consumer Secret"
+msgstr ""
+
+#: ../../mod/settings.php:425 ../../mod/settings.php:451
+msgid "Redirect"
+msgstr ""
+
+#: ../../mod/settings.php:426 ../../mod/settings.php:452
+msgid "Icon url"
+msgstr ""
+
+#: ../../mod/settings.php:437
+msgid "You can't edit this application."
+msgstr ""
+
+#: ../../mod/settings.php:477
+msgid "Connected Apps"
+msgstr ""
+
+#: ../../mod/settings.php:479 ../../mod/editpost.php:90
+#: ../../include/conversation.php:441 ../../include/group.php:190
+msgid "Edit"
+msgstr ""
+
+#: ../../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/photos.php:1357
-msgid "Recent Photos"
+#: ../../mod/settings.php:481
+msgid "Client key starts with"
msgstr ""
-#: ../../mod/photos.php:1361
-msgid "Upload New Photos"
+#: ../../mod/settings.php:482
+msgid "No name"
msgstr ""
-#: ../../mod/photos.php:1374
-msgid "View Album"
+#: ../../mod/settings.php:483
+msgid "Remove authorization"
msgstr ""
-#: ../../mod/community.php:21
-msgid "Not available."
+#: ../../mod/settings.php:495
+msgid "No Plugin settings configured"
msgstr ""
-#: ../../mod/community.php:30 ../../include/nav.php:97
-msgid "Community"
+#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122
+msgid "Plugin Settings"
msgstr ""
-#: ../../mod/community.php:60 ../../mod/search.php:122
-msgid "No results."
+#: ../../mod/settings.php:515 ../../mod/settings.php:516
+#, php-format
+msgid "Built-in support for %s connectivity is %s"
msgstr ""
-#: ../../mod/community.php:87
+#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
+msgstr ""
+
+#: ../../mod/settings.php:515 ../../mod/settings.php:516
+msgid "enabled"
+msgstr ""
+
+#: ../../mod/settings.php:515 ../../mod/settings.php:516
+msgid "disabled"
+msgstr ""
+
+#: ../../mod/settings.php:516
+msgid "StatusNet"
+msgstr ""
+
+#: ../../mod/settings.php:542
+msgid "Connector Settings"
+msgstr ""
+
+#: ../../mod/settings.php:548
+msgid "Email/Mailbox Setup"
+msgstr ""
+
+#: ../../mod/settings.php:549
msgid ""
-"Shared content is covered by the <a href=\"http://creativecommons.org/"
-"licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
msgstr ""
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
+#: ../../mod/settings.php:550
+msgid "Last successful email check:"
msgstr ""
-#: ../../mod/editpost.php:32
-msgid "Edit post"
+#: ../../mod/settings.php:551
+msgid "Email access is disabled on this site."
msgstr ""
-#: ../../mod/editpost.php:75 ../../include/conversation.php:779
-msgid "Post to Email"
+#: ../../mod/settings.php:552
+msgid "IMAP server name:"
msgstr ""
-#: ../../mod/editpost.php:90 ../../include/group.php:190
-#: ../../include/group.php:191 ../../include/conversation.php:441
-msgid "Edit"
+#: ../../mod/settings.php:553
+msgid "IMAP port:"
msgstr ""
-#: ../../mod/editpost.php:91 ../../mod/message.php:135
-#: ../../mod/message.php:268 ../../include/conversation.php:794
-msgid "Upload photo"
+#: ../../mod/settings.php:554
+msgid "Security:"
msgstr ""
-#: ../../mod/editpost.php:92 ../../include/conversation.php:795
-msgid "Attach file"
+#: ../../mod/settings.php:554
+msgid "None"
msgstr ""
-#: ../../mod/editpost.php:93 ../../mod/message.php:136
-#: ../../mod/message.php:269 ../../include/conversation.php:796
-msgid "Insert web link"
+#: ../../mod/settings.php:555
+msgid "Email login name:"
msgstr ""
-#: ../../mod/editpost.php:94
-msgid "Insert YouTube video"
+#: ../../mod/settings.php:556
+msgid "Email password:"
msgstr ""
-#: ../../mod/editpost.php:95
-msgid "Insert Vorbis [.ogg] video"
+#: ../../mod/settings.php:557
+msgid "Reply-to address:"
msgstr ""
-#: ../../mod/editpost.php:96
-msgid "Insert Vorbis [.ogg] audio"
+#: ../../mod/settings.php:558
+msgid "Send public posts to all email contacts:"
msgstr ""
-#: ../../mod/editpost.php:97 ../../include/conversation.php:799
-msgid "Set your location"
+#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443
+msgid "Normal Account"
msgstr ""
-#: ../../mod/editpost.php:98 ../../include/conversation.php:800
-msgid "Clear browser location"
+#: ../../mod/settings.php:597
+msgid "This account is a normal personal profile"
msgstr ""
-#: ../../mod/editpost.php:100 ../../include/conversation.php:803
-msgid "Permission settings"
+#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444
+msgid "Soapbox Account"
msgstr ""
-#: ../../mod/editpost.php:108 ../../include/conversation.php:811
-msgid "CC: email addresses"
+#: ../../mod/settings.php:601
+msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr ""
-#: ../../mod/editpost.php:109 ../../include/conversation.php:812
-msgid "Public post"
+#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445
+msgid "Community/Celebrity Account"
msgstr ""
-#: ../../mod/editpost.php:111 ../../include/conversation.php:814
-msgid "Example: bob@example.com, mary@example.com"
+#: ../../mod/settings.php:605
+msgid "Automatically approve all connection/friend requests as read-write fans"
msgstr ""
-#: ../../mod/dfrn_request.php:92
-msgid "This introduction has already been accepted."
+#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446
+msgid "Automatic Friend Account"
msgstr ""
-#: ../../mod/dfrn_request.php:116 ../../mod/dfrn_request.php:349
-msgid "Profile location is not valid or does not contain profile information."
+#: ../../mod/settings.php:609
+msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
-#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:354
-msgid "Warning: profile location has no identifiable owner name."
+#: ../../mod/settings.php:619
+msgid "OpenID:"
msgstr ""
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:356
-msgid "Warning: profile location has no profile photo."
+#: ../../mod/settings.php:619
+msgid "(Optional) Allow this OpenID to login to this account."
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/settings.php:629
+msgid "Publish your default profile in your local site directory?"
+msgstr ""
-#: ../../mod/dfrn_request.php:165
-msgid "Introduction complete."
+#: ../../mod/settings.php:635
+msgid "Publish your default profile in the global social directory?"
msgstr ""
-#: ../../mod/dfrn_request.php:189
-msgid "Unrecoverable protocol error."
+#: ../../mod/settings.php:643
+msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr ""
-#: ../../mod/dfrn_request.php:217
-msgid "Profile unavailable."
+#: ../../mod/settings.php:647
+msgid "Hide profile details and all your messages from unknown viewers?"
msgstr ""
-#: ../../mod/dfrn_request.php:242
-#, php-format
-msgid "%s has received too many connection requests today."
+#: ../../mod/settings.php:652
+msgid "Allow friends to post to your profile page?"
msgstr ""
-#: ../../mod/dfrn_request.php:243
-msgid "Spam protection measures have been invoked."
+#: ../../mod/settings.php:658
+msgid "Allow friends to tag your posts?"
msgstr ""
-#: ../../mod/dfrn_request.php:244
-msgid "Friends are advised to please try again in 24 hours."
+#: ../../mod/settings.php:667
+msgid "Profile is <strong>not published</strong>."
msgstr ""
-#: ../../mod/dfrn_request.php:274
-msgid "Invalid locator"
+#: ../../mod/settings.php:691
+msgid "Your Identity Address is"
msgstr ""
-#: ../../mod/dfrn_request.php:294
-msgid "Unable to resolve your name at the provided location."
+#: ../../mod/settings.php:705
+msgid "Account Settings"
msgstr ""
-#: ../../mod/dfrn_request.php:307
-msgid "You have already introduced yourself here."
+#: ../../mod/settings.php:713
+msgid "Password Settings"
msgstr ""
-#: ../../mod/dfrn_request.php:311
-#, php-format
-msgid "Apparently you are already friends with %s."
+#: ../../mod/settings.php:714
+msgid "New Password:"
msgstr ""
-#: ../../mod/dfrn_request.php:332
-msgid "Invalid profile URL."
+#: ../../mod/settings.php:715
+msgid "Confirm:"
msgstr ""
-#: ../../mod/dfrn_request.php:338 ../../mod/follow.php:20
-msgid "Disallowed profile URL."
+#: ../../mod/settings.php:715
+msgid "Leave password fields blank unless changing"
msgstr ""
-#: ../../mod/dfrn_request.php:405 ../../mod/contacts.php:87
-msgid "Failed to update contact record."
+#: ../../mod/settings.php:719
+msgid "Basic Settings"
msgstr ""
-#: ../../mod/dfrn_request.php:426
-msgid "Your introduction has been sent."
+#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15
+msgid "Full Name:"
msgstr ""
-#: ../../mod/dfrn_request.php:479
-msgid "Please login to confirm introduction."
+#: ../../mod/settings.php:721
+msgid "Email Address:"
msgstr ""
-#: ../../mod/dfrn_request.php:493
-msgid ""
-"Incorrect identity currently logged in. Please login to <strong>this</"
-"strong> profile."
+#: ../../mod/settings.php:722
+msgid "Your Timezone:"
msgstr ""
-#: ../../mod/dfrn_request.php:505
-#, php-format
-msgid "Welcome home %s."
+#: ../../mod/settings.php:723
+msgid "Default Post Location:"
msgstr ""
-#: ../../mod/dfrn_request.php:506
-#, php-format
-msgid "Please confirm your introduction/connection request to %s."
+#: ../../mod/settings.php:724
+msgid "Use Browser Location:"
msgstr ""
-#: ../../mod/dfrn_request.php:507
-msgid "Confirm"
+#: ../../mod/settings.php:725
+msgid "Display Theme:"
msgstr ""
-#: ../../mod/dfrn_request.php:540 ../../include/items.php:2275
-msgid "[Name Withheld]"
+#: ../../mod/settings.php:729
+msgid "Security and Privacy Settings"
msgstr ""
-#: ../../mod/dfrn_request.php:547
-msgid "Introduction received at "
+#: ../../mod/settings.php:731
+msgid "Maximum Friend Requests/Day:"
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:731
+msgid "(to prevent spam abuse)"
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:732
+msgid "Default Post Permissions"
msgstr ""
-#: ../../mod/dfrn_request.php:634
-msgid ""
-"Please enter your 'Identity Address' from one of the following supported "
-"social networks:"
+#: ../../mod/settings.php:733
+msgid "(click to open/close)"
msgstr ""
-#: ../../mod/dfrn_request.php:637
-msgid "Friend/Connection Request"
+#: ../../mod/settings.php:739
+msgid "Automatically expire posts after days:"
msgstr ""
-#: ../../mod/dfrn_request.php:638
-msgid ""
-"Examples: jojo@demo.friendika.com, http://demo.friendika.com/profile/jojo, "
-"testuser@identi.ca"
+#: ../../mod/settings.php:739
+msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr ""
-#: ../../mod/dfrn_request.php:639
-msgid "Please answer the following:"
+#: ../../mod/settings.php:748
+msgid "Notification Settings"
msgstr ""
-#: ../../mod/dfrn_request.php:640
-#, php-format
-msgid "Does %s know you?"
+#: ../../mod/settings.php:749
+msgid "Send a notification email when:"
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:750
+msgid "You receive an introduction"
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:751
+msgid "Your introductions are confirmed"
msgstr ""
-#: ../../mod/dfrn_request.php:643
-msgid "Add a personal note:"
+#: ../../mod/settings.php:752
+msgid "Someone writes on your profile wall"
msgstr ""
-#: ../../mod/dfrn_request.php:645 ../../include/contact_selectors.php:78
-msgid "Friendika"
+#: ../../mod/settings.php:753
+msgid "Someone writes a followup comment"
msgstr ""
-#: ../../mod/dfrn_request.php:646
-msgid "StatusNet/Federated Social Web"
+#: ../../mod/settings.php:754
+msgid "You receive a private message"
msgstr ""
-#: ../../mod/dfrn_request.php:647 ../../mod/settings.php:376
-#: ../../include/contact_selectors.php:78
-msgid "Diaspora"
+#: ../../mod/settings.php:758
+msgid "Advanced Page Settings"
msgstr ""
-#: ../../mod/dfrn_request.php:648
-msgid "- please share from your own site as noted above"
+#: ../../mod/search.php:13 ../../mod/network.php:75
+msgid "Saved Searches"
msgstr ""
-#: ../../mod/dfrn_request.php:649
-msgid "Your Identity Address:"
+#: ../../mod/search.php:16 ../../mod/network.php:81
+msgid "Remove term"
msgstr ""
-#: ../../mod/dfrn_request.php:650
-msgid "Submit Request"
+#: ../../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/install.php:34
-msgid "Could not create/connect to database."
+#: ../../mod/search.php:83
+msgid "Search This Site"
msgstr ""
-#: ../../mod/install.php:39
-msgid "Connected to database."
+#: ../../mod/search.php:125 ../../mod/community.php:60
+msgid "No results."
msgstr ""
-#: ../../mod/install.php:75
-msgid "Proceed with Installation"
+#: ../../mod/photos.php:42
+msgid "Photo Albums"
msgstr ""
-#: ../../mod/install.php:77
-msgid "Your Friendika site database has been installed."
+#: ../../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/install.php:78
-msgid ""
-"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
+#: ../../mod/photos.php:133
+msgid "Contact information unavailable"
msgstr ""
-#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207
-msgid "Please see the file \"INSTALL.txt\"."
+#: ../../mod/photos.php:154
+msgid "Album not found."
msgstr ""
-#: ../../mod/install.php:81
-msgid "Proceed to registration"
+#: ../../mod/photos.php:172 ../../mod/photos.php:945
+msgid "Delete Album"
msgstr ""
-#: ../../mod/install.php:87
-msgid "Database import failed."
+#: ../../mod/photos.php:235 ../../mod/photos.php:1164
+msgid "Delete Photo"
msgstr ""
-#: ../../mod/install.php:88
-msgid ""
-"You may need to import the file \"database.sql\" manually using phpmyadmin "
-"or mysql."
+#: ../../mod/photos.php:522
+msgid "was tagged in a"
msgstr ""
-#: ../../mod/install.php:101
-msgid "Welcome to Friendika."
+#: ../../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/install.php:124
-msgid "Friendika Social Network"
+#: ../../mod/photos.php:522
+msgid "by"
msgstr ""
-#: ../../mod/install.php:125
-msgid "Installation"
+#: ../../mod/photos.php:625 ../../addon/js_upload/js_upload.php:312
+msgid "Image exceeds size limit of "
msgstr ""
-#: ../../mod/install.php:126
-msgid ""
-"In order to install Friendika we need to know how to connect to your "
-"database."
+#: ../../mod/photos.php:633
+msgid "Image file is empty."
msgstr ""
-#: ../../mod/install.php:127
-msgid ""
-"Please contact your hosting provider or site administrator if you have "
-"questions about these settings."
+#: ../../mod/photos.php:762
+msgid "No photos selected"
msgstr ""
-#: ../../mod/install.php:128
-msgid ""
-"The database you specify below should already exist. If it does not, please "
-"create it before continuing."
+#: ../../mod/photos.php:839
+msgid "Access to this item is restricted."
msgstr ""
-#: ../../mod/install.php:129
-msgid "Database Server Name"
+#: ../../mod/photos.php:893
+msgid "Upload Photos"
msgstr ""
-#: ../../mod/install.php:130
-msgid "Database Login Name"
+#: ../../mod/photos.php:896 ../../mod/photos.php:940
+msgid "New album name: "
msgstr ""
-#: ../../mod/install.php:131
-msgid "Database Login Password"
+#: ../../mod/photos.php:897
+msgid "or existing album name: "
msgstr ""
-#: ../../mod/install.php:132
-msgid "Database Name"
+#: ../../mod/photos.php:898
+msgid "Do not show a status post for this upload"
msgstr ""
-#: ../../mod/install.php:133
-msgid "Please select a default timezone for your website"
+#: ../../mod/photos.php:900 ../../mod/photos.php:1159
+msgid "Permissions"
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/photos.php:955
+msgid "Edit Album"
msgstr ""
-#: ../../mod/install.php:153
-msgid "Could not find a command line version of PHP in the web server PATH."
+#: ../../mod/photos.php:965 ../../mod/photos.php:1381
+msgid "View Photo"
msgstr ""
-#: ../../mod/install.php:154
-msgid ""
-"This is required. Please adjust the configuration file .htconfig.php "
-"accordingly."
+#: ../../mod/photos.php:1000
+msgid "Permission denied. Access to this item may be restricted."
msgstr ""
-#: ../../mod/install.php:161
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
+#: ../../mod/photos.php:1002
+msgid "Photo not available"
msgstr ""
-#: ../../mod/install.php:162
-msgid "This is required for message delivery to work."
+#: ../../mod/photos.php:1052
+msgid "View photo"
msgstr ""
-#: ../../mod/install.php:184
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/photos.php:1052
+msgid "Edit photo"
msgstr ""
-#: ../../mod/install.php:185
-msgid ""
-"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
-"installation.php\"."
+#: ../../mod/photos.php:1053
+msgid "Use as profile photo"
msgstr ""
-#: ../../mod/install.php:194
+#: ../../mod/photos.php:1059 ../../include/conversation.php:369
+msgid "Private Message"
+msgstr ""
+
+#: ../../mod/photos.php:1070
+msgid "View Full Size"
+msgstr ""
+
+#: ../../mod/photos.php:1138
+msgid "Tags: "
+msgstr ""
+
+#: ../../mod/photos.php:1141
+msgid "[Remove any tag]"
+msgstr ""
+
+#: ../../mod/photos.php:1152
+msgid "New album name"
+msgstr ""
+
+#: ../../mod/photos.php:1155
+msgid "Caption"
+msgstr ""
+
+#: ../../mod/photos.php:1157
+msgid "Add a Tag"
+msgstr ""
+
+#: ../../mod/photos.php:1161
+msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+msgstr ""
+
+#: ../../mod/photos.php:1181 ../../include/conversation.php:416
+msgid "I like this (toggle)"
+msgstr ""
+
+#: ../../mod/photos.php:1182 ../../include/conversation.php:417
+msgid "I don't like this (toggle)"
+msgstr ""
+
+#: ../../mod/photos.php:1183 ../../include/conversation.php:814
+msgid "Share"
+msgstr ""
+
+#: ../../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/photos.php:1200 ../../mod/photos.php:1239
+#: ../../mod/photos.php:1270 ../../include/conversation.php:431
+msgid "This is you"
+msgstr ""
+
+#: ../../mod/photos.php:1368
+msgid "Recent Photos"
+msgstr ""
+
+#: ../../mod/photos.php:1372
+msgid "Upload New Photos"
+msgstr ""
+
+#: ../../mod/photos.php:1385
+msgid "View Album"
+msgstr ""
+
+#: ../../mod/newmember.php:6
+msgid "Welcome to Friendika"
+msgstr ""
+
+#: ../../mod/newmember.php:8
+msgid "New Member Checklist"
+msgstr ""
+
+#: ../../mod/newmember.php:12
msgid ""
-"Error: Apache webserver mod-rewrite module is required but not installed."
+"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/install.php:196
-msgid "Error: libCURL PHP module required but not installed."
+#: ../../mod/newmember.php:16
+msgid ""
+"On your <em>Settings</em> page - change your initial password. Also make a "
+"note of your Identity Address. This will be useful in making friends."
msgstr ""
-#: ../../mod/install.php:198
+#: ../../mod/newmember.php:18
msgid ""
-"Error: GD graphics PHP module with JPEG support 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 ""
-#: ../../mod/install.php:200
-msgid "Error: openssl PHP module required but not installed."
+#: ../../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/install.php:202
-msgid "Error: mysqli PHP module required but not installed."
+#: ../../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/install.php:204
-msgid "Error: mb_string PHP module required but not installed."
+#: ../../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/install.php:216
+#: ../../mod/newmember.php:30
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."
+"Edit your <strong>default</strong> profile to your liking. Review the "
+"settings for hiding your list of friends and hiding the profile from unknown "
+"visitors."
msgstr ""
-#: ../../mod/install.php:217
+#: ../../mod/newmember.php:32
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."
+"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/install.php:218
+#: ../../mod/newmember.php:34
msgid ""
-"Please check with your site documentation or support people to see if this "
-"situation can be corrected."
+"Your Contacts page is your gateway to managing friendships and connecting "
+"with friends on other networks. Typically you enter their address or site "
+"URL in the <em>Connect</em> dialog."
msgstr ""
-#: ../../mod/install.php:219
+#: ../../mod/newmember.php:36
msgid ""
-"If not, you may be required to perform a manual installation. Please see the "
-"file \"INSTALL.txt\" for instructions."
+"The Directory page lets you find other people in this network or other "
+"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
+"their profile page. Provide your own Identity Address if requested."
msgstr ""
-#: ../../mod/install.php:228
+#: ../../mod/newmember.php:38
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."
+"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/install.php:243
-msgid "Errors encountered creating database tables."
+#: ../../mod/newmember.php:40
+msgid ""
+"Our <strong>help</strong> pages may be consulted for detail on other program "
+"features and resources."
msgstr ""
#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:188
+#: ../../include/bb2diaspora.php:227
msgid "l F d, Y \\@ g:i A"
msgstr ""
@@ -990,786 +1405,746 @@ msgstr ""
msgid "Please select your timezone:"
msgstr ""
-#: ../../mod/match.php:10
-msgid "Profile Match"
+#: ../../mod/display.php:108
+msgid "Item has been removed."
msgstr ""
-#: ../../mod/match.php:18
-msgid "No keywords to match. Please add keywords to your default profile."
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
msgstr ""
-#: ../../mod/match.php:57 ../../mod/dirfind.php:57
-msgid "No matches"
+#: ../../mod/editpost.php:32
+msgid "Edit post"
msgstr ""
-#: ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
+#: ../../mod/editpost.php:75 ../../include/conversation.php:800
+msgid "Post to Email"
msgstr ""
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
+#: ../../mod/editpost.php:91 ../../mod/message.php:135
+#: ../../mod/message.php:268 ../../include/conversation.php:815
+msgid "Upload photo"
msgstr ""
-#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:176
-#, php-format
-msgid "Welcome to %s"
+#: ../../mod/editpost.php:92 ../../include/conversation.php:816
+msgid "Attach file"
msgstr ""
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
+#: ../../mod/editpost.php:93 ../../mod/message.php:136
+#: ../../mod/message.php:269 ../../include/conversation.php:817
+msgid "Insert web link"
msgstr ""
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:144
-#: ../../mod/notifications.php:188
-msgid "Discard"
+#: ../../mod/editpost.php:94
+msgid "Insert YouTube video"
msgstr ""
-#: ../../mod/notifications.php:47 ../../mod/notifications.php:143
-#: ../../mod/notifications.php:187
-msgid "Ignore"
+#: ../../mod/editpost.php:95
+msgid "Insert Vorbis [.ogg] video"
msgstr ""
-#: ../../mod/notifications.php:71 ../../include/nav.php:109
-msgid "Network"
+#: ../../mod/editpost.php:96
+msgid "Insert Vorbis [.ogg] audio"
msgstr ""
-#: ../../mod/notifications.php:76 ../../include/nav.php:73
-#: ../../include/nav.php:111
-msgid "Home"
+#: ../../mod/editpost.php:97 ../../include/conversation.php:820
+msgid "Set your location"
msgstr ""
-#: ../../mod/notifications.php:81 ../../include/nav.php:117
-msgid "Introductions"
+#: ../../mod/editpost.php:98 ../../include/conversation.php:821
+msgid "Clear browser location"
msgstr ""
-#: ../../mod/notifications.php:86 ../../mod/message.php:72
-#: ../../include/nav.php:122
-msgid "Messages"
+#: ../../mod/editpost.php:100 ../../include/conversation.php:824
+msgid "Permission settings"
msgstr ""
-#: ../../mod/notifications.php:105
-msgid "Show Ignored Requests"
+#: ../../mod/editpost.php:108 ../../include/conversation.php:832
+msgid "CC: email addresses"
msgstr ""
-#: ../../mod/notifications.php:105
-msgid "Hide Ignored Requests"
+#: ../../mod/editpost.php:109 ../../include/conversation.php:833
+msgid "Public post"
msgstr ""
-#: ../../mod/notifications.php:131 ../../mod/notifications.php:174
-msgid "Notification type: "
+#: ../../mod/editpost.php:111 ../../include/conversation.php:835
+msgid "Example: bob@example.com, mary@example.com"
msgstr ""
-#: ../../mod/notifications.php:132
-msgid "Friend Suggestion"
+#: ../../mod/invite.php:35
+#, php-format
+msgid "%s : Not a valid email address."
msgstr ""
-#: ../../mod/notifications.php:134
+#: ../../mod/invite.php:59
#, php-format
-msgid "suggested by %s"
+msgid "Please join my network on %s"
msgstr ""
-#: ../../mod/notifications.php:140 ../../mod/notifications.php:185
-#: ../../mod/admin.php:466
-msgid "Approve"
+#: ../../mod/invite.php:69
+#, php-format
+msgid "%s : Message delivery failed."
msgstr ""
-#: ../../mod/notifications.php:160
-msgid "Claims to be known to you: "
+#: ../../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"
msgstr ""
-#: ../../mod/notifications.php:160
-msgid "yes"
+#: ../../mod/invite.php:99
+msgid "Send invitations"
msgstr ""
-#: ../../mod/notifications.php:160
-msgid "no"
+#: ../../mod/invite.php:100
+msgid "Enter email addresses, one per line:"
msgstr ""
-#: ../../mod/notifications.php:167
-msgid "Approve as: "
+#: ../../mod/invite.php:101 ../../mod/message.php:132
+#: ../../mod/message.php:265
+msgid "Your message:"
msgstr ""
-#: ../../mod/notifications.php:168
-msgid "Friend"
+#: ../../mod/invite.php:102
+#, php-format
+msgid "Please join my social network on %s"
msgstr ""
-#: ../../mod/notifications.php:169
-msgid "Sharer"
+#: ../../mod/invite.php:103
+msgid "To accept this invitation, please visit:"
msgstr ""
-#: ../../mod/notifications.php:169
-msgid "Fan/Admirer"
+#: ../../mod/invite.php:104
+msgid "You will need to supply this invitation code: $invite_code"
msgstr ""
-#: ../../mod/notifications.php:175
-msgid "Friend/Connect Request"
+#: ../../mod/invite.php:104
+msgid ""
+"Once you have registered, please connect with me via my profile page at:"
msgstr ""
-#: ../../mod/notifications.php:175
-msgid "New Follower"
+#: ../../mod/ping.php:146
+msgid "{0} wants to be your friend"
msgstr ""
-#: ../../mod/notifications.php:194
-msgid "No notifications."
+#: ../../mod/ping.php:151
+msgid "{0} sent you a message"
msgstr ""
-#: ../../mod/notifications.php:197 ../../mod/notifications.php:283
-#: ../../mod/notifications.php:359 ../../include/nav.php:118
-msgid "Notifications"
+#: ../../mod/ping.php:156
+msgid "{0} requested registration"
msgstr ""
-#: ../../mod/notifications.php:234 ../../mod/notifications.php:316
+#: ../../mod/ping.php:162
#, php-format
-msgid "%s liked %s's post"
+msgid "{0} commented %s's post"
msgstr ""
-#: ../../mod/notifications.php:243 ../../mod/notifications.php:325
+#: ../../mod/ping.php:167
#, php-format
-msgid "%s disliked %s's post"
+msgid "{0} liked %s's post"
msgstr ""
-#: ../../mod/notifications.php:257 ../../mod/notifications.php:339
+#: ../../mod/ping.php:172
#, php-format
-msgid "%s is now friends with %s"
+msgid "{0} disliked %s's post"
msgstr ""
-#: ../../mod/notifications.php:264
+#: ../../mod/ping.php:177
#, php-format
-msgid "%s created a new post"
+msgid "{0} is now friends with %s"
msgstr ""
-#: ../../mod/notifications.php:265 ../../mod/notifications.php:348
-#, php-format
-msgid "%s commented on %s's post"
+#: ../../mod/ping.php:182
+msgid "{0} posted"
msgstr ""
-#: ../../mod/notifications.php:279 ../../mod/notifications.php:355
-msgid "Nothing new!"
+#: ../../mod/ping.php:187
+#, php-format
+msgid "{0} tagged %s's post with #%s"
msgstr ""
-#: ../../mod/contacts.php:50 ../../mod/contacts.php:121
+#: ../../mod/contacts.php:62 ../../mod/contacts.php:133
msgid "Could not access contact record."
msgstr ""
-#: ../../mod/contacts.php:64
+#: ../../mod/contacts.php:76
msgid "Could not locate selected profile."
msgstr ""
-#: ../../mod/contacts.php:85
+#: ../../mod/contacts.php:97
msgid "Contact updated."
msgstr ""
-#: ../../mod/contacts.php:143
+#: ../../mod/contacts.php:99 ../../mod/dfrn_request.php:409
+msgid "Failed to update contact record."
+msgstr ""
+
+#: ../../mod/contacts.php:155
msgid "Contact has been blocked"
msgstr ""
-#: ../../mod/contacts.php:143
+#: ../../mod/contacts.php:155
msgid "Contact has been unblocked"
msgstr ""
-#: ../../mod/contacts.php:157
+#: ../../mod/contacts.php:169
msgid "Contact has been ignored"
msgstr ""
-#: ../../mod/contacts.php:157
+#: ../../mod/contacts.php:169
msgid "Contact has been unignored"
msgstr ""
-#: ../../mod/contacts.php:178
+#: ../../mod/contacts.php:190
msgid "stopped following"
msgstr ""
-#: ../../mod/contacts.php:199
+#: ../../mod/contacts.php:211
msgid "Contact has been removed."
msgstr ""
-#: ../../mod/contacts.php:227 ../../mod/contacts.php:370
-msgid "Mutual Friendship"
-msgstr ""
-
-#: ../../mod/contacts.php:231 ../../mod/contacts.php:374
-msgid "is a fan of yours"
+#: ../../mod/contacts.php:232
+#, php-format
+msgid "You are mutual friends with %s"
msgstr ""
-#: ../../mod/contacts.php:236 ../../mod/contacts.php:378
-msgid "you are a fan of"
+#: ../../mod/contacts.php:236
+#, php-format
+msgid "You are sharing with %s"
msgstr ""
-#: ../../mod/contacts.php:251
-msgid "Privacy Unavailable"
+#: ../../mod/contacts.php:241
+#, php-format
+msgid "%s is sharing with you"
msgstr ""
-#: ../../mod/contacts.php:252
+#: ../../mod/contacts.php:258
msgid "Private communications are not available for this contact."
msgstr ""
-#: ../../mod/contacts.php:255
+#: ../../mod/contacts.php:261
msgid "Never"
msgstr ""
-#: ../../mod/contacts.php:259
+#: ../../mod/contacts.php:265
msgid "(Update was successful)"
msgstr ""
-#: ../../mod/contacts.php:259
+#: ../../mod/contacts.php:265
msgid "(Update was not successful)"
msgstr ""
-#: ../../mod/contacts.php:262
+#: ../../mod/contacts.php:267
msgid "Suggest friends"
msgstr ""
-#: ../../mod/contacts.php:266
+#: ../../mod/contacts.php:271
#, php-format
msgid "Network type: %s"
msgstr ""
-#: ../../mod/contacts.php:269
-msgid "Contact Editor"
+#: ../../mod/contacts.php:274
+#, php-format
+msgid "%d contact in common"
+msgid_plural "%d contacts in common"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../mod/contacts.php:279
+msgid "View all contacts"
msgstr ""
-#: ../../mod/contacts.php:271
-msgid "Profile Visibility"
+#: ../../mod/contacts.php:284 ../../mod/contacts.php:331
+#: ../../mod/admin.php:470
+msgid "Unblock"
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/contacts.php:284 ../../mod/contacts.php:331
+#: ../../mod/admin.php:469
+msgid "Block"
msgstr ""
-#: ../../mod/contacts.php:273
-msgid "Contact Information / Notes"
+#: ../../mod/contacts.php:289 ../../mod/contacts.php:332
+msgid "Unignore"
msgstr ""
-#: ../../mod/contacts.php:274
-msgid "Online Reputation"
+#: ../../mod/contacts.php:289 ../../mod/contacts.php:332
+#: ../../mod/notifications.php:47 ../../mod/notifications.php:143
+#: ../../mod/notifications.php:187
+msgid "Ignore"
msgstr ""
-#: ../../mod/contacts.php:275
-msgid ""
-"Occasionally your friends may wish to inquire about this person's online "
-"legitimacy."
+#: ../../mod/contacts.php:294
+msgid "Repair"
msgstr ""
-#: ../../mod/contacts.php:276
-msgid ""
-"You may help them choose whether or not to interact with this person by "
-"providing a <em>reputation</em> to guide them."
+#: ../../mod/contacts.php:304
+msgid "Contact Editor"
msgstr ""
-#: ../../mod/contacts.php:277
+#: ../../mod/contacts.php:307
+msgid "Profile Visibility"
+msgstr ""
+
+#: ../../mod/contacts.php:308
+#, php-format
msgid ""
-"Please take a moment to elaborate on this selection if you feel it could be "
-"helpful to others."
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
msgstr ""
-#: ../../mod/contacts.php:278 ../../mod/contacts.php:394
+#: ../../mod/contacts.php:309
+msgid "Contact Information / Notes"
+msgstr ""
+
+#: ../../mod/contacts.php:310
+msgid "Edit contact notes"
+msgstr ""
+
+#: ../../mod/contacts.php:315 ../../mod/contacts.php:430
#: ../../mod/viewcontacts.php:61
#, php-format
msgid "Visit %s's profile [%s]"
msgstr ""
-#: ../../mod/contacts.php:279
+#: ../../mod/contacts.php:316
msgid "Block/Unblock contact"
msgstr ""
-#: ../../mod/contacts.php:280
+#: ../../mod/contacts.php:317
msgid "Ignore contact"
msgstr ""
-#: ../../mod/contacts.php:281
-msgid "Repair contact URL settings"
+#: ../../mod/contacts.php:318
+msgid "Repair URL settings"
msgstr ""
-#: ../../mod/contacts.php:282
-msgid "Repair contact URL settings (WARNING: Advanced)"
-msgstr ""
-
-#: ../../mod/contacts.php:283
+#: ../../mod/contacts.php:319
msgid "View conversations"
msgstr ""
-#: ../../mod/contacts.php:285
+#: ../../mod/contacts.php:321
msgid "Delete contact"
msgstr ""
-#: ../../mod/contacts.php:289
-msgid "Last updated: "
+#: ../../mod/contacts.php:325
+msgid "Last update:"
msgstr ""
-#: ../../mod/contacts.php:290
-msgid "Update public posts: "
+#: ../../mod/contacts.php:326
+msgid "Update public posts"
msgstr ""
-#: ../../mod/contacts.php:292 ../../mod/admin.php:701
+#: ../../mod/contacts.php:328 ../../mod/admin.php:701
msgid "Update now"
msgstr ""
-#: ../../mod/contacts.php:295
-msgid "Unblock this contact"
-msgstr ""
-
-#: ../../mod/contacts.php:295
-msgid "Block this contact"
-msgstr ""
-
-#: ../../mod/contacts.php:296
-msgid "Unignore this contact"
-msgstr ""
-
-#: ../../mod/contacts.php:296
-msgid "Ignore this contact"
-msgstr ""
-
-#: ../../mod/contacts.php:299
+#: ../../mod/contacts.php:335
msgid "Currently blocked"
msgstr ""
-#: ../../mod/contacts.php:300
+#: ../../mod/contacts.php:336
msgid "Currently ignored"
msgstr ""
-#: ../../mod/contacts.php:328 ../../include/nav.php:130
+#: ../../mod/contacts.php:364 ../../include/nav.php:130
msgid "Contacts"
msgstr ""
-#: ../../mod/contacts.php:330
+#: ../../mod/contacts.php:366
msgid "Show Blocked Connections"
msgstr ""
-#: ../../mod/contacts.php:330
+#: ../../mod/contacts.php:366
msgid "Hide Blocked Connections"
msgstr ""
-#: ../../mod/contacts.php:332
+#: ../../mod/contacts.php:368
msgid "Search your contacts"
msgstr ""
-#: ../../mod/contacts.php:333 ../../mod/directory.php:65
+#: ../../mod/contacts.php:369 ../../mod/directory.php:65
msgid "Finding: "
msgstr ""
-#: ../../mod/contacts.php:334 ../../mod/directory.php:67
+#: ../../mod/contacts.php:370 ../../mod/directory.php:67
#: ../../include/contact_widgets.php:34
msgid "Find"
msgstr ""
-#: ../../mod/contacts.php:395 ../../include/Contact.php:129
-#: ../../include/conversation.php:660
-msgid "Edit contact"
-msgstr ""
-
-#: ../../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 "Password reset requested at %s"
-msgstr ""
-
-#: ../../mod/lostpass.php:64
-msgid ""
-"Request could not be verified. (You may have previously submitted it.) "
-"Password reset failed."
-msgstr ""
-
-#: ../../mod/lostpass.php:82 ../../boot.php:689
-msgid "Password Reset"
-msgstr ""
-
-#: ../../mod/lostpass.php:83
-msgid "Your password has been reset as requested."
-msgstr ""
-
-#: ../../mod/lostpass.php:84
-msgid "Your new password is"
-msgstr ""
-
-#: ../../mod/lostpass.php:85
-msgid "Save or copy your new password - and then"
+#: ../../mod/contacts.php:406
+msgid "Mutual Friendship"
msgstr ""
-#: ../../mod/lostpass.php:86
-msgid "click here to login"
+#: ../../mod/contacts.php:410
+msgid "is a fan of yours"
msgstr ""
-#: ../../mod/lostpass.php:87
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
+#: ../../mod/contacts.php:414
+msgid "you are a fan of"
msgstr ""
-#: ../../mod/lostpass.php:118
-msgid "Forgot your Password?"
+#: ../../mod/contacts.php:431 ../../include/Contact.php:129
+#: ../../include/conversation.php:679
+msgid "Edit contact"
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/lockview.php:39
+msgid "Remote privacy information not available."
msgstr ""
-#: ../../mod/lostpass.php:120
-msgid "Nickname or Email: "
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
msgstr ""
-#: ../../mod/lostpass.php:121
-msgid "Reset"
+#: ../../mod/register.php:53
+msgid "An invitation is required."
msgstr ""
-#: ../../mod/settings.php:113
-msgid "Failed to connect with email account using the settings provided."
+#: ../../mod/register.php:58
+msgid "Invitation could not be verified."
msgstr ""
-#: ../../mod/settings.php:118
-msgid "Email settings updated."
+#: ../../mod/register.php:66
+msgid "Invalid OpenID url"
msgstr ""
-#: ../../mod/settings.php:136
-msgid "Passwords do not match. Password unchanged."
+#: ../../mod/register.php:81
+msgid "Please enter the required information."
msgstr ""
-#: ../../mod/settings.php:141
-msgid "Empty passwords are not allowed. Password unchanged."
+#: ../../mod/register.php:95
+msgid "Please use a shorter name."
msgstr ""
-#: ../../mod/settings.php:152
-msgid "Password changed."
+#: ../../mod/register.php:97
+msgid "Name too short."
msgstr ""
-#: ../../mod/settings.php:154
-msgid "Password update failed. Please try again."
+#: ../../mod/register.php:112
+msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
-#: ../../mod/settings.php:200
-msgid " Please use a shorter name."
+#: ../../mod/register.php:117
+msgid "Your email domain is not among those allowed on this site."
msgstr ""
-#: ../../mod/settings.php:202
-msgid " Name too short."
+#: ../../mod/register.php:120
+msgid "Not a valid email address."
msgstr ""
-#: ../../mod/settings.php:208
-msgid " Not valid email."
+#: ../../mod/register.php:130
+msgid "Cannot use that email."
msgstr ""
-#: ../../mod/settings.php:210
-msgid " Cannot change to that email."
+#: ../../mod/register.php:136
+msgid ""
+"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
+"must also begin with a letter."
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/register.php:142 ../../mod/register.php:243
+msgid "Nickname is already registered. Please choose another."
msgstr ""
-#: ../../mod/settings.php:323 ../../include/nav.php:128
-msgid "Account settings"
+#: ../../mod/register.php:161
+msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr ""
-#: ../../mod/settings.php:328
-msgid "Connector settings"
+#: ../../mod/register.php:229
+msgid "An error occurred during registration. Please try again."
msgstr ""
-#: ../../mod/settings.php:333
-msgid "Plugin settings"
+#: ../../mod/register.php:265
+msgid "An error occurred creating your default profile. Please try again."
msgstr ""
-#: ../../mod/settings.php:338
-msgid "Export personal data"
+#: ../../mod/register.php:377
+msgid ""
+"Registration successful. Please check your email for further instructions."
msgstr ""
-#: ../../mod/settings.php:356
-msgid "No Plugin settings configured"
+#: ../../mod/register.php:381
+msgid "Failed to send email message. Here is the message that failed."
msgstr ""
-#: ../../mod/settings.php:363 ../../addon/widgets/widgets.php:122
-msgid "Plugin Settings"
+#: ../../mod/register.php:386
+msgid "Your registration can not be processed."
msgstr ""
-#: ../../mod/settings.php:376 ../../mod/settings.php:377
+#: ../../mod/register.php:423
#, php-format
-msgid "Built-in support for %s connectivity is %s"
-msgstr ""
-
-#: ../../mod/settings.php:376 ../../mod/settings.php:377
-msgid "enabled"
-msgstr ""
-
-#: ../../mod/settings.php:376 ../../mod/settings.php:377
-msgid "disabled"
-msgstr ""
-
-#: ../../mod/settings.php:377
-msgid "StatusNet"
-msgstr ""
-
-#: ../../mod/settings.php:403
-msgid "Connector Settings"
+msgid "Registration request at %s"
msgstr ""
-#: ../../mod/settings.php:409
-msgid "Email/Mailbox Setup"
+#: ../../mod/register.php:432
+msgid "Your registration is pending approval by the site owner."
msgstr ""
-#: ../../mod/settings.php:410
+#: ../../mod/register.php:481
msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr ""
-
-#: ../../mod/settings.php:411
-msgid "Last successful email check:"
-msgstr ""
-
-#: ../../mod/settings.php:412
-msgid "Email access is disabled on this site."
-msgstr ""
-
-#: ../../mod/settings.php:413
-msgid "IMAP server name:"
-msgstr ""
-
-#: ../../mod/settings.php:414
-msgid "IMAP port:"
-msgstr ""
-
-#: ../../mod/settings.php:415
-msgid "Security:"
-msgstr ""
-
-#: ../../mod/settings.php:415
-msgid "None"
-msgstr ""
-
-#: ../../mod/settings.php:416
-msgid "Email login name:"
+"You may (optionally) fill in this form via OpenID by supplying your OpenID "
+"and clicking 'Register'."
msgstr ""
-#: ../../mod/settings.php:417
-msgid "Email password:"
+#: ../../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 ""
-#: ../../mod/settings.php:418
-msgid "Reply-to address:"
+#: ../../mod/register.php:483
+msgid "Your OpenID (optional): "
msgstr ""
-#: ../../mod/settings.php:419
-msgid "Send public posts to all email contacts:"
+#: ../../mod/register.php:497
+msgid "Include your profile in member directory?"
msgstr ""
-#: ../../mod/settings.php:456 ../../mod/admin.php:126 ../../mod/admin.php:443
-msgid "Normal Account"
+#: ../../mod/register.php:512
+msgid "Membership on this site is by invitation only."
msgstr ""
-#: ../../mod/settings.php:457
-msgid "This account is a normal personal profile"
+#: ../../mod/register.php:513
+msgid "Your invitation ID: "
msgstr ""
-#: ../../mod/settings.php:460 ../../mod/admin.php:127 ../../mod/admin.php:444
-msgid "Soapbox Account"
+#: ../../mod/register.php:516 ../../mod/admin.php:297
+msgid "Registration"
msgstr ""
-#: ../../mod/settings.php:461
-msgid "Automatically approve all connection/friend requests as read-only fans"
+#: ../../mod/register.php:524
+msgid "Your Full Name (e.g. Joe Smith): "
msgstr ""
-#: ../../mod/settings.php:464 ../../mod/admin.php:128 ../../mod/admin.php:445
-msgid "Community/Celebrity Account"
+#: ../../mod/register.php:525
+msgid "Your Email Address: "
msgstr ""
-#: ../../mod/settings.php:465
-msgid "Automatically approve all connection/friend requests as read-write fans"
+#: ../../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 '<strong>nickname@$sitename</"
+"strong>'."
msgstr ""
-#: ../../mod/settings.php:468 ../../mod/admin.php:129 ../../mod/admin.php:446
-msgid "Automatic Friend Account"
+#: ../../mod/register.php:527
+msgid "Choose a nickname: "
msgstr ""
-#: ../../mod/settings.php:469
-msgid "Automatically approve all connection/friend requests as friends"
+#: ../../mod/oexchange.php:27
+msgid "Post successful."
msgstr ""
-#: ../../mod/settings.php:479
-msgid "OpenID:"
+#: ../../mod/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
msgstr ""
-#: ../../mod/settings.php:479
-msgid "(Optional) Allow this OpenID to login to this account."
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
msgstr ""
-#: ../../mod/settings.php:489
-msgid "Publish your default profile in your local site directory?"
+#: ../../mod/help.php:30
+msgid "Help:"
msgstr ""
-#: ../../mod/settings.php:495
-msgid "Publish your default profile in the global social directory?"
+#: ../../mod/help.php:34 ../../include/nav.php:82
+msgid "Help"
msgstr ""
-#: ../../mod/settings.php:503
-msgid "Hide your contact/friend list from viewers of your default profile?"
+#: ../../mod/install.php:34
+msgid "Could not create/connect to database."
msgstr ""
-#: ../../mod/settings.php:507
-msgid "Hide profile details and all your messages from unknown viewers?"
+#: ../../mod/install.php:39
+msgid "Connected to database."
msgstr ""
-#: ../../mod/settings.php:516
-msgid "Profile is <strong>not published</strong>."
+#: ../../mod/install.php:75
+msgid "Proceed with Installation"
msgstr ""
-#: ../../mod/settings.php:535 ../../mod/profile_photo.php:202
-msgid "or"
+#: ../../mod/install.php:77
+msgid "Your Friendika site database has been installed."
msgstr ""
-#: ../../mod/settings.php:540
-msgid "Your Identity Address is"
+#: ../../mod/install.php:78
+msgid ""
+"IMPORTANT: You will need to [manually] setup a scheduled task for the poller."
msgstr ""
-#: ../../mod/settings.php:554
-msgid "Account Settings"
+#: ../../mod/install.php:79 ../../mod/install.php:89 ../../mod/install.php:207
+msgid "Please see the file \"INSTALL.txt\"."
msgstr ""
-#: ../../mod/settings.php:562
-msgid "Password Settings"
+#: ../../mod/install.php:81
+msgid "Proceed to registration"
msgstr ""
-#: ../../mod/settings.php:563
-msgid "New Password:"
+#: ../../mod/install.php:87
+msgid "Database import failed."
msgstr ""
-#: ../../mod/settings.php:564
-msgid "Confirm:"
+#: ../../mod/install.php:88
+msgid ""
+"You may need to import the file \"database.sql\" manually using phpmyadmin "
+"or mysql."
msgstr ""
-#: ../../mod/settings.php:564
-msgid "Leave password fields blank unless changing"
+#: ../../mod/install.php:101
+msgid "Welcome to Friendika."
msgstr ""
-#: ../../mod/settings.php:568
-msgid "Basic Settings"
+#: ../../mod/install.php:124
+msgid "Friendika Social Network"
msgstr ""
-#: ../../mod/settings.php:569 ../../include/profile_advanced.php:15
-msgid "Full Name:"
+#: ../../mod/install.php:125
+msgid "Installation"
msgstr ""
-#: ../../mod/settings.php:570
-msgid "Email Address:"
+#: ../../mod/install.php:126
+msgid ""
+"In order to install Friendika we need to know how to connect to your "
+"database."
msgstr ""
-#: ../../mod/settings.php:571
-msgid "Your Timezone:"
+#: ../../mod/install.php:127
+msgid ""
+"Please contact your hosting provider or site administrator if you have "
+"questions about these settings."
msgstr ""
-#: ../../mod/settings.php:572
-msgid "Default Post Location:"
+#: ../../mod/install.php:128
+msgid ""
+"The database you specify below should already exist. If it does not, please "
+"create it before continuing."
msgstr ""
-#: ../../mod/settings.php:573
-msgid "Use Browser Location:"
+#: ../../mod/install.php:129
+msgid "Database Server Name"
msgstr ""
-#: ../../mod/settings.php:574
-msgid "Display Theme:"
+#: ../../mod/install.php:130
+msgid "Database Login Name"
msgstr ""
-#: ../../mod/settings.php:578
-msgid "Security and Privacy Settings"
+#: ../../mod/install.php:131
+msgid "Database Login Password"
msgstr ""
-#: ../../mod/settings.php:580
-msgid "Maximum Friend Requests/Day:"
+#: ../../mod/install.php:132
+msgid "Database Name"
msgstr ""
-#: ../../mod/settings.php:580
-msgid "(to prevent spam abuse)"
+#: ../../mod/install.php:133
+msgid "Please select a default timezone for your website"
msgstr ""
-#: ../../mod/settings.php:581
-msgid "Default Post Permissions"
+#: ../../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 ""
-#: ../../mod/settings.php:582
-msgid "(click to open/close)"
+#: ../../mod/install.php:153
+msgid "Could not find a command line version of PHP in the web server PATH."
msgstr ""
-#: ../../mod/settings.php:586
-msgid "Allow friends to post to your profile page:"
+#: ../../mod/install.php:154
+msgid ""
+"This is required. Please adjust the configuration file .htconfig.php "
+"accordingly."
msgstr ""
-#: ../../mod/settings.php:587
-msgid "Automatically expire posts after days:"
+#: ../../mod/install.php:161
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
msgstr ""
-#: ../../mod/settings.php:587
-msgid "If empty, posts will not expire. Expired posts will be deleted"
+#: ../../mod/install.php:162
+msgid "This is required for message delivery to work."
msgstr ""
-#: ../../mod/settings.php:596
-msgid "Notification Settings"
+#: ../../mod/install.php:184
+msgid ""
+"Error: the \"openssl_pkey_new\" function on this system is not able to "
+"generate encryption keys"
msgstr ""
-#: ../../mod/settings.php:597
-msgid "Send a notification email when:"
+#: ../../mod/install.php:185
+msgid ""
+"If running under Windows, please see \"http://www.php.net/manual/en/openssl."
+"installation.php\"."
msgstr ""
-#: ../../mod/settings.php:598
-msgid "You receive an introduction"
+#: ../../mod/install.php:194
+msgid ""
+"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr ""
-#: ../../mod/settings.php:599
-msgid "Your introductions are confirmed"
+#: ../../mod/install.php:196
+msgid "Error: libCURL PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:600
-msgid "Someone writes on your profile wall"
+#: ../../mod/install.php:198
+msgid ""
+"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr ""
-#: ../../mod/settings.php:601
-msgid "Someone writes a followup comment"
+#: ../../mod/install.php:200
+msgid "Error: openssl PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:602
-msgid "You receive a private message"
+#: ../../mod/install.php:202
+msgid "Error: mysqli PHP module required but not installed."
msgstr ""
-#: ../../mod/settings.php:606
-msgid "Advanced Page Settings"
+#: ../../mod/install.php:204
+msgid "Error: mb_string PHP module required but not installed."
msgstr ""
-#: ../../mod/manage.php:37
-#, php-format
-msgid "Welcome back %s"
+#: ../../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/manage.php:87
-msgid "Manage Identities and/or Pages"
+#: ../../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/manage.php:90
+#: ../../mod/install.php:218
msgid ""
-"(Toggle between different identities or community/group pages which share "
-"your account details.)"
+"Please check with your site documentation or support people to see if this "
+"situation can be corrected."
msgstr ""
-#: ../../mod/manage.php:92
-msgid "Select an identity to manage: "
+#: ../../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/network.php:75 ../../mod/search.php:13
-msgid "Saved Searches"
+#: ../../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/network.php:81 ../../mod/search.php:16
-msgid "Remove term"
+#: ../../mod/install.php:243
+msgid "Errors encountered creating database tables."
msgstr ""
#: ../../mod/network.php:148
@@ -1828,622 +2203,644 @@ msgstr ""
msgid "Invalid contact."
msgstr ""
-#: ../../mod/notes.php:44 ../../boot.php:1217
-msgid "Personal Notes"
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
msgstr ""
-#: ../../mod/notes.php:63 ../../include/text.php:625
-msgid "Save"
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
msgstr ""
-#: ../../mod/newmember.php:6
-msgid "Welcome to Friendika"
+#: ../../mod/profperm.php:105 ../../mod/group.php:164
+msgid "Click on a contact to add or remove."
msgstr ""
-#: ../../mod/newmember.php:8
-msgid "New Member Checklist"
+#: ../../mod/profperm.php:114
+msgid "Visible To"
msgstr ""
-#: ../../mod/newmember.php:12
-msgid ""
-"We would like to offer some tips and links to help make your experience "
-"enjoyable. Click any item to visit the relevant page."
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
msgstr ""
-#: ../../mod/newmember.php:16
-msgid ""
-"On your <em>Settings</em> page - change your initial password. Also make a "
-"note of your Identity Address. This will be useful in making friends."
+#: ../../mod/events.php:61
+msgid "Event description and start time are required."
msgstr ""
-#: ../../mod/newmember.php:18
-msgid ""
-"Review the other settings, particularly the privacy settings. An unpublished "
-"directory listing is like having an unlisted phone number. In general, you "
-"should probably publish your listing - unless all of your friends and "
-"potential friends know exactly how to find you."
+#: ../../mod/events.php:207
+msgid "Create New Event"
msgstr ""
-#: ../../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."
+#: ../../mod/events.php:210
+msgid "Previous"
msgstr ""
-#: ../../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."
+#: ../../mod/events.php:213
+msgid "Next"
msgstr ""
-#: ../../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"
+#: ../../mod/events.php:220
+msgid "l, F j"
msgstr ""
-#: ../../mod/newmember.php:30
-msgid ""
-"Edit your <strong>default</strong> profile to your liking. Review the "
-"settings for hiding your list of friends and hiding the profile from unknown "
-"visitors."
+#: ../../mod/events.php:232
+msgid "Edit event"
msgstr ""
-#: ../../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."
+#: ../../mod/events.php:234 ../../include/text.php:857
+msgid "link to source"
msgstr ""
-#: ../../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 <em>Connect</em> dialog."
+#: ../../mod/events.php:302
+msgid "hour:minute"
msgstr ""
-#: ../../mod/newmember.php:36
-msgid ""
-"The Directory page lets you find other people in this network or other "
-"federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on "
-"their profile page. Provide your own Identity Address if requested."
+#: ../../mod/events.php:311
+msgid "Event details"
msgstr ""
-#: ../../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."
+#: ../../mod/events.php:312
+#, php-format
+msgid "Format is %s %s. Starting date and Description are required."
msgstr ""
-#: ../../mod/newmember.php:40
-msgid ""
-"Our <strong>help</strong> pages may be consulted for detail on other program "
-"features and resources."
+#: ../../mod/events.php:313
+msgid "Event Starts:"
msgstr ""
-#: ../../mod/attach.php:8
-msgid "Item not available."
+#: ../../mod/events.php:316
+msgid "Finish date/time is not known or not relevant"
msgstr ""
-#: ../../mod/attach.php:20
-msgid "Item was not found."
+#: ../../mod/events.php:318
+msgid "Event Finishes:"
msgstr ""
-#: ../../mod/group.php:27
-msgid "Group created."
+#: ../../mod/events.php:321
+msgid "Adjust for viewer timezone"
msgstr ""
-#: ../../mod/group.php:33
-msgid "Could not create group."
+#: ../../mod/events.php:323
+msgid "Description:"
msgstr ""
-#: ../../mod/group.php:43 ../../mod/group.php:123
-msgid "Group not found."
+#: ../../mod/events.php:327
+msgid "Share this event"
msgstr ""
-#: ../../mod/group.php:56
-msgid "Group name changed."
+#: ../../mod/notifications.php:26
+msgid "Invalid request identifier."
msgstr ""
-#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:278
-msgid "Permission denied"
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:144
+#: ../../mod/notifications.php:188
+msgid "Discard"
msgstr ""
-#: ../../mod/group.php:82
-msgid "Create a group of contacts/friends."
+#: ../../mod/notifications.php:71 ../../include/nav.php:109
+msgid "Network"
msgstr ""
-#: ../../mod/group.php:83 ../../mod/group.php:166
-msgid "Group Name: "
+#: ../../mod/notifications.php:76 ../../include/nav.php:73
+#: ../../include/nav.php:111
+msgid "Home"
msgstr ""
-#: ../../mod/group.php:98
-msgid "Group removed."
+#: ../../mod/notifications.php:81 ../../include/nav.php:117
+msgid "Introductions"
msgstr ""
-#: ../../mod/group.php:100
-msgid "Unable to remove group."
+#: ../../mod/notifications.php:86 ../../mod/message.php:72
+#: ../../include/nav.php:122
+msgid "Messages"
msgstr ""
-#: ../../mod/group.php:164 ../../mod/profperm.php:105
-msgid "Click on a contact to add or remove."
+#: ../../mod/notifications.php:105
+msgid "Show Ignored Requests"
msgstr ""
-#: ../../mod/group.php:165
-msgid "Group Editor"
+#: ../../mod/notifications.php:105
+msgid "Hide Ignored Requests"
msgstr ""
-#: ../../mod/group.php:179
-msgid "Members"
+#: ../../mod/notifications.php:131 ../../mod/notifications.php:174
+msgid "Notification type: "
msgstr ""
-#: ../../mod/group.php:194
-msgid "All Contacts"
+#: ../../mod/notifications.php:132
+msgid "Friend Suggestion"
msgstr ""
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
+#: ../../mod/notifications.php:134
+#, php-format
+msgid "suggested by %s"
msgstr ""
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
+#: ../../mod/notifications.php:140 ../../mod/notifications.php:185
+#: ../../mod/admin.php:466
+msgid "Approve"
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:160
+msgid "Claims to be known to you: "
msgstr ""
-#: ../../mod/profperm.php:114
-msgid "Visible To"
+#: ../../mod/notifications.php:160
+msgid "yes"
msgstr ""
-#: ../../mod/profperm.php:130
-msgid "All Contacts (with secure profile access)"
+#: ../../mod/notifications.php:160
+msgid "no"
msgstr ""
-#: ../../mod/viewcontacts.php:25 ../../include/text.php:564
-msgid "View Contacts"
+#: ../../mod/notifications.php:167
+msgid "Approve as: "
msgstr ""
-#: ../../mod/viewcontacts.php:40
-msgid "No contacts."
+#: ../../mod/notifications.php:168
+msgid "Friend"
msgstr ""
-#: ../../mod/register.php:53
-msgid "An invitation is required."
+#: ../../mod/notifications.php:169
+msgid "Sharer"
msgstr ""
-#: ../../mod/register.php:58
-msgid "Invitation could not be verified."
+#: ../../mod/notifications.php:169
+msgid "Fan/Admirer"
msgstr ""
-#: ../../mod/register.php:66
-msgid "Invalid OpenID url"
+#: ../../mod/notifications.php:175
+msgid "Friend/Connect Request"
msgstr ""
-#: ../../mod/register.php:81
-msgid "Please enter the required information."
+#: ../../mod/notifications.php:175
+msgid "New Follower"
msgstr ""
-#: ../../mod/register.php:95
-msgid "Please use a shorter name."
+#: ../../mod/notifications.php:194
+msgid "No notifications."
msgstr ""
-#: ../../mod/register.php:97
-msgid "Name too short."
+#: ../../mod/notifications.php:197 ../../mod/notifications.php:283
+#: ../../mod/notifications.php:359 ../../include/nav.php:118
+msgid "Notifications"
msgstr ""
-#: ../../mod/register.php:112
-msgid "That doesn't appear to be your full (First Last) name."
+#: ../../mod/notifications.php:234 ../../mod/notifications.php:316
+#, php-format
+msgid "%s liked %s's post"
msgstr ""
-#: ../../mod/register.php:117
-msgid "Your email domain is not among those allowed on this site."
+#: ../../mod/notifications.php:243 ../../mod/notifications.php:325
+#, php-format
+msgid "%s disliked %s's post"
msgstr ""
-#: ../../mod/register.php:120
-msgid "Not a valid email address."
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:339
+#, php-format
+msgid "%s is now friends with %s"
msgstr ""
-#: ../../mod/register.php:130
-msgid "Cannot use that email."
+#: ../../mod/notifications.php:264
+#, php-format
+msgid "%s created a new post"
msgstr ""
-#: ../../mod/register.php:136
-msgid ""
-"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
-"must also begin with a letter."
+#: ../../mod/notifications.php:265 ../../mod/notifications.php:348
+#, php-format
+msgid "%s commented on %s's post"
msgstr ""
-#: ../../mod/register.php:142 ../../mod/register.php:243
-msgid "Nickname is already registered. Please choose another."
+#: ../../mod/notifications.php:279 ../../mod/notifications.php:355
+msgid "Nothing new!"
msgstr ""
-#: ../../mod/register.php:161
-msgid "SERIOUS ERROR: Generation of security keys failed."
+#: ../../mod/crepair.php:100
+msgid "Contact settings applied."
msgstr ""
-#: ../../mod/register.php:229
-msgid "An error occurred during registration. Please try again."
+#: ../../mod/crepair.php:102
+msgid "Contact update failed."
msgstr ""
-#: ../../mod/register.php:265
-msgid "An error occurred creating your default profile. Please try again."
+#: ../../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:367 ../../mod/regmod.php:52
-#, php-format
-msgid "Registration details for %s"
+#: ../../mod/crepair.php:133
+msgid "Repair Contact Settings"
msgstr ""
-#: ../../mod/register.php:375
+#: ../../mod/crepair.php:135
msgid ""
-"Registration successful. Please check your email for further instructions."
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect "
+"information your communications with this contact may stop working."
msgstr ""
-#: ../../mod/register.php:379
-msgid "Failed to send email message. Here is the message that failed."
+#: ../../mod/crepair.php:136
+msgid ""
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
msgstr ""
-#: ../../mod/register.php:384
-msgid "Your registration can not be processed."
+#: ../../mod/crepair.php:145
+msgid "Account Nickname"
msgstr ""
-#: ../../mod/register.php:421
-#, php-format
-msgid "Registration request at %s"
+#: ../../mod/crepair.php:146
+msgid "@Tagname - overrides Name/Nickname"
msgstr ""
-#: ../../mod/register.php:430
-msgid "Your registration is pending approval by the site owner."
+#: ../../mod/crepair.php:147
+msgid "Account URL"
msgstr ""
-#: ../../mod/register.php:479
-msgid ""
-"You may (optionally) fill in this form via OpenID by supplying your OpenID "
-"and clicking 'Register'."
+#: ../../mod/crepair.php:148
+msgid "Friend Request URL"
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/crepair.php:149
+msgid "Friend Confirm URL"
msgstr ""
-#: ../../mod/register.php:481
-msgid "Your OpenID (optional): "
+#: ../../mod/crepair.php:150
+msgid "Notification Endpoint URL"
msgstr ""
-#: ../../mod/register.php:495
-msgid "Include your profile in member directory?"
+#: ../../mod/crepair.php:151
+msgid "Poll/Feed URL"
msgstr ""
-#: ../../mod/register.php:510
-msgid "Membership on this site is by invitation only."
+#: ../../mod/crepair.php:152
+msgid "New photo from this URL"
msgstr ""
-#: ../../mod/register.php:511
-msgid "Your invitation ID: "
+#: ../../mod/dfrn_request.php:92
+msgid "This introduction has already been accepted."
msgstr ""
-#: ../../mod/register.php:514 ../../mod/admin.php:297
-msgid "Registration"
+#: ../../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:522
-msgid "Your Full Name (e.g. Joe Smith): "
+#: ../../mod/dfrn_request.php:121 ../../mod/dfrn_request.php:356
+msgid "Warning: profile location has no identifiable owner name."
msgstr ""
-#: ../../mod/register.php:523
-msgid "Your Email Address: "
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:358
+msgid "Warning: profile location has no profile photo."
msgstr ""
-#: ../../mod/register.php:524
-msgid ""
-"Choose a profile nickname. This must begin with a text character. Your "
-"profile address on this site will then be '<strong>nickname@$sitename</"
-"strong>'."
+#: ../../mod/dfrn_request.php:126 ../../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] ""
+msgstr[1] ""
+
+#: ../../mod/dfrn_request.php:167
+msgid "Introduction complete."
msgstr ""
-#: ../../mod/register.php:525
-msgid "Choose a nickname: "
+#: ../../mod/dfrn_request.php:191
+msgid "Unrecoverable protocol error."
msgstr ""
-#: ../../mod/register.php:528 ../../include/nav.php:77 ../../boot.php:660
-msgid "Register"
+#: ../../mod/dfrn_request.php:219
+msgid "Profile unavailable."
msgstr ""
-#: ../../mod/dirfind.php:23
-msgid "People Search"
+#: ../../mod/dfrn_request.php:244
+#, php-format
+msgid "%s has received too many connection requests today."
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:245
+msgid "Spam protection measures have been invoked."
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:246
+msgid "Friends are advised to please try again in 24 hours."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:276
+msgid "Invalid locator"
+msgstr ""
+
+#: ../../mod/dfrn_request.php:296
+msgid "Unable to resolve your name at the provided location."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:309
+msgid "You have already introduced yourself here."
msgstr ""
-#: ../../mod/like.php:146 ../../mod/tagger.php:66
-#: ../../include/conversation.php:46
+#: ../../mod/dfrn_request.php:313
#, php-format
-msgid "%1$s doesn't like %2$s's %3$s"
+msgid "Apparently you are already friends with %s."
msgstr ""
-#: ../../mod/friendika.php:43
-msgid "This is Friendika version"
+#: ../../mod/dfrn_request.php:334
+msgid "Invalid profile URL."
msgstr ""
-#: ../../mod/friendika.php:44
-msgid "running at web location"
+#: ../../mod/dfrn_request.php:430
+msgid "Your introduction has been sent."
+msgstr ""
+
+#: ../../mod/dfrn_request.php:483
+msgid "Please login to confirm introduction."
msgstr ""
-#: ../../mod/friendika.php:46
+#: ../../mod/dfrn_request.php:497
msgid ""
-"Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</"
-"a> to learn more about the Friendika project."
+"Incorrect identity currently logged in. Please login to <strong>this</"
+"strong> profile."
msgstr ""
-#: ../../mod/friendika.php:48
-msgid "Bug reports and issues: please visit"
+#: ../../mod/dfrn_request.php:509
+#, php-format
+msgid "Welcome home %s."
msgstr ""
-#: ../../mod/friendika.php:49
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
-"dot com"
+#: ../../mod/dfrn_request.php:510
+#, php-format
+msgid "Please confirm your introduction/connection request to %s."
msgstr ""
-#: ../../mod/friendika.php:54
-msgid "Installed plugins/addons/apps"
+#: ../../mod/dfrn_request.php:511
+msgid "Confirm"
msgstr ""
-#: ../../mod/friendika.php:62
-msgid "No installed plugins/addons/apps"
+#: ../../mod/dfrn_request.php:544 ../../include/items.php:2431
+msgid "[Name Withheld]"
msgstr ""
-#: ../../mod/regmod.php:61
-msgid "Account approved."
+#: ../../mod/dfrn_request.php:551
+msgid "Introduction received at "
msgstr ""
-#: ../../mod/regmod.php:93
+#: ../../mod/dfrn_request.php:635
#, php-format
-msgid "Registration revoked for %s"
+msgid ""
+"Diaspora members: Please do not use this form. Instead, enter \"%s\" into "
+"your Diaspora search bar."
msgstr ""
-#: ../../mod/regmod.php:105
-msgid "Please login."
+#: ../../mod/dfrn_request.php:638
+msgid ""
+"Please enter your 'Identity Address' from one of the following supported "
+"social networks:"
msgstr ""
-#: ../../mod/item.php:84
-msgid "Unable to locate original post."
+#: ../../mod/dfrn_request.php:641
+msgid "Friend/Connection Request"
msgstr ""
-#: ../../mod/item.php:199
-msgid "Empty post discarded."
+#: ../../mod/dfrn_request.php:642
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
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/dfrn_request.php:643
+msgid "Please answer the following:"
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/dfrn_request.php:644
+#, php-format
+msgid "Does %s know you?"
msgstr ""
-#: ../../mod/item.php:695 ../../mod/item.php:782 ../../include/items.php:2117
-msgid "Administrator@"
+#: ../../mod/dfrn_request.php:647
+msgid "Add a personal note:"
msgstr ""
-#: ../../mod/item.php:698 ../../include/items.php:1988
-#: ../../include/items.php:2120
-#, php-format
-msgid "%s commented on an item at %s"
+#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78
+msgid "Friendica"
msgstr ""
-#: ../../mod/item.php:785
-#, php-format
-msgid "%s posted to your profile wall at %s"
+#: ../../mod/dfrn_request.php:650
+msgid "StatusNet/Federated Social Web"
msgstr ""
-#: ../../mod/item.php:819
-msgid "System error. Post not saved."
+#: ../../mod/dfrn_request.php:652
+msgid "- please share from your own site as noted above"
msgstr ""
-#: ../../mod/item.php:844
-#, php-format
-msgid ""
-"This message was sent to you by %s, a member of the Friendika social network."
+#: ../../mod/dfrn_request.php:653
+msgid "Your Identity Address:"
msgstr ""
-#: ../../mod/item.php:846
-#, php-format
-msgid "You may visit them online at %s"
+#: ../../mod/dfrn_request.php:654
+msgid "Submit Request"
msgstr ""
-#: ../../mod/item.php:847
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr ""
+
+#: ../../mod/api.php:77
+msgid "Return to your app and insert this Securty Code:"
+msgstr ""
+
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr ""
+
+#: ../../mod/api.php:104
msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+"Do you want to authorize this application to access your posts and contacts, "
+"and/or create new posts for you?"
+msgstr ""
+
+#: ../../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:849
+#: ../../mod/tagger.php:103
#, php-format
-msgid "%s posted an update."
+msgid "%1$s tagged %2$s's %3$s with %4$s"
msgstr ""
-#: ../../mod/profile_photo.php:28
-msgid "Image uploaded but image cropping failed."
+#: ../../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/profile_photo.php:61 ../../mod/profile_photo.php:68
-#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:254
+#: ../../mod/like.php:146 ../../include/conversation.php:46
#, php-format
-msgid "Image size reduction [%s] failed."
+msgid "%1$s doesn't like %2$s's %3$s"
msgstr ""
-#: ../../mod/profile_photo.php:95
-msgid "Unable to process image"
+#: ../../mod/lostpass.php:16
+msgid "No valid account found."
msgstr ""
-#: ../../mod/profile_photo.php:109 ../../mod/wall_upload.php:56
+#: ../../mod/lostpass.php:31
+msgid "Password reset request issued. Check your email."
+msgstr ""
+
+#: ../../mod/lostpass.php:42
#, php-format
-msgid "Image exceeds size limit of %d"
+msgid "Password reset requested at %s"
msgstr ""
-#: ../../mod/profile_photo.php:199
-msgid "Upload File:"
+#: ../../mod/lostpass.php:64
+msgid ""
+"Request could not be verified. (You may have previously submitted it.) "
+"Password reset failed."
msgstr ""
-#: ../../mod/profile_photo.php:200
-msgid "Upload Profile Photo"
+#: ../../mod/lostpass.php:83
+msgid "Your password has been reset as requested."
msgstr ""
-#: ../../mod/profile_photo.php:201
-msgid "Upload"
+#: ../../mod/lostpass.php:84
+msgid "Your new password is"
msgstr ""
-#: ../../mod/profile_photo.php:202
-msgid "skip this step"
+#: ../../mod/lostpass.php:85
+msgid "Save or copy your new password - and then"
msgstr ""
-#: ../../mod/profile_photo.php:202
-msgid "select a photo from your photo albums"
+#: ../../mod/lostpass.php:86
+msgid "click here to login"
msgstr ""
-#: ../../mod/profile_photo.php:215
-msgid "Crop Image"
+#: ../../mod/lostpass.php:87
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
msgstr ""
-#: ../../mod/profile_photo.php:216
-msgid "Please adjust the image cropping for optimum viewing."
+#: ../../mod/lostpass.php:118
+msgid "Forgot your Password?"
msgstr ""
-#: ../../mod/profile_photo.php:217
-msgid "Done Editing"
+#: ../../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:245
-msgid "Image uploaded successfully."
+#: ../../mod/lostpass.php:120
+msgid "Nickname or Email: "
msgstr ""
-#: ../../mod/hcard.php:10 ../../mod/profile.php:10 ../../boot.php:811
-msgid "No profile"
+#: ../../mod/lostpass.php:121
+msgid "Reset"
msgstr ""
-#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
-msgid "Remove My Account"
+#: ../../mod/friendica.php:43
+msgid "This is Friendica, version"
msgstr ""
-#: ../../mod/removeme.php:43
+#: ../../mod/friendica.php:44
+msgid "running at web location"
+msgstr ""
+
+#: ../../mod/friendica.php:46
msgid ""
-"This will completely remove your account. Once this has been done it is not "
-"recoverable."
+"Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</"
+"a> to learn more about the Friendica project."
msgstr ""
-#: ../../mod/removeme.php:44
-msgid "Please enter your password for verification:"
+#: ../../mod/friendica.php:48
+msgid "Bug reports and issues: please visit"
msgstr ""
-#: ../../mod/message.php:23
-msgid "No recipient selected."
+#: ../../mod/friendica.php:49
+msgid ""
+"Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - "
+"dot com"
msgstr ""
-#: ../../mod/message.php:26
-msgid "Unable to locate contact information."
+#: ../../mod/friendica.php:54
+msgid "Installed plugins/addons/apps"
msgstr ""
-#: ../../mod/message.php:29
-msgid "Message could not be sent."
+#: ../../mod/friendica.php:62
+msgid "No installed plugins/addons/apps"
msgstr ""
-#: ../../mod/message.php:31
-msgid "Message sent."
+#: ../../mod/removeme.php:42 ../../mod/removeme.php:45
+msgid "Remove My Account"
msgstr ""
-#: ../../mod/message.php:51
-msgid "Inbox"
+#: ../../mod/removeme.php:43
+msgid ""
+"This will completely remove your account. Once this has been done it is not "
+"recoverable."
msgstr ""
-#: ../../mod/message.php:56
-msgid "Outbox"
+#: ../../mod/removeme.php:44
+msgid "Please enter your password for verification:"
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."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
msgstr ""
-#: ../../mod/profiles.php:198
-msgid "Profile updated."
+#: ../../mod/item.php:873
+#, php-format
+msgid "%s posted an update."
msgstr ""
-#: ../../mod/profiles.php:253
-msgid "Profile deleted."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
msgstr ""
-#: ../../mod/profiles.php:269 ../../mod/profiles.php:300
-msgid "Profile-"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
msgstr ""
-#: ../../mod/profiles.php:288 ../../mod/profiles.php:327
-msgid "New profile created."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
msgstr ""
-#: ../../mod/profiles.php:306
-msgid "Profile unavailable to clone."
+#: ../../mod/tagrm.php:93
+msgid "Remove"
msgstr ""
-#: ../../mod/profiles.php:353
-msgid "Hide your contact/friend list from viewers of this profile?"
+#: ../../mod/message.php:23
+msgid "No recipient selected."
msgstr ""
-#: ../../mod/profiles.php:371
-msgid "Edit Profile Details"
+#: ../../mod/message.php:26
+msgid "Unable to locate contact information."
msgstr ""
-#: ../../mod/profiles.php:373
-msgid "View this profile"
+#: ../../mod/message.php:29
+msgid "Message could not be sent."
msgstr ""
-#: ../../mod/profiles.php:374
-msgid "Create a new profile using these settings"
+#: ../../mod/message.php:31
+msgid "Message sent."
msgstr ""
-#: ../../mod/profiles.php:375
-msgid "Clone this profile"
+#: ../../mod/message.php:51
+msgid "Inbox"
msgstr ""
-#: ../../mod/profiles.php:376
-msgid "Delete this profile"
+#: ../../mod/message.php:56
+msgid "Outbox"
msgstr ""
-#: ../../mod/profiles.php:377
-msgid "Profile Name:"
+#: ../../mod/message.php:61
+msgid "New Message"
msgstr ""
-#: ../../mod/profiles.php:378
-msgid "Your Full Name:"
+#: ../../mod/message.php:87
+msgid "Message deleted."
msgstr ""
-#: ../../mod/profiles.php:379
-msgid "Title/Description:"
+#: ../../mod/message.php:103
+msgid "Conversation removed."
msgstr ""
-#: ../../mod/profiles.php:380
-msgid "Your Gender:"
+#: ../../mod/message.php:119 ../../include/conversation.php:767
+msgid "Please enter a link URL:"
msgstr ""
-#: ../../mod/profiles.php:381
-#, php-format
-msgid "Birthday (%s):"
+#: ../../mod/message.php:127
+msgid "Send Private Message"
msgstr ""
-#: ../../mod/profiles.php:382
-msgid "Street Address:"
+#: ../../mod/message.php:128 ../../mod/message.php:261
+msgid "To:"
msgstr ""
-#: ../../mod/profiles.php:383
-msgid "Locality/City:"
+#: ../../mod/message.php:129 ../../mod/message.php:262
+msgid "Subject:"
msgstr ""
-#: ../../mod/profiles.php:384
-msgid "Postal/Zip Code:"
+#: ../../mod/message.php:170
+msgid "No messages."
msgstr ""
-#: ../../mod/profiles.php:385
-msgid "Country:"
+#: ../../mod/message.php:183
+msgid "Delete conversation"
msgstr ""
-#: ../../mod/profiles.php:386
-msgid "Region/State:"
+#: ../../mod/message.php:186
+msgid "D, d M Y - g:i A"
msgstr ""
-#: ../../mod/profiles.php:387
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+#: ../../mod/message.php:213
+msgid "Message not available."
msgstr ""
-#: ../../mod/profiles.php:388
-msgid "Who: (if applicable)"
+#: ../../mod/message.php:250
+msgid "Delete message"
msgstr ""
-#: ../../mod/profiles.php:389
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+#: ../../mod/message.php:260
+msgid "Send Reply"
msgstr ""
-#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:43
-msgid "Sexual Preference:"
+#: ../../mod/dfrn_confirm.php:234
+msgid "Response from remote site was not understood."
msgstr ""
-#: ../../mod/profiles.php:391
-msgid "Homepage URL:"
+#: ../../mod/dfrn_confirm.php:243
+msgid "Unexpected response from remote site: "
msgstr ""
-#: ../../mod/profiles.php:392 ../../include/profile_advanced.php:47
-msgid "Political Views:"
+#: ../../mod/dfrn_confirm.php:251
+msgid "Confirmation completed successfully."
msgstr ""
-#: ../../mod/profiles.php:393
-msgid "Religious Views:"
+#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267
+#: ../../mod/dfrn_confirm.php:274
+msgid "Remote site reported: "
msgstr ""
-#: ../../mod/profiles.php:394
-msgid "Public Keywords:"
+#: ../../mod/dfrn_confirm.php:265
+msgid "Temporary failure. Please wait and try again."
msgstr ""
-#: ../../mod/profiles.php:395
-msgid "Private Keywords:"
+#: ../../mod/dfrn_confirm.php:272
+msgid "Introduction failed or was revoked."
msgstr ""
-#: ../../mod/profiles.php:396
-msgid "Example: fishing photography software"
+#: ../../mod/dfrn_confirm.php:409
+msgid "Unable to set contact photo."
msgstr ""
-#: ../../mod/profiles.php:397
-msgid "(Used for suggesting potential friends, can be seen by others)"
+#: ../../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:398
-msgid "(Used for searching profiles, never shown to others)"
+#: ../../mod/dfrn_confirm.php:530
+#, php-format
+msgid "No user record found for '%s' "
msgstr ""
-#: ../../mod/profiles.php:399
-msgid "Tell us about yourself..."
+#: ../../mod/dfrn_confirm.php:540
+msgid "Our site encryption key is apparently messed up."
msgstr ""
-#: ../../mod/profiles.php:400
-msgid "Hobbies/Interests"
+#: ../../mod/dfrn_confirm.php:551
+msgid "Empty site URL was provided or URL could not be decrypted by us."
msgstr ""
-#: ../../mod/profiles.php:401
-msgid "Contact information and Social Networks"
+#: ../../mod/dfrn_confirm.php:572
+msgid "Contact record was not found for you on our site."
msgstr ""
-#: ../../mod/profiles.php:402
-msgid "Musical interests"
+#: ../../mod/dfrn_confirm.php:586
+#, php-format
+msgid "Site public key not available in contact record for URL %s."
msgstr ""
-#: ../../mod/profiles.php:403
-msgid "Books, literature"
+#: ../../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:404
-msgid "Television"
+#: ../../mod/dfrn_confirm.php:617
+msgid "Unable to set your contact credentials on our system."
msgstr ""
-#: ../../mod/profiles.php:405
-msgid "Film/dance/culture/entertainment"
+#: ../../mod/dfrn_confirm.php:671
+msgid "Unable to update your contact profile details on our system"
msgstr ""
-#: ../../mod/profiles.php:406
-msgid "Love/romance"
+#: ../../mod/dfrn_confirm.php:701
+#, php-format
+msgid "Connection accepted at %s"
msgstr ""
-#: ../../mod/profiles.php:407
-msgid "Work/employment"
+#: ../../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:408
-msgid "School/education"
+#: ../../mod/openid.php:79 ../../include/auth.php:217
+msgid "Welcome "
msgstr ""
-#: ../../mod/profiles.php:413
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
+#: ../../mod/openid.php:80 ../../include/auth.php:218
+msgid "Please upload a profile photo."
msgstr ""
-#: ../../mod/profiles.php:423 ../../mod/directory.php:122
-msgid "Age: "
+#: ../../mod/openid.php:83 ../../include/auth.php:221
+msgid "Welcome back "
msgstr ""
-#: ../../mod/profiles.php:458 ../../include/nav.php:129 ../../boot.php:879
-msgid "Profiles"
+#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
+#, php-format
+msgid "%s welcomes %s"
msgstr ""
-#: ../../mod/profiles.php:459 ../../boot.php:885
-msgid "Change profile photo"
+#: ../../mod/viewcontacts.php:25 ../../include/text.php:567
+msgid "View Contacts"
msgstr ""
-#: ../../mod/profiles.php:460 ../../boot.php:886
-msgid "Create New Profile"
+#: ../../mod/viewcontacts.php:40
+msgid "No contacts."
msgstr ""
-#: ../../mod/profiles.php:470 ../../boot.php:896
-msgid "Profile Image"
+#: ../../mod/group.php:27
+msgid "Group created."
msgstr ""
-#: ../../mod/profiles.php:472 ../../boot.php:899
-msgid "visible to everybody"
+#: ../../mod/group.php:33
+msgid "Could not create group."
msgstr ""
-#: ../../mod/profiles.php:473 ../../boot.php:900
-msgid "Edit visibility"
+#: ../../mod/group.php:43 ../../mod/group.php:123
+msgid "Group not found."
msgstr ""
-#: ../../mod/directory.php:49
-msgid "Global Directory"
+#: ../../mod/group.php:56
+msgid "Group name changed."
msgstr ""
-#: ../../mod/directory.php:55
-msgid "Normal site view"
+#: ../../mod/group.php:82
+msgid "Create a group of contacts/friends."
msgstr ""
-#: ../../mod/directory.php:57
-msgid "Admin - View all site entries"
+#: ../../mod/group.php:83 ../../mod/group.php:166
+msgid "Group Name: "
msgstr ""
-#: ../../mod/directory.php:63
-msgid "Find on this site"
+#: ../../mod/group.php:98
+msgid "Group removed."
msgstr ""
-#: ../../mod/directory.php:66
-msgid "Site Directory"
+#: ../../mod/group.php:100
+msgid "Unable to remove group."
msgstr ""
-#: ../../mod/directory.php:125
-msgid "Gender: "
+#: ../../mod/group.php:165
+msgid "Group Editor"
msgstr ""
-#: ../../mod/directory.php:151
-msgid "No entries (some entries may be hidden)."
+#: ../../mod/group.php:179
+msgid "Members"
msgstr ""
-#: ../../mod/invite.php:35
-#, php-format
-msgid "%s : Not a valid email address."
+#: ../../mod/group.php:194
+msgid "All Contacts"
msgstr ""
-#: ../../mod/invite.php:59
-#, php-format
-msgid "Please join my network on %s"
+#: ../../mod/attach.php:8
+msgid "Item not available."
msgstr ""
-#: ../../mod/invite.php:69
-#, php-format
-msgid "%s : Message delivery failed."
+#: ../../mod/attach.php:20
+msgid "Item was not found."
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/common.php:34
+msgid "Common Friends"
msgstr ""
-#: ../../mod/invite.php:99
-msgid "Send invitations"
+#: ../../mod/common.php:42
+msgid "No friends in common."
msgstr ""
-#: ../../mod/invite.php:100
-msgid "Enter email addresses, one per line:"
+#: ../../mod/match.php:10
+msgid "Profile Match"
msgstr ""
-#: ../../mod/invite.php:102
-#, php-format
-msgid "Please join my social network on %s"
+#: ../../mod/match.php:18
+msgid "No keywords to match. Please add keywords to your default profile."
msgstr ""
-#: ../../mod/invite.php:103
-msgid "To accept this invitation, please visit:"
+#: ../../mod/community.php:21
+msgid "Not available."
msgstr ""
-#: ../../mod/invite.php:104
-msgid "You will need to supply this invitation code: $invite_code"
+#: ../../mod/community.php:30 ../../include/nav.php:97
+msgid "Community"
msgstr ""
-#: ../../mod/invite.php:104
+#: ../../mod/community.php:87
msgid ""
-"Once you have registered, please connect with me via my profile page at:"
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:234
-msgid "Response from remote site was not understood."
+"Shared content is covered by the <a href=\"http://creativecommons.org/"
+"licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."
msgstr ""
-#: ../../mod/dfrn_confirm.php:243
-msgid "Unexpected response from remote site: "
+#: ../../addon/tumblr/tumblr.php:35
+msgid "Post to Tumblr"
msgstr ""
-#: ../../mod/dfrn_confirm.php:251
-msgid "Confirmation completed successfully."
+#: ../../addon/tumblr/tumblr.php:66
+msgid "Tumblr Post Settings"
msgstr ""
-#: ../../mod/dfrn_confirm.php:253 ../../mod/dfrn_confirm.php:267
-#: ../../mod/dfrn_confirm.php:274
-msgid "Remote site reported: "
+#: ../../addon/tumblr/tumblr.php:68
+msgid "Enable Tumblr Post Plugin"
msgstr ""
-#: ../../mod/dfrn_confirm.php:265
-msgid "Temporary failure. Please wait and try again."
+#: ../../addon/tumblr/tumblr.php:73
+msgid "Tumblr login"
msgstr ""
-#: ../../mod/dfrn_confirm.php:272
-msgid "Introduction failed or was revoked."
+#: ../../addon/tumblr/tumblr.php:78
+msgid "Tumblr password"
msgstr ""
-#: ../../mod/dfrn_confirm.php:409
-msgid "Unable to set contact photo."
+#: ../../addon/tumblr/tumblr.php:83
+msgid "Post to Tumblr by default"
msgstr ""
-#: ../../mod/dfrn_confirm.php:458 ../../include/conversation.php:79
-#, php-format
-msgid "%1$s is now friends with %2$s"
+#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171
+msgid "Post from Friendica"
msgstr ""
-#: ../../mod/dfrn_confirm.php:529
-#, php-format
-msgid "No user record found for '%s' "
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:539
-msgid "Our site encryption key is apparently messed up."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:550
-msgid "Empty site URL was provided or URL could not be decrypted by us."
+#: ../../addon/twitter/twitter.php:78
+msgid "Post to Twitter"
msgstr ""
-#: ../../mod/dfrn_confirm.php:571
-msgid "Contact record was not found for you on our site."
+#: ../../addon/twitter/twitter.php:123
+msgid "Twitter settings updated."
msgstr ""
-#: ../../mod/dfrn_confirm.php:585
-#, php-format
-msgid "Site public key not available in contact record for URL %s."
+#: ../../addon/twitter/twitter.php:145
+msgid "Twitter Posting Settings"
msgstr ""
-#: ../../mod/dfrn_confirm.php:605
+#: ../../addon/twitter/twitter.php:152
msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
-msgstr ""
-
-#: ../../mod/dfrn_confirm.php:616
-msgid "Unable to set your contact credentials on our system."
+"No consumer key pair for Twitter found. Please contact your site "
+"administrator."
msgstr ""
-#: ../../mod/dfrn_confirm.php:670
-msgid "Unable to update your contact profile details on our system"
+#: ../../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 <strong>public</strong> posts will "
+"be posted to Twitter."
msgstr ""
-#: ../../mod/dfrn_confirm.php:700
-#, php-format
-msgid "Connection accepted at %s"
+#: ../../addon/twitter/twitter.php:172
+msgid "Log in with Twitter"
msgstr ""
-#: ../../addon/facebook/facebook.php:336
-msgid "Facebook disabled"
+#: ../../addon/twitter/twitter.php:174
+msgid "Copy the PIN from Twitter here"
msgstr ""
-#: ../../addon/facebook/facebook.php:341
-msgid "Updating contacts"
+#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337
+msgid "Currently connected to: "
msgstr ""
-#: ../../addon/facebook/facebook.php:350
-msgid "Facebook API key is missing."
+#: ../../addon/twitter/twitter.php:189
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated Twitter account. You can choose to do so by default (here) or for "
+"every posting separately in the posting options when writing the entry."
msgstr ""
-#: ../../addon/facebook/facebook.php:357
-msgid "Facebook Connect"
+#: ../../addon/twitter/twitter.php:191
+msgid "Allow posting to Twitter"
msgstr ""
-#: ../../addon/facebook/facebook.php:363
-msgid "Install Facebook connector for this account."
+#: ../../addon/twitter/twitter.php:194
+msgid "Send public postings to Twitter by default"
msgstr ""
-#: ../../addon/facebook/facebook.php:370
-msgid "Remove Facebook connector"
+#: ../../addon/twitter/twitter.php:199 ../../addon/statusnet/statusnet.php:348
+msgid "Clear OAuth configuration"
msgstr ""
-#: ../../addon/facebook/facebook.php:375
-msgid ""
-"Re-authenticate [This is necessary whenever your Facebook password is "
-"changed.]"
+#: ../../addon/twitter/twitter.php:301
+msgid "Consumer key"
msgstr ""
-#: ../../addon/facebook/facebook.php:382
-msgid "Post to Facebook by default"
+#: ../../addon/twitter/twitter.php:302
+msgid "Consumer secret"
msgstr ""
-#: ../../addon/facebook/facebook.php:386
-msgid "Link all your Facebook friends and conversations on this website"
+#: ../../addon/statusnet/statusnet.php:141
+msgid "Post to StatusNet"
msgstr ""
-#: ../../addon/facebook/facebook.php:388
+#: ../../addon/statusnet/statusnet.php:183
msgid ""
-"Facebook conversations consist of your <em>profile wall</em> and your friend "
-"<em>stream</em>."
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
msgstr ""
-#: ../../addon/facebook/facebook.php:389
-msgid "On this website, your Facebook friend stream is only visible to you."
+#: ../../addon/statusnet/statusnet.php:211
+msgid "We could not contact the StatusNet API with the Path you entered."
msgstr ""
-#: ../../addon/facebook/facebook.php:390
-msgid ""
-"The following settings determine the privacy of your Facebook profile wall "
-"on this website."
+#: ../../addon/statusnet/statusnet.php:238
+msgid "StatusNet settings updated."
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:261
+msgid "StatusNet Posting Settings"
msgstr ""
-#: ../../addon/facebook/facebook.php:399
-msgid "Do not import your Facebook profile wall conversations"
+#: ../../addon/statusnet/statusnet.php:275
+msgid "Globally Available StatusNet OAuthKeys"
msgstr ""
-#: ../../addon/facebook/facebook.php:401
+#: ../../addon/statusnet/statusnet.php:276
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/facebook/facebook.php:468
-#: ../../include/contact_selectors.php:78
-msgid "Facebook"
-msgstr ""
-
-#: ../../addon/facebook/facebook.php:469
-msgid "Facebook Connector Settings"
+"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:483
-msgid "Post to Facebook"
+#: ../../addon/statusnet/statusnet.php:284
+msgid "Provide your own OAuth Credentials"
msgstr ""
-#: ../../addon/facebook/facebook.php:560
+#: ../../addon/statusnet/statusnet.php:285
msgid ""
-"Post to Facebook cancelled because of multi-network access permission "
-"conflict."
-msgstr ""
-
-#: ../../addon/facebook/facebook.php:623
-msgid "Image: "
-msgstr ""
-
-#: ../../addon/facebook/facebook.php:699
-msgid "View on Friendika"
+"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.<br />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 <strong>public</strong> 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 <strong>public</strong> postings can be posted to the "
+"associated StatusNet account. You can choose to do so by default (here) or "
+"for every posting separately in the posting options when writing the entry."
msgstr ""
-#: ../../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"
+#: ../../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:323
-msgid "File has an invalid extension, it should be one of "
-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
@@ -3578,165 +3825,196 @@ msgstr ""
msgid "Notes"
msgstr ""
-#: ../../addon/oembed/oembed.php:30
-msgid "OEmbed settings updated"
+#: ../../addon/facebook/facebook.php:337
+msgid "Facebook disabled"
msgstr ""
-#: ../../addon/oembed/oembed.php:43
-msgid "Use OEmbed for YouTube videos"
+#: ../../addon/facebook/facebook.php:342
+msgid "Updating contacts"
msgstr ""
-#: ../../addon/oembed/oembed.php:71
-msgid "URL to embed:"
+#: ../../addon/facebook/facebook.php:351
+msgid "Facebook API key is missing."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:141
-msgid "Post to StatusNet"
+#: ../../addon/facebook/facebook.php:358
+msgid "Facebook Connect"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:183
+#: ../../addon/facebook/facebook.php:364
+msgid "Install Facebook connector for this account."
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:371
+msgid "Remove Facebook connector"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:376
msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
+"Re-authenticate [This is necessary whenever your Facebook password is "
+"changed.]"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:211
-msgid "We could not contact the StatusNet API with the Path you entered."
+#: ../../addon/facebook/facebook.php:383
+msgid "Post to Facebook by default"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:238
-msgid "StatusNet settings updated."
+#: ../../addon/facebook/facebook.php:387
+msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:261
-msgid "StatusNet Posting Settings"
+#: ../../addon/facebook/facebook.php:389
+msgid ""
+"Facebook conversations consist of your <em>profile wall</em> and your friend "
+"<em>stream</em>."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:275
-msgid "Globally Available StatusNet OAuthKeys"
+#: ../../addon/facebook/facebook.php:390
+msgid "On this website, your Facebook friend stream is only visible to you."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:276
+#: ../../addon/facebook/facebook.php:391
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)."
+"The following settings determine the privacy of your Facebook profile wall "
+"on this website."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:284
-msgid "Provide your own OAuth Credentials"
+#: ../../addon/facebook/facebook.php:395
+msgid ""
+"On this website your Facebook profile wall conversations will only be "
+"visible to you"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:285
+#: ../../addon/facebook/facebook.php:400
+msgid "Do not import your Facebook profile wall conversations"
+msgstr ""
+
+#: ../../addon/facebook/facebook.php:402
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.<br />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."
+"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:287
-msgid "OAuth Consumer Key"
+#: ../../addon/facebook/facebook.php:469
+#: ../../include/contact_selectors.php:78
+msgid "Facebook"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:290
-msgid "OAuth Consumer Secret"
+#: ../../addon/facebook/facebook.php:470
+msgid "Facebook Connector Settings"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:293
-msgid "Base API Path (remember the trailing /)"
+#: ../../addon/facebook/facebook.php:484
+msgid "Post to Facebook"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:314
+#: ../../addon/facebook/facebook.php:561
msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below "
-"and submit the form. Only your <strong>public</strong> posts will be posted "
-"to StatusNet."
+"Post to Facebook cancelled because of multi-network access permission "
+"conflict."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:315
-msgid "Log in with StatusNet"
+#: ../../addon/facebook/facebook.php:624
+msgid "Image: "
msgstr ""
-#: ../../addon/statusnet/statusnet.php:317
-msgid "Copy the security code from StatusNet here"
+#: ../../addon/facebook/facebook.php:700
+msgid "View on Friendika"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:323
-msgid "Cancel Connection Process"
+#: ../../addon/facebook/facebook.php:724
+msgid "Facebook post failed. Queued for retry."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:325
-msgid "Current StatusNet API is"
+#: ../../addon/widgets/widgets.php:55
+msgid "Generate new key"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:326
-msgid "Cancel StatusNet Connection"
+#: ../../addon/widgets/widgets.php:58
+msgid "Widgets key"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:337 ../../addon/twitter/twitter.php:188
-msgid "Currently connected to: "
+#: ../../addon/widgets/widgets.php:60
+msgid "Widgets available"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:338
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
+#: ../../addon/widgets/widget_friends.php:40
+msgid "Connect on Friendika!"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:340
-msgid "Allow posting to StatusNet"
+#: ../../addon/widgets/widget_like.php:58
+#, php-format
+msgid "%d person likes this"
+msgid_plural "%d people like this"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../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] ""
+msgstr[1] ""
+
+#: ../../addon/buglink/buglink.php:15
+msgid "Report Bug"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:343
-msgid "Send public postings to StatusNet by default"
+#: ../../addon/nsfw/nsfw.php:47
+msgid "\"Not Safe For Work\" Settings"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:348 ../../addon/twitter/twitter.php:199
-msgid "Clear OAuth configuration"
+#: ../../addon/nsfw/nsfw.php:49
+msgid "Comma separated words to treat as NSFW"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:478
-msgid "API URL"
+#: ../../addon/nsfw/nsfw.php:66
+msgid "NSFW Settings saved."
msgstr ""
-#: ../../addon/statusnet/statusnet.php:479
-msgid "Consumer Secret"
+#: ../../addon/nsfw/nsfw.php:102
+#, php-format
+msgid "%s - Click to open/close"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:480
-msgid "Consumer Key"
+#: ../../addon/communityhome/communityhome.php:29
+msgid "OpenID"
msgstr ""
-#: ../../addon/wppost/wppost.php:41
-msgid "Post to Wordpress"
+#: ../../addon/communityhome/communityhome.php:38
+msgid "Last users"
msgstr ""
-#: ../../addon/wppost/wppost.php:73
-msgid "WordPress Post Settings"
+#: ../../addon/communityhome/communityhome.php:81
+msgid "Most active users"
msgstr ""
-#: ../../addon/wppost/wppost.php:75
-msgid "Enable WordPress Post Plugin"
+#: ../../addon/communityhome/communityhome.php:98
+msgid "Last photos"
msgstr ""
-#: ../../addon/wppost/wppost.php:80
-msgid "WordPress username"
+#: ../../addon/communityhome/communityhome.php:133
+msgid "Last likes"
msgstr ""
-#: ../../addon/wppost/wppost.php:85
-msgid "WordPress password"
+#: ../../addon/communityhome/communityhome.php:155
+#: ../../include/conversation.php:23
+msgid "event"
msgstr ""
-#: ../../addon/wppost/wppost.php:90
-msgid "WordPress API URL"
+#: ../../addon/membersince/membersince.php:17
+#, php-format
+msgid " - Member since: %s"
msgstr ""
-#: ../../addon/wppost/wppost.php:95
-msgid "Post to WordPress by default"
+#: ../../addon/randplace/randplace.php:170
+msgid "Randplace Settings"
+msgstr ""
+
+#: ../../addon/randplace/randplace.php:172
+msgid "Enable Randplace Plugin"
msgstr ""
#: ../../addon/piwik/piwik.php:70
@@ -3765,135 +4043,64 @@ msgstr ""
msgid "Show opt-out cookie link?"
msgstr ""
-#: ../../addon/twitter/twitter.php:78
-msgid "Post to Twitter"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:123
-msgid "Twitter settings updated."
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:145
-msgid "Twitter Posting Settings"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:152
-msgid ""
-"No consumer key pair for Twitter found. Please contact your site "
-"administrator."
-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 <strong>public</strong> posts will "
-"be posted to Twitter."
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:172
-msgid "Log in with Twitter"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:174
-msgid "Copy the PIN from Twitter here"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:189
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for "
-"every posting separately in the posting options when writing the entry."
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:191
-msgid "Allow posting to Twitter"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:194
-msgid "Send public postings to Twitter by default"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:301
-msgid "Consumer key"
-msgstr ""
-
-#: ../../addon/twitter/twitter.php:302
-msgid "Consumer secret"
-msgstr ""
-
-#: ../../include/profile_advanced.php:17 ../../boot.php:921
-msgid "Gender:"
-msgstr ""
-
-#: ../../include/profile_advanced.php:22
-msgid "j F, Y"
-msgstr ""
-
-#: ../../include/profile_advanced.php:23
-msgid "j F"
-msgstr ""
-
-#: ../../include/profile_advanced.php:30 ../../include/datetime.php:421
-#: ../../include/items.php:1215
-msgid "Birthday:"
+#: ../../addon/js_upload/js_upload.php:43
+msgid "Upload a file"
msgstr ""
-#: ../../include/profile_advanced.php:34
-msgid "Age:"
+#: ../../addon/js_upload/js_upload.php:44
+msgid "Drop files here to upload"
msgstr ""
-#: ../../include/profile_advanced.php:37 ../../boot.php:924
-msgid "Status:"
+#: ../../addon/js_upload/js_upload.php:46
+msgid "Failed"
msgstr ""
-#: ../../include/profile_advanced.php:45 ../../boot.php:926
-msgid "Homepage:"
+#: ../../addon/js_upload/js_upload.php:294
+msgid "No files were uploaded."
msgstr ""
-#: ../../include/profile_advanced.php:49
-msgid "Religion:"
+#: ../../addon/js_upload/js_upload.php:300
+msgid "Uploaded file is empty"
msgstr ""
-#: ../../include/profile_advanced.php:51
-msgid "About:"
+#: ../../addon/js_upload/js_upload.php:323
+msgid "File has an invalid extension, it should be one of "
msgstr ""
-#: ../../include/profile_advanced.php:53
-msgid "Hobbies/Interests:"
+#: ../../addon/js_upload/js_upload.php:334
+msgid "Upload was cancelled, or server error encountered"
msgstr ""
-#: ../../include/profile_advanced.php:55
-msgid "Contact information and Social Networks:"
+#: ../../addon/wppost/wppost.php:41
+msgid "Post to Wordpress"
msgstr ""
-#: ../../include/profile_advanced.php:57
-msgid "Musical interests:"
+#: ../../addon/wppost/wppost.php:73
+msgid "WordPress Post Settings"
msgstr ""
-#: ../../include/profile_advanced.php:59
-msgid "Books, literature:"
+#: ../../addon/wppost/wppost.php:75
+msgid "Enable WordPress Post Plugin"
msgstr ""
-#: ../../include/profile_advanced.php:61
-msgid "Television:"
+#: ../../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"
+#: ../../include/acl_selectors.php:279
+msgid "Visible to everybody"
msgstr ""
-#: ../../include/text.php:705
-msgid "Saturday"
+#: ../../include/acl_selectors.php:280
+msgid "show"
msgstr ""
-#: ../../include/text.php:705
-msgid "Sunday"
+#: ../../include/acl_selectors.php:281
+msgid "don't show"
msgstr ""
-#: ../../include/text.php:709
-msgid "January"
+#: ../../include/auth.php:27
+msgid "Logged out."
msgstr ""
-#: ../../include/text.php:709
-msgid "February"
+#: ../../include/bbcode.php:147
+msgid "Image/photo"
msgstr ""
-#: ../../include/text.php:709
-msgid "March"
+#: ../../include/poller.php:457
+msgid "From: "
msgstr ""
-#: ../../include/text.php:709
-msgid "April"
+#: ../../include/Contact.php:125 ../../include/conversation.php:675
+msgid "View status"
msgstr ""
-#: ../../include/text.php:709
-msgid "May"
+#: ../../include/Contact.php:126 ../../include/conversation.php:676
+msgid "View profile"
msgstr ""
-#: ../../include/text.php:709
-msgid "June"
+#: ../../include/Contact.php:127 ../../include/conversation.php:677
+msgid "View photos"
msgstr ""
-#: ../../include/text.php:709
-msgid "July"
+#: ../../include/Contact.php:128 ../../include/Contact.php:141
+#: ../../include/conversation.php:678
+msgid "View recent"
msgstr ""
-#: ../../include/text.php:709
-msgid "August"
+#: ../../include/Contact.php:130 ../../include/Contact.php:141
+#: ../../include/conversation.php:680
+msgid "Send PM"
msgstr ""
-#: ../../include/text.php:709
-msgid "September"
+#: ../../include/datetime.php:44 ../../include/datetime.php:46
+msgid "Miscellaneous"
msgstr ""
-#: ../../include/text.php:709
-msgid "October"
+#: ../../include/datetime.php:105 ../../include/datetime.php:237
+msgid "year"
msgstr ""
-#: ../../include/text.php:709
-msgid "November"
+#: ../../include/datetime.php:110 ../../include/datetime.php:238
+msgid "month"
msgstr ""
-#: ../../include/text.php:709
-msgid "December"
+#: ../../include/datetime.php:115 ../../include/datetime.php:240
+msgid "day"
msgstr ""
-#: ../../include/text.php:777
-msgid "bytes"
+#: ../../include/datetime.php:228
+msgid "never"
msgstr ""
-#: ../../include/text.php:866
-msgid "Select an alternate language"
+#: ../../include/datetime.php:234
+msgid "less than a second ago"
msgstr ""
-#: ../../include/text.php:878
-msgid "default"
+#: ../../include/datetime.php:237
+msgid "years"
msgstr ""
-#: ../../include/diaspora.php:479
-msgid "Sharing notification from Diaspora network"
+#: ../../include/datetime.php:238
+msgid "months"
msgstr ""
-#: ../../include/diaspora.php:1242
-msgid "link"
+#: ../../include/datetime.php:239
+msgid "week"
msgstr ""
-#: ../../include/diaspora.php:1423
-#, php-format
-msgid "[Relayed] Comment authored by %s from network %s"
+#: ../../include/datetime.php:239
+msgid "weeks"
msgstr ""
-#: ../../include/oembed.php:99
-msgid "Embedding disabled"
+#: ../../include/datetime.php:240
+msgid "days"
msgstr ""
-#: ../../include/group.php:25
-msgid ""
-"A deleted group with this name was revived. Existing item permissions "
-"<strong>may</strong> apply to this group and any future members. If this is "
-"not what you intended, please create another group with a different name."
+#: ../../include/datetime.php:241
+msgid "hour"
msgstr ""
-#: ../../include/group.php:165
-msgid "Create a new group"
+#: ../../include/datetime.php:241
+msgid "hours"
msgstr ""
-#: ../../include/group.php:166
-msgid "Everybody"
+#: ../../include/datetime.php:242
+msgid "minute"
msgstr ""
-#: ../../include/nav.php:44 ../../boot.php:676
-msgid "Logout"
+#: ../../include/datetime.php:242
+msgid "minutes"
msgstr ""
-#: ../../include/nav.php:44
-msgid "End this session"
+#: ../../include/datetime.php:243
+msgid "second"
msgstr ""
-#: ../../include/nav.php:47 ../../boot.php:1194
-msgid "Status"
+#: ../../include/datetime.php:243
+msgid "seconds"
msgstr ""
-#: ../../include/nav.php:47 ../../include/nav.php:111
-msgid "Your posts and conversations"
+#: ../../include/datetime.php:250
+msgid " ago"
msgstr ""
-#: ../../include/nav.php:48
-msgid "Your profile page"
+#: ../../include/datetime.php:421 ../../include/profile_advanced.php:30
+#: ../../include/items.php:1215
+msgid "Birthday:"
msgstr ""
-#: ../../include/nav.php:49 ../../boot.php:1204
-msgid "Photos"
+#: ../../include/profile_advanced.php:22
+msgid "j F, Y"
msgstr ""
-#: ../../include/nav.php:49
-msgid "Your photos"
+#: ../../include/profile_advanced.php:23
+msgid "j F"
msgstr ""
-#: ../../include/nav.php:50
-msgid "Your events"
+#: ../../include/profile_advanced.php:34
+msgid "Age:"
msgstr ""
-#: ../../include/nav.php:51
-msgid "Personal notes"
+#: ../../include/profile_advanced.php:49
+msgid "Religion:"
msgstr ""
-#: ../../include/nav.php:51
-msgid "Your personal photos"
+#: ../../include/profile_advanced.php:51
+msgid "About:"
msgstr ""
-#: ../../include/nav.php:62
-msgid "Sign in"
+#: ../../include/profile_advanced.php:53
+msgid "Hobbies/Interests:"
msgstr ""
-#: ../../include/nav.php:73
-msgid "Home Page"
+#: ../../include/profile_advanced.php:55
+msgid "Contact information and Social Networks:"
msgstr ""
-#: ../../include/nav.php:77
-msgid "Create an account"
+#: ../../include/profile_advanced.php:57
+msgid "Musical interests:"
msgstr ""
-#: ../../include/nav.php:82
-msgid "Help and documentation"
+#: ../../include/profile_advanced.php:59
+msgid "Books, literature:"
msgstr ""
-#: ../../include/nav.php:85
-msgid "Apps"
+#: ../../include/profile_advanced.php:61
+msgid "Television:"
msgstr ""
-#: ../../include/nav.php:85
-msgid "Addon applications, utilities, games"
+#: ../../include/profile_advanced.php:63
+msgid "Film/dance/culture/entertainment:"
msgstr ""
-#: ../../include/nav.php:87
-msgid "Search site content"
+#: ../../include/profile_advanced.php:65
+msgid "Love/Romance:"
msgstr ""
-#: ../../include/nav.php:97
-msgid "Conversations on this site"
+#: ../../include/profile_advanced.php:67
+msgid "Work/employment:"
msgstr ""
-#: ../../include/nav.php:99
-msgid "Directory"
+#: ../../include/profile_advanced.php:69
+msgid "School/education:"
msgstr ""
-#: ../../include/nav.php:99
-msgid "People directory"
+#: ../../include/text.php:232
+msgid "prev"
msgstr ""
-#: ../../include/nav.php:109
-msgid "Conversations from your friends"
+#: ../../include/text.php:234
+msgid "first"
msgstr ""
-#: ../../include/nav.php:117
-msgid "Friend Requests"
+#: ../../include/text.php:263
+msgid "last"
msgstr ""
-#: ../../include/nav.php:122
-msgid "Private mail"
+#: ../../include/text.php:266
+msgid "next"
msgstr ""
-#: ../../include/nav.php:125
-msgid "Manage"
+#: ../../include/text.php:546
+msgid "No contacts"
msgstr ""
-#: ../../include/nav.php:125
-msgid "Manage other pages"
-msgstr ""
+#: ../../include/text.php:555
+#, php-format
+msgid "%d Contact"
+msgid_plural "%d Contacts"
+msgstr[0] ""
+msgstr[1] ""
-#: ../../include/nav.php:129 ../../boot.php:879
-msgid "Manage/edit profiles"
+#: ../../include/text.php:626 ../../include/nav.php:87
+msgid "Search"
msgstr ""
-#: ../../include/nav.php:130
-msgid "Manage/edit friends and contacts"
+#: ../../include/text.php:709
+msgid "Monday"
msgstr ""
-#: ../../include/nav.php:137
-msgid "Admin"
+#: ../../include/text.php:709
+msgid "Tuesday"
msgstr ""
-#: ../../include/nav.php:137
-msgid "Site setup and configuration"
+#: ../../include/text.php:709
+msgid "Wednesday"
msgstr ""
-#: ../../include/nav.php:160
-msgid "Nothing new here"
+#: ../../include/text.php:709
+msgid "Thursday"
msgstr ""
-#: ../../include/contact_widgets.php:6
-msgid "Add New Contact"
+#: ../../include/text.php:709
+msgid "Friday"
msgstr ""
-#: ../../include/contact_widgets.php:7
-msgid "Enter address or web location"
+#: ../../include/text.php:709
+msgid "Saturday"
msgstr ""
-#: ../../include/contact_widgets.php:8
-msgid "Example: bob@example.com, http://example.com/barbara"
+#: ../../include/text.php:709
+msgid "Sunday"
msgstr ""
-#: ../../include/contact_widgets.php:9 ../../boot.php:869
-msgid "Connect"
+#: ../../include/text.php:713
+msgid "January"
msgstr ""
-#: ../../include/contact_widgets.php:18
-msgid "Invite Friends"
+#: ../../include/text.php:713
+msgid "February"
msgstr ""
-#: ../../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"
+#: ../../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 "<span %1$s>%2$d people</span> like this."
msgstr ""
-#: ../../include/conversation.php:717
+#: ../../include/conversation.php:736
#, php-format
msgid "<span %1$s>%2$d people</span> 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 <strong>everybody</strong>"
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 "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
+
+#: ../../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 ""
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,1792 +2,1319 @@
# Copyright (C) 2010, 2011 Mike Macgirvin
# This file is distributed under the same license as the Friendika package.
#
-# <fabrix.xm@gmail.com>, 2011.
+# Translators:
# fabrixxm <fabrix.xm@gmail.com>, 2011.
+# <fabrix.xm@gmail.com>, 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 <fabrix.xm@gmail.com>\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."
-
-#: ../../mod/crepair.php:74
-msgid "Repair Contact Settings"
-msgstr "Ripara le Impostazioni del Contatto"
-
-#: ../../mod/crepair.php:76
-msgid ""
-"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
-" information your communications with this contact will stop working."
-msgstr ""
-"<strong>ATTENZIONE: Per utenti esperti!</strong> Se inserisci informazioni "
-"non corrette le tue comunicazioni con questo contatto smetteranno di "
-"funzionare."
-
-#: ../../mod/crepair.php:77
-msgid ""
-"Please use your browser 'Back' button <strong>now</strong> if you are "
-"uncertain what to do on this page."
-msgstr ""
-"Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei "
-"sicuro di cosa fare in questa pagina."
-
-#: ../../mod/crepair.php:85 ../../mod/admin.php:464 ../../mod/admin.php:473
-msgid "Name"
-msgstr "Nome"
-
-#: ../../mod/crepair.php:86
-msgid "Account Nickname"
-msgstr "Nickname dell'utente"
-
-#: ../../mod/crepair.php:87
-msgid "Account URL"
-msgstr "URL dell'utente"
-
-#: ../../mod/crepair.php:88
-msgid "Friend Request URL"
-msgstr "URL Richiesta Amicizia"
+#: ../../boot.php:419
+msgid "Delete this item?"
+msgstr "Cancellare questo elemento?"
-#: ../../mod/crepair.php:89
-msgid "Friend Confirm URL"
-msgstr "URL Conferma Amicizia"
+#: ../../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:90
-msgid "Notification Endpoint URL"
-msgstr "URL Notifiche"
+#: ../../boot.php:662
+msgid "Create a New Account"
+msgstr "Crea un Nuovo Account"
-#: ../../mod/crepair.php:91
-msgid "Poll/Feed URL"
-msgstr "URL Feed"
+#: ../../boot.php:663 ../../mod/register.php:530 ../../include/nav.php:77
+msgid "Register"
+msgstr "Regitrati"
-#: ../../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:679 ../../include/nav.php:44
+msgid "Logout"
+msgstr "Esci"
-#: ../../mod/help.php:27
-msgid "Help:"
-msgstr "Guida:"
+#: ../../boot.php:680 ../../addon/communityhome/communityhome.php:28
+#: ../../addon/communityhome/communityhome.php:34 ../../include/nav.php:62
+msgid "Login"
+msgstr "Accedi"
-#: ../../mod/help.php:31 ../../include/nav.php:64
-msgid "Help"
-msgstr "Guida"
+#: ../../boot.php:682
+msgid "Nickname or Email address: "
+msgstr "Soprannome o indirizzo Email: "
-#: ../../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:683
+msgid "Password: "
+msgstr "Password: "
-#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98
-msgid "File upload failed."
-msgstr "Caricamento del file non riuscito."
+#: ../../boot.php:686
+msgid "OpenID: "
+msgstr "OpenID:"
-#: ../../mod/fsuggest.php:63
-msgid "Friend suggestion sent."
-msgstr "Suggerimento di amicizia inviato."
+#: ../../boot.php:692
+msgid "Forgot your password?"
+msgstr "Dimenticata la password?"
-#: ../../mod/fsuggest.php:97
-msgid "Suggest Friends"
-msgstr "Suggerisci Amici"
+#: ../../boot.php:693 ../../mod/lostpass.php:82
+msgid "Password Reset"
+msgstr "Resetta password"
-#: ../../mod/fsuggest.php:99
-#, php-format
-msgid "Suggest a friend for %s"
-msgstr "Suggerisci un amico a %s"
+#: ../../boot.php:815 ../../mod/profile.php:10 ../../mod/hcard.php:10
+msgid "No profile"
+msgstr "Nessun profilo"
-#: ../../mod/events.php:112 ../../mod/photos.php:834 ../../mod/notes.php:46
-#: ../../mod/profile.php:116
-msgid "Status"
-msgstr "Stato"
+#: ../../boot.php:839
+msgid "Edit profile"
+msgstr "Modifica il profilo"
-#: ../../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
-msgid "Profile"
-msgstr "Profilo"
+#: ../../boot.php:890 ../../include/contact_widgets.php:9
+msgid "Connect"
+msgstr "Connetti"
-#: ../../mod/events.php:114 ../../mod/photos.php:836 ../../mod/notes.php:48
-#: ../../mod/profile.php:118
-msgid "Photos"
-msgstr "Foto"
+#: ../../boot.php:900 ../../include/nav.php:129
+msgid "Profiles"
+msgstr "Profili"
-#: ../../mod/events.php:115 ../../mod/events.php:120 ../../mod/photos.php:837
-#: ../../mod/notes.php:49 ../../mod/profile.php:119
-msgid "Events"
-msgstr "Eventi"
+#: ../../boot.php:900 ../../include/nav.php:129
+msgid "Manage/edit profiles"
+msgstr "Gestisci/modifica i profili"
-#: ../../mod/events.php:116 ../../mod/photos.php:838 ../../mod/notes.php:50
-#: ../../mod/notes.php:55 ../../mod/profile.php:120
-msgid "Personal Notes"
-msgstr "Note personali"
+#: ../../boot.php:906 ../../mod/profiles.php:462
+msgid "Change profile photo"
+msgstr "Cambia la foto del profilo"
-#: ../../mod/events.php:210
-msgid "Create New Event"
-msgstr "Crea un nuovo Evento"
+#: ../../boot.php:907 ../../mod/profiles.php:463
+msgid "Create New Profile"
+msgstr "Crea un nuovo profilo"
-#: ../../mod/events.php:213
-msgid "Previous"
-msgstr "Precendente"
+#: ../../boot.php:917 ../../mod/profiles.php:473
+msgid "Profile Image"
+msgstr "Immagine del Profilo"
-#: ../../mod/events.php:216
-msgid "Next"
-msgstr "Successivo"
+#: ../../boot.php:920 ../../mod/profiles.php:475
+msgid "visible to everybody"
+msgstr "visibile a tutti"
-#: ../../mod/events.php:223
-msgid "l, F j"
-msgstr "l j F"
+#: ../../boot.php:921 ../../mod/profiles.php:476
+msgid "Edit visibility"
+msgstr "Modifica visibilità"
-#: ../../mod/events.php:235
-msgid "Edit event"
-msgstr "Modifca Evento"
+#: ../../boot.php:940 ../../mod/events.php:325 ../../include/event.php:37
+#: ../../include/bb2diaspora.php:249
+msgid "Location:"
+msgstr "Posizione:"
-#: ../../mod/events.php:237 ../../include/text.php:846
-msgid "link to source"
-msgstr "Collegamento all'originale"
+#: ../../boot.php:942 ../../include/profile_advanced.php:17
+msgid "Gender:"
+msgstr "Genere:"
-#: ../../mod/events.php:305
-msgid "hour:minute"
-msgstr "ora:minuti"
+#: ../../boot.php:945 ../../include/profile_advanced.php:37
+msgid "Status:"
+msgstr "Stato:"
-#: ../../mod/events.php:314
-msgid "Event details"
-msgstr "Dettagli dell'Evento"
+#: ../../boot.php:947 ../../include/profile_advanced.php:45
+msgid "Homepage:"
+msgstr "Homepage:"
-#: ../../mod/events.php:315
-#, 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."
+#: ../../boot.php:1006 ../../boot.php:1068
+msgid "g A l F d"
+msgstr "g A l d F"
-#: ../../mod/events.php:316
-msgid "Event Starts:"
-msgstr "L'Evento inizia:"
+#: ../../boot.php:1007 ../../boot.php:1069
+msgid "F d"
+msgstr "d F"
-#: ../../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"
+#: ../../boot.php:1030
+msgid "Birthday Reminders"
+msgstr "Promemoria Compleanni"
-#: ../../mod/events.php:321
-msgid "Event Finishes:"
-msgstr "L'Evento finisce:"
+#: ../../boot.php:1031
+msgid "Birthdays this week:"
+msgstr "Compleanni questa settimana:"
-#: ../../mod/events.php:324
-msgid "Adjust for viewer timezone"
-msgstr "Regola nel fuso orario di chi legge"
+#: ../../boot.php:1047 ../../boot.php:1111
+msgid "[today]"
+msgstr "[oggi]"
-#: ../../mod/events.php:326
-msgid "Description:"
-msgstr "Descrizione"
+#: ../../boot.php:1092
+msgid "Event Reminders"
+msgstr "Promemoria"
-#: ../../mod/events.php:328 ../../include/event.php:37 ../../boot.php:868
-msgid "Location:"
-msgstr "Posizione:"
+#: ../../boot.php:1093
+msgid "Events this week:"
+msgstr "Eventi di questa settimana:"
-#: ../../mod/events.php:330
-msgid "Share this event"
-msgstr "Condividi questo Evento"
+#: ../../boot.php:1105
+msgid "[No description]"
+msgstr "[Nessuna descrizione]"
-#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
-#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:45
-msgid "Cancel"
-msgstr "Annulla"
+#: ../../boot.php:1282 ../../include/nav.php:47
+msgid "Status"
+msgstr "Stato"
-#: ../../mod/tagrm.php:41
-msgid "Tag removed"
-msgstr "TAg rimosso"
+#: ../../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/tagrm.php:79
-msgid "Remove Item Tag"
-msgstr "Rimuovi tag dall'elemento"
+#: ../../boot.php:1292 ../../include/nav.php:49
+msgid "Photos"
+msgstr "Foto"
-#: ../../mod/tagrm.php:81
-msgid "Select a tag to remove: "
-msgstr "Seleziona un tag da rimuovere: "
+#: ../../boot.php:1300 ../../mod/events.php:117 ../../include/nav.php:50
+msgid "Events"
+msgstr "Eventi"
-#: ../../mod/tagrm.php:93
-msgid "Remove"
-msgstr "Rimuovi"
+#: ../../boot.php:1305 ../../mod/notes.php:44
+msgid "Personal Notes"
+msgstr "Note personali"
-#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
+#: ../../mod/manage.php:37
#, php-format
-msgid "%s welcomes %s"
-msgstr "%s da il benvenuto a %s"
-
-#: ../../mod/photos.php:37
-msgid "Photo Albums"
-msgstr "Album Foto"
-
-#: ../../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/photos.php:57 ../../mod/settings.php:9
-msgid "everybody"
-msgstr "tutti"
-
-#: ../../mod/photos.php:132
-msgid "Contact information unavailable"
-msgstr "Informazione sul contatto non disponibile"
-
-#: ../../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
-msgid "Profile Photos"
-msgstr "Foto del profilo"
-
-#: ../../mod/photos.php:153
-msgid "Album not found."
-msgstr "Album non trovato."
+msgid "Welcome back %s"
+msgstr "Bentornato %s"
-#: ../../mod/photos.php:171 ../../mod/photos.php:935
-msgid "Delete Album"
-msgstr "Elimina album"
+#: ../../mod/manage.php:87
+msgid "Manage Identities and/or Pages"
+msgstr "Gestisci Indentità e/o Pagine"
-#: ../../mod/photos.php:234 ../../mod/photos.php:1145
-msgid "Delete Photo"
-msgstr "Elimina foto"
+#: ../../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/photos.php:508
-msgid "was tagged in a"
-msgstr "è stato taggato in"
+#: ../../mod/manage.php:92
+msgid "Select an identity to manage: "
+msgstr "Seleziona una identità da gestire:"
-#: ../../mod/photos.php:508 ../../mod/like.php:110
-#: ../../include/diaspora.php:446 ../../include/conversation.php:31
-msgid "photo"
-msgstr "foto"
+#: ../../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/photos.php:508
-msgid "by"
-msgstr "da"
+#: ../../mod/dirfind.php:23
+msgid "People Search"
+msgstr "Cerca persone"
-#: ../../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/dirfind.php:57 ../../mod/match.php:57
+msgid "No matches"
+msgstr "Nessun risultato"
-#: ../../mod/photos.php:616
-msgid "Image file is empty."
-msgstr "Il file dell'immagine è vuoto."
+#: ../../mod/wall_upload.php:56 ../../mod/profile_photo.php:113
+#, php-format
+msgid "Image exceeds size limit of %d"
+msgstr "La dimensionde dell'immagine supera il limite di %d"
-#: ../../mod/photos.php:630 ../../mod/profile_photo.php:118
-#: ../../mod/wall_upload.php:65
+#: ../../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/photos.php:650 ../../mod/profile_photo.php:241
-#: ../../mod/wall_upload.php:84
+#: ../../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/wall_upload.php:84 ../../mod/profile_photo.php:251
+#: ../../mod/photos.php:667
msgid "Image upload failed."
msgstr "Caricamento immagine fallito."
-#: ../../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/photos.php:743
-msgid "No photos selected"
-msgstr "Nessuna foto selezionata"
-
-#: ../../mod/photos.php:820
-msgid "Access to this item is restricted."
-msgstr "L'accesso a questo elemento è limitato."
-
-#: ../../mod/photos.php:884
-msgid "Upload Photos"
-msgstr "Carica foto"
-
-#: ../../mod/photos.php:887 ../../mod/photos.php:930
-msgid "New album name: "
-msgstr "Nome nuovo album: "
-
-#: ../../mod/photos.php:888
-msgid "or existing album name: "
-msgstr "o nome di un album esistente: "
-
-#: ../../mod/photos.php:890 ../../mod/photos.php:1140
-msgid "Permissions"
-msgstr "Permessi"
-
-#: ../../mod/photos.php:945
-msgid "Edit Album"
-msgstr "Modifica album"
-
-#: ../../mod/photos.php:955 ../../mod/photos.php:1362
-msgid "View Photo"
-msgstr "Vedi foto"
-
-#: ../../mod/photos.php:984
-msgid "Photo not available"
-msgstr "Foto non disponibile"
-
-#: ../../mod/photos.php:1033
-msgid "Edit photo"
-msgstr "Modifica foto"
-
-#: ../../mod/photos.php:1034
-msgid "Use as profile photo"
-msgstr "Usa come foto del profilo"
-
-#: ../../mod/photos.php:1040 ../../include/conversation.php:342
-msgid "Private Message"
-msgstr "Messaggio privato"
-
-#: ../../mod/photos.php:1051
-msgid "View Full Size"
-msgstr "Vedi dimensione intera"
-
-#: ../../mod/photos.php:1119
-msgid "Tags: "
-msgstr "Tag: "
-
-#: ../../mod/photos.php:1122
-msgid "[Remove any tag]"
-msgstr "[Rimuovi tutti i tag]"
-
-#: ../../mod/photos.php:1133
-msgid "New album name"
-msgstr "Nuovo nome album"
+#: ../../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/photos.php:1136
-msgid "Caption"
-msgstr "Didascalia"
+#: ../../mod/profile.php:127
+msgid "Tips for New Members"
+msgstr "Consigli per i Nuovi Utenti"
-#: ../../mod/photos.php:1138
-msgid "Add a Tag"
-msgstr "Aggiungi un tag"
+#: ../../mod/follow.php:20 ../../mod/dfrn_request.php:340
+msgid "Disallowed profile URL."
+msgstr "Indirizzo profilo non permesso."
-#: ../../mod/photos.php:1142
+#: ../../mod/follow.php:39
msgid ""
-"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
+"This site is not configured to allow communications with other networks."
msgstr ""
-"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-
-#: ../../mod/photos.php:1162 ../../include/conversation.php:390
-msgid "I like this (toggle)"
-msgstr "Mi piace questo (metti/togli)"
-
-#: ../../mod/photos.php:1163 ../../include/conversation.php:391
-msgid "I don't like this (toggle)"
-msgstr "Non mi piace questo (metti/togli)"
-
-#: ../../mod/photos.php:1164 ../../include/conversation.php:392
-#: ../../include/conversation.php:746
-msgid "Share"
-msgstr "Condividi"
-
-#: ../../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/photos.php:1181 ../../mod/photos.php:1220
-#: ../../mod/photos.php:1251 ../../include/conversation.php:406
-msgid "This is you"
-msgstr "Questo sei tu"
-
-#: ../../mod/photos.php:1183 ../../mod/photos.php:1222
-#: ../../mod/photos.php:1253 ../../include/conversation.php:408
-#: ../../boot.php:411
-msgid "Comment"
-msgstr "Commento"
-
-#: ../../mod/photos.php:1281 ../../mod/group.php:154 ../../mod/admin.php:468
-#: ../../include/conversation.php:427
-msgid "Delete"
-msgstr "Cancella"
-
-#: ../../mod/photos.php:1349
-msgid "Recent Photos"
-msgstr "Foto recenti"
-
-#: ../../mod/photos.php:1353
-msgid "Upload New Photos"
-msgstr "Carica nuova foto"
+"Questo sito non è configurato per permettere la comunicazione con altri "
+"network."
-#: ../../mod/photos.php:1366
-msgid "View Album"
-msgstr "Vedi album"
+#: ../../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/community.php:14
-msgid "Not available."
-msgstr "Non disponibile."
+#: ../../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/community.php:26 ../../include/nav.php:79
-msgid "Community"
-msgstr "Comunità"
+#: ../../mod/follow.php:52
+msgid "An author or name was not found."
+msgstr "Non è stato trovato un nome dell'autore"
-#: ../../mod/community.php:56 ../../mod/search.php:65
-msgid "No results."
-msgstr "Nessun risultato."
+#: ../../mod/follow.php:54
+msgid "No browser URL could be matched to this address."
+msgstr "Nessun URL puo' essere associato a questo indirizzo."
-#: ../../mod/community.php:83 ../../mod/network.php:302
-#: ../../mod/register.php:504 ../../mod/profile.php:241
-#: ../../mod/display.php:117
+#: ../../mod/follow.php:61
msgid ""
-"Shared content is covered by the <a "
-"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
-"Attribution 3.0</a> license."
+"The profile address specified belongs to a network which has been disabled "
+"on this site."
msgstr ""
-"Il contenuto in comune è coperto dalla licenza <a "
-"href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons"
-" Attribuzione 3.0</a>."
-
-#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
-msgid "Item not found"
-msgstr "Elemento non trovato"
-
-#: ../../mod/editpost.php:32
-msgid "Edit post"
-msgstr "Modifica messaggio"
+"L'indirizzo del profilo specificato appartiene a un network che è stato "
+"disabilitato su questo sito."
-#: ../../mod/editpost.php:75 ../../include/conversation.php:732
-msgid "Post to Email"
-msgstr "Invia a Email"
+#: ../../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/editpost.php:90 ../../include/group.php:171
-#: ../../include/group.php:172 ../../include/conversation.php:417
-msgid "Edit"
-msgstr "Modifica"
+#: ../../mod/follow.php:133
+msgid "Unable to retrieve contact information."
+msgstr "Impossibile recuperare informazioni sul contatto."
-#: ../../mod/editpost.php:91 ../../mod/message.php:188
-#: ../../mod/message.php:322 ../../include/conversation.php:747
-msgid "Upload photo"
-msgstr "Carica foto"
+#: ../../mod/follow.php:179
+msgid "following"
+msgstr "segue"
-#: ../../mod/editpost.php:92 ../../include/conversation.php:748
-msgid "Attach file"
-msgstr "Allega file"
+#: ../../mod/profile_photo.php:28
+msgid "Image uploaded but image cropping failed."
+msgstr "L'immagine è stata caricata, ma il ritaglio è fallito."
-#: ../../mod/editpost.php:93 ../../mod/message.php:189
-#: ../../mod/message.php:323 ../../include/conversation.php:749
-msgid "Insert web link"
-msgstr "Inserisci link"
+#: ../../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 "Foto del profilo"
-#: ../../mod/editpost.php:94 ../../include/conversation.php:750
-msgid "Insert YouTube video"
-msgstr "Inserisci video da YouTube"
+#: ../../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/editpost.php:95 ../../include/conversation.php:751
-msgid "Insert Vorbis [.ogg] video"
-msgstr "Inserisci video Theora [.ogg]"
+#: ../../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/editpost.php:96 ../../include/conversation.php:752
-msgid "Insert Vorbis [.ogg] audio"
-msgstr "Inserisci audio Vorbis [.ogg]"
+#: ../../mod/profile_photo.php:99
+msgid "Unable to process image"
+msgstr "Impossibile elaborare l'immagine"
-#: ../../mod/editpost.php:97 ../../include/conversation.php:753
-msgid "Set your location"
-msgstr "Imposta la tua posizione"
+#: ../../mod/profile_photo.php:203
+msgid "Upload File:"
+msgstr "Carica un file:"
-#: ../../mod/editpost.php:98 ../../include/conversation.php:754
-msgid "Clear browser location"
-msgstr "Cancella la tua posizione data dal browser"
+#: ../../mod/profile_photo.php:204
+msgid "Upload Profile Photo"
+msgstr "Carica la Foto del Profilo"
-#: ../../mod/editpost.php:100 ../../include/conversation.php:757
-msgid "Permission settings"
-msgstr "Impostazione permessi"
+#: ../../mod/profile_photo.php:205
+msgid "Upload"
+msgstr "Carica"
-#: ../../mod/editpost.php:108 ../../include/conversation.php:765
-msgid "CC: email addresses"
-msgstr "CC: indirizzi email"
+#: ../../mod/profile_photo.php:206 ../../mod/settings.php:686
+msgid "or"
+msgstr "o"
-#: ../../mod/editpost.php:109 ../../include/conversation.php:766
-msgid "Public post"
-msgstr "Messaggio pubblico"
+#: ../../mod/profile_photo.php:206
+msgid "skip this step"
+msgstr "salta questo passaggio"
-#: ../../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/profile_photo.php:206
+msgid "select a photo from your photo albums"
+msgstr "seleziona una foto dai tuoi album"
-#: ../../mod/dfrn_request.php:96
-msgid "This introduction has already been accepted."
-msgstr "Questa presentazione è già stata accettata."
+#: ../../mod/profile_photo.php:219
+msgid "Crop Image"
+msgstr "Ritaglia immagine"
-#: ../../mod/dfrn_request.php:120 ../../mod/dfrn_request.php:351
-msgid "Profile location is not valid or does not contain profile information."
-msgstr ""
-"La posizione del profilo non è valida o non contiene informazioni di "
-"profilo."
+#: ../../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/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/profile_photo.php:221
+msgid "Done Editing"
+msgstr "Fatto"
-#: ../../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/profile_photo.php:249
+msgid "Image uploaded successfully."
+msgstr "Immagine caricata con successo."
-#: ../../mod/dfrn_request.php:130 ../../mod/dfrn_request.php:361
+#: ../../mod/home.php:23 ../../addon/communityhome/communityhome.php:179
#, 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/dfrn_request.php:168
-msgid "Introduction complete."
-msgstr "Presentazione completa."
-
-#: ../../mod/dfrn_request.php:192
-msgid "Unrecoverable protocol error."
-msgstr "Errore di protocollo non recuperabile."
+msgid "Welcome to %s"
+msgstr "Benvenuto su %s"
-#: ../../mod/dfrn_request.php:220
-msgid "Profile unavailable."
-msgstr "Profilo non disponibile."
+#: ../../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/dfrn_request.php:245
+#: ../../mod/wall_attach.php:57
#, php-format
-msgid "%s has received too many connection requests today."
-msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
-
-#: ../../mod/dfrn_request.php:246
-msgid "Spam protection measures have been invoked."
-msgstr "Sono state attivate le misure di protezione contro lo spam."
+msgid "File exceeds size limit of %d"
+msgstr "Il file supera il limite di dimensione di %d"
-#: ../../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/wall_attach.php:87 ../../mod/wall_attach.php:98
+msgid "File upload failed."
+msgstr "Caricamento del file non riuscito."
-#: ../../mod/dfrn_request.php:277
-msgid "Invalid locator"
-msgstr "Invalid locator"
+#: ../../mod/suggest.php:36 ../../include/contact_widgets.php:35
+msgid "Friend Suggestions"
+msgstr "Contatti suggeriti"
-#: ../../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/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/dfrn_request.php:309
-msgid "You have already introduced yourself here."
-msgstr "Ti sei già presentato qui."
+#: ../../mod/suggest.php:55
+msgid "Ignore/Hide"
+msgstr "Ignora / Nascondi"
-#: ../../mod/dfrn_request.php:313
+#: ../../mod/regmod.php:52 ../../mod/register.php:369
#, php-format
-msgid "Apparently you are already friends with %s."
-msgstr "Sembra che tu sia già amico di %s."
-
-#: ../../mod/dfrn_request.php:334
-msgid "Invalid profile URL."
-msgstr "Indirizzo profilo invalido."
-
-#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:20
-msgid "Disallowed profile URL."
-msgstr "Indirizzo profilo non permesso."
-
-#: ../../mod/dfrn_request.php:406 ../../mod/contacts.php:116
-msgid "Failed to update contact record."
-msgstr "Errore aggiornando il contatto."
-
-#: ../../mod/dfrn_request.php:427
-msgid "Your introduction has been sent."
-msgstr "La tua presentazione è stata inviata."
+msgid "Registration details for %s"
+msgstr "Dettagli registrazione per %s"
-#: ../../mod/dfrn_request.php:481
-msgid "Please login to confirm introduction."
-msgstr "Accedi per confermare la presentazione."
+#: ../../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/dfrn_request.php:495
-msgid ""
-"Incorrect identity currently logged in. Please login to "
-"<strong>this</strong> profile."
-msgstr ""
-"Accesso con identà incorretta. Accedi a <strong>questo</strong> profilo."
+#: ../../mod/regmod.php:61
+msgid "Account approved."
+msgstr "Account approvato."
-#: ../../mod/dfrn_request.php:507
+#: ../../mod/regmod.php:93
#, php-format
-msgid "Welcome home %s."
-msgstr "Bentornato a casa %s."
+msgid "Registration revoked for %s"
+msgstr "Registrazione revocata per %s"
-#: ../../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/regmod.php:105
+msgid "Please login."
+msgstr "Accedi."
-#: ../../mod/dfrn_request.php:509
-msgid "Confirm"
-msgstr "Conferma"
+#: ../../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/dfrn_request.php:542 ../../include/items.php:1519
-msgid "[Name Withheld]"
-msgstr "[Nome Nascosto]"
+#: ../../mod/profiles.php:28
+msgid "Profile Name is required."
+msgstr "Il Nome Profilo è richiesto ."
-#: ../../mod/dfrn_request.php:549
-msgid "Introduction received at "
-msgstr "Introduzione ricevuta su "
+#: ../../mod/profiles.php:198
+msgid "Profile updated."
+msgstr "Profilo aggiornato."
-#: ../../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/profiles.php:256
+msgid "Profile deleted."
+msgstr "Profilo elminato."
-#: ../../mod/dfrn_request.php:630
-msgid "Friend/Connection Request"
-msgstr "Richieste di Amicizia/Connessione"
+#: ../../mod/profiles.php:272 ../../mod/profiles.php:303
+msgid "Profile-"
+msgstr "Profilo-"
-#: ../../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/profiles.php:291 ../../mod/profiles.php:330
+msgid "New profile created."
+msgstr "Nuovo profilo creato."
-#: ../../mod/dfrn_request.php:632
-msgid "Please answer the following:"
-msgstr "Rispondi al seguente:"
+#: ../../mod/profiles.php:309
+msgid "Profile unavailable to clone."
+msgstr "Impossibile duplicare il plrofilo."
-#: ../../mod/dfrn_request.php:633
-#, php-format
-msgid "Does %s know you?"
-msgstr "%s ti conosce?"
+#: ../../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/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
+#: ../../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/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
+#: ../../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/dfrn_request.php:636
-msgid "Add a personal note:"
-msgstr "Aggiungi una nota personale:"
-
-#: ../../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/dfrn_request.php:638
-msgid "Friendika"
-msgstr "Friendika"
-
-#: ../../mod/dfrn_request.php:639
-msgid "StatusNet/Federated Social Web"
-msgstr "StatusNet/Federated Social Web"
-
-#: ../../mod/dfrn_request.php:640
-msgid "Private (secure) network"
-msgstr "Network (sicuro) privato"
-
-#: ../../mod/dfrn_request.php:641
-msgid "Public (insecure) network"
-msgstr "Network (insicuro) pubblico"
-
-#: ../../mod/dfrn_request.php:642
-msgid "Your Identity Address:"
-msgstr "Il tuo Indirizzo Identità:"
-
-#: ../../mod/dfrn_request.php:643
-msgid "Submit Request"
-msgstr "Invia richiesta"
-
-#: ../../mod/install.php:34
-msgid "Could not create/connect to database."
-msgstr "Impossibile creare/collegarsi al database."
+#: ../../mod/profiles.php:374
+msgid "Edit Profile Details"
+msgstr "Modifica i Dettagli del Profilo"
-#: ../../mod/install.php:39
-msgid "Connected to database."
-msgstr "Collegato al database."
+#: ../../mod/profiles.php:376
+msgid "View this profile"
+msgstr "Visualizza questo profilo"
-#: ../../mod/install.php:75
-msgid "Proceed with Installation"
-msgstr "Continua con l'installazione"
+#: ../../mod/profiles.php:377
+msgid "Create a new profile using these settings"
+msgstr "Crea un nuovo profilo usando queste impostazioni"
-#: ../../mod/install.php:77
-msgid "Your Friendika site database has been installed."
-msgstr "Il database del tuo sito Friendika è stato installato."
+#: ../../mod/profiles.php:378
+msgid "Clone this profile"
+msgstr "Clona questo profilo"
-#: ../../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/profiles.php:379
+msgid "Delete this profile"
+msgstr "Cancella questo profilo"
-#: ../../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/profiles.php:380
+msgid "Profile Name:"
+msgstr "Nome del profilo:"
-#: ../../mod/install.php:81
-msgid "Proceed to registration"
-msgstr "Continua con la registrazione"
+#: ../../mod/profiles.php:381
+msgid "Your Full Name:"
+msgstr "Il tuo nome completo:"
-#: ../../mod/install.php:87
-msgid "Database import failed."
-msgstr "Importazione database fallita."
+#: ../../mod/profiles.php:382
+msgid "Title/Description:"
+msgstr "Breve descrizione (es. titolo, posizione, altro):"
-#: ../../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/profiles.php:383
+msgid "Your Gender:"
+msgstr "Il tuo sesso:"
-#: ../../mod/install.php:101
-msgid "Welcome to Friendika."
-msgstr "Benvenuto su Friendika."
+#: ../../mod/profiles.php:384
+#, php-format
+msgid "Birthday (%s):"
+msgstr "Compleanno (%s)"
-#: ../../mod/install.php:124
-msgid "Friendika Social Network"
-msgstr "Friendika Social Network"
+#: ../../mod/profiles.php:385
+msgid "Street Address:"
+msgstr "Indirizzo:"
-#: ../../mod/install.php:125
-msgid "Installation"
-msgstr "Installazione"
+#: ../../mod/profiles.php:386
+msgid "Locality/City:"
+msgstr "Località/Città:"
-#: ../../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/profiles.php:387
+msgid "Postal/Zip Code:"
+msgstr "CAP:"
-#: ../../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/profiles.php:388
+msgid "Country:"
+msgstr "Nazione:"
-#: ../../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/profiles.php:389
+msgid "Region/State:"
+msgstr "Regione/Stato:"
-#: ../../mod/install.php:129
-msgid "Database Server Name"
-msgstr "Nome Database Server"
+#: ../../mod/profiles.php:390
+msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
+msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
-#: ../../mod/install.php:130
-msgid "Database Login Name"
-msgstr "Nome utente Database"
+#: ../../mod/profiles.php:391
+msgid "Who: (if applicable)"
+msgstr "Con chi: (se possibile)"
-#: ../../mod/install.php:131
-msgid "Database Login Password"
-msgstr "Password utente Database"
+#: ../../mod/profiles.php:392
+msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
+msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
-#: ../../mod/install.php:132
-msgid "Database Name"
-msgstr "Nome Database"
+#: ../../mod/profiles.php:393 ../../include/profile_advanced.php:43
+msgid "Sexual Preference:"
+msgstr "Preferenza sessuale:"
-#: ../../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/profiles.php:394
+msgid "Homepage URL:"
+msgstr "Indirizzo homepage:"
-#: ../../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/profiles.php:395 ../../include/profile_advanced.php:47
+msgid "Political Views:"
+msgstr "Orientamento politico:"
-#: ../../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/profiles.php:396
+msgid "Religious Views:"
+msgstr "Orientamento religioso:"
-#: ../../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/profiles.php:397
+msgid "Public Keywords:"
+msgstr "Parole chiave pubbliche:"
-#: ../../mod/install.php:161
-msgid ""
-"The command line version of PHP on your system does not have "
-"\"register_argc_argv\" enabled."
-msgstr ""
-"La versione da riga di comando di PHP nel sistema non ha abilitato "
-"\"register_argc_argv\"."
+#: ../../mod/profiles.php:398
+msgid "Private Keywords:"
+msgstr "Parole chiave private:"
-#: ../../mod/install.php:162
-msgid "This is required for message delivery to work."
-msgstr "Ciò è richiesto per far funzionare la consegna dei messaggi."
+#: ../../mod/profiles.php:399
+msgid "Example: fishing photography software"
+msgstr "Esempio: pesca fotografia programmazione"
-#: ../../mod/install.php:184
-msgid ""
-"Error: the \"openssl_pkey_new\" function on this system is not able to "
-"generate encryption keys"
+#: ../../mod/profiles.php:400
+msgid "(Used for suggesting potential friends, can be seen by others)"
msgstr ""
-"Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di"
-" generare le chiavi di criptazione"
+"(Utilizzato per suggerire potenziali amici, può essere visto da altri)"
-#: ../../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/profiles.php:401
+msgid "(Used for searching profiles, never shown to others)"
+msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)"
-#: ../../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/profiles.php:402
+msgid "Tell us about yourself..."
+msgstr "Racconta di te..."
-#: ../../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/profiles.php:403
+msgid "Hobbies/Interests"
+msgstr "Hobbie/Interessi"
-#: ../../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/profiles.php:404
+msgid "Contact information and Social Networks"
+msgstr "Informazioni su contatti e Social network"
-#: ../../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/profiles.php:405
+msgid "Musical interests"
+msgstr "Interessi musicali"
-#: ../../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/profiles.php:406
+msgid "Books, literature"
+msgstr "Libri, letteratura"
-#: ../../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/profiles.php:407
+msgid "Television"
+msgstr "Televisione"
-#: ../../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/profiles.php:408
+msgid "Film/dance/culture/entertainment"
+msgstr "Film/danza/cultura/intrattenimento"
-#: ../../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/profiles.php:409
+msgid "Love/romance"
+msgstr "Amore/romanticismo"
-#: ../../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/profiles.php:410
+msgid "Work/employment"
+msgstr "Lavoro/impiego"
-#: ../../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/profiles.php:411
+msgid "School/education"
+msgstr "Scuola/educazione"
-#: ../../mod/install.php:228
+#: ../../mod/profiles.php:416
msgid ""
-"The database configuration file \".htconfig.php\" could not be written. "
-"Please use the enclosed text to create a configuration file in your web "
-"server root."
-msgstr ""
-"Il file di configurazione del database \".htconfig.php\" non puo' essere "
-"scritto. Usa il testo qui di seguito per creare un file di configurazione "
-"nella cartella principale del tuo sito."
-
-#: ../../mod/install.php:243
-msgid "Errors encountered creating database tables."
-msgstr "Errori creando le tabelle nel database."
-
-#: ../../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/match.php:10
-msgid "Profile Match"
-msgstr "Profili combacianti"
-
-#: ../../mod/match.php:18
-msgid "No keywords to match. Please add keywords to your default profile."
+"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
+"be visible to anybody using the internet."
msgstr ""
-"Nessuna parola chiave per l'abbinamento. Aggiungi parole chiave al tuo "
-"profilo predefinito."
-
-#: ../../mod/match.php:54
-msgid "No matches"
-msgstr "Nessun risultato"
-
-#: ../../mod/lockview.php:39
-msgid "Remote privacy information not available."
-msgstr "Informazioni remote sulla privacy non disponibili."
-
-#: ../../mod/lockview.php:43
-msgid "Visible to:"
-msgstr "Visibile a:"
-
-#: ../../mod/home.php:23
-#, php-format
-msgid "Welcome to %s"
-msgstr "Benvenuto su %s"
-
-#: ../../mod/notifications.php:26
-msgid "Invalid request identifier."
-msgstr "Identificativo richiesta invalido."
-
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:118
-#: ../../mod/notifications.php:162
-msgid "Discard"
-msgstr "Scarta"
-
-#: ../../mod/notifications.php:47 ../../mod/notifications.php:117
-#: ../../mod/notifications.php:161
-msgid "Ignore"
-msgstr "Ignora"
-
-#: ../../mod/notifications.php:74
-msgid "Pending Friend/Connect Notifications"
-msgstr "Richieste di amicizia/connessione in attesa"
-
-#: ../../mod/notifications.php:78
-msgid "Show Ignored Requests"
-msgstr "Mostra richieste ignorate"
-
-#: ../../mod/notifications.php:78
-msgid "Hide Ignored Requests"
-msgstr "Nascondi richieste ignorate"
-
-#: ../../mod/notifications.php:105 ../../mod/notifications.php:148
-msgid "Notification type: "
-msgstr "Tipo di notifica: "
-
-#: ../../mod/notifications.php:106
-msgid "Friend Suggestion"
-msgstr "Amico suggerito"
-
-#: ../../mod/notifications.php:108
-#, php-format
-msgid "suggested by %s"
-msgstr "sugerito da %s"
-
-#: ../../mod/notifications.php:114 ../../mod/notifications.php:159
-#: ../../mod/admin.php:466
-msgid "Approve"
-msgstr "Approva"
-
-#: ../../mod/notifications.php:133
-msgid "Claims to be known to you: "
-msgstr "Dice di conoscerti: "
-
-#: ../../mod/notifications.php:133
-msgid "yes"
-msgstr "si"
-
-#: ../../mod/notifications.php:133
-msgid "no"
-msgstr "no"
-
-#: ../../mod/notifications.php:139
-msgid "Approve as: "
-msgstr "Approva come: "
-
-#: ../../mod/notifications.php:140
-msgid "Friend"
-msgstr "Amico"
-
-#: ../../mod/notifications.php:141
-msgid "Fan/Admirer"
-msgstr "Fan/Ammiratore"
-
-#: ../../mod/notifications.php:149
-msgid "Friend/Connect Request"
-msgstr "Richiesta Amicizia/Connessione"
-
-#: ../../mod/notifications.php:149
-msgid "New Follower"
-msgstr "Nuovo Seguace"
-
-#: ../../mod/notifications.php:168
-msgid "No notifications."
-msgstr "Nessuna notifica."
-
-#: ../../mod/contacts.php:26
-msgid "Invite Friends"
-msgstr "Invita Amici"
-
-#: ../../mod/contacts.php:32
-#, php-format
-msgid "%d invitation available"
-msgid_plural "%d invitations available"
-msgstr[0] "%d invito disponibile"
-msgstr[1] "%d inviti disponibili"
-
-#: ../../mod/contacts.php:41
-msgid "Find People With Shared Interests"
-msgstr "Trova persone che condividono i tuoi interessi"
-
-#: ../../mod/contacts.php:45
-msgid "Connect/Follow"
-msgstr "Connetti/Segui"
-
-#: ../../mod/contacts.php:46
-msgid "Example: bob@example.com, http://example.com/barbara"
-msgstr "Esempio: bob@example.com, http://example.com/barbara"
-
-#: ../../mod/contacts.php:47
-msgid "Follow"
-msgstr "Segui"
-
-#: ../../mod/contacts.php:69 ../../mod/contacts.php:150
-msgid "Could not access contact record."
-msgstr "Non si puo' accedere al contatto."
-
-#: ../../mod/contacts.php:83
-msgid "Could not locate selected profile."
-msgstr "Non riesco a trovare il profilo selezionato."
-
-#: ../../mod/contacts.php:114
-msgid "Contact updated."
-msgstr "Contatto aggiornato."
-
-#: ../../mod/contacts.php:172
-msgid "Contact has been blocked"
-msgstr "Il contatto è stato bloccato"
-
-#: ../../mod/contacts.php:172
-msgid "Contact has been unblocked"
-msgstr "Il contatto è stato sbloccato"
-
-#: ../../mod/contacts.php:186
-msgid "Contact has been ignored"
-msgstr "Il contatto è ignorato"
-
-#: ../../mod/contacts.php:186
-msgid "Contact has been unignored"
-msgstr "Il conttatto è non ignorato"
-
-#: ../../mod/contacts.php:207
-msgid "stopped following"
-msgstr "tolto dai seguiti"
-
-#: ../../mod/contacts.php:226
-msgid "Contact has been removed."
-msgstr "Il contatto è stato rimosso."
-
-#: ../../mod/contacts.php:254 ../../mod/contacts.php:397
-msgid "Mutual Friendship"
-msgstr "Reciproca amicizia"
+"Questo è il tuo profilo <strong>publico</strong>.<br "
+"/><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
-#: ../../mod/contacts.php:258 ../../mod/contacts.php:401
-msgid "is a fan of yours"
-msgstr "è un tuo fan"
+#: ../../mod/profiles.php:426 ../../mod/directory.php:122
+msgid "Age: "
+msgstr "Età : "
-#: ../../mod/contacts.php:263 ../../mod/contacts.php:405
-msgid "you are a fan of"
-msgstr "sei un fan di"
+#: ../../mod/profiles.php:461
+msgid "Edit/Manage Profiles"
+msgstr "Modifica / Gestisci profili"
-#: ../../mod/contacts.php:280
-msgid "Privacy Unavailable"
-msgstr "Privacy non disponibile"
+#: ../../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/contacts.php:281
-msgid "Private communications are not available for this contact."
-msgstr "Le comunicazioni private non sono disponibili per questo contatto."
+#: ../../mod/settings.php:9 ../../mod/photos.php:62
+msgid "everybody"
+msgstr "tutti"
-#: ../../mod/contacts.php:284
-msgid "Never"
-msgstr "Mai"
+#: ../../mod/settings.php:67
+msgid "Missing some important data!"
+msgstr "Mancano alcuni dati importanti!"
-#: ../../mod/contacts.php:288
-msgid "(Update was successful)"
-msgstr "(L'aggiornamento è stato completato)"
+#: ../../mod/settings.php:70 ../../mod/settings.php:446 ../../mod/admin.php:62
+msgid "Update"
+msgstr "Aggiorna"
-#: ../../mod/contacts.php:288
-msgid "(Update was not successful)"
-msgstr "(L'aggiornamento non è stato completato)"
+#: ../../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/contacts.php:291
-msgid "Suggest friends"
-msgstr "Suggerisci amici"
+#: ../../mod/settings.php:170
+msgid "Email settings updated."
+msgstr "Impostazioni e-mail aggiornate."
-#: ../../mod/contacts.php:295
-msgid "Contact Editor"
-msgstr "Editor dei Contatti"
+#: ../../mod/settings.php:188
+msgid "Passwords do not match. Password unchanged."
+msgstr "Le password non corrispondono. Passoword non cambiata."
-#: ../../mod/contacts.php:297
-msgid "Profile Visibility"
-msgstr "Visibilità del profilo"
+#: ../../mod/settings.php:193
+msgid "Empty passwords are not allowed. Password unchanged."
+msgstr "Password vuote non sono consentite. Password non cambiata."
-#: ../../mod/contacts.php:298
-#, php-format
-msgid ""
-"Please choose the profile you would like to display to %s when viewing your "
-"profile securely."
-msgstr ""
-"Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in "
-"modo sicuro."
+#: ../../mod/settings.php:204
+msgid "Password changed."
+msgstr "Password cambiata."
-#: ../../mod/contacts.php:299
-msgid "Contact Information / Notes"
-msgstr "Informazioni / Note sul contatto"
+#: ../../mod/settings.php:206
+msgid "Password update failed. Please try again."
+msgstr "Aggiornamento password fallito. Prova ancora."
-#: ../../mod/contacts.php:300
-msgid "Online Reputation"
-msgstr "Reputazione Online"
+#: ../../mod/settings.php:253
+msgid " Please use a shorter name."
+msgstr " Usa un nome più corto."
-#: ../../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/settings.php:255
+msgid " Name too short."
+msgstr " Nome troppo corto."
-#: ../../mod/contacts.php:302
-msgid ""
-"You may help them choose whether or not to interact with this person by "
-"providing a <em>reputation</em> to guide them."
-msgstr ""
-"Puoi aiutarli a scegliere se interagire o no con questa persona fornendo una"
-" <em>reputazione</em> per guidarli."
+#: ../../mod/settings.php:261
+msgid " Not valid email."
+msgstr " Email non valida."
-#: ../../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/settings.php:263
+msgid " Cannot change to that email."
+msgstr "Non puoi usare quella email."
-#: ../../mod/contacts.php:304 ../../mod/contacts.php:421
-#: ../../mod/viewcontacts.php:61
-#, php-format
-msgid "Visit %s's profile [%s]"
-msgstr "Visita il profilo di %s [%s]"
+#: ../../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/contacts.php:305
-msgid "Block/Unblock contact"
-msgstr "Blocca/Sblocca contatto"
+#: ../../mod/settings.php:382 ../../include/nav.php:128
+msgid "Account settings"
+msgstr "Parametri account"
-#: ../../mod/contacts.php:306
-msgid "Ignore contact"
-msgstr "Ingnora il contatto"
+#: ../../mod/settings.php:387
+msgid "Connector settings"
+msgstr "Impostazioni connettori"
-#: ../../mod/contacts.php:307
-msgid "Repair contact URL settings"
-msgstr "Sistema impostazioni URL del contatto"
+#: ../../mod/settings.php:392
+msgid "Plugin settings"
+msgstr "Impostazioni plugin"
-#: ../../mod/contacts.php:308
-msgid "Repair contact URL settings (WARNING: Advanced)"
-msgstr "Sistema impostazioni URL del contatto (ATTENZIONE: Avanzato)"
+#: ../../mod/settings.php:397
+msgid "Connections"
+msgstr "Connessioni"
-#: ../../mod/contacts.php:309
-msgid "View conversations"
-msgstr "Vedi conversazioni"
+#: ../../mod/settings.php:402
+msgid "Export personal data"
+msgstr "Esporta dati personali"
-#: ../../mod/contacts.php:312
-msgid "Delete contact"
-msgstr "Rimuovi contatto"
+#: ../../mod/settings.php:419 ../../mod/settings.php:445
+#: ../../mod/settings.php:478
+msgid "Add application"
+msgstr "Aggiungi applicazione"
-#: ../../mod/contacts.php:314
-msgid "Last updated: "
-msgstr "Ultimo aggiornameto: "
+#: ../../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/contacts.php:315
-msgid "Update public posts: "
-msgstr "Aggiorna messaggi pubblici: "
+#: ../../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/contacts.php:317 ../../mod/admin.php:701
-msgid "Update now"
-msgstr "Aggiorna adesso"
+#: ../../mod/settings.php:423 ../../mod/settings.php:449
+#: ../../addon/statusnet/statusnet.php:480
+msgid "Consumer Key"
+msgstr "Consumer Key"
-#: ../../mod/contacts.php:320
-msgid "Unblock this contact"
-msgstr "Sblocca questo contatto"
+#: ../../mod/settings.php:424 ../../mod/settings.php:450
+#: ../../addon/statusnet/statusnet.php:479
+msgid "Consumer Secret"
+msgstr "Consumer Secret"
-#: ../../mod/contacts.php:320
-msgid "Block this contact"
-msgstr "Blocca questo contatto"
+#: ../../mod/settings.php:425 ../../mod/settings.php:451
+msgid "Redirect"
+msgstr "Redirect"
-#: ../../mod/contacts.php:321
-msgid "Unignore this contact"
-msgstr "Rimuovi dai contatti ingorati"
+#: ../../mod/settings.php:426 ../../mod/settings.php:452
+msgid "Icon url"
+msgstr "Url icona"
-#: ../../mod/contacts.php:321
-msgid "Ignore this contact"
-msgstr "Aggiungi ai contatti ignorati"
+#: ../../mod/settings.php:437
+msgid "You can't edit this application."
+msgstr "Non puoi modificare questa applicazione."
-#: ../../mod/contacts.php:324
-msgid "Currently blocked"
-msgstr "Bloccato"
+#: ../../mod/settings.php:477
+msgid "Connected Apps"
+msgstr "Applicazioni Collegate"
-#: ../../mod/contacts.php:325
-msgid "Currently ignored"
-msgstr "Ignorato"
-
-#: ../../mod/contacts.php:356 ../../include/nav.php:110
-msgid "Contacts"
-msgstr "Contatti"
-
-#: ../../mod/contacts.php:358
-msgid "Show Blocked Connections"
-msgstr "Mostra connessioni bloccate"
+#: ../../mod/settings.php:479 ../../mod/editpost.php:90
+#: ../../include/conversation.php:441 ../../include/group.php:190
+msgid "Edit"
+msgstr "Modifica"
-#: ../../mod/contacts.php:358
-msgid "Hide Blocked Connections"
-msgstr "Nascondi connessioni bloccate"
+#: ../../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/contacts.php:360 ../../mod/directory.php:55
-msgid "Finding: "
-msgstr "Cerco: "
+#: ../../mod/settings.php:481
+msgid "Client key starts with"
+msgstr "Chiave del client inizia con"
-#: ../../mod/contacts.php:361 ../../mod/directory.php:57
-msgid "Find"
-msgstr "Trova"
+#: ../../mod/settings.php:482
+msgid "No name"
+msgstr "Nessun nome"
-#: ../../mod/contacts.php:422 ../../include/conversation.php:612
-msgid "Edit contact"
-msgstr "Modifca contatto"
+#: ../../mod/settings.php:483
+msgid "Remove authorization"
+msgstr "Rimuovi l'autorizzazione"
-#: ../../mod/lostpass.php:16
-msgid "No valid account found."
-msgstr "Nessun account valido trovato."
+#: ../../mod/settings.php:495
+msgid "No Plugin settings configured"
+msgstr "Nessun Plugin ha delle configurazioni che puoi modificare"
-#: ../../mod/lostpass.php:31
-msgid "Password reset request issued. Check your email."
-msgstr "Richiesta di reimpostazione pasword inviata. Controlla la tua email."
+#: ../../mod/settings.php:502 ../../addon/widgets/widgets.php:122
+msgid "Plugin Settings"
+msgstr "Impostazioni Plugin"
-#: ../../mod/lostpass.php:42
+#: ../../mod/settings.php:515 ../../mod/settings.php:516
#, php-format
-msgid "Password reset requested at %s"
-msgstr "Richiesta recupero password su %s"
+msgid "Built-in support for %s connectivity is %s"
+msgstr "Il supporto integrato per la connettività con %s è %s"
-#: ../../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/lostpass.php:82 ../../boot.php:654
-msgid "Password Reset"
-msgstr "Resetta password"
-
-#: ../../mod/lostpass.php:83
-msgid "Your password has been reset as requested."
-msgstr "La tua password è stata reimpostata come richiesto."
+#: ../../mod/settings.php:515 ../../mod/dfrn_request.php:651
+#: ../../include/contact_selectors.php:78
+msgid "Diaspora"
+msgstr "Diaspora"
-#: ../../mod/lostpass.php:84
-msgid "Your new password is"
-msgstr "La tua nuova password è"
+#: ../../mod/settings.php:515 ../../mod/settings.php:516
+msgid "enabled"
+msgstr "abilitato"
-#: ../../mod/lostpass.php:85
-msgid "Save or copy your new password - and then"
-msgstr "Sava o copa la tua nuova password, quindi"
+#: ../../mod/settings.php:515 ../../mod/settings.php:516
+msgid "disabled"
+msgstr "disabilitato"
-#: ../../mod/lostpass.php:86
-msgid "click here to login"
-msgstr "clicca qui per entrare"
+#: ../../mod/settings.php:516
+msgid "StatusNet"
+msgstr "StatusNet"
-#: ../../mod/lostpass.php:87
-msgid ""
-"Your password may be changed from the <em>Settings</em> page after "
-"successful login."
-msgstr ""
-"Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo essere"
-" entrato."
+#: ../../mod/settings.php:542
+msgid "Connector Settings"
+msgstr "Impostazioni Connettore"
-#: ../../mod/lostpass.php:118
-msgid "Forgot your Password?"
-msgstr "Dimenticato la tua password?"
+#: ../../mod/settings.php:548
+msgid "Email/Mailbox Setup"
+msgstr "Impostazioni Email"
-#: ../../mod/lostpass.php:119
+#: ../../mod/settings.php:549
msgid ""
-"Enter your email address and submit to have your password reset. Then check "
-"your email for further instructions."
+"If you wish to communicate with email contacts using this service "
+"(optional), please specify how to connect to your mailbox."
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."
+"Se vuoi comunicare con i contatti email usando questo servizio, specifica "
+"come collegarti alla tua casella di posta. (opzionale)"
-#: ../../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:550
+msgid "Last successful email check:"
+msgstr "Ultimo controllo email eseguito con successo:"
-#: ../../mod/settings.php:188
-msgid " Please use a shorter name."
-msgstr " Usa un nome più corto."
+#: ../../mod/settings.php:551
+msgid "Email access is disabled on this site."
+msgstr "L'accesso Email è disabilitato su questo sito."
-#: ../../mod/settings.php:190
-msgid " Name too short."
-msgstr " Nome troppo corto."
+#: ../../mod/settings.php:552
+msgid "IMAP server name:"
+msgstr "Nome server IMAP:"
-#: ../../mod/settings.php:196
-msgid " Not valid email."
-msgstr " Email non valida."
+#: ../../mod/settings.php:553
+msgid "IMAP port:"
+msgstr "Porta IMAP:"
-#: ../../mod/settings.php:198
-msgid " Cannot change to that email."
-msgstr "Non puoi usare quella email."
+#: ../../mod/settings.php:554
+msgid "Security:"
+msgstr "Sicurezza:"
-#: ../../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/settings.php:554
+msgid "None"
+msgstr "Nessuna"
-#: ../../mod/settings.php:311 ../../include/nav.php:108
-msgid "Account settings"
-msgstr "Parametri account"
+#: ../../mod/settings.php:555
+msgid "Email login name:"
+msgstr "Nome utente Email:"
-#: ../../mod/settings.php:312
-msgid "Plugin settings"
-msgstr "Impostazioni plugin"
+#: ../../mod/settings.php:556
+msgid "Email password:"
+msgstr "Password Email:"
-#: ../../mod/settings.php:322
-msgid "No Plugin settings configured"
-msgstr "Nessun Plugin ha delle configurazioni che puoi modificare"
+#: ../../mod/settings.php:557
+msgid "Reply-to address:"
+msgstr "Indirizzo di risposta:"
-#: ../../mod/settings.php:329 ../../addon/widgets/widgets.php:122
-msgid "Plugin Settings"
-msgstr "Impostazioni Plugin"
+#: ../../mod/settings.php:558
+msgid "Send public posts to all email contacts:"
+msgstr "Invia i messaggi pubblici ai contatti email:"
-#: ../../mod/settings.php:382 ../../mod/admin.php:133 ../../mod/admin.php:443
+#: ../../mod/settings.php:596 ../../mod/admin.php:126 ../../mod/admin.php:443
msgid "Normal Account"
msgstr "Account normale"
-#: ../../mod/settings.php:383
+#: ../../mod/settings.php:597
msgid "This account is a normal personal profile"
msgstr "Questo account è un normale profilo personale"
-#: ../../mod/settings.php:386 ../../mod/admin.php:134 ../../mod/admin.php:444
+#: ../../mod/settings.php:600 ../../mod/admin.php:127 ../../mod/admin.php:444
msgid "Soapbox Account"
msgstr "Account Palco"
-#: ../../mod/settings.php:387
+#: ../../mod/settings.php:601
msgid "Automatically approve all connection/friend requests as read-only fans"
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
+#: ../../mod/settings.php:604 ../../mod/admin.php:128 ../../mod/admin.php:445
msgid "Community/Celebrity Account"
msgstr "Account Celebrità/Comunità"
-#: ../../mod/settings.php:391
+#: ../../mod/settings.php:605
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
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
+#: ../../mod/settings.php:608 ../../mod/admin.php:129 ../../mod/admin.php:446
msgid "Automatic Friend Account"
msgstr "Account Amico Automatico"
-#: ../../mod/settings.php:395
+#: ../../mod/settings.php:609
msgid "Automatically approve all connection/friend requests as friends"
msgstr ""
"Accetta automaticamente le richieste di connessione/amicizia come amici"
-#: ../../mod/settings.php:405
+#: ../../mod/settings.php:619
msgid "OpenID:"
msgstr "OpenID:"
-#: ../../mod/settings.php:405
+#: ../../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/settings.php:415
+#: ../../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/settings.php:421
+#: ../../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/settings.php:429
+#: ../../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/settings.php:433
+#: ../../mod/settings.php:647
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/settings.php:442
+#: ../../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 <strong>not published</strong>."
msgstr "Il profilo <strong>non è pubblicato</strong>."
-#: ../../mod/settings.php:461 ../../mod/profile_photo.php:196
-msgid "or"
-msgstr "o"
-
-#: ../../mod/settings.php:466
+#: ../../mod/settings.php:691
msgid "Your Identity Address is"
msgstr "Il tuo Indirizzo Identità è"
-#: ../../mod/settings.php:480
+#: ../../mod/settings.php:705
msgid "Account Settings"
msgstr "Impostazioni Account"
-#: ../../mod/settings.php:487
-msgid "Export Personal Data"
-msgstr "Esporta i Dati Personali"
-
-#: ../../mod/settings.php:490
+#: ../../mod/settings.php:713
msgid "Password Settings"
msgstr "Impostazioni Password"
-#: ../../mod/settings.php:491
+#: ../../mod/settings.php:714
msgid "New Password:"
msgstr "Nuova Password:"
-#: ../../mod/settings.php:492
+#: ../../mod/settings.php:715
msgid "Confirm:"
msgstr "Conferma:"
-#: ../../mod/settings.php:492
+#: ../../mod/settings.php:715
msgid "Leave password fields blank unless changing"
msgstr ""
"Lascia questi campi in bianco per non effettuare variazioni alla password"
-#: ../../mod/settings.php:496
+#: ../../mod/settings.php:719
msgid "Basic Settings"
msgstr "Impostazioni base"
-#: ../../mod/settings.php:497 ../../include/profile_advanced.php:10
+#: ../../mod/settings.php:720 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Nome completo:"
-#: ../../mod/settings.php:498
+#: ../../mod/settings.php:721
msgid "Email Address:"
msgstr "Indirizzo Email:"
-#: ../../mod/settings.php:499
+#: ../../mod/settings.php:722
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
-#: ../../mod/settings.php:500
+#: ../../mod/settings.php:723
msgid "Default Post Location:"
msgstr "Località di default per l'invio:"
-#: ../../mod/settings.php:501
+#: ../../mod/settings.php:724
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
-#: ../../mod/settings.php:502
+#: ../../mod/settings.php:725
msgid "Display Theme:"
msgstr "Tema:"
-#: ../../mod/settings.php:506
+#: ../../mod/settings.php:729
msgid "Security and Privacy Settings"
msgstr "Impostazioni di Sicurezza e Privacy"
-#: ../../mod/settings.php:508
+#: ../../mod/settings.php:731
msgid "Maximum Friend Requests/Day:"
msgstr "Numero massimo di richieste di amicizia per giorno:"
-#: ../../mod/settings.php:508
+#: ../../mod/settings.php:731
msgid "(to prevent spam abuse)"
msgstr "(per prevenire lo spam)"
-#: ../../mod/settings.php:509
+#: ../../mod/settings.php:732
msgid "Default Post Permissions"
msgstr "Permessi di default per i messaggi"
-#: ../../mod/settings.php:510
+#: ../../mod/settings.php:733
msgid "(click to open/close)"
msgstr "(clicca per aprire/chiudere)"
-#: ../../mod/settings.php:514
-msgid "Allow friends to post to your profile page:"
-msgstr "Permetti agli amici di inviare messaggi sulla tua bacheca:"
-
-#: ../../mod/settings.php:515
+#: ../../mod/settings.php:739
msgid "Automatically expire posts after days:"
msgstr "Cancella automaticamente i messaggi dopo giorni:"
-#: ../../mod/settings.php:515
+#: ../../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:524
+#: ../../mod/settings.php:748
msgid "Notification Settings"
msgstr "Impostazioni Notifiche"
-#: ../../mod/settings.php:525
+#: ../../mod/settings.php:749
msgid "Send a notification email when:"
msgstr "Invia una mail di notifica quando:"
-#: ../../mod/settings.php:526
+#: ../../mod/settings.php:750
msgid "You receive an introduction"
msgstr "Ricevi una presentazione"
-#: ../../mod/settings.php:527
+#: ../../mod/settings.php:751
msgid "Your introductions are confirmed"
msgstr "Le tue presentazioni sono confermate"
-#: ../../mod/settings.php:528
+#: ../../mod/settings.php:752
msgid "Someone writes on your profile wall"
msgstr "Qualcuno scrive sulla bacheca del tuo profilo"
-#: ../../mod/settings.php:529
+#: ../../mod/settings.php:753
msgid "Someone writes a followup comment"
msgstr "Qualcuno scrive un commento a un tuo messaggio"
-#: ../../mod/settings.php:530
+#: ../../mod/settings.php:754
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
-#: ../../mod/settings.php:534
-msgid "Email/Mailbox Setup"
-msgstr "Impostazioni Email"
+#: ../../mod/settings.php:758
+msgid "Advanced Page Settings"
+msgstr "Impostazioni Avanzate Account"
-#: ../../mod/settings.php:535
-msgid ""
-"If you wish to communicate with email contacts using this service "
-"(optional), please specify how to connect to your mailbox."
-msgstr ""
-"Se vuoi comunicare con i contatti email usando questo servizio, specifica "
-"come collegarti alla tua casella di posta. (opzionale)"
+#: ../../mod/search.php:13 ../../mod/network.php:75
+msgid "Saved Searches"
+msgstr "Ricerche salvate"
-#: ../../mod/settings.php:536
-msgid "Last successful email check:"
-msgstr "Ultimo controllo email eseguito con successo:"
+#: ../../mod/search.php:16 ../../mod/network.php:81
+msgid "Remove term"
+msgstr "Rimuovi termine"
-#: ../../mod/settings.php:537
-msgid "Email access is disabled on this site."
-msgstr "L'accesso Email è disabilitato su questo sito."
+#: ../../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/settings.php:538
-msgid "IMAP server name:"
-msgstr "Nome server IMAP:"
+#: ../../mod/search.php:83
+msgid "Search This Site"
+msgstr "Cerca nel sito"
-#: ../../mod/settings.php:539
-msgid "IMAP port:"
-msgstr "Porta IMAP:"
+#: ../../mod/search.php:125 ../../mod/community.php:60
+msgid "No results."
+msgstr "Nessun risultato."
-#: ../../mod/settings.php:540
-msgid "Security:"
-msgstr "Sicurezza:"
+#: ../../mod/photos.php:42
+msgid "Photo Albums"
+msgstr "Album Foto"
-#: ../../mod/settings.php:540
-msgid "None"
-msgstr "Nessuna"
+#: ../../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/settings.php:541
-msgid "Email login name:"
-msgstr "Nome utente Email:"
+#: ../../mod/photos.php:133
+msgid "Contact information unavailable"
+msgstr "Informazione sul contatto non disponibile"
-#: ../../mod/settings.php:542
-msgid "Email password:"
-msgstr "Password Email:"
+#: ../../mod/photos.php:154
+msgid "Album not found."
+msgstr "Album non trovato."
-#: ../../mod/settings.php:543
-msgid "Reply-to address:"
-msgstr "Indirizzo di risposta:"
+#: ../../mod/photos.php:172 ../../mod/photos.php:945
+msgid "Delete Album"
+msgstr "Elimina album"
-#: ../../mod/settings.php:544
-msgid "Send public posts to all email contacts:"
-msgstr "Invia i messaggi pubblici ai contatti email:"
+#: ../../mod/photos.php:235 ../../mod/photos.php:1164
+msgid "Delete Photo"
+msgstr "Elimina foto"
-#: ../../mod/settings.php:549
-msgid "Advanced Page Settings"
-msgstr "Impostazioni Avanzate Account"
+#: ../../mod/photos.php:522
+msgid "was tagged in a"
+msgstr "è stato taggato in"
-#: ../../mod/manage.php:37
-#, php-format
-msgid "Welcome back %s"
-msgstr "Bentornato %s"
+#: ../../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/manage.php:87
-msgid "Manage Identities and/or Pages"
-msgstr "Gestisci Indentità e/o Pagine"
+#: ../../mod/photos.php:522
+msgid "by"
+msgstr "da"
-#: ../../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/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/manage.php:92
-msgid "Select an identity to manage: "
-msgstr "Seleziona una identità da gestire:"
+#: ../../mod/photos.php:633
+msgid "Image file is empty."
+msgstr "Il file dell'immagine è vuoto."
-#: ../../mod/network.php:27
-msgid "View Conversations"
-msgstr "Vedi conversazioni"
+#: ../../mod/photos.php:762
+msgid "No photos selected"
+msgstr "Nessuna foto selezionata"
-#: ../../mod/network.php:29
-msgid "View New Items"
-msgstr "Vedi nuovi elementi"
+#: ../../mod/photos.php:839
+msgid "Access to this item is restricted."
+msgstr "L'accesso a questo elemento è limitato."
-#: ../../mod/network.php:35
-msgid "View Any Items"
-msgstr "Vedi tutti gli elementi"
+#: ../../mod/photos.php:893
+msgid "Upload Photos"
+msgstr "Carica foto"
-#: ../../mod/network.php:43
-msgid "View Starred Items"
-msgstr "Vedi elementi preferiti"
+#: ../../mod/photos.php:896 ../../mod/photos.php:940
+msgid "New album name: "
+msgstr "Nome nuovo album: "
-#: ../../mod/network.php:94
-#, php-format
-msgid "Warning: This group contains %s member from an insecure network."
-msgid_plural ""
-"Warning: This group contains %s members from an insecure network."
-msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
-msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
+#: ../../mod/photos.php:897
+msgid "or existing album name: "
+msgstr "o nome di un album esistente: "
-#: ../../mod/network.php:97
-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/photos.php:898
+msgid "Do not show a status post for this upload"
+msgstr "Non creare un post per questo upload"
-#: ../../mod/network.php:164
-msgid "No such group"
-msgstr "Nessun gruppo"
+#: ../../mod/photos.php:900 ../../mod/photos.php:1159
+msgid "Permissions"
+msgstr "Permessi"
-#: ../../mod/network.php:175
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
+#: ../../mod/photos.php:955
+msgid "Edit Album"
+msgstr "Modifica album"
-#: ../../mod/network.php:180
-msgid "Group: "
-msgstr "Gruppo: "
+#: ../../mod/photos.php:965 ../../mod/photos.php:1381
+msgid "View Photo"
+msgstr "Vedi foto"
-#: ../../mod/network.php:190
-msgid "Contact: "
-msgstr "Contatto:"
+#: ../../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/network.php:192
-msgid "Private messages to this person are at risk of public disclosure."
+#: ../../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 ""
+"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr ""
-"I messaggi privati ​​a questa persona sono a rischio di divulgazione al "
-"pubblico."
+"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-#: ../../mod/network.php:197
-msgid "Invalid contact."
-msgstr "Contatto non valido."
+#: ../../mod/photos.php:1181 ../../include/conversation.php:416
+msgid "I like this (toggle)"
+msgstr "Mi piace questo (metti/togli)"
-#: ../../mod/notes.php:74
-msgid "Save"
-msgstr "Salva"
+#: ../../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"
@@ -1913,89 +1440,441 @@ msgstr ""
"Le nostre pagine della <strong>guida</strong> possono essere consultate per "
"avere dettagli su altre caratteristiche del programma e altre risorse."
-#: ../../mod/attach.php:8
-msgid "Item not available."
-msgstr "Elemento non disponibile."
+#: ../../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/attach.php:20
-msgid "Item was not found."
-msgstr "Elemento non trovato."
+#: ../../mod/localtime.php:24
+msgid "Time Conversion"
+msgstr "Conversione Ora"
-#: ../../mod/group.php:27
-msgid "Group created."
-msgstr "Gruppo creato."
+#: ../../mod/localtime.php:26
+msgid ""
+"Friendika provides this service for sharing events with other networks and "
+"friends in unknown timezones."
+msgstr ""
+"Friendika fornisce questo servizio per la condivisione di eventi con altre "
+"reti e contatti in fusi orari sconosciuti."
-#: ../../mod/group.php:33
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
+#: ../../mod/localtime.php:30
+#, php-format
+msgid "UTC time: %s"
+msgstr "Ora UTC: %s"
-#: ../../mod/group.php:43 ../../mod/group.php:123
-msgid "Group not found."
-msgstr "Gruppo non trovato."
+#: ../../mod/localtime.php:33
+#, php-format
+msgid "Current timezone: %s"
+msgstr "Fuso orario corrente: %s"
-#: ../../mod/group.php:56
-msgid "Group name changed."
-msgstr "Il nome del gruppo è cambiato."
+#: ../../mod/localtime.php:36
+#, php-format
+msgid "Converted localtime: %s"
+msgstr "Ora locale convertita: %s"
-#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:265
-msgid "Permission denied"
-msgstr "Permesso negato"
+#: ../../mod/localtime.php:41
+msgid "Please select your timezone:"
+msgstr "Selezionare il tuo fuso orario:"
-#: ../../mod/group.php:82
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
+#: ../../mod/display.php:108
+msgid "Item has been removed."
+msgstr "L'elemento è stato rimosso."
-#: ../../mod/group.php:83 ../../mod/group.php:166
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
+#: ../../mod/editpost.php:17 ../../mod/editpost.php:27
+msgid "Item not found"
+msgstr "Elemento non trovato"
-#: ../../mod/group.php:98
-msgid "Group removed."
-msgstr "Gruppo rimosso."
+#: ../../mod/editpost.php:32
+msgid "Edit post"
+msgstr "Modifica messaggio"
-#: ../../mod/group.php:100
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
+#: ../../mod/editpost.php:75 ../../include/conversation.php:800
+msgid "Post to Email"
+msgstr "Invia a Email"
-#: ../../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/editpost.php:91 ../../mod/message.php:135
+#: ../../mod/message.php:268 ../../include/conversation.php:815
+msgid "Upload photo"
+msgstr "Carica foto"
-#: ../../mod/group.php:165
-msgid "Group Editor"
-msgstr "Modifica gruppo"
+#: ../../mod/editpost.php:92 ../../include/conversation.php:816
+msgid "Attach file"
+msgstr "Allega file"
-#: ../../mod/group.php:180
-msgid "Members"
-msgstr "Membri"
+#: ../../mod/editpost.php:93 ../../mod/message.php:136
+#: ../../mod/message.php:269 ../../include/conversation.php:817
+msgid "Insert web link"
+msgstr "Inserisci link"
-#: ../../mod/group.php:195
-msgid "All Contacts"
-msgstr "Tutti i Contatti"
+#: ../../mod/editpost.php:94
+msgid "Insert YouTube video"
+msgstr "Inserisci video da YouTube"
-#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
-msgid "Invalid profile identifier."
-msgstr "Indentificativo del profilo non valido."
+#: ../../mod/editpost.php:95
+msgid "Insert Vorbis [.ogg] video"
+msgstr "Inserisci video Theora [.ogg]"
-#: ../../mod/profperm.php:101
-msgid "Profile Visibility Editor"
-msgstr "Modifica Visibilità del Profilo"
+#: ../../mod/editpost.php:96
+msgid "Insert Vorbis [.ogg] audio"
+msgstr "Inserisci audio Vorbis [.ogg]"
-#: ../../mod/profperm.php:114
-msgid "Visible To"
-msgstr "Visibile A"
+#: ../../mod/editpost.php:97 ../../include/conversation.php:820
+msgid "Set your location"
+msgstr "Imposta la tua posizione"
-#: ../../mod/profperm.php:128
-msgid "All Contacts (with secure profile access)"
-msgstr "Tutti i Contatti (con profilo ad accesso sicuro)"
+#: ../../mod/editpost.php:98 ../../include/conversation.php:821
+msgid "Clear browser location"
+msgstr "Cancella la tua posizione data dal browser"
-#: ../../mod/viewcontacts.php:25 ../../include/text.php:555
-msgid "View Contacts"
-msgstr "Guarda contatti"
+#: ../../mod/editpost.php:100 ../../include/conversation.php:824
+msgid "Permission settings"
+msgstr "Impostazione permessi"
-#: ../../mod/viewcontacts.php:40
-msgid "No contacts."
-msgstr "Nessuno contatto."
+#: ../../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/invite.php:35
+#, php-format
+msgid "%s : Not a valid email address."
+msgstr "%s: Non è un indirizzo email valido."
+
+#: ../../mod/invite.php:59
+#, php-format
+msgid "Please join my network on %s"
+msgstr "Unisciti al mio social network su %s"
+
+#: ../../mod/invite.php:69
+#, php-format
+msgid "%s : Message delivery failed."
+msgstr "%s: Consegna del messaggio fallita."
+
+#: ../../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/invite.php:92
+msgid "You have no more invitations available"
+msgstr "Non hai altri inviti disponibili"
+
+#: ../../mod/invite.php:99
+msgid "Send invitations"
+msgstr "Invia inviti"
+
+#: ../../mod/invite.php:100
+msgid "Enter email addresses, one per line:"
+msgstr "Inserisci gli indirizzi email, uno per riga:"
+
+#: ../../mod/invite.php:101 ../../mod/message.php:132
+#: ../../mod/message.php:265
+msgid "Your message:"
+msgstr "Il tuo messaggio:"
+
+#: ../../mod/invite.php:102
+#, php-format
+msgid "Please join my social network on %s"
+msgstr "Unisciti al mio social network su %s"
+
+#: ../../mod/invite.php:103
+msgid "To accept this invitation, please visit:"
+msgstr "Per accettare questo invito visita:"
+
+#: ../../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/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/ping.php:162
+#, php-format
+msgid "{0} commented %s's post"
+msgstr "{0} ha commentato il post di %s"
+
+#: ../../mod/ping.php:167
+#, php-format
+msgid "{0} liked %s's post"
+msgstr "a {0} piace il post di %s"
+
+#: ../../mod/ping.php:172
+#, php-format
+msgid "{0} disliked %s's post"
+msgstr "a {0} non piace il post di %s"
+
+#: ../../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/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:62 ../../mod/contacts.php:133
+msgid "Could not access contact record."
+msgstr "Non si puo' accedere al contatto."
+
+#: ../../mod/contacts.php:76
+msgid "Could not locate selected profile."
+msgstr "Non riesco a trovare il profilo selezionato."
+
+#: ../../mod/contacts.php:97
+msgid "Contact updated."
+msgstr "Contatto aggiornato."
+
+#: ../../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:155
+msgid "Contact has been unblocked"
+msgstr "Il contatto è stato sbloccato"
+
+#: ../../mod/contacts.php:169
+msgid "Contact has been ignored"
+msgstr "Il contatto è ignorato"
+
+#: ../../mod/contacts.php:169
+msgid "Contact has been unignored"
+msgstr "Il conttatto è non ignorato"
+
+#: ../../mod/contacts.php:190
+msgid "stopped following"
+msgstr "tolto dai seguiti"
+
+#: ../../mod/contacts.php:211
+msgid "Contact has been removed."
+msgstr "Il contatto è stato rimosso."
+
+#: ../../mod/contacts.php:232
+#, php-format
+msgid "You are mutual friends with %s"
+msgstr "Sei amico reciproco con %s"
+
+#: ../../mod/contacts.php:236
+#, php-format
+msgid "You are sharing with %s"
+msgstr "Stai condividendo con %s"
+
+#: ../../mod/contacts.php:241
+#, php-format
+msgid "%s is sharing with you"
+msgstr "%s sta condividendo con te"
+
+#: ../../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:261
+msgid "Never"
+msgstr "Mai"
+
+#: ../../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:289 ../../mod/contacts.php:332
+#: ../../mod/notifications.php:47 ../../mod/notifications.php:143
+#: ../../mod/notifications.php:187
+msgid "Ignore"
+msgstr "Ignora"
+
+#: ../../mod/contacts.php:294
+msgid "Repair"
+msgstr "Ripara"
+
+#: ../../mod/contacts.php:304
+msgid "Contact Editor"
+msgstr "Editor dei Contatti"
+
+#: ../../mod/contacts.php:307
+msgid "Profile Visibility"
+msgstr "Visibilità del profilo"
+
+#: ../../mod/contacts.php:308
+#, php-format
+msgid ""
+"Please choose the profile you would like to display to %s when viewing your "
+"profile securely."
+msgstr ""
+"Seleziona il profilo che vuoi mostrare a %s quando visita il tuo profilo in "
+"modo sicuro."
+
+#: ../../mod/contacts.php:309
+msgid "Contact Information / Notes"
+msgstr "Informazioni / Note sul contatto"
+
+#: ../../mod/contacts.php:310
+msgid "Edit contact notes"
+msgstr "Modifica note contatto"
+
+#: ../../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:316
+msgid "Block/Unblock contact"
+msgstr "Blocca/Sblocca contatto"
+
+#: ../../mod/contacts.php:317
+msgid "Ignore contact"
+msgstr "Ingnora il contatto"
+
+#: ../../mod/contacts.php:318
+msgid "Repair URL settings"
+msgstr "Impostazioni riparazione URL"
+
+#: ../../mod/contacts.php:319
+msgid "View conversations"
+msgstr "Vedi conversazioni"
+
+#: ../../mod/contacts.php:321
+msgid "Delete contact"
+msgstr "Rimuovi contatto"
+
+#: ../../mod/contacts.php:325
+msgid "Last update:"
+msgstr "Ultimo aggiornamento:"
+
+#: ../../mod/contacts.php:326
+msgid "Update public posts"
+msgstr "Aggiorna messaggi pubblici"
+
+#: ../../mod/contacts.php:328 ../../mod/admin.php:701
+msgid "Update now"
+msgstr "Aggiorna adesso"
+
+#: ../../mod/contacts.php:335
+msgid "Currently blocked"
+msgstr "Bloccato"
+
+#: ../../mod/contacts.php:336
+msgid "Currently ignored"
+msgstr "Ignorato"
+
+#: ../../mod/contacts.php:364 ../../include/nav.php:130
+msgid "Contacts"
+msgstr "Contatti"
+
+#: ../../mod/contacts.php:366
+msgid "Show Blocked Connections"
+msgstr "Mostra connessioni bloccate"
+
+#: ../../mod/contacts.php:366
+msgid "Hide Blocked Connections"
+msgstr "Nascondi connessioni bloccate"
+
+#: ../../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:370 ../../mod/directory.php:67
+#: ../../include/contact_widgets.php:34
+msgid "Find"
+msgstr "Trova"
+
+#: ../../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/lockview.php:39
+msgid "Remote privacy information not available."
+msgstr "Informazioni remote sulla privacy non disponibili."
+
+#: ../../mod/lockview.php:43
+msgid "Visible to:"
+msgstr "Visibile a:"
#: ../../mod/register.php:53
msgid "An invitation is required."
@@ -2062,46 +1941,41 @@ msgstr "Si è verificato un errore durante la registrazione. Prova ancora."
msgid "An error occurred creating your default profile. Please try again."
msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora."
-#: ../../mod/register.php:367 ../../mod/regmod.php:52
-#, php-format
-msgid "Registration details for %s"
-msgstr "Dettagli registrazione per %s"
-
-#: ../../mod/register.php:375
+#: ../../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/register.php:379
+#: ../../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/register.php:384
+#: ../../mod/register.php:386
msgid "Your registration can not be processed."
msgstr "La tua registrazione non puo' essere elaborata."
-#: ../../mod/register.php:421
+#: ../../mod/register.php:423
#, php-format
msgid "Registration request at %s"
msgstr "Richiesta di registrazione su %s"
-#: ../../mod/register.php:430
+#: ../../mod/register.php:432
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/register.php:479
+#: ../../mod/register.php:481
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 "
+"Puoi (opzionalmente) riempire questa maschera via OpenID inserendo il tuo "
"OpenID e cliccando 'Registra'."
-#: ../../mod/register.php:480
+#: ../../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."
@@ -2109,35 +1983,35 @@ msgstr ""
"Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il "
"resto della maschera."
-#: ../../mod/register.php:481
+#: ../../mod/register.php:483
msgid "Your OpenID (optional): "
msgstr "Il tuo OpenID (opzionale): "
-#: ../../mod/register.php:495
+#: ../../mod/register.php:497
msgid "Include your profile in member directory?"
msgstr "Includi il tuo profilo nell'elenco dei membir?"
-#: ../../mod/register.php:511
+#: ../../mod/register.php:512
msgid "Membership on this site is by invitation only."
msgstr "La registrazione su questo sito è solo su invito."
-#: ../../mod/register.php:512
+#: ../../mod/register.php:513
msgid "Your invitation ID: "
msgstr "L'ID del tuo invito:"
-#: ../../mod/register.php:515 ../../mod/admin.php:299
+#: ../../mod/register.php:516 ../../mod/admin.php:297
msgid "Registration"
msgstr "Registrazione"
-#: ../../mod/register.php:523
+#: ../../mod/register.php:524
msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Il tuo Nome Completo (p.e. Mario Rossi): "
-#: ../../mod/register.php:524
+#: ../../mod/register.php:525
msgid "Your Email Address: "
msgstr "Il tuo Indirizzo Email: "
-#: ../../mod/register.php:525
+#: ../../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 "
@@ -2146,217 +2020,909 @@ msgstr ""
"Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo "
"profilo sarà '<strong>soprannome@$sitename</strong>'."
-#: ../../mod/register.php:526
+#: ../../mod/register.php:527
msgid "Choose a nickname: "
msgstr "Scegli un soprannome: "
-#: ../../mod/register.php:529 ../../include/nav.php:59 ../../boot.php:637
-msgid "Register"
-msgstr "Regitrati"
+#: ../../mod/oexchange.php:27
+msgid "Post successful."
+msgstr "Inviato con successo."
-#: ../../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/allfriends.php:34
+#, php-format
+msgid "Friends of %s"
+msgstr "Amici di %s"
+
+#: ../../mod/allfriends.php:40
+msgid "No friends to display."
+msgstr "Nessun amico da visualizzare."
+
+#: ../../mod/help.php:30
+msgid "Help:"
+msgstr "Guida:"
+
+#: ../../mod/help.php:34 ../../include/nav.php:82
+msgid "Help"
+msgstr "Guida"
+
+#: ../../mod/install.php:34
+msgid "Could not create/connect to database."
+msgstr "Impossibile creare/collegarsi al database."
+
+#: ../../mod/install.php:39
+msgid "Connected to database."
+msgstr "Collegato al database."
+
+#: ../../mod/install.php:75
+msgid "Proceed with Installation"
+msgstr "Continua con l'installazione"
+
+#: ../../mod/install.php:77
+msgid "Your Friendika site database has been installed."
+msgstr "Il database del tuo sito Friendika è stato installato."
+
+#: ../../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/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/install.php:81
+msgid "Proceed to registration"
+msgstr "Continua con la registrazione"
+
+#: ../../mod/install.php:87
+msgid "Database import failed."
+msgstr "Importazione database fallita."
+
+#: ../../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/install.php:101
+msgid "Welcome to Friendika."
+msgstr "Benvenuto su Friendika."
+
+#: ../../mod/install.php:124
+msgid "Friendika Social Network"
+msgstr "Friendika Social Network"
+
+#: ../../mod/install.php:125
+msgid "Installation"
+msgstr "Installazione"
+
+#: ../../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/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/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/install.php:129
+msgid "Database Server Name"
+msgstr "Nome Database Server"
+
+#: ../../mod/install.php:130
+msgid "Database Login Name"
+msgstr "Nome utente Database"
+
+#: ../../mod/install.php:131
+msgid "Database Login Password"
+msgstr "Password utente Database"
+
+#: ../../mod/install.php:132
+msgid "Database Name"
+msgstr "Nome Database"
+
+#: ../../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/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/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/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/install.php:161
+msgid ""
+"The command line version of PHP on your system does not have "
+"\"register_argc_argv\" enabled."
+msgstr ""
+"La versione da riga di comando di PHP nel sistema non ha abilitato "
+"\"register_argc_argv\"."
+
+#: ../../mod/install.php:162
+msgid "This is required for message delivery to work."
+msgstr "Ciò è richiesto per far funzionare la consegna dei messaggi."
+
+#: ../../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/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/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/install.php:196
+msgid "Error: libCURL PHP module required but not installed."
+msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato."
+
+#: ../../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/install.php:200
+msgid "Error: openssl PHP module required but not installed."
+msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato."
+
+#: ../../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/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/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/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/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/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/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 ""
+"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/like.php:127 ../../addon/facebook/facebook.php:958
-#: ../../include/diaspora.php:463 ../../include/conversation.php:43
+#: ../../mod/install.php:243
+msgid "Errors encountered creating database tables."
+msgstr "Errori creando le tabelle nel database."
+
+#: ../../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:159
+msgid "New"
+msgstr "Nuovo"
+
+#: ../../mod/network.php:164
+msgid "Starred"
+msgstr "Speciali"
+
+#: ../../mod/network.php:169
+msgid "Bookmarks"
+msgstr "Preferiti"
+
+#: ../../mod/network.php:216
#, php-format
-msgid "%1$s likes %2$s's %3$s"
-msgstr "A %1$s piace %3$s di %2$s"
+msgid "Warning: This group contains %s member from an insecure network."
+msgid_plural ""
+"Warning: This group contains %s members from an insecure network."
+msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
+msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
-#: ../../mod/like.php:129 ../../include/diaspora.php:465
-#: ../../include/conversation.php:46
+#: ../../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:292
+msgid "No such group"
+msgstr "Nessun gruppo"
+
+#: ../../mod/network.php:303
+msgid "Group is empty"
+msgstr "Il gruppo è vuoto"
+
+#: ../../mod/network.php:308
+msgid "Group: "
+msgstr "Gruppo: "
+
+#: ../../mod/network.php:318
+msgid "Contact: "
+msgstr "Contatto:"
+
+#: ../../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:325
+msgid "Invalid contact."
+msgstr "Contatto non valido."
+
+#: ../../mod/profperm.php:25 ../../mod/profperm.php:55
+msgid "Invalid profile identifier."
+msgstr "Indentificativo del profilo non valido."
+
+#: ../../mod/profperm.php:101
+msgid "Profile Visibility Editor"
+msgstr "Modifica Visibilità del Profilo"
+
+#: ../../mod/profperm.php:105 ../../mod/group.php:164
+msgid "Click on a contact to add or remove."
+msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
+
+#: ../../mod/profperm.php:114
+msgid "Visible To"
+msgstr "Visibile A"
+
+#: ../../mod/profperm.php:130
+msgid "All Contacts (with secure profile access)"
+msgstr "Tutti i Contatti (con profilo ad accesso sicuro)"
+
+#: ../../mod/events.php:61
+msgid "Event description and start time are required."
+msgstr "Descrizione dell'evento e ora di inizio sono obbligatori."
+
+#: ../../mod/events.php:207
+msgid "Create New Event"
+msgstr "Crea un nuovo Evento"
+
+#: ../../mod/events.php:210
+msgid "Previous"
+msgstr "Precendente"
+
+#: ../../mod/events.php:213
+msgid "Next"
+msgstr "Successivo"
+
+#: ../../mod/events.php:220
+msgid "l, F j"
+msgstr "l j F"
+
+#: ../../mod/events.php:232
+msgid "Edit event"
+msgstr "Modifca Evento"
+
+#: ../../mod/events.php:234 ../../include/text.php:857
+msgid "link to source"
+msgstr "Collegamento all'originale"
+
+#: ../../mod/events.php:302
+msgid "hour:minute"
+msgstr "ora:minuti"
+
+#: ../../mod/events.php:311
+msgid "Event details"
+msgstr "Dettagli dell'Evento"
+
+#: ../../mod/events.php:312
#, 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 "Format is %s %s. Starting date and Description are required."
+msgstr ""
+"Il formato è %s %s. La data di inizio e la descrizione sono obbligatori."
-#: ../../mod/friendika.php:42
-msgid "This is Friendika version"
-msgstr "Questo è Friendika versione"
+#: ../../mod/events.php:313
+msgid "Event Starts:"
+msgstr "L'Evento inizia:"
-#: ../../mod/friendika.php:43
-msgid "running at web location"
-msgstr "in esecuzione all'indirizzo"
+#: ../../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/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/friendika.php:45
+#: ../../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/notifications.php:132
+msgid "Friend Suggestion"
+msgstr "Amico suggerito"
+
+#: ../../mod/notifications.php:134
+#, php-format
+msgid "suggested by %s"
+msgstr "sugerito da %s"
+
+#: ../../mod/notifications.php:140 ../../mod/notifications.php:185
+#: ../../mod/admin.php:466
+msgid "Approve"
+msgstr "Approva"
+
+#: ../../mod/notifications.php:160
+msgid "Claims to be known to you: "
+msgstr "Dice di conoscerti: "
+
+#: ../../mod/notifications.php:160
+msgid "yes"
+msgstr "si"
+
+#: ../../mod/notifications.php:160
+msgid "no"
+msgstr "no"
+
+#: ../../mod/notifications.php:167
+msgid "Approve as: "
+msgstr "Approva come: "
+
+#: ../../mod/notifications.php:168
+msgid "Friend"
+msgstr "Amico"
+
+#: ../../mod/notifications.php:169
+msgid "Sharer"
+msgstr "Condivisore"
+
+#: ../../mod/notifications.php:169
+msgid "Fan/Admirer"
+msgstr "Fan/Ammiratore"
+
+#: ../../mod/notifications.php:175
+msgid "Friend/Connect Request"
+msgstr "Richiesta Amicizia/Connessione"
+
+#: ../../mod/notifications.php:175
+msgid "New Follower"
+msgstr "Nuovo Seguace"
+
+#: ../../mod/notifications.php:194
+msgid "No notifications."
+msgstr "Nessuna notifica."
+
+#: ../../mod/notifications.php:197 ../../mod/notifications.php:283
+#: ../../mod/notifications.php:359 ../../include/nav.php:118
+msgid "Notifications"
+msgstr "Notifiche"
+
+#: ../../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/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/notifications.php:257 ../../mod/notifications.php:339
+#, php-format
+msgid "%s is now friends with %s"
+msgstr "%s è ora amico di %s"
+
+#: ../../mod/notifications.php:264
+#, php-format
+msgid "%s created a new post"
+msgstr "%s a creato un nuovo messaggio"
+
+#: ../../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/notifications.php:279 ../../mod/notifications.php:355
+msgid "Nothing new!"
+msgstr "Niente di nuovo!"
+
+#: ../../mod/crepair.php:100
+msgid "Contact settings applied."
+msgstr "Impostazioni del contatto applicate."
+
+#: ../../mod/crepair.php:102
+msgid "Contact update failed."
+msgstr "Aggiornamento del contatto non riuscito."
+
+#: ../../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/crepair.php:133
+msgid "Repair Contact Settings"
+msgstr "Ripara le Impostazioni del Contatto"
+
+#: ../../mod/crepair.php:135
msgid ""
-"Shared content within the Friendika network is provided under the <a "
-"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
-"Attribution 3.0 license</a>"
+"<strong>WARNING: This is highly advanced</strong> and if you enter incorrect"
+" information your communications with this contact may stop working."
msgstr ""
-"I contenuti condivisi nel network Friendika è rilasciato sotto la licenza <a"
-" href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
-"Attribution 3.0 license</a>"
+"<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se "
+"inserisci informazioni errate le tue comunicazioni con questo contatto "
+"potrebbero non funzionare più"
-#: ../../mod/friendika.php:47
+#: ../../mod/crepair.php:136
msgid ""
-"Please visit <a "
-"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
-"more about the Friendika project."
+"Please use your browser 'Back' button <strong>now</strong> if you are "
+"uncertain what to do on this page."
msgstr ""
-"Visita <a href=\"http://project.friendika.com\">Project.Friendika.com</a> "
-"per saperne di più sul progetto Friendika."
+"Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei "
+"sicuro di cosa fare in questa pagina."
-#: ../../mod/friendika.php:49
-msgid "Bug reports and issues: please visit"
-msgstr "Segnalazioni di bug e problemi: visita"
+#: ../../mod/crepair.php:145
+msgid "Account Nickname"
+msgstr "Nickname dell'utente"
-#: ../../mod/friendika.php:50
-msgid ""
-"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
-"dot com"
+#: ../../mod/crepair.php:146
+msgid "@Tagname - overrides Name/Nickname"
+msgstr "@TagName - rimpiazza il nome / soprannome"
+
+#: ../../mod/crepair.php:147
+msgid "Account URL"
+msgstr "URL dell'utente"
+
+#: ../../mod/crepair.php:148
+msgid "Friend Request URL"
+msgstr "URL Richiesta Amicizia"
+
+#: ../../mod/crepair.php:149
+msgid "Friend Confirm URL"
+msgstr "URL Conferma Amicizia"
+
+#: ../../mod/crepair.php:150
+msgid "Notification Endpoint URL"
+msgstr "URL Notifiche"
+
+#: ../../mod/crepair.php:151
+msgid "Poll/Feed URL"
+msgstr "URL Feed"
+
+#: ../../mod/crepair.php:152
+msgid "New photo from this URL"
+msgstr "Nuova foto da questo URL"
+
+#: ../../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 ""
-"Suggerimenti, preghiere, donazioni, etc - invia una email a \"Info\" at "
-"Friendika - dot.com"
+"La posizione del profilo non è valida o non contiene informazioni di "
+"profilo."
-#: ../../mod/friendika.php:55
-msgid "Installed plugins/addons/apps"
-msgstr "Plugin/Addon/Applicazioni installate"
+#: ../../mod/dfrn_request.php:121 ../../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/friendika.php:63
-msgid "No installed plugins/addons/apps"
-msgstr "Nessuno plugin/addons/applicazione installata"
+#: ../../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/regmod.php:61
-msgid "Account approved."
-msgstr "Account approvato."
+#: ../../mod/dfrn_request.php:126 ../../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/regmod.php:93
+#: ../../mod/dfrn_request.php:167
+msgid "Introduction complete."
+msgstr "Presentazione completa."
+
+#: ../../mod/dfrn_request.php:191
+msgid "Unrecoverable protocol error."
+msgstr "Errore di protocollo non recuperabile."
+
+#: ../../mod/dfrn_request.php:219
+msgid "Profile unavailable."
+msgstr "Profilo non disponibile."
+
+#: ../../mod/dfrn_request.php:244
#, php-format
-msgid "Registration revoked for %s"
-msgstr "Registrazione revocata per %s"
+msgid "%s has received too many connection requests today."
+msgstr "%s ha ricevuto troppe richieste di connessione per oggi."
-#: ../../mod/regmod.php:105
-msgid "Please login."
-msgstr "Accedi."
+#: ../../mod/dfrn_request.php:245
+msgid "Spam protection measures have been invoked."
+msgstr "Sono state attivate le misure di protezione contro lo spam."
-#: ../../mod/item.php:81
-msgid "Unable to locate original post."
-msgstr "Impossibile trovare il messaggio originale."
+#: ../../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/item.php:196
-msgid "Empty post discarded."
-msgstr "Messaggio vuoto scartato."
+#: ../../mod/dfrn_request.php:276
+msgid "Invalid locator"
+msgstr "Invalid locator"
-#: ../../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:296
+msgid "Unable to resolve your name at the provided location."
+msgstr "Impossibile risolvere il tuo nome nella posizione indicata."
-#: ../../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/dfrn_request.php:309
+msgid "You have already introduced yourself here."
+msgstr "Ti sei già presentato qui."
-#: ../../mod/item.php:667 ../../mod/item.php:733 ../../mod/dfrn_notify.php:676
-msgid "Administrator@"
-msgstr "Amministratore@"
+#: ../../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/dfrn_request.php:334
+msgid "Invalid profile URL."
+msgstr "Indirizzo profilo invalido."
+
+#: ../../mod/dfrn_request.php:430
+msgid "Your introduction has been sent."
+msgstr "La tua presentazione è stata inviata."
+
+#: ../../mod/dfrn_request.php:483
+msgid "Please login to confirm introduction."
+msgstr "Accedi per confermare la presentazione."
+
+#: ../../mod/dfrn_request.php:497
+msgid ""
+"Incorrect identity currently logged in. Please login to "
+"<strong>this</strong> profile."
+msgstr ""
+"Accesso con identà incorretta. Accedi a <strong>questo</strong> profilo."
-#: ../../mod/item.php:670 ../../mod/dfrn_notify.php:550
-#: ../../mod/dfrn_notify.php:679
+#: ../../mod/dfrn_request.php:509
#, php-format
-msgid "%s commented on an item at %s"
-msgstr "%s ha commentato un elemento su %s"
+msgid "Welcome home %s."
+msgstr "Bentornato a casa %s."
-#: ../../mod/item.php:736
+#: ../../mod/dfrn_request.php:510
#, php-format
-msgid "%s posted to your profile wall at %s"
-msgstr "%s ha scritto sulla tua bacheca su %s"
+msgid "Please confirm your introduction/connection request to %s."
+msgstr "Conferma la tua richiesta di connessione con %s."
-#: ../../mod/item.php:765
-msgid "System error. Post not saved."
-msgstr "Errore di sistema. Messaggio non salvato."
+#: ../../mod/dfrn_request.php:511
+msgid "Confirm"
+msgstr "Conferma"
+
+#: ../../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/item.php:784
+#: ../../mod/dfrn_request.php:635
#, php-format
msgid ""
-"This message was sent to you by %s, a member of the Friendika social "
-"network."
+"Diaspora members: Please do not use this form. Instead, enter \"%s\" into "
+"your Diaspora search bar."
msgstr ""
-"Questo messaggio ti è stato inviato da %s, un membro del social network "
-"Friendika."
+"Untenti Diaspora: non utilizzate questo modulo. Al contrario, digitate "
+"\"%s\" nella barra di ricerca sul vostro pod Diaspora."
+
+#: ../../mod/dfrn_request.php:638
+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/dfrn_request.php:641
+msgid "Friend/Connection Request"
+msgstr "Richieste di Amicizia/Connessione"
+
+#: ../../mod/dfrn_request.php:642
+msgid ""
+"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
+msgstr ""
+"Esempi: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
+"testuser@identi.ca"
-#: ../../mod/item.php:786
+#: ../../mod/dfrn_request.php:643
+msgid "Please answer the following:"
+msgstr "Rispondi al seguente:"
+
+#: ../../mod/dfrn_request.php:644
#, php-format
-msgid "You may visit them online at %s"
-msgstr "Puoi visitarli online presso %s"
+msgid "Does %s know you?"
+msgstr "%s ti conosce?"
+
+#: ../../mod/dfrn_request.php:647
+msgid "Add a personal note:"
+msgstr "Aggiungi una nota personale:"
+
+#: ../../mod/dfrn_request.php:649 ../../include/contact_selectors.php:78
+msgid "Friendica"
+msgstr "Friendica"
+
+#: ../../mod/dfrn_request.php:650
+msgid "StatusNet/Federated Social Web"
+msgstr "StatusNet/Federated Social Web"
+
+#: ../../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/dfrn_request.php:653
+msgid "Your Identity Address:"
+msgstr "Il tuo Indirizzo Identità:"
+
+#: ../../mod/dfrn_request.php:654
+msgid "Submit Request"
+msgstr "Invia richiesta"
+
+#: ../../mod/api.php:76 ../../mod/api.php:102
+msgid "Authorize application connection"
+msgstr "Autorizza la connessione dell'applicazione"
+
+#: ../../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:787
+#: ../../mod/api.php:89
+msgid "Please login to continue."
+msgstr "Effettua il login per continuare."
+
+#: ../../mod/api.php:104
msgid ""
-"Please contact the sender by replying to this post if you do not wish to "
-"receive these messages."
+"Do you want to authorize this application to access your posts and contacts,"
+" and/or create new posts for you?"
msgstr ""
-"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi "
-"messaggi."
+"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:789
+#: ../../mod/tagger.php:103
#, php-format
-msgid "%s posted an update."
-msgstr "%s ha inviato un aggiornamento."
+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/profile_photo.php:28
-msgid "Image uploaded but image cropping failed."
-msgstr "L'immagine è stata caricata, ma il ritaglio è fallito."
+#: ../../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/profile_photo.php:61 ../../mod/profile_photo.php:68
-#: ../../mod/profile_photo.php:75 ../../mod/profile_photo.php:248
+#: ../../mod/like.php:146 ../../include/conversation.php:46
#, php-format
-msgid "Image size reduction [%s] failed."
-msgstr "Riduzione della dimensione dell'immagine [%s] fallito."
+msgid "%1$s doesn't like %2$s's %3$s"
+msgstr "A %1$s non piace %3$s di %2$s"
-#: ../../mod/profile_photo.php:95
-msgid "Unable to process image"
-msgstr "Impossibile elaborare l'immagine"
+#: ../../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/profile_photo.php:109 ../../mod/wall_upload.php:56
+#: ../../mod/lostpass.php:42
#, php-format
-msgid "Image exceeds size limit of %d"
-msgstr "La dimensionde dell'immagine supera il limite di %d"
+msgid "Password reset requested at %s"
+msgstr "Richiesta recupero password su %s"
-#: ../../mod/profile_photo.php:193
-msgid "Upload File:"
-msgstr "Carica un file:"
+#: ../../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/profile_photo.php:194
-msgid "Upload Profile Photo"
-msgstr "Carica la Foto del Profilo"
+#: ../../mod/lostpass.php:83
+msgid "Your password has been reset as requested."
+msgstr "La tua password è stata reimpostata come richiesto."
-#: ../../mod/profile_photo.php:195
-msgid "Upload"
-msgstr "Carica"
+#: ../../mod/lostpass.php:84
+msgid "Your new password is"
+msgstr "La tua nuova password è"
-#: ../../mod/profile_photo.php:196
-msgid "skip this step"
-msgstr "salta questo passaggio"
+#: ../../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:196
-msgid "select a photo from your photo albums"
-msgstr "seleziona una foto dai tuoi album"
+#: ../../mod/lostpass.php:86
+msgid "click here to login"
+msgstr "clicca qui per entrare"
-#: ../../mod/profile_photo.php:209
-msgid "Crop Image"
-msgstr "Ritaglia immagine"
+#: ../../mod/lostpass.php:87
+msgid ""
+"Your password may be changed from the <em>Settings</em> page after "
+"successful login."
+msgstr ""
+"Puoi cambiare la tua password dalla pagina <em>Impostazioni</em> dopo essere"
+" entrato."
-#: ../../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/lostpass.php:118
+msgid "Forgot your Password?"
+msgstr "Dimenticato la tua password?"
-#: ../../mod/profile_photo.php:211
-msgid "Done Editing"
-msgstr "Fatto"
+#: ../../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:239
-msgid "Image uploaded successfully."
-msgstr "Immagine caricata con successo."
+#: ../../mod/lostpass.php:120
+msgid "Nickname or Email: "
+msgstr "Nome utente o Email: "
-#: ../../mod/hcard.php:11 ../../mod/profile.php:11 ../../boot.php:792
-msgid "No profile"
-msgstr "Nessun profilo"
+#: ../../mod/lostpass.php:121
+msgid "Reset"
+msgstr "Reimposta"
+
+#: ../../mod/friendica.php:43
+msgid "This is Friendica, version"
+msgstr "Questo è Friendica, versione"
+
+#: ../../mod/friendica.php:44
+msgid "running at web location"
+msgstr "in esecuzione all'indirizzo"
+
+#: ../../mod/friendica.php:46
+msgid ""
+"Please visit <a "
+"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
+"more about the Friendica project."
+msgstr ""
+"Visita <a href=\"http://friendica.com\">friendica.com</a> per saperne di più"
+" sul progetto Friendica."
+
+#: ../../mod/friendica.php:48
+msgid "Bug reports and issues: please visit"
+msgstr "Segnalazioni di bug e problemi: visita"
+
+#: ../../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/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"
+"Questo messaggio ti è stato inviato da %s, un membro del social network "
+"Friendika."
-#: ../../mod/follow.php:54
-msgid "No browser URL could be matched to this address."
-msgstr "Nessun URL puo' essere associato a questo indirizzo."
+#: ../../mod/item.php:870
+#, php-format
+msgid "You may visit them online at %s"
+msgstr "Puoi visitarli online presso %s"
-#: ../../mod/follow.php:61
+#: ../../mod/item.php:871
msgid ""
-"The profile address specified belongs to a network which has been disabled "
-"on this site."
+"Please contact the sender by replying to this post if you do not wish to "
+"receive these messages."
msgstr ""
-"L'indirizzo del profilo specificato appartiene a un network che è stato "
-"disabilitato su questo sito."
+"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi "
+"messaggi."
-#: ../../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/item.php:873
+#, php-format
+msgid "%s posted an update."
+msgstr "%s ha inviato un aggiornamento."
-#: ../../mod/follow.php:122
-msgid "Unable to retrieve contact information."
-msgstr "Impossibile recuperare informazioni sul contatto."
+#: ../../mod/tagrm.php:41
+msgid "Tag removed"
+msgstr "TAg rimosso"
-#: ../../mod/follow.php:168
-msgid "following"
-msgstr "segue"
+#: ../../mod/tagrm.php:79
+msgid "Remove Item Tag"
+msgstr "Rimuovi tag dall'elemento"
-#: ../../mod/display.php:105
-msgid "Item has been removed."
-msgstr "L'elemento è stato rimosso."
+#: ../../mod/tagrm.php:81
+msgid "Select a tag to remove: "
+msgstr "Seleziona un tag da rimuovere: "
-#: ../../mod/dfrn_notify.php:353
-msgid "New mail received at "
-msgstr "Nuova mail ricevuta su "
+#: ../../mod/tagrm.php:93
+msgid "Remove"
+msgstr "Rimuovi"
-#: ../../mod/apps.php:6
-msgid "Applications"
-msgstr "Applicazioni"
+#: ../../mod/message.php:23
+msgid "No recipient selected."
+msgstr "Nessun destinatario selezionato."
-#: ../../mod/apps.php:11
-msgid "No installed applications."
-msgstr "Nessuna applicazione installata."
+#: ../../mod/message.php:26
+msgid "Unable to locate contact information."
+msgstr "Impossibile trovare le informazioni del contatto."
-#: ../../mod/search.php:26 ../../include/text.php:610 ../../include/nav.php:69
-msgid "Search"
-msgstr "Cerca"
+#: ../../mod/message.php:29
+msgid "Message could not be sent."
+msgstr "Il messaggio non puo' essere inviato."
-#: ../../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/message.php:31
+msgid "Message sent."
+msgstr "Messaggio inviato."
-#: ../../mod/profiles.php:28
-msgid "Profile Name is required."
-msgstr "Il Nome Profilo è richiesto ."
+#: ../../mod/message.php:51
+msgid "Inbox"
+msgstr "In arrivo"
-#: ../../mod/profiles.php:198
-msgid "Profile updated."
-msgstr "Profilo aggiornato."
+#: ../../mod/message.php:56
+msgid "Outbox"
+msgstr "Inviati"
-#: ../../mod/profiles.php:253
-msgid "Profile deleted."
-msgstr "Profilo elminato."
+#: ../../mod/message.php:61
+msgid "New Message"
+msgstr "Nuovo messaggio"
-#: ../../mod/profiles.php:269 ../../mod/profiles.php:300
-msgid "Profile-"
-msgstr "Profilo-"
+#: ../../mod/message.php:87
+msgid "Message deleted."
+msgstr "Messaggio cancellato."
-#: ../../mod/profiles.php:288 ../../mod/profiles.php:327
-msgid "New profile created."
-msgstr "Nuovo profilo creato."
+#: ../../mod/message.php:103
+msgid "Conversation removed."
+msgstr "Conversazione rimossa."
-#: ../../mod/profiles.php:306
-msgid "Profile unavailable to clone."
-msgstr "Impossibile duplicare il plrofilo."
+#: ../../mod/message.php:119 ../../include/conversation.php:767
+msgid "Please enter a link URL:"
+msgstr "Inserisci l'indirizzo del link:"
-#: ../../mod/profiles.php:353
-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/message.php:127
+msgid "Send Private Message"
+msgstr "Invia messaggio privato"
-#: ../../mod/profiles.php:371
-msgid "Edit Profile Details"
-msgstr "Modifica i Dettagli del Profilo"
+#: ../../mod/message.php:128 ../../mod/message.php:261
+msgid "To:"
+msgstr "A:"
-#: ../../mod/profiles.php:373
-msgid "View this profile"
-msgstr "Visualizza questo profilo"
+#: ../../mod/message.php:129 ../../mod/message.php:262
+msgid "Subject:"
+msgstr "Oggetto:"
-#: ../../mod/profiles.php:374
-msgid "Create a new profile using these settings"
-msgstr "Crea un nuovo profilo usando queste impostazioni"
+#: ../../mod/message.php:170
+msgid "No messages."
+msgstr "Nessun messaggio."
-#: ../../mod/profiles.php:375
-msgid "Clone this profile"
-msgstr "Clona questo profilo"
+#: ../../mod/message.php:183
+msgid "Delete conversation"
+msgstr "Cancella conversazione"
-#: ../../mod/profiles.php:376
-msgid "Delete this profile"
-msgstr "Cancella questo profilo"
+#: ../../mod/message.php:186
+msgid "D, d M Y - g:i A"
+msgstr "D d M Y - G:i"
-#: ../../mod/profiles.php:377
-msgid "Profile Name:"
-msgstr "Nome del profilo:"
+#: ../../mod/message.php:213
+msgid "Message not available."
+msgstr "Messaggio non disponibile."
-#: ../../mod/profiles.php:378
-msgid "Your Full Name:"
-msgstr "Il tuo nome completo:"
+#: ../../mod/message.php:250
+msgid "Delete message"
+msgstr "Cancella messaggio"
-#: ../../mod/profiles.php:379
-msgid "Title/Description:"
-msgstr "Breve descrizione (es. titolo, posizione, altro):"
+#: ../../mod/message.php:260
+msgid "Send Reply"
+msgstr "Invia risposta"
-#: ../../mod/profiles.php:380
-msgid "Your Gender:"
-msgstr "Il tuo sesso:"
+#: ../../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:381
-#, php-format
-msgid "Birthday (%s):"
-msgstr "Compleanno (%s)"
+#: ../../mod/dfrn_confirm.php:243
+msgid "Unexpected response from remote site: "
+msgstr "Risposta dal sito remoto inaspettata: "
-#: ../../mod/profiles.php:382
-msgid "Street Address:"
-msgstr "Indirizzo:"
+#: ../../mod/dfrn_confirm.php:251
+msgid "Confirmation completed successfully."
+msgstr "Conferma completata con successo."
-#: ../../mod/profiles.php:383
-msgid "Locality/City:"
-msgstr "Località/Città:"
+#: ../../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:384
-msgid "Postal/Zip Code:"
-msgstr "CAP:"
+#: ../../mod/dfrn_confirm.php:265
+msgid "Temporary failure. Please wait and try again."
+msgstr "Errore temporaneo. Attendi e riprova."
-#: ../../mod/profiles.php:385
-msgid "Country:"
-msgstr "Nazione:"
+#: ../../mod/dfrn_confirm.php:272
+msgid "Introduction failed or was revoked."
+msgstr "La presentazione è fallita o è stata revocata."
-#: ../../mod/profiles.php:386
-msgid "Region/State:"
-msgstr "Regione/Stato:"
+#: ../../mod/dfrn_confirm.php:409
+msgid "Unable to set contact photo."
+msgstr "Impossibile impostare la foto del contatto."
-#: ../../mod/profiles.php:387
-msgid "<span class=\"heart\">&hearts;</span> Marital Status:"
-msgstr "<span class=\"heart\">&hearts;</span> Stato sentimentale:"
+#: ../../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:388
-msgid "Who: (if applicable)"
-msgstr "Con chi: (se possibile)"
+#: ../../mod/dfrn_confirm.php:530
+#, php-format
+msgid "No user record found for '%s' "
+msgstr "Nessun utente trovato per '%s'"
-#: ../../mod/profiles.php:389
-msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
-msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
+#: ../../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:390 ../../include/profile_advanced.php:90
-msgid "Sexual Preference:"
-msgstr "Preferenza sessuale:"
+#: ../../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:391
-msgid "Homepage URL:"
-msgstr "Indirizzo homepage:"
+#: ../../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:392 ../../include/profile_advanced.php:115
-msgid "Political Views:"
-msgstr "Orientamento politico:"
+#: ../../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:393
-msgid "Religious Views:"
-msgstr "Orientamento religioso:"
+#: ../../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 ""
+"L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe "
+"funzionare se provi ancora."
-#: ../../mod/profiles.php:394
-msgid "Public Keywords:"
-msgstr "Parole chiave pubbliche:"
+#: ../../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:395
-msgid "Private Keywords:"
-msgstr "Parole chiave private:"
+#: ../../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:396
-msgid "Example: fishing photography software"
-msgstr "Esempio: pesca fotografia programmazione"
+#: ../../mod/dfrn_confirm.php:701
+#, php-format
+msgid "Connection accepted at %s"
+msgstr "Connession accettata su %s"
-#: ../../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/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:398
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)"
+#: ../../mod/openid.php:79 ../../include/auth.php:217
+msgid "Welcome "
+msgstr "Benvenuto"
-#: ../../mod/profiles.php:399
-msgid "Tell us about yourself..."
-msgstr "Racconta di te..."
+#: ../../mod/openid.php:80 ../../include/auth.php:218
+msgid "Please upload a profile photo."
+msgstr "Carica una foto per il profilo."
-#: ../../mod/profiles.php:400
-msgid "Hobbies/Interests"
-msgstr "Hobbie/Interessi"
+#: ../../mod/openid.php:83 ../../include/auth.php:221
+msgid "Welcome back "
+msgstr "Bentornato "
-#: ../../mod/profiles.php:401
-msgid "Contact information and Social Networks"
-msgstr "Informazioni su contatti e Social network"
+#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
+#, php-format
+msgid "%s welcomes %s"
+msgstr "%s da il benvenuto a %s"
-#: ../../mod/profiles.php:402
-msgid "Musical interests"
-msgstr "Interessi musicali"
+#: ../../mod/viewcontacts.php:25 ../../include/text.php:567
+msgid "View Contacts"
+msgstr "Guarda contatti"
-#: ../../mod/profiles.php:403
-msgid "Books, literature"
-msgstr "Libri, letteratura"
+#: ../../mod/viewcontacts.php:40
+msgid "No contacts."
+msgstr "Nessuno contatto."
-#: ../../mod/profiles.php:404
-msgid "Television"
-msgstr "Televisione"
+#: ../../mod/group.php:27
+msgid "Group created."
+msgstr "Gruppo creato."
-#: ../../mod/profiles.php:405
-msgid "Film/dance/culture/entertainment"
-msgstr "Film/danza/cultura/intrattenimento"
+#: ../../mod/group.php:33
+msgid "Could not create group."
+msgstr "Impossibile creare il gruppo."
-#: ../../mod/profiles.php:406
-msgid "Love/romance"
-msgstr "Amore/romanticismo"
+#: ../../mod/group.php:43 ../../mod/group.php:123
+msgid "Group not found."
+msgstr "Gruppo non trovato."
-#: ../../mod/profiles.php:407
-msgid "Work/employment"
-msgstr "Lavoro/impiego"
+#: ../../mod/group.php:56
+msgid "Group name changed."
+msgstr "Il nome del gruppo è cambiato."
-#: ../../mod/profiles.php:408
-msgid "School/education"
-msgstr "Scuola/educazione"
+#: ../../mod/group.php:82
+msgid "Create a group of contacts/friends."
+msgstr "Crea un gruppo di amici/contatti."
-#: ../../mod/profiles.php:413
-msgid ""
-"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
-"be visible to anybody using the internet."
-msgstr ""
-"Questo è il tuo profilo <strong>publico</strong>.<br "
-"/><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
+#: ../../mod/group.php:83 ../../mod/group.php:166
+msgid "Group Name: "
+msgstr "Nome del gruppo:"
-#: ../../mod/profiles.php:423 ../../mod/directory.php:112
-msgid "Age: "
-msgstr "Età : "
+#: ../../mod/group.php:98
+msgid "Group removed."
+msgstr "Gruppo rimosso."
-#: ../../mod/profiles.php:458 ../../include/nav.php:109
-msgid "Profiles"
-msgstr "Profili"
+#: ../../mod/group.php:100
+msgid "Unable to remove group."
+msgstr "Impossibile rimuovere il gruppo."
-#: ../../mod/profiles.php:459
-msgid "Change profile photo"
-msgstr "Cambia la foto del profilo"
+#: ../../mod/group.php:165
+msgid "Group Editor"
+msgstr "Modifica gruppo"
-#: ../../mod/profiles.php:460
-msgid "Create New Profile"
-msgstr "Crea un nuovo profilo"
+#: ../../mod/group.php:179
+msgid "Members"
+msgstr "Membri"
-#: ../../mod/profiles.php:470
-msgid "Profile Image"
-msgstr "Immagine del Profilo"
+#: ../../mod/group.php:194
+msgid "All Contacts"
+msgstr "Tutti i Contatti"
-#: ../../mod/profiles.php:472
-msgid "visible to everybody"
-msgstr "visibile a tutti"
+#: ../../mod/attach.php:8
+msgid "Item not available."
+msgstr "Elemento non disponibile."
-#: ../../mod/profiles.php:473
-msgid "Edit visibility"
-msgstr "Modifica visibilità"
+#: ../../mod/attach.php:20
+msgid "Item was not found."
+msgstr "Elemento non trovato."
-#: ../../mod/directory.php:40
-msgid "Global Directory"
-msgstr "Elenco Globale"
+#: ../../mod/common.php:34
+msgid "Common Friends"
+msgstr "Amici in comune"
-#: ../../mod/directory.php:46
-msgid "Normal site view"
-msgstr "Vista normale"
+#: ../../mod/common.php:42
+msgid "No friends in common."
+msgstr "Non ci sono amici in comune."
-#: ../../mod/directory.php:48
-msgid "View all site entries"
-msgstr "Visualizza tutte le voci del sito"
+#: ../../mod/match.php:10
+msgid "Profile Match"
+msgstr "Profili combacianti"
-#: ../../mod/directory.php:56
-msgid "Site Directory"
-msgstr "Elenco del Sito"
+#: ../../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/directory.php:115
-msgid "Gender: "
-msgstr "Genere:"
+#: ../../mod/community.php:21
+msgid "Not available."
+msgstr "Non disponibile."
-#: ../../mod/directory.php:141
-msgid "No entries (some entries may be hidden)."
-msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
+#: ../../mod/community.php:30 ../../include/nav.php:97
+msgid "Community"
+msgstr "Comunità"
-#: ../../mod/invite.php:35
-#, php-format
-msgid "%s : Not a valid email address."
-msgstr "%s: Non è un indirizzo email valido."
+#: ../../mod/community.php:87
+msgid ""
+"Shared content is covered by the <a "
+"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
+"Attribution 3.0</a> license."
+msgstr ""
+"Il contenuto in comune è coperto dalla licenza <a "
+"href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons"
+" Attribuzione 3.0</a>."
-#: ../../mod/invite.php:59
-#, php-format
-msgid "Please join my network on %s"
-msgstr "Unisciti al mio social network su %s"
+#: ../../addon/tumblr/tumblr.php:35
+msgid "Post to Tumblr"
+msgstr "Pubblica su Tumblr"
-#: ../../mod/invite.php:69
-#, php-format
-msgid "%s : Message delivery failed."
-msgstr "%s: Consegna del messaggio fallita."
+#: ../../addon/tumblr/tumblr.php:66
+msgid "Tumblr Post Settings"
+msgstr "Impostazioni di invio a Tumblr"
-#: ../../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."
+#: ../../addon/tumblr/tumblr.php:68
+msgid "Enable Tumblr Post Plugin"
+msgstr "Abilita Plugin Tumblr"
-#: ../../mod/invite.php:92
-msgid "You have no more invitations available"
-msgstr "Non hai altri inviti disponibili"
+#: ../../addon/tumblr/tumblr.php:73
+msgid "Tumblr login"
+msgstr "Tumblr login"
-#: ../../mod/invite.php:99
-msgid "Send invitations"
-msgstr "Invia inviti"
+#: ../../addon/tumblr/tumblr.php:78
+msgid "Tumblr password"
+msgstr "Tumblr password"
-#: ../../mod/invite.php:100
-msgid "Enter email addresses, one per line:"
-msgstr "Inserisci gli indirizzi email, uno per riga:"
+#: ../../addon/tumblr/tumblr.php:83
+msgid "Post to Tumblr by default"
+msgstr "Pubblica su Tumblr di default"
-#: ../../mod/invite.php:102
-#, php-format
-msgid "Please join my social network on %s"
-msgstr "Unisciti al mio social network su %s"
+#: ../../addon/tumblr/tumblr.php:174 ../../addon/wppost/wppost.php:171
+msgid "Post from Friendica"
+msgstr "Messaggio da Friendica"
-#: ../../mod/invite.php:103
-msgid "To accept this invitation, please visit:"
-msgstr "Per accettare questo invito visita:"
+#: ../../addon/twitter/twitter.php:78
+msgid "Post to Twitter"
+msgstr "Inva a Twitter"
-#: ../../mod/invite.php:104
-msgid "You will need to supply this invitation code: $invite_code"
-msgstr "Sarà necessario fornire questo codice invito: $ invite_code"
+#: ../../addon/twitter/twitter.php:123
+msgid "Twitter settings updated."
+msgstr "Impostazioni di Twitter aggiornate."
-#: ../../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:"
+#: ../../addon/twitter/twitter.php:145
+msgid "Twitter Posting Settings"
+msgstr "Impostazioni Invio a Twitter"
-#: ../../mod/dfrn_confirm.php:233
-msgid "Response from remote site was not understood."
-msgstr "La risposta dal sito remota non è stata capita."
+#: ../../addon/twitter/twitter.php:152
+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."
-#: ../../mod/dfrn_confirm.php:242
-msgid "Unexpected response from remote site: "
-msgstr "Risposta dal sito remoto inaspettata: "
+#: ../../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 <strong>public</strong> 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 <strong>pubblici</strong> verranno inviati anche su Twitter."
-#: ../../mod/dfrn_confirm.php:250
-msgid "Confirmation completed successfully."
-msgstr "Conferma completata con successo."
+#: ../../addon/twitter/twitter.php:172
+msgid "Log in with Twitter"
+msgstr "Accedi con Twitter"
-#: ../../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/twitter/twitter.php:174
+msgid "Copy the PIN from Twitter here"
+msgstr "Copia il PIN da Twitter qui"
-#: ../../mod/dfrn_confirm.php:264
-msgid "Temporary failure. Please wait and try again."
-msgstr "Errore temporaneo. Attendi e riprova."
+#: ../../addon/twitter/twitter.php:188 ../../addon/statusnet/statusnet.php:337
+msgid "Currently connected to: "
+msgstr "Al momento collegato con:"
-#: ../../mod/dfrn_confirm.php:271
-msgid "Introduction failed or was revoked."
-msgstr "La presentazione è fallita o è stata revocata."
+#: ../../addon/twitter/twitter.php:189
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated Twitter account. You can choose to do so by default (here) or for"
+" every posting separately in the posting options when writing the entry."
+msgstr ""
+"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere "
+"inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) "
+"o ogni volta che invii, nelle impostazioni di privacy del messaggio."
-#: ../../mod/dfrn_confirm.php:393
-msgid "Unable to set contact photo."
-msgstr "Impossibile impostare la foto del contatto."
+#: ../../addon/twitter/twitter.php:191
+msgid "Allow posting to Twitter"
+msgstr "Permetti l'invio a Twitter"
-#: ../../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:194
+msgid "Send public postings to Twitter by default"
+msgstr "Invia sempre i messaggi pubblici 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:199 ../../addon/statusnet/statusnet.php:348
+msgid "Clear OAuth configuration"
+msgstr "Cancella la configurazione OAuth"
-#: ../../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:301
+msgid "Consumer key"
+msgstr "Consumer key"
-#: ../../mod/dfrn_confirm.php:528
-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."
+#: ../../addon/twitter/twitter.php:302
+msgid "Consumer secret"
+msgstr "Consumer secret"
-#: ../../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."
+#: ../../addon/statusnet/statusnet.php:141
+msgid "Post to StatusNet"
+msgstr "Invia a StatusNet"
-#: ../../mod/dfrn_confirm.php:578
+#: ../../addon/statusnet/statusnet.php:183
msgid ""
-"The ID provided by your system is a duplicate on our system. It should work "
-"if you try again."
+"Please contact your site administrator.<br />The provided API URL is not "
+"valid."
msgstr ""
-"L'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe "
-"funzionare se provi ancora."
+"Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è "
+"valido."
-#: ../../mod/dfrn_confirm.php:589
-msgid "Unable to set your contact credentials on our system."
+#: ../../addon/statusnet/statusnet.php:211
+msgid "We could not contact the StatusNet API with the Path you entered."
msgstr ""
-"Impossibile impostare le credenziali del tuo contatto sul nostro sistema."
-
-#: ../../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"
-
-#: ../../mod/dfrn_confirm.php:672
-#, php-format
-msgid "Connection accepted at %s"
-msgstr "Connession accettata su %s"
+"Non possiamo conttattare le API di StatusNet con il percorso che hai "
+"inserito."
-#: ../../addon/facebook/facebook.php:314
-msgid "Facebook disabled"
-msgstr "Facebook disabilitato"
+#: ../../addon/statusnet/statusnet.php:238
+msgid "StatusNet settings updated."
+msgstr "Impostazioni StatusNet aggiornate."
-#: ../../addon/facebook/facebook.php:319
-msgid "Updating contacts"
-msgstr "Aggiornamento contatti"
+#: ../../addon/statusnet/statusnet.php:261
+msgid "StatusNet Posting Settings"
+msgstr "Impostazioni di invio a StatusNet"
-#: ../../addon/facebook/facebook.php:328
-msgid "Facebook API key is missing."
-msgstr "Chiave API Facebook mancante."
+#: ../../addon/statusnet/statusnet.php:275
+msgid "Globally Available StatusNet OAuthKeys"
+msgstr "Chiavi OAuth StatusNet disponibili sul sito"
-#: ../../addon/facebook/facebook.php:335
-msgid "Facebook Connect"
-msgstr "Facebook Connect"
+#: ../../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 ""
+"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:341
-msgid "Install Facebook connector for this account."
-msgstr "Installa Facebook connector per questo account"
+#: ../../addon/statusnet/statusnet.php:284
+msgid "Provide your own OAuth Credentials"
+msgstr "Fornisci le tue credenziali OAuth"
-#: ../../addon/facebook/facebook.php:348
-msgid "Remove Facebook connector"
-msgstr "Rimuovi Facebook connector"
+#: ../../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.<br />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 ""
+"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.<br />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:354
-msgid "Post to Facebook by default"
-msgstr "Invia su Facebook di default"
+#: ../../addon/statusnet/statusnet.php:287
+msgid "OAuth Consumer Key"
+msgstr "OAuth Consumer Key"
-#: ../../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:290
+msgid "OAuth Consumer Secret"
+msgstr "OAuth Consumer Secret"
-#: ../../addon/facebook/facebook.php:363
-msgid "Warning: Your Facebook privacy settings can not be imported."
-msgstr ""
-"Attenzione: Le impostazioni di privacy di Facebook non possono essere "
-"importate."
+#: ../../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:364
+#: ../../addon/statusnet/statusnet.php:314
msgid ""
-"Linked Facebook items <strong>may</strong> be publicly visible, depending on"
-" your privacy settings for this website/account."
+"To connect to your StatusNet account click the button below to get a "
+"security code from StatusNet which you have to copy into the input box below"
+" and submit the form. Only your <strong>public</strong> posts will be posted"
+" to StatusNet."
msgstr ""
-"Gli elementi da Facebook <strong>possono</strong> essere visibili "
-"pubblicamente, a seconda delle tue impostazioni di privacy per questo "
-"sito/account"
+"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 "
+"<strong>pubblci</strong> saranno inviati a StatusNet."
-#: ../../addon/facebook/facebook.php:419
-msgid "Facebook"
-msgstr "Facebook"
+#: ../../addon/statusnet/statusnet.php:315
+msgid "Log in with StatusNet"
+msgstr "Login con StatuNet"
-#: ../../addon/facebook/facebook.php:420
-msgid "Facebook Connector Settings"
-msgstr "Impostazioni Connettore Facebook"
+#: ../../addon/statusnet/statusnet.php:317
+msgid "Copy the security code from StatusNet here"
+msgstr "Copia il codice di sicurezza da StatusNet qui"
-#: ../../addon/facebook/facebook.php:434
-msgid "Post to Facebook"
-msgstr "Invia a Facebook"
+#: ../../addon/statusnet/statusnet.php:323
+msgid "Cancel Connection Process"
+msgstr "Annulla il processo di connessione"
-#: ../../addon/facebook/facebook.php:507
-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:325
+msgid "Current StatusNet API is"
+msgstr "Le API StatusNet correnti sono"
-#: ../../addon/facebook/facebook.php:580
-msgid "Image: "
-msgstr "Immagine: "
+#: ../../addon/statusnet/statusnet.php:326
+msgid "Cancel StatusNet Connection"
+msgstr "Annulla la connessione a StatusNet"
-#: ../../addon/facebook/facebook.php:656
-msgid "View on Friendika"
-msgstr "Vedi su Friendika"
+#: ../../addon/statusnet/statusnet.php:338
+msgid ""
+"If enabled all your <strong>public</strong> postings can be posted to the "
+"associated StatusNet account. You can choose to do so by default (here) or "
+"for every posting separately in the posting options when writing the entry."
+msgstr ""
+"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere "
+"inviati all'account StatusNet associato. Puoi scegliere di farlo sempre "
+"(qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
-#: ../../addon/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/facebook/facebook.php:364
+msgid "Install Facebook connector for this account."
+msgstr "Installa Facebook connector per questo account"
+
+#: ../../addon/facebook/facebook.php:371
+msgid "Remove Facebook connector"
+msgstr "Rimuovi Facebook connector"
-#: ../../addon/statusnet/statusnet.php:175
+#: ../../addon/facebook/facebook.php:376
msgid ""
-"Please contact your site administrator.<br />The provided API URL is not "
-"valid."
+"Re-authenticate [This is necessary whenever your Facebook password is "
+"changed.]"
msgstr ""
-"Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è "
-"valido."
+"Ri-autentica [Questo è necessario ogni volta che cambia la password di "
+"Facebook.]"
-#: ../../addon/statusnet/statusnet.php:203
-msgid "We could not contact the StatusNet API with the Path you entered."
+#: ../../addon/facebook/facebook.php:383
+msgid "Post to Facebook by default"
+msgstr "Invia su Facebook di default"
+
+#: ../../addon/facebook/facebook.php:387
+msgid "Link all your Facebook friends and conversations on this website"
msgstr ""
-"Non possiamo conttattare le API di StatusNet con il percorso che hai "
-"inserito."
+"Collega tutti i tuoi amici di Facebook e le conversazioni su questo sito"
-#: ../../addon/statusnet/statusnet.php:230
-msgid "StatusNet settings updated."
-msgstr "Impostazioni StatusNet aggiornate."
+#: ../../addon/facebook/facebook.php:389
+msgid ""
+"Facebook conversations consist of your <em>profile wall</em> and your friend"
+" <em>stream</em>."
+msgstr ""
+"Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e"
+" dai messaggi dei tuoi amici"
-#: ../../addon/statusnet/statusnet.php:253
-msgid "StatusNet Posting Settings"
-msgstr "Impostazioni di invio a StatusNet"
+#: ../../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:267
-msgid "Globally Available StatusNet OAuthKeys"
-msgstr "Chiavi OAuth StatusNet disponibili sul sito"
+#: ../../addon/facebook/facebook.php:391
+msgid ""
+"The following settings determine the privacy of your Facebook profile wall "
+"on this website."
+msgstr ""
+"Le seguenti impostazioni determinano la privacy della vostra bacheca di "
+"Facebook su questo sito."
-#: ../../addon/statusnet/statusnet.php:268
+#: ../../addon/facebook/facebook.php:395
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)."
+"On this website your Facebook profile wall conversations will only be "
+"visible to you"
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)."
+"Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno "
+"visibili solo a te"
-#: ../../addon/statusnet/statusnet.php:276
-msgid "Provide your own OAuth Credentials"
-msgstr "Fornisci le tue credenziali OAuth"
+#: ../../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:277
+#: ../../addon/facebook/facebook.php:402
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.<br />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."
+"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 ""
-"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.<br />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."
+"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:279
-msgid "OAuth Consumer Key"
-msgstr "OAuth Consumer Key"
+#: ../../addon/facebook/facebook.php:469
+#: ../../include/contact_selectors.php:78
+msgid "Facebook"
+msgstr "Facebook"
-#: ../../addon/statusnet/statusnet.php:282
-msgid "OAuth Consumer Secret"
-msgstr "OAuth Consumer Secret"
+#: ../../addon/facebook/facebook.php:470
+msgid "Facebook Connector Settings"
+msgstr "Impostazioni Connettore Facebook"
-#: ../../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:484
+msgid "Post to Facebook"
+msgstr "Invia a Facebook"
-#: ../../addon/statusnet/statusnet.php:306
+#: ../../addon/facebook/facebook.php:561
msgid ""
-"To connect to your StatusNet account click the button below to get a "
-"security code from StatusNet which you have to copy into the input box below"
-" and submit the form. Only your <strong>public</strong> posts will be posted"
-" to StatusNet."
-msgstr ""
-"Per collegare il tuo account StatusNet, clicca sul bottone 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 "
-"<strong>pubblci</strong> saranno inviati a StatusNet."
+"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:307
-msgid "Log in with StatusNet"
-msgstr "Login con StatuNet"
+#: ../../addon/facebook/facebook.php:624
+msgid "Image: "
+msgstr "Immagine: "
-#: ../../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:700
+msgid "View on Friendika"
+msgstr "Vedi su Friendika"
-#: ../../addon/statusnet/statusnet.php:315
-msgid "Cancel Connection Process"
-msgstr "Annulla il processo di connessione"
+#: ../../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:317
-msgid "Current StatusNet API is"
-msgstr "Le API StatusNet correnti sono"
+#: ../../addon/widgets/widgets.php:55
+msgid "Generate new key"
+msgstr "Genera una nuova chiave"
-#: ../../addon/statusnet/statusnet.php:318
-msgid "Cancel StatusNet Connection"
-msgstr "Annulla la connessione a StatusNet"
+#: ../../addon/widgets/widgets.php:58
+msgid "Widgets key"
+msgstr "Chiave Widget"
-#: ../../addon/statusnet/statusnet.php:329 ../../addon/twitter/twitter.php:180
-msgid "Currently connected to: "
-msgstr "Al momento collegato con:"
+#: ../../addon/widgets/widgets.php:60
+msgid "Widgets available"
+msgstr "Widget disponibili"
-#: ../../addon/statusnet/statusnet.php:330
-msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated StatusNet account. You can choose to do so by default (here) or "
-"for every posting separately in the posting options when writing the entry."
-msgstr ""
-"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere "
-"inviati all'account StatusNet associato. Puoi scegliere di farlo sempre "
-"(qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio."
+#: ../../addon/widgets/widget_friends.php:40
+msgid "Connect on Friendika!"
+msgstr "Connettiti su Friendika!"
-#: ../../addon/statusnet/statusnet.php:332
-msgid "Allow posting to StatusNet"
-msgstr "Permetti l'invio a StatusNet"
+#: ../../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:335
-msgid "Send public postings to StatusNet by default"
-msgstr "Di default invia i messaggi pubblici a StatusNet"
+#: ../../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/statusnet/statusnet.php:340 ../../addon/twitter/twitter.php:191
-msgid "Clear OAuth configuration"
-msgstr "Cancella la configurazione OAuth"
+#: ../../addon/buglink/buglink.php:15
+msgid "Report Bug"
+msgstr "Segnala un Bug"
-#: ../../addon/statusnet/statusnet.php:460
-msgid "API URL"
-msgstr "API URL"
+#: ../../addon/nsfw/nsfw.php:47
+msgid "\"Not Safe For Work\" Settings"
+msgstr "Impostazioni \"Non sicuro per il lavoro\" (NSFW)"
-#: ../../addon/statusnet/statusnet.php:461
-msgid "Consumer Secret"
-msgstr "Consumer Secret"
+#: ../../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/statusnet/statusnet.php:462
-msgid "Consumer Key"
-msgstr "Consumer Key"
+#: ../../addon/nsfw/nsfw.php:66
+msgid "NSFW Settings saved."
+msgstr "Impostazioni NSFW salvate."
-#: ../../addon/piwik/piwik.php:77
-msgid "Piwik Base URL"
-msgstr "Piwik Base URL"
+#: ../../addon/nsfw/nsfw.php:102
+#, php-format
+msgid "%s - Click to open/close"
+msgstr "%s - Clicca per aprire / chiudere"
-#: ../../addon/piwik/piwik.php:78
-msgid "Site ID"
-msgstr "Site ID"
+#: ../../addon/communityhome/communityhome.php:29
+msgid "OpenID"
+msgstr "OpenID"
-#: ../../addon/piwik/piwik.php:79
-msgid "Show opt-out cookie link?"
-msgstr "Mostra il link per il cookie opt-out?"
+#: ../../addon/communityhome/communityhome.php:38
+msgid "Last users"
+msgstr "Ultimi utenti"
-#: ../../addon/twitter/twitter.php:70
-msgid "Post to Twitter"
-msgstr "Inva a Twitter"
+#: ../../addon/communityhome/communityhome.php:81
+msgid "Most active users"
+msgstr "Utenti più attivi"
-#: ../../addon/twitter/twitter.php:115
-msgid "Twitter settings updated."
-msgstr "Impostazioni di Twitter aggiornate."
+#: ../../addon/communityhome/communityhome.php:98
+msgid "Last photos"
+msgstr "Ultime foto"
-#: ../../addon/twitter/twitter.php:137
-msgid "Twitter Posting Settings"
-msgstr "Impostazioni Invio a Twitter"
+#: ../../addon/communityhome/communityhome.php:133
+msgid "Last likes"
+msgstr "Ultimi \"mi piace\""
-#: ../../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:155
+#: ../../include/conversation.php:23
+msgid "event"
+msgstr "l'evento"
-#: ../../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 <strong>public</strong> 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 <strong>pubblici</strong> verranno inviati anche su Twitter."
+#: ../../addon/membersince/membersince.php:17
+#, php-format
+msgid " - Member since: %s"
+msgstr "- Iscritto dal: %s"
-#: ../../addon/twitter/twitter.php:164
-msgid "Log in with Twitter"
-msgstr "Accedi con Twitter"
+#: ../../addon/randplace/randplace.php:170
+msgid "Randplace Settings"
+msgstr "Impostazioni Randplace"
-#: ../../addon/twitter/twitter.php:166
-msgid "Copy the PIN from Twitter here"
-msgstr "Copia il PIN da Twitter qui"
+#: ../../addon/randplace/randplace.php:172
+msgid "Enable Randplace Plugin"
+msgstr "Abilita il plugin Randplace"
-#: ../../addon/twitter/twitter.php:181
+#: ../../addon/piwik/piwik.php:70
msgid ""
-"If enabled all your <strong>public</strong> postings can be posted to the "
-"associated Twitter account. You can choose to do so by default (here) or for"
-" every posting separately in the posting options when writing the entry."
+"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
+"analytics tool."
msgstr ""
-"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere "
-"inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) "
-"o ogni volta che invii, nelle impostazioni di privacy del messaggio."
-
-#: ../../addon/twitter/twitter.php:183
-msgid "Allow posting to Twitter"
-msgstr "Permetti l'invio a Twitter"
-
-#: ../../addon/twitter/twitter.php:186
-msgid "Send public postings to Twitter by default"
-msgstr "Invia sempre i messaggi pubblici a Twitter"
+"Questo sito è monitorato con lo strumento di analisi <a "
+"href='http://www.piwik.org'>Piwik</a>."
-#: ../../addon/twitter/twitter.php:282
-msgid "Consumer key"
-msgstr "Consumer key"
-
-#: ../../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 <a href='%s'>can"
+" set a cookie to prevent Piwik from tracking further visits of the site</a> "
+"(opt-out)."
+msgstr ""
+"Se non vuoi che le tue visite vengono registrate in questo modo è possibile"
+" <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori "
+"visite del sito</a> (opt-out)."
-#: ../../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 "<span class=\"heart\">&hearts;</span> Status:"
-msgstr "<span class=\"heart\">&hearts;</span> 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 "<span %1$s>%2$d people</span> like this."
msgstr "Piace a <span %1$s>%2$d persone</span>."
-#: ../../include/conversation.php:669
+#: ../../include/conversation.php:736
#, php-format
msgid "<span %1$s>%2$d people</span> don't like this."
msgstr "Non piace a <span %1$s>%2$d persone</span>."
-#: ../../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 <strong>everybody</strong>"
msgstr "Vsibile a <strong>tutti</strong>"
-#: ../../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 "
+"<strong>may</strong> apply to this group and any future members. If this is "
+"not what you intended, please create another group with a different name."
+msgstr ""
+"Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti "
+"su un elemento <strong>possono</strong> essere applicati a questo gruppo e "
+"tutti i membri futuri. Se questo non è ciò che si intende, si prega di "
+"creare un altro gruppo con un nome diverso."
+
+#: ../../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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working."] = "<strong>ATTENZIONE: Per utenti esperti!</strong> Se inserisci informazioni non corrette le tue comunicazioni con questo contatto smetteranno di funzionare.";
-$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
-$a->strings["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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
+$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
+$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
+$a->strings["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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
+$a->strings["Age: "] = "Età : ";
+$a->strings["Edit/Manage Profiles"] = "Modifica / Gestisci profili";
+$a->strings["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 <strong>not published</strong>."] = "Il profilo <strong>non è pubblicato</strong>.";
+$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 <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."] = "Il contenuto in comune è coperto dalla licenza <a href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons Attribuzione 3.0</a>.";
+$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 <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Nella tua pagina <em>Impostazioni</em> - 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 <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
+$a->strings["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 <em>Connect</em> 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 <em>Connetti</em>.";
+$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
+$a->strings["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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
+$a->strings["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,50 +328,123 @@ $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["%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["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["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["Your introduction has been sent."] = "La tua presentazione è stata inviata.";
-$a->strings["Please login to confirm introduction."] = "Accedi per confermare la presentazione.";
-$a->strings["Incorrect identity currently logged in. Please login to <strong>this</strong> profile."] = "Accesso con identà incorretta. Accedi a <strong>questo</strong> 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["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["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["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 URL settings"] = "Impostazioni riparazione URL";
+$a->strings["View conversations"] = "Vedi conversazioni";
+$a->strings["Delete contact"] = "Rimuovi contatto";
+$a->strings["Last update:"] = "Ultimo aggiornamento:";
+$a->strings["Update public posts"] = "Aggiorna messaggi pubblici";
+$a->strings["Update now"] = "Aggiorna adesso";
+$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["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";
+$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
+$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
+$a->strings["Name too short."] = "Il Nome è troppo corto.";
+$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
+$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
+$a->strings["Not a valid email address."] = "Indirizzo email invaildo.";
+$a->strings["Cannot use that email."] = "Questa email non si puo' usare.";
+$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
+$a->strings["Nickname is already registered. Please choose another."] = "Soprannome già registrato. Scegline un'altro.";
+$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 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 (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?";
+$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito.";
+$a->strings["Your invitation ID: "] = "L'ID del tuo invito:";
+$a->strings["Registration"] = "Registrazione";
+$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo Nome Completo (p.e. Mario Rossi): ";
+$a->strings["Your Email Address: "] = "Il tuo Indirizzo Email: ";
+$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
+$a->strings["Choose a nickname: "] = "Scegli un soprannome: ";
+$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";
@@ -202,17 +484,49 @@ $a->strings["Please check with your site documentation or support people to see
$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["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["Ignore"] = "Ignora";
-$a->strings["Pending Friend/Connect Notifications"] = "Richieste di amicizia/connessione in attesa";
+$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: ";
@@ -224,72 +538,83 @@ $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["Invite Friends"] = "Invita Amici";
-$a->strings["%d invitation available"] = array(
- 0 => "%d invito disponibile",
- 1 => "%d inviti disponibili",
+$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["<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact may stop working."] = "<strong>ATTENZIONE: Queste sono impostazioni avanzate</strong> e se inserisci informazioni errate le tue comunicazioni con questo contatto potrebbero non funzionare più";
+$a->strings["Please use your browser 'Back' button <strong>now</strong> if you are uncertain what to do on this page."] = "Usa <strong>ora</strong> il tasto 'Indietro' del tuo browser se non sei sicuro di cosa fare in questa pagina.";
+$a->strings["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["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["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["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["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["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 <em>reputation</em> to guide them."] = "Puoi aiutarli a scegliere se interagire o no con questa persona fornendo una <em>reputazione</em> 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["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["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["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["Finding: "] = "Cerco: ";
-$a->strings["Find"] = "Trova";
-$a->strings["Edit contact"] = "Modifca contatto";
+$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 <strong>this</strong> profile."] = "Accesso con identà incorretta. Accedi a <strong>questo</strong> 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["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";
@@ -299,238 +624,35 @@ $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 <strong>not published</strong>."] = "Il profilo <strong>non è pubblicato</strong>.";
-$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 <em>Settings</em> page - change your initial password. Also make a note of your Identity Address. This will be useful in making friends."] = "Nella tua pagina <em>Impostazioni</em> - 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 <strong>default</strong> profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Modifica il tuo profilo <strong>predefinito</strong> a piacimento. Rivedi le impostazioni per nascondere la tua lista di amici e nascondere il profilo ai visitatori sconosciuti.";
-$a->strings["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 <em>Connect</em> 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 <em>Connetti</em>.";
-$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a <em>Connect</em> or <em>Follow</em> link on their profile page. Provide your own Identity Address if requested."] = "La pagina Elenco ti permette di trovare altre persone in questa rete o in altri siti. Cerca un link <em>Connetti</em> o <em>Segui</em> nella loro pagina del profilo. Inserisci il tuo Indirizzo Identità, se richiesto.";
-$a->strings["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 <strong>help</strong> pages may be consulted for detail on other program features and resources."] = "Le nostre pagine della <strong>guida</strong> possono essere consultate per avere dettagli su altre caratteristiche del programma e altre risorse.";
-$a->strings["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["An invitation is required."] = "E' richiesto un invito.";
-$a->strings["Invitation could not be verified."] = "L'invito non puo' essere verificato.";
-$a->strings["Invalid OpenID url"] = "Url OpenID non valido";
-$a->strings["Please enter the required information."] = "Inserisci le informazioni richieste.";
-$a->strings["Please use a shorter name."] = "Usa un nome più corto.";
-$a->strings["Name too short."] = "Il Nome è troppo corto.";
-$a->strings["That doesn't appear to be your full (First Last) name."] = "Questo non sembra essere il tuo nome completo (Nome Cognome).";
-$a->strings["Your email domain is not among those allowed on this site."] = "Il dominio della tua email non è tra quelli autorizzati su questo sito.";
-$a->strings["Not a valid email address."] = "Indirizzo email invaildo.";
-$a->strings["Cannot use that email."] = "Questa email non si puo' usare.";
-$a->strings["Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and must also begin with a letter."] = "Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.";
-$a->strings["Nickname is already registered. Please choose another."] = "Soprannome già registrato. Scegline un'altro.";
-$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["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?";
-$a->strings["Membership on this site is by invitation only."] = "La registrazione su questo sito è solo su invito.";
-$a->strings["Your invitation ID: "] = "L'ID del tuo invito:";
-$a->strings["Registration"] = "Registrazione";
-$a->strings["Your Full Name (e.g. Joe Smith): "] = "Il tuo Nome Completo (p.e. Mario Rossi): ";
-$a->strings["Your Email Address: "] = "Il tuo Indirizzo Email: ";
-$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be '<strong>nickname@\$sitename</strong>'."] = "Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo profilo sarà '<strong>soprannome@\$sitename</strong>'.";
-$a->strings["Choose a nickname: "] = "Scegli un soprannome: ";
-$a->strings["Register"] = "Regitrati";
-$a->strings["status"] = "lo stato";
-$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s";
-$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s";
-$a->strings["This is Friendika version"] = "Questo è Friendika versione";
+$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 <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0 license</a>"] = "I contenuti condivisi nel network Friendika è rilasciato sotto la licenza <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0 license</a>";
-$a->strings["Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn more about the Friendika project."] = "Visita <a href=\"http://project.friendika.com\">Project.Friendika.com</a> per saperne di più sul progetto Friendika.";
+$a->strings["Please visit <a href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn more about the Friendica project."] = "Visita <a href=\"http://friendica.com\">friendica.com</a> per saperne di più sul progetto Friendica.";
$a->strings["Bug reports and issues: please visit"] = "Segnalazioni di bug e problemi: visita";
-$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at 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["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span> Stato sentimentale:";
-$a->strings["Who: (if applicable)"] = "Con chi: (se possibile)";
-$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Esempio: cathy123, Cathy Williams, cathy@example.com";
-$a->strings["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 <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet."] = "Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.";
-$a->strings["Age: "] = "Età : ";
-$a->strings["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 <a href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons Attribution 3.0</a> license."] = "Il contenuto in comune è coperto dalla licenza <a href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons Attribuzione 3.0</a>.";
+$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 <strong>public</strong> 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 <strong>pubblici</strong> 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 <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
+$a->strings["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.<br />The provided API URL is not valid."] = "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido.";
+$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito.";
+$a->strings["StatusNet settings updated."] = "Impostazioni StatusNet aggiornate.";
+$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet";
+$a->strings["Globally Available StatusNet OAuthKeys"] = "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.<br />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.<br />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 <strong>public</strong> 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 <strong>pubblci</strong> 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 <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
+$a->strings["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!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito.";
+$a->strings["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 <strong>may</strong> be publicly visible, depending on your privacy settings for this website/account."] = "Gli elementi da Facebook <strong>possono</strong> 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 <em>profile wall</em> and your friend <em>stream</em>."] = "Le conversazione su Facebook sono composte dai i tuoi messsaggi in bacheca e dai messaggi dei tuoi amici";
+$a->strings["On this website, your Facebook friend stream is only visible to you."] = "Su questo sito, i messaggi dai vostri amici su Facebook è visibile solo a te.";
+$a->strings["The following settings determine the privacy of your Facebook profile wall on this website."] = "Le seguenti impostazioni determinano la privacy della vostra bacheca di Facebook su questo sito.";
+$a->strings["On this website your Facebook profile wall conversations will only be visible to you"] = "Su questo sito, le conversazioni sulla tua bacheca di Facebook saranno visibili solo a te";
+$a->strings["Do not import your Facebook profile wall conversations"] = "Non importare le conversazione sulla tua bacheca di Facebook";
+$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "Se scegli di collegare le conversazioni e lasci entrambi questi box non segnati, la tua bacheca di Facebook sarà fusa con la tua bacheca su questao sito, e le impostazioni di privacy su questo sito saranno usate per decidere chi potrà vedere le conversazioni.";
$a->strings["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 <a href='http://www.piwik.org'>Piwik</a> analytics tool."] = "Questo sito è monitorato con lo strumento di analisi <a href='http://www.piwik.org'>Piwik</a>.";
+$a->strings["If you do not want that your visits are logged this way you <a href='%s'>can set a cookie to prevent Piwik from tracking further visits of the site</a> (opt-out)."] = "Se non vuoi che le tue visite vengono registrate in questo modo è possibile <a href='%s'>impostare un cookie per evitare che Piwik rintracci ulteriori visite del sito</a> (opt-out).";
+$a->strings["Piwik Base URL"] = "Piwik Base URL";
+$a->strings["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!<br />Please add at least the <tt>owner</tt> variable to your config file. For other variables please refer to the README file of the addon."] = "Il plugin Impressum deve essere configurato!<br>Aggiungi almeno il Proprietario del sito.";
-$a->strings["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.<br />The provided API URL is not valid."] = "Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è valido.";
-$a->strings["We could not contact the StatusNet API with the Path you entered."] = "Non possiamo conttattare le API di StatusNet con il percorso che hai inserito.";
-$a->strings["StatusNet settings updated."] = "Impostazioni StatusNet aggiornate.";
-$a->strings["StatusNet Posting Settings"] = "Impostazioni di invio a StatusNet";
-$a->strings["Globally Available StatusNet OAuthKeys"] = "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.<br />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.<br />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 <strong>public</strong> 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 <strong>pubblci</strong> 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 <strong>public</strong> postings can be posted to the associated StatusNet account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account StatusNet associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
-$a->strings["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 <strong>public</strong> 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 <strong>pubblici</strong> 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 <strong>public</strong> postings can be posted to the associated Twitter account. You can choose to do so by default (here) or for every posting separately in the posting options when writing the entry."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> possono essere inviati all'account Twitter associato. Puoi scegliere di farlo sempre (qui) o ogni volta che invii, nelle impostazioni di privacy del messaggio.";
-$a->strings["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["<span class=\"heart\">&hearts;</span> Status:"] = "<span class=\"heart\">&hearts;</span> 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["<span %1\$s>%2\$d people</span> like this."] = "Piace a <span %1\$s>%2\$d persone</span>.";
@@ -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 <strong>everybody</strong>"] = "Vsibile a <strong>tutti</strong>";
-$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 <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo eliminato con questo nome è stato ricreato. I permessi esistenti su un elemento <strong>possono</strong> essere applicati a questo gruppo e tutti i membri futuri. Se questo non è ciò che si intende, si prega di creare un altro gruppo con un nome diverso.";
+$a->strings["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";
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 @@
<div class="wall-item-content" id="wall-item-content-$id" >
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
<div class="wall-item-title-end"></div>
- <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+ <div class="wall-item-body" id="wall-item-body-$id" >$body
+ <div class="body-tag">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
</div>
<div class="wall-item-author">
<a href="$profile_url" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
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 @@
<div class="wall-item-content" id="wall-item-content-$id" >
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
<div class="wall-item-title-end"></div>
- <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+ <div class="wall-item-body" id="wall-item-body-$id" >$body
+ <div class="body-tag">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
</div>
<div class="wall-item-author">
<a href="$profile_url" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
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;
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 @@
<div class="wall-item-content" id="wall-item-content-$id" >
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
<div class="wall-item-title-end"></div>
- <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+ <div class="wall-item-body" id="wall-item-body-$id" >$body
+ <div class="body-tag">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$id">
{{ 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 @@
<div class="wall-item-content" id="wall-item-content-$id" >
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
<div class="wall-item-title-end"></div>
- <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+ <div class="wall-item-body" id="wall-item-body-$id" >$body
+ <div class="body-tag">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$id">
{{ 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 @@
<div class="wall-item-content" id="wall-item-content-$id" >
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
<div class="wall-item-title-end"></div>
- <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+ <div class="wall-item-body" id="wall-item-body-$id" >$body
+ <div class="body-tag">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
</div>
<div class="wall-item-tools" id="wall-item-tools-$id">
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 @@
<div class="wall-item-content" id="wall-item-content-$id" >
<div class="wall-item-title" id="wall-item-title-$id">$title</div>
<div class="wall-item-title-end"></div>
- <div class="wall-item-body" id="wall-item-body-$id" >$body</div>
+ <div class="wall-item-body" id="wall-item-body-$id" >$body
+ <div class="body-tag">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
</div>
<div class="wall-item-author">
<a href="$profile_url" title="$linktitle" class="wall-item-name-link"><span class="wall-item-name$sparkle" id="wall-item-name-$id" >$name</span></a>
diff --git a/view/wall_item.tpl b/view/wall_item.tpl
index ef822750a..e3213b891 100644
--- a/view/wall_item.tpl
+++ b/view/wall_item.tpl
@@ -29,6 +29,15 @@
</div>
<div class="wall-item-bottom">
<div class="wall-item-links">
+ </div>
+ <div class="wall-item-tags">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
+ <div class="wall-item-bottom">
+ <div class="">
{{ if $plink }}<a class="icon s16 link" title="$plink.title" href="$plink.href">$plink.title</a>{{ endif }}
</div>
<div class="wall-item-actions">
@@ -56,7 +65,7 @@
<div class="wall-item-actions-tools">
{{ if $drop.dropping }}
- <input type="checkbox" title="$drop.select" name="itemselected[]" value="$id" />
+ <input type="checkbox" title="$drop.select" name="itemselected[]" class="item-select" value="$id" />
<a href="item/drop/$id" onclick="return confirmDelete();" class="icon delete s16" title="$drop.delete">$drop.delete</a>
{{ endif }}
{{ if $edpost }}
@@ -66,7 +75,13 @@
</div>
</div>
+ <div class="wall-item-bottom">
+ <div class="wall-item-links"></div>
+ <div class="wall-item-like" id="wall-item-like-$id">$like</div>
+ <div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
+ </div>
</div>
+
<div class="wall-item-comment-wrapper" >
$comment
</div>
diff --git a/view/wallwall_item.tpl b/view/wallwall_item.tpl
index 2429bc20f..e47014985 100644
--- a/view/wallwall_item.tpl
+++ b/view/wallwall_item.tpl
@@ -34,6 +34,15 @@
</div>
<div class="wall-item-bottom">
<div class="wall-item-links">
+ </div>
+ <div class="wall-item-tags">
+ {{ for $tags as $tag }}
+ <span class='tag'>$tag</span>
+ {{ endfor }}
+ </div>
+ </div>
+ <div class="wall-item-bottom">
+ <div class="wall-item-links">
{{ if $plink }}<a class="icon s16 link" title="$plink.title" href="$plink.href">$plink.title</a>{{ endif }}
</div>
<div class="wall-item-actions">
@@ -62,7 +71,7 @@
<div class="wall-item-actions-tools">
{{ if $drop.dropping }}
- <input type="checkbox" title="$drop.select" name="itemselected[]" value="$id" />
+ <input type="checkbox" title="$drop.select" name="itemselected[]" class="item-select" value="$id" />
<a href="item/drop/$id" onclick="return confirmDelete();" class="icon delete s16" title="$drop.delete">$drop.delete</a>
{{ endif }}
{{ if $edpost }}
@@ -72,6 +81,11 @@
</div>
</div>
+ <div class="wall-item-bottom">
+ <div class="wall-item-links"></div>
+ <div class="wall-item-like" id="wall-item-like-$id">$like</div>
+ <div class="wall-item-dislike" id="wall-item-dislike-$id">$dislike</div>
+ </div>
</div>
<div class="wall-item-comment-wrapper" >
$comment