
Code: Select all
<?php
/**
*
* posting [Italiano]
* @translation by Salvo Cortesiano
*
* @package language
* @version $Id: unsubcribe.php,v 0.1.2 2008/03/18 18:22:12 tas2580 Exp $
* @copyright (c) SEO phpBB http://www.seo-phpbb.org
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'UNSUBCRIBE_USER' => 'Elimina Account',
));
?>
Code: Select all
<?php
/**
*
* posting [Italiano]
* @translation by Salvo Cortesiano
*
* @package language
* @version $Id: permissions_unsubcribe.php,v 0.1.2 2008/03/18 18:22:12 tas2580 Exp $
* @copyright (c) SEO phpBB http://www.seo-phpbb.org
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
// Adding new category
// Adding the permissions
$lang = array_merge($lang, array(
'acl_u_unsubcribe_del' => array('lang' => 'Può eliminare i propri messaggi quando elimina il proprio account', 'cat' => 'profilo'),
));
?>
Code: Select all
<?php
/**
*
* posting [Italiano]
* @translation by Salvo Cortesiano
*
* @package language
* @version $Id: unsubcribe.php,v 0.1.2 2008/03/18 18:22:12 tas2580 Exp $
* @copyright (c) SEO phpBB http://www.seo-phpbb.org
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array(
'USER_DELETED' => 'L\'account utente è stato cancellato con successo!',
'UNSUBCRIBE_USER_TXT' => 'Qui puoi cancellare il tuo accont. Nota che una volta cancellato il tuo account non potrai più recuperarlo.',
'DEL_POSTINGS' => 'Trattieni i messaggi',
'DEL_POSTINGS_DESC' => 'Scegli tra i tuoi messaggi quali trattenere.',
'DEL_POST' => 'Elimina i miei messaggi',
'KEEP_POST' => 'Mantieni i miei messaggi come ospiste',
'CURRENT_PASSWORD_DESC' => 'Inserisci la tua password per confermare la cancellazione del tuo account',
'LOG_USER_DELETED' => 'L\'utente ha cancellato il proprio account',
'USER_REALY_DEL' => 'Conferma cancellazione',
'UNSUBCRIBE_USER' => 'Elimina utente',
'UNSUBCRIBE_USER_DESC' => 'Confermare che si desidera eliminare il proprio account',
'USER_NOT_DELETED' => '<b> ERRORE !!!</ b> L\'account non può essere cancellato! <br /> Inserire la password corretta per confermare!',
));
?>