https://www.icyphoenix.com/viewtopic.php?f=37&t=5243&p=35251#p35251
-----------------------------------
Lopalong
Thu 01 Jan, 2009 01:55

Translators Required - New Security Question Mod
-----------------------------------
Thanks People,

I'm working on converting MODS for the next release of Icy Phoenix, and appreciate all the help I can get by adding various lang files before release.

If you want to help, it would also be appreciated if you named the file [b]lang_extend_security_question.php[/b] and upload your translation as a .zip file to avoid any possible Encoding Errors. ;)

Thanks!  :mricy: 

[spoiler][code linenumbers=false]
<?php

/**
*
* @package Icy Phoenix Modifications
* @File $Id: lang_extend_security_question.php
* @copyright (c) (James Newcombe) http://www.photosbyjames.net
* @email: James N <n/a>
* @license: http://opensource.org/licenses/gpl-license.php GNU Public License
*/

/**
*
* @Extra credits for this file
* Modified for Icy Phoenix by Lopalong - 01-January-2009
*
*/

// ------------[ Contributors ]-------------------
//
// Translated to "??" by "??"
// Website: "??"
//

if (!defined('IN_ICYPHOENIX'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

$lang = array_merge($lang, array(

// START Security Question

// START Security Question Admin
	'security_question' => 'Security Question',
	'security_question_explain' => 'Anti Spam / Robot Security Question',
	'security_answer' => 'Security Answer',
	'security_answer_explain' => 'Anti Spam / Robot Security Answer',
// END Security Question Admin

// START Security Question Front End
	'securityquestion_invalid' => 'Sorry, but your Anti-Spam answer is NOT correct.<br />Please try registering again.',
	'securityquestion' => 'Please answer the following question: *<br /><strong>%s</strong>',
	'securityquestion_explain' => 'To help prevent spam.',
// END Security Question Front End

// END Security Question
	)
);

?>[/code][/spoiler]


