[ABD] Unsubcribe User (User can delete his account in UCP)

Any abandoned MODs will be moved to this forum.

WARNING: MODs in this forum are not currently being supported or maintained by the original MOD author. Proceed at your own risk.
Forum rules
IMPORTANT: MOD Development Forum rules

WARNING: MODs in this forum are not currently being supported nor updated by the original MOD author. Proceed at your own risk.
SLAMO
Registered User
Posts: 15
Joined: Wed Apr 09, 2008 9:54 am

Re: [BETA] Unsubcribe User (User can delete his account in U

Post by SLAMO »

Thanks ;)
User avatar
@Marcin
Registered User
Posts: 20
Joined: Wed Feb 01, 2012 12:05 pm
Location: Milton Keynes
Name: Marcin

Re: [BETA] Unsubcribe User (User can delete his account in U

Post by @Marcin »

Polish language files: download ;)
User avatar
salvocortesiano
Registered User
Posts: 286
Joined: Mon Mar 22, 2010 1:49 pm
Location: Florence (Italy)
Name: Salvo Cortesiano

Re: [BETA] Unsubcribe User (User can delete his account in U

Post by salvocortesiano »

Italian language ;)

info_ucp_unsubcribe.php

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',
));

?>
permissions_unsubcribe.php

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'),
));
?>
unsubcribe.php

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!',
));

?>
Download:
Italian
The best way to predict the future is to invent it!
Image
User avatar
RMcGirr83
Former Team Member
Posts: 22105
Joined: Wed Jun 22, 2005 4:33 pm
Location: Your display
Name: Rich McGirr

Re: [BETA] Unsubcribe User (User can delete his account in U

Post by RMcGirr83 »

This topic has been marked as [ABD] - Abandoned as the mod author has not been active recently. If the MOD author wishes to continue development, please PM anyone on the MOD Team to request this topic be unlocked.

Notice!
We do not recommend that a user of the phpBB software install this mod, or any other mod that is marked as “abandoned” or “in development”, on a live forum. Doing so may cause your forum to not perform in the manner it should.


Thank you,
The phpBB Modifications Team
Former Modifications/Extensions Team Member | My extensions | github | All requests for support via PM will be ignored
Appreciate the extensions/mods/support then you can support me by buying a beer 🍺

Return to “[3.0.x] Abandoned MODs”