Merge branch 'master' of git://github.com/friendika/friendika
This commit is contained in:
commit
9ef5cb1c38
17 changed files with 838 additions and 588 deletions
|
|
@ -525,7 +525,7 @@ function facebook_post_hook(&$a,&$b) {
|
||||||
|
|
||||||
$search_str = $a->get_baseurl() . '/search';
|
$search_str = $a->get_baseurl() . '/search';
|
||||||
|
|
||||||
if(preg_match("/\[url=(.+?)\](.+?)\[\/url\]/is",$msg,$matches)) {
|
if(preg_match("/\[url=(.*?)\](.*?)\[\/url\]/is",$msg,$matches)) {
|
||||||
|
|
||||||
// don't use hashtags for message link
|
// don't use hashtags for message link
|
||||||
|
|
||||||
|
|
@ -536,12 +536,12 @@ function facebook_post_hook(&$a,&$b) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$msg = preg_replace("/\[url=(.+?)\](.+?)\[\/url\]/is",'$2 $1',$msg);
|
$msg = preg_replace("/\[url=(.*?)\](.*?)\[\/url\]/is",'$2 $1',$msg);
|
||||||
|
|
||||||
if(preg_match("/\[img\](.+?)\[\/img\]/is",$msg,$matches))
|
if(preg_match("/\[img\](.*?)\[\/img\]/is",$msg,$matches))
|
||||||
$image = $matches[1];
|
$image = $matches[1];
|
||||||
|
|
||||||
$msg = preg_replace("/\[img\](.+?)\[\/img\]/is", t('Image: ') . '$1', $msg);
|
$msg = preg_replace("/\[img\](.*?)\[\/img\]/is", t('Image: ') . '$1', $msg);
|
||||||
|
|
||||||
if((strpos($link,$a->get_baseurl()) !== false) && (! $image))
|
if((strpos($link,$a->get_baseurl()) !== false) && (! $image))
|
||||||
$image = $a->get_baseurl() . '/images/friendika-64.jpg';
|
$image = $a->get_baseurl() . '/images/friendika-64.jpg';
|
||||||
|
|
@ -557,7 +557,7 @@ function facebook_post_hook(&$a,&$b) {
|
||||||
$msg .= "\n";
|
$msg .= "\n";
|
||||||
foreach($arr as $r) {
|
foreach($arr as $r) {
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$cnt = preg_match('|\[attach\]href=\"(.+?)\" size=\"(.+?)\" type=\"(.+?)\" title=\"(.+?)\"\[\/attach\]|',$r,$matches);
|
$cnt = preg_match('|\[attach\]href=\"(.*?)\" size=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
$msg .= $matches[1];
|
$msg .= $matches[1];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
6
boot.php
6
boot.php
|
|
@ -4,9 +4,9 @@ set_time_limit(0);
|
||||||
ini_set('pcre.backtrack_limit', 250000);
|
ini_set('pcre.backtrack_limit', 250000);
|
||||||
|
|
||||||
|
|
||||||
define ( 'FRIENDIKA_VERSION', '2.2.1003' );
|
define ( 'FRIENDIKA_VERSION', '2.2.1004' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1061 );
|
define ( 'DB_UPDATE_VERSION', 1062 );
|
||||||
|
|
||||||
define ( 'EOL', "<br />\r\n" );
|
define ( 'EOL', "<br />\r\n" );
|
||||||
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
|
||||||
|
|
@ -2574,7 +2574,7 @@ function prepare_body($item,$attach = false) {
|
||||||
foreach($arr as $r) {
|
foreach($arr as $r) {
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$icon = '';
|
$icon = '';
|
||||||
$cnt = preg_match('|\[attach\]href=\"(.+?)\" size=\"(.+?)\" type=\"(.+?)\" title=\"(.+?)\"\[\/attach\]|',$r,$matches);
|
$cnt = preg_match('|\[attach\]href=\"(.*?)\" size=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
$icontype = strtolower(substr($matches[3],0,strpos($matches[3],'/')));
|
$icontype = strtolower(substr($matches[3],0,strpos($matches[3],'/')));
|
||||||
switch($icontype) {
|
switch($icontype) {
|
||||||
|
|
|
||||||
|
|
@ -484,6 +484,7 @@ CREATE TABLE IF NOT EXISTS `event` (
|
||||||
`desc` TEXT NOT NULL ,
|
`desc` TEXT NOT NULL ,
|
||||||
`location` TEXT NOT NULL ,
|
`location` TEXT NOT NULL ,
|
||||||
`type` CHAR( 255 ) NOT NULL ,
|
`type` CHAR( 255 ) NOT NULL ,
|
||||||
|
`nofinish` TINYINT( 1 ) NOT NULL DEFAULT '0',
|
||||||
`adjust` TINYINT( 1 ) NOT NULL DEFAULT '1',
|
`adjust` TINYINT( 1 ) NOT NULL DEFAULT '1',
|
||||||
`allow_cid` MEDIUMTEXT NOT NULL ,
|
`allow_cid` MEDIUMTEXT NOT NULL ,
|
||||||
`allow_gid` MEDIUMTEXT NOT NULL ,
|
`allow_gid` MEDIUMTEXT NOT NULL ,
|
||||||
|
|
|
||||||
|
|
@ -28,69 +28,69 @@ function bbcode($Text,$preserve_nl = false) {
|
||||||
$Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%\$\!\+\,]+)/", ' <a href="$2" target="external-link">$2</a>', $Text);
|
$Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%\$\!\+\,]+)/", ' <a href="$2" target="external-link">$2</a>', $Text);
|
||||||
|
|
||||||
$Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" target="external-link">$1</a>', $Text);
|
$Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" target="external-link">$1</a>', $Text);
|
||||||
$Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" target="external-link">$2</a>', $Text);
|
$Text = preg_replace("(\[url\=([$URLSearchString]*)\](.*?)\[/url\])", '<a href="$1" target="external-link">$2</a>', $Text);
|
||||||
//$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
|
//$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
|
||||||
|
|
||||||
|
|
||||||
// Perform MAIL Search
|
// Perform MAIL Search
|
||||||
$Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
|
$Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
|
||||||
$Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.+?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
|
$Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.*?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
|
||||||
|
|
||||||
// Check for bold text
|
// Check for bold text
|
||||||
$Text = preg_replace("(\[b\](.+?)\[\/b])is",'<strong>$1</strong>',$Text);
|
$Text = preg_replace("(\[b\](.*?)\[\/b])is",'<strong>$1</strong>',$Text);
|
||||||
|
|
||||||
// Check for Italics text
|
// Check for Italics text
|
||||||
$Text = preg_replace("(\[i\](.+?)\[\/i\])is",'<em>$1</em>',$Text);
|
$Text = preg_replace("(\[i\](.*?)\[\/i\])is",'<em>$1</em>',$Text);
|
||||||
|
|
||||||
// Check for Underline text
|
// Check for Underline text
|
||||||
$Text = preg_replace("(\[u\](.+?)\[\/u\])is",'<u>$1</u>',$Text);
|
$Text = preg_replace("(\[u\](.*?)\[\/u\])is",'<u>$1</u>',$Text);
|
||||||
|
|
||||||
// Check for strike-through text
|
// Check for strike-through text
|
||||||
$Text = preg_replace("(\[s\](.+?)\[\/s\])is",'<strike>$1</strike>',$Text);
|
$Text = preg_replace("(\[s\](.*?)\[\/s\])is",'<strike>$1</strike>',$Text);
|
||||||
|
|
||||||
// Check for over-line text
|
// Check for over-line text
|
||||||
$Text = preg_replace("(\[o\](.+?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
|
$Text = preg_replace("(\[o\](.*?)\[\/o\])is",'<span class="overline">$1</span>',$Text);
|
||||||
|
|
||||||
// Check for colored text
|
// Check for colored text
|
||||||
$Text = preg_replace("(\[color=(.+?)\](.+?)\[\/color\])is","<span style=\"color: $1;\">$2</span>",$Text);
|
$Text = preg_replace("(\[color=(.*?)\](.*?)\[\/color\])is","<span style=\"color: $1;\">$2</span>",$Text);
|
||||||
|
|
||||||
// Check for sized text
|
// Check for sized text
|
||||||
$Text = preg_replace("(\[size=(.+?)\](.+?)\[\/size\])is","<span style=\"font-size: $1;\">$2</span>",$Text);
|
$Text = preg_replace("(\[size=(.*?)\](.*?)\[\/size\])is","<span style=\"font-size: $1;\">$2</span>",$Text);
|
||||||
|
|
||||||
// Check for list text
|
// Check for list text
|
||||||
$Text = preg_replace("/\[list\](.+?)\[\/list\]/is", '<ul class="listbullet">$1</ul>' ,$Text);
|
$Text = preg_replace("/\[list\](.*?)\[\/list\]/is", '<ul class="listbullet">$1</ul>' ,$Text);
|
||||||
$Text = preg_replace("/\[list=1\](.+?)\[\/list\]/is", '<ul class="listdecimal">$1</ul>' ,$Text);
|
$Text = preg_replace("/\[list=1\](.*?)\[\/list\]/is", '<ul class="listdecimal">$1</ul>' ,$Text);
|
||||||
$Text = preg_replace("/\[list=i\](.+?)\[\/list\]/s",'<ul class="listlowerroman">$1</ul>' ,$Text);
|
$Text = preg_replace("/\[list=i\](.*?)\[\/list\]/s",'<ul class="listlowerroman">$1</ul>' ,$Text);
|
||||||
$Text = preg_replace("/\[list=I\](.+?)\[\/list\]/s", '<ul class="listupperroman">$1</ul>' ,$Text);
|
$Text = preg_replace("/\[list=I\](.*?)\[\/list\]/s", '<ul class="listupperroman">$1</ul>' ,$Text);
|
||||||
$Text = preg_replace("/\[list=a\](.+?)\[\/list\]/s", '<ul class="listloweralpha">$1</ul>' ,$Text);
|
$Text = preg_replace("/\[list=a\](.*?)\[\/list\]/s", '<ul class="listloweralpha">$1</ul>' ,$Text);
|
||||||
$Text = preg_replace("/\[list=A\](.+?)\[\/list\]/s", '<ul class="listupperalpha">$1</ul>' ,$Text);
|
$Text = preg_replace("/\[list=A\](.*?)\[\/list\]/s", '<ul class="listupperalpha">$1</ul>' ,$Text);
|
||||||
$Text = str_replace("[*]", "<li>", $Text);
|
$Text = str_replace("[*]", "<li>", $Text);
|
||||||
|
|
||||||
// Check for font change text
|
// Check for font change text
|
||||||
$Text = preg_replace("(\[font=(.+?)\](.+?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
|
$Text = preg_replace("(\[font=(.*?)\](.*?)\[\/font\])","<span style=\"font-family: $1;\">$2</span>",$Text);
|
||||||
|
|
||||||
// Declare the format for [code] layout
|
// Declare the format for [code] layout
|
||||||
$CodeLayout = '<code>$1</code>';
|
$CodeLayout = '<code>$1</code>';
|
||||||
// Check for [code] text
|
// Check for [code] text
|
||||||
$Text = preg_replace("/\[code\](.+?)\[\/code\]/is","$CodeLayout", $Text);
|
$Text = preg_replace("/\[code\](.*?)\[\/code\]/is","$CodeLayout", $Text);
|
||||||
// Declare the format for [quote] layout
|
// Declare the format for [quote] layout
|
||||||
$QuoteLayout = '<blockquote>$1</blockquote>';
|
$QuoteLayout = '<blockquote>$1</blockquote>';
|
||||||
// Check for [quote] text
|
// Check for [quote] text
|
||||||
$Text = preg_replace("/\[quote\](.+?)\[\/quote\]/is","$QuoteLayout", $Text);
|
$Text = preg_replace("/\[quote\](.*?)\[\/quote\]/is","$QuoteLayout", $Text);
|
||||||
|
|
||||||
// Images
|
// Images
|
||||||
// [img]pathtoimage[/img]
|
// [img]pathtoimage[/img]
|
||||||
$Text = preg_replace("/\[img\](.+?)\[\/img\]/", '<img src="$1" alt="' . t('Image/photo') . '" />', $Text);
|
$Text = preg_replace("/\[img\](.*?)\[\/img\]/", '<img src="$1" alt="' . t('Image/photo') . '" />', $Text);
|
||||||
|
|
||||||
// html5 video and audio
|
// html5 video and audio
|
||||||
|
|
||||||
$Text = preg_replace("/\[video\](.+?)\[\/video\]/", '<video src="$1" controls="controls" width="425" height="350"><a href="$1">$1</a></video>', $Text);
|
$Text = preg_replace("/\[video\](.*?)\[\/video\]/", '<video src="$1" controls="controls" width="425" height="350"><a href="$1">$1</a></video>', $Text);
|
||||||
|
|
||||||
$Text = preg_replace("/\[audio\](.+?)\[\/audio\]/", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $Text);
|
$Text = preg_replace("/\[audio\](.*?)\[\/audio\]/", '<audio src="$1" controls="controls"><a href="$1">$1</a></audio>', $Text);
|
||||||
|
|
||||||
|
|
||||||
// [img=widthxheight]image source[/img]
|
// [img=widthxheight]image source[/img]
|
||||||
$Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.+?)\[\/img\]/", '<img src="$3" style="height:{$2}px; width:{$1}px;" >', $Text);
|
$Text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/", '<img src="$3" style="height:{$2}px; width:{$1}px;" >', $Text);
|
||||||
|
|
||||||
if (get_pconfig(local_user(), 'oembed', 'use_for_youtube' )==1){
|
if (get_pconfig(local_user(), 'oembed', 'use_for_youtube' )==1){
|
||||||
// use oembed for youtube links
|
// use oembed for youtube links
|
||||||
|
|
@ -98,11 +98,11 @@ function bbcode($Text,$preserve_nl = false) {
|
||||||
$Text = preg_replace("/\[\/youtube\]/",'[/embed]',$Text);
|
$Text = preg_replace("/\[\/youtube\]/",'[/embed]',$Text);
|
||||||
} else {
|
} else {
|
||||||
// Youtube extensions
|
// Youtube extensions
|
||||||
$Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.+?)\[\/youtube\]/",'[youtube]$1[/youtube]',$Text);
|
$Text = preg_replace("/\[youtube\]https?:\/\/www.youtube.com\/watch\?v\=(.*?)\[\/youtube\]/",'[youtube]$1[/youtube]',$Text);
|
||||||
$Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.+?)\[\/youtube\]/",'[youtube]$1[/youtube]',$Text);
|
$Text = preg_replace("/\[youtube\]https?:\/\/youtu.be\/(.*?)\[\/youtube\]/",'[youtube]$1[/youtube]',$Text);
|
||||||
$Text = preg_replace("/\[youtube\](.+?)\[\/youtube\]/", '<iframe width="425" height="349" src="http://www.youtube.com/embed/$1" frameborder="0" allowfullscreen></iframe>', $Text);
|
$Text = preg_replace("/\[youtube\](.*?)\[\/youtube\]/", '<iframe width="425" height="349" src="http://www.youtube.com/embed/$1" frameborder="0" allowfullscreen></iframe>', $Text);
|
||||||
}
|
}
|
||||||
// $Text = preg_replace("/\[youtube\](.+?)\[\/youtube\]/", '<object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/$1" ><param name="movie" value="http://www.youtube.com/v/$1"></param><!--[if IE]><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="425" height="350" /><![endif]--></object>', $Text);
|
// $Text = preg_replace("/\[youtube\](.*?)\[\/youtube\]/", '<object width="425" height="350" type="application/x-shockwave-flash" data="http://www.youtube.com/v/$1" ><param name="movie" value="http://www.youtube.com/v/$1"></param><!--[if IE]><embed src="http://www.youtube.com/v/$1" type="application/x-shockwave-flash" width="425" height="350" /><![endif]--></object>', $Text);
|
||||||
|
|
||||||
// oembed tag
|
// oembed tag
|
||||||
$Text = oembed_bbcode2html($Text);
|
$Text = oembed_bbcode2html($Text);
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ function format_event_html($ev) {
|
||||||
$o .= '<p class="description">' . bbcode($ev['desc']) . '</p>';
|
$o .= '<p class="description">' . bbcode($ev['desc']) . '</p>';
|
||||||
|
|
||||||
$o .= '<p>' . t('Starts:') . ' <abbr class="dtstart" title="'
|
$o .= '<p>' . t('Starts:') . ' <abbr class="dtstart" title="'
|
||||||
. datetime_convert('UTC','UTC',$ev['start'], ATOM_TIME)
|
. datetime_convert('UTC','UTC',$ev['start'], $ev['adjust'] ? ATOM_TIME : 'Y-m-d\TH:i:s' )
|
||||||
. '" >'
|
. '" >'
|
||||||
. (($ev['adjust']) ? datetime_convert('UTC', date_default_timezone_get(),
|
. (($ev['adjust']) ? datetime_convert('UTC', date_default_timezone_get(),
|
||||||
$ev['start'] /*, format */ )
|
$ev['start'] /*, format */ )
|
||||||
|
|
@ -21,8 +21,9 @@ function format_event_html($ev) {
|
||||||
$ev['start'] /*, format */ ))
|
$ev['start'] /*, format */ ))
|
||||||
. '</abbr></p>';
|
. '</abbr></p>';
|
||||||
|
|
||||||
$o .= '<p>' . t('Ends: ') . '<abbr class="dtend" title="'
|
if(! $ev['nofinish'])
|
||||||
. datetime_convert('UTC','UTC',$ev['finish'], ATOM_TIME)
|
$o .= '<p>' . t('Finishes:') . ' <abbr class="dtend" title="'
|
||||||
|
. datetime_convert('UTC','UTC',$ev['finish'], $ev['adjust'] ? ATOM_TIME : 'Y-m-d\TH:i:s' )
|
||||||
. '" >'
|
. '" >'
|
||||||
. (($ev['adjust']) ? datetime_convert('UTC', date_default_timezone_get(),
|
. (($ev['adjust']) ? datetime_convert('UTC', date_default_timezone_get(),
|
||||||
$ev['finish'] /*, format */ )
|
$ev['finish'] /*, format */ )
|
||||||
|
|
@ -30,6 +31,7 @@ function format_event_html($ev) {
|
||||||
$ev['finish'] /*, format */ ))
|
$ev['finish'] /*, format */ ))
|
||||||
. '</abbr></p>';
|
. '</abbr></p>';
|
||||||
|
|
||||||
|
if(strlen($ev['location']))
|
||||||
$o .= '<p> ' . t('Location:') . '<span class="location">'
|
$o .= '<p> ' . t('Location:') . '<span class="location">'
|
||||||
. bbcode($ev['location'])
|
. bbcode($ev['location'])
|
||||||
. '</span></p>';
|
. '</span></p>';
|
||||||
|
|
@ -41,3 +43,17 @@ return $o;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function sort_by_date($a) {
|
||||||
|
|
||||||
|
usort($a,'ev_compare');
|
||||||
|
return $a;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function ev_compare($a,$b) {
|
||||||
|
|
||||||
|
$date_a = (($a['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$a['start']) : $a['start']);
|
||||||
|
$date_b = (($b['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$b['start']) : $b['start']);
|
||||||
|
|
||||||
|
return strcmp($date_a,$date_b);
|
||||||
|
}
|
||||||
|
|
@ -1618,7 +1618,7 @@ function fix_private_photos($s,$uid) {
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
logger('fix_private_photos');
|
logger('fix_private_photos');
|
||||||
|
|
||||||
if(preg_match("/\[img\](.+?)\[\/img\]/is",$s,$matches)) {
|
if(preg_match("/\[img\](.*?)\[\/img\]/is",$s,$matches)) {
|
||||||
$image = $matches[1];
|
$image = $matches[1];
|
||||||
logger('fix_private_photos: found photo ' . $image);
|
logger('fix_private_photos: found photo ' . $image);
|
||||||
if(stristr($image ,$a->get_baseurl() . '/photo/')) {
|
if(stristr($image ,$a->get_baseurl() . '/photo/')) {
|
||||||
|
|
@ -1649,7 +1649,7 @@ function fix_private_photos($s,$uid) {
|
||||||
function item_getfeedtags($item) {
|
function item_getfeedtags($item) {
|
||||||
$ret = array();
|
$ret = array();
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$cnt = preg_match_all('|\#\[url\=(.+?)\](.+?)\[\/url\]|',$item['tag'],$matches);
|
$cnt = preg_match_all('|\#\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
for($x = 0; $x < count($matches); $x ++) {
|
for($x = 0; $x < count($matches); $x ++) {
|
||||||
if($matches[1][$x])
|
if($matches[1][$x])
|
||||||
|
|
@ -1657,7 +1657,7 @@ function item_getfeedtags($item) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$cnt = preg_match_all('|\@\[url\=(.+?)\](.+?)\[\/url\]|',$item['tag'],$matches);
|
$cnt = preg_match_all('|\@\[url\=(.*?)\](.*?)\[\/url\]|',$item['tag'],$matches);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
for($x = 0; $x < count($matches); $x ++) {
|
for($x = 0; $x < count($matches); $x ++) {
|
||||||
if($matches[1][$x])
|
if($matches[1][$x])
|
||||||
|
|
@ -1673,7 +1673,7 @@ function item_getfeedattach($item) {
|
||||||
if(count($arr)) {
|
if(count($arr)) {
|
||||||
foreach($arr as $r) {
|
foreach($arr as $r) {
|
||||||
$matches = false;
|
$matches = false;
|
||||||
$cnt = preg_match('|\[attach\]href=\"(.+?)\" size=\"(.+?)\" type=\"(.+?)\" title=\"(.+?)\"\[\/attach\]|',$r,$matches);
|
$cnt = preg_match('|\[attach\]href=\"(.*?)\" size=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
|
||||||
if($cnt) {
|
if($cnt) {
|
||||||
$ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
|
$ret .= '<link rel="enclosure" href="' . xmlify($matches[1]) . '" type="' . xmlify($matches[3]) . '" ';
|
||||||
if(intval($matches[2]))
|
if(intval($matches[2]))
|
||||||
|
|
|
||||||
|
|
@ -23,17 +23,23 @@ function events_post(&$a) {
|
||||||
$finishminute = intval($_POST['finishminute']);
|
$finishminute = intval($_POST['finishminute']);
|
||||||
|
|
||||||
$adjust = intval($_POST['adjust']);
|
$adjust = intval($_POST['adjust']);
|
||||||
|
$nofinish = intval($_POST['nofinish']);
|
||||||
|
|
||||||
|
|
||||||
$start = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute);
|
$start = sprintf('%d-%d-%d %d:%d:0',$startyear,$startmonth,$startday,$starthour,$startminute);
|
||||||
|
if($nofinish)
|
||||||
|
$finish = '0000-00-00 00:00:00';
|
||||||
|
else
|
||||||
$finish = sprintf('%d-%d-%d %d:%d:0',$finishyear,$finishmonth,$finishday,$finishhour,$finishminute);
|
$finish = sprintf('%d-%d-%d %d:%d:0',$finishyear,$finishmonth,$finishday,$finishhour,$finishminute);
|
||||||
|
|
||||||
if($adjust) {
|
if($adjust) {
|
||||||
$start = datetime_convert(date_default_timezone_get(),'UTC',$start);
|
$start = datetime_convert(date_default_timezone_get(),'UTC',$start);
|
||||||
|
if(! $nofinish)
|
||||||
$finish = datetime_convert(date_default_timezone_get(),'UTC',$finish);
|
$finish = datetime_convert(date_default_timezone_get(),'UTC',$finish);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$start = datetime_convert('UTC','UTC',$start);
|
$start = datetime_convert('UTC','UTC',$start);
|
||||||
|
if(! $nofinish)
|
||||||
$finish = datetime_convert('UTC','UTC',$finish);
|
$finish = datetime_convert('UTC','UTC',$finish);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -47,7 +53,7 @@ function events_post(&$a) {
|
||||||
$str_group_deny = perms2str($_POST['group_deny']);
|
$str_group_deny = perms2str($_POST['group_deny']);
|
||||||
$str_contact_deny = perms2str($_POST['contact_deny']);
|
$str_contact_deny = perms2str($_POST['contact_deny']);
|
||||||
|
|
||||||
dbg(1);
|
|
||||||
if($event_id) {
|
if($event_id) {
|
||||||
$r = q("UPDATE `event` SET
|
$r = q("UPDATE `event` SET
|
||||||
`edited` = '%s',
|
`edited` = '%s',
|
||||||
|
|
@ -57,6 +63,7 @@ dbg(1);
|
||||||
`location` = '%s',
|
`location` = '%s',
|
||||||
`type` = '%s',
|
`type` = '%s',
|
||||||
`adjust` = %d,
|
`adjust` = %d,
|
||||||
|
`nofinish` = %d,
|
||||||
`allow_cid` = '%s',
|
`allow_cid` = '%s',
|
||||||
`allow_gid` = '%s',
|
`allow_gid` = '%s',
|
||||||
`deny_cid` = '%s',
|
`deny_cid` = '%s',
|
||||||
|
|
@ -70,6 +77,7 @@ dbg(1);
|
||||||
dbesc($location),
|
dbesc($location),
|
||||||
dbesc($type),
|
dbesc($type),
|
||||||
intval($adjust),
|
intval($adjust),
|
||||||
|
intval($nofinish),
|
||||||
dbesc($str_contact_allow),
|
dbesc($str_contact_allow),
|
||||||
dbesc($str_group_allow),
|
dbesc($str_group_allow),
|
||||||
dbesc($str_contact_deny),
|
dbesc($str_contact_deny),
|
||||||
|
|
@ -84,8 +92,8 @@ dbg(1);
|
||||||
$uri = item_new_uri($a->get_hostname(),local_user());
|
$uri = item_new_uri($a->get_hostname(),local_user());
|
||||||
|
|
||||||
$r = q("INSERT INTO `event` ( `uid`,`uri`,`created`,`edited`,`start`,`finish`,`desc`,`location`,`type`,
|
$r = q("INSERT INTO `event` ( `uid`,`uri`,`created`,`edited`,`start`,`finish`,`desc`,`location`,`type`,
|
||||||
`adjust`,`allow_cid`,`allow_gid`,`deny_cid`,`deny_gid`)
|
`adjust`,`nofinish`,`allow_cid`,`allow_gid`,`deny_cid`,`deny_gid`)
|
||||||
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s' ) ",
|
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s' ) ",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
dbesc($uri),
|
dbesc($uri),
|
||||||
dbesc(datetime_convert()),
|
dbesc(datetime_convert()),
|
||||||
|
|
@ -96,6 +104,7 @@ dbg(1);
|
||||||
dbesc($location),
|
dbesc($location),
|
||||||
dbesc($type),
|
dbesc($type),
|
||||||
intval($adjust),
|
intval($adjust),
|
||||||
|
intval($nofinish),
|
||||||
dbesc($str_contact_allow),
|
dbesc($str_contact_allow),
|
||||||
dbesc($str_group_allow),
|
dbesc($str_group_allow),
|
||||||
dbesc($str_contact_deny),
|
dbesc($str_contact_deny),
|
||||||
|
|
@ -168,17 +177,38 @@ function events_content(&$a) {
|
||||||
$start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
|
$start = sprintf('%d-%d-%d %d:%d:%d',$y,$m,1,0,0,0);
|
||||||
$finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
|
$finish = sprintf('%d-%d-%d %d:%d:%d',$y,$m,$dim,23,59,59);
|
||||||
|
|
||||||
|
$start = datetime_convert('UTC','UTC',$start);
|
||||||
|
$finish = datetime_convert('UTC','UTC',$finish);
|
||||||
|
|
||||||
$r = q("SELECT * FROM `event` WHERE `start` >= '%s' AND `finish` <= '%s' AND `uid` = %d ",
|
$adjust_start = datetime_convert('UTC', date_default_timezone_get(), $start);
|
||||||
|
$adjust_finish = datetime_convert('UTC', date_default_timezone_get(), $finish);
|
||||||
|
|
||||||
|
|
||||||
|
$r = q("SELECT * FROM `event` WHERE `uid` = %d
|
||||||
|
AND (( `adjust` = 0 AND `start` >= '%s' AND `finish` <= '%s' )
|
||||||
|
OR ( `adjust` = 1 AND `start` >= '%s' AND `finish` <= '%s' )) ",
|
||||||
|
intval(local_user()),
|
||||||
dbesc($start),
|
dbesc($start),
|
||||||
dbesc($finish),
|
dbesc($finish),
|
||||||
intval(local_user())
|
dbesc($adjust_start),
|
||||||
|
dbesc($adjust_finish)
|
||||||
);
|
);
|
||||||
|
|
||||||
if(count($r))
|
$last_date = '';
|
||||||
foreach($r as $rr)
|
|
||||||
$o .= format_event_html($rr);
|
|
||||||
|
|
||||||
|
$fmt = t('l, F j');
|
||||||
|
|
||||||
|
if(count($r)) {
|
||||||
|
$r = sort_by_date($r);
|
||||||
|
foreach($r as $rr) {
|
||||||
|
$d = (($rr['adjust']) ? datetime_convert('UTC',date_default_timezone_get(),$rr['start'], $fmt) : datetime_convert('UTC','UTC',$rr['start'],$fmt));
|
||||||
|
$d = day_translate($d);
|
||||||
|
if($d !== $last_date)
|
||||||
|
$o .= '<hr /><div class="event-list-date">' . $d . '</div>';
|
||||||
|
$last_date = $d;
|
||||||
|
$o .= format_event_html($rr);
|
||||||
|
}
|
||||||
|
}
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -195,15 +225,18 @@ function events_content(&$a) {
|
||||||
$o .= replace_macros($tpl,array(
|
$o .= replace_macros($tpl,array(
|
||||||
'$post' => $a->get_baseurl() . '/events',
|
'$post' => $a->get_baseurl() . '/events',
|
||||||
'$e_text' => t('Event details'),
|
'$e_text' => t('Event details'),
|
||||||
'$s_text' => t('Start: year-month-day hour:minute'),
|
'$e_desc' => t('Format is year-month-day hour:minute. Starting date and Description are required.'),
|
||||||
|
'$s_text' => t('Event Starts:') . ' <span class="required">*</span> ',
|
||||||
'$s_dsel' => datesel('start',$year+5,$year,false,$year,$month,$day),
|
'$s_dsel' => datesel('start',$year+5,$year,false,$year,$month,$day),
|
||||||
'$s_tsel' => timesel('start',0,0),
|
'$s_tsel' => timesel('start',0,0),
|
||||||
'$f_text' => t('Finish: year-month-day hour:minute'),
|
'$n_text' => t('Finish date/time is not known or not relevant'),
|
||||||
|
'$n_checked' => '',
|
||||||
|
'$f_text' => t('Event Finishes:'),
|
||||||
'$f_dsel' => datesel('finish',$year+5,$year,false,$year,$month,$day),
|
'$f_dsel' => datesel('finish',$year+5,$year,false,$year,$month,$day),
|
||||||
'$f_tsel' => timesel('finish',0,0),
|
'$f_tsel' => timesel('finish',0,0),
|
||||||
'$a_text' => t('Adjust for viewer timezone'),
|
'$a_text' => t('Adjust for viewer timezone'),
|
||||||
'$a_checked' => '',
|
'$a_checked' => '',
|
||||||
'$d_text' => t('Description:'),
|
'$d_text' => t('Description:') . ' <span class="required">*</span>',
|
||||||
'$d_orig' => '',
|
'$d_orig' => '',
|
||||||
'$l_text' => t('Location:'),
|
'$l_text' => t('Location:'),
|
||||||
'$l_orig' => '',
|
'$l_orig' => '',
|
||||||
|
|
|
||||||
|
|
@ -196,7 +196,7 @@ function item_post(&$a) {
|
||||||
|
|
||||||
$match = null;
|
$match = null;
|
||||||
|
|
||||||
if(preg_match_all("/\[img\](.+?)\[\/img\]/",$body,$match)) {
|
if(preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) {
|
||||||
$images = $match[1];
|
$images = $match[1];
|
||||||
if(count($images)) {
|
if(count($images)) {
|
||||||
foreach($images as $image) {
|
foreach($images as $image) {
|
||||||
|
|
@ -235,7 +235,7 @@ function item_post(&$a) {
|
||||||
|
|
||||||
$match = false;
|
$match = false;
|
||||||
|
|
||||||
if(preg_match_all("/\[attachment\](.+?)\[\/attachment\]/",$body,$match)) {
|
if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",$body,$match)) {
|
||||||
$attaches = $match[1];
|
$attaches = $match[1];
|
||||||
if(count($attaches)) {
|
if(count($attaches)) {
|
||||||
foreach($attaches as $attach) {
|
foreach($attaches as $attach) {
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@ function message_post(&$a) {
|
||||||
|
|
||||||
$match = null;
|
$match = null;
|
||||||
|
|
||||||
if(preg_match_all("/\[img\](.+?)\[\/img\]/",$body,$match)) {
|
if(preg_match_all("/\[img\](.*?)\[\/img\]/",$body,$match)) {
|
||||||
$images = $match[1];
|
$images = $match[1];
|
||||||
if(count($images)) {
|
if(count($images)) {
|
||||||
foreach($images as $image) {
|
foreach($images as $image) {
|
||||||
|
|
|
||||||
|
|
@ -548,13 +548,13 @@ foreach($_FILES AS $key => $val) {
|
||||||
*
|
*
|
||||||
* We create a wall item for every photo, but we don't want to
|
* We create a wall item for every photo, but we don't want to
|
||||||
* overwhelm the data stream with a hundred newly uploaded photos.
|
* overwhelm the data stream with a hundred newly uploaded photos.
|
||||||
* So we will make one photo (the first one uploaded to this album)
|
* So we will make the first photo uploaded to this album in the last several hours
|
||||||
* visible by default, the rest will become visible over time when and if
|
* visible by default, the rest will become visible over time when and if
|
||||||
* they acquire comments, likes, dislikes, and/or tags
|
* they acquire comments, likes, dislikes, and/or tags
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
$r = q("SELECT * FROM `photo` WHERE `album` = '%s' AND `uid` = %d",
|
$r = q("SELECT * FROM `photo` WHERE `album` = '%s' AND `uid` = %d AND `created` > UTC_TIMESTAMP() - INTERVAL 3 HOUR ",
|
||||||
dbesc($album),
|
dbesc($album),
|
||||||
intval($page_owner_uid)
|
intval($page_owner_uid)
|
||||||
);
|
);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
define( 'UPDATE_VERSION' , 1061 );
|
define( 'UPDATE_VERSION' , 1062 );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
|
@ -510,3 +510,6 @@ function update_1060() {
|
||||||
q("ALTER TABLE `event` ADD `uri` CHAR( 255 ) NOT NULL AFTER `cid` ");
|
q("ALTER TABLE `event` ADD `uri` CHAR( 255 ) NOT NULL AFTER `cid` ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function update_1061() {
|
||||||
|
q("ALTER TABLE `event` ADD `nofinish` TINYINT( 1 ) NOT NULL DEFAULT '0' AFTER `type` ");
|
||||||
|
}
|
||||||
|
|
|
||||||
35
view/event_form.tpl
Normal file
35
view/event_form.tpl
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
<h3>$e_text</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
$e_desc
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<form action="$post" method="post" >
|
||||||
|
|
||||||
|
<div id="event-start-text">$s_text</div>
|
||||||
|
$s_dsel $s_tsel
|
||||||
|
|
||||||
|
<div id="event-finish-text">$f_text</div>
|
||||||
|
$f_dsel $f_tsel
|
||||||
|
|
||||||
|
<div id="event-datetime-break"></div>
|
||||||
|
|
||||||
|
<input type="checkbox" name="nofinish" value="1" id="event-nofinish-checkbox" $n_checked /> <div id="event-nofinish-text">$n_text</div>
|
||||||
|
|
||||||
|
<div id="event-nofinish-break"></div>
|
||||||
|
|
||||||
|
<input type="checkbox" name="adjust" value="1" id="event-adjust-checkbox" $a_checked /> <div id="event-adjust-text">$a_text</div>
|
||||||
|
|
||||||
|
<div id="event-adjust-break"></div>
|
||||||
|
|
||||||
|
<div id="event-desc-text">$d_text</div>
|
||||||
|
<textarea id="event-desc-textarea" name="desc">$d_orig</textarea>
|
||||||
|
|
||||||
|
|
||||||
|
<div id="event-location-text">$l_text</div>
|
||||||
|
<textarea id="event-location-textarea" name="location">$l_orig</textarea>
|
||||||
|
|
||||||
|
<input id="event-submit" type="submit" name="submit" value="$submit" />
|
||||||
|
</form>
|
||||||
|
|
||||||
|
|
||||||
1065
view/it/messages.po
1065
view/it/messages.po
|
|
@ -1,14 +1,15 @@
|
||||||
# FRIENDIKA Distributed Social Network
|
# FRIENDIKA Distributed Social Network
|
||||||
# Copyright (C) 2010, 2011 Mike Macgirvin
|
# Copyright (C) 2010, 2011 Mike Macgirvin
|
||||||
# This file is distributed under the same license as the Friendika package.
|
# This file is distributed under the same license as the Friendika package.
|
||||||
# Mike Macgirvin, 2010
|
|
||||||
#
|
#
|
||||||
|
# <fabrix.xm@gmail.com>, 2011
|
||||||
|
# fabrixxm <fabrix.xm@gmail.com>, 2011
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: friendika\n"
|
"Project-Id-Version: friendika\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugs.friendika.com/\n"
|
"Report-Msgid-Bugs-To: http://bugs.friendika.com/\n"
|
||||||
"POT-Creation-Date: 2011-05-02 20:13-0700\n"
|
"POT-Creation-Date: 2011-05-26 06:46-0700\n"
|
||||||
"PO-Revision-Date: 2011-05-10 12:06+0000\n"
|
"PO-Revision-Date: 2011-06-07 09:37+0000\n"
|
||||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>\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/friendika/team/it/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
|
@ -29,23 +30,23 @@ msgstr "Impostazioni del contatto applicate."
|
||||||
msgid "Contact update failed."
|
msgid "Contact update failed."
|
||||||
msgstr "Aggiornamento del contatto non riuscito."
|
msgstr "Aggiornamento del contatto non riuscito."
|
||||||
|
|
||||||
#: ../../mod/crepair.php:54 ../../mod/photos.php:89 ../../mod/photos.php:787
|
#: ../../mod/crepair.php:54 ../../mod/wall_attach.php:43
|
||||||
#: ../../mod/editpost.php:10 ../../mod/install.php:93
|
#: ../../mod/photos.php:89 ../../mod/photos.php:802 ../../mod/editpost.php:10
|
||||||
#: ../../mod/notifications.php:56 ../../mod/contacts.php:106
|
#: ../../mod/install.php:93 ../../mod/notifications.php:56
|
||||||
#: ../../mod/settings.php:15 ../../mod/settings.php:20
|
#: ../../mod/contacts.php:106 ../../mod/settings.php:15
|
||||||
#: ../../mod/settings.php:251 ../../mod/manage.php:75 ../../mod/network.php:6
|
#: ../../mod/settings.php:20 ../../mod/settings.php:251
|
||||||
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:21
|
#: ../../mod/manage.php:75 ../../mod/network.php:6 ../../mod/notes.php:20
|
||||||
#: ../../mod/register.php:25 ../../mod/regmod.php:16 ../../mod/item.php:57
|
#: ../../mod/attach.php:64 ../../mod/group.php:19
|
||||||
#: ../../mod/item.php:680 ../../mod/profile_photo.php:19
|
#: ../../mod/viewcontacts.php:21 ../../mod/register.php:27
|
||||||
#: ../../mod/profile_photo.php:133 ../../mod/profile_photo.php:144
|
#: ../../mod/regmod.php:18 ../../mod/item.php:57 ../../mod/item.php:801
|
||||||
#: ../../mod/profile_photo.php:155 ../../mod/message.php:8
|
#: ../../mod/profile_photo.php:19 ../../mod/profile_photo.php:133
|
||||||
#: ../../mod/message.php:116 ../../mod/wall_upload.php:42
|
#: ../../mod/profile_photo.php:144 ../../mod/profile_photo.php:155
|
||||||
#: ../../mod/follow.php:8 ../../mod/display.php:138 ../../mod/profiles.php:7
|
#: ../../mod/message.php:8 ../../mod/message.php:116
|
||||||
#: ../../mod/profiles.php:227 ../../mod/invite.php:13 ../../mod/invite.php:54
|
#: ../../mod/wall_upload.php:42 ../../mod/follow.php:8
|
||||||
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:221
|
#: ../../mod/display.php:138 ../../mod/profiles.php:7
|
||||||
#: ../../wip/photos.php:77 ../../wip/photos.php:723 ../../wip/follow2.php:8
|
#: ../../mod/profiles.php:230 ../../mod/invite.php:13 ../../mod/invite.php:54
|
||||||
#: ../../wip/group.php:19 ../../wip/photos-chris.php:97
|
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:242
|
||||||
#: ../../wip/photos-chris.php:770 ../../index.php:265
|
#: ../../index.php:256
|
||||||
msgid "Permission denied."
|
msgid "Permission denied."
|
||||||
msgstr "Permesso negato."
|
msgstr "Permesso negato."
|
||||||
|
|
||||||
|
|
@ -103,21 +104,20 @@ msgstr "URL Notifiche"
|
||||||
msgid "Poll/Feed URL"
|
msgid "Poll/Feed URL"
|
||||||
msgstr "URL Feed"
|
msgstr "URL Feed"
|
||||||
|
|
||||||
#: ../../mod/crepair.php:100 ../../mod/photos.php:815 ../../mod/photos.php:872
|
#: ../../mod/crepair.php:100 ../../mod/photos.php:830 ../../mod/photos.php:887
|
||||||
#: ../../mod/photos.php:1079 ../../mod/photos.php:1122
|
#: ../../mod/photos.php:1095 ../../mod/photos.php:1135
|
||||||
|
#: ../../mod/photos.php:1174 ../../mod/photos.php:1205
|
||||||
#: ../../mod/install.php:133 ../../mod/contacts.php:264
|
#: ../../mod/install.php:133 ../../mod/contacts.php:264
|
||||||
#: ../../mod/settings.php:426 ../../mod/manage.php:106 ../../mod/group.php:76
|
#: ../../mod/settings.php:426 ../../mod/manage.php:106 ../../mod/group.php:76
|
||||||
#: ../../mod/group.php:159 ../../mod/profiles.php:370 ../../mod/invite.php:68
|
#: ../../mod/group.php:159 ../../mod/profiles.php:383 ../../mod/invite.php:68
|
||||||
#: ../../addon/facebook/facebook.php:268
|
#: ../../addon/facebook/facebook.php:289
|
||||||
#: ../../addon/randplace/randplace.php:179
|
#: ../../addon/randplace/randplace.php:179 ../../addon/oembed/oembed.php:49
|
||||||
#: ../../addon/statusnet/statusnet.php:163
|
#: ../../addon/statusnet/statusnet.php:216
|
||||||
#: ../../addon/statusnet/statusnet.php:189
|
#: ../../addon/statusnet/statusnet.php:230
|
||||||
#: ../../addon/statusnet/statusnet.php:207 ../../addon/twitter/twitter.php:156
|
#: ../../addon/statusnet/statusnet.php:256
|
||||||
#: ../../addon/twitter/twitter.php:175 ../../include/conversation.php:384
|
#: ../../addon/statusnet/statusnet.php:263
|
||||||
#: ../../wip/photos.php:754 ../../wip/photos.php:793 ../../wip/photos.php:954
|
#: ../../addon/statusnet/statusnet.php:285 ../../addon/twitter/twitter.php:156
|
||||||
#: ../../wip/addon/randplace/randplace.php:178 ../../wip/group.php:99
|
#: ../../addon/twitter/twitter.php:175 ../../include/conversation.php:383
|
||||||
#: ../../wip/group.php:176 ../../wip/photos-chris.php:801
|
|
||||||
#: ../../wip/photos-chris.php:840 ../../wip/photos-chris.php:1001
|
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr "Invia"
|
msgstr "Invia"
|
||||||
|
|
||||||
|
|
@ -129,6 +129,15 @@ msgstr "Guida:"
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr "Guida"
|
msgstr "Guida"
|
||||||
|
|
||||||
|
#: ../../mod/wall_attach.php:57
|
||||||
|
#, php-format
|
||||||
|
msgid "File exceeds size limit of %d"
|
||||||
|
msgstr "Il file supera il limite di dimensione di %d"
|
||||||
|
|
||||||
|
#: ../../mod/wall_attach.php:87 ../../mod/wall_attach.php:98
|
||||||
|
msgid "File upload failed."
|
||||||
|
msgstr "Caricamento del file non riuscito."
|
||||||
|
|
||||||
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
|
||||||
#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:41
|
#: ../../mod/dfrn_request.php:644 ../../addon/js_upload/js_upload.php:41
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
|
|
@ -150,254 +159,208 @@ msgstr "Seleziona un tag da rimuovere: "
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Rimuovi"
|
msgstr "Rimuovi"
|
||||||
|
|
||||||
#: ../../mod/dfrn_poll.php:84 ../../mod/dfrn_poll.php:510
|
#: ../../mod/dfrn_poll.php:90 ../../mod/dfrn_poll.php:516
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s welcomes %s"
|
msgid "%s welcomes %s"
|
||||||
msgstr "%s da il benvenuto a %s"
|
msgstr "%s da il benvenuto a %s"
|
||||||
|
|
||||||
#: ../../mod/photos.php:34 ../../wip/photos.php:31
|
#: ../../mod/photos.php:34
|
||||||
#: ../../wip/photos-chris.php:41
|
|
||||||
msgid "Photo Albums"
|
msgid "Photo Albums"
|
||||||
msgstr "Album Foto"
|
msgstr "Album Foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:38 ../../mod/photos.php:110 ../../mod/photos.php:795
|
#: ../../mod/photos.php:38 ../../mod/photos.php:110 ../../mod/photos.php:810
|
||||||
#: ../../mod/photos.php:864 ../../mod/photos.php:879 ../../mod/photos.php:1248
|
#: ../../mod/photos.php:879 ../../mod/photos.php:894 ../../mod/photos.php:1282
|
||||||
#: ../../mod/photos.php:1259 ../../include/Photo.php:225
|
#: ../../mod/photos.php:1293 ../../include/Photo.php:233
|
||||||
#: ../../include/Photo.php:232 ../../include/Photo.php:239
|
#: ../../include/Photo.php:240 ../../include/Photo.php:247
|
||||||
#: ../../include/items.php:1026 ../../include/items.php:1029
|
#: ../../include/items.php:1041 ../../include/items.php:1044
|
||||||
#: ../../include/items.php:1032 ../../wip/photos.php:35
|
#: ../../include/items.php:1047
|
||||||
#: ../../wip/photos.php:98 ../../wip/photos.php:731 ../../wip/photos.php:785
|
|
||||||
#: ../../wip/photos.php:800 ../../wip/photos.php:1111
|
|
||||||
#: ../../wip/photos.php:1122 ../../wip/photos-chris.php:45
|
|
||||||
#: ../../wip/photos-chris.php:118 ../../wip/photos-chris.php:778
|
|
||||||
#: ../../wip/photos-chris.php:832 ../../wip/photos-chris.php:847
|
|
||||||
#: ../../wip/photos-chris.php:1158 ../../wip/photos-chris.php:1169
|
|
||||||
msgid "Contact Photos"
|
msgid "Contact Photos"
|
||||||
msgstr "Foto dei contatti"
|
msgstr "Foto dei contatti"
|
||||||
|
|
||||||
#: ../../mod/photos.php:99 ../../wip/photos.php:87
|
#: ../../mod/photos.php:99
|
||||||
#: ../../wip/photos-chris.php:107
|
|
||||||
msgid "Contact information unavailable"
|
msgid "Contact information unavailable"
|
||||||
msgstr "Informazione sul contatto non disponibile"
|
msgstr "Informazione sul contatto non disponibile"
|
||||||
|
|
||||||
#: ../../mod/photos.php:110 ../../mod/photos.php:535 ../../mod/photos.php:864
|
#: ../../mod/photos.php:110 ../../mod/photos.php:535 ../../mod/photos.php:879
|
||||||
#: ../../mod/photos.php:879 ../../mod/register.php:288
|
#: ../../mod/photos.php:894 ../../mod/register.php:290
|
||||||
#: ../../mod/register.php:295 ../../mod/register.php:302
|
#: ../../mod/register.php:297 ../../mod/register.php:304
|
||||||
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
|
#: ../../mod/profile_photo.php:58 ../../mod/profile_photo.php:65
|
||||||
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160
|
#: ../../mod/profile_photo.php:72 ../../mod/profile_photo.php:160
|
||||||
#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245
|
#: ../../mod/profile_photo.php:236 ../../mod/profile_photo.php:245
|
||||||
#: ../../wip/photos.php:98 ../../wip/photos.php:493 ../../wip/photos.php:785
|
|
||||||
#: ../../wip/photos.php:800 ../../wip/photos-chris.php:118
|
|
||||||
#: ../../wip/photos-chris.php:525 ../../wip/photos-chris.php:832
|
|
||||||
#: ../../wip/photos-chris.php:847
|
|
||||||
msgid "Profile Photos"
|
msgid "Profile Photos"
|
||||||
msgstr "Foto del profilo"
|
msgstr "Foto del profilo"
|
||||||
|
|
||||||
#: ../../mod/photos.php:120 ../../wip/photos.php:108
|
#: ../../mod/photos.php:120
|
||||||
#: ../../wip/photos-chris.php:128
|
|
||||||
msgid "Album not found."
|
msgid "Album not found."
|
||||||
msgstr "Album non trovato."
|
msgstr "Album non trovato."
|
||||||
|
|
||||||
#: ../../mod/photos.php:138 ../../mod/photos.php:873 ../../wip/photos.php:126
|
#: ../../mod/photos.php:138 ../../mod/photos.php:888
|
||||||
#: ../../wip/photos.php:794 ../../wip/photos-chris.php:146
|
|
||||||
#: ../../wip/photos-chris.php:841
|
|
||||||
msgid "Delete Album"
|
msgid "Delete Album"
|
||||||
msgstr "Elimina album"
|
msgstr "Elimina album"
|
||||||
|
|
||||||
#: ../../mod/photos.php:201 ../../mod/photos.php:1080 ../../wip/photos.php:192
|
#: ../../mod/photos.php:201 ../../mod/photos.php:1096
|
||||||
#: ../../wip/photos.php:955 ../../wip/photos-chris.php:212
|
|
||||||
#: ../../wip/photos-chris.php:1002
|
|
||||||
msgid "Delete Photo"
|
msgid "Delete Photo"
|
||||||
msgstr "Elimina foto"
|
msgstr "Elimina foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:473 ../../wip/photos.php:442
|
#: ../../mod/photos.php:473
|
||||||
#: ../../wip/photos-chris.php:462
|
|
||||||
msgid "was tagged in a"
|
msgid "was tagged in a"
|
||||||
msgstr "è stato taggato in"
|
msgstr "è stato taggato in"
|
||||||
|
|
||||||
#: ../../mod/photos.php:473 ../../mod/like.php:110
|
#: ../../mod/photos.php:473 ../../mod/like.php:110
|
||||||
#: ../../include/conversation.php:20 ../../wip/photos.php:442
|
#: ../../include/conversation.php:20
|
||||||
#: ../../wip/photos-chris.php:462
|
|
||||||
msgid "photo"
|
msgid "photo"
|
||||||
msgstr "foto"
|
msgstr "foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:473 ../../wip/photos.php:442
|
#: ../../mod/photos.php:473
|
||||||
#: ../../wip/photos-chris.php:462
|
|
||||||
msgid "by"
|
msgid "by"
|
||||||
msgstr "da"
|
msgstr "da"
|
||||||
|
|
||||||
#: ../../mod/photos.php:563 ../../addon/js_upload/js_upload.php:306
|
#: ../../mod/photos.php:563 ../../addon/js_upload/js_upload.php:306
|
||||||
#: ../../wip/photos.php:511 ../../wip/photos-chris.php:555
|
|
||||||
msgid "Image exceeds size limit of "
|
msgid "Image exceeds size limit of "
|
||||||
msgstr "L'immagine supera il limite di dimensione di "
|
msgstr "L'immagine supera il limite di dimensione di "
|
||||||
|
|
||||||
#: ../../mod/photos.php:575 ../../mod/profile_photo.php:118
|
#: ../../mod/photos.php:577 ../../mod/profile_photo.php:118
|
||||||
#: ../../mod/wall_upload.php:65 ../../wip/photos.php:520
|
#: ../../mod/wall_upload.php:65
|
||||||
#: ../../wip/photos-chris.php:567
|
|
||||||
msgid "Unable to process image."
|
msgid "Unable to process image."
|
||||||
msgstr "Impossibile elaborare l'immagine."
|
msgstr "Impossibile elaborare l'immagine."
|
||||||
|
|
||||||
#: ../../mod/photos.php:593 ../../mod/profile_photo.php:241
|
#: ../../mod/photos.php:597 ../../mod/profile_photo.php:241
|
||||||
#: ../../mod/wall_upload.php:82 ../../wip/photos.php:537
|
#: ../../mod/wall_upload.php:82
|
||||||
#: ../../wip/photos-chris.php:585
|
|
||||||
msgid "Image upload failed."
|
msgid "Image upload failed."
|
||||||
msgstr "Caricamento immagine fallito."
|
msgstr "Caricamento immagine fallito."
|
||||||
|
|
||||||
#: ../../mod/photos.php:665 ../../mod/dfrn_request.php:591
|
#: ../../mod/photos.php:680 ../../mod/dfrn_request.php:591
|
||||||
#: ../../mod/viewcontacts.php:16 ../../mod/display.php:7
|
#: ../../mod/viewcontacts.php:16 ../../mod/display.php:7
|
||||||
#: ../../mod/search.php:13 ../../mod/directory.php:18
|
#: ../../mod/search.php:13 ../../mod/directory.php:20
|
||||||
msgid "Public access denied."
|
msgid "Public access denied."
|
||||||
msgstr "Accesso pubblico non consentito."
|
msgstr "Accesso pubblico non consentito."
|
||||||
|
|
||||||
#: ../../mod/photos.php:675 ../../wip/photos.php:611
|
#: ../../mod/photos.php:690
|
||||||
#: ../../wip/photos-chris.php:658
|
|
||||||
msgid "No photos selected"
|
msgid "No photos selected"
|
||||||
msgstr "Nessuna foto selezionata"
|
msgstr "Nessuna foto selezionata"
|
||||||
|
|
||||||
#: ../../mod/photos.php:822 ../../wip/photos.php:742
|
#: ../../mod/photos.php:837
|
||||||
#: ../../wip/photos-chris.php:789
|
|
||||||
msgid "Upload Photos"
|
msgid "Upload Photos"
|
||||||
msgstr "Carica foto"
|
msgstr "Carica foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:825 ../../mod/photos.php:868 ../../wip/photos.php:745
|
#: ../../mod/photos.php:840 ../../mod/photos.php:883
|
||||||
#: ../../wip/photos.php:789 ../../wip/photos-chris.php:792
|
|
||||||
#: ../../wip/photos-chris.php:836
|
|
||||||
msgid "New album name: "
|
msgid "New album name: "
|
||||||
msgstr "Nome nuovo album: "
|
msgstr "Nome nuovo album: "
|
||||||
|
|
||||||
#: ../../mod/photos.php:826 ../../wip/photos.php:746
|
#: ../../mod/photos.php:841
|
||||||
#: ../../wip/photos-chris.php:793
|
|
||||||
msgid "or existing album name: "
|
msgid "or existing album name: "
|
||||||
msgstr "o nome di un album esistente: "
|
msgstr "o nome di un album esistente: "
|
||||||
|
|
||||||
#: ../../mod/photos.php:828 ../../mod/photos.php:1075 ../../wip/photos.php:749
|
#: ../../mod/photos.php:843 ../../mod/photos.php:1091
|
||||||
#: ../../wip/photos-chris.php:796
|
|
||||||
msgid "Permissions"
|
msgid "Permissions"
|
||||||
msgstr "Permessi"
|
msgstr "Permessi"
|
||||||
|
|
||||||
#: ../../mod/photos.php:883 ../../wip/photos.php:804
|
#: ../../mod/photos.php:898
|
||||||
#: ../../wip/photos-chris.php:851
|
|
||||||
msgid "Edit Album"
|
msgid "Edit Album"
|
||||||
msgstr "Modifica album"
|
msgstr "Modifica album"
|
||||||
|
|
||||||
#: ../../mod/photos.php:893 ../../mod/photos.php:1277 ../../wip/photos.php:814
|
#: ../../mod/photos.php:908 ../../mod/photos.php:1311
|
||||||
#: ../../wip/photos.php:1141 ../../wip/photos-chris.php:861
|
|
||||||
#: ../../wip/photos-chris.php:1188
|
|
||||||
msgid "View Photo"
|
msgid "View Photo"
|
||||||
msgstr "Vedi foto"
|
msgstr "Vedi foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:922 ../../wip/photos.php:843
|
#: ../../mod/photos.php:937
|
||||||
#: ../../wip/photos-chris.php:890
|
|
||||||
msgid "Photo not available"
|
msgid "Photo not available"
|
||||||
msgstr "Foto non disponibile"
|
msgstr "Foto non disponibile"
|
||||||
|
|
||||||
#: ../../mod/photos.php:969 ../../wip/photos.php:864
|
#: ../../mod/photos.php:986
|
||||||
#: ../../wip/photos-chris.php:911
|
|
||||||
msgid "Edit photo"
|
msgid "Edit photo"
|
||||||
msgstr "Modifica foto"
|
msgstr "Modifica foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:971
|
#: ../../mod/photos.php:987
|
||||||
msgid "Use as profile photo"
|
msgid "Use as profile photo"
|
||||||
msgstr "Usa come foto del profilo"
|
msgstr "Usa come foto del profilo"
|
||||||
|
|
||||||
#: ../../mod/photos.php:975 ../../include/conversation.php:317
|
#: ../../mod/photos.php:993 ../../include/conversation.php:316
|
||||||
msgid "Private Message"
|
msgid "Private Message"
|
||||||
msgstr "Messaggio privato"
|
msgstr "Messaggio privato"
|
||||||
|
|
||||||
#: ../../mod/photos.php:982
|
#: ../../mod/photos.php:1000
|
||||||
msgid "<< Prev"
|
msgid "<< Prev"
|
||||||
msgstr "<< Prec"
|
msgstr "<< Prec"
|
||||||
|
|
||||||
#: ../../mod/photos.php:986 ../../wip/photos.php:870
|
#: ../../mod/photos.php:1004
|
||||||
#: ../../wip/photos-chris.php:917
|
|
||||||
msgid "View Full Size"
|
msgid "View Full Size"
|
||||||
msgstr "Vedi dimensione intera"
|
msgstr "Vedi dimensione intera"
|
||||||
|
|
||||||
#: ../../mod/photos.php:990
|
#: ../../mod/photos.php:1009
|
||||||
msgid "Next >>"
|
msgid "Next >>"
|
||||||
msgstr "Succ >>"
|
msgstr "Succ >>"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1049 ../../wip/photos.php:928
|
#: ../../mod/photos.php:1071
|
||||||
#: ../../wip/photos-chris.php:975
|
|
||||||
msgid "Tags: "
|
msgid "Tags: "
|
||||||
msgstr "Tag: "
|
msgstr "Tag: "
|
||||||
|
|
||||||
#: ../../mod/photos.php:1059 ../../wip/photos.php:938
|
#: ../../mod/photos.php:1074
|
||||||
#: ../../wip/photos-chris.php:985
|
|
||||||
msgid "[Remove any tag]"
|
msgid "[Remove any tag]"
|
||||||
msgstr "[Rimuovi tutti i tag]"
|
msgstr "[Rimuovi tutti i tag]"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1068
|
#: ../../mod/photos.php:1084
|
||||||
msgid "New album name"
|
msgid "New album name"
|
||||||
msgstr "Nuovo nome album"
|
msgstr "Nuovo nome album"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1071 ../../wip/photos.php:948
|
#: ../../mod/photos.php:1087
|
||||||
#: ../../wip/photos-chris.php:995
|
|
||||||
msgid "Caption"
|
msgid "Caption"
|
||||||
msgstr "Didascalia"
|
msgstr "Didascalia"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1073 ../../wip/photos.php:950
|
#: ../../mod/photos.php:1089
|
||||||
#: ../../wip/photos-chris.php:997
|
|
||||||
msgid "Add a Tag"
|
msgid "Add a Tag"
|
||||||
msgstr "Aggiungi un tag"
|
msgstr "Aggiungi un tag"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1077 ../../wip/photos.php:952
|
#: ../../mod/photos.php:1093
|
||||||
#: ../../wip/photos-chris.php:999
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
"Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1097 ../../include/conversation.php:365
|
#: ../../mod/photos.php:1113 ../../include/conversation.php:364
|
||||||
msgid "I like this (toggle)"
|
msgid "I like this (toggle)"
|
||||||
msgstr "Mi piace questo (metti/togli)"
|
msgstr "Mi piace questo (metti/togli)"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1098 ../../include/conversation.php:366
|
#: ../../mod/photos.php:1114 ../../include/conversation.php:365
|
||||||
msgid "I don't like this (toggle)"
|
msgid "I don't like this (toggle)"
|
||||||
msgstr "Non mi piace questo (metti/togli)"
|
msgstr "Non mi piace questo (metti/togli)"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1099 ../../include/conversation.php:367
|
#: ../../mod/photos.php:1115 ../../include/conversation.php:366
|
||||||
#: ../../include/conversation.php:735
|
#: ../../include/conversation.php:731
|
||||||
msgid "Share"
|
msgid "Share"
|
||||||
msgstr "Condividi"
|
msgstr "Condividi"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1100 ../../mod/editpost.php:95
|
#: ../../mod/photos.php:1116 ../../mod/editpost.php:97
|
||||||
#: ../../mod/message.php:190 ../../mod/message.php:324
|
#: ../../mod/message.php:190 ../../mod/message.php:324
|
||||||
#: ../../include/conversation.php:368 ../../include/conversation.php:744
|
#: ../../include/conversation.php:367 ../../include/conversation.php:741
|
||||||
msgid "Please wait"
|
msgid "Please wait"
|
||||||
msgstr "Attendi"
|
msgstr "Attendi"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1119 ../../mod/photos.php:1161
|
#: ../../mod/photos.php:1132 ../../mod/photos.php:1171
|
||||||
#: ../../mod/photos.php:1190 ../../include/conversation.php:381
|
#: ../../mod/photos.php:1202 ../../include/conversation.php:380
|
||||||
#: ../../wip/photos.php:986 ../../wip/photos.php:1025
|
|
||||||
#: ../../wip/photos.php:1053 ../../wip/photos-chris.php:1033
|
|
||||||
#: ../../wip/photos-chris.php:1072 ../../wip/photos-chris.php:1100
|
|
||||||
msgid "This is you"
|
msgid "This is you"
|
||||||
msgstr "Questo sei tu"
|
msgstr "Questo sei tu"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1121 ../../include/conversation.php:383
|
#: ../../mod/photos.php:1134 ../../mod/photos.php:1173
|
||||||
#: ../../boot.php:373
|
#: ../../mod/photos.php:1204 ../../include/conversation.php:382
|
||||||
|
#: ../../boot.php:386
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
msgstr "Commento"
|
msgstr "Commento"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1218 ../../mod/group.php:146
|
#: ../../mod/photos.php:1232 ../../mod/group.php:146
|
||||||
#: ../../include/conversation.php:182 ../../include/conversation.php:394
|
#: ../../include/conversation.php:179 ../../include/conversation.php:393
|
||||||
#: ../../wip/group.php:162
|
|
||||||
msgid "Delete"
|
msgid "Delete"
|
||||||
msgstr "Cancella"
|
msgstr "Cancella"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1264 ../../wip/photos.php:1127
|
#: ../../mod/photos.php:1298
|
||||||
#: ../../wip/photos-chris.php:1174
|
|
||||||
msgid "Recent Photos"
|
msgid "Recent Photos"
|
||||||
msgstr "Foto recenti"
|
msgstr "Foto recenti"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1268 ../../wip/photos.php:1131
|
#: ../../mod/photos.php:1302
|
||||||
#: ../../wip/photos-chris.php:1178
|
|
||||||
msgid "Upload New Photos"
|
msgid "Upload New Photos"
|
||||||
msgstr "Carica nuova foto"
|
msgstr "Carica nuova foto"
|
||||||
|
|
||||||
#: ../../mod/photos.php:1281 ../../wip/photos.php:1147
|
#: ../../mod/photos.php:1315
|
||||||
#: ../../wip/photos-chris.php:1194
|
|
||||||
msgid "View Album"
|
msgid "View Album"
|
||||||
msgstr "Vedi album"
|
msgstr "Vedi album"
|
||||||
|
|
||||||
|
|
@ -409,54 +372,62 @@ msgstr "Elemento non trovato"
|
||||||
msgid "Edit post"
|
msgid "Edit post"
|
||||||
msgstr "Modifica messaggio"
|
msgstr "Modifica messaggio"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:74 ../../include/conversation.php:724
|
#: ../../mod/editpost.php:75 ../../include/conversation.php:717
|
||||||
msgid "Post to Email"
|
msgid "Post to Email"
|
||||||
msgstr "Invia a Email"
|
msgstr "Invia a Email"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:87 ../../include/group.php:169
|
#: ../../mod/editpost.php:88 ../../include/group.php:169
|
||||||
#: ../../include/conversation.php:392
|
#: ../../include/conversation.php:391
|
||||||
msgid "Edit"
|
msgid "Edit"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:88 ../../mod/message.php:188
|
#: ../../mod/editpost.php:89 ../../mod/message.php:188
|
||||||
#: ../../mod/message.php:322 ../../include/conversation.php:736
|
#: ../../mod/message.php:322 ../../include/conversation.php:732
|
||||||
msgid "Upload photo"
|
msgid "Upload photo"
|
||||||
msgstr "Carica foto"
|
msgstr "Carica foto"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:89 ../../mod/message.php:189
|
#: ../../mod/editpost.php:90 ../../include/conversation.php:733
|
||||||
#: ../../mod/message.php:323 ../../include/conversation.php:737
|
msgid "Attach file"
|
||||||
|
msgstr "Allega file"
|
||||||
|
|
||||||
|
#: ../../mod/editpost.php:91 ../../mod/message.php:189
|
||||||
|
#: ../../mod/message.php:323 ../../include/conversation.php:734
|
||||||
msgid "Insert web link"
|
msgid "Insert web link"
|
||||||
msgstr "Inserisci link"
|
msgstr "Inserisci link"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:90 ../../include/conversation.php:738
|
#: ../../mod/editpost.php:92 ../../include/conversation.php:735
|
||||||
msgid "Insert YouTube video"
|
msgid "Insert YouTube video"
|
||||||
msgstr "Inserisci video da YouTube"
|
msgstr "Inserisci video da YouTube"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:91 ../../include/conversation.php:739
|
#: ../../mod/editpost.php:93 ../../include/conversation.php:736
|
||||||
msgid "Insert Vorbis [.ogg] video"
|
msgid "Insert Vorbis [.ogg] video"
|
||||||
msgstr "Inserisci video Theora [.ogg]"
|
msgstr "Inserisci video Theora [.ogg]"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:92 ../../include/conversation.php:740
|
#: ../../mod/editpost.php:94 ../../include/conversation.php:737
|
||||||
msgid "Insert Vorbis [.ogg] audio"
|
msgid "Insert Vorbis [.ogg] audio"
|
||||||
msgstr "Inserisci audio Vorbis [.ogg]"
|
msgstr "Inserisci audio Vorbis [.ogg]"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:93 ../../include/conversation.php:741
|
#: ../../mod/editpost.php:95 ../../include/conversation.php:738
|
||||||
msgid "Set your location"
|
msgid "Set your location"
|
||||||
msgstr "Imposta la tua posizione"
|
msgstr "Imposta la tua posizione"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:94 ../../include/conversation.php:742
|
#: ../../mod/editpost.php:96 ../../include/conversation.php:739
|
||||||
msgid "Clear browser location"
|
msgid "Clear browser location"
|
||||||
msgstr "Cancella la tua posizione data dal browser"
|
msgstr "Cancella la tua posizione data dal browser"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:96 ../../include/conversation.php:745
|
#: ../../mod/editpost.php:98 ../../include/conversation.php:742
|
||||||
msgid "Permission settings"
|
msgid "Permission settings"
|
||||||
msgstr "Impostazione permessi"
|
msgstr "Impostazione permessi"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:102 ../../include/conversation.php:751
|
#: ../../mod/editpost.php:106 ../../include/conversation.php:750
|
||||||
msgid "CC: email addresses"
|
msgid "CC: email addresses"
|
||||||
msgstr "CC: indirizzi email"
|
msgstr "CC: indirizzi email"
|
||||||
|
|
||||||
#: ../../mod/editpost.php:104 ../../include/conversation.php:753
|
#: ../../mod/editpost.php:107 ../../include/conversation.php:751
|
||||||
|
msgid "Public post"
|
||||||
|
msgstr "Messaggio pubblico"
|
||||||
|
|
||||||
|
#: ../../mod/editpost.php:109 ../../include/conversation.php:753
|
||||||
msgid "Example: bob@example.com, mary@example.com"
|
msgid "Example: bob@example.com, mary@example.com"
|
||||||
msgstr "Esempio: bob@example.com, mary@example.com"
|
msgstr "Esempio: bob@example.com, mary@example.com"
|
||||||
|
|
||||||
|
|
@ -532,7 +503,7 @@ msgstr "Sembra che tu sia già amico di %s."
|
||||||
msgid "Invalid profile URL."
|
msgid "Invalid profile URL."
|
||||||
msgstr "Indirizzo profilo invalido."
|
msgstr "Indirizzo profilo invalido."
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:16
|
#: ../../mod/dfrn_request.php:340 ../../mod/follow.php:20
|
||||||
msgid "Disallowed profile URL."
|
msgid "Disallowed profile URL."
|
||||||
msgstr "Indirizzo profilo non permesso."
|
msgstr "Indirizzo profilo non permesso."
|
||||||
|
|
||||||
|
|
@ -569,7 +540,7 @@ msgstr "Conferma la tua richiesta di connessione con %s."
|
||||||
msgid "Confirm"
|
msgid "Confirm"
|
||||||
msgstr "Conferma"
|
msgstr "Conferma"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:542 ../../include/items.php:1409
|
#: ../../mod/dfrn_request.php:542 ../../include/items.php:1440
|
||||||
msgid "[Name Withheld]"
|
msgid "[Name Withheld]"
|
||||||
msgstr "[Nome Nascosto]"
|
msgstr "[Nome Nascosto]"
|
||||||
|
|
||||||
|
|
@ -578,11 +549,10 @@ msgid "Introduction received at "
|
||||||
msgstr "Introduzione ricevuta su "
|
msgstr "Introduzione ricevuta su "
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:40
|
#: ../../mod/dfrn_request.php:551 ../../mod/lostpass.php:40
|
||||||
#: ../../mod/lostpass.php:102 ../../mod/register.php:333
|
#: ../../mod/lostpass.php:102 ../../mod/register.php:335
|
||||||
#: ../../mod/register.php:373 ../../mod/regmod.php:94 ../../mod/item.php:480
|
#: ../../mod/register.php:385 ../../mod/regmod.php:98
|
||||||
#: ../../mod/item.php:506 ../../mod/dfrn_notify.php:189
|
#: ../../mod/dfrn_notify.php:191 ../../mod/dfrn_notify.php:443
|
||||||
#: ../../mod/dfrn_notify.php:405 ../../mod/dfrn_notify.php:495
|
#: ../../mod/dfrn_confirm.php:658 ../../include/items.php:1449
|
||||||
#: ../../mod/dfrn_confirm.php:657 ../../include/items.php:1418
|
|
||||||
msgid "Administrator"
|
msgid "Administrator"
|
||||||
msgstr "Amministratore"
|
msgstr "Amministratore"
|
||||||
|
|
||||||
|
|
@ -607,14 +577,14 @@ msgid "Does $name know you?"
|
||||||
msgstr "$name ti conosce?"
|
msgstr "$name ti conosce?"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:350
|
#: ../../mod/dfrn_request.php:634 ../../mod/settings.php:350
|
||||||
#: ../../mod/settings.php:362 ../../mod/register.php:444
|
#: ../../mod/settings.php:362 ../../mod/register.php:459
|
||||||
#: ../../mod/profiles.php:355
|
#: ../../mod/profiles.php:358 ../../mod/profiles.php:367
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr "Si"
|
msgstr "Si"
|
||||||
|
|
||||||
#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:351
|
#: ../../mod/dfrn_request.php:635 ../../mod/settings.php:351
|
||||||
#: ../../mod/settings.php:363 ../../mod/register.php:445
|
#: ../../mod/settings.php:363 ../../mod/register.php:460
|
||||||
#: ../../mod/profiles.php:356
|
#: ../../mod/profiles.php:359 ../../mod/profiles.php:368
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "No"
|
msgstr "No"
|
||||||
|
|
||||||
|
|
@ -1165,7 +1135,7 @@ msgstr "Bloccato"
|
||||||
msgid "Currently ignored"
|
msgid "Currently ignored"
|
||||||
msgstr "Ignorato"
|
msgstr "Ignorato"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:322 ../../include/nav.php:110
|
#: ../../mod/contacts.php:322 ../../include/nav.php:109
|
||||||
#: ../../include/acl_selectors.php:141 ../../include/acl_selectors.php:156
|
#: ../../include/acl_selectors.php:141 ../../include/acl_selectors.php:156
|
||||||
msgid "Contacts"
|
msgid "Contacts"
|
||||||
msgstr "Contatti"
|
msgstr "Contatti"
|
||||||
|
|
@ -1178,11 +1148,11 @@ msgstr "Mostra connessioni bloccate"
|
||||||
msgid "Hide Blocked Connections"
|
msgid "Hide Blocked Connections"
|
||||||
msgstr "Nascondi connessioni bloccate"
|
msgstr "Nascondi connessioni bloccate"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:326 ../../mod/directory.php:44
|
#: ../../mod/contacts.php:326 ../../mod/directory.php:55
|
||||||
msgid "Finding: "
|
msgid "Finding: "
|
||||||
msgstr "Cerco: "
|
msgstr "Cerco: "
|
||||||
|
|
||||||
#: ../../mod/contacts.php:327 ../../mod/directory.php:46
|
#: ../../mod/contacts.php:327 ../../mod/directory.php:57
|
||||||
msgid "Find"
|
msgid "Find"
|
||||||
msgstr "Trova"
|
msgstr "Trova"
|
||||||
|
|
||||||
|
|
@ -1190,7 +1160,7 @@ msgstr "Trova"
|
||||||
msgid "Visit $username's profile"
|
msgid "Visit $username's profile"
|
||||||
msgstr "Visita il profilo di $username"
|
msgstr "Visita il profilo di $username"
|
||||||
|
|
||||||
#: ../../mod/contacts.php:388 ../../include/conversation.php:604
|
#: ../../mod/contacts.php:388 ../../include/conversation.php:597
|
||||||
msgid "Edit contact"
|
msgid "Edit contact"
|
||||||
msgstr "Modifca contatto"
|
msgstr "Modifca contatto"
|
||||||
|
|
||||||
|
|
@ -1211,7 +1181,7 @@ msgstr ""
|
||||||
"La richiesta non può essere verificata. (Puoi averla già richiesta "
|
"La richiesta non può essere verificata. (Puoi averla già richiesta "
|
||||||
"precendentemente). Reimpostazione password fallita."
|
"precendentemente). Reimpostazione password fallita."
|
||||||
|
|
||||||
#: ../../mod/lostpass.php:78 ../../boot.php:839
|
#: ../../mod/lostpass.php:78 ../../boot.php:852
|
||||||
msgid "Password Reset"
|
msgid "Password Reset"
|
||||||
msgstr "Resetta password"
|
msgstr "Resetta password"
|
||||||
|
|
||||||
|
|
@ -1296,6 +1266,7 @@ msgid "Settings updated."
|
||||||
msgstr "Impostazioni aggiornate."
|
msgstr "Impostazioni aggiornate."
|
||||||
|
|
||||||
#: ../../mod/settings.php:256 ../../mod/settings.php:418
|
#: ../../mod/settings.php:256 ../../mod/settings.php:418
|
||||||
|
#: ../../addon/widgets/widgets.php:123
|
||||||
msgid "Plugin Settings"
|
msgid "Plugin Settings"
|
||||||
msgstr "Impostazioni Plugin"
|
msgstr "Impostazioni Plugin"
|
||||||
|
|
||||||
|
|
@ -1562,50 +1533,46 @@ msgstr "Vista Nuovi Elementi"
|
||||||
|
|
||||||
#: ../../mod/network.php:64
|
#: ../../mod/network.php:64
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d member"
|
msgid "Warning: This group contains %s member from an insecure network."
|
||||||
msgid_plural "%d members"
|
msgid_plural ""
|
||||||
msgstr[0] "%d membro"
|
"Warning: This group contains %s members from an insecure network."
|
||||||
msgstr[1] "%d membri"
|
msgstr[0] "Attenzione: questo gruppo contiene %s membro da un network insicuro."
|
||||||
|
msgstr[1] "Attenzione: questo gruppo contiene %s membri da un network insicuro."
|
||||||
|
|
||||||
#: ../../mod/network.php:65
|
#: ../../mod/network.php:67
|
||||||
#, php-format
|
|
||||||
msgid "Warning: This group contains %s from an insecure network."
|
|
||||||
msgstr "Attenzione: questo gruppo contiente %s da un network insicuro."
|
|
||||||
|
|
||||||
#: ../../mod/network.php:66
|
|
||||||
msgid "Private messages to this group are at risk of public disclosure."
|
msgid "Private messages to this group are at risk of public disclosure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"I messaggi privati a questo gruppo sono a rischio di visualizzazione "
|
"I messaggi privati a questo gruppo sono a rischio di visualizzazione "
|
||||||
"pubblica."
|
"pubblica."
|
||||||
|
|
||||||
#: ../../mod/network.php:126
|
#: ../../mod/network.php:129
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Nessun gruppo"
|
msgstr "Nessun gruppo"
|
||||||
|
|
||||||
#: ../../mod/network.php:137
|
#: ../../mod/network.php:140
|
||||||
msgid "Group is empty"
|
msgid "Group is empty"
|
||||||
msgstr "Il gruppo è vuoto"
|
msgstr "Il gruppo è vuoto"
|
||||||
|
|
||||||
#: ../../mod/network.php:141
|
#: ../../mod/network.php:144
|
||||||
msgid "Group: "
|
msgid "Group: "
|
||||||
msgstr "Gruppo: "
|
msgstr "Gruppo: "
|
||||||
|
|
||||||
#: ../../mod/network.php:151
|
#: ../../mod/network.php:154
|
||||||
msgid "Contact: "
|
msgid "Contact: "
|
||||||
msgstr "Contatto:"
|
msgstr "Contatto:"
|
||||||
|
|
||||||
#: ../../mod/network.php:153
|
#: ../../mod/network.php:156
|
||||||
msgid "Private messages to this person are at risk of public disclosure."
|
msgid "Private messages to this person are at risk of public disclosure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"I messaggi privati a questa persona sono a rischio di divulgazione al "
|
"I messaggi privati a questa persona sono a rischio di divulgazione al "
|
||||||
"pubblico."
|
"pubblico."
|
||||||
|
|
||||||
#: ../../mod/network.php:158
|
#: ../../mod/network.php:161
|
||||||
msgid "Invalid contact."
|
msgid "Invalid contact."
|
||||||
msgstr "Contatto non valido."
|
msgstr "Contatto non valido."
|
||||||
|
|
||||||
#: ../../mod/network.php:257 ../../mod/register.php:450
|
#: ../../mod/network.php:262 ../../mod/register.php:465
|
||||||
#: ../../mod/profile.php:262 ../../mod/display.php:147
|
#: ../../mod/profile.php:265 ../../mod/display.php:147
|
||||||
msgid ""
|
msgid ""
|
||||||
"Shared content is covered by the <a "
|
"Shared content is covered by the <a "
|
||||||
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
|
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
|
||||||
|
|
@ -1615,42 +1582,55 @@ msgstr ""
|
||||||
"href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons"
|
"href=\"http://creativecommons.org/licenses/by/3.0/deed.it\">Creative Commons"
|
||||||
" Attribuzione 3.0</a>."
|
" Attribuzione 3.0</a>."
|
||||||
|
|
||||||
#: ../../mod/group.php:27 ../../wip/group.php:29
|
#: ../../mod/notes.php:41 ../../mod/apps.php:8
|
||||||
|
msgid "Private Notes"
|
||||||
|
msgstr "Note Private"
|
||||||
|
|
||||||
|
#: ../../mod/notes.php:60
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "Salva"
|
||||||
|
|
||||||
|
#: ../../mod/attach.php:6
|
||||||
|
msgid "Item not available."
|
||||||
|
msgstr "Elemento non disponibile."
|
||||||
|
|
||||||
|
#: ../../mod/attach.php:16
|
||||||
|
msgid "Item was not found."
|
||||||
|
msgstr "Elemento non trovato."
|
||||||
|
|
||||||
|
#: ../../mod/group.php:27
|
||||||
msgid "Group created."
|
msgid "Group created."
|
||||||
msgstr "Gruppo creato."
|
msgstr "Gruppo creato."
|
||||||
|
|
||||||
#: ../../mod/group.php:33 ../../wip/group.php:35
|
#: ../../mod/group.php:33
|
||||||
msgid "Could not create group."
|
msgid "Could not create group."
|
||||||
msgstr "Impossibile creare il gruppo."
|
msgstr "Impossibile creare il gruppo."
|
||||||
|
|
||||||
#: ../../mod/group.php:43 ../../mod/group.php:115 ../../wip/group.php:45
|
#: ../../mod/group.php:43 ../../mod/group.php:115
|
||||||
#: ../../wip/group.php:137
|
|
||||||
msgid "Group not found."
|
msgid "Group not found."
|
||||||
msgstr "Gruppo non trovato."
|
msgstr "Gruppo non trovato."
|
||||||
|
|
||||||
#: ../../mod/group.php:56 ../../wip/group.php:58
|
#: ../../mod/group.php:56
|
||||||
msgid "Group name changed."
|
msgid "Group name changed."
|
||||||
msgstr "Il nome del gruppo è cambiato."
|
msgstr "Il nome del gruppo è cambiato."
|
||||||
|
|
||||||
#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../wip/group.php:90
|
#: ../../mod/group.php:67 ../../mod/profperm.php:19 ../../index.php:255
|
||||||
#: ../../index.php:264
|
|
||||||
msgid "Permission denied"
|
msgid "Permission denied"
|
||||||
msgstr "Permesso negato"
|
msgstr "Permesso negato"
|
||||||
|
|
||||||
#: ../../mod/group.php:74 ../../wip/group.php:97
|
#: ../../mod/group.php:74
|
||||||
msgid "Create a group of contacts/friends."
|
msgid "Create a group of contacts/friends."
|
||||||
msgstr "Crea un gruppo di amici/contatti."
|
msgstr "Crea un gruppo di amici/contatti."
|
||||||
|
|
||||||
#: ../../mod/group.php:75 ../../mod/group.php:158 ../../wip/group.php:98
|
#: ../../mod/group.php:75 ../../mod/group.php:158
|
||||||
#: ../../wip/group.php:174
|
|
||||||
msgid "Group Name: "
|
msgid "Group Name: "
|
||||||
msgstr "Nome del gruppo:"
|
msgstr "Nome del gruppo:"
|
||||||
|
|
||||||
#: ../../mod/group.php:90 ../../wip/group.php:113
|
#: ../../mod/group.php:90
|
||||||
msgid "Group removed."
|
msgid "Group removed."
|
||||||
msgstr "Gruppo rimosso."
|
msgstr "Gruppo rimosso."
|
||||||
|
|
||||||
#: ../../mod/group.php:92 ../../wip/group.php:115
|
#: ../../mod/group.php:92
|
||||||
msgid "Unable to remove group."
|
msgid "Unable to remove group."
|
||||||
msgstr "Impossibile rimuovere il gruppo."
|
msgstr "Impossibile rimuovere il gruppo."
|
||||||
|
|
||||||
|
|
@ -1658,15 +1638,15 @@ msgstr "Impossibile rimuovere il gruppo."
|
||||||
msgid "Click on a contact to add or remove."
|
msgid "Click on a contact to add or remove."
|
||||||
msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
|
msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
|
||||||
|
|
||||||
#: ../../mod/group.php:157 ../../wip/group.php:173
|
#: ../../mod/group.php:157
|
||||||
msgid "Group Editor"
|
msgid "Group Editor"
|
||||||
msgstr "Modifica gruppo"
|
msgstr "Modifica gruppo"
|
||||||
|
|
||||||
#: ../../mod/group.php:169
|
#: ../../mod/group.php:172
|
||||||
msgid "Members"
|
msgid "Members"
|
||||||
msgstr "Membri"
|
msgstr "Membri"
|
||||||
|
|
||||||
#: ../../mod/group.php:183
|
#: ../../mod/group.php:186
|
||||||
msgid "All Contacts"
|
msgid "All Contacts"
|
||||||
msgstr "Tutti i Contatti"
|
msgstr "Tutti i Contatti"
|
||||||
|
|
||||||
|
|
@ -1678,7 +1658,7 @@ msgstr "Indentificativo del profilo non valido."
|
||||||
msgid "Profile Visibility Editor"
|
msgid "Profile Visibility Editor"
|
||||||
msgstr "Modifica Visibilità del Profilo"
|
msgstr "Modifica Visibilità del Profilo"
|
||||||
|
|
||||||
#: ../../mod/profperm.php:94 ../../mod/profile.php:113
|
#: ../../mod/profperm.php:94 ../../mod/profile.php:116
|
||||||
#: ../../include/profile_advanced.php:7
|
#: ../../include/profile_advanced.php:7
|
||||||
msgid "Profile"
|
msgid "Profile"
|
||||||
msgstr "Profilo"
|
msgstr "Profilo"
|
||||||
|
|
@ -1691,7 +1671,7 @@ msgstr "Visibile A"
|
||||||
msgid "All Contacts (with secure profile access)"
|
msgid "All Contacts (with secure profile access)"
|
||||||
msgstr "Tutti i Contatti (con profilo ad accesso sicuro)"
|
msgstr "Tutti i Contatti (con profilo ad accesso sicuro)"
|
||||||
|
|
||||||
#: ../../mod/viewcontacts.php:25 ../../boot.php:2001
|
#: ../../mod/viewcontacts.php:25 ../../boot.php:2059
|
||||||
msgid "View Contacts"
|
msgid "View Contacts"
|
||||||
msgstr "Guarda contatti"
|
msgstr "Guarda contatti"
|
||||||
|
|
||||||
|
|
@ -1699,40 +1679,40 @@ msgstr "Guarda contatti"
|
||||||
msgid "No contacts."
|
msgid "No contacts."
|
||||||
msgstr "Nessuno contatto."
|
msgstr "Nessuno contatto."
|
||||||
|
|
||||||
#: ../../mod/register.php:47
|
#: ../../mod/register.php:49
|
||||||
msgid "Invalid OpenID url"
|
msgid "Invalid OpenID url"
|
||||||
msgstr "Url OpenID non valido"
|
msgstr "Url OpenID non valido"
|
||||||
|
|
||||||
#: ../../mod/register.php:62
|
#: ../../mod/register.php:64
|
||||||
msgid "Please enter the required information."
|
msgid "Please enter the required information."
|
||||||
msgstr "Inserisci le informazioni richieste."
|
msgstr "Inserisci le informazioni richieste."
|
||||||
|
|
||||||
#: ../../mod/register.php:74
|
#: ../../mod/register.php:76
|
||||||
msgid "Please use a shorter name."
|
msgid "Please use a shorter name."
|
||||||
msgstr "Usa un nome più corto."
|
msgstr "Usa un nome più corto."
|
||||||
|
|
||||||
#: ../../mod/register.php:76
|
#: ../../mod/register.php:78
|
||||||
msgid "Name too short."
|
msgid "Name too short."
|
||||||
msgstr "Il Nome è troppo corto."
|
msgstr "Il Nome è troppo corto."
|
||||||
|
|
||||||
#: ../../mod/register.php:91
|
#: ../../mod/register.php:93
|
||||||
msgid "That doesn't appear to be your full (First Last) name."
|
msgid "That doesn't appear to be your full (First Last) name."
|
||||||
msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
|
msgstr "Questo non sembra essere il tuo nome completo (Nome Cognome)."
|
||||||
|
|
||||||
#: ../../mod/register.php:95
|
#: ../../mod/register.php:97
|
||||||
msgid "Your email domain is not among those allowed on this site."
|
msgid "Your email domain is not among those allowed on this site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il dominio della tua email non è tra quelli autorizzati su questo sito."
|
"Il dominio della tua email non è tra quelli autorizzati su questo sito."
|
||||||
|
|
||||||
#: ../../mod/register.php:98
|
#: ../../mod/register.php:100
|
||||||
msgid "Not a valid email address."
|
msgid "Not a valid email address."
|
||||||
msgstr "Indirizzo email invaildo."
|
msgstr "Indirizzo email invaildo."
|
||||||
|
|
||||||
#: ../../mod/register.php:104
|
#: ../../mod/register.php:106
|
||||||
msgid "Cannot use that email."
|
msgid "Cannot use that email."
|
||||||
msgstr "Questa email non si puo' usare."
|
msgstr "Questa email non si puo' usare."
|
||||||
|
|
||||||
#: ../../mod/register.php:109
|
#: ../../mod/register.php:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
"Your \"nickname\" can only contain \"a-z\", \"0-9\", \"-\", and \"_\", and "
|
||||||
"must also begin with a letter."
|
"must also begin with a letter."
|
||||||
|
|
@ -1740,54 +1720,54 @@ msgstr ""
|
||||||
"Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", "
|
"Il tuo \"soprannome\" puo' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", "
|
||||||
"e deve cominciare con una lettera."
|
"e deve cominciare con una lettera."
|
||||||
|
|
||||||
#: ../../mod/register.php:115 ../../mod/register.php:215
|
#: ../../mod/register.php:117 ../../mod/register.php:217
|
||||||
msgid "Nickname is already registered. Please choose another."
|
msgid "Nickname is already registered. Please choose another."
|
||||||
msgstr "Soprannome già registrato. Scegline un'altro."
|
msgstr "Soprannome già registrato. Scegline un'altro."
|
||||||
|
|
||||||
#: ../../mod/register.php:134
|
#: ../../mod/register.php:136
|
||||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||||
msgstr "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito."
|
msgstr "ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito."
|
||||||
|
|
||||||
#: ../../mod/register.php:201
|
#: ../../mod/register.php:203
|
||||||
msgid "An error occurred during registration. Please try again."
|
msgid "An error occurred during registration. Please try again."
|
||||||
msgstr "Si è verificato un errore durante la registrazione. Prova ancora."
|
msgstr "Si è verificato un errore durante la registrazione. Prova ancora."
|
||||||
|
|
||||||
#: ../../mod/register.php:237
|
#: ../../mod/register.php:239
|
||||||
msgid "An error occurred creating your default profile. Please try again."
|
msgid "An error occurred creating your default profile. Please try again."
|
||||||
msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora."
|
msgstr "Si è verificato un errore creando il tuo profilo. Prova ancora."
|
||||||
|
|
||||||
#: ../../mod/register.php:331 ../../mod/regmod.php:92
|
#: ../../mod/register.php:333 ../../mod/regmod.php:96
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Registration details for %s"
|
msgid "Registration details for %s"
|
||||||
msgstr "Dettagli registrazione per %s"
|
msgstr "Dettagli registrazione per %s"
|
||||||
|
|
||||||
#: ../../mod/register.php:339
|
#: ../../mod/register.php:341
|
||||||
msgid ""
|
msgid ""
|
||||||
"Registration successful. Please check your email for further instructions."
|
"Registration successful. Please check your email for further instructions."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Registrazione completata. Controlla la tua mail per ulteriori informazioni."
|
"Registrazione completata. Controlla la tua mail per ulteriori informazioni."
|
||||||
|
|
||||||
#: ../../mod/register.php:343
|
#: ../../mod/register.php:345
|
||||||
msgid "Failed to send email message. Here is the message that failed."
|
msgid "Failed to send email message. Here is the message that failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Errore inviando il messaggio email. Questo è il messaggio non inviato."
|
"Errore inviando il messaggio email. Questo è il messaggio non inviato."
|
||||||
|
|
||||||
#: ../../mod/register.php:348
|
#: ../../mod/register.php:350
|
||||||
msgid "Your registration can not be processed."
|
msgid "Your registration can not be processed."
|
||||||
msgstr "La tua registrazione non puo' essere elaborata."
|
msgstr "La tua registrazione non puo' essere elaborata."
|
||||||
|
|
||||||
#: ../../mod/register.php:371
|
#: ../../mod/register.php:383
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Registration request at %s"
|
msgid "Registration request at %s"
|
||||||
msgstr "Richiesta di registrazione su %s"
|
msgstr "Richiesta di registrazione su %s"
|
||||||
|
|
||||||
#: ../../mod/register.php:377
|
#: ../../mod/register.php:392
|
||||||
msgid "Your registration is pending approval by the site owner."
|
msgid "Your registration is pending approval by the site owner."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La tua richiesta è in attesa di approvazione da parte del prorietario del "
|
"La tua richiesta è in attesa di approvazione da parte del prorietario del "
|
||||||
"sito."
|
"sito."
|
||||||
|
|
||||||
#: ../../mod/register.php:425
|
#: ../../mod/register.php:440
|
||||||
msgid ""
|
msgid ""
|
||||||
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
|
||||||
"and clicking 'Register'."
|
"and clicking 'Register'."
|
||||||
|
|
@ -1795,7 +1775,7 @@ msgstr ""
|
||||||
"Puoi (opzionalmento) riempire questa maschera via OpenID inserendo il tuo "
|
"Puoi (opzionalmento) riempire questa maschera via OpenID inserendo il tuo "
|
||||||
"OpenID e cliccando 'Registra'."
|
"OpenID e cliccando 'Registra'."
|
||||||
|
|
||||||
#: ../../mod/register.php:426
|
#: ../../mod/register.php:441
|
||||||
msgid ""
|
msgid ""
|
||||||
"If you are not familiar with OpenID, please leave that field blank and fill "
|
"If you are not familiar with OpenID, please leave that field blank and fill "
|
||||||
"in the rest of the items."
|
"in the rest of the items."
|
||||||
|
|
@ -1803,27 +1783,27 @@ msgstr ""
|
||||||
"Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il "
|
"Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il "
|
||||||
"resto della maschera."
|
"resto della maschera."
|
||||||
|
|
||||||
#: ../../mod/register.php:427
|
#: ../../mod/register.php:442
|
||||||
msgid "Your OpenID (optional): "
|
msgid "Your OpenID (optional): "
|
||||||
msgstr "Il tuo OpenID (opzionale): "
|
msgstr "Il tuo OpenID (opzionale): "
|
||||||
|
|
||||||
#: ../../mod/register.php:441
|
#: ../../mod/register.php:456
|
||||||
msgid "Include your profile in member directory?"
|
msgid "Include your profile in member directory?"
|
||||||
msgstr "Includi il tuo profilo nell'elenco dei membir?"
|
msgstr "Includi il tuo profilo nell'elenco dei membir?"
|
||||||
|
|
||||||
#: ../../mod/register.php:457
|
#: ../../mod/register.php:472
|
||||||
msgid "Registration"
|
msgid "Registration"
|
||||||
msgstr "Registrazione"
|
msgstr "Registrazione"
|
||||||
|
|
||||||
#: ../../mod/register.php:465
|
#: ../../mod/register.php:480
|
||||||
msgid "Your Full Name (e.g. Joe Smith): "
|
msgid "Your Full Name (e.g. Joe Smith): "
|
||||||
msgstr "Il tuo Nome Completo (p.e. Mario Rossi): "
|
msgstr "Il tuo Nome Completo (p.e. Mario Rossi): "
|
||||||
|
|
||||||
#: ../../mod/register.php:466
|
#: ../../mod/register.php:481
|
||||||
msgid "Your Email Address: "
|
msgid "Your Email Address: "
|
||||||
msgstr "Il tuo Indirizzo Email: "
|
msgstr "Il tuo Indirizzo Email: "
|
||||||
|
|
||||||
#: ../../mod/register.php:467
|
#: ../../mod/register.php:482
|
||||||
msgid ""
|
msgid ""
|
||||||
"Choose a profile nickname. This must begin with a text character. Your "
|
"Choose a profile nickname. This must begin with a text character. Your "
|
||||||
"profile address on this site will then be "
|
"profile address on this site will then be "
|
||||||
|
|
@ -1832,20 +1812,20 @@ msgstr ""
|
||||||
"Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo "
|
"Scegli un soprannome. Deve cominciare con un carattere. L'indirizzo del tuo "
|
||||||
"profilo sarà '<strong>soprannome@$sitename</strong>'."
|
"profilo sarà '<strong>soprannome@$sitename</strong>'."
|
||||||
|
|
||||||
#: ../../mod/register.php:468
|
#: ../../mod/register.php:483
|
||||||
msgid "Choose a nickname: "
|
msgid "Choose a nickname: "
|
||||||
msgstr "Scegli un soprannome: "
|
msgstr "Scegli un soprannome: "
|
||||||
|
|
||||||
#: ../../mod/register.php:471 ../../include/nav.php:59 ../../boot.php:822
|
#: ../../mod/register.php:486 ../../include/nav.php:59 ../../boot.php:835
|
||||||
msgid "Register"
|
msgid "Register"
|
||||||
msgstr "Regitrati"
|
msgstr "Regitrati"
|
||||||
|
|
||||||
#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:720
|
#: ../../mod/like.php:110 ../../addon/facebook/facebook.php:774
|
||||||
#: ../../include/conversation.php:20
|
#: ../../include/conversation.php:20
|
||||||
msgid "status"
|
msgid "status"
|
||||||
msgstr "stato"
|
msgstr "stato"
|
||||||
|
|
||||||
#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:724
|
#: ../../mod/like.php:127 ../../addon/facebook/facebook.php:778
|
||||||
#: ../../include/conversation.php:25
|
#: ../../include/conversation.php:25
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s likes %2$s's %3$s"
|
msgid "%1$s likes %2$s's %3$s"
|
||||||
|
|
@ -1856,15 +1836,15 @@ msgstr "A %1$s piace %3$s di %2$s"
|
||||||
msgid "%1$s doesn't like %2$s's %3$s"
|
msgid "%1$s doesn't like %2$s's %3$s"
|
||||||
msgstr "A %1$s non piace %3$s di %2$s"
|
msgstr "A %1$s non piace %3$s di %2$s"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:12 ../../wip/friendika.php:12
|
#: ../../mod/friendika.php:43
|
||||||
msgid "This is Friendika version"
|
msgid "This is Friendika version"
|
||||||
msgstr "Questo è Friendika versione"
|
msgstr "Questo è Friendika versione"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:13 ../../wip/friendika.php:13
|
#: ../../mod/friendika.php:44
|
||||||
msgid "running at web location"
|
msgid "running at web location"
|
||||||
msgstr "in esecuzione all'indirizzo"
|
msgstr "in esecuzione all'indirizzo"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:15
|
#: ../../mod/friendika.php:46
|
||||||
msgid ""
|
msgid ""
|
||||||
"Shared content within the Friendika network is provided under the <a "
|
"Shared content within the Friendika network is provided under the <a "
|
||||||
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
|
"href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
|
||||||
|
|
@ -1874,7 +1854,7 @@ msgstr ""
|
||||||
" href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
|
" href=\"http://creativecommons.org/licenses/by/3.0/\">Creative Commons "
|
||||||
"Attribution 3.0 license</a>"
|
"Attribution 3.0 license</a>"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:17
|
#: ../../mod/friendika.php:48
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please visit <a "
|
"Please visit <a "
|
||||||
"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
|
"href=\"http://project.friendika.com\">Project.Friendika.com</a> to learn "
|
||||||
|
|
@ -1883,11 +1863,11 @@ msgstr ""
|
||||||
"Visita <a href=\"http://project.friendika.com\">Project.Friendika.com</a> "
|
"Visita <a href=\"http://project.friendika.com\">Project.Friendika.com</a> "
|
||||||
"per saperne di più sul progetto Friendika."
|
"per saperne di più sul progetto Friendika."
|
||||||
|
|
||||||
#: ../../mod/friendika.php:19 ../../wip/friendika.php:15
|
#: ../../mod/friendika.php:50
|
||||||
msgid "Bug reports and issues: please visit"
|
msgid "Bug reports and issues: please visit"
|
||||||
msgstr "Segnalazioni di bug e problemi: visita"
|
msgstr "Segnalazioni di bug e problemi: visita"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:20 ../../wip/friendika.php:16
|
#: ../../mod/friendika.php:51
|
||||||
msgid ""
|
msgid ""
|
||||||
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
|
"Suggestions, praise, donations, etc. - please email \"Info\" at Friendika - "
|
||||||
"dot com"
|
"dot com"
|
||||||
|
|
@ -1895,27 +1875,31 @@ msgstr ""
|
||||||
"Suggerimenti, preghiere, donazioni, etc - invia una email a \"Info\" at "
|
"Suggerimenti, preghiere, donazioni, etc - invia una email a \"Info\" at "
|
||||||
"Friendika - dot.com"
|
"Friendika - dot.com"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:25
|
#: ../../mod/friendika.php:56
|
||||||
msgid "Installed plugins/addons/apps"
|
msgid "Installed plugins/addons/apps"
|
||||||
msgstr "Plugin/Addon/Applicazioni installate"
|
msgstr "Plugin/Addon/Applicazioni installate"
|
||||||
|
|
||||||
#: ../../mod/friendika.php:33
|
#: ../../mod/friendika.php:64
|
||||||
msgid "No installed plugins/addons/apps"
|
msgid "No installed plugins/addons/apps"
|
||||||
msgstr "Nessuno plugin/addons/applicazione installata"
|
msgstr "Nessuno plugin/addons/applicazione installata"
|
||||||
|
|
||||||
#: ../../mod/regmod.php:10
|
#: ../../mod/regmod.php:12
|
||||||
msgid "Please login."
|
msgid "Please login."
|
||||||
msgstr "Accedi."
|
msgstr "Accedi."
|
||||||
|
|
||||||
#: ../../mod/regmod.php:54
|
#: ../../mod/regmod.php:56
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Registration revoked for %s"
|
msgid "Registration revoked for %s"
|
||||||
msgstr "Registrazione revocata per %s"
|
msgstr "Registrazione revocata per %s"
|
||||||
|
|
||||||
#: ../../mod/regmod.php:99
|
#: ../../mod/regmod.php:105
|
||||||
msgid "Account approved."
|
msgid "Account approved."
|
||||||
msgstr "Account approvato."
|
msgstr "Account approvato."
|
||||||
|
|
||||||
|
#: ../../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/item.php:37
|
#: ../../mod/item.php:37
|
||||||
msgid "Unable to locate original post."
|
msgid "Unable to locate original post."
|
||||||
msgstr "Impossibile trovare il messaggio originale."
|
msgstr "Impossibile trovare il messaggio originale."
|
||||||
|
|
@ -1930,21 +1914,33 @@ msgstr "Messaggio vuoto scartato."
|
||||||
msgid "Wall Photos"
|
msgid "Wall Photos"
|
||||||
msgstr "Foto Bacheca"
|
msgstr "Foto Bacheca"
|
||||||
|
|
||||||
#: ../../mod/item.php:478
|
#: ../../mod/item.php:517 ../../mod/item.php:560 ../../mod/item.php:583
|
||||||
#, php-format
|
#: ../../mod/item.php:624 ../../mod/dfrn_notify.php:193
|
||||||
msgid "%s commented on your item at %s"
|
#: ../../mod/dfrn_notify.php:401 ../../mod/dfrn_notify.php:444
|
||||||
msgstr "%s ha commentato un tuo elemento su %s"
|
#: ../../mod/dfrn_notify.php:530 ../../mod/dfrn_notify.php:571
|
||||||
|
msgid "noreply"
|
||||||
|
msgstr "nessuna risposta"
|
||||||
|
|
||||||
#: ../../mod/item.php:504
|
#: ../../mod/item.php:559 ../../mod/item.php:623 ../../mod/dfrn_notify.php:570
|
||||||
|
msgid "Administrator@"
|
||||||
|
msgstr "Amministratore@"
|
||||||
|
|
||||||
|
#: ../../mod/item.php:562 ../../mod/dfrn_notify.php:446
|
||||||
|
#: ../../mod/dfrn_notify.php:573
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s posted on your profile wall at %s"
|
msgid "%s commented on an item at %s"
|
||||||
|
msgstr "%s ha commentato un elemento su %s"
|
||||||
|
|
||||||
|
#: ../../mod/item.php:626
|
||||||
|
#, php-format
|
||||||
|
msgid "%s posted to your profile wall at %s"
|
||||||
msgstr "%s ha scritto sulla tua bacheca su %s"
|
msgstr "%s ha scritto sulla tua bacheca su %s"
|
||||||
|
|
||||||
#: ../../mod/item.php:534
|
#: ../../mod/item.php:655
|
||||||
msgid "System error. Post not saved."
|
msgid "System error. Post not saved."
|
||||||
msgstr "Errore di sistema. Messaggio non salvato."
|
msgstr "Errore di sistema. Messaggio non salvato."
|
||||||
|
|
||||||
#: ../../mod/item.php:553
|
#: ../../mod/item.php:674
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"This message was sent to you by %s, a member of the Friendika social "
|
"This message was sent to you by %s, a member of the Friendika social "
|
||||||
|
|
@ -1953,12 +1949,12 @@ msgstr ""
|
||||||
"Questo messaggio ti è stato inviato da %s, un membro del social network "
|
"Questo messaggio ti è stato inviato da %s, un membro del social network "
|
||||||
"Friendika."
|
"Friendika."
|
||||||
|
|
||||||
#: ../../mod/item.php:555
|
#: ../../mod/item.php:676
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "You may visit them online at %s"
|
msgid "You may visit them online at %s"
|
||||||
msgstr "Puoi visitarli online presso %s"
|
msgstr "Puoi visitarli online presso %s"
|
||||||
|
|
||||||
#: ../../mod/item.php:556
|
#: ../../mod/item.php:677
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please contact the sender by replying to this post if you do not wish to "
|
"Please contact the sender by replying to this post if you do not wish to "
|
||||||
"receive these messages."
|
"receive these messages."
|
||||||
|
|
@ -1966,12 +1962,12 @@ msgstr ""
|
||||||
"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi "
|
"Contatta il mittente rispondendo a questo post se non vuoi ricevere questi "
|
||||||
"messaggi."
|
"messaggi."
|
||||||
|
|
||||||
#: ../../mod/item.php:558
|
#: ../../mod/item.php:679
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s posted an update."
|
msgid "%s posted an update."
|
||||||
msgstr "%s ha inviato un aggiornamento."
|
msgstr "%s ha inviato un aggiornamento."
|
||||||
|
|
||||||
#: ../../mod/item.php:609 ../../mod/display.php:25 ../../mod/display.php:142
|
#: ../../mod/item.php:730 ../../mod/display.php:25 ../../mod/display.php:142
|
||||||
msgid "Item not found."
|
msgid "Item not found."
|
||||||
msgstr "Elemento non trovato."
|
msgstr "Elemento non trovato."
|
||||||
|
|
||||||
|
|
@ -2066,7 +2062,7 @@ msgstr "Messaggio inviato."
|
||||||
msgid "Message could not be sent."
|
msgid "Message could not be sent."
|
||||||
msgstr "Il messaggio non puo' essere inviato."
|
msgstr "Il messaggio non puo' essere inviato."
|
||||||
|
|
||||||
#: ../../mod/message.php:125 ../../include/nav.php:102
|
#: ../../mod/message.php:125 ../../include/nav.php:101
|
||||||
msgid "Messages"
|
msgid "Messages"
|
||||||
msgstr "Messaggi"
|
msgstr "Messaggi"
|
||||||
|
|
||||||
|
|
@ -2090,7 +2086,7 @@ msgstr "Messaggio cancellato."
|
||||||
msgid "Conversation removed."
|
msgid "Conversation removed."
|
||||||
msgstr "Conversazione rimossa."
|
msgstr "Conversazione rimossa."
|
||||||
|
|
||||||
#: ../../mod/message.php:172 ../../include/conversation.php:691
|
#: ../../mod/message.php:172 ../../include/conversation.php:684
|
||||||
msgid "Please enter a link URL:"
|
msgid "Please enter a link URL:"
|
||||||
msgstr "Inserisci l'indirizzo del link:"
|
msgstr "Inserisci l'indirizzo del link:"
|
||||||
|
|
||||||
|
|
@ -2134,41 +2130,59 @@ msgstr "Cancella messaggio"
|
||||||
msgid "Send Reply"
|
msgid "Send Reply"
|
||||||
msgstr "Invia risposta"
|
msgstr "Invia risposta"
|
||||||
|
|
||||||
#: ../../mod/profile.php:11 ../../boot.php:2203
|
#: ../../mod/profile.php:11 ../../boot.php:2270
|
||||||
msgid "No profile"
|
msgid "No profile"
|
||||||
msgstr "Nessun profilo"
|
msgstr "Nessun profilo"
|
||||||
|
|
||||||
#: ../../mod/profile.php:112
|
#: ../../mod/profile.php:59
|
||||||
|
msgid "Access to this profile has been restricted."
|
||||||
|
msgstr "L'accesso a questo profilo è stato limitato."
|
||||||
|
|
||||||
|
#: ../../mod/profile.php:115
|
||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Stato"
|
msgstr "Stato"
|
||||||
|
|
||||||
#: ../../mod/profile.php:114
|
#: ../../mod/profile.php:117
|
||||||
msgid "Photos"
|
msgid "Photos"
|
||||||
msgstr "Foto"
|
msgstr "Foto"
|
||||||
|
|
||||||
#: ../../mod/openid.php:62 ../../mod/openid.php:118 ../../include/auth.php:105
|
#: ../../mod/openid.php:62 ../../mod/openid.php:122 ../../include/auth.php:114
|
||||||
#: ../../include/auth.php:130 ../../include/auth.php:183
|
#: ../../include/auth.php:139 ../../include/auth.php:192
|
||||||
msgid "Login failed."
|
msgid "Login failed."
|
||||||
msgstr "Accesso fallito."
|
msgstr "Accesso fallito."
|
||||||
|
|
||||||
#: ../../mod/openid.php:78 ../../include/auth.php:199
|
#: ../../mod/openid.php:78 ../../include/auth.php:208
|
||||||
msgid "Welcome "
|
msgid "Welcome "
|
||||||
msgstr "Benvenuto"
|
msgstr "Benvenuto"
|
||||||
|
|
||||||
#: ../../mod/openid.php:79 ../../include/auth.php:200
|
#: ../../mod/openid.php:79 ../../include/auth.php:209
|
||||||
msgid "Please upload a profile photo."
|
msgid "Please upload a profile photo."
|
||||||
msgstr "Carica una foto per il profilo."
|
msgstr "Carica una foto per il profilo."
|
||||||
|
|
||||||
#: ../../mod/openid.php:82 ../../include/auth.php:203
|
#: ../../mod/openid.php:82 ../../include/auth.php:212
|
||||||
msgid "Welcome back "
|
msgid "Welcome back "
|
||||||
msgstr "Bentornato "
|
msgstr "Bentornato "
|
||||||
|
|
||||||
#: ../../mod/follow.php:39 ../../wip/follow2.php:186
|
#: ../../mod/follow.php:43
|
||||||
msgid "The profile address specified does not provide adequate information."
|
msgid "The profile address specified does not provide adequate information."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"L'indirizzo del profilo specificato non fornisce adeguate informazioni."
|
"L'indirizzo del profilo specificato non fornisce adeguate informazioni."
|
||||||
|
|
||||||
#: ../../mod/follow.php:45 ../../wip/follow2.php:192
|
#: ../../mod/follow.php:45
|
||||||
|
msgid "No compatible communication protocols or feeds were discovered."
|
||||||
|
msgstr ""
|
||||||
|
"Non sono stati trovati nessun protocollo di comunicazione o feed "
|
||||||
|
"compatibili."
|
||||||
|
|
||||||
|
#: ../../mod/follow.php:47
|
||||||
|
msgid "An author or name was not found."
|
||||||
|
msgstr "Non è stato trovato un nome dell'autore"
|
||||||
|
|
||||||
|
#: ../../mod/follow.php:49
|
||||||
|
msgid "No browser URL could be matched to this address."
|
||||||
|
msgstr "Nessun URL puo' essere associato a questo indirizzo."
|
||||||
|
|
||||||
|
#: ../../mod/follow.php:57
|
||||||
msgid ""
|
msgid ""
|
||||||
"Limited profile. This person will be unable to receive direct/personal "
|
"Limited profile. This person will be unable to receive direct/personal "
|
||||||
"notifications from you."
|
"notifications from you."
|
||||||
|
|
@ -2176,11 +2190,11 @@ msgstr ""
|
||||||
"Profilo limitato. Questa persona non sarà in grado di ricevere nofiche "
|
"Profilo limitato. Questa persona non sarà in grado di ricevere nofiche "
|
||||||
"dirette/personali da te."
|
"dirette/personali da te."
|
||||||
|
|
||||||
#: ../../mod/follow.php:100 ../../wip/follow2.php:247
|
#: ../../mod/follow.php:112
|
||||||
msgid "Unable to retrieve contact information."
|
msgid "Unable to retrieve contact information."
|
||||||
msgstr "Impossibile recuperare informazioni sul contatto."
|
msgstr "Impossibile recuperare informazioni sul contatto."
|
||||||
|
|
||||||
#: ../../mod/follow.php:146 ../../wip/follow2.php:293
|
#: ../../mod/follow.php:158
|
||||||
msgid "following"
|
msgid "following"
|
||||||
msgstr "segue"
|
msgstr "segue"
|
||||||
|
|
||||||
|
|
@ -2188,24 +2202,15 @@ msgstr "segue"
|
||||||
msgid "Item has been removed."
|
msgid "Item has been removed."
|
||||||
msgstr "L'elemento è stato rimosso."
|
msgstr "L'elemento è stato rimosso."
|
||||||
|
|
||||||
#: ../../mod/dfrn_notify.php:191
|
#: ../../mod/dfrn_notify.php:251
|
||||||
msgid "noreply"
|
|
||||||
msgstr "nessuna risposta"
|
|
||||||
|
|
||||||
#: ../../mod/dfrn_notify.php:249
|
|
||||||
msgid "New mail received at "
|
msgid "New mail received at "
|
||||||
msgstr "Nuova mail ricevuta su "
|
msgstr "Nuova mail ricevuta su "
|
||||||
|
|
||||||
#: ../../mod/dfrn_notify.php:403 ../../mod/dfrn_notify.php:493
|
|
||||||
#, php-format
|
|
||||||
msgid "%s commented on an item at %s"
|
|
||||||
msgstr "%s ha commentato un elemento su %s"
|
|
||||||
|
|
||||||
#: ../../mod/apps.php:6
|
#: ../../mod/apps.php:6
|
||||||
msgid "Applications"
|
msgid "Applications"
|
||||||
msgstr "Applicazioni"
|
msgstr "Applicazioni"
|
||||||
|
|
||||||
#: ../../mod/search.php:26 ../../include/nav.php:71 ../../boot.php:2047
|
#: ../../mod/search.php:26 ../../include/nav.php:70 ../../boot.php:2114
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Cerca"
|
msgstr "Cerca"
|
||||||
|
|
||||||
|
|
@ -2213,8 +2218,8 @@ msgstr "Cerca"
|
||||||
msgid "No results."
|
msgid "No results."
|
||||||
msgstr "Nessun risultato."
|
msgstr "Nessun risultato."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:21 ../../mod/profiles.php:237
|
#: ../../mod/profiles.php:21 ../../mod/profiles.php:240
|
||||||
#: ../../mod/profiles.php:342 ../../mod/dfrn_confirm.php:62
|
#: ../../mod/profiles.php:345 ../../mod/dfrn_confirm.php:62
|
||||||
msgid "Profile not found."
|
msgid "Profile not found."
|
||||||
msgstr "Profilo non trovato."
|
msgstr "Profilo non trovato."
|
||||||
|
|
||||||
|
|
@ -2222,181 +2227,187 @@ msgstr "Profilo non trovato."
|
||||||
msgid "Profile Name is required."
|
msgid "Profile Name is required."
|
||||||
msgstr "Il Nome Profilo è richiesto ."
|
msgstr "Il Nome Profilo è richiesto ."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:199
|
#: ../../mod/profiles.php:202
|
||||||
msgid "Profile updated."
|
msgid "Profile updated."
|
||||||
msgstr "Profilo aggiornato."
|
msgstr "Profilo aggiornato."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:254
|
#: ../../mod/profiles.php:257
|
||||||
msgid "Profile deleted."
|
msgid "Profile deleted."
|
||||||
msgstr "Profilo elminato."
|
msgstr "Profilo elminato."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:270 ../../mod/profiles.php:301
|
#: ../../mod/profiles.php:273 ../../mod/profiles.php:304
|
||||||
msgid "Profile-"
|
msgid "Profile-"
|
||||||
msgstr "Profilo-"
|
msgstr "Profilo-"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:289 ../../mod/profiles.php:328
|
#: ../../mod/profiles.php:292 ../../mod/profiles.php:331
|
||||||
msgid "New profile created."
|
msgid "New profile created."
|
||||||
msgstr "Nuovo profilo creato."
|
msgstr "Nuovo profilo creato."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:307
|
#: ../../mod/profiles.php:310
|
||||||
msgid "Profile unavailable to clone."
|
msgid "Profile unavailable to clone."
|
||||||
msgstr "Impossibile duplicare il plrofilo."
|
msgstr "Impossibile duplicare il plrofilo."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:354
|
#: ../../mod/profiles.php:357
|
||||||
msgid "Hide my contact/friend list from viewers of this profile?"
|
msgid "Hide your contact/friend list from viewers of this profile?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nascondi la mia lista di contatti/amici dai visitatori di questo profilo"
|
"Nascondi la tua lista di contatti/amici ai visitatori di questo profilo?"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:369
|
#: ../../mod/profiles.php:366
|
||||||
|
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/profiles.php:382
|
||||||
msgid "Edit Profile Details"
|
msgid "Edit Profile Details"
|
||||||
msgstr "Modifica i Dettagli del Profilo"
|
msgstr "Modifica i Dettagli del Profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:371
|
#: ../../mod/profiles.php:384
|
||||||
msgid "View this profile"
|
msgid "View this profile"
|
||||||
msgstr "Visualizza questo profilo"
|
msgstr "Visualizza questo profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:372
|
#: ../../mod/profiles.php:385
|
||||||
msgid "Create a new profile using these settings"
|
msgid "Create a new profile using these settings"
|
||||||
msgstr "Crea un nuovo profilo usando queste impostazioni"
|
msgstr "Crea un nuovo profilo usando queste impostazioni"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:373
|
#: ../../mod/profiles.php:386
|
||||||
msgid "Clone this profile"
|
msgid "Clone this profile"
|
||||||
msgstr "Clona questo profilo"
|
msgstr "Clona questo profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:374
|
#: ../../mod/profiles.php:387
|
||||||
msgid "Delete this profile"
|
msgid "Delete this profile"
|
||||||
msgstr "Cancella questo profilo"
|
msgstr "Cancella questo profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:375
|
#: ../../mod/profiles.php:388
|
||||||
msgid "Profile Name:"
|
msgid "Profile Name:"
|
||||||
msgstr "Nome del profilo:"
|
msgstr "Nome del profilo:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:376
|
#: ../../mod/profiles.php:389
|
||||||
msgid "Your Full Name:"
|
msgid "Your Full Name:"
|
||||||
msgstr "Il tuo nome completo:"
|
msgstr "Il tuo nome completo:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:377
|
#: ../../mod/profiles.php:390
|
||||||
msgid "Title/Description:"
|
msgid "Title/Description:"
|
||||||
msgstr "Breve descrizione (es. titolo, posizione, altro):"
|
msgstr "Breve descrizione (es. titolo, posizione, altro):"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:378
|
#: ../../mod/profiles.php:391
|
||||||
msgid "Your Gender:"
|
msgid "Your Gender:"
|
||||||
msgstr "Il tuo sesso:"
|
msgstr "Il tuo sesso:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:379
|
#: ../../mod/profiles.php:392
|
||||||
msgid "Birthday (y/m/d):"
|
msgid "Birthday (y/m/d):"
|
||||||
msgstr "Data di nascita (a/m/g):"
|
msgstr "Data di nascita (a/m/g):"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:380
|
#: ../../mod/profiles.php:393
|
||||||
msgid "Street Address:"
|
msgid "Street Address:"
|
||||||
msgstr "Indirizzo:"
|
msgstr "Indirizzo:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:381
|
#: ../../mod/profiles.php:394
|
||||||
msgid "Locality/City:"
|
msgid "Locality/City:"
|
||||||
msgstr "Località/Città:"
|
msgstr "Località/Città:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:382
|
#: ../../mod/profiles.php:395
|
||||||
msgid "Postal/Zip Code:"
|
msgid "Postal/Zip Code:"
|
||||||
msgstr "CAP:"
|
msgstr "CAP:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:383
|
#: ../../mod/profiles.php:396
|
||||||
msgid "Country:"
|
msgid "Country:"
|
||||||
msgstr "Nazione:"
|
msgstr "Nazione:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:384
|
#: ../../mod/profiles.php:397
|
||||||
msgid "Region/State:"
|
msgid "Region/State:"
|
||||||
msgstr "Regione/Stato:"
|
msgstr "Regione/Stato:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:385
|
#: ../../mod/profiles.php:398
|
||||||
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
msgid "<span class=\"heart\">♥</span> Marital Status:"
|
||||||
msgstr "<span class=\"heart\">♥</span> Stato sentimentale:"
|
msgstr "<span class=\"heart\">♥</span> Stato sentimentale:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:386
|
#: ../../mod/profiles.php:399
|
||||||
msgid "Who: (if applicable)"
|
msgid "Who: (if applicable)"
|
||||||
msgstr "Con chi: (se possibile)"
|
msgstr "Con chi: (se possibile)"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:387
|
#: ../../mod/profiles.php:400
|
||||||
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
msgid "Examples: cathy123, Cathy Williams, cathy@example.com"
|
||||||
msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
|
msgstr "Esempio: cathy123, Cathy Williams, cathy@example.com"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:388 ../../include/profile_advanced.php:90
|
#: ../../mod/profiles.php:401 ../../include/profile_advanced.php:90
|
||||||
msgid "Sexual Preference:"
|
msgid "Sexual Preference:"
|
||||||
msgstr "Preferenza sessuale:"
|
msgstr "Preferenza sessuale:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:389
|
#: ../../mod/profiles.php:402
|
||||||
msgid "Homepage URL:"
|
msgid "Homepage URL:"
|
||||||
msgstr "Indirizzo homepage:"
|
msgstr "Indirizzo homepage:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:390 ../../include/profile_advanced.php:115
|
#: ../../mod/profiles.php:403 ../../include/profile_advanced.php:115
|
||||||
msgid "Political Views:"
|
msgid "Political Views:"
|
||||||
msgstr "Orientamento politico:"
|
msgstr "Orientamento politico:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:391
|
#: ../../mod/profiles.php:404
|
||||||
msgid "Religious Views:"
|
msgid "Religious Views:"
|
||||||
msgstr "Orientamento religioso:"
|
msgstr "Orientamento religioso:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:392
|
#: ../../mod/profiles.php:405
|
||||||
msgid "Public Keywords:"
|
msgid "Public Keywords:"
|
||||||
msgstr "Parole chiave pubbliche:"
|
msgstr "Parole chiave pubbliche:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:393
|
#: ../../mod/profiles.php:406
|
||||||
msgid "Private Keywords:"
|
msgid "Private Keywords:"
|
||||||
msgstr "Parole chiave private:"
|
msgstr "Parole chiave private:"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:394
|
#: ../../mod/profiles.php:407
|
||||||
msgid "Example: fishing photography software"
|
msgid "Example: fishing photography software"
|
||||||
msgstr "Esempio: pesca fotografia programmazione"
|
msgstr "Esempio: pesca fotografia programmazione"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:395
|
#: ../../mod/profiles.php:408
|
||||||
msgid "(Used for suggesting potential friends, can be seen by others)"
|
msgid "(Used for suggesting potential friends, can be seen by others)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"(Utilizzato per suggerire potenziali amici, può essere visto da altri)"
|
"(Utilizzato per suggerire potenziali amici, può essere visto da altri)"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:396
|
#: ../../mod/profiles.php:409
|
||||||
msgid "(Used for searching profiles, never shown to others)"
|
msgid "(Used for searching profiles, never shown to others)"
|
||||||
msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)"
|
msgstr "(Usato per cercare tra i profili, mai mostrato ad altri)"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:397
|
#: ../../mod/profiles.php:410
|
||||||
msgid "Tell us about yourself..."
|
msgid "Tell us about yourself..."
|
||||||
msgstr "Racconta di te..."
|
msgstr "Racconta di te..."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:398
|
#: ../../mod/profiles.php:411
|
||||||
msgid "Hobbies/Interests"
|
msgid "Hobbies/Interests"
|
||||||
msgstr "Hobbie/Interessi"
|
msgstr "Hobbie/Interessi"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:399
|
#: ../../mod/profiles.php:412
|
||||||
msgid "Contact information and Social Networks"
|
msgid "Contact information and Social Networks"
|
||||||
msgstr "Informazioni su contatti e Social network"
|
msgstr "Informazioni su contatti e Social network"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:400
|
#: ../../mod/profiles.php:413
|
||||||
msgid "Musical interests"
|
msgid "Musical interests"
|
||||||
msgstr "Interessi musicali"
|
msgstr "Interessi musicali"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:401
|
#: ../../mod/profiles.php:414
|
||||||
msgid "Books, literature"
|
msgid "Books, literature"
|
||||||
msgstr "Libri, letteratura"
|
msgstr "Libri, letteratura"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:402
|
#: ../../mod/profiles.php:415
|
||||||
msgid "Television"
|
msgid "Television"
|
||||||
msgstr "Televisione"
|
msgstr "Televisione"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:403
|
#: ../../mod/profiles.php:416
|
||||||
msgid "Film/dance/culture/entertainment"
|
msgid "Film/dance/culture/entertainment"
|
||||||
msgstr "Film/danza/cultura/intrattenimento"
|
msgstr "Film/danza/cultura/intrattenimento"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:404
|
#: ../../mod/profiles.php:417
|
||||||
msgid "Love/romance"
|
msgid "Love/romance"
|
||||||
msgstr "Amore/romanticismo"
|
msgstr "Amore/romanticismo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:405
|
#: ../../mod/profiles.php:418
|
||||||
msgid "Work/employment"
|
msgid "Work/employment"
|
||||||
msgstr "Lavoro/impiego"
|
msgstr "Lavoro/impiego"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:406
|
#: ../../mod/profiles.php:419
|
||||||
msgid "School/education"
|
msgid "School/education"
|
||||||
msgstr "Scuola/educazione"
|
msgstr "Scuola/educazione"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:411
|
#: ../../mod/profiles.php:424
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
"This is your <strong>public</strong> profile.<br />It <strong>may</strong> "
|
||||||
"be visible to anybody using the internet."
|
"be visible to anybody using the internet."
|
||||||
|
|
@ -2404,47 +2415,55 @@ msgstr ""
|
||||||
"Questo è il tuo profilo <strong>publico</strong>.<br "
|
"Questo è il tuo profilo <strong>publico</strong>.<br "
|
||||||
"/><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
|
"/><strong>Potrebbe</strong> essere visto da chiunque attraverso internet."
|
||||||
|
|
||||||
#: ../../mod/profiles.php:421 ../../mod/directory.php:97
|
#: ../../mod/profiles.php:435 ../../mod/directory.php:112
|
||||||
msgid "Age: "
|
msgid "Age: "
|
||||||
msgstr "Età : "
|
msgstr "Età : "
|
||||||
|
|
||||||
#: ../../mod/profiles.php:456 ../../include/nav.php:109
|
#: ../../mod/profiles.php:470 ../../include/nav.php:108
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Profili"
|
msgstr "Profili"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:457
|
#: ../../mod/profiles.php:471
|
||||||
msgid "Change profile photo"
|
msgid "Change profile photo"
|
||||||
msgstr "Cambia la foto del profilo"
|
msgstr "Cambia la foto del profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:458
|
#: ../../mod/profiles.php:472
|
||||||
msgid "Create New Profile"
|
msgid "Create New Profile"
|
||||||
msgstr "Crea un nuovo profilo"
|
msgstr "Crea un nuovo profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:468
|
#: ../../mod/profiles.php:482
|
||||||
msgid "Profile Image"
|
msgid "Profile Image"
|
||||||
msgstr "Immagine del Profilo"
|
msgstr "Immagine del Profilo"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:470
|
#: ../../mod/profiles.php:484
|
||||||
msgid "Visible to everybody"
|
msgid "Visible to everybody"
|
||||||
msgstr "Visibile a tutti"
|
msgstr "Visibile a tutti"
|
||||||
|
|
||||||
#: ../../mod/profiles.php:471
|
#: ../../mod/profiles.php:485
|
||||||
msgid "Edit visibility"
|
msgid "Edit visibility"
|
||||||
msgstr "Modifica visibilità"
|
msgstr "Modifica visibilità"
|
||||||
|
|
||||||
#: ../../mod/directory.php:38
|
#: ../../mod/directory.php:40
|
||||||
msgid "Global Directory"
|
msgid "Global Directory"
|
||||||
msgstr "Elenco Globale"
|
msgstr "Elenco Globale"
|
||||||
|
|
||||||
#: ../../mod/directory.php:45
|
#: ../../mod/directory.php:46
|
||||||
|
msgid "Normal site view"
|
||||||
|
msgstr "Vista normale"
|
||||||
|
|
||||||
|
#: ../../mod/directory.php:48
|
||||||
|
msgid "View all site entries"
|
||||||
|
msgstr "Visualizza tutte le voci del sito"
|
||||||
|
|
||||||
|
#: ../../mod/directory.php:56
|
||||||
msgid "Site Directory"
|
msgid "Site Directory"
|
||||||
msgstr "Elenco del Sito"
|
msgstr "Elenco del Sito"
|
||||||
|
|
||||||
#: ../../mod/directory.php:100
|
#: ../../mod/directory.php:115
|
||||||
msgid "Gender: "
|
msgid "Gender: "
|
||||||
msgstr "Genere:"
|
msgstr "Genere:"
|
||||||
|
|
||||||
#: ../../mod/directory.php:126
|
#: ../../mod/directory.php:141
|
||||||
msgid "No entries (some entries may be hidden)."
|
msgid "No entries (some entries may be hidden)."
|
||||||
msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
|
msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)."
|
||||||
|
|
||||||
|
|
@ -2561,65 +2580,77 @@ msgstr ""
|
||||||
msgid "Unable to update your contact profile details on our system"
|
msgid "Unable to update your contact profile details on our system"
|
||||||
msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
|
msgstr "Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema"
|
||||||
|
|
||||||
#: ../../mod/dfrn_confirm.php:655
|
#: ../../mod/dfrn_confirm.php:656
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Connection accepted at %s"
|
msgid "Connection accepted at %s"
|
||||||
msgstr "Connession accettata su %s"
|
msgstr "Connession accettata su %s"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:227
|
#: ../../addon/facebook/facebook.php:248
|
||||||
msgid "Facebook disabled"
|
msgid "Facebook disabled"
|
||||||
msgstr "Facebook disabilitato"
|
msgstr "Facebook disabilitato"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:232
|
#: ../../addon/facebook/facebook.php:253
|
||||||
msgid "Updating contacts"
|
msgid "Updating contacts"
|
||||||
msgstr "Aggiornamento contatti"
|
msgstr "Aggiornamento contatti"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:241
|
#: ../../addon/facebook/facebook.php:262
|
||||||
msgid "Facebook API key is missing."
|
msgid "Facebook API key is missing."
|
||||||
msgstr "Chiave API Facebook mancante."
|
msgstr "Chiave API Facebook mancante."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:248
|
#: ../../addon/facebook/facebook.php:269
|
||||||
msgid "Facebook Connect"
|
msgid "Facebook Connect"
|
||||||
msgstr "Facebook Connect"
|
msgstr "Facebook Connect"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:254
|
#: ../../addon/facebook/facebook.php:275
|
||||||
msgid "Install Facebook connector for this account."
|
msgid "Install Facebook connector for this account."
|
||||||
msgstr "Installa Facebook connector per questo account"
|
msgstr "Installa Facebook connector per questo account"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:261
|
#: ../../addon/facebook/facebook.php:282
|
||||||
msgid "Remove Facebook connector"
|
msgid "Remove Facebook connector"
|
||||||
msgstr "Rimuovi Facebook connector"
|
msgstr "Rimuovi Facebook connector"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:267
|
#: ../../addon/facebook/facebook.php:288
|
||||||
msgid "Post to Facebook by default"
|
msgid "Post to Facebook by default"
|
||||||
msgstr "Invia su Facebook di default"
|
msgstr "Invia su Facebook di default"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:329
|
#: ../../addon/facebook/facebook.php:350
|
||||||
msgid "Facebook"
|
msgid "Facebook"
|
||||||
msgstr "Facebook"
|
msgstr "Facebook"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:330
|
#: ../../addon/facebook/facebook.php:351
|
||||||
msgid "Facebook Connector Settings"
|
msgid "Facebook Connector Settings"
|
||||||
msgstr "Impostazioni Connettore Facebook"
|
msgstr "Impostazioni Connettore Facebook"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:344
|
#: ../../addon/facebook/facebook.php:365
|
||||||
msgid "Post to Facebook"
|
msgid "Post to Facebook"
|
||||||
msgstr "Invia a Facebook"
|
msgstr "Invia a Facebook"
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:411
|
#: ../../addon/facebook/facebook.php:434
|
||||||
msgid ""
|
msgid ""
|
||||||
"Post to Facebook cancelled because of multi-network access permission "
|
"Post to Facebook cancelled because of multi-network access permission "
|
||||||
"conflict."
|
"conflict."
|
||||||
msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso."
|
msgstr "Invio su Facebook annullato per un conflitto nei permessi di accesso."
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:466
|
#: ../../addon/facebook/facebook.php:500
|
||||||
msgid "Image: "
|
msgid "Image: "
|
||||||
msgstr "Immagine: "
|
msgstr "Immagine: "
|
||||||
|
|
||||||
#: ../../addon/facebook/facebook.php:526
|
#: ../../addon/facebook/facebook.php:576
|
||||||
msgid "View on Friendika"
|
msgid "View on Friendika"
|
||||||
msgstr "Vedi su Friendika"
|
msgstr "Vedi su Friendika"
|
||||||
|
|
||||||
|
#: ../../addon/widgets/widgets.php:41
|
||||||
|
msgid "Widgets key: "
|
||||||
|
msgstr "Chiave Widgets: "
|
||||||
|
|
||||||
|
#: ../../addon/widgets/widgets.php:45
|
||||||
|
msgid "Generate new key"
|
||||||
|
msgstr "Genera una nuova chiave"
|
||||||
|
|
||||||
|
#: ../../addon/widgets/widget_friends.php:30
|
||||||
|
msgid "Connect on Friendika!"
|
||||||
|
msgstr "Connettiti su Friendika!"
|
||||||
|
|
||||||
#: ../../addon/tictac/tictac.php:14
|
#: ../../addon/tictac/tictac.php:14
|
||||||
msgid "Three Dimensional Tic-Tac-Toe"
|
msgid "Three Dimensional Tic-Tac-Toe"
|
||||||
msgstr "Tic-Tac-Toe tridimensionale"
|
msgstr "Tic-Tac-Toe tridimensionale"
|
||||||
|
|
@ -2682,22 +2713,18 @@ msgid "I won!"
|
||||||
msgstr "Ho vinto!"
|
msgstr "Ho vinto!"
|
||||||
|
|
||||||
#: ../../addon/randplace/randplace.php:171
|
#: ../../addon/randplace/randplace.php:171
|
||||||
#: ../../wip/addon/randplace/randplace.php:170
|
|
||||||
msgid "Randplace Settings"
|
msgid "Randplace Settings"
|
||||||
msgstr "Impostazioni Randplace"
|
msgstr "Impostazioni Randplace"
|
||||||
|
|
||||||
#: ../../addon/randplace/randplace.php:173
|
#: ../../addon/randplace/randplace.php:173
|
||||||
#: ../../wip/addon/randplace/randplace.php:172
|
|
||||||
msgid "Enable Randplace Plugin"
|
msgid "Enable Randplace Plugin"
|
||||||
msgstr "Abilita il plugin Randplace"
|
msgstr "Abilita il plugin Randplace"
|
||||||
|
|
||||||
#: ../../addon/java_upload/java_upload.php:33 ../../wip/photos.php:747
|
#: ../../addon/java_upload/java_upload.php:33
|
||||||
#: ../../wip/photos-chris.php:794
|
|
||||||
msgid "Select files to upload: "
|
msgid "Select files to upload: "
|
||||||
msgstr "Seleziona i file da caricare: "
|
msgstr "Seleziona i file da caricare: "
|
||||||
|
|
||||||
#: ../../addon/java_upload/java_upload.php:35 ../../wip/photos.php:752
|
#: ../../addon/java_upload/java_upload.php:35
|
||||||
#: ../../wip/photos-chris.php:799
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Use the following controls only if the Java uploader [above] fails to "
|
"Use the following controls only if the Java uploader [above] fails to "
|
||||||
"launch."
|
"launch."
|
||||||
|
|
@ -2738,15 +2765,64 @@ msgid "Upload was cancelled, or server error encountered"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il caricamento è stato cancellato, o si è verificato un errore sul server"
|
"Il caricamento è stato cancellato, o si è verificato un errore sul server"
|
||||||
|
|
||||||
|
#: ../../addon/oembed/oembed.php:29
|
||||||
|
msgid "OEmbed settings updated"
|
||||||
|
msgstr "Impostazioni OEmbed aggiornate"
|
||||||
|
|
||||||
|
#: ../../addon/oembed/oembed.php:42
|
||||||
|
msgid "Use OEmbed for YouTube videos: "
|
||||||
|
msgstr "Usa OEmbed per i video da YouTube:"
|
||||||
|
|
||||||
|
#: ../../addon/oembed/oembed.php:76
|
||||||
|
msgid "URL to embed:"
|
||||||
|
msgstr "URL da incorporare:"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:78
|
#: ../../addon/statusnet/statusnet.php:78
|
||||||
msgid "Post to StatusNet"
|
msgid "Post to StatusNet"
|
||||||
msgstr "Invia a StatusNet"
|
msgstr "Invia a StatusNet"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:146
|
#: ../../addon/statusnet/statusnet.php:117
|
||||||
|
msgid ""
|
||||||
|
"Please contact your site administrator.<br />The provided API URL is not "
|
||||||
|
"valid."
|
||||||
|
msgstr ""
|
||||||
|
"Contatta l'amministratore del sito.<br/>L'URL delle API fornito non è "
|
||||||
|
"valido."
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:145
|
||||||
|
msgid "We could not contact the StatusNet API with the Path you entered."
|
||||||
|
msgstr ""
|
||||||
|
"Non possiamo conttattare le API di StatusNet con il percorso che hai "
|
||||||
|
"inserito."
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:172
|
||||||
|
msgid "StatusNet settings updated."
|
||||||
|
msgstr "Impostazioni StatusNet aggiornate."
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:195
|
||||||
msgid "StatusNet Posting Settings"
|
msgid "StatusNet Posting Settings"
|
||||||
msgstr "Impostazioni di invio a StatusNet"
|
msgstr "Impostazioni di invio a StatusNet"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:152
|
#: ../../addon/statusnet/statusnet.php:209
|
||||||
|
msgid "Globally Available StatusNet OAuthKeys"
|
||||||
|
msgstr "Chiavi OAuth StatusNet disponibili sul sito"
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:210
|
||||||
|
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/statusnet/statusnet.php:218
|
||||||
|
msgid "Provide your own OAuth Credentials"
|
||||||
|
msgstr "Fornisci le tue credenziali OAuth"
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:219
|
||||||
msgid ""
|
msgid ""
|
||||||
"No consumer key pair for StatusNet found. Register your Friendika Account as"
|
"No consumer key pair for StatusNet found. Register your Friendika Account as"
|
||||||
" an desktop client on your StatusNet account, copy the consumer key pair "
|
" an desktop client on your StatusNet account, copy the consumer key pair "
|
||||||
|
|
@ -2761,19 +2837,19 @@ msgstr ""
|
||||||
"esiste già una coppia di chiavi per questa installazione di Friendika sulla "
|
"esiste già una coppia di chiavi per questa installazione di Friendika sulla "
|
||||||
"installazione di StatusNet che ti interessa."
|
"installazione di StatusNet che ti interessa."
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:154
|
#: ../../addon/statusnet/statusnet.php:221
|
||||||
msgid "OAuth Consumer Key"
|
msgid "OAuth Consumer Key"
|
||||||
msgstr "OAuth Consumer Key"
|
msgstr "OAuth Consumer Key"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:157
|
#: ../../addon/statusnet/statusnet.php:224
|
||||||
msgid "OAuth Consumer Secret"
|
msgid "OAuth Consumer Secret"
|
||||||
msgstr "OAuth Consumer Secret"
|
msgstr "OAuth Consumer Secret"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:160
|
#: ../../addon/statusnet/statusnet.php:227
|
||||||
msgid "Base API Path (remember the trailing /)"
|
msgid "Base API Path (remember the trailing /)"
|
||||||
msgstr "Indirizzo di base per le API (ricorda la / alla fine)"
|
msgstr "Indirizzo di base per le API (ricorda la / alla fine)"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:181
|
#: ../../addon/statusnet/statusnet.php:248
|
||||||
msgid ""
|
msgid ""
|
||||||
"To connect to your StatusNet account click the button below to get a "
|
"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"
|
"security code from StatusNet which you have to copy into the input box below"
|
||||||
|
|
@ -2785,31 +2861,47 @@ msgstr ""
|
||||||
" sotto per poi inviare la form. Solo i tuoi messaggi "
|
" sotto per poi inviare la form. Solo i tuoi messaggi "
|
||||||
"<strong>pubblci</strong> saranno inviati a StatusNet."
|
"<strong>pubblci</strong> saranno inviati a StatusNet."
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:182
|
#: ../../addon/statusnet/statusnet.php:249
|
||||||
msgid "Log in with StatusNet"
|
msgid "Log in with StatusNet"
|
||||||
msgstr "Login con StatuNet"
|
msgstr "Login con StatuNet"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:184
|
#: ../../addon/statusnet/statusnet.php:251
|
||||||
msgid "Copy the security code from StatusNet here"
|
msgid "Copy the security code from StatusNet here"
|
||||||
msgstr "Copia il codice di sicurezza da StatusNet qui"
|
msgstr "Copia il codice di sicurezza da StatusNet qui"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:197 ../../addon/twitter/twitter.php:165
|
#: ../../addon/statusnet/statusnet.php:257
|
||||||
|
msgid "Cancel Connection Process"
|
||||||
|
msgstr "Annulla il processo di connessione"
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:259
|
||||||
|
msgid "Current StatusNet API is"
|
||||||
|
msgstr "Le API StatusNet correnti sono"
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:260
|
||||||
|
msgid "Cancel StatusNet Connection"
|
||||||
|
msgstr "Annulla la connessione a StatusNet"
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:271 ../../addon/twitter/twitter.php:165
|
||||||
msgid "Currently connected to: "
|
msgid "Currently connected to: "
|
||||||
msgstr "Al momento collegato con:"
|
msgstr "Al momento collegato con:"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:198
|
#: ../../addon/statusnet/statusnet.php:272
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled all your <strong>public</strong> postings will be posted to the "
|
"If enabled all your <strong>public</strong> postings will be posted to the "
|
||||||
"associated StatusNet account as well."
|
"associated StatusNet account."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> verranno "
|
"Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> saranno inviati"
|
||||||
"inviati anche sull'account StatusNet associato."
|
" all'account StatuNet associato."
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:200
|
#: ../../addon/statusnet/statusnet.php:274
|
||||||
msgid "Send public postings to StatusNet"
|
msgid "Allow posting to StatusNet"
|
||||||
msgstr "Invia messaggi pubblici su StatusNet"
|
msgstr "Permetti l'invio a StatusNet"
|
||||||
|
|
||||||
#: ../../addon/statusnet/statusnet.php:204 ../../addon/twitter/twitter.php:172
|
#: ../../addon/statusnet/statusnet.php:277
|
||||||
|
msgid "Send public postings to StatusNet by default"
|
||||||
|
msgstr "Di default invia i messaggi pubblici a StatusNet"
|
||||||
|
|
||||||
|
#: ../../addon/statusnet/statusnet.php:282 ../../addon/twitter/twitter.php:172
|
||||||
msgid "Clear OAuth configuration"
|
msgid "Clear OAuth configuration"
|
||||||
msgstr "Cancella la configurazione OAuth"
|
msgstr "Cancella la configurazione OAuth"
|
||||||
|
|
||||||
|
|
@ -2863,11 +2955,11 @@ msgstr ""
|
||||||
msgid "Send public postings to Twitter"
|
msgid "Send public postings to Twitter"
|
||||||
msgstr "Invia messaggi pubblici su Twitter"
|
msgstr "Invia messaggi pubblici su Twitter"
|
||||||
|
|
||||||
#: ../../include/profile_advanced.php:23 ../../boot.php:2289
|
#: ../../include/profile_advanced.php:23 ../../boot.php:2356
|
||||||
msgid "Gender:"
|
msgid "Gender:"
|
||||||
msgstr "Genere:"
|
msgstr "Genere:"
|
||||||
|
|
||||||
#: ../../include/profile_advanced.php:36 ../../include/items.php:1071
|
#: ../../include/profile_advanced.php:36 ../../include/items.php:1086
|
||||||
msgid "Birthday:"
|
msgid "Birthday:"
|
||||||
msgstr "Compleanno:"
|
msgstr "Compleanno:"
|
||||||
|
|
||||||
|
|
@ -2887,7 +2979,7 @@ msgstr "Età:"
|
||||||
msgid "<span class=\"heart\">♥</span> Status:"
|
msgid "<span class=\"heart\">♥</span> Status:"
|
||||||
msgstr "<span class=\"heart\">♥</span> Stato sentimentale:"
|
msgstr "<span class=\"heart\">♥</span> Stato sentimentale:"
|
||||||
|
|
||||||
#: ../../include/profile_advanced.php:103 ../../boot.php:2295
|
#: ../../include/profile_advanced.php:103 ../../boot.php:2362
|
||||||
msgid "Homepage:"
|
msgid "Homepage:"
|
||||||
msgstr "Homepage:"
|
msgstr "Homepage:"
|
||||||
|
|
||||||
|
|
@ -3195,7 +3287,7 @@ msgstr "Non interessa"
|
||||||
msgid "Ask me"
|
msgid "Ask me"
|
||||||
msgstr "Chiedimelo"
|
msgstr "Chiedimelo"
|
||||||
|
|
||||||
#: ../../include/oembed.php:57
|
#: ../../include/oembed.php:95
|
||||||
msgid "Embedding disabled"
|
msgid "Embedding disabled"
|
||||||
msgstr "Inclusione disabilitata"
|
msgstr "Inclusione disabilitata"
|
||||||
|
|
||||||
|
|
@ -3207,15 +3299,15 @@ msgstr "Crea un nuovo gruppo"
|
||||||
msgid "Everybody"
|
msgid "Everybody"
|
||||||
msgstr "Tutti"
|
msgstr "Tutti"
|
||||||
|
|
||||||
#: ../../include/nav.php:41 ../../boot.php:852
|
#: ../../include/nav.php:41 ../../boot.php:865
|
||||||
msgid "Logout"
|
msgid "Logout"
|
||||||
msgstr "Esci"
|
msgstr "Esci"
|
||||||
|
|
||||||
#: ../../include/nav.php:44 ../../boot.php:830 ../../boot.php:836
|
#: ../../include/nav.php:44 ../../boot.php:843 ../../boot.php:849
|
||||||
msgid "Login"
|
msgid "Login"
|
||||||
msgstr "Accedi"
|
msgstr "Accedi"
|
||||||
|
|
||||||
#: ../../include/nav.php:55 ../../include/nav.php:93
|
#: ../../include/nav.php:55 ../../include/nav.php:92
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Home"
|
msgstr "Home"
|
||||||
|
|
||||||
|
|
@ -3223,23 +3315,23 @@ msgstr "Home"
|
||||||
msgid "Apps"
|
msgid "Apps"
|
||||||
msgstr "Applicazioni"
|
msgstr "Applicazioni"
|
||||||
|
|
||||||
#: ../../include/nav.php:81
|
#: ../../include/nav.php:80
|
||||||
msgid "Directory"
|
msgid "Directory"
|
||||||
msgstr "Elenco"
|
msgstr "Elenco"
|
||||||
|
|
||||||
#: ../../include/nav.php:91
|
#: ../../include/nav.php:90
|
||||||
msgid "Network"
|
msgid "Network"
|
||||||
msgstr "Rete"
|
msgstr "Rete"
|
||||||
|
|
||||||
#: ../../include/nav.php:99
|
#: ../../include/nav.php:98
|
||||||
msgid "Notifications"
|
msgid "Notifications"
|
||||||
msgstr "Notifiche"
|
msgstr "Notifiche"
|
||||||
|
|
||||||
#: ../../include/nav.php:105
|
#: ../../include/nav.php:104
|
||||||
msgid "Manage"
|
msgid "Manage"
|
||||||
msgstr "Gestisci"
|
msgstr "Gestisci"
|
||||||
|
|
||||||
#: ../../include/nav.php:108
|
#: ../../include/nav.php:107
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Impostazioni"
|
msgstr "Impostazioni"
|
||||||
|
|
||||||
|
|
@ -3311,6 +3403,10 @@ msgstr "secondi"
|
||||||
msgid " ago"
|
msgid " ago"
|
||||||
msgstr " fa"
|
msgstr " fa"
|
||||||
|
|
||||||
|
#: ../../include/poller.php:380
|
||||||
|
msgid "From: "
|
||||||
|
msgstr "Da: "
|
||||||
|
|
||||||
#: ../../include/bbcode.php:83
|
#: ../../include/bbcode.php:83
|
||||||
msgid "Image/photo"
|
msgid "Image/photo"
|
||||||
msgstr "Immagine/foto"
|
msgstr "Immagine/foto"
|
||||||
|
|
@ -3324,6 +3420,10 @@ msgstr "Non trovo le informazioni DNS per il database server '%s'"
|
||||||
msgid "Visible To:"
|
msgid "Visible To:"
|
||||||
msgstr "Visibile a:"
|
msgstr "Visibile a:"
|
||||||
|
|
||||||
|
#: ../../include/acl_selectors.php:133
|
||||||
|
msgid "everybody"
|
||||||
|
msgstr "tutti"
|
||||||
|
|
||||||
#: ../../include/acl_selectors.php:137 ../../include/acl_selectors.php:152
|
#: ../../include/acl_selectors.php:137 ../../include/acl_selectors.php:152
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr "Gruppi"
|
msgstr "Gruppi"
|
||||||
|
|
@ -3336,332 +3436,309 @@ msgstr "Eccetto per:"
|
||||||
msgid "(no subject)"
|
msgid "(no subject)"
|
||||||
msgstr "(nessun oggetto)"
|
msgstr "(nessun oggetto)"
|
||||||
|
|
||||||
#: ../../include/items.php:1416
|
#: ../../include/items.php:1447
|
||||||
msgid "You have a new follower at "
|
msgid "You have a new follower at "
|
||||||
msgstr "Hai un nuovo seguace su "
|
msgstr "Hai un nuovo seguace su "
|
||||||
|
|
||||||
#: ../../include/conversation.php:192 ../../include/conversation.php:459
|
#: ../../include/conversation.php:191 ../../include/conversation.php:451
|
||||||
#: ../../include/conversation.php:460
|
#: ../../include/conversation.php:452
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "View %s's profile"
|
msgid "View %s's profile"
|
||||||
msgstr "Vedi il profilo di %s"
|
msgstr "Vedi il profilo di %s"
|
||||||
|
|
||||||
#: ../../include/conversation.php:208
|
#: ../../include/conversation.php:207
|
||||||
msgid "View in context"
|
msgid "View in context"
|
||||||
msgstr "Vedi nel contesto"
|
msgstr "Vedi nel contesto"
|
||||||
|
|
||||||
#: ../../include/conversation.php:279
|
#: ../../include/conversation.php:278
|
||||||
msgid "See more posts like this"
|
msgid "See more posts like this"
|
||||||
msgstr "Vedi altri post come questo"
|
msgstr "Vedi altri post come questo"
|
||||||
|
|
||||||
#: ../../include/conversation.php:304
|
#: ../../include/conversation.php:303
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "See all %d comments"
|
msgid "See all %d comments"
|
||||||
msgstr "Vedi tutti i %d commenti"
|
msgstr "Vedi tutti i %d commenti"
|
||||||
|
|
||||||
#: ../../include/conversation.php:461
|
#: ../../include/conversation.php:453
|
||||||
msgid "to"
|
msgid "to"
|
||||||
msgstr "a"
|
msgstr "a"
|
||||||
|
|
||||||
#: ../../include/conversation.php:462
|
#: ../../include/conversation.php:454
|
||||||
msgid "Wall-to-Wall"
|
msgid "Wall-to-Wall"
|
||||||
msgstr "Bacheca-A-Bacheca"
|
msgstr "Bacheca-A-Bacheca"
|
||||||
|
|
||||||
#: ../../include/conversation.php:463
|
#: ../../include/conversation.php:455
|
||||||
msgid "via Wall-To-Wall:"
|
msgid "via Wall-To-Wall:"
|
||||||
msgstr "sulla sua Bacheca:"
|
msgstr "sulla sua Bacheca:"
|
||||||
|
|
||||||
#: ../../include/conversation.php:600
|
#: ../../include/conversation.php:593
|
||||||
msgid "View status"
|
msgid "View status"
|
||||||
msgstr "Vedi stato"
|
msgstr "Vedi stato"
|
||||||
|
|
||||||
#: ../../include/conversation.php:601
|
#: ../../include/conversation.php:594
|
||||||
msgid "View profile"
|
msgid "View profile"
|
||||||
msgstr "Vedi profilo"
|
msgstr "Vedi profilo"
|
||||||
|
|
||||||
#: ../../include/conversation.php:602
|
#: ../../include/conversation.php:595
|
||||||
msgid "View photos"
|
msgid "View photos"
|
||||||
msgstr "Vedi foto"
|
msgstr "Vedi foto"
|
||||||
|
|
||||||
#: ../../include/conversation.php:603
|
#: ../../include/conversation.php:596
|
||||||
msgid "View recent"
|
msgid "View recent"
|
||||||
msgstr "Visualizza recente"
|
msgstr "Visualizza recente"
|
||||||
|
|
||||||
#: ../../include/conversation.php:605
|
#: ../../include/conversation.php:598
|
||||||
msgid "Send PM"
|
msgid "Send PM"
|
||||||
msgstr "Invia messaggio privato"
|
msgstr "Invia messaggio privato"
|
||||||
|
|
||||||
#: ../../include/conversation.php:655
|
#: ../../include/conversation.php:648
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s likes this."
|
msgid "%s likes this."
|
||||||
msgstr "Piace a %s."
|
msgstr "Piace a %s."
|
||||||
|
|
||||||
#: ../../include/conversation.php:655
|
#: ../../include/conversation.php:648
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s doesn't like this."
|
msgid "%s doesn't like this."
|
||||||
msgstr "Non piace a %s."
|
msgstr "Non piace a %s."
|
||||||
|
|
||||||
#: ../../include/conversation.php:659
|
#: ../../include/conversation.php:652
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> like this."
|
msgid "<span %1$s>%2$d people</span> like this."
|
||||||
msgstr "Piace a <span %1$s>%2$d persone</span>."
|
msgstr "Piace a <span %1$s>%2$d persone</span>."
|
||||||
|
|
||||||
#: ../../include/conversation.php:661
|
#: ../../include/conversation.php:654
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "<span %1$s>%2$d people</span> don't like this."
|
msgid "<span %1$s>%2$d people</span> don't like this."
|
||||||
msgstr "Non piace a <span %1$s>%2$d persone</span>."
|
msgstr "Non piace a <span %1$s>%2$d persone</span>."
|
||||||
|
|
||||||
#: ../../include/conversation.php:667
|
#: ../../include/conversation.php:660
|
||||||
msgid "and"
|
msgid "and"
|
||||||
msgstr "e"
|
msgstr "e"
|
||||||
|
|
||||||
#: ../../include/conversation.php:670
|
#: ../../include/conversation.php:663
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ", and %d other people"
|
msgid ", and %d other people"
|
||||||
msgstr ", e altre %d persone"
|
msgstr ", e altre %d persone"
|
||||||
|
|
||||||
#: ../../include/conversation.php:671
|
#: ../../include/conversation.php:664
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s like this."
|
msgid "%s like this."
|
||||||
msgstr "Piace a %s."
|
msgstr "Piace a %s."
|
||||||
|
|
||||||
#: ../../include/conversation.php:671
|
#: ../../include/conversation.php:664
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s don't like this."
|
msgid "%s don't like this."
|
||||||
msgstr "Non piace a %s."
|
msgstr "Non piace a %s."
|
||||||
|
|
||||||
#: ../../include/conversation.php:690
|
#: ../../include/conversation.php:683
|
||||||
msgid "Visible to <strong>everybody</strong>"
|
msgid "Visible to <strong>everybody</strong>"
|
||||||
msgstr "Vsibile a <strong>tutti</strong>"
|
msgstr "Vsibile a <strong>tutti</strong>"
|
||||||
|
|
||||||
#: ../../include/conversation.php:692
|
#: ../../include/conversation.php:685
|
||||||
msgid "Please enter a YouTube link:"
|
msgid "Please enter a YouTube link:"
|
||||||
msgstr "Inserisci l'indirizzo di YouTube:"
|
msgstr "Inserisci l'indirizzo di YouTube:"
|
||||||
|
|
||||||
#: ../../include/conversation.php:693
|
#: ../../include/conversation.php:686
|
||||||
msgid "Please enter a video(.ogg) link/URL:"
|
msgid "Please enter a video(.ogg) link/URL:"
|
||||||
msgstr "Inserisci il link a un video (.ogg):"
|
msgstr "Inserisci il link a un video (.ogg):"
|
||||||
|
|
||||||
#: ../../include/conversation.php:694
|
#: ../../include/conversation.php:687
|
||||||
msgid "Please enter an audio(.ogg) link/URL:"
|
msgid "Please enter an audio(.ogg) link/URL:"
|
||||||
msgstr "Inserisci il link a un audio (.ogg):"
|
msgstr "Inserisci il link a un audio (.ogg):"
|
||||||
|
|
||||||
#: ../../include/conversation.php:695
|
#: ../../include/conversation.php:688
|
||||||
msgid "Where are you right now?"
|
msgid "Where are you right now?"
|
||||||
msgstr "Dove sei ora?"
|
msgstr "Dove sei ora?"
|
||||||
|
|
||||||
#: ../../include/conversation.php:696
|
#: ../../include/conversation.php:689
|
||||||
msgid "Enter a title for this item"
|
msgid "Enter a title for this item"
|
||||||
msgstr "Inserisci un titolo per questo elemento"
|
msgstr "Inserisci un titolo per questo elemento"
|
||||||
|
|
||||||
#: ../../include/conversation.php:743
|
#: ../../include/conversation.php:740
|
||||||
msgid "Set title"
|
msgid "Set title"
|
||||||
msgstr "Imposta il titolo"
|
msgstr "Imposta il titolo"
|
||||||
|
|
||||||
#: ../../boot.php:372
|
#: ../../boot.php:385
|
||||||
msgid "Delete this item?"
|
msgid "Delete this item?"
|
||||||
msgstr "Cancellare questo elemento?"
|
msgstr "Cancellare questo elemento?"
|
||||||
|
|
||||||
#: ../../boot.php:821
|
#: ../../boot.php:834
|
||||||
msgid "Create a New Account"
|
msgid "Create a New Account"
|
||||||
msgstr "Crea un Nuovo Account"
|
msgstr "Crea un Nuovo Account"
|
||||||
|
|
||||||
#: ../../boot.php:828
|
#: ../../boot.php:841
|
||||||
msgid "Nickname or Email address: "
|
msgid "Nickname or Email address: "
|
||||||
msgstr "Soprannome o indirizzo Email: "
|
msgstr "Soprannome o indirizzo Email: "
|
||||||
|
|
||||||
#: ../../boot.php:829
|
#: ../../boot.php:842
|
||||||
msgid "Password: "
|
msgid "Password: "
|
||||||
msgstr "Password: "
|
msgstr "Password: "
|
||||||
|
|
||||||
#: ../../boot.php:834
|
#: ../../boot.php:847
|
||||||
msgid "Nickname/Email/OpenID: "
|
msgid "Nickname/Email/OpenID: "
|
||||||
msgstr "Soprannome/Email/OpenID: "
|
msgstr "Soprannome/Email/OpenID: "
|
||||||
|
|
||||||
#: ../../boot.php:835
|
#: ../../boot.php:848
|
||||||
msgid "Password (if not OpenID): "
|
msgid "Password (if not OpenID): "
|
||||||
msgstr "Password (se non OpenID): "
|
msgstr "Password (se non OpenID): "
|
||||||
|
|
||||||
#: ../../boot.php:838
|
#: ../../boot.php:851
|
||||||
msgid "Forgot your password?"
|
msgid "Forgot your password?"
|
||||||
msgstr "Dimenticata la password?"
|
msgstr "Dimenticata la password?"
|
||||||
|
|
||||||
#: ../../boot.php:1093
|
#: ../../boot.php:1113
|
||||||
msgid "prev"
|
msgid "prev"
|
||||||
msgstr "prec"
|
msgstr "prec"
|
||||||
|
|
||||||
#: ../../boot.php:1095
|
#: ../../boot.php:1115
|
||||||
msgid "first"
|
msgid "first"
|
||||||
msgstr "primo"
|
msgstr "primo"
|
||||||
|
|
||||||
#: ../../boot.php:1124
|
#: ../../boot.php:1144
|
||||||
msgid "last"
|
msgid "last"
|
||||||
msgstr "ultimo"
|
msgstr "ultimo"
|
||||||
|
|
||||||
#: ../../boot.php:1127
|
#: ../../boot.php:1147
|
||||||
msgid "next"
|
msgid "next"
|
||||||
msgstr "succ"
|
msgstr "succ"
|
||||||
|
|
||||||
#: ../../boot.php:1988
|
#: ../../boot.php:2046
|
||||||
msgid "No contacts"
|
msgid "No contacts"
|
||||||
msgstr "Nessun contatto"
|
msgstr "Nessun contatto"
|
||||||
|
|
||||||
#: ../../boot.php:1996
|
#: ../../boot.php:2054
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d Contact"
|
msgid "%d Contact"
|
||||||
msgid_plural "%d Contacts"
|
msgid_plural "%d Contacts"
|
||||||
msgstr[0] "%d Contatto"
|
msgstr[0] "%d Contatto"
|
||||||
msgstr[1] "%d Contatti"
|
msgstr[1] "%d Contatti"
|
||||||
|
|
||||||
#: ../../boot.php:2262
|
#: ../../boot.php:2329
|
||||||
msgid "Connect"
|
msgid "Connect"
|
||||||
msgstr "Connetti"
|
msgstr "Connetti"
|
||||||
|
|
||||||
#: ../../boot.php:2277
|
#: ../../boot.php:2344
|
||||||
msgid "Location:"
|
msgid "Location:"
|
||||||
msgstr "Posizione:"
|
msgstr "Posizione:"
|
||||||
|
|
||||||
#: ../../boot.php:2281
|
#: ../../boot.php:2348
|
||||||
msgid ", "
|
msgid ", "
|
||||||
msgstr ", "
|
msgstr ", "
|
||||||
|
|
||||||
#: ../../boot.php:2293
|
#: ../../boot.php:2360
|
||||||
msgid "Status:"
|
msgid "Status:"
|
||||||
msgstr "Stato:"
|
msgstr "Stato:"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Monday"
|
msgid "Monday"
|
||||||
msgstr "Lunedì"
|
msgstr "Lunedì"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Tuesday"
|
msgid "Tuesday"
|
||||||
msgstr "Martedì"
|
msgstr "Martedì"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Wednesday"
|
msgid "Wednesday"
|
||||||
msgstr "Mercoledì"
|
msgstr "Mercoledì"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Thursday"
|
msgid "Thursday"
|
||||||
msgstr "Giovedì"
|
msgstr "Giovedì"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Friday"
|
msgid "Friday"
|
||||||
msgstr "Venerdì"
|
msgstr "Venerdì"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Saturday"
|
msgid "Saturday"
|
||||||
msgstr "Sabato"
|
msgstr "Sabato"
|
||||||
|
|
||||||
#: ../../boot.php:2386
|
#: ../../boot.php:2457
|
||||||
msgid "Sunday"
|
msgid "Sunday"
|
||||||
msgstr "Domenica"
|
msgstr "Domenica"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "January"
|
msgid "January"
|
||||||
msgstr "Gennaio"
|
msgstr "Gennaio"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "February"
|
msgid "February"
|
||||||
msgstr "Febbraio"
|
msgstr "Febbraio"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "March"
|
msgid "March"
|
||||||
msgstr "Marzo"
|
msgstr "Marzo"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "April"
|
msgid "April"
|
||||||
msgstr "Aprile"
|
msgstr "Aprile"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "May"
|
msgid "May"
|
||||||
msgstr "Maggio"
|
msgstr "Maggio"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "June"
|
msgid "June"
|
||||||
msgstr "Giugno"
|
msgstr "Giugno"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "July"
|
msgid "July"
|
||||||
msgstr "Luglio"
|
msgstr "Luglio"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "August"
|
msgid "August"
|
||||||
msgstr "Agosto"
|
msgstr "Agosto"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "September"
|
msgid "September"
|
||||||
msgstr "Settembre"
|
msgstr "Settembre"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "October"
|
msgid "October"
|
||||||
msgstr "Ottobre"
|
msgstr "Ottobre"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "November"
|
msgid "November"
|
||||||
msgstr "Novembre"
|
msgstr "Novembre"
|
||||||
|
|
||||||
#: ../../boot.php:2390
|
#: ../../boot.php:2461
|
||||||
msgid "December"
|
msgid "December"
|
||||||
msgstr "Dicembre"
|
msgstr "Dicembre"
|
||||||
|
|
||||||
#: ../../boot.php:2405
|
#: ../../boot.php:2476
|
||||||
msgid "g A l F d"
|
msgid "g A l F d"
|
||||||
msgstr "g A l d F"
|
msgstr "g A l d F"
|
||||||
|
|
||||||
#: ../../boot.php:2422
|
#: ../../boot.php:2494
|
||||||
msgid "Birthday Reminders"
|
msgid "Birthday Reminders"
|
||||||
msgstr "Promemoria Compleanni"
|
msgstr "Promemoria Compleanni"
|
||||||
|
|
||||||
#: ../../boot.php:2423
|
#: ../../boot.php:2495
|
||||||
msgid "Birthdays this week:"
|
msgid "Birthdays this week:"
|
||||||
msgstr "Compleanni questa settimana:"
|
msgstr "Compleanni questa settimana:"
|
||||||
|
|
||||||
#: ../../boot.php:2424
|
#: ../../boot.php:2496
|
||||||
msgid "(Adjusted for local time)"
|
msgid "(Adjusted for local time)"
|
||||||
msgstr "(Convertiti all'ora locale)"
|
msgstr "(Convertiti all'ora locale)"
|
||||||
|
|
||||||
#: ../../boot.php:2435
|
#: ../../boot.php:2507
|
||||||
msgid "[today]"
|
msgid "[today]"
|
||||||
msgstr "[oggi]"
|
msgstr "[oggi]"
|
||||||
|
|
||||||
#: ../../boot.php:2636
|
#: ../../boot.php:2570
|
||||||
|
msgid "bytes"
|
||||||
|
msgstr "bytes"
|
||||||
|
|
||||||
|
#: ../../boot.php:2744
|
||||||
msgid "link to source"
|
msgid "link to source"
|
||||||
msgstr "Collegamento all'originale"
|
msgstr "Collegamento all'originale"
|
||||||
|
|
||||||
#: ../../wip/dfrn_poll2.php:72 ../../wip/dfrn_poll2.php:376
|
#: ../../index.php:199
|
||||||
msgid " welcomes "
|
|
||||||
msgstr " da il benvenuto "
|
|
||||||
|
|
||||||
#: ../../wip/addon/facebook/facebook.php:54
|
|
||||||
msgid "Facebook status update failed."
|
|
||||||
msgstr "Aggiornamento dello stato su Facebook fallito."
|
|
||||||
|
|
||||||
#: ../../wip/addon/js_upload/js_upload.php:213
|
|
||||||
msgid "Could not save uploaded file."
|
|
||||||
msgstr "Non posso salvare il file caricato."
|
|
||||||
|
|
||||||
#: ../../wip/addon/js_upload/js_upload.php:214
|
|
||||||
msgid "The upload was cancelled, or server error encountered"
|
|
||||||
msgstr ""
|
|
||||||
"Il caricamento è stato cancellato, o si è verificato un errore sul server"
|
|
||||||
|
|
||||||
#: ../../wip/addon/js_upload/js_upload.php:167
|
|
||||||
msgid "Server error. Upload directory isn"
|
|
||||||
msgstr "Errore sul server."
|
|
||||||
|
|
||||||
#: ../../wip/group.php:81
|
|
||||||
msgid "Membership list updated."
|
|
||||||
msgstr "Lista adesioni aggiornata."
|
|
||||||
|
|
||||||
#: ../../wip/group.php:175
|
|
||||||
msgid "Members:"
|
|
||||||
msgstr "Membri:"
|
|
||||||
|
|
||||||
#: ../../index.php:208
|
|
||||||
msgid "Not Found"
|
msgid "Not Found"
|
||||||
msgstr "Non Trovato"
|
msgstr "Non Trovato"
|
||||||
|
|
||||||
#: ../../index.php:209
|
#: ../../index.php:200
|
||||||
msgid "Page not found."
|
msgid "Page not found."
|
||||||
msgstr "Pagina non trovata."
|
msgstr "Pagina non trovata."
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,8 @@ $a->strings["Poll/Feed URL"] = "URL Feed";
|
||||||
$a->strings["Submit"] = "Invia";
|
$a->strings["Submit"] = "Invia";
|
||||||
$a->strings["Help:"] = "Guida:";
|
$a->strings["Help:"] = "Guida:";
|
||||||
$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["Cancel"] = "Annulla";
|
$a->strings["Cancel"] = "Annulla";
|
||||||
$a->strings["Tag removed"] = "TAg rimosso";
|
$a->strings["Tag removed"] = "TAg rimosso";
|
||||||
$a->strings["Remove Item Tag"] = "Rimuovi tag dall'elemento";
|
$a->strings["Remove Item Tag"] = "Rimuovi tag dall'elemento";
|
||||||
|
|
@ -77,6 +79,7 @@ $a->strings["Edit post"] = "Modifica messaggio";
|
||||||
$a->strings["Post to Email"] = "Invia a Email";
|
$a->strings["Post to Email"] = "Invia a Email";
|
||||||
$a->strings["Edit"] = "Modifica";
|
$a->strings["Edit"] = "Modifica";
|
||||||
$a->strings["Upload photo"] = "Carica foto";
|
$a->strings["Upload photo"] = "Carica foto";
|
||||||
|
$a->strings["Attach file"] = "Allega file";
|
||||||
$a->strings["Insert web link"] = "Inserisci link";
|
$a->strings["Insert web link"] = "Inserisci link";
|
||||||
$a->strings["Insert YouTube video"] = "Inserisci video da YouTube";
|
$a->strings["Insert YouTube video"] = "Inserisci video da YouTube";
|
||||||
$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Theora [.ogg]";
|
$a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Theora [.ogg]";
|
||||||
|
|
@ -85,6 +88,7 @@ $a->strings["Set your location"] = "Imposta la tua posizione";
|
||||||
$a->strings["Clear browser location"] = "Cancella la tua posizione data dal browser";
|
$a->strings["Clear browser location"] = "Cancella la tua posizione data dal browser";
|
||||||
$a->strings["Permission settings"] = "Impostazione permessi";
|
$a->strings["Permission settings"] = "Impostazione permessi";
|
||||||
$a->strings["CC: email addresses"] = "CC: indirizzi email";
|
$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["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["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["Profile location is not valid or does not contain profile information."] = "La posizione del profilo non è valida o non contiene informazioni di profilo.";
|
||||||
|
|
@ -119,7 +123,7 @@ $a->strings["Administrator"] = "Amministratore";
|
||||||
$a->strings["Friend/Connection Request"] = "Richieste di Amicizia/Connessione";
|
$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["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["Please answer the following:"] = "Rispondi al seguente:";
|
||||||
$a->strings["Does \$name know you?"] = "\$name ti conosce?";
|
$a->strings["Does \$name know you?"] = "$name ti conosce?";
|
||||||
$a->strings["Yes"] = "Si";
|
$a->strings["Yes"] = "Si";
|
||||||
$a->strings["No"] = "No";
|
$a->strings["No"] = "No";
|
||||||
$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
|
$a->strings["Add a personal note:"] = "Aggiungi una nota personale:";
|
||||||
|
|
@ -329,11 +333,10 @@ $a->strings["(Toggle between different identities or community/group pages which
|
||||||
$a->strings["Select an identity to manage: "] = "Seleziona una identità da gestire:";
|
$a->strings["Select an identity to manage: "] = "Seleziona una identità da gestire:";
|
||||||
$a->strings["Normal View"] = "Vista normale";
|
$a->strings["Normal View"] = "Vista normale";
|
||||||
$a->strings["New Item View"] = "Vista Nuovi Elementi";
|
$a->strings["New Item View"] = "Vista Nuovi Elementi";
|
||||||
$a->strings["%d member"] = array(
|
$a->strings["Warning: This group contains %s member from an insecure network."] = array(
|
||||||
0 => "%d membro",
|
0 => "Attenzione: questo gruppo contiene %s membro da un network insicuro.",
|
||||||
1 => "%d membri",
|
1 => "Attenzione: questo gruppo contiene %s membri da un network insicuro.",
|
||||||
);
|
);
|
||||||
$a->strings["Warning: This group contains %s from an insecure network."] = "Attenzione: questo gruppo contiente %s 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["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["No such group"] = "Nessun gruppo";
|
||||||
$a->strings["Group is empty"] = "Il gruppo è vuoto";
|
$a->strings["Group is empty"] = "Il gruppo è vuoto";
|
||||||
|
|
@ -342,6 +345,10 @@ $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["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 contact."] = "Contatto non valido.";
|
||||||
$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["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["Private Notes"] = "Note Private";
|
||||||
|
$a->strings["Save"] = "Salva";
|
||||||
|
$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["Group created."] = "Gruppo creato.";
|
||||||
$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
|
$a->strings["Could not create group."] = "Impossibile creare il gruppo.";
|
||||||
$a->strings["Group not found."] = "Gruppo non trovato.";
|
$a->strings["Group not found."] = "Gruppo non trovato.";
|
||||||
|
|
@ -405,11 +412,14 @@ $a->strings["No installed plugins/addons/apps"] = "Nessuno plugin/addons/applica
|
||||||
$a->strings["Please login."] = "Accedi.";
|
$a->strings["Please login."] = "Accedi.";
|
||||||
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
|
$a->strings["Registration revoked for %s"] = "Registrazione revocata per %s";
|
||||||
$a->strings["Account approved."] = "Account approvato.";
|
$a->strings["Account approved."] = "Account approvato.";
|
||||||
|
$a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per vederlo]";
|
||||||
$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
|
$a->strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale.";
|
||||||
$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
|
$a->strings["Empty post discarded."] = "Messaggio vuoto scartato.";
|
||||||
$a->strings["Wall Photos"] = "Foto Bacheca";
|
$a->strings["Wall Photos"] = "Foto Bacheca";
|
||||||
$a->strings["%s commented on your item at %s"] = "%s ha commentato un tuo elemento su %s";
|
$a->strings["noreply"] = "nessuna risposta";
|
||||||
$a->strings["%s posted on your profile wall at %s"] = "%s ha scritto sulla tua bacheca su %s";
|
$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["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["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["You may visit them online at %s"] = "Puoi visitarli online presso %s";
|
||||||
|
|
@ -455,6 +465,7 @@ $a->strings["Message not available."] = "Messaggio non disponibile.";
|
||||||
$a->strings["Delete message"] = "Cancella messaggio";
|
$a->strings["Delete message"] = "Cancella messaggio";
|
||||||
$a->strings["Send Reply"] = "Invia risposta";
|
$a->strings["Send Reply"] = "Invia risposta";
|
||||||
$a->strings["No profile"] = "Nessun profilo";
|
$a->strings["No profile"] = "Nessun profilo";
|
||||||
|
$a->strings["Access to this profile has been restricted."] = "L'accesso a questo profilo è stato limitato.";
|
||||||
$a->strings["Status"] = "Stato";
|
$a->strings["Status"] = "Stato";
|
||||||
$a->strings["Photos"] = "Foto";
|
$a->strings["Photos"] = "Foto";
|
||||||
$a->strings["Login failed."] = "Accesso fallito.";
|
$a->strings["Login failed."] = "Accesso fallito.";
|
||||||
|
|
@ -462,13 +473,14 @@ $a->strings["Welcome "] = "Benvenuto";
|
||||||
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
|
$a->strings["Please upload a profile photo."] = "Carica una foto per il profilo.";
|
||||||
$a->strings["Welcome back "] = "Bentornato ";
|
$a->strings["Welcome back "] = "Bentornato ";
|
||||||
$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
|
$a->strings["The profile address specified does not provide adequate information."] = "L'indirizzo del profilo specificato non fornisce adeguate informazioni.";
|
||||||
|
$a->strings["No compatible communication protocols or feeds were discovered."] = "Non sono stati trovati nessun protocollo di comunicazione o feed compatibili.";
|
||||||
|
$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["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["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["Unable to retrieve contact information."] = "Impossibile recuperare informazioni sul contatto.";
|
||||||
$a->strings["following"] = "segue";
|
$a->strings["following"] = "segue";
|
||||||
$a->strings["Item has been removed."] = "L'elemento è stato rimosso.";
|
$a->strings["Item has been removed."] = "L'elemento è stato rimosso.";
|
||||||
$a->strings["noreply"] = "nessuna risposta";
|
|
||||||
$a->strings["New mail received at "] = "Nuova mail ricevuta su ";
|
$a->strings["New mail received at "] = "Nuova mail ricevuta su ";
|
||||||
$a->strings["%s commented on an item at %s"] = "%s ha commentato un elemento su %s";
|
|
||||||
$a->strings["Applications"] = "Applicazioni";
|
$a->strings["Applications"] = "Applicazioni";
|
||||||
$a->strings["Search"] = "Cerca";
|
$a->strings["Search"] = "Cerca";
|
||||||
$a->strings["No results."] = "Nessun risultato.";
|
$a->strings["No results."] = "Nessun risultato.";
|
||||||
|
|
@ -479,7 +491,8 @@ $a->strings["Profile deleted."] = "Profilo elminato.";
|
||||||
$a->strings["Profile-"] = "Profilo-";
|
$a->strings["Profile-"] = "Profilo-";
|
||||||
$a->strings["New profile created."] = "Nuovo profilo creato.";
|
$a->strings["New profile created."] = "Nuovo profilo creato.";
|
||||||
$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il plrofilo.";
|
$a->strings["Profile unavailable to clone."] = "Impossibile duplicare il plrofilo.";
|
||||||
$a->strings["Hide my contact/friend list from viewers of this profile?"] = "Nascondi la mia lista di contatti/amici dai visitatori di questo profilo";
|
$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["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["Edit Profile Details"] = "Modifica i Dettagli del Profilo";
|
$a->strings["Edit Profile Details"] = "Modifica i Dettagli del Profilo";
|
||||||
$a->strings["View this profile"] = "Visualizza questo 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["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni";
|
||||||
|
|
@ -526,6 +539,8 @@ $a->strings["Profile Image"] = "Immagine del Profilo";
|
||||||
$a->strings["Visible to everybody"] = "Visibile a tutti";
|
$a->strings["Visible to everybody"] = "Visibile a tutti";
|
||||||
$a->strings["Edit visibility"] = "Modifica visibilità";
|
$a->strings["Edit visibility"] = "Modifica visibilità";
|
||||||
$a->strings["Global Directory"] = "Elenco Globale";
|
$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["Site Directory"] = "Elenco del Sito";
|
||||||
$a->strings["Gender: "] = "Genere:";
|
$a->strings["Gender: "] = "Genere:";
|
||||||
$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
|
$a->strings["No entries (some entries may be hidden)."] = "Nessuna voce (qualche voce potrebbe essere nascosta).";
|
||||||
|
|
@ -570,6 +585,9 @@ $a->strings["Post to Facebook"] = "Invia a Facebook";
|
||||||
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Invio su Facebook annullato per un conflitto nei permessi di accesso.";
|
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Invio su Facebook annullato per un conflitto nei permessi di accesso.";
|
||||||
$a->strings["Image: "] = "Immagine: ";
|
$a->strings["Image: "] = "Immagine: ";
|
||||||
$a->strings["View on Friendika"] = "Vedi su Friendika";
|
$a->strings["View on Friendika"] = "Vedi su Friendika";
|
||||||
|
$a->strings["Widgets key: "] = "Chiave Widgets: ";
|
||||||
|
$a->strings["Generate new key"] = "Genera una nuova chiave";
|
||||||
|
$a->strings["Connect on Friendika!"] = "Connettiti su Friendika!";
|
||||||
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale";
|
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Tic-Tac-Toe tridimensionale";
|
||||||
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
|
$a->strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe";
|
||||||
$a->strings["New game"] = "Nuovo gioco";
|
$a->strings["New game"] = "Nuovo gioco";
|
||||||
|
|
@ -594,8 +612,17 @@ $a->strings["Uploaded file is empty"] = "Il file caricato è vuoto";
|
||||||
$a->strings["Uploaded file is too large"] = "Il file caricato è troppo grande";
|
$a->strings["Uploaded file is too large"] = "Il file caricato è troppo grande";
|
||||||
$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["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["Upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server";
|
||||||
|
$a->strings["OEmbed settings updated"] = "Impostazioni OEmbed aggiornate";
|
||||||
|
$a->strings["Use OEmbed for YouTube videos: "] = "Usa OEmbed per i video da YouTube:";
|
||||||
|
$a->strings["URL to embed:"] = "URL da incorporare:";
|
||||||
$a->strings["Post to StatusNet"] = "Invia a StatusNet";
|
$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["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["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 Key"] = "OAuth Consumer Key";
|
||||||
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
|
$a->strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
|
||||||
|
|
@ -603,9 +630,13 @@ $a->strings["Base API Path (remember the trailing /)"] = "Indirizzo di base per
|
||||||
$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["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["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["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["Currently connected to: "] = "Al momento collegato con:";
|
||||||
$a->strings["If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account as well."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> verranno inviati anche sull'account StatusNet associato.";
|
$a->strings["If enabled all your <strong>public</strong> postings will be posted to the associated StatusNet account."] = "Se abilitato tutti i tuoi messaggi <strong>pubblici</strong> saranno inviati all'account StatuNet associato.";
|
||||||
$a->strings["Send public postings to StatusNet"] = "Invia messaggi pubblici su StatusNet";
|
$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["Clear OAuth configuration"] = "Cancella la configurazione OAuth";
|
||||||
$a->strings["Post to Twitter"] = "Inva a Twitter";
|
$a->strings["Post to Twitter"] = "Inva a Twitter";
|
||||||
$a->strings["Twitter Posting Settings"] = "Impostazioni Invio a Twitter";
|
$a->strings["Twitter Posting Settings"] = "Impostazioni Invio a Twitter";
|
||||||
|
|
@ -727,9 +758,11 @@ $a->strings["minutes"] = "minuti";
|
||||||
$a->strings["second"] = "secondo";
|
$a->strings["second"] = "secondo";
|
||||||
$a->strings["seconds"] = "secondi";
|
$a->strings["seconds"] = "secondi";
|
||||||
$a->strings[" ago"] = " fa";
|
$a->strings[" ago"] = " fa";
|
||||||
|
$a->strings["From: "] = "Da: ";
|
||||||
$a->strings["Image/photo"] = "Immagine/foto";
|
$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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'";
|
||||||
$a->strings["Visible To:"] = "Visibile a:";
|
$a->strings["Visible To:"] = "Visibile a:";
|
||||||
|
$a->strings["everybody"] = "tutti";
|
||||||
$a->strings["Groups"] = "Gruppi";
|
$a->strings["Groups"] = "Gruppi";
|
||||||
$a->strings["Except For:"] = "Eccetto per:";
|
$a->strings["Except For:"] = "Eccetto per:";
|
||||||
$a->strings["(no subject)"] = "(nessun oggetto)";
|
$a->strings["(no subject)"] = "(nessun oggetto)";
|
||||||
|
|
@ -805,13 +838,7 @@ $a->strings["Birthday Reminders"] = "Promemoria Compleanni";
|
||||||
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
|
$a->strings["Birthdays this week:"] = "Compleanni questa settimana:";
|
||||||
$a->strings["(Adjusted for local time)"] = "(Convertiti all'ora locale)";
|
$a->strings["(Adjusted for local time)"] = "(Convertiti all'ora locale)";
|
||||||
$a->strings["[today]"] = "[oggi]";
|
$a->strings["[today]"] = "[oggi]";
|
||||||
|
$a->strings["bytes"] = "bytes";
|
||||||
$a->strings["link to source"] = "Collegamento all'originale";
|
$a->strings["link to source"] = "Collegamento all'originale";
|
||||||
$a->strings[" welcomes "] = " da il benvenuto ";
|
|
||||||
$a->strings["Facebook status update failed."] = "Aggiornamento dello stato su Facebook fallito.";
|
|
||||||
$a->strings["Could not save uploaded file."] = "Non posso salvare il file caricato.";
|
|
||||||
$a->strings["The upload was cancelled, or server error encountered"] = "Il caricamento è stato cancellato, o si è verificato un errore sul server";
|
|
||||||
$a->strings["Server error. Upload directory isn"] = "Errore sul server.";
|
|
||||||
$a->strings["Membership list updated."] = "Lista adesioni aggiornata.";
|
|
||||||
$a->strings["Members:"] = "Membri:";
|
|
||||||
$a->strings["Not Found"] = "Non Trovato";
|
$a->strings["Not Found"] = "Non Trovato";
|
||||||
$a->strings["Page not found."] = "Pagina non trovata.";
|
$a->strings["Page not found."] = "Pagina non trovata.";
|
||||||
|
|
|
||||||
|
|
@ -2406,6 +2406,35 @@ a.mail-list-link {
|
||||||
margin: 5px 0px 0px 0px;
|
margin: 5px 0px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.required {
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-start-text, #event-finish-text {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#event-datetime-break {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-nofinish-break, #event-adjust-break {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-desc-text, #event-location-text {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
#event-submit {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#lang-select-icon {
|
#lang-select-icon {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
||||||
|
|
@ -2419,6 +2419,35 @@ a.mail-list-link {
|
||||||
margin: 5px 0px 0px 0px;
|
margin: 5px 0px 0px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.required {
|
||||||
|
color: #FF0000;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-start-text, #event-finish-text {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-nofinish-checkbox, #event-nofinish-text, #event-adjust-checkbox, #event-adjust-text {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
#event-datetime-break {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-nofinish-break, #event-adjust-break {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
#event-desc-text, #event-location-text {
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
#event-submit {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
#lang-select-icon {
|
#lang-select-icon {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue