##############################################################
## MOD Title: Expire Unactivated Accounts By Timeframe
## MOD Author: harknell < harknell@onezumi.com > (Harknell) http://www.onezumi.com
## MOD Description: Permite al administrador eliminar cuentas inactivas en un periodo de tiempo que el establezca
## MOD Version: 1.0.0
## MOD Traduction: Zuker - http://www.eddb.com.ar
##
## Installation Level: 	Easy
## Installation Time: 	3 Minutes
## Files To Edit: 	language/lang_english/lang_admin.php
##
## Included Files: 	admin/admin_expire_unactivated.php
##			templates/subSilver/admin/board_expire_accounts.tpl
##
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:	The most annoying part of running a forum is dealing with the spammers that constantly try to use
##			your site for their Google rank. I end up deleting a ton of their accounts, even with adequate
##			anti-bot stuff, they're now using more real people to create accounts. In most cases the accounts
##			are created with fake email address with no intention of ever being activated. This mod makes
##			it easy for an admin to simply blow away any of these unactivated accounts on their forum and clean things
##			up on a periodic basis.
##
##############################################################
## MOD History:
##
##   2006-09-24 - Version 1.0.0
##      - intial release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
############################################################## 

#
#-----[ COPY ]------------------------------------------
#
copy root/admin_expire_unactivated.php to admin/admin_expire_unactivated.php
copy root/board_expire_accounts.tpl to templates/subSilver/admin/board_expire_accounts.tpl

#
#-----[ OPEN ]------------------------------------------------
#
language/lang_spanish/lang_admin.php

#
#-----[ FIND ]------------------------------------------------
#
$lang['Restore_DB']

#
#-----[ AFTER, ADD ]----------------------------------------
#
// Expire Unactivated Accounts By Timeframe Mod addition
$lang['Expire'] = 'Eliminacin de cuentas inactivas';

#
#-----[ FIND ]------------------------------------------------
#
$lang['User_special_explain']

#
#-----[ AFTER, ADD ]----------------------------------------
#
// Expire Unactivated Accounts By Timeframe Mod addition
$lang['expire_account_title'] = 'Sistema de eliminacin de cuentas inactivas';
$lang['expire_explain'] = 'Selecciones el rango de tiempo mediante el cual usted querr eliminar las cuentas sin activar en ese periodo. Toda cuenta registrada antes de la fecha seleccionada ser eliminada de la base da datos. <b>Peligro</b>: Una vez realizado esto, no puede ser vuelto atras.';
$lang['expire_choose'] = 'Deseo eliminar todas las cuentas inactivas que se hayan registrado antes de:';
$lang['expire_select_value'] = 'Seleccionar rango de tiempo';
$lang['expire_one_hour'] = 'Una hora atrs';
$lang['expire_one_day'] = 'Un da atrs';
$lang['expire_one_week'] = 'Una semana atrs';
$lang['expire_one_month'] = 'Un ms atrs';
$lang['accounts_expired'] = 'Las cuentas fueron borradas correctamente';
$lang['noexpired_accounts'] = 'No se ha seleccionado un rango de tiempo, ninguna cuenta fue borrada.';
$lang['return_expired_accounts'] = 'Click %sAqu%s para regresar al men de eliminacin de cuentas inactivas';

#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM