Fraenkiman 7d8386a209 ...Use of PrettyURLs
- As a result of 85e100c removed reference to the PrettyURLs plugin from the setup language files.
- The PrettyURLs panel now contains a note on the server software used
2023-12-26 04:26:36 +01:00

39 lines
1.9 KiB
PHP

<?php
$lang ['plugin'] ['prettyurls'] ['errors'] = array (
-2 => 'Non è possibile trovare o creare un file <code>.htaccess</code> nella tua cartella ' . //
'root. PrettyURLs potrebbe non funzionare correttamente, vai al pannello di controllo.'
);
$lang ['admin'] ['plugin'] ['submenu'] ['prettyurls'] = 'Configurazione di PrettyURLs';
$lang ['admin'] ['plugin'] ['prettyurls'] = array(
'head' => 'Configurazione di PrettyURLs',
'description1' => 'Qui è possibile trasformare gli URL standard di FlatPress in URL belli e SEO-friendly.',
'htaccess' => '.htaccess',
'description2' => 'Questo editor consente di modificare direttamente il file <code>.htaccess</code> necessario per il plugin PrettyUrls.<br>' . //
'<strong>Nota:</strong> Solo i server web compatibili con NCSA, come Apache, riconoscono il concetto di file .htaccess. ' . //
'Il software del server è: <strong>' . $_SERVER["SERVER_SOFTWARE"] . '</strong>',
'cantsave' => 'Non puoi modificare questo file, perché non è <strong>scrivibile</strong>. Puoi dargli i permessi di scrittura o copiarlo e incollarlo in un file e poi caricarlo.',
'mode' => 'Modalità',
'auto' => 'Automatica',
'autodescr' => 'prova a cercare la migliore scelta per me',
'pathinfo' => 'Informazioni sul percorso',
'pathinfodescr' => 'ad es. /index.php/2011/01/01/hello-world/',
'httpget' => 'HTTP Get',
'httpgetdescr' => 'ad es. /?u=/2011/01/01/hello-world/',
'pretty' => 'Pretty',
'prettydescr' => 'ad es. /2011/01/01/hello-world/',
'saveopt' => 'Salva le impostazioni',
'submit' => 'Salva .htaccess'
);
$lang ['admin'] ['plugin'] ['prettyurls'] ['msgs'] = array(
1 => '.htaccess è stato salvato con successo',
-1 => '.htaccess non può essere salvato (hai i permessi di scrittura su <code>' . BLOG_ROOT . '</code>)?',
2 => 'Impostazioni salvate con successo',
-2 => 'Si è verificato un errore durante il salvataggio delle impostazioni'
);
?>