https://www.icyphoenix.com/viewtopic.php?f=37&t=5244&p=35253#p35253
-----------------------------------
Lopalong
Thu 01 Jan, 2009 04:14

Translators Required - New Active-Member-URLs-Only
-----------------------------------
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_active_member_urls_only.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_active_member_urls_only.php
* @copyright (c) (Kevin Nelson) http://www.flashfiredesigns.com/
* @email: calamus77 < 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 Active-Member-URLs-Only 
// START Active-Member-URLs-Only Admin

	'url_post_settings' => 'URL Posting Restrictions',
	'url_post_days' => 'Required Days of Membership',
	'url_post_days_explain' => 'Number of days before users can post URLs.<br />Set to <strong>0</strong> to disable this function.',
	'url_post_posts' => 'Required Number of Posts.',
	'url_post_posts_explain' => 'Number of posts before URLs are allowed.<br />Set to <strong>0</strong> to disable this function',

// END Active-Member-URLs-Only Admin
// START Active-Member-URLs-Only Front End

	'url_active_only_message' => 'In order to try to prevent spammers, we do not allow our users to post URLs in any form until they have posted at least %d legitimate posts and have been with us for more than %d days.  We appreciate your understanding in this matter in order to help us eliminate spam from this forum. If you have somehow received this message even though you meet both of the criteria, please let us know ASAP.<br /><br />Thanks!',

// END Active-Member-URLs-Only Front End
// END Active-Member-URLs-Only

	)
);
?>
[/code][/spoiler]


