kopia lustrzana https://github.com/friendica/friendica
Merge branch 'master' of git://github.com/tobiasd/friendika
commit
7e007b6c07
2
boot.php
2
boot.php
|
@ -3,7 +3,7 @@
|
|||
set_time_limit(0);
|
||||
|
||||
define ( 'BUILD_ID', 1033 );
|
||||
define ( 'FRIENDIKA_VERSION', '2.01.1005' );
|
||||
define ( 'FRIENDIKA_VERSION', '2.01.1006' );
|
||||
define ( 'DFRN_PROTOCOL_VERSION', '2.0' );
|
||||
|
||||
define ( 'EOL', "<br />\r\n" );
|
||||
|
|
|
@ -22,7 +22,7 @@ function bbcode($Text) {
|
|||
// Perform URL Search
|
||||
|
||||
|
||||
$Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$2" >$2</a>', $Text);
|
||||
$Text = preg_replace("/([^\]\=]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]+)/", ' <a href="$2" >$2</a>', $Text);
|
||||
|
||||
$Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" >$1</a>', $Text);
|
||||
$Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" >$2</a>', $Text);
|
||||
|
|
|
@ -57,10 +57,10 @@ function invite_content(&$a) {
|
|||
'$invite' => t('Send invitations'),
|
||||
'$addr_text' => t('Enter email addresses, one per line:'),
|
||||
'$msg_text' => t('Your message:'),
|
||||
'$default_message' => t('Please join my social network on ') . $a->config['sitename'] . t("\r\n") . t("\r\n")
|
||||
. t('To accept this invitation, please visit:') . t("\r\n") . t("\r\n") . $a->get_baseurl()
|
||||
. t("\r\n") . t("\r\n") . t('Once you have registered, please connect with me via my profile page at:')
|
||||
. t("\r\n") . t("\r\n") . $a->get_baseurl() . '/profile/' . $a->user['nickname'] ,
|
||||
'$default_message' => t('Please join my social network on ') . $a->config['sitename'] . "\r\n" . "\r\n"
|
||||
. t('To accept this invitation, please visit:') . "\r\n" . "\r\n" . $a->get_baseurl()
|
||||
. "\r\n" . "\r\n" . t('Once you have registered, please connect with me via my profile page at:')
|
||||
. "\r\n" . "\r\n" . $a->get_baseurl() . '/profile/' . $a->user['nickname'] ,
|
||||
'$submit' => t('Submit')
|
||||
));
|
||||
|
||||
|
|
|
@ -0,0 +1,180 @@
|
|||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<style>
|
||||
textarea { width: 100% }
|
||||
.no { background: #ffdddd; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
|
||||
$FRIENDIKA_PATH = dirname(dirname(__FILE__));
|
||||
|
||||
/* find languages */
|
||||
$LANGS=array();
|
||||
$d = dir($FRIENDIKA_PATH."/view");
|
||||
while (false !== ($entry = $d->read())) {
|
||||
if (is_file($d->path."/".$entry."/strings.php")){
|
||||
$LANGS[] = $entry;
|
||||
}
|
||||
|
||||
}
|
||||
$d->close();
|
||||
|
||||
|
||||
class A{
|
||||
var $strings = Array();
|
||||
}
|
||||
|
||||
function loadstrings($lang = NULL){
|
||||
global $FRIENDIKA_PATH;
|
||||
if (is_null($lang)) {
|
||||
$path = $FRIENDIKA_PATH."/util/strings.php";
|
||||
} else {
|
||||
$path = $FRIENDIKA_PATH."/view/$lang/strings.php";
|
||||
}
|
||||
$a = new A();
|
||||
include_once($path);
|
||||
return $a->strings;
|
||||
}
|
||||
|
||||
|
||||
function savestrings($lang, $strings){
|
||||
global $FRIENDIKA_PATH;
|
||||
$path = $FRIENDIKA_PATH."/view/$lang/strings.php";
|
||||
$f = fopen($path,"w");
|
||||
fwrite($f, "<"); fwrite($f, "?php\n");
|
||||
foreach($strings as $k=>$v){
|
||||
$k=str_replace("'","\'", $k);
|
||||
$k=str_replace("\\\\'","\'", $k);
|
||||
$k=str_replace("\n","\\n", $k);
|
||||
$k=str_replace("\r","\\r", $k);
|
||||
$v=str_replace("'","\'", $v);
|
||||
$v=str_replace("\\\\'","\'", $v);
|
||||
$v=str_replace("\n","\\n", $v);
|
||||
$v=str_replace("\r","\\r", $v);
|
||||
|
||||
fwrite( $f, '$a->strings[\''.$k.'\'] = \''. $v .'\';'."\n" );
|
||||
#echo '$a->strings[\''.$k.'\'] = \''. $v .'\''."\n" ;
|
||||
}
|
||||
fwrite($f, "?"); fwrite($f, ">\n");
|
||||
fclose($f);
|
||||
}
|
||||
|
||||
|
||||
|
||||
function hexstr($hexstr) {
|
||||
$hexstr = str_replace(' ', '', $hexstr);
|
||||
$hexstr = str_replace('\x', '', $hexstr);
|
||||
$retstr = pack('H*', $hexstr);
|
||||
return $retstr;
|
||||
}
|
||||
|
||||
function strhex($string) {
|
||||
$hexstr = unpack('H*', $string);
|
||||
return array_shift($hexstr);
|
||||
}
|
||||
|
||||
|
||||
echo "<h1>Translator</h1>";
|
||||
echo "<p>Utility to translate <code>string.php</code> file.";
|
||||
echo " Need write permission to language file you want to modify</p>";
|
||||
echo "<p>Installed languages:";
|
||||
echo "<ul>";
|
||||
foreach($LANGS as $l){
|
||||
echo "<li><a href='?lang=$l'>$l</a></li>";
|
||||
}
|
||||
echo "</ul></p>";
|
||||
|
||||
|
||||
$strings['en'] = loadstrings();
|
||||
|
||||
if (isset($_GET['lang'])){
|
||||
|
||||
$lang = $_GET['lang'];
|
||||
$strings[$lang] = loadstrings($lang);
|
||||
|
||||
$n1 = count($strings['en']);
|
||||
$n2 = count($strings[$lang]);
|
||||
|
||||
echo "<pre>";
|
||||
echo "Tranlsate en to $lang<br>";
|
||||
//echo "Translated $n2 over $n1 strings<br>";
|
||||
echo "</pre><hr/>";
|
||||
|
||||
|
||||
|
||||
if (isset($_POST['save'])){
|
||||
echo "saving...";
|
||||
foreach ($_POST as $k=>$v){
|
||||
if ($k!="save" && $k!="from"){
|
||||
$k=hexstr($k);
|
||||
$strings[$lang][$k] = $v;
|
||||
}
|
||||
}
|
||||
savestrings($lang, $strings[$lang]);
|
||||
echo "ok.<br>";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if (!isset($_POST['from'])){
|
||||
$from=0;
|
||||
} else {
|
||||
$from = $_POST['from'];
|
||||
if ($_POST['save']=="Next")
|
||||
$from += 10;
|
||||
if ($_POST['save']=="Prev")
|
||||
$from -= 10;
|
||||
}
|
||||
$count = count($strings['en']);
|
||||
$len = 10;
|
||||
if ($from+$len>$count) $len=$count-$from;
|
||||
$thestrings = array_slice($strings['en'], $from, $len, true);
|
||||
|
||||
|
||||
|
||||
echo "<form method='POST'>";
|
||||
|
||||
if ($from>0)
|
||||
echo "<input type='submit' name='save' id='save' value='Prev'/>";
|
||||
echo "<input type='submit' name='reload' id='reload' value='Reload'/>";
|
||||
if ($from+$len<$count)
|
||||
echo "<input type='submit' name='save' id='save' value='Next'/>";
|
||||
|
||||
foreach($thestrings as $k=>$v){
|
||||
$id = strhex($k);
|
||||
$translation = $strings[$lang][$k];
|
||||
|
||||
$v=str_replace("\n","\\n", $v);
|
||||
$v=str_replace("\r","\\r", $v);
|
||||
$translation=str_replace("\n","\\n", $translation);
|
||||
$translation=str_replace("\r","\\r", $translation);
|
||||
|
||||
$istranslate = $translation != '' ? 'yes':'no';
|
||||
echo "<dl class='$istranslate'>";
|
||||
echo "<dt><label for='$id'>".htmlspecialchars($v)."</label></dt>";
|
||||
echo "<dd><textarea id='$id' name='$id'>$translation</textarea></dd>";
|
||||
echo "</dl>";
|
||||
}
|
||||
|
||||
|
||||
echo "<input type='hidden' name='from' value='$from'/>";
|
||||
|
||||
if ($from>0)
|
||||
echo "<input type='submit' name='save' id='save' value='Prev'/>";
|
||||
echo "<input type='submit' name='reload' id='reload' value='Reload'/>";
|
||||
if ($from+$len<$count)
|
||||
echo "<input type='submit' name='save' id='save' value='Next'/>";
|
||||
|
||||
echo "</form>";
|
||||
|
||||
|
||||
}
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -44,16 +44,16 @@ $a->strings['Could not access contact record.'] = 'Non si puo\' accedere al cont
|
|||
$a->strings['Could not locate selected profile.'] = 'Non riesco a trovare il profilo selezionato.';
|
||||
$a->strings['Contact updated.'] = 'Contatto aggiornato.';
|
||||
$a->strings['Failed to update contact record.'] = 'Errore aggiornando il contatto.';
|
||||
$a->strings['Contact has been '] = 'Il contatto è stato ';
|
||||
$a->strings['Contact has been '] = 'Il contatto è stato ';
|
||||
$a->strings['blocked'] = 'bloccato';
|
||||
$a->strings['unblocked'] = 'sbloccato';
|
||||
$a->strings['ignored'] = 'aggiunto ai contatti ignorati';
|
||||
$a->strings['unignored'] = 'rimosso dai contatti ignorati';
|
||||
$a->strings['stopped following'] = 'tolto dai seguiti';
|
||||
$a->strings['Contact has been removed.'] = 'Il contatto è stato rimosso.';
|
||||
$a->strings['Contact has been removed.'] = 'Il contatto è stato rimosso.';
|
||||
$a->strings['Contact not found.'] = 'Contatto non trovato.';
|
||||
$a->strings['Mutual Friendship'] = 'Reciproca amicizia';
|
||||
$a->strings['is a fan of yours'] = 'è un tuo fan';
|
||||
$a->strings['is a fan of yours'] = 'è un tuo fan';
|
||||
$a->strings['you are a fan of'] = 'sei un fan di';
|
||||
$a->strings['Contact Editor'] = 'Editor dei Contatti';
|
||||
$a->strings['Visit $name\'s profile'] = 'Visita il profilo di $name';
|
||||
|
@ -77,19 +77,19 @@ $a->strings['Visit '] = 'Visita ';
|
|||
$a->strings['\'s profile'] = 'profilo';
|
||||
$a->strings['Edit contact'] = 'Modifca contatto';
|
||||
$a->strings['Profile not found.'] = 'Profilo non trovato.';
|
||||
$a->strings['Response from remote site was not understood.'] = 'La risposta dal sito remota non è stata capita.';
|
||||
$a->strings['Response from remote site was not understood.'] = 'La risposta dal sito remota non è stata capita.';
|
||||
$a->strings['Unexpected response from remote site: '] = 'Risposta dal sito remoto inaspettata: ';
|
||||
$a->strings['Confirmation completed successfully.'] = 'Conferma completata con successo.';
|
||||
$a->strings['Remote site reported: '] = 'Il sito remoto riporta: ';
|
||||
$a->strings['Temporary failure. Please wait and try again.'] = 'Errore temporaneo. Attendi e riprova.';
|
||||
$a->strings['Introduction failed or was revoked.'] = 'La presentazione è fallita o è stata revocata.';
|
||||
$a->strings['Introduction failed or was revoked.'] = 'La presentazione è fallita o è stata revocata.';
|
||||
$a->strings['Unable to set contact photo.'] = 'Impossibile impostare la foto del contatto.';
|
||||
$a->strings['is now friends with'] = 'ora è amico di';
|
||||
$a->strings['is now friends with'] = 'ora è amico di';
|
||||
$a->strings['No user record found for '] = 'Nessun utente trovato per ';
|
||||
$a->strings['Our site encryption key is apparently messed up.'] = 'La nostra chiave di criptazione del sito e\' apparentemente incasinata.';
|
||||
$a->strings['Our site encryption key is apparently messed up.'] = 'La nostra chiave di criptazione del sito è apparentemente incasinata.';
|
||||
$a->strings['Empty site URL was provided or URL could not be decrypted by us.'] = 'E\' stato fornito un indirizzo vuoto o non possiamo decriptare l\'indirizzo.';
|
||||
$a->strings['Contact record was not found for you on our site.'] = 'Il contatto non è stato trovato sul nostro sito.';
|
||||
$a->strings['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['Contact record was not found for you on our site.'] = 'Il contatto non è stato trovato sul nostro sito.';
|
||||
$a->strings['The ID provided by your system is a duplicate on our system. It should work if you try again.'] = 'L\'ID fornito dal tuo sistema è duplicato sul nostro sistema. Dovrebbe funzionare se provi ancora.';
|
||||
$a->strings['Unable to set your contact credentials on our system.'] = 'Impossibile impostare le credenziali del tuo contatto sul nostro sistema.';
|
||||
$a->strings['Unable to update your contact profile details on our system'] = 'Impossibile aggiornare i dettagli del tuo contatto sul nostro sistema';
|
||||
$a->strings['Connection accepted at '] = 'Connessione accettata su ';
|
||||
|
@ -97,8 +97,8 @@ $a->strings['Administrator'] = 'Amministratore';
|
|||
$a->strings['New mail received at '] = 'Nuova mail ricevuta 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['This introduction has already been accepted.'] = 'Questa presentazione è già stata accettata.';
|
||||
$a->strings['Profile location is not valid or does not contain profile information.'] = 'La posizione del profilo non è valida o non contiene informazioni di profilo.';
|
||||
$a->strings['Warning: profile location has no identifiable owner name.'] = 'Attenzione: la posizione del profilo non ha un identificabile proprietario';
|
||||
$a->strings['Warning: profile location has no profile photo.'] = 'Attenzione: la posizione del profilo non ha una foto.';
|
||||
$a->strings[' required parameter'] = ' parametro richiesto';
|
||||
|
@ -117,7 +117,7 @@ $a->strings['You have already introduced yourself here.'] = 'Ti sei già present
|
|||
$a->strings['Apparently you are already friends with .'] = 'Apparentemente sei già amico con .';
|
||||
$a->strings['Invalid profile URL.'] = 'Indirizzo profilo invalido.';
|
||||
$a->strings['Disallowed profile URL.'] = 'Indirizzo profilo non permesso.';
|
||||
$a->strings['Your introduction has been sent.'] = 'La tua presentazione è stata inviata.';
|
||||
$a->strings['Your introduction has been sent.'] = 'La tua presentazione è stata inviata.';
|
||||
$a->strings['Please login to confirm introduction.'] = 'Accedi per confermare la presentazione.';
|
||||
$a->strings['Incorrect identity currently logged in. Please login to <strong>this</strong> profile.'] = 'Accesso con identà incorretta. Accedi a <strong>questo</strong> profilo.';
|
||||
$a->strings['[Name Withheld]'] = '[Nome Nascosto]';
|
||||
|
@ -140,7 +140,7 @@ $a->strings['Item not found.'] = 'Elemento non trovato.';
|
|||
$a->strings['Private Message'] = 'Messaggio privato';
|
||||
$a->strings['This is you'] = 'Questo sei tu';
|
||||
$a->strings['View $name\'s profile'] = 'Guarda il profilo di $name';
|
||||
$a->strings['Item has been removed.'] = 'L\'elemento è stato rimosso.';
|
||||
$a->strings['Item has been removed.'] = 'L\'elemento è stato rimosso.';
|
||||
$a->strings['The profile address specified does not provide adequate information.'] = 'L\'indirizzo del profilo specificato non fornisce adeguate informazioni';
|
||||
$a->strings['Limited profile. This person will be unable to receive direct/personal notifications from you.'] = 'Profilo limitato. Questa persona non sara\' in grado di ricevere nofiche dirette/personali da te.';
|
||||
$a->strings['Unable to retrieve contact information.'] = 'Impossibile recuperare informazioni sul contatto.';
|
||||
|
@ -148,7 +148,7 @@ $a->strings['following'] = 'segue';
|
|||
$a->strings['Group created.'] = 'Gruppo creato.';
|
||||
$a->strings['Could not create group.'] = 'Impossibile creare il gruppo.';
|
||||
$a->strings['Group not found.'] = 'Gruppo non trovato.';
|
||||
$a->strings['Group name changed.'] = 'Il nome del gruppo e\' cambiato.';
|
||||
$a->strings['Group name changed.'] = 'Il nome del gruppo è cambiato.';
|
||||
$a->strings['Membership list updated.'] = 'Lista adesioni aggiornata.';
|
||||
$a->strings['Group removed.'] = 'Gruppo rimosso.';
|
||||
$a->strings['Unable to remove group.'] = 'Impossibile rimuovere il gruppo.';
|
||||
|
@ -165,16 +165,16 @@ $a->strings['Submit'] = 'Invia';
|
|||
$a->strings['Could not find a command line version of PHP in the web server PATH.'] = 'Non riesco a trovare una versione da riga di comando di PHP nel PATH del server web';
|
||||
$a->strings['This is required. Please adjust the configuration file .htconfig.php accordingly.'] = 'E\' richiesto. Aggiorna il file .htconfig.php di conseguenza.';
|
||||
$a->strings['The command line version of PHP on your system does not have "register_argc_argv" enabled.'] = 'La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\".';
|
||||
$a->strings['This is required for message delivery to work.'] = 'Ció è richiesto per far funzionare la consegna dei messaggi.';
|
||||
$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione';
|
||||
$a->strings['This is required for message delivery to work.'] = 'Ciò è richiesto per far funzionare la consegna dei messaggi.';
|
||||
$a->strings['Error: the "openssl_pkey_new" function on this system is not able to generate encryption keys'] = 'Errore: la funzione \"openssl_pkey_new\" in questo sistema non è in grado di generare le chiavi di criptazione';
|
||||
$a->strings['If running under Windows, please see "http://www.php.net/manual/en/openssl.installation.php".'] = 'Se stai eseguendo friendika su windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\".';
|
||||
$a->strings['Error: Apache webserver mod-rewrite module is required but not installed.'] = 'Errore: il modulo mod-rewrite di Apache &egreve; richiesto ma non installato';
|
||||
$a->strings['Error: libCURL PHP module required but not installed.'] = 'Errore: il modulo libCURL di PHP è richiesto ma non installato.';
|
||||
$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato.';
|
||||
$a->strings['Error: openssl PHP module required but not installed.'] = 'Errore: il modulo openssl di PHP è richiesto ma non installato.';
|
||||
$a->strings['Error: mysqli PHP module required but not installed.'] = 'Errore: il modulo mysqli di PHP è richiesto ma non installato';
|
||||
$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'L\'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.';
|
||||
$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'Ció è dovuto spesso a impostazioni di permessi, dato che il web server puo\' scrivere il file nella tua cartella, anche se tu puoi.';
|
||||
$a->strings['Error: libCURL PHP module required but not installed.'] = 'Errore: il modulo libCURL di PHP è richiesto ma non installato.';
|
||||
$a->strings['Error: GD graphics PHP module with JPEG support required but not installed.'] = 'Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato.';
|
||||
$a->strings['Error: openssl PHP module required but not installed.'] = 'Errore: il modulo openssl di PHP è richiesto ma non installato.';
|
||||
$a->strings['Error: mysqli PHP module required but not installed.'] = 'Errore: il modulo mysqli di PHP è richiesto ma non installato';
|
||||
$a->strings['The web installer needs to be able to create a file called ".htconfig.php" in the top folder of your web server and it is unable to do so.'] = 'L\'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.';
|
||||
$a->strings['This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can.'] = 'Ciò è dovuto spesso a impostazioni di permessi, dato che il web server puo\' scrivere il file nella tua cartella, anche se tu puoi.';
|
||||
$a->strings['Please check with your site documentation or support people to see if this situation can be corrected.'] = 'Controlla la documentazione del tuo sito o con il personale di suporto se la situazione puo\' essere corretta.';
|
||||
$a->strings['If not, you may be required to perform a manual installation. Please see the file "INSTALL.txt" for instructions.'] = 'Altrimenti dovrai procedere con l\'installazione manuale. Guarda il file \"INSTALL.txt\" per istuzioni';
|
||||
$a->strings['The database configuration file ".htconfig.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.'] = 'Il file di configurazione del database \".htconfig.php\" non puo\' essere scritto. Usa il testo qui di seguito per creare un file di configurazione nella cartella principale del tuo sito.';
|
||||
|
@ -188,7 +188,6 @@ $a->strings['Send invitations'] = 'Invia inviti';
|
|||
$a->strings['Enter email addresses, one per line:'] = 'Inserisci gli indirizzi email, uno per riga:';
|
||||
$a->strings['Your message:'] = 'Il tuo messaggio:';
|
||||
$a->strings['Please join my social network on '] = 'Unisciti al mio social network su ';
|
||||
$a->strings['\r\n'] = '\r\n';
|
||||
$a->strings['To accept this invitation, please visit:'] = 'Per accettare questo invito visita:';
|
||||
$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.';
|
||||
|
@ -227,7 +226,7 @@ $a->strings['Message not available.'] = 'Messaggio non disponibile.';
|
|||
$a->strings['Delete message'] = 'Cancella messaggio';
|
||||
$a->strings['Send Reply'] = 'Invia risposta';
|
||||
$a->strings['No such group'] = 'Nessun gruppo';
|
||||
$a->strings['Group is empty'] = 'Il gruppo è vuoto';
|
||||
$a->strings['Group is empty'] = 'Il gruppo è vuoto';
|
||||
$a->strings['Group: '] = 'Gruppo: ';
|
||||
$a->strings['Invalid request identifier.'] = 'Identificativo richiesta invalido.';
|
||||
$a->strings['Discard'] = 'Scarta';
|
||||
|
@ -252,7 +251,7 @@ $a->strings['Profile Photos'] = 'Foto del profilo';
|
|||
$a->strings['Album not found.'] = 'Album non trovato.';
|
||||
$a->strings['Delete Album'] = 'Elimina album';
|
||||
$a->strings['Delete Photo'] = 'Elimina foto';
|
||||
$a->strings['was tagged in a'] = 'è stato taggato in';
|
||||
$a->strings['was tagged in a'] = 'è stato taggato in';
|
||||
$a->strings['by'] = 'da';
|
||||
$a->strings['Image exceeds size limit of '] = 'L\'immagine supera il limite di dimensione di ';
|
||||
$a->strings['Unable to process image.'] = 'Impossibile elaborare l\'immagine.';
|
||||
|
@ -277,45 +276,45 @@ $a->strings['Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #cam
|
|||
$a->strings['Recent Photos'] = 'Foto recenti';
|
||||
$a->strings['Upload New Photos'] = 'Carica nuova foto';
|
||||
$a->strings['View Album'] = 'Vedi album';
|
||||
$a->strings['Image uploaded but image cropping failed.'] = 'Immagine caricata ma il ritaglio è fallito.';
|
||||
$a->strings['Image uploaded but image cropping failed.'] = 'Immagine caricata ma il ritaglio è fallito.';
|
||||
$a->strings['Image size reduction [175] failed.'] = 'Riduzione dimensioni immagine [175] fallito.';
|
||||
$a->strings['Image size reduction [80] failed.'] = 'Riduzione dimensioni immagine [80] fallito.';
|
||||
$a->strings['Image size reduction [48] failed.'] = 'Riduzione dimensioni immagine [48] fallito.';
|
||||
$a->strings['Unable to process image'] = 'Impossibile elaborare l\'immagine';
|
||||
$a->strings['Image uploaded successfully.'] = 'Immagine caricata con successo.';
|
||||
$a->strings['Image size reduction [640] failed.'] = 'Riduzione dimensioni immagine [640] fallito.';
|
||||
$a->strings['Profile Name is required.'] = 'Il Nome Profilo è richiesto .';
|
||||
$a->strings['Profile Name is required.'] = 'Il Nome Profilo è richiesto .';
|
||||
$a->strings['Profile updated.'] = 'Profilo aggiornato.';
|
||||
$a->strings['Profile deleted.'] = 'Profilo elminato.';
|
||||
$a->strings['Profile-'] = 'Profilo-';
|
||||
$a->strings['New profile created.'] = 'Nuovo profilo creato.';
|
||||
$a->strings['Profile unavailable to clone.'] = 'Impossibile duplicare il plrofilo.';
|
||||
$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.';
|
||||
$a->strings['Age: '] = 'Età: ';
|
||||
$a->strings['This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.'] = 'Questo è il tuo profilo <strong>publico</strong>.<br /><strong>Potrebbe</strong> essere visto da chiunque attraverso internet.';
|
||||
$a->strings['Age: '] = 'Età : ';
|
||||
$a->strings['Please enter the required information.'] = 'Inserisci le informazioni richieste.';
|
||||
$a->strings['Please use a shorter name.'] = 'Usa un nome più corto.';
|
||||
$a->strings['Name too short.'] = 'Il Nome è troppo corto.';
|
||||
$a->strings['Name too short.'] = 'Il Nome è troppo corto.';
|
||||
$a->strings['That doesn\'t appear to be your full (First Last) name.'] = 'Questo non sembra essere il tuo nome completo (Nome Cognome).';
|
||||
$a->strings['Your email domain is not among those allowed on this site.'] = 'Il dominio della tua email non è tra quelli autorizzati su questo sito.';
|
||||
$a->strings['Your email domain is not among those allowed on this site.'] = 'Il dominio della tua email non è tra quelli autorizzati su questo sito.';
|
||||
$a->strings['Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.'] = 'Il tuo \"soprannome\" puo\' contenere solo \"a-z\", \"0-9\", \"-\", e \"_\", e deve cominciare con una lettera.';
|
||||
$a->strings['Nickname is already registered. Please choose another.'] = 'Soprannome già registrato. Scegline un\'altro.';
|
||||
$a->strings['SERIOUS ERROR: Generation of security keys failed.'] = 'ERRORE GRAVE: Generazione delle chiavi di sicurezza fallito.';
|
||||
$a->strings['An error occurred during registration. Please try again.'] = 'Si è verificato un errore durante la registrazione. Prova ancora.';
|
||||
$a->strings['An error occurred creating your default profile. Please try again.'] = 'Si è verificato un errore creando il tuo profilo. Prova ancora.';
|
||||
$a->strings['An error occurred during registration. Please try again.'] = 'Si è verificato un errore durante la registrazione. Prova ancora.';
|
||||
$a->strings['An error occurred creating your default profile. Please try again.'] = 'Si è verificato un errore creando il tuo profilo. Prova ancora.';
|
||||
$a->strings['Registration details for '] = 'Dettagli registrazione per ';
|
||||
$a->strings['Registration successful. Please check your email for further instructions.'] = 'Registrazione completata. Controlla la tua mail per ulteriori informazioni.';
|
||||
$a->strings['Failed to send email message. Here is the message that failed.'] = 'Errore inviando il messaggio email. Questo è il messaggio non inviato.';
|
||||
$a->strings['Failed to send email message. Here is the message that failed.'] = 'Errore inviando il messaggio email. Questo è il messaggio non inviato.';
|
||||
$a->strings['Your registration can not be processed.'] = 'La tua registrazione non puo\' essere elaborata.';
|
||||
$a->strings['Registration request at '] = 'Registrazione richiesta il ';
|
||||
$a->strings['Your registration is pending approval by the site owner.'] = 'La tua richiesta è in attesa di approvazione da parte del prorietario del sito.';
|
||||
$a->strings['Your registration is pending approval by the site owner.'] = 'La tua richiesta è in attesa di approvazione da parte del prorietario del sito.';
|
||||
$a->strings['You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \'Register\'.'] = 'Puoi (opzionalmento) riempire questa maschera via OpenID inserendo il tuo OpenID e cliccando \'Registra\'.';
|
||||
$a->strings['If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.'] = 'Se non hai familiarità con OpenID, lascia quel campo in bianco e riempi il resto della maschera.';
|
||||
$a->strings['Your OpenID (optional): '] = 'Il tuo OpenID (opzionale): ';
|
||||
$a->strings['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['Registration'] = 'Registrazione';
|
||||
$a->strings['Your Full Name (e.g. Joe Smith): '] = 'Il tuo Nome Completo (p.e. Mario Rossi): ';
|
||||
$a->strings['Your Email Address: '] = 'Il tuo Indirizzo Email: ';
|
||||
$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'] = 'Scegli un soprannome per il profilo. Deve cominciare con una lettera. L\'identificativo globale del tuo profilo sarà \'<strong>soprannome@$sitename</strong>\'.';
|
||||
$a->strings['Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'] = 'Scegli un soprannome per il profilo. Deve cominciare con una lettera. L\'identificativo globale del tuo profilo sarà \'<strong>soprannome@$sitename</strong>\'.';
|
||||
$a->strings['Choose a nickname: '] = 'Scegli un soprannome: ';
|
||||
$a->strings['Register'] = 'Regitrati';
|
||||
$a->strings['Please login.'] = 'Accedi.';
|
||||
|
@ -326,7 +325,7 @@ $a->strings['Passwords do not match. Password unchanged.'] = 'Le password non co
|
|||
$a->strings['Empty passwords are not allowed. Password unchanged.'] = 'Password vuote non sono consentite. Password non cambiata.';
|
||||
$a->strings['Password changed.'] = 'Password cambiata.';
|
||||
$a->strings['Password update failed. Please try again.'] = 'Aggiornamento password fallito. Prova ancora.';
|
||||
$a->strings[' Please use a shorter name.'] = ' Usa un nome più corto.';
|
||||
$a->strings[' Please use a shorter name.'] = ' Usa un nome più corto.';
|
||||
$a->strings[' Name too short.'] = ' Nome troppo corto.';
|
||||
$a->strings[' Not valid email.'] = ' Email non valida.';
|
||||
$a->strings['Settings updated.'] = 'Impostazioni aggiornate.';
|
||||
|
@ -334,8 +333,8 @@ $a->strings['Plugin Settings'] = 'Impostazioni Plugin';
|
|||
$a->strings['Account Settings'] = 'Impostazioni Account';
|
||||
$a->strings['No Plugin settings configured'] = 'Nessuna impostazione Plugin configurata';
|
||||
$a->strings['OpenID: '] = 'OpenID: ';
|
||||
$a->strings[' (Optional) Allow this OpenID to login to this account.'] = ' (Opzionale) Permetti a questo OpenID di accedere a questo account.';
|
||||
$a->strings['Profile is <strong>not published</strong>.'] = 'Il profilo <strong>non è pubblicato</strong>.';
|
||||
$a->strings[' (Optional) Allow this OpenID to login to this account.'] = ' (Opzionale) Permetti a questo OpenID di accedere a questo account.';
|
||||
$a->strings['Profile is <strong>not published</strong>.'] = 'Il profilo <strong>non è pubblicato</strong>.';
|
||||
$a->strings['Default Post Permissions'] = 'Permessi di default per i messaggi';
|
||||
$a->strings['Tag removed'] = 'TAg rimosso';
|
||||
$a->strings['Remove Item Tag'] = 'Rimuovi tag dall\'elemento';
|
||||
|
@ -355,7 +354,7 @@ $a->strings['OK, probably harmless'] = 'E\' ok, probabilmente innocuo';
|
|||
$a->strings['Reputable, has my trust'] = 'Rispettabile, ha la mia fiducia';
|
||||
$a->strings['Frequently'] = 'Frequentemente';
|
||||
$a->strings['Hourly'] = 'Ogni ora';
|
||||
$a->strings['Twice daily'] = 'Due volte al dì';
|
||||
$a->strings['Twice daily'] = 'Due volte al dì';
|
||||
$a->strings['Daily'] = 'Giornalmente';
|
||||
$a->strings['Weekly'] = 'Settimanalmente';
|
||||
$a->strings['Monthly'] = 'Mensilmente';
|
||||
|
@ -1003,11 +1002,11 @@ $a->strings['UTC'] = 'UTC';
|
|||
$a->strings['W-SU'] = 'W-SU';
|
||||
$a->strings['WET'] = 'WET';
|
||||
$a->strings['Zulu'] = 'Zulu';
|
||||
$a->strings['Monday'] = 'Lunedì';
|
||||
$a->strings['Tuesday'] = 'Martedì';
|
||||
$a->strings['Wednesday'] = 'Mercoledì';
|
||||
$a->strings['Thursday'] = 'Giovedì';
|
||||
$a->strings['Friday'] = 'Venedrì';
|
||||
$a->strings['Monday'] = 'Lunedì';
|
||||
$a->strings['Tuesday'] = 'Martedì';
|
||||
$a->strings['Wednesday'] = 'Mercoledì';
|
||||
$a->strings['Thursday'] = 'Giovedì';
|
||||
$a->strings['Friday'] = 'Venerdì';
|
||||
$a->strings['Saturday'] = 'Sabato';
|
||||
$a->strings['Sunday'] = 'Domenica';
|
||||
$a->strings['January'] = 'Gennaio';
|
||||
|
@ -1031,4 +1030,6 @@ $a->strings['Invalid OpenID url'] = 'Url OpenID non valido';
|
|||
$a->strings['Cannot use that email.'] = 'Questa email non si puo\' usare.';
|
||||
$a->strings['Normal View'] = 'Vista normale';
|
||||
$a->strings['New Item View'] = 'Vista Nuovi Elementi';
|
||||
$a->strings[' Cannot change to that email.'] = 'Non puoi cambiare a quella email.';
|
||||
$a->strings['Birthday:'] = 'Compleanno:';
|
||||
?>
|
||||
|
|
Ładowanie…
Reference in New Issue