-<!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?>\r
-<html>\r
-<head>\r
- <title><?php if(x($page,'title')) echo $page['title']; ?></title>\r
- <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>\r
-</head>\r
-<body>\r
-<header><?php if(x($page,'header')) echo $page['header']; ?></header>\r
-<nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></nav>\r
-<aside>\r
-<?php if((is_array($profile)) && count($profile)) { ?>\r
-<div class="vcard">\r
- <?php if(strlen($profile['name'])) { ?>\r
- <div class="fn"><?php echo $profile['name']; ?></div>\r
- <?php } ?>\r
-\r
- <?php if(strlen($profile['photo'])) { ?>\r
- <div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div>\r
- <?php } ?>\r
-\r
- <div id="profile-extra-links">\r
- <ul>\r
- <?php if($profile['uid'] != $_SESSION['uid']) { ?>\r
- <li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connetti</a></li>\r
- <?php } ?>\r
- </ul>\r
-\r
- </div>\r
-\r
- <?php if ( (strlen($profile['address'])) \r
- || (strlen($profile['locality']))\r
- || (strlen($profile['region'])) \r
- || (strlen($profile['postal-code'])) \r
- || (strlen($profile['country-name']))) { ?>\r
- <div class="location">Location:\r
- <div class="adr">\r
- <div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>\r
- <span class="city-state-zip"><span class="locality"><?php echo $profile['locality']; ?></span><?php if(strlen($profile['locality'])) echo ', '; ?><span class="region"><?php echo $profile['region'] ?></span><?php if(strlen($profile['postal-code'])) { ?> <span class="postal-code"><?php echo $profile['postal-code']; ?></span><?php } ?></span>\r
- <span class="country-name"><?php echo $profile['country-name']; ?></span>\r
- </div>\r
- </div>\r
-\r
- <?php } ?>\r
-\r
- <?php if(strlen($profile['gender'])) { ?>\r
- <div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>\r
-\r
- <?php } ?>\r
-\r
- <?php if(strlen($profile['pubkey'])) { ?>\r
- <div class="key" style="display: none;"><?php echo $profile['pubkey']; ?></div>\r
- <?php } ?>\r
-</div>\r
-<?php } ?>\r
-<?php if(strlen($profile['marital'])) { ?>\r
-<div class="marital"><span class="marital-label"><span class="heart">♥</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>\r
-<?php } ?>\r
-<?php if(strlen($profile['homepage'])) { ?>\r
-<div class="homepage"><span class="homepage-label">Homepage: </span><span class="homepage-url"><?php echo linkify($profile['homepage']); ?></span></div>\r
-<?php } ?>\r
-<?php if(x($page,'aside')) echo $page['aside'] ?>\r
-</aside>\r
-<section>\r
-<?php if(x($page,'content')) echo $page['content']; ?>\r
-<div id="page-footer"></div>\r
-</section>\r
-<footer>\r
-<?php if(x($page,'footer')) echo $page['footer']; ?>\r
-</footer>\r
-</body>\r
-</html>\r
-\r
+<!DOCTYPE html ><?php // This is a perfect example of why I prefer to use template files rather than mixed PHP/HTML ?>
+<html>
+<head>
+ <title><?php if(x($page,'title')) echo $page['title']; ?></title>
+ <?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>
+</head>
+<body>
+<header><?php if(x($page,'header')) echo $page['header']; ?></header>
+<nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
+<aside>
+<?php if((is_array($profile)) && count($profile)) { ?>
+<div class="vcard">
+ <?php if(strlen($profile['name'])) { ?>
+ <div class="fn"><?php echo $profile['name']; ?></div>
+ <?php } ?>
+
+ <?php if(strlen($profile['photo'])) { ?>
+ <div id="profile-photo-wrapper"><img class="photo" src="<?php echo $profile['photo']; ?>" alt="<?php echo $profile['name']; ?>" /></div>
+ <?php } ?>
+
+ <div id="profile-extra-links">
+ <ul>
+ <?php if($profile['uid'] != $_SESSION['uid']) { ?>
+ <li><a id="dfrn-request-link" href="dfrn_request/<?php echo $profile['nickname']; ?>">Connetti</a></li>
+ <?php } ?>
+ </ul>
+
+ </div>
+
+ <?php if ( (strlen($profile['address']))
+ || (strlen($profile['locality']))
+ || (strlen($profile['region']))
+ || (strlen($profile['postal-code']))
+ || (strlen($profile['country-name']))) { ?>
+ <div class="location">Location:
+ <div class="adr">
+ <div class="street-address"><?php if(strlen($profile['address'])) echo $profile['address']; ?></div>
+ <span class="city-state-zip"><span class="locality"><?php echo $profile['locality']; ?></span><?php if(strlen($profile['locality'])) echo ', '; ?><span class="region"><?php echo $profile['region'] ?></span><?php if(strlen($profile['postal-code'])) { ?> <span class="postal-code"><?php echo $profile['postal-code']; ?></span><?php } ?></span>
+ <span class="country-name"><?php echo $profile['country-name']; ?></span>
+ </div>
+ </div>
+
+ <?php } ?>
+
+ <?php if(strlen($profile['gender'])) { ?>
+ <div class="mf">Gender: <span class="x-gender"><?php echo $profile['gender']; ?></span></div>
+
+ <?php } ?>
+
+ <?php if(strlen($profile['pubkey'])) { ?>
+ <div class="key" style="display: none;"><?php echo $profile['pubkey']; ?></div>
+ <?php } ?>
+</div>
+<?php } ?>
+<?php if(strlen($profile['marital'])) { ?>
+<div class="marital"><span class="marital-label"><span class="heart">♥</span> Status: </span><span class="marital-text"><?php echo $profile['marital']; ?></span></div>
+<?php } ?>
+<?php if(strlen($profile['homepage'])) { ?>
+<div class="homepage"><span class="homepage-label">Homepage: </span><span class="homepage-url"><?php echo linkify($profile['homepage']); ?></span></div>
+<?php } ?>
+<?php if(x($page,'aside')) echo $page['aside'] ?>
+</aside>
+<section>
+<?php if(x($page,'content')) echo $page['content']; ?>
+<div id="page-footer"></div>
+</section>
+<footer>
+<?php if(x($page,'footer')) echo $page['footer']; ?>
+</footer>
+</body>
+</html>
+
$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'L\'ID fornito dal tuo sistema e\' duplicato sul nostro sistema. Dovrebbe funzionare se provi ancora.';
$a->strings['Unable to set your contact credentials on our system.'] = 'Impossibile impostare le credenziali del tuo contatto sul nostro sistema.';
$a->strings['Unable to update your contact profile details on our system'] = 'Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema';
-$a->strings["Connection accepted at "] = "Connessione accettata alle ";
+$a->strings["Connection accepted at "] = "Connessione accettata su ";
$a->strings['Administrator'] = 'Amministratore';
-$a->strings['New mail received at '] = 'Nuova mail ricevuta alle ';
-$a->strings[' commented on an item at '] = ' commentato un elemento alle ';
-$a->strings[" commented on an item at "] = " commentato un elemento alle ";
+$a->strings['New mail received at '] = 'Nuova mail ricevuta su ';
+$a->strings[' commented on an item at '] = ' commentato un elemento su ';
+$a->strings[" commented on an item at "] = " commentato un elemento su ";
$a->strings[' welcomes '] = ' accoglie ';
$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['Once you have registered, please connect with me via my profile page at:'] = 'Una volta registrato, connettiti con me sul mio profilo a:';
$a->strings['Unable to locate original post.'] = 'Impossibile trovare il messaggio originale.';
$a->strings['Empty post discarded.'] = 'Messaggio vuoto scartato.';
-$a->strings[" commented on your item at "] = " ha commentato il tuo elemento alle ";
-$a->strings[" posted on your profile wall at "] = " ha inviato un messaggio sulla tua bachecha alle ";
+$a->strings[" commented on your item at "] = " ha commentato il tuo elemento su ";
+$a->strings[" posted on your profile wall at "] = " ha inviato un messaggio sulla tua bachecha su ";
$a->strings['Facebook status update failed.'] = 'Aggiornamento stato Facebook fallito.';
$a->strings['photo'] = 'foto';
$a->strings['status'] = 'stato';
$a->strings['\'s'] = '\'s';
$a->strings['Remote privacy information not available.'] = 'Informazioni remote sulla privacy non disponibili.';
$a->strings['Visible to:'] = 'Visibile a:';
-$a->strings['Password reset requested at '] = 'Resetta password richiesta alle ';
+$a->strings['Password reset requested at '] = 'Richiesta di resettare la password su ';
$a->strings['No recipient selected.'] = 'Nessun destinatario selezionato.';
$a->strings['[no subject]'] = '[nessun oggetto]';
$a->strings['Unable to locate contact information.'] = 'Impossibile trovare le informazioni del contatto.';