mirror of
https://github.com/scratchfoundation/swiki-confirmaccount.git
synced 2024-12-04 21:01:02 -05:00
fixed an installation glitch
This commit is contained in:
parent
8768a7ae96
commit
60576cf843
2 changed files with 100 additions and 81 deletions
|
@ -1,7 +1,8 @@
|
|||
<?php
|
||||
/*
|
||||
(c) Aaron Schulz 2007, GPL
|
||||
|
||||
/*
|
||||
|
||||
(c) Aaron Schulz 2007, GPL
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
|
@ -16,6 +17,7 @@
|
|||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
http://www.gnu.org/copyleft/gpl.html
|
||||
|
||||
*/
|
||||
|
||||
if ( !defined( 'MEDIAWIKI' ) ) {
|
||||
|
@ -36,9 +38,11 @@ require( dirname( __FILE__ ) . '/ConfirmAccount.config.php' );
|
|||
|
||||
# Define were PHP files and i18n files are located
|
||||
require( dirname( __FILE__ ) . '/ConfirmAccount.setup.php' );
|
||||
|
||||
ConfirmAccountSetup::defineSourcePaths( $wgAutoloadClasses, $wgExtensionMessagesFiles );
|
||||
|
||||
# Define JS/CSS modules and file locations
|
||||
require( dirname( __FILE__ ) . '/frontend/ConfirmAccountUI.setup.php' );
|
||||
ConfirmAccountUISetup::defineResourceModules( $wgResourceModules );
|
||||
|
||||
# Let some users confirm account requests and view credentials for created accounts
|
||||
|
@ -66,16 +70,22 @@ $wgHooks['LoadExtensionSchemaUpdates'][] = 'ConfirmAccountUpdaterHooks::addSchem
|
|||
$wgExtensionFunctions[] = 'efLoadConfirmAccount';
|
||||
|
||||
/**
|
||||
|
||||
* This function is for setup that has to happen in Setup.php
|
||||
* when the functions in $wgExtensionFunctions get executed.
|
||||
* @return void
|
||||
|
||||
*/
|
||||
|
||||
function efLoadConfirmAccount() {
|
||||
global $wgEnableEmail;
|
||||
|
||||
# This extension needs email enabled!
|
||||
# Otherwise users can't get their passwords...
|
||||
if ( !$wgEnableEmail ) {
|
||||
|
||||
/*if ( !$wgEnableEmail ) {
|
||||
echo "ConfirmAccount extension requires \$wgEnableEmail set to true.\n";
|
||||
exit( 1 ) ;
|
||||
}
|
||||
}*/
|
||||
}
|
||||
|
||||
|
|
|
@ -1123,6 +1123,15 @@ Este código de confirmación caducará el $4.',
|
|||
La dirección de correo electrónico ha sido confirmada. Puedes confirmar la solicitud aquí "$2".',
|
||||
'acct_request_throttle_hit' => 'Perdón, ya has solicitado {{PLURAL:$1|1 cuenta|$1 cuentas}}.
|
||||
No puedes hacer ninguna otra solicitud.',
|
||||
|
||||
//Scratch-specific stuff
|
||||
'requestaccount-user-verification' => 'Verificion de usuario',
|
||||
'requestaccount-code-troubleshoot' => '\'\'\'Aviso:\'\'\' Si tienes problemas con el sistema de verificacion, por favor lee la [[Scratch_Wiki:Become a contributor/Verification code troubleshooting|pagina de soluciones]].',
|
||||
'requestaccount-set-pwd' => 'Decide la contrasena',
|
||||
'requestaccount-project-info' => 'Por favor ve al [$1 proyecto de verificacion] y comenta el codigo siguiente:<br />\'\'\'$2\'\'\'',
|
||||
'requestaccount-project-link' => 'http://scratch.mit.edu/projects/10135908/',
|
||||
'requestaccount-nocomment-error' => 'No aparece como hayas comentado el codigo.',
|
||||
'requestaccount-api-failed' => 'Estamos teniendo problemas con el servidor. Por favor trata de registrarte otra vez en un tiempo diferente.',
|
||||
);
|
||||
|
||||
/** Estonian (eesti)
|
||||
|
|
Loading…
Reference in a new issue