Changeset 8560

Show
Ignore:
Timestamp:
01/05/10 18:44:11 (3 years ago)
Author:
p_lindheimer
Message:

Merged revisions 7771-7912,7914-8559 via svnmerge from
http://svn.freepbx.org/freepbx/branches/2.5

........

r7782 | mickecarlsson | 2009-05-30 11:32:36 -0700 (Sat, 30 May 2009) | 1 line


Adds charset and emailsubject to vm_email.inc so that the text can be localized using utf-8

........

r7808 | mickecarlsson | 2009-06-09 22:14:19 -0700 (Tue, 09 Jun 2009) | 1 line


Fixed spelling errors

........

r7813 | mickecarlsson | 2009-06-13 14:58:27 -0700 (Sat, 13 Jun 2009) | 1 line


Fixes #3375 set expiration time for the language cookie to one year

........

r7818 | mickecarlsson | 2009-06-14 08:59:00 -0700 (Sun, 14 Jun 2009) | 1 line


Fixed spelling error in Swedish translation for core

........

r7902 | mickecarlsson | 2009-07-29 09:26:59 -0700 (Wed, 29 Jul 2009) | 1 line


Closes #3699, adds Ukranian language to ARI. Thank you Oleh

........

r7912 | p_lindheimer | 2009-08-02 18:44:47 -0700 (Sun, 02 Aug 2009) | 1 line


allow freepbx_debug to print objects also

........

r7914 | p_lindheimer | 2009-08-02 18:48:28 -0700 (Sun, 02 Aug 2009) | 3 lines


Initialized merge tracking via "svnmerge" with revisions "1-7913" from
http://svn.freepbx.org/freepbx/branches/2.6

........

r8119 | mickecarlsson | 2009-08-24 12:37:31 -0700 (Mon, 24 Aug 2009) | 1 line


Fixed spelling error

........

r8120 | mickecarlsson | 2009-08-24 12:39:12 -0700 (Mon, 24 Aug 2009) | 1 line


Closes #3756 updated French language for amp. Thank you medialsace

........

r8161 | mickecarlsson | 2009-08-25 11:47:28 -0700 (Tue, 25 Aug 2009) | 1 line


Closes 3707 removes unnecessary debug output of static information

........

r8300 | p_lindheimer | 2009-09-05 18:55:46 -0700 (Sat, 05 Sep 2009) | 1 line


update 2.5 to jQuery 1.3.2

........

r8301 | p_lindheimer | 2009-09-05 18:56:54 -0700 (Sat, 05 Sep 2009) | 1 line


update jQuery in view

........

r8302 | p_lindheimer | 2009-09-05 18:58:21 -0700 (Sat, 05 Sep 2009) | 1 line


update libreepbx.javascript.js with update jQuery, and build tool

........

r8315 | p_lindheimer | 2009-09-05 19:36:02 -0700 (Sat, 05 Sep 2009) | 1 line


Auto checkin packed libfreepbx.javascripts.js as part of build process

........

r8316 | p_lindheimer | 2009-09-05 19:36:11 -0700 (Sat, 05 Sep 2009) | 1 line


Creating release 2.5.2

........

r8348 | p_lindheimer | 2009-09-08 15:55:32 -0700 (Tue, 08 Sep 2009) | 1 line


created 2.5.2 in wrong branch, adding it 2.5 so properly version info is returned

........

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk

    • Property svnmerge-integrated changed from /freepbx/branches/2.5:1-7770 to /freepbx/branches/2.5:1-8559
  • freepbx/trunk/amp_conf/agi-bin/phpagi.php

    r5007 r8560  
    213213      } 
    214214 
    215       $this->conlog('PHPAGI internal configuration:'); 
    216       $this->conlog(print_r($this->config, true)); 
     215// Next two lines where removed 2009-08-25 due to unneccesary output when setting "core set verbose 3" or higher in Asterisk. 
     216// 
     217//    $this->conlog('PHPAGI internal configuration:'); 
     218//    $this->conlog(print_r($this->config, true)); 
    217219 
    218220// Enable for debuggin purposes 
  • freepbx/trunk/amp_conf/astetc/vm_email.inc

    r1253 r8560  
     1; To be able to localize text in the email by using utf-8 characters you can remove the remark so that the charset will be utf-8 
     2; charset=utf-8 
     3; To change the email subject uncomment the next line and add whatever text you want. 
     4; emailsubject=New voicemail from ${VM_CALLERID} arrived 
    15; Change the email body, variables: VM_NAME, VM_DUR, VM_MSGNUM, VM_MAILBOX, VM_CALLERID, VM_DATE 
    2  
    36emailbody=${VM_NAME},\n\nThere is a new voicemail in mailbox ${VM_MAILBOX}:\n\n\tFrom:\t${VM_CALLERID}\n\tLength:\t${VM_DUR} seconds\n\tDate:\t${VM_DATE}\n\nDial *98 to access your voicemail by phone.\nVisit http://AMPWEBADDRESS/recordings/index.php to check your voicemail with a web browser.\n 
    47 
  • freepbx/trunk/amp_conf/htdocs/admin/common/libfreepbx.javascripts.js

    r7425 r8560  
    133133{return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||(c==":")||(c==",")||(c==".")||(c=="%")||(c=="#")||(c=="-")||(c=="/")||(c=="?")||(c=="&")||(c=="="))} 
    134134function isCallerIDChar(c) 
    135 {return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||((c>="0")&&(c<="9"))||(c==":")||(c=="_")||(c=="-")||(c=="<")||(c==">")||(c=="(")||(c==")")||(c==" ")||(c=="\"")||(c=="&")||(c=="@")||(c==".")||(c=="+"))} 
     135{return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||((c>="0")&&(c<="9"))||(c==":")||(c=="_")||(c==",")||(c=="-")||(c=="<")||(c==">")||(c=="(")||(c==")")||(c==" ")||(c=="\"")||(c=="&")||(c=="@")||(c==".")||(c=="+"))} 
    136136function isDialpatternChar(c) 
    137137{return(((c>="0")&&(c<="9"))||(c=="[")||(c=="]")||(c=="-")||(c=="+")||(c==".")||(c=="|")||(c=="Z"||c=="z")||(c=="X"||c=="x")||(c=="N"||c=="n")||(c=="*")||(c=="#")||(c=="_")||(c=="!"))} 
     
    142142function isFilenameChar(c) 
    143143{return(((c>="0")&&(c<="9"))||((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||(c=="_")||(c=="-"))} 
    144 if(typeof window.jQuery=="undefined"){window.undefined=window.undefined;var jQuery=function(a,c){if(window==this||!this.init) 
    145 return new jQuery(a,c);return this.init(a,c);};if(typeof $!="undefined") 
    146 jQuery._$=$;var $=jQuery;jQuery.fn=jQuery.prototype={init:function(a,c){a=a||document;if(jQuery.isFunction(a)) 
    147 return new jQuery(document)[jQuery.fn.ready?"ready":"load"](a);if(typeof a=="string"){var m=/^[^<]*(<(.|\s)+>)[^>]*$/.exec(a);if(m) 
    148 a=jQuery.clean([m[1]]);else 
    149 return new jQuery(c).find(a);} 
    150 return this.setArray(a.constructor==Array&&a||(a.jquery||a.length&&a!=window&&!a.nodeType&&a[0]!=undefined&&a[0].nodeType)&&jQuery.makeArray(a)||[a]);},jquery:"1.1.3.1",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(a){var ret=jQuery(a);ret.prevObject=this;return ret;},setArray:function(a){this.length=0;[].push.apply(this,a);return this;},each:function(fn,args){return jQuery.each(this,fn,args);},index:function(obj){var pos=-1;this.each(function(i){if(this==obj)pos=i;});return pos;},attr:function(key,value,type){var obj=key;if(key.constructor==String) 
    151 if(value==undefined) 
    152 return this.length&&jQuery[type||"attr"](this[0],key)||undefined;else{obj={};obj[key]=value;} 
    153 return this.each(function(index){for(var prop in obj) 
    154 jQuery.attr(type?this.style:this,prop,jQuery.prop(this,obj[prop],type,index,prop));});},css:function(key,value){return this.attr(key,value,"curCSS");},text:function(e){if(typeof e=="string") 
    155 return this.empty().append(document.createTextNode(e));var t="";jQuery.each(e||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8) 
    156 t+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return t;},wrap:function(){var a,args=arguments;return this.each(function(){if(!a) 
    157 a=jQuery.clean(args,this.ownerDocument);var b=a[0].cloneNode(true);this.parentNode.insertBefore(b,this);while(b.firstChild) 
    158 b=b.firstChild;b.appendChild(this);});},append:function(){return this.domManip(arguments,true,1,function(a){this.appendChild(a);});},prepend:function(){return this.domManip(arguments,true,-1,function(a){this.insertBefore(a,this.firstChild);});},before:function(){return this.domManip(arguments,false,1,function(a){this.parentNode.insertBefore(a,this);});},after:function(){return this.domManip(arguments,false,-1,function(a){this.parentNode.insertBefore(a,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(t){var data=jQuery.map(this,function(a){return jQuery.find(t,a);});return this.pushStack(/[^+>] [^+>]/.test(t)||t.indexOf("..")>-1?jQuery.unique(data):data);},clone:function(deep){var $this=this.add(this.find("*"));$this.each(function(){this._$events={};for(var type in this.$events) 
    159 this._$events[type]=jQuery.extend({},this.$events[type]);}).unbind();var r=this.pushStack(jQuery.map(this,function(a){return a.cloneNode(deep!=undefined?deep:true);}));$this.each(function(){var events=this._$events;for(var type in events) 
    160 for(var handler in events[type]) 
    161 jQuery.event.add(this,type,events[type][handler],events[type][handler].data);this._$events=null;});return r;},filter:function(t){return this.pushStack(jQuery.isFunction(t)&&jQuery.grep(this,function(el,index){return t.apply(el,[index])})||jQuery.multiFilter(t,this));},not:function(t){return this.pushStack(t.constructor==String&&jQuery.multiFilter(t,this,true)||jQuery.grep(this,function(a){return(t.constructor==Array||t.jquery)?jQuery.inArray(a,t)<0:a!=t;}));},add:function(t){return this.pushStack(jQuery.merge(this.get(),t.constructor==String?jQuery(t).get():t.length!=undefined&&(!t.nodeName||t.nodeName=="FORM")?t:[t]));},is:function(expr){return expr?jQuery.multiFilter(expr,this).length>0:false;},val:function(val){return val==undefined?(this.length?this[0].value:null):this.attr("value",val);},html:function(val){return val==undefined?(this.length?this[0].innerHTML:null):this.empty().append(val);},domManip:function(args,table,dir,fn){var clone=this.length>1,a;return this.each(function(){if(!a){a=jQuery.clean(args,this.ownerDocument);if(dir<0) 
    162 a.reverse();} 
    163 var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(a[0],"tr")) 
    164 obj=this.getElementsByTagName("tbody")[0]||this.appendChild(document.createElement("tbody"));jQuery.each(a,function(){fn.apply(obj,[clone?this.cloneNode(true):this]);});});}};jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0],a=1;if(arguments.length==1){target=this;a=0;} 
    165 var prop;while((prop=arguments[a++])!=null) 
    166 for(var i in prop)target[i]=prop[i];return target;};jQuery.extend({noConflict:function(){if(jQuery._$) 
    167 $=jQuery._$;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(obj,fn,args){if(obj.length==undefined) 
    168 for(var i in obj) 
    169 fn.apply(obj[i],args||[i,obj[i]]);else 
    170 for(var i=0,ol=obj.length;i<ol;i++) 
    171 if(fn.apply(obj[i],args||[i,obj[i]])===false)break;return obj;},prop:function(elem,value,type,index,prop){if(jQuery.isFunction(value)) 
    172 value=value.call(elem,[index]);var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(prop)?value+"px":value;},className:{add:function(elem,c){jQuery.each(c.split(/\s+/),function(i,cur){if(!jQuery.className.has(elem.className,cur)) 
    173 elem.className+=(elem.className?" ":"")+cur;});},remove:function(elem,c){elem.className=c!=undefined?jQuery.grep(elem.className.split(/\s+/),function(cur){return!jQuery.className.has(c,cur);}).join(" "):"";},has:function(t,c){return jQuery.inArray(c,(t.className||t).toString().split(/\s+/))>-1;}},swap:function(e,o,f){for(var i in o){e.style["old"+i]=e.style[i];e.style[i]=o[i];} 
    174 f.apply(e,[]);for(var i in o) 
    175 e.style[i]=e.style["old"+i];},css:function(e,p){if(p=="height"||p=="width"){var old={},oHeight,oWidth,d=["Top","Bottom","Right","Left"];jQuery.each(d,function(){old["padding"+this]=0;old["border"+this+"Width"]=0;});jQuery.swap(e,old,function(){if(jQuery(e).is(':visible')){oHeight=e.offsetHeight;oWidth=e.offsetWidth;}else{e=jQuery(e.cloneNode(true)).find(":radio").removeAttr("checked").end().css({visibility:"hidden",position:"absolute",display:"block",right:"0",left:"0"}).appendTo(e.parentNode)[0];var parPos=jQuery.css(e.parentNode,"position")||"static";if(parPos=="static") 
    176 e.parentNode.style.position="relative";oHeight=e.clientHeight;oWidth=e.clientWidth;if(parPos=="static") 
    177 e.parentNode.style.position="static";e.parentNode.removeChild(e);}});return p=="height"?oHeight:oWidth;} 
    178 return jQuery.curCSS(e,p);},curCSS:function(elem,prop,force){var ret;if(prop=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;} 
    179 if(prop.match(/float/i)) 
    180 prop=jQuery.styleFloat;if(!force&&elem.style[prop]) 
    181 ret=elem.style[prop];else if(document.defaultView&&document.defaultView.getComputedStyle){if(prop.match(/float/i)) 
    182 prop="float";prop=prop.replace(/([A-Z])/g,"-$1").toLowerCase();var cur=document.defaultView.getComputedStyle(elem,null);if(cur) 
    183 ret=cur.getPropertyValue(prop);else if(prop=="display") 
    184 ret="none";else 
    185 jQuery.swap(elem,{display:"block"},function(){var c=document.defaultView.getComputedStyle(this,"");ret=c&&c.getPropertyValue(prop)||"";});}else if(elem.currentStyle){var newProp=prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();});ret=elem.currentStyle[prop]||elem.currentStyle[newProp];} 
    186 return ret;},clean:function(a,doc){var r=[];doc=doc||document;jQuery.each(a,function(i,arg){if(!arg)return;if(arg.constructor==Number) 
    187 arg=arg.toString();if(typeof arg=="string"){var s=jQuery.trim(arg).toLowerCase(),div=doc.createElement("div"),tb=[];var wrap=!s.indexOf("<opt")&&[1,"<select>","</select>"]||!s.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||(!s.indexOf("<thead")||!s.indexOf("<tbody")||!s.indexOf("<tfoot")||!s.indexOf("<colg"))&&[1,"<table>","</table>"]||!s.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!s.indexOf("<td")||!s.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!s.indexOf("<col")&&[2,"<table><colgroup>","</colgroup></table>"]||[0,"",""];div.innerHTML=wrap[1]+arg+wrap[2];while(wrap[0]--) 
    188 div=div.firstChild;if(jQuery.browser.msie){if(!s.indexOf("<table")&&s.indexOf("<tbody")<0) 
    189 tb=div.firstChild&&div.firstChild.childNodes;else if(wrap[1]=="<table>"&&s.indexOf("<tbody")<0) 
    190 tb=div.childNodes;for(var n=tb.length-1;n>=0;--n) 
    191 if(jQuery.nodeName(tb[n],"tbody")&&!tb[n].childNodes.length) 
    192 tb[n].parentNode.removeChild(tb[n]);} 
    193 arg=jQuery.makeArray(div.childNodes);} 
    194 if(0===arg.length&&(!jQuery.nodeName(arg,"form")&&!jQuery.nodeName(arg,"select"))) 
    195 return;if(arg[0]==undefined||jQuery.nodeName(arg,"form")||arg.options) 
    196 r.push(arg);else 
    197 r=jQuery.merge(r,arg);});return r;},attr:function(elem,name,value){var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method")) 
    198 return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined)elem.setAttribute(name,value);if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem)) 
    199 return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+ 
    200 (parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");} 
    201 return elem.filter?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";} 
    202 name=name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(t){return t.replace(/^\s+|\s+$/g,"");},makeArray:function(a){var r=[];if(typeof a!="array") 
    203 for(var i=0,al=a.length;i<al;i++) 
    204 r.push(a[i]);else 
    205 r=a.slice(0);return r;},inArray:function(b,a){for(var i=0,al=a.length;i<al;i++) 
    206 if(a[i]==b) 
    207 return i;return-1;},merge:function(first,second){for(var i=0;second[i];i++) 
    208 first.push(second[i]);return first;},unique:function(first){var r=[],num=jQuery.mergeNum++;for(var i=0,fl=first.length;i<fl;i++) 
    209 if(num!=first[i].mergeNum){first[i].mergeNum=num;r.push(first[i]);} 
    210 return r;},mergeNum:0,grep:function(elems,fn,inv){if(typeof fn=="string") 
    211 fn=new Function("a","i","return "+fn);var result=[];for(var i=0,el=elems.length;i<el;i++) 
    212 if(!inv&&fn(elems[i],i)||inv&&!fn(elems[i],i)) 
    213 result.push(elems[i]);return result;},map:function(elems,fn){if(typeof fn=="string") 
    214 fn=new Function("a","return "+fn);var result=[];for(var i=0,el=elems.length;i<el;i++){var val=fn(elems[i],i);if(val!==null&&val!=undefined){if(val.constructor!=Array)val=[val];result=result.concat(val);}} 
    215 return result;}});new function(){var b=navigator.userAgent.toLowerCase();jQuery.browser={version:(b.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(b),opera:/opera/.test(b),msie:/msie/.test(b)&&!/opera/.test(b),mozilla:/mozilla/.test(b)&&!/(compatible|webkit)/.test(b)};jQuery.boxModel=!jQuery.browser.msie||document.compatMode=="CSS1Compat";jQuery.styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat",jQuery.props={"for":"htmlFor","class":"className","float":jQuery.styleFloat,cssFloat:jQuery.styleFloat,styleFloat:jQuery.styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength"};};jQuery.each({parent:"a.parentNode",parents:"jQuery.parents(a)",next:"jQuery.nth(a,2,'nextSibling')",prev:"jQuery.nth(a,2,'previousSibling')",siblings:"jQuery.sibling(a.parentNode.firstChild,a)",children:"jQuery.sibling(a.firstChild)"},function(i,n){jQuery.fn[i]=function(a){var ret=jQuery.map(this,n);if(a&&typeof a=="string") 
    216 ret=jQuery.multiFilter(a,ret);return this.pushStack(ret);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after"},function(i,n){jQuery.fn[i]=function(){var a=arguments;return this.each(function(){for(var j=0,al=a.length;j<al;j++) 
    217 jQuery(a[j])[n](this);});};});jQuery.each({removeAttr:function(key){jQuery.attr(this,key,"");this.removeAttribute(key);},addClass:function(c){jQuery.className.add(this,c);},removeClass:function(c){jQuery.className.remove(this,c);},toggleClass:function(c){jQuery.className[jQuery.className.has(this,c)?"remove":"add"](this,c);},remove:function(a){if(!a||jQuery.filter(a,[this]).r.length) 
    218 this.parentNode.removeChild(this);},empty:function(){while(this.firstChild) 
    219 this.removeChild(this.firstChild);}},function(i,n){jQuery.fn[i]=function(){return this.each(n,arguments);};});jQuery.each(["eq","lt","gt","contains"],function(i,n){jQuery.fn[n]=function(num,fn){return this.filter(":"+n+"("+num+")",fn);};});jQuery.each(["height","width"],function(i,n){jQuery.fn[n]=function(h){return h==undefined?(this.length?jQuery.css(this[0],n):null):this.css(n,h.constructor==String?h:h+"px");};});jQuery.extend({expr:{"":"m[2]=='*'||jQuery.nodeName(a,m[2])","#":"a.getAttribute('id')==m[2]",":":{lt:"i<m[3]-0",gt:"i>m[3]-0",nth:"m[3]-0==i",eq:"m[3]-0==i",first:"i==0",last:"i==r.length-1",even:"i%2==0",odd:"i%2","first-child":"a.parentNode.getElementsByTagName('*')[0]==a","last-child":"jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a","only-child":"!jQuery.nth(a.parentNode.lastChild,2,'previousSibling')",parent:"a.firstChild",empty:"!a.firstChild",contains:"(a.textContent||a.innerText||'').indexOf(m[3])>=0",visible:'"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"',hidden:'"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"',enabled:"!a.disabled",disabled:"a.disabled",checked:"a.checked",selected:"a.selected||jQuery.attr(a,'selected')",text:"'text'==a.type",radio:"'radio'==a.type",checkbox:"'checkbox'==a.type",file:"'file'==a.type",password:"'password'==a.type",submit:"'submit'==a.type",image:"'image'==a.type",reset:"'reset'==a.type",button:'"button"==a.type||jQuery.nodeName(a,"button")',input:"/input|select|textarea|button/i.test(a.nodeName)"},"[":"jQuery.find(m[2],a).length"},parse:[/^\[ *(@)([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(\[)\s*(.*?(\[.*?\])?[^[]*?)\s*\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+ 
    220 (jQuery.chars=jQuery.browser.safari&&jQuery.browser.version<"3.0.0"?"\\w":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)")+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);} 
    221 return cur;},find:function(t,context){if(typeof t!="string") 
    222 return[t];if(context&&!context.nodeType) 
    223 context=null;context=context||document;if(!t.indexOf("//")){context=context.documentElement;t=t.substr(2,t.length);}else if(!t.indexOf("/")&&!context.ownerDocument){context=context.documentElement;t=t.substr(1,t.length);if(t.indexOf("/")>=1) 
    224 t=t.substr(t.indexOf("/"),t.length);} 
    225 var ret=[context],done=[],last;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t).replace(/^\/\//,"");var foundToken=false;var re=new RegExp("^[/>]\\s*("+jQuery.chars+"+)");var m=re.exec(t);if(m){var nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++) 
    226 for(var c=ret[i].firstChild;c;c=c.nextSibling) 
    227 if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName.toUpperCase())) 
    228 r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^((\/?\.\.)|([>\/+~]))\s*([a-z]*)/i;if((m=re.exec(t))!=null){r=[];var nodeName=m[4],mergeNum=jQuery.mergeNum++;m=m[1];for(var j=0,rl=ret.length;j<rl;j++) 
    229 if(m.indexOf("..")<0){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling) 
    230 if(n.nodeType==1){if(m=="~"&&n.mergeNum==mergeNum)break;if(!nodeName||n.nodeName.toUpperCase()==nodeName.toUpperCase()){if(m=="~")n.mergeNum=mergeNum;r.push(n);} 
    231 if(m=="+")break;}}else 
    232 r.push(ret[j].parentNode);ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}} 
    233 if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=new RegExp("^("+jQuery.chars+"+)(#)("+jQuery.chars+"+)");var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=new RegExp("^([#.]?)("+jQuery.chars+"*)");m=re2.exec(t);} 
    234 m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2]) 
    235 oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object") 
    236 tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));} 
    237 if(m[1]==".") 
    238 r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++) 
    239 if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;} 
    240 r=tmp;} 
    241 ret=r;} 
    242 t=t.replace(re2,"");}} 
    243 if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}} 
    244 if(t) 
    245 ret=[];if(ret&&context==ret[0]) 
    246 ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass) 
    247 tmp.push(r[i]);} 
    248 return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}} 
    249 if(!m) 
    250 break;if(m[1]==":"&&m[2]=="not") 
    251 r=jQuery.filter(m[3],r,true).r;else if(m[1]==".") 
    252 r=jQuery.classFilter(r,m[2],not);else if(m[1]=="@"){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src/.test(m[2])) 
    253 z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not) 
    254 tmp.push(a);} 
    255 r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var num=jQuery.mergeNum++,tmp=[],test=/(\d*)n\+?(\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"n+"+m[3]||m[3]),first=(test[1]||1)-0,last=test[2]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode;if(num!=parentNode.mergeNum){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling) 
    256 if(n.nodeType==1) 
    257 n.nodeIndex=c++;parentNode.mergeNum=num;} 
    258 var add=false;if(first==1){if(last==0||node.nodeIndex==last) 
    259 add=true;}else if((node.nodeIndex+last)%first==0) 
    260 add=true;if(add^not) 
    261 tmp.push(node);} 
    262 r=tmp;}else{var f=jQuery.expr[m[1]];if(typeof f!="string") 
    263 f=jQuery.expr[m[1]][m[2]];eval("f = function(a,i){return "+f+"}");r=jQuery.grep(r,f,not);}} 
    264 return{r:r,t:t};},parents:function(elem){var matched=[];var cur=elem.parentNode;while(cur&&cur!=document){matched.push(cur);cur=cur.parentNode;} 
    265 return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]) 
     144(function(){var 
     145window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this;} 
     146if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]) 
     147selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem&&elem.id!=match[3]) 
     148return jQuery().find(selector);var ret=jQuery(elem||[]);ret.context=document;ret.selector=selector;return ret;}}else 
     149return jQuery(context).find(selector);}else if(jQuery.isFunction(selector)) 
     150return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;} 
     151return this.setArray(jQuery.isArray(selector)?selector:jQuery.makeArray(selector));},selector:"",jquery:"1.3.2",size:function(){return this.length;},get:function(num){return num===undefined?Array.prototype.slice.call(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find") 
     152ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name) 
     153ret.selector=this.selector+"."+name+"("+selector+")";return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="string") 
     154if(value===undefined) 
     155return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;} 
     156return this.each(function(i){for(name in options) 
     157jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0) 
     158value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!=="object"&&text!=null) 
     159return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8) 
     160ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode) 
     161wrap.insertBefore(this[0]);wrap.map(function(){var elem=this;while(elem.firstChild) 
     162elem=elem.firstChild;return elem;}).append(this);} 
     163return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1) 
     164this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1) 
     165this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,sort:[].sort,splice:[].splice,find:function(selector){if(this.length===1){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{return this.pushStack(jQuery.unique(jQuery.map(this,function(elem){return jQuery.find(selector,elem);})),"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML;if(!html){var div=this.ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;} 
     166return jQuery.clean([html.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0];}else 
     167return this.cloneNode(true);});if(events===true){var orig=this.find("*").andSelf(),i=0;ret.find("*").andSelf().each(function(){if(this.nodeName!==orig[i].nodeName) 
     168return;var events=jQuery.data(orig[i],"events");for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}} 
     169i++;});} 
     170return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null,closer=0;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector)){jQuery.data(cur,"closest",closer);return cur;} 
     171cur=cur.parentNode;closer++;}});},not:function(selector){if(typeof selector==="string") 
     172if(isSimple.test(selector)) 
     173return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);else 
     174selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option')) 
     175return(elem.attributes.value||{}).specified?elem.value:elem.text;if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0) 
     176return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one) 
     177return value;values.push(value);}} 
     178return values;} 
     179return(elem.value||"").replace(/\r/g,"");} 
     180return undefined;} 
     181if(typeof value==="number") 
     182value+='';return this.each(function(){if(this.nodeType!=1) 
     183return;if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type)) 
     184this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length) 
     185this.selectedIndex=-1;}else 
     186this.value=value;});},html:function(value){return value===undefined?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,+i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild;if(first) 
     187for(var i=0,l=this.length;i<l;i++) 
     188callback.call(root(this[i],first),this.length>1||i>0?fragment.cloneNode(true):fragment);if(scripts) 
     189jQuery.each(scripts,evalScript);} 
     190return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src) 
     191jQuery.ajax({url:elem.src,async:false,dataType:"script"});else 
     192jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode) 
     193elem.parentNode.removeChild(elem);} 
     194function now(){return+new Date;} 
     195jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;} 
     196if(typeof target!=="object"&&!jQuery.isFunction(target)) 
     197target={};if(length==i){target=this;--i;} 
     198for(;i<length;i++) 
     199if((options=arguments[i])!=null) 
     200for(var name in options){var src=target[name],copy=options[name];if(target===copy) 
     201continue;if(deep&&copy&&typeof copy==="object"&&!copy.nodeType) 
     202target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined) 
     203target[name]=copy;} 
     204return target;};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep) 
     205window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&jQuery.isXMLDoc(elem.ownerDocument);},globalEval:function(data){if(data&&/\S/.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval) 
     206script.appendChild(document.createTextNode(data));else 
     207script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object) 
     208if(callback.apply(object[name],args)===false) 
     209break;}else 
     210for(;i<length;) 
     211if(callback.apply(object[i++],args)===false) 
     212break;}else{if(length===undefined){for(name in object) 
     213if(callback.call(object[name],name,object[name])===false) 
     214break;}else 
     215for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}} 
     216return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value)) 
     217value=value.call(elem,i);return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className)) 
     218elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1) 
     219elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return elem&&jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];} 
     220callback.call(elem);for(var name in options) 
     221elem.style[name]=old[name];},css:function(elem,name,force,extra){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border") 
     222return;jQuery.each(which,function(){if(!extra) 
     223val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;if(extra==="margin") 
     224val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;else 
     225val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});} 
     226if(elem.offsetWidth!==0) 
     227getWH();else 
     228jQuery.swap(elem,props,getWH);return Math.max(0,Math.round(val));} 
     229return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;} 
     230if(name.match(/float/i)) 
     231name=styleFloat;if(!force&&style&&style[name]) 
     232ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i)) 
     233name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle) 
     234ret=computedStyle.getPropertyValue(name);if(name=="opacity"&&ret=="") 
     235ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}} 
     236return ret;},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined") 
     237context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match) 
     238return[context.createElement(match[1])];} 
     239var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number") 
     240elem+='';if(!elem) 
     241return;if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=elem.replace(/^\s+/,"").substring(0,10).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--) 
     242div=div.lastChild;if(!jQuery.support.tbody){var hasBody=/<tbody/i.test(elem),tbody=!tags.indexOf("<table")&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j) 
     243if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length) 
     244tbody[j].parentNode.removeChild(tbody[j]);} 
     245if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem)) 
     246div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);} 
     247if(elem.nodeType) 
     248ret.push(elem);else 
     249ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1) 
     250ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}} 
     251return scripts;} 
     252return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8) 
     253return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode) 
     254elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode) 
     255throw"type property can't be changed";elem[name]=value;} 
     256if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)) 
     257return elem.getAttributeNode(name).nodeValue;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/(button|input|object|select|textarea)/i)?0:elem.nodeName.match(/^(a|area)$/i)&&elem.href?0:undefined;} 
     258return elem[name];} 
     259if(!jQuery.support.style&&notxml&&name=="style") 
     260return jQuery.attr(elem.style,"cssText",value);if(set) 
     261elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;} 
     262if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+ 
     263(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");} 
     264return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";} 
     265name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set) 
     266elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval) 
     267ret[0]=array;else 
     268while(i) 
     269ret[--i]=array[i];} 
     270return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++) 
     271if(array[i]===elem) 
     272return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null) 
     273if(elem.nodeType!=8) 
     274first[pos++]=elem;}else 
     275while((elem=second[i++])!=null) 
     276first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;} 
     277return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++) 
     278if(!inv!=!callback(elems[i],i)) 
     279ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null) 
     280ret[ret.length]=value;} 
     281return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string") 
     282ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);} 
     283return this.pushStack(ret,name,selector);};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1) 
     284this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames,state){if(typeof state!=="boolean") 
     285state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode) 
     286this.parentNode.removeChild(this);}},empty:function(){jQuery(this).children().remove();while(this.firstChild) 
     287this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;} 
     288var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id) 
     289id=elem[expando]=++uuid;if(name&&!jQuery.cache[id]) 
     290jQuery.cache[id]={};if(data!==undefined) 
     291jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id]) 
     292break;if(!name) 
     293jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute) 
     294elem.removeAttribute(expando);} 
     295delete jQuery.cache[id];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data)) 
     296q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data) 
     297q.push(data);} 
     298return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx") 
     299fn=queue[0];if(fn!==undefined) 
     300fn.call(elem);}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length) 
     301data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else 
     302return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";} 
     303if(data===undefined) 
     304return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1) 
     305queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9) 
     306return[];if(!selector||typeof selector!=="string"){return results;} 
     307var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}} 
     308if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]) 
     309selector+=parts.shift();set=posProcess(selector,set);}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context,isXML(context));set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;} 
     310while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();} 
     311if(pop==null){pop=context;} 
     312Expr.relative[cur](checkSet,pop,isXML(context));}} 
     313if(!checkSet){checkSet=set;} 
     314if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);} 
     315if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);} 
     316if(extra){Sizzle(extra,context,results,seed);if(sortOrder){hasDuplicate=false;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}} 
     317return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];} 
     318for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}} 
     319if(!set){set=context.getElementsByTagName("*");} 
     320return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop==result){result=[];} 
     321if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}} 
     322if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}} 
     323if(found!==undefined){if(!inplace){curLoop=result;} 
     324expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];} 
     325break;}}} 
     326if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}} 
     327old=expr;} 
     328return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part,isXML){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag&&!isXML){part=part.toUpperCase();} 
     329for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){} 
     330checkSet[i]=isPartStrNotTag||elem&&elem.nodeName===part?elem||false:elem===part;}} 
     331if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}} 
     332if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;} 
     333checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;} 
     334checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context,isXML){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}} 
     335return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;} 
     336for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").indexOf(match)>=0)){if(!inplace) 
     337result.push(elem);}else if(inplace){curLoop[i]=false;}}} 
     338return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;curLoop[i]===false;i++){} 
     339return curLoop[i]&&isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;} 
     340match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];} 
     341if(match[2]==="~="){match[4]=" "+match[4]+" ";} 
     342return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);} 
     343return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;} 
     344return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}} 
     345return true;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while(node=node.previousSibling){if(node.nodeType===1)return false;} 
     346if(type=='first')return true;node=elem;case'last':while(node=node.nextSibling){if(node.nodeType===1)return false;} 
     347return true;case'nth':var first=match[2],last=match[3];if(first==1&&last==0){return true;} 
     348var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}} 
     349parent.sizcache=doneName;} 
     350var diff=elem.nodeIndex-last;if(first==0){return diff==0;}else{return(diff%first==0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);} 
     351var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;} 
     352return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}} 
     353return ret;};} 
     354var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;} 
     355return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;} 
     356return ret;};}else if(document.createRange){sortOrder=function(a,b){var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.selectNode(a);aRange.collapse(true);bRange.selectNode(b);bRange.collapse(true);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;} 
     357return ret;};} 
     358(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};} 
     359root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}} 
     360results=tmp;} 
     361return results;};} 
     362div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;} 
     363Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}} 
     364return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.getElementsByClassName&&document.documentElement.getElementsByClassName)(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(div.getElementsByClassName("e").length===0) 
     365return;div.lastChild.className="e";if(div.getElementsByClassName("e").length===1) 
     366return;Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;} 
     367elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;} 
     368if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;} 
     369if(elem.nodeName===cur){match=elem;break;} 
     370elem=elem[dir];} 
     371checkSet[i]=match;}}} 
     372function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){var sibDir=dir=="previousSibling"&&!isXML;for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){if(sibDir&&elem.nodeType===1){elem.sizcache=doneName;elem.sizset=i;} 
     373elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;} 
     374if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;} 
     375if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}} 
     376elem=elem[dir];} 
     377checkSet[i]=match;}}} 
     378var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.nodeType===9&&elem.documentElement.nodeName!=="HTML"||!!elem.ownerDocument&&isXML(elem.ownerDocument);};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");} 
     379selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);} 
     380return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return elem.offsetWidth===0||elem.offsetHeight===0;};Sizzle.selectors.filters.visible=function(elem){return elem.offsetWidth>0||elem.offsetHeight>0;};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";} 
     381return Sizzle.matches(expr,elems);};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1) 
     382matched.push(cur);cur=cur[dir];} 
     383return matched;};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]) 
    266384if(cur.nodeType==1&&++num==result) 
    267 break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem)
     385break;return cur;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem
    268386r.push(n);} 
    269 return r;}});jQuery.event={add:function(element,type,handler,data){if(jQuery.browser.msie&&element.setInterval!=undefined) 
    270 element=window;if(!handler.guid) 
    271 handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;} 
    272 if(!element.$events) 
    273 element.$events={};if(!element.$handle) 
    274 element.$handle=function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered) 
    275 return val;val=jQuery.event.handle.apply(element,arguments);return val;};var handlers=element.$events[type];if(!handlers){handlers=element.$events[type]={};if(element.addEventListener) 
    276 element.addEventListener(type,element.$handle,false);else 
    277 element.attachEvent("on"+type,element.$handle);} 
    278 handlers[handler.guid]=handler;if(!this.global[type]) 
    279 this.global[type]=[];if(jQuery.inArray(element,this.global[type])==-1) 
    280 this.global[type].push(element);},guid:1,global:{},remove:function(element,type,handler){var events=element.$events,ret,index;if(events){if(type&&type.type){handler=type.handler;type=type.type;} 
    281 if(!type){for(type in events) 
    282 this.remove(element,type);}else if(events[type]){if(handler) 
     387return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8) 
     388return;if(elem.setInterval&&elem!=window) 
     389elem=window;if(!handler.guid) 
     390handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;} 
     391var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type]) 
     392jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener) 
     393elem.addEventListener(type,handle,false);else if(elem.attachEvent) 
     394elem.attachEvent("on"+type,handle);}} 
     395handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8) 
     396return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)==".")) 
     397for(var type in events) 
     398this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;} 
     399jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler) 
    283400delete events[type][handler.guid];else 
    284 for(handler in element.$events[type]) 
    285 delete events[type][handler];for(ret in events[type])break;if(!ret){if(element.removeEventListener) 
    286 element.removeEventListener(type,element.$handle,false);else 
    287 element.detachEvent("on"+type,element.$handle);ret=null;delete events[type];while(this.global[type]&&((index=jQuery.inArray(element,this.global[type]))>=0)) 
    288 delete this.global[type][index];}} 
    289 for(ret in events)break;if(!ret) 
    290 element.$handle=element.$events=null;}},trigger:function(type,data,element){data=jQuery.makeArray(data||[]);if(!element) 
    291 jQuery.each(this.global[type]||[],function(){jQuery.event.trigger(type,data,this);});else{var val,ret,fn=jQuery.isFunction(element[type]||null);data.unshift(this.fix({type:type,target:element}));if(jQuery.isFunction(element.$handle)&&(val=element.$handle.apply(element,data))!==false) 
    292 this.triggered=true;if(fn&&val!==false&&!jQuery.nodeName(element,'a')) 
    293 element[type]();this.triggered=false;}},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var c=this.$events&&this.$events[event.type],args=[].slice.call(arguments,1);args.unshift(event);for(var j in c){args[0].handler=c[j];args[0].data=c[j].data;if(c[j].apply(this,args)===false){event.preventDefault();event.stopPropagation();val=false;}} 
    294 if(jQuery.browser.msie) 
    295 event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault) 
    296 return originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation) 
    297 return originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target&&event.srcElement) 
    298 event.target=event.srcElement;if(jQuery.browser.safari&&event.target.nodeType==3) 
    299 event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement) 
    300 event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var e=document.documentElement,b=document.body;event.pageX=event.clientX+(e&&e.scrollLeft||b.scrollLeft);event.pageY=event.clientY+(e&&e.scrollTop||b.scrollTop);} 
    301 if(!event.which&&(event.charCode||event.keyCode)) 
     401for(var handle in events[type]) 
     402if(namespace.test(events[type][handle].type)) 
     403delete events[type][handle];if(jQuery.event.specialAll[type]) 
     404jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener) 
     405elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent) 
     406elem.detachEvent("on"+type,jQuery.data(elem,"handle"));} 
     407ret=null;delete events[type];}}});} 
     408for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;} 
     409if(!elem){event.stopPropagation();if(this.global[type]) 
     410jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]) 
     411jQuery.event.trigger(event,data,this.handle.elem);});} 
     412if(!elem||elem.nodeType==3||elem.nodeType==8) 
     413return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);} 
     414event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle) 
     415handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false) 
     416event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}} 
     417this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent) 
     418jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}} 
     419if(event.isImmediatePropagationStopped()) 
     420break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]) 
     421return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];} 
     422if(!event.target) 
     423event.target=event.srcElement||document;if(event.target.nodeType==3) 
     424event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement) 
     425event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);} 
     426if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)) 
    302427event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey) 
    303428event.metaKey=event.ctrlKey;if(!event.which&&event.button) 
    304 event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},toggle:function(){var a=arguments;return this.click(function(e){this.lastToggle=0==this.lastToggle?1:0;e.preventDefault();return a[this.lastToggle].apply(this,[e])||false;});},hover:function(f,g){function handleHover(e){var p=e.relatedTarget;while(p&&p!=this)try{p=p.parentNode}catch(e){p=this;};if(p==this)return false;return(e.type=="mouseover"?f:g).apply(this,[e]);} 
    305 return this.mouseover(handleHover).mouseout(handleHover);},ready:function(f){if(jQuery.isReady) 
    306 f.apply(document,[jQuery]);else 
    307 jQuery.readyList.push(function(){return f.apply(this,[jQuery])});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;} 
    308 if(jQuery.browser.mozilla||jQuery.browser.opera) 
    309 document.removeEventListener("DOMContentLoaded",jQuery.ready,false);if(!window.frames.length) 
    310 jQuery(window).load(function(){jQuery("#__ie_init").remove();});}}});new function(){jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,o){jQuery.fn[o]=function(f){return f?this.bind(o,f):this.trigger(o);};});if(jQuery.browser.mozilla||jQuery.browser.opera) 
    311 document.addEventListener("DOMContentLoaded",jQuery.ready,false);else if(jQuery.browser.msie){document.write("<scr"+"ipt id=__ie_init defer=true "+"src=//:><\/script>");var script=document.getElementById("__ie_init");if(script) 
    312 script.onreadystatechange=function(){if(this.readyState!="complete")return;jQuery.ready();};script=null;}else if(jQuery.browser.safari) 
    313 jQuery.safariTimer=setInterval(function(){if(document.readyState=="loaded"||document.readyState=="complete"){clearInterval(jQuery.safariTimer);jQuery.safariTimer=null;jQuery.ready();}},10);jQuery.event.add(window,"load",jQuery.ready);};if(jQuery.browser.msie) 
    314 jQuery(window).one("unload",function(){var global=jQuery.event.global;for(var type in global){var els=global[type],i=els.length;if(i&&type!='unload') 
    315 do 
    316 els[i-1]&&jQuery.event.remove(els[i-1],type);while(--i);}});jQuery.fn.extend({loadIfModified:function(url,params,callback){this.load(url,params,callback,1);},load:function(url,params,callback,ifModified){if(jQuery.isFunction(url)) 
    317 return this.bind("load",url);callback=callback||function(){};var type="GET";if(params) 
    318 if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";} 
    319 var self=this;jQuery.ajax({url:url,type:type,data:params,ifModified:ifModified,complete:function(res,status){if(status=="success"||!ifModified&&status=="notmodified") 
    320 self.attr("innerHTML",res.responseText).evalScripts().each(callback,[res.responseText,status,res]);else 
    321 callback.apply(self,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this);},evalScripts:function(){return this.find("script").each(function(){if(this.src) 
    322 jQuery.getScript(this.src);else 
    323 jQuery.globalEval(this.text||this.textContent||this.innerHTML||"");}).end();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.extend({get:function(url,data,callback,type,ifModified){if(jQuery.isFunction(data)){callback=data;data=null;} 
    324 return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type,ifModified:ifModified});},getIfModified:function(url,data,callback,type){return jQuery.get(url,data,callback,type,1);},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};} 
    325 return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxTimeout:function(timeout){jQuery.ajaxSettings.timeout=timeout;},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null},lastModified:{},ajax:function(s){s=jQuery.extend({},jQuery.ajaxSettings,s);if(s.data){if(s.processData&&typeof s.data!="string") 
    326 s.data=jQuery.param(s.data);if(s.type.toLowerCase()=="get"){s.url+=((s.url.indexOf("?")>-1)?"&":"?")+s.data;s.data=null;}} 
     429event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type)) 
     430remove++;});if(remove<1) 
     431jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault) 
     432return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;}else 
     433this.type=src;this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;} 
     434function returnTrue(){return true;} 
     435jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e) 
     436return;if(e.preventDefault) 
     437e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e) 
     438return;if(e.stopPropagation) 
     439e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this) 
     440try{parent=parent.parentNode;} 
     441catch(e){parent=this;} 
     442if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length) 
     443jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady) 
     444fn.call(document,jQuery);else 
     445jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem) 
     446elems.push({elem:elem,fn:fn});}});elems.sort(function(a,b){return jQuery.data(a.elem,"closest")-jQuery.data(b.elem,"closest");});jQuery.each(elems,function(){if(this.fn.call(this.elem,event,this.fn.data)===false) 
     447return(stop=false);});return stop;} 
     448function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");} 
     449jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery);});jQuery.readyList=null;} 
     450jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&window==window.top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;} 
     451jQuery.ready();})();} 
     452jQuery.event.add(window,"load",jQuery.ready);} 
     453jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,"+"change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache) 
     454if(id!=1&&jQuery.cache[id].handle) 
     455jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;} 
     456jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){} 
     457root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];} 
     458root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");} 
     459jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string") 
     460return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);} 
     461var type="GET";if(params) 
     462if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params);type="POST";} 
     463var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified") 
     464self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);if(callback) 
     465self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;} 
     466return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};} 
     467return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string") 
     468s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre)) 
     469s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre)) 
     470s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";} 
     471if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data) 
     472s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){} 
     473if(head) 
     474head.removeChild(script);};} 
     475if(s.dataType=="script"&&s.cache==null) 
     476s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");} 
     477if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;} 
    327478if(s.global&&!jQuery.active++) 
    328 jQuery.event.trigger("ajaxStart");var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async);if(s.data) 
    329 xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified) 
    330 xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");if(s.beforeSend) 
    331 s.beforeSend(xml);if(s.global) 
    332 jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;} 
    333 var status;try{status=jQuery.httpSuccess(xml)&&isTimeout!="timeout"?s.ifModified&&jQuery.httpNotModified(xml,s.url)?"notmodified":"success":"error";if(status!="error"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){} 
     479jQuery.event.trigger("ajaxStart");var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset) 
     480script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();script.onload=script.onreadystatechange=null;head.removeChild(script);}};} 
     481head.appendChild(script);return undefined;} 
     482var requestDone=false;var xhr=s.xhr();if(s.username) 
     483xhr.open(type,s.url,s.async,s.username,s.password);else 
     484xhr.open(type,s.url,s.async);try{if(s.data) 
     485xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified) 
     486xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){} 
     487if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active) 
     488jQuery.event.trigger("ajaxStop");xhr.abort();return false;} 
     489if(s.global) 
     490jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active) 
     491jQuery.event.trigger("ajaxStop");}}else if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;} 
     492status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(e){status="parsererror";}} 
     493if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){} 
    334494if(s.ifModified&&modRes) 
    335 jQuery.lastModified[s.url]=modRes;var data=jQuery.httpData(xml,s.dataType);if(s.success) 
     495jQuery.lastModified[s.url]=modRes;if(!jsonp) 
     496success();}else 
     497jQuery.handleError(s,xhr,status);complete();if(isTimeout) 
     498xhr.abort();if(s.async) 
     499xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0) 
     500setTimeout(function(){if(xhr&&!requestDone) 
     501onreadystatechange("timeout");},s.timeout);} 
     502try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);} 
     503if(!s.async) 
     504onreadystatechange();function success(){if(s.success) 
    336505s.success(data,status);if(s.global) 
    337 jQuery.event.trigger("ajaxSuccess",[xml,s]);}else 
    338 jQuery.handleError(s,xml,status);}catch(e){status="error";jQuery.handleError(s,xml,status,e);} 
    339 if(s.global) 
    340 jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active) 
    341 jQuery.event.trigger("ajaxStop");if(s.complete) 
    342 s.complete(xml,status);if(s.async) 
    343 xml=null;}};var ival=setInterval(onreadystatechange,13);if(s.timeout>0) 
    344 setTimeout(function(){if(xml){xml.abort();if(!requestDone) 
    345 onreadystatechange("timeout");}},s.timeout);try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);} 
    346 if(!s.async) 
    347 onreadystatechange();return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global) 
    348 jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||jQuery.browser.safari&&r.status==undefined;}catch(e){} 
    349 return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){} 
    350 return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var data=!type&&ct&&ct.indexOf("xml")>=0;data=type=="xml"||data?r.responseXML:r.responseText;if(type=="script") 
     506jQuery.event.trigger("ajaxSuccess",[xhr,s]);} 
     507function complete(){if(s.complete) 
     508s.complete(xhr,status);if(s.global) 
     509jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active) 
     510jQuery.event.trigger("ajaxStop");} 
     511return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global) 
     512jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223;}catch(e){} 
     513return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){} 
     514return false;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror") 
     515throw"parsererror";if(s&&s.dataFilter) 
     516data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script") 
    351517jQuery.globalEval(data);if(type=="json") 
    352 data=eval("("+data+")");if(type=="html") 
    353 jQuery("<div>").html(data).evalScripts();return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery) 
    354 jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else 
     518data=window["eval"]("("+data+")");} 
     519return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery) 
     520jQuery.each(a,function(){add(this.name,this.value);});else 
    355521for(var j in a) 
    356 if(a[j]&&a[j].constructor==Array) 
    357 jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else 
    358 s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&");},globalEval:function(data){if(window.execScript) 
    359 window.execScript(data);else if(jQuery.browser.safari) 
    360 window.setTimeout(data,0);else 
    361 eval.call(window,data);}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock?this.oldblock:"";if(jQuery.css(this,"display")=="none") 
    362 this.style.display="block";}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");if(this.oldblock=="none") 
    363 this.oldblock="block";this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){return this.queue(function(){var hidden=jQuery(this).is(":hidden"),opt=jQuery.speed(speed,easing,callback),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden) 
    364 return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}} 
     522if(jQuery.isArray(a[j])) 
     523jQuery.each(a[j],function(){add(j,this);});else 
     524add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;} 
     525jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none") 
     526display="block";elem.remove();elemdisplay[tagName]=display;} 
     527jQuery.data(this[i],"olddisplay",display);}} 
     528for(var i=0,l=this.length;i<l;i++){this[i].style.display=jQuery.data(this[i],"olddisplay")||"";} 
     529return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none") 
     530jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));} 
     531for(var i=0,l=this.length;i<l;i++){this[i].style.display="none";} 
     532return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden) 
     533return opt.complete.call(this);if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}} 
    365534if(opt.overflow!=null) 
    366 this.style.overflow="hidden";this.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(val.constructor==Number) 
    367 e.custom(e.cur(),val);else 
    368 e[val=="toggle"?hidden?"show":"hide":val](prop);});});},queue:function(type,fn){if(!fn){fn=type;type="fx";} 
    369 return this.each(function(){if(!this.queue) 
    370 this.queue={};if(!this.queue[type]) 
    371 this.queue[type]=[];this.queue[type].push(fn);if(this.queue[type].length==1) 
    372 fn.apply(this);});}});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing||(jQuery.easing.swing?"swing":"linear")};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){jQuery.dequeue(this,"fx");if(jQuery.isFunction(opt.old)) 
    373 opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},queue:{},dequeue:function(elem,type){type=type||"fx";if(elem.queue&&elem.queue[type]){elem.queue[type].shift();var f=elem.queue[type][0];if(f)f.apply(elem);}},timers:[],fx:function(elem,options,prop){var z=this;var y=elem.style;z.a=function(){if(options.step) 
    374 options.step.apply(elem,[z.now]);if(prop=="opacity") 
    375 jQuery.attr(y,"opacity",z.now);else{y[prop]=parseInt(z.now)+"px";y.display="block";}};z.max=function(){return parseFloat(jQuery.css(elem,prop));};z.cur=function(){var r=parseFloat(jQuery.curCSS(elem,prop));return r&&r>-10000?r:z.max();};z.custom=function(from,to){z.startTime=(new Date()).getTime();z.now=from;z.a();jQuery.timers.push(function(){return z.step(from,to);});if(jQuery.timers.length==1){var timer=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++) 
     535this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val)) 
     536e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;} 
     537if(parts[1]) 
     538end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else 
     539e.custom(start,val,"");}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue) 
     540this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--) 
     541if(timers[i].elem==this){if(gotoEnd) 
     542timers[i](true);timers.splice(i,1);}});if(!gotoEnd) 
     543this.dequeue();return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false) 
     544jQuery(this).dequeue();if(jQuery.isFunction(opt.old)) 
     545opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig) 
     546options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step) 
     547this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style) 
     548this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)) 
     549return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);} 
     550t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++) 
    376551if(!timers[i]()) 
    377 timers.splice(i--,1);if(!timers.length) 
    378 clearInterval(timer);},13);}};z.show=function(){if(!elem.orig)elem.orig={};elem.orig[prop]=jQuery.attr(elem.style,prop);options.show=true;z.custom(0,this.cur());if(prop!="opacity") 
    379 y[prop]="1px";jQuery(elem).show();};z.hide=function(){if(!elem.orig)elem.orig={};elem.orig[prop]=jQuery.attr(elem.style,prop);options.hide=true;z.custom(this.cur(),0);};z.step=function(firstNum,lastNum){var t=(new Date()).getTime();if(t>options.duration+z.startTime){z.now=lastNum;z.a();if(elem.curAnim)elem.curAnim[prop]=true;var done=true;for(var i in elem.curAnim) 
    380 if(elem.curAnim[i]!==true) 
    381 done=false;if(done){if(options.display!=null){y.overflow=options.overflow;y.display=options.display;if(jQuery.css(elem,"display")=="none") 
    382 y.display="block";} 
    383 if(options.hide) 
    384 y.display="none";if(options.hide||options.show) 
    385 for(var p in elem.curAnim) 
    386 jQuery.attr(y,p,elem.orig[p]);} 
    387 if(done&&jQuery.isFunction(options.complete)) 
    388 options.complete.apply(elem);return false;}else{var n=t-this.startTime;var p=n/options.duration;z.now=jQuery.easing[options.easing](p,n,firstNum,(lastNum-firstNum),options.duration);z.a();} 
    389 return true;};}});} 
    390 (function($){$.extend({tabs:{remoteCount:0}});$.fn.tabs=function(initial,settings){if(typeof initial=='object')settings=initial;settings=$.extend({initial:(initial&&typeof initial=='number'&&initial>0)?--initial:0,disabled:null,bookmarkable:$.ajaxHistory?true:false,remote:false,spinner:'Loading&#8230;',hashPrefix:'remote-tab-',fxFade:null,fxSlide:null,fxShow:null,fxHide:null,fxSpeed:'normal',fxShowSpeed:null,fxHideSpeed:null,fxAutoHeight:false,onClick:null,onHide:null,onShow:null,navClass:'tabs-nav',selectedClass:'tabs-selected',disabledClass:'tabs-disabled',containerClass:'tabs-container',hideClass:'tabs-hide',loadingClass:'tabs-loading',tabStruct:'div'},settings||{});$.browser.msie6=$.browser.msie&&($.browser.version&&$.browser.version<7||/6.0/.test(navigator.userAgent));function unFocus(){scrollTo(0,0);} 
     552timers.splice(i--,1);if(!timers.length){clearInterval(timerId);timerId=undefined;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim) 
     553if(this.options.curAnim[i]!==true) 
     554done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none") 
     555this.elem.style.display="block";} 
     556if(this.options.hide) 
     557jQuery(this.elem).hide();if(this.options.hide||this.options.show) 
     558for(var p in this.options.curAnim) 
     559jQuery.attr(this.elem.style,p,this.options.orig[p]);this.options.complete.call(this.elem);} 
     560return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();} 
     561return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null) 
     562fx.elem.style[fx.prop]=fx.now+fx.unit;else 
     563fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"]) 
     564jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else 
     565jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName))) 
     566top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;} 
     567if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible") 
     568top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;} 
     569if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static") 
     570top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed") 
     571top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset) 
     572top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};} 
     573return results;},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static')) 
     574offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return null;return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom",lower=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],lower,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],lower,false,margin?"margin":"border"):null;};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options.expires=-1;} 
     575var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;} 
     576expires='; expires='+date.toUTCString();} 
     577var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}} 
     578return cookieValue;}};(function($){$.extend({tabs:{remoteCount:0}});$.fn.tabs=function(initial,settings){if(typeof initial=='object')settings=initial;settings=$.extend({initial:(initial&&typeof initial=='number'&&initial>0)?--initial:0,disabled:null,bookmarkable:$.ajaxHistory?true:false,remote:false,spinner:'Loading&#8230;',hashPrefix:'remote-tab-',fxFade:null,fxSlide:null,fxShow:null,fxHide:null,fxSpeed:'normal',fxShowSpeed:null,fxHideSpeed:null,fxAutoHeight:false,onClick:null,onHide:null,onShow:null,navClass:'tabs-nav',selectedClass:'tabs-selected',disabledClass:'tabs-disabled',containerClass:'tabs-container',hideClass:'tabs-hide',loadingClass:'tabs-loading',tabStruct:'div'},settings||{});$.browser.msie6=$.browser.msie&&($.browser.version&&$.browser.version<7||/6.0/.test(navigator.userAgent));function unFocus(){scrollTo(0,0);} 
    391579return this.each(function(){var container=this;var nav=$('ul.'+settings.navClass,container);nav=nav.size()&&nav||$('>ul:eq(0)',container);var tabs=$('a',nav);if(settings.remote){tabs.each(function(){var id=settings.hashPrefix+(++$.tabs.remoteCount),hash='#'+id,url=this.href;this.href=hash;$('<div id="'+id+'" class="'+settings.containerClass+'"></div>').appendTo(container);$(this).bind('loadRemoteTab',function(e,callback){var $$=$(this).addClass(settings.loadingClass),span=$('span',this)[0],tabTitle=span.innerHTML;if(settings.spinner){span.innerHTML='<em>'+settings.spinner+'</em>';} 
    392580setTimeout(function(){$(hash).load(url,function(){if(settings.spinner){span.innerHTML=tabTitle;} 
  • freepbx/trunk/amp_conf/htdocs/admin/functions.inc.php

    r8400 r8560  
    13971397 
    13981398if (!function_exists('version_compare_freepbx')) { 
    1399   /* verison_compare that works with freePBX version numbers 
     1399  /* version_compare that works with FreePBX version numbers 
    14001400  */ 
    14011401  function version_compare_freepbx($version1, $version2, $op = null) { 
     
    21852185 * 
    21862186 * Sets the global variable $module_getonlinexml_error to true if an error 
    2187  * occured getting the module from the repository, false if no error occured, 
     2187 * occurred getting the module from the repository, false if no error occurred, 
    21882188 * or null if the repository wasn't checked. Note that this may change in the  
    21892189 * future if we decide we need to return more error codes, but as long as it's 
     
    36643664  $fh = fopen($filename,$option); 
    36653665  fwrite($fh,date("Y-M-d H:i:s")."\n");//add timestamp 
    3666   if (is_array($string)) { 
     3666  if (is_array($string) || is_object($string)) { 
    36673667    fwrite($fh,print_r($string,true)."\n"); 
    36683668  } else { 
     
    36783678 
    36793679/** Log an error to the (database-based) log 
    3680  * @param  string   The section or script where the error occured 
     3680 * @param  string   The section or script where the error occurred 
    36813681 * @param  string   The level/severity of the error. Valid levels: 'error', 'warning', 'debug', 'devel-debug' 
    36823682 * @param  string   The error message 
  • freepbx/trunk/amp_conf/htdocs/admin/i18n/fr_FR/LC_MESSAGES/amp.po

    r7646 r8560  
    1 # SOME DESCRIPTIVE TITLE. 
    2 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER 
    3 # This file is distributed under the same license as the PACKAGE package. 
    4 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. 
     1# This file is part of FreePBX. 
    52# 
     3#    FreePBX is free software: you can redistribute it and/or modify 
     4#    it under the terms of the GNU General Public License as published by 
     5#    the Free Software Foundation, either version 2 of the License, or 
     6#    (at your option) any later version. 
     7# 
     8#    FreePBX is distributed in the hope that it will be useful, 
     9#    but WITHOUT ANY WARRANTY; without even the implied warranty of 
     10#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     11#    GNU General Public License for more details. 
     12# 
     13#    You should have received a copy of the GNU General Public License 
     14#    along with FreePBX.  If not, see <http://www.gnu.org/licenses/>. 
     15# 
     16# Copyright (C) 2009 Jouniaux, c.jouniaux@techtelecom.fr 
     17# 
     18#, fuzzy 
    619msgid "" 
    720msgstr "" 
    821"Project-Id-Version: AMP_1.10.008\n" 
    922"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2008-10-10 03:46+0200\n" 
     23"POT-Creation-Date: 2008-11-12 23:00+0100\n" 
    1124"PO-Revision-Date: 2008-12-10 19:28+0100\n" 
    1225"Last-Translator: Jouniaux <c.jouniaux@techtelecom.fr>\n" 
     
    1629"Content-Transfer-Encoding: 8bit\n" 
    1730 
    18 #: amp_conf/htdocs/admin/featurecodes.class.php:289 
     31#: admin/components.class.php:362 admin/modules/core/page.did.php:313 
     32msgid "Submit" 
     33msgstr "Soumettre" 
     34 
     35#: admin/config.php:34 
     36msgid "Tools" 
     37msgstr "Outils" 
     38 
     39#: admin/config.php:35 
     40msgid "Setup" 
     41msgstr "Configuration" 
     42 
     43#: admin/config.php:36 
     44msgid "Call Cost" 
     45msgstr "" 
     46 
     47#: admin/featurecodes.class.php:289 
    1948msgid "** MISSING FEATURE CODE **" 
    2049msgstr "**CODE FONCTION MANQUANT**" 
    2150 
    22 #: amp_conf/htdocs/admin/header.php:134 
     51#: admin/functions.inc.php:392 
     52#, php-format 
     53msgid "Cronmanager encountered %s Errors" 
     54msgstr "Cronmanager a rencontré %s erreurs." 
     55 
     56#: admin/functions.inc.php:393 
     57msgid "The following commands failed with the listed error" 
     58msgstr "Echecs des commandes suivantes avec les erreurs suivantes" 
     59 
     60#: admin/functions.inc.php:765 
     61#, php-format 
     62msgid "Missing or unreadable config file (%s)...cannot continue" 
     63msgstr "" 
     64"Fichier de configuration manquant ou non lisible (%s)..ne peut continuer" 
     65 
     66#: admin/functions.inc.php:1044 
     67msgid "Objects" 
     68msgstr "Objets" 
     69 
     70#: admin/functions.inc.php:1044 
     71msgid "Object" 
     72msgstr "Objet" 
     73 
     74#: admin/functions.inc.php:1045 
     75#, php-format 
     76msgid "Used as Destination by %s %s" 
     77msgstr "Utilisé comme destination par %s %s" 
     78 
     79#: admin/functions.inc.php:1504 admin/functions.inc.php:1574 
     80#, php-format 
     81msgid "Exit code was %s and output was: %s" 
     82msgstr "Code sortie était %s et message de sortie était: %s" 
     83 
     84#: admin/functions.inc.php:1505 admin/functions.inc.php:1575 
     85#, php-format 
     86msgid "Could not run %s script." 
     87msgstr "Ne peut exécuter le script %s" 
     88 
     89#: admin/functions.inc.php:1522 
     90#, php-format 
     91msgid "Reload failed because retrieve_conf encountered an error: %s" 
     92msgstr "Rechargement à échouer car retrieve_conf a rencontré l'erreur : %s" 
     93 
     94#: admin/functions.inc.php:1524 admin/functions.inc.php:1532 
     95msgid "retrieve_conf failed, config not applied" 
     96msgstr "echec de retrieve_conf, configuration non activée" 
     97 
     98#: admin/functions.inc.php:1530 
     99msgid "" 
     100"Reload failed because FreePBX could not connect to the asterisk manager " 
     101"interface." 
     102msgstr "" 
     103"Le rechargement a échoué car FreePBX ne peut se connecter à l'interface de " 
     104"gestion d'Asterisk" 
     105 
     106#: admin/functions.inc.php:1544 
     107msgid "Successfully reloaded" 
     108msgstr "Téléchargement réussi" 
     109 
     110#: admin/functions.inc.php:1553 
     111msgid "" 
     112"Could not reload the FOP operator panel server using the bounce_op.sh " 
     113"script. Configuration changes may not be reflected in the panel display." 
     114msgstr "" 
     115"Ne peut recharger le serveur Opérateur avec le script bounce_op.sh. Les " 
     116"changements de configuration ne seront peut être pas pris en compte dans " 
     117"l'affichage." 
     118 
     119#: admin/functions.inc.php:1554 
     120msgid "Could not reload FOP server" 
     121msgstr "Ne peut recharger le serveur FOP" 
     122 
     123#: admin/functions.inc.php:1566 
     124msgid "" 
     125"Successful reload, but could not clear reload flag due to a database error: " 
     126msgstr "" 
     127"Rechargement réussi mais impossible d'effacer le flag de rechargement à " 
     128"cause d'une erreur de la base données" 
     129 
     130#: admin/functions.inc.php:1615 admin/modules/core/functions.inc.php:4721 
     131#: admin/modules/core/functions.inc.php:4723 
     132#: admin/modules/core/page.routing.php:578 
     133msgid "Add" 
     134msgstr "Ajout" 
     135 
     136#: admin/functions.inc.php:2055 
     137msgid "Unknown Destination" 
     138msgstr "Destination inconnue" 
     139 
     140#: admin/functions.inc.php:2055 
     141msgid "" 
     142"ERROR: You have an unknown destination. If this was carried over as a Custom " 
     143"App from an earlier version, you must go register the destination in the " 
     144"Custom Destination tab provided by the Custom Applications module.<br />This " 
     145"will remain active until you change it but you can no longer edit or add a " 
     146"new one here." 
     147msgstr "" 
     148"ERREUR: vous avez une destination inconnue. Si cela provient d'une " 
     149"application particuliÚre d'une ancienne version, vous devez enregistrer la " 
     150"destination dans la tabulation Destination Personnalisée fourni par le " 
     151"module Applications Personnalisées.<br /> Cela restera actif jusqu'à ce que " 
     152"vous le changiez mais vous ne pouvez plus éditer ou ajouter ici. " 
     153 
     154#: admin/functions.inc.php:2313 
     155msgid "" 
     156"The following new modules are available for download. Click delete icon on " 
     157"the right to remove this notice." 
     158msgstr "" 
     159"Les nouveaux modules suivants sont disponibles au téléchargement. Cliquer " 
     160"sur l'icÃŽne supprimer à droite pour retirer cette information." 
     161 
     162#: admin/functions.inc.php:2317 
     163#, php-format 
     164msgid "%s New modules are available" 
     165msgstr "%s nouveaux modules sont disponibles" 
     166 
     167#: admin/functions.inc.php:2351 
     168msgid "There is 1 module available for online upgrade" 
     169msgstr "Il y a un nouveau module disponible pour téléchargement" 
     170 
     171#: admin/functions.inc.php:2353 
     172#, php-format 
     173msgid "There are %s modules available for online upgrades" 
     174msgstr "Il y a %s modules disponibles au téléchargement" 
     175 
     176#: admin/functions.inc.php:2357 
     177#, php-format 
     178msgid "%s (current: %s)" 
     179msgstr "%s (actuellement: %s)" 
     180 
     181#: admin/functions.inc.php:2559 
     182#, php-format 
     183msgid "Module %s is required, but yours is broken. You should reinstall " 
     184msgstr "" 
     185"Le module %s est requis mais le vÃŽtre ne fonctionne pas. Vous devriez le " 
     186"réinstaller." 
     187 
     188#: admin/functions.inc.php:2560 
     189#, php-format 
     190msgid "it and try again." 
     191msgstr "et réessayer." 
     192 
     193#: admin/functions.inc.php:2563 
     194#, php-format 
     195msgid "Module %s is required, but yours is disabled." 
     196msgstr "Le module %s est requie mais le vÃŽtre est désactivé." 
     197 
     198#: admin/functions.inc.php:2566 
     199#, php-format 
     200msgid "Module %s is required, but yours is disabled because it needs to " 
     201msgstr "Le module %s est requis mais le vÃŽtre doit être" 
     202 
     203#: admin/functions.inc.php:2567 
     204#, php-format 
     205msgid "be upgraded. Please upgrade %s first, and then try again." 
     206msgstr "mis à jour. Merci de mettre à jour %s puis essayez de nouveau." 
     207 
     208#: admin/functions.inc.php:2572 
     209#, php-format 
     210msgid "Module %s is required, yours is not installed." 
     211msgstr "Le module %s est  requis, il n'est pas installé" 
     212 
     213#: admin/functions.inc.php:2576 
     214#, php-format 
     215msgid "Module %s is required." 
     216msgstr "Le module %s est requis" 
     217 
     218#: admin/functions.inc.php:2585 
     219#, php-format 
     220msgid "File %s must exist." 
     221msgstr "Le fichier %s doit exister" 
     222 
     223#: admin/functions.inc.php:2632 
     224#, php-format 
     225msgid "Requires engine %s, you have: %s" 
     226msgstr "A besoin du moteur %s, vous avez: %s" 
     227 
     228#: admin/functions.inc.php:2634 
     229#, php-format 
     230msgid "Requires one of the following engines: %s; you have: %s" 
     231msgstr "A besoin d'un des moteurs suivants : %s; vous avez : %s" 
     232 
     233#: admin/functions.inc.php:2649 
     234#, php-format 
     235msgid "A %s version below %s is required, you have %s" 
     236msgstr "La version %s  sous %s est requise. Celle installée est %s" 
     237 
     238#: admin/functions.inc.php:2652 
     239#, php-format 
     240msgid "%s version %s or below is required, you have %s" 
     241msgstr "Les versions %s ou %s sont requises. Celle installée est %s" 
     242 
     243#: admin/functions.inc.php:2655 
     244#, php-format 
     245msgid "A %s version newer than %s required, you have %s" 
     246msgstr "" 
     247"La nouvelle version %s plus récente que %s est requise. Celle installée est %" 
     248"s" 
     249 
     250#: admin/functions.inc.php:2658 
     251#, php-format 
     252msgid "Your %s version (%s) is incompatible." 
     253msgstr "Votre version %s (%s) est incompatible" 
     254 
     255#: admin/functions.inc.php:2661 
     256#, php-format 
     257msgid "Only %s version %s is compatible, you have %s" 
     258msgstr "Seule la version %s %s est compatible. Celle installée est %s" 
     259 
     260#: admin/functions.inc.php:2665 
     261#, php-format 
     262msgid "%s version %s or higher is required, you have %s" 
     263msgstr "La version %s %s ou plus est requise. Celle installée est %s" 
     264 
     265#: admin/functions.inc.php:2723 
     266msgid "Module is already enabled" 
     267msgstr "Le module est déjà activé" 
     268 
     269#: admin/functions.inc.php:2728 
     270msgid "Module cannot be enabled" 
     271msgstr "Le module ne peut être activé" 
     272 
     273#: admin/functions.inc.php:2775 
     274msgid "Module not found in repository" 
     275msgstr "Module non trouvé dans le dépÃŽt" 
     276 
     277#: admin/functions.inc.php:2808 admin/functions.inc.php:2904 
     278#: admin/functions.inc.php:2982 
     279#, php-format 
     280msgid "Could not remove %s to install new version" 
     281msgstr "Ne peut retirer %s pour installer la nouvelle version" 
     282 
     283#: admin/functions.inc.php:2812 admin/functions.inc.php:2908 
     284#: admin/functions.inc.php:2986 
     285#, php-format 
     286msgid "Could not untar %s to %s" 
     287msgstr "Ne peut décompresser %s vers %s" 
     288 
     289#: admin/functions.inc.php:2816 admin/functions.inc.php:2912 
     290#: admin/functions.inc.php:2990 
     291#, php-format 
     292msgid "Could not remove old module %s to install new version" 
     293msgstr "Ne peut retirer l'ancien module %s pour installer la nouvelle version" 
     294 
     295#: admin/functions.inc.php:2820 admin/functions.inc.php:2916 
     296#: admin/functions.inc.php:2994 
     297#, php-format 
     298msgid "Could not move %s to %s" 
     299msgstr "Ne peut déplacer %s vers %s" 
     300 
     301#: admin/functions.inc.php:2841 
     302#, php-format 
     303msgid "Error opening %s for writing" 
     304msgstr "Erreur lors de l'ouverture de %s pour écriture" 
     305 
     306#: admin/functions.inc.php:2857 admin/functions.inc.php:2860 
     307#, php-format 
     308msgid "Error opening %s for reading" 
     309msgstr "Erreur lors de l'ouverture de %s pour lecture" 
     310 
     311#: admin/functions.inc.php:2880 
     312#, php-format 
     313msgid "Unable to save %s" 
     314msgstr "Impossible de sauvegarder %s" 
     315 
     316#: admin/functions.inc.php:2888 
     317#, php-format 
     318msgid "File Integrity failed for %s - aborting" 
     319msgstr "Erreur intégrité de fichier pour %s - arrêt" 
     320 
     321#: admin/functions.inc.php:2933 
     322msgid "" 
     323"Error finding uploaded file - check your PHP and/or web server configuration" 
     324msgstr "" 
     325"Erreur pour trouver le fichier téléchargé - vérifiez la configuration de " 
     326"votre serveur PHP et/ou Web" 
     327 
     328#: admin/functions.inc.php:2938 
     329msgid "File must be in tar+gzip (.tgz or .tar.gz) format" 
     330msgstr "Le fichier doit être au format tar+gzip (.tar ou .tar.gz)" 
     331 
     332#: admin/functions.inc.php:2943 
     333msgid "" 
     334"Filename not in correct format: must be modulename-version.tar.gz (eg. " 
     335"custommodule-0.1.tar.gz)" 
     336msgstr "" 
     337"Le nom de fichier n'est pas correcte: doit être sous la forme nom_module-" 
     338"version.tar.gz (par exemple custommodule-0.1.tar.gz)" 
     339 
     340#: admin/functions.inc.php:2952 
     341#, php-format 
     342msgid "Error creating temporary directory: %s" 
     343msgstr "Erreur lors de la création du répertoire temporaire: %s" 
     344 
     345#: admin/functions.inc.php:2960 
     346msgid "Error untaring uploaded file. Must be a tar+gzip file" 
     347msgstr "" 
     348"Erreur lors de la décompression du fichier téléchargé. Doit être au format " 
     349"tar+gzip" 
     350 
     351#: admin/functions.inc.php:2999 
     352#, php-format 
     353msgid "Error removing temporary directory: %s" 
     354msgstr "Erreur suppression répertoire temporaire: %s" 
     355 
     356#: admin/functions.inc.php:3028 
     357msgid "Cannot find module" 
     358msgstr "Impossible de trouver le module" 
     359 
     360#: admin/functions.inc.php:3034 
     361msgid "Could not read module.xml" 
     362msgstr "Ne peut lire module.xml" 
     363 
     364#: admin/functions.inc.php:3039 
     365msgid "" 
     366"This module is broken and cannot be installed. You should try to download it " 
     367"again." 
     368msgstr "" 
     369"Ce module est incomplet et ne peut être installé. Vous devriez le " 
     370"télécharger à nouveau" 
     371 
     372#: admin/functions.inc.php:3058 
     373msgid "Failed to run installation scripts" 
     374msgstr "Impossible d'exécuter les cripts d'installation" 
     375 
     376#: admin/functions.inc.php:3072 
     377#, php-format 
     378msgid "Error updating database. Command was: %s; error was: %s " 
     379msgstr "Erreur mise à jour base. Commande : %s; erreur : %s" 
     380 
     381#: admin/functions.inc.php:3106 admin/functions.inc.php:3134 
     382#: admin/functions.inc.php:3171 
     383msgid "Specified module not found" 
     384msgstr "Module demandé non trouvé" 
     385 
     386#: admin/functions.inc.php:3111 
     387msgid "Module not enabled: cannot disable" 
     388msgstr "Module non activé donc ne peut être désactivé" 
     389 
     390#: admin/functions.inc.php:3115 admin/functions.inc.php:3143 
     391msgid "Cannot disable: The following modules depend on this one: " 
     392msgstr "Ne peut désactivé: les modules suivants en dépendent:" 
     393 
     394#: admin/functions.inc.php:3139 
     395msgid "Module not installed: cannot uninstall" 
     396msgstr "Module non installé : ne peut être désinstallé" 
     397 
     398#: admin/functions.inc.php:3150 
     399msgid "Error updating database: " 
     400msgstr "Erreur de mise à jour de la base:" 
     401 
     402#: admin/functions.inc.php:3154 
     403msgid "Failed to run un-installation scripts" 
     404msgstr "Impossible de démarrer les scripts de désinstallation" 
     405 
     406#: admin/functions.inc.php:3184 
     407#, php-format 
     408msgid "Cannot delete directory %s" 
     409msgstr "Ne peut supprimer le répertoire %s" 
     410 
     411#: admin/functions.inc.php:3191 
     412#, php-format 
     413msgid "Error deleting directory %s (code %d)" 
     414msgstr "Erreur suppression répertoire %s (code %d)" 
     415 
     416#: admin/functions.inc.php:3572 
     417#, php-format 
     418msgid "You have %s disabled modules" 
     419msgstr "Vous avez %s modules désactivés." 
     420 
     421#: admin/functions.inc.php:3572 
     422msgid "You have a disabled module" 
     423msgstr "Vous avez désactivé le module" 
     424 
     425#: admin/functions.inc.php:3573 
     426msgid "The following modules are disabled because they need to be upgraded:" 
     427msgstr "Les modules suivants sont désactivés car ils doivent être mis à jour." 
     428 
     429#: admin/functions.inc.php:3574 admin/functions.inc.php:3582 
     430msgid "You should go to the module admin page to fix these." 
     431msgstr "" 
     432"Vous devriez aller dans le module Administration pour résoudre ce problÚme" 
     433 
     434#: admin/functions.inc.php:3580 
     435#, php-format 
     436msgid "You have %s broken modules" 
     437msgstr "Vous avez %s modules défaillants" 
     438 
     439#: admin/functions.inc.php:3580 
     440msgid "You have a broken module" 
     441msgstr "Vous avez un module défaillant" 
     442 
     443#: admin/functions.inc.php:3581 
     444msgid "The following modules are disabled because they are broken:" 
     445msgstr "Les modules suivants sont désactivés car ils sont défaillants" 
     446 
     447#: admin/header_auth.php:43 admin/header_auth.php:70 
     448msgid "Administration" 
     449msgstr "Administration" 
     450 
     451#: admin/header.php:134 
    23452msgid "Default Asterisk Manager Password Used" 
    24453msgstr "Mot de passe Administrateur Asterisk utilisé par défaut" 
    25454 
    26 #: amp_conf/htdocs/admin/header.php:134 
    27 msgid "You are using the default Asterisk Manager password that is widely known, you should set a secure password" 
    28 msgstr "Vous utilisez le mot de passe Administrateur Asterisk qui est connu. Vous devriez utiliser un autre mot de passe" 
    29  
    30 #: amp_conf/htdocs/admin/views/welcome.php:3 
     455#: admin/header.php:134 
     456msgid "" 
     457"You are using the default Asterisk Manager password that is widely known, " 
     458"you should set a secure password" 
     459msgstr "" 
     460"Vous utilisez le mot de passe Administrateur Asterisk qui est connu. Vous " 
     461"devriez utiliser un autre mot de passe" 
     462 
     463#: admin/page.modules.php:129 
     464msgid "Module Administration" 
     465msgstr "Administration des modules" 
     466 
     467#: admin/page.modules.php:146 
     468#, php-format 
     469msgid "" 
     470"Warning: Cannot connect to online repository (%s). Online modules are not " 
     471"available." 
     472msgstr "" 
     473"Attention: ne peut se connecter au dépÃŽt (%s). Les modules ne sont pas " 
     474"accessibles." 
     475 
     476#: admin/page.modules.php:150 
     477#, php-format 
     478msgid "" 
     479"Warning: Error retrieving updates from online repository (%s). Online " 
     480"modules are not available." 
     481msgstr "" 
     482"Attention: erreur de mise à jour provenant du dépÃŽt (%s). Les modules ne " 
     483"sont pas accessibles." 
     484 
     485#: admin/page.modules.php:190 
     486msgid "Please wait while module actions are performed" 
     487msgstr "Merci de patienter: exécution en cours" 
     488 
     489#: admin/page.modules.php:203 
     490#, php-format 
     491msgid "Downloading %s" 
     492msgstr "Chargement %s" 
     493 
     494#: admin/page.modules.php:205 
     495#, php-format 
     496msgid "Error(s) downloading %s" 
     497msgstr "Erreur téléchargement %s" 
     498 
     499#: admin/page.modules.php:210 admin/page.modules.php:222 
     500#, php-format 
     501msgid "Error(s) installing %s" 
     502msgstr "Erreur installation %s" 
     503 
     504#: admin/page.modules.php:214 admin/page.modules.php:226 
     505#, php-format 
     506msgid "%s installed successfully" 
     507msgstr "%s installé avec succÚs" 
     508 
     509#: admin/page.modules.php:232 
     510#, php-format 
     511msgid "Error(s) enabling %s" 
     512msgstr "Erreur activation %s" 
     513 
     514#: admin/page.modules.php:236 
     515#, php-format 
     516msgid "%s enabled successfully" 
     517msgstr "%s activé avec succÚs" 
     518 
     519#: admin/page.modules.php:241 
     520#, php-format 
     521msgid "Error(s) disabling %s" 
     522msgstr "Erreur désactivation %s" 
     523 
     524#: admin/page.modules.php:245 
     525#, php-format 
     526msgid "%s disabled successfully" 
     527msgstr "%s désactivé avec succÚs" 
     528 
     529#: admin/page.modules.php:251 
     530#, php-format 
     531msgid "Error(s) uninstalling %s" 
     532msgstr "Erreur désinstallation %s" 
     533 
     534#: admin/page.modules.php:255 
     535#, php-format 
     536msgid "%s uninstalled successfully" 
     537msgstr "%s désinstallé avec succÚs" 
     538 
     539#: admin/page.modules.php:271 admin/page.modules.php:273 
     540msgid "Return" 
     541msgstr "Retour" 
     542 
     543#: admin/page.modules.php:304 admin/page.modules.php:328 
     544#, php-format 
     545msgid "" 
     546"%s cannot be upgraded: %s Please try again after the dependencies have been " 
     547"installed." 
     548msgstr "" 
     549"%s ne peut être mis à jour: %s Réessayez quand les dépendances auront été " 
     550"installées" 
     551 
     552#: admin/page.modules.php:308 
     553#, php-format 
     554msgid "%s %s will be upgraded to online version %s" 
     555msgstr "%s %s sera mis à jour avec la version en ligne %s" 
     556 
     557#: admin/page.modules.php:316 admin/page.modules.php:328 
     558#, php-format 
     559msgid "" 
     560"%s cannot be installed: %s Please try again after the dependencies have been " 
     561"installed." 
     562msgstr "" 
     563"%s ne peut être installé: %s Réessayez quand les dépendances auront été " 
     564"installées" 
     565 
     566#: admin/page.modules.php:320 
     567#, php-format 
     568msgid "%s %s will be downloaded and installed" 
     569msgstr "%s %s va être téléchargé et installé" 
     570 
     571#: admin/page.modules.php:333 
     572#, php-format 
     573msgid "%s %s will be upgraded to %s" 
     574msgstr "%s %s va être installé et mis à jour à %s" 
     575 
     576#: admin/page.modules.php:335 
     577#, php-format 
     578msgid "%s %s will be installed and enabled" 
     579msgstr "%s %s va être installé et activé" 
     580 
     581#: admin/page.modules.php:343 
     582#, php-format 
     583msgid "" 
     584"%s cannot be enabled: %s Please try again after the dependencies have been " 
     585"installed." 
     586msgstr "" 
     587"%s ne peut être activé: %s Réessayez quand les dépendances auront été " 
     588"installées" 
     589 
     590#: admin/page.modules.php:347 
     591#, php-format 
     592msgid "%s %s will be enabled" 
     593msgstr "%s %s va être activé" 
     594 
     595#: admin/page.modules.php:353 
     596#, php-format 
     597msgid "" 
     598"%s cannot be disabled because the following modules depend on it: %s Please " 
     599"disable those modules first then try again." 
     600msgstr "" 
     601"%s ne peut être désactivé car le module %s en dépend. Désactivé d'abord ces " 
     602"modules puis réessayer." 
     603 
     604#: admin/page.modules.php:357 
     605#, php-format 
     606msgid "%s %s will be disabled" 
     607msgstr "%s %s va être désactivé" 
     608 
     609#: admin/page.modules.php:364 
     610#, php-format 
     611msgid "" 
     612"%s cannot be uninstalled because the following modules depend on it: %s " 
     613"Please disable those modules first then try again." 
     614msgstr "" 
     615"%s ne peut être désactivé car le module %s en dépend. Désactivé d'abord ces " 
     616"modules puis réessayer." 
     617 
     618#: admin/page.modules.php:368 
     619#, php-format 
     620msgid "%s %s will be uninstalled" 
     621msgstr "%s %s va être désinstallé" 
     622 
     623#: admin/page.modules.php:385 
     624msgid "Errors with selection:" 
     625msgstr "Erreurs avec sélection:" 
     626 
     627#: admin/page.modules.php:394 
     628msgid "" 
     629"You may confirm the remaining selection and then try the again for the " 
     630"listed issues once the required dependencies have been met:" 
     631msgstr "" 
     632"Vous pouvez confirmer la sélection restante et essayez de nouveau pour les " 
     633"éléments listés une fois que les dépendances requises sont respectées." 
     634 
     635#: admin/page.modules.php:396 
     636msgid "Please confirm the following actions:" 
     637msgstr "Merci de confirmer les actions suivantes:" 
     638 
     639#: admin/page.modules.php:403 
     640msgid "Confirm" 
     641msgstr "Confirmer" 
     642 
     643#: admin/page.modules.php:405 
     644msgid "No actions to perform" 
     645msgstr "Aucune action à exécuter" 
     646 
     647#: admin/page.modules.php:406 
     648msgid "" 
     649"Please select at least one action to perform by clicking on the module, and " 
     650"selecting an action on the \"Action\" tab." 
     651msgstr "" 
     652"Merci de sélectionner au moins une action à exécuter en cliquant sur le " 
     653"module ainsi que sur la tabulation \"Action\"" 
     654 
     655#: admin/page.modules.php:408 admin/views/freepbx_reload.php:111 
     656msgid "Cancel" 
     657msgstr "Abandonner" 
     658 
     659#: admin/page.modules.php:414 admin/page.modules.php:466 
     660msgid "Manage local modules" 
     661msgstr "Gestion des modules locaux" 
     662 
     663#: admin/page.modules.php:416 admin/page.modules.php:471 
     664msgid "Check for updates online" 
     665msgstr "Rechercher des mises à jour" 
     666 
     667#: admin/page.modules.php:416 admin/page.modules.php:471 
     668msgid "" 
     669"Checking for updates will transmit your FreePBX and Asterisk version numbers " 
     670"along with a unique but random identifier. This is used to provide proper " 
     671"update information and track version usage to focus development and " 
     672"maintenance efforts. No private information is transmitted." 
     673msgstr "" 
     674"Rechercher des mises à jour transmet les numéros de version de FreePBX et " 
     675"d'Asterisk avec un identifiant unique. Cela permet de fournir des " 
     676"informations de mises à jour pertinentes et de suivre l'utilisation des " 
     677"versions pour le développement et la maintenance. Aucune information privée " 
     678"n'est transmise." 
     679 
     680#: admin/page.modules.php:421 admin/page.modules.php:473 
     681msgid "Upload module" 
     682msgstr "Chargement d'un module" 
     683 
     684#: admin/page.modules.php:427 
     685#, php-format 
     686msgid "The following error(s) occurred processing the uploaded file: %s" 
     687msgstr "" 
     688"L'erreur suivante s'est produite pendant le téléchargement du fichier : %s" 
     689 
     690#: admin/page.modules.php:429 
     691#, php-format 
     692msgid "You should fix the problem or select another file and %s." 
     693msgstr "Vous devez résoudre ce problÚme ou sélectionner un autre fichier et %s" 
     694 
     695#: admin/page.modules.php:430 
     696msgid "try again" 
     697msgstr "essayer de nouveau" 
     698 
     699#: admin/page.modules.php:434 
     700#, php-format 
     701msgid "" 
     702"Module uploaded successfully. You need to enable the module using %s to make " 
     703"it available." 
     704msgstr "Module téléchargé avec succÚs. Vous devez l'activer en utilsant %s." 
     705 
     706#: admin/page.modules.php:435 
     707msgid "local module administration" 
     708msgstr "Administration des Modules locaux" 
     709 
     710#: admin/page.modules.php:440 
     711msgid "" 
     712"You can upload a tar gzip file containing a FreePBX module from your local " 
     713"system. If a module with the same name already exists, it will be " 
     714"overwritten." 
     715msgstr "" 
     716"Vous pouvez télécharger un fichier tar gzip contenant un module de votre " 
     717"systÚme local. Si un module ayant le même nom existe, il sera remplacé." 
     718 
     719#: admin/page.modules.php:467 
     720msgid "Show only upgradable" 
     721msgstr "Ne montrer que les mises à jour" 
     722 
     723#: admin/page.modules.php:484 admin/page.modules.php:768 
     724msgid "Download all" 
     725msgstr "Téléchargements de tous" 
     726 
     727#: admin/page.modules.php:485 admin/page.modules.php:769 
     728msgid "Upgrade all" 
     729msgstr "Mis à jour de tous" 
     730 
     731#: admin/page.modules.php:487 admin/page.modules.php:771 
     732msgid "Reset" 
     733msgstr "Remise à 0" 
     734 
     735#: admin/page.modules.php:488 admin/page.modules.php:772 
     736msgid "Process" 
     737msgstr "Exécution" 
     738 
     739#: admin/page.modules.php:494 
     740msgid "Module" 
     741msgstr "Module" 
     742 
     743#: admin/page.modules.php:495 
     744msgid "Type" 
     745msgstr "Type" 
     746 
     747#: admin/page.modules.php:496 
     748msgid "Version" 
     749msgstr "Version" 
     750 
     751#: admin/page.modules.php:510 admin/page.modules.php:585 
     752msgid "Broken" 
     753msgstr "Cassé" 
     754 
     755#: admin/page.modules.php:541 admin/page.modules.php:546 
     756#: admin/views/freepbx_admin.php:107 admin/views/freepbx_admin.php:112 
     757#: admin/modules/core/page.ampusers.php:223 
     758#: admin/modules/core/page.ampusers.php:227 
     759msgid "name" 
     760msgstr "Nom" 
     761 
     762#: admin/page.modules.php:562 
     763msgid "Not Installed (Locally available)" 
     764msgstr "Non installé (disponible en local)" 
     765 
     766#: admin/page.modules.php:564 
     767#, php-format 
     768msgid "Not Installed (Available online: %s)" 
     769msgstr "Non installé (disponible réseau: %s)" 
     770 
     771#: admin/page.modules.php:571 
     772#, php-format 
     773msgid "Disabled; Online upgrade available (%s)" 
     774msgstr "Désactivé; mise à jour réseau disponible (%s)" 
     775 
     776#: admin/page.modules.php:573 
     777#, php-format 
     778msgid "Disabled; Newer than online version (%s)" 
     779msgstr "Désactive; plus récent que la version réseau (%s)" 
     780 
     781#: admin/page.modules.php:575 
     782msgid "Disabled; up to date" 
     783msgstr "Désactivé; mis à jour" 
     784 
     785#: admin/page.modules.php:578 admin/modules/core/page.general.php:140 
     786msgid "Disabled" 
     787msgstr "Désactivé" 
     788 
     789#: admin/page.modules.php:582 
     790#, php-format 
     791msgid "Disabled; Pending upgrade to %s" 
     792msgstr "Désactivé; attente mise à jour vers %s" 
     793 
     794#: admin/page.modules.php:592 
     795#, php-format 
     796msgid "Online upgrade available (%s)" 
     797msgstr "Mise à jour réseau disponible (%s)" 
     798 
     799#: admin/page.modules.php:594 
     800#, php-format 
     801msgid "Newer than online version (%s)" 
     802msgstr "Plus récent que la version réseau (%s)" 
     803 
     804#: admin/page.modules.php:596 
     805msgid "Enabled and up to date" 
     806msgstr "Activé et à jour" 
     807 
     808#: admin/page.modules.php:600 
     809msgid "Enabled; Not available online" 
     810msgstr "Activé, non disponible réseau" 
     811 
     812#: admin/page.modules.php:602 admin/modules/core/page.general.php:139 
     813msgid "Enabled" 
     814msgstr "Activé" 
     815 
     816# msgid "DID Number" 
     817# msgstr "Num&eacute;ro DID" 
     818# msgid "Set Destination" 
     819# msgstr "Choisir la destination" 
     820# msgid "Use 'Incoming Calls' settings" 
     821# msgstr "Utiliser les r&eacute;glages 'Appels entrants'" 
     822# ### Fin message DID 
     823#: admin/page.modules.php:620 
     824msgid "Attention" 
     825msgstr "Attention" 
     826 
     827# msgid "DID Number" 
     828# msgstr "Num&eacute;ro DID" 
     829# msgid "Set Destination" 
     830# msgstr "Choisir la destination" 
     831# msgid "Use 'Incoming Calls' settings" 
     832# msgstr "Utiliser les r&eacute;glages 'Appels entrants'" 
     833# ### Fin message DID 
     834#: admin/page.modules.php:621 
     835msgid "attention" 
     836msgstr "attention" 
     837 
     838#: admin/page.modules.php:625 
     839msgid "Action" 
     840msgstr "Action" 
     841 
     842#: admin/page.modules.php:628 
     843msgid "No Action" 
     844msgstr "Pas d'action" 
     845 
     846#: admin/page.modules.php:635 admin/page.modules.php:668 
     847msgid "Install" 
     848msgstr "Installation" 
     849 
     850#: admin/page.modules.php:638 
     851msgid "Download and Install" 
     852msgstr "Téléchargement et installation" 
     853 
     854#: admin/page.modules.php:644 admin/modules/core/functions.inc.php:4257 
     855#: admin/modules/core/functions.inc.php:4262 
     856#: admin/modules/core/page.trunks.php:399 
     857msgid "Enable" 
     858msgstr "Activation" 
     859 
     860#: admin/page.modules.php:647 admin/page.modules.php:662 
     861#: admin/page.modules.php:670 admin/page.modules.php:690 
     862msgid "Uninstall" 
     863msgstr "Désinstallation" 
     864 
     865#: admin/page.modules.php:652 
     866#, php-format 
     867msgid "Download %s, keep Disabled" 
     868msgstr "Téléchargement %s, reste désactivé" 
     869 
     870#: admin/page.modules.php:660 
     871#, php-format 
     872msgid "Upgrade to %s and Enable" 
     873msgstr "Mise à jour %s et activé" 
     874 
     875#: admin/page.modules.php:680 
     876#, php-format 
     877msgid "Download and Upgrade to %s" 
     878msgstr "Téléchargement et mis à jour %s" 
     879 
     880#: admin/page.modules.php:686 admin/modules/core/functions.inc.php:4258 
     881#: admin/modules/core/functions.inc.php:4261 
     882#: admin/modules/core/functions.inc.php:4265 
     883#: admin/modules/core/page.trunks.php:390 
     884msgid "Disable" 
     885msgstr "Désactivation" 
     886 
     887#: admin/page.modules.php:696 admin/modules/core/functions.inc.php:4754 
     888#: admin/modules/core/page.did.php:186 
     889#: admin/modules/core/page.zapchandids.php:99 
     890msgid "Description" 
     891msgstr "Description" 
     892 
     893#: admin/page.modules.php:698 
     894#, php-format 
     895msgid "Description for version %s" 
     896msgstr "Description de la version %s" 
     897 
     898#: admin/page.modules.php:699 
     899msgid "description" 
     900msgstr "description" 
     901 
     902#: admin/page.modules.php:701 
     903msgid "No description is available." 
     904msgstr "Aucune description disponible" 
     905 
     906#: admin/page.modules.php:704 admin/page.modules.php:706 
     907msgid "More info" 
     908msgstr "Plus d'infos" 
     909 
     910#: admin/page.modules.php:706 
     911#, php-format 
     912msgid "Get help for %s" 
     913msgstr "Aide pour %s" 
     914 
     915#: admin/page.modules.php:711 
     916msgid "Changelog" 
     917msgstr "Modifications" 
     918 
     919#: admin/page.modules.php:712 
     920#, php-format 
     921msgid "Change Log for version %s" 
     922msgstr "Modification version %s" 
     923 
     924#: admin/page.modules.php:732 
     925msgid "Debug" 
     926msgstr "Debogage" 
     927 
     928#: admin/page.modules.php:757 
     929msgid "All available modules are up-to-date and installed." 
     930msgstr "Tous les modules disponibles sont à jour et installés" 
     931 
     932#: admin/page.modules.php:759 
     933msgid "No modules to display." 
     934msgstr "Aucun module à afficher" 
     935 
     936#: admin/page.modules.php:809 
     937msgid "Untarring.." 
     938msgstr "Décompression: " 
     939 
     940#: admin/page.modules.php:829 
     941msgid "Done." 
     942msgstr "exécutée" 
     943 
     944#: admin/panel.php:18 
     945msgid "FreePBX: Flash Operator Panel" 
     946msgstr "FreePBX: Flash Operator Panel" 
     947 
     948#: admin/panel.php:19 
     949msgid "Flash Operator Panel" 
     950msgstr "Panneau Opérateur" 
     951 
     952# ######## DEBUT ANCIENS MESSAGES de RECORDINGS 
     953# ######## FIN ANCIENS MESSAGES de RECORDINGS 
     954#: admin/reports.php:18 
     955msgid "FreePBX: Call Detail Reports" 
     956msgstr "FreePBX : Rapports CDR" 
     957 
     958# ######## DEBUT ANCIENS MESSAGES de RECORDINGS 
     959# ######## FIN ANCIENS MESSAGES de RECORDINGS 
     960#: admin/reports.php:19 
     961msgid "Call Detail Reports" 
     962msgstr "Rapports des CDR" 
     963 
     964#: admin/reports.php:41 
     965msgid "Call Logs" 
     966msgstr "Journal des Appels" 
     967 
     968#: admin/reports.php:42 
     969msgid "Compare Calls" 
     970msgstr "Compare les Appels" 
     971 
     972#: admin/reports.php:43 
     973msgid "Monthly Traffic" 
     974msgstr "Trafic Mensuel" 
     975 
     976#: admin/reports.php:44 
     977msgid "Daily load" 
     978msgstr "Charge JournaliÚre" 
     979 
     980#: admin/views/freepbx_admin.php:87 admin/modules/core/page.ampusers.php:217 
     981msgid "category" 
     982msgstr "Catégorie" 
     983 
     984#: admin/views/freepbx_admin.php:178 
     985msgid "" 
     986"WARNING: Javascript is disabled in your browser. The FreePBX administration " 
     987"interface requires Javascript to run properly. Please enable javascript or " 
     988"switch to another  browser that supports it." 
     989msgstr "" 
     990"ATTENTION: Javascript n'est pas activé dans votre navigateur. Linterface " 
     991"d'administration de FreePBX nécessite Javascript pour fonctionner. Merci " 
     992"d'activer Javascript ou d'utilser un autre navigateur qui le supporte." 
     993 
     994#: admin/views/freepbx_admin.php:192 
     995#, php-format 
     996msgid "%s is a registered trademark of %s" 
     997msgstr "%s est une marque enregistrée de %s" 
     998 
     999#: admin/views/freepbx_admin.php:193 admin/views/freepbx_admin.php:196 
     1000#: admin/views/freepbx.php:141 admin/views/freepbx.php:150 
     1001msgid "FreePBX" 
     1002msgstr "FreePBX" 
     1003 
     1004#: admin/views/freepbx_admin.php:195 
     1005#, php-format 
     1006msgid "%s is licensed under %s" 
     1007msgstr "%s est licencié sous %s" 
     1008 
     1009#: admin/views/freepbx.php:148 
     1010#, php-format 
     1011msgid "%s %s on %s" 
     1012msgstr "%s %s sur %s" 
     1013 
     1014# ###### FIN ANCIENS MESSAGES de GENERAL 
     1015#: admin/views/freepbx.php:165 
     1016msgid "Management" 
     1017msgstr "Gestion" 
     1018 
     1019#: admin/views/freepbx.php:166 
     1020msgid "Admin" 
     1021msgstr "Administrateur" 
     1022 
     1023#: admin/views/freepbx.php:167 
     1024msgid "Reports" 
     1025msgstr "Rapports" 
     1026 
     1027#: admin/views/freepbx.php:169 
     1028msgid "Panel" 
     1029msgstr "Panneau" 
     1030 
     1031#: admin/views/freepbx.php:171 
     1032msgid "Recordings" 
     1033msgstr "Enregistrements" 
     1034 
     1035#: admin/views/freepbx.php:172 
     1036msgid "Help" 
     1037msgstr "Aide!" 
     1038 
     1039#: admin/views/freepbx.php:189 
     1040msgid "Logged in: " 
     1041msgstr "Connexion:" 
     1042 
     1043#: admin/views/freepbx.php:190 
     1044msgid "Logout" 
     1045msgstr "Déconnexion" 
     1046 
     1047#: admin/views/freepbx_reloadbar.php:3 
     1048msgid "Reload Required" 
     1049msgstr "Activation requise" 
     1050 
     1051#: admin/views/freepbx_reloadbar.php:4 admin/views/freepbx_reloadbar.php:5 
     1052#: admin/views/freepbx_reload.php:107 
     1053msgid "Apply Configuration Changes" 
     1054msgstr "Activer nouvelle configuration" 
     1055 
     1056#: admin/views/freepbx_reloadbar.php:5 
     1057#, php-format 
     1058msgid "" 
     1059"You have made changes to the configuration that have not yet been applied. " 
     1060"When you are finished making all changes, click on %s to put them into " 
     1061"effect." 
     1062msgstr "" 
     1063"Vous avez fait des changements de configuration qui n'ont pas été pris en " 
     1064"compte. Quand vous avez fini, cliquez sur %s pour les activer." 
     1065 
     1066#: admin/views/freepbx_reload.php:71 
     1067msgid "" 
     1068" error(s) occured, you should view the notification log on the dashboard or " 
     1069"main screen to check for more details." 
     1070msgstr "" 
     1071"Une erreur est survenue. Vous devriez regarder dans le statut systÚme ou " 
     1072"l'écran principal pour plus d'information." 
     1073 
     1074#: admin/views/freepbx_reload.php:75 admin/views/freepbx_reload.php:89 
     1075msgid "Close" 
     1076msgstr "Fermé" 
     1077 
     1078#: admin/views/freepbx_reload.php:76 
     1079msgid "Retry" 
     1080msgstr "Réessayer" 
     1081 
     1082#: admin/views/freepbx_reload.php:88 
     1083msgid "Error: Did not receive valid response from server" 
     1084msgstr "Erreur : n'a pas reçu de réponse valide du serveur" 
     1085 
     1086#: admin/views/freepbx_reload.php:108 
     1087msgid "" 
     1088"Reloading will apply all configuration changes made in FreePBX to your PBX " 
     1089"engine and make them active." 
     1090msgstr "" 
     1091"Activer appliquera tous les changements de configuration effectués avec " 
     1092"FreePBX à votre PaBX et les rendra actifs." 
     1093 
     1094#: admin/views/freepbx_reload.php:110 
     1095msgid "Accept" 
     1096msgstr "Accepter" 
     1097 
     1098#: admin/views/freepbx_reload.php:110 
     1099msgid "Continue with reload" 
     1100msgstr "Activer" 
     1101 
     1102#: admin/views/freepbx_reload.php:111 
     1103msgid "Cancel reload and go back to editing" 
     1104msgstr "Annuler Activer et retour à l'édition" 
     1105 
     1106#: admin/views/freepbx_reload.php:116 
     1107msgid "Please wait, reloading.." 
     1108msgstr "Activation en cours" 
     1109 
     1110#: admin/views/freepbx_reload.php:117 
     1111msgid "Loading..." 
     1112msgstr "Chargement..." 
     1113 
     1114#: admin/views/loggedout.php:4 
     1115msgid "Logged out" 
     1116msgstr "Déconnecté" 
     1117 
     1118#: admin/views/loggedout.php:5 
     1119msgid "You have been succesfully logged out." 
     1120msgstr "Vous avez été déconnecté avec suuccés" 
     1121 
     1122#: admin/views/loggedout.php:6 
     1123msgid "Log in" 
     1124msgstr "Connecté" 
     1125 
     1126#: admin/views/menuitem_disabled.php:3 
     1127#, php-format 
     1128msgid "[WARNING]: Menu Item: %s is disabled because asterisk is not running" 
     1129msgstr "" 
     1130"[Attention]: Choix menu : %s est désactivé car Asterisk ne fonctionne pas" 
     1131 
     1132#: admin/views/menuitem_disabled.php:4 
     1133msgid "" 
     1134"Restart Asterisk and then refresh the browser in order to try accessing this " 
     1135"menu item again." 
     1136msgstr "" 
     1137"Relancer Asterisk et actualiser la page pour accéder de nouveau à ce menu." 
     1138 
     1139#: admin/views/noaccess.php:4 
     1140msgid "Not found" 
     1141msgstr "Pas trouv&eacute;" 
     1142 
     1143#: admin/views/noaccess.php:5 
     1144msgid "" 
     1145"The section you requested does not exist or you do not have access to it." 
     1146msgstr "La section demandée n'existe pas ou vous n'y avez pas accÚs." 
     1147 
     1148#: admin/views/unauthorized.php:4 
     1149msgid "Unauthorized" 
     1150msgstr "Non autorisé" 
     1151 
     1152#: admin/views/unauthorized.php:5 
     1153msgid "You are not authorized to access this page." 
     1154msgstr "Vous n'êtes pas autorisés à accéder à cette page" 
     1155 
     1156#: admin/views/welcome_nomanager.php:2 
     1157msgid "Warning:" 
     1158msgstr "Attention:" 
     1159 
     1160#: admin/views/welcome_nomanager.php:5 
     1161msgid "Cannot connect to Asterisk Manager with " 
     1162msgstr "Ne peut se connecterau gestionnaire Asterisk avec " 
     1163 
     1164#: admin/views/welcome_nomanager.php:7 
     1165msgid "Asterisk may not be running." 
     1166msgstr "Asterisk n'est peut être pas lancé" 
     1167 
     1168#: admin/views/welcome.php:3 
    311169msgid "Welcome to FreePBX." 
    321170msgstr "Bienvenue sur FreePBX" 
    331171 
    34 #: amp_conf/htdocs/admin/views/welcome.php:9 
     1172#: admin/views/welcome.php:9 
    351173msgid "Critical" 
    361174msgstr "Critique" 
    371175 
    38 #: amp_conf/htdocs/admin/views/welcome.php:10 
     1176#: admin/views/welcome.php:10 
    391177msgid "Security" 
    401178msgstr "Sécurité" 
    411179 
    42 #: amp_conf/htdocs/admin/views/welcome.php:11 
     1180#: admin/views/welcome.php:11 
    431181msgid "Update" 
    441182msgstr "Mis à jour" 
    451183 
    46 #: amp_conf/htdocs/admin/views/welcome.php:12 
     1184#: admin/views/welcome.php:12 
    471185msgid "Error" 
    481186msgstr "Erreur" 
    491187 
    50 #: amp_conf/htdocs/admin/views/welcome.php:13 
     1188#: admin/views/welcome.php:13 
    511189msgid "Warning" 
    521190msgstr "Attention" 
    531191 
    54 #: amp_conf/htdocs/admin/views/welcome.php:14 
     1192#: admin/views/welcome.php:14 
    551193msgid "Notice" 
    561194msgstr "Remarque" 
    571195 
    58 #: amp_conf/htdocs/admin/views/welcome.php:36 
    59 msgid "If you're new to FreePBX, Welcome. Here are some quick instructions to get you started" 
    60 msgstr "Si vous êtes nouveau sur FreePbx, bienvenue. Voici quelques instructions rapides pour commencer" 
    61  
    62 #: amp_conf/htdocs/admin/views/welcome.php:40 
    63 #, php-format 
    64 msgid "" 
    65 "There are a large number of Plug-in modules available from the Online Repository. This is\n" 
     1196#: admin/views/welcome.php:36 
     1197msgid "" 
     1198"If you're new to FreePBX, Welcome. Here are some quick instructions to get " 
     1199"you started" 
     1200msgstr "" 
     1201"Si vous êtes nouveau sur FreePbx, bienvenue. Voici quelques instructions " 
     1202"rapides pour commencer" 
     1203 
     1204#: admin/views/welcome.php:40 
     1205#, php-format 
     1206msgid "" 
     1207"There are a large number of Plug-in modules available from the Online " 
     1208"Repository. This is\n" 
    661209"available by clicking on the <a href='%s'>Tools menu</a> up the top, then\n" 
    671210"<a href='%s'>Module Admin</a>, then\n" 
    681211"<a href='%s'>Check for updates online</a>.\n" 
    69 "Modules are updated and patched often, so if you are having a problem, it's worth checking there to see if there's\n" 
     1212"Modules are updated and patched often, so if you are having a problem, it's " 
     1213"worth checking there to see if there's\n" 
    701214"a new version of the module available." 
    711215msgstr "" 
     
    741218"<a href='%s'>Module Administration</a>, puis\n" 
    751219"<a href='%s'>Vérification des mises à jour</a>.\n" 
    76 "Les modules sont souvent mis à jour, aussi si vous vaez un problÚme, vérifiez qu'il n'y a pas \n" 
     1220"Les modules sont souvent mis à jour, aussi si vous vaez un problÚme, " 
     1221"vérifiez qu'il n'y a pas \n" 
    771222"une nouvelle version du module de disponible" 
    781223 
    79 #: amp_conf/htdocs/admin/views/welcome.php:54 
    80 #, php-format 
    81 msgid "" 
    82 "If you're having any problems, you can also use the <a href='%s'>Online Support</a> \n" 
    83 "module (<b>you need to install this through the <a href='%s'>Module Repository</a> first</b>)\n" 
    84 "to talk to other users and the devlopers in real time. Click on <a href='%s'>Start IRC</a>,\n" 
     1224#: admin/views/welcome.php:54 
     1225#, php-format 
     1226msgid "" 
     1227"If you're having any problems, you can also use the <a href='%s'>Online " 
     1228"Support</a> \n" 
     1229"module (<b>you need to install this through the <a href='%s'>Module " 
     1230"Repository</a> first</b>)\n" 
     1231"to talk to other users and the devlopers in real time. Click on <a href='%" 
     1232"s'>Start IRC</a>,\n" 
    851233"when the module is installed, to start a Java IRC client." 
    861234msgstr "" 
    87 "Si vous avez des problÚmes, vous pouvez aussi consulter <a href='%s'>Support Online</a> \n" 
    88 "module (<b> vous devez l'installer via <a href='%s'>DépÃŽt des Modules</a> first</b>)\n" 
    89 "pour parler avec d'autres utilisateurs ou les développeurs en temps réel. Cliquez sur <a href='%s'>Start IRC</a>,\n" 
     1235"Si vous avez des problÚmes, vous pouvez aussi consulter <a href='%s'>Support " 
     1236"Online</a> \n" 
     1237"module (<b> vous devez l'installer via <a href='%s'>DépÃŽt des Modules</a> " 
     1238"first</b>)\n" 
     1239"pour parler avec d'autres utilisateurs ou les développeurs en temps réel. " 
     1240"Cliquez sur <a href='%s'>Start IRC</a>,\n" 
    901241"quand le module est installé pour lancer le client IRC Java." 
    911242 
    92 #: amp_conf/htdocs/admin/views/welcome.php:66 
    93 #, php-format 
    94 msgid "" 
    95 "There is also a community based <a href='%s' target='_new'>FreePBX Web Forum</a> where you can post\n" 
     1243#: admin/views/welcome.php:66 
     1244#, php-format 
     1245msgid "" 
     1246"There is also a community based <a href='%s' target='_new'>FreePBX Web " 
     1247"Forum</a> where you can post\n" 
    961248"questions and search for answers for any problems you may be having." 
    971249msgstr "" 
    98 "Il y a aussi une communauté à <a href='%s' target='_new'>FreePBX Web Forum</a> où vous pouvez poser\n" 
     1250"Il y a aussi une communauté à <a href='%s' target='_new'>FreePBX Web Forum</" 
     1251"a> où vous pouvez poser\n" 
    991252"vos questions et chercher des réponses aux problÚmes que vous avez." 
    1001253 
    101 #: amp_conf/htdocs/admin/views/welcome.php:71 
     1254#: admin/views/welcome.php:71 
    1021255msgid "We hope you enjoy using FreePBX!" 
    1031256msgstr "Nous espérons que vous avez apprécié d'utiliser FreePBX!" 
    1041257 
    105 #: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:3 
    106 msgid "Reload Required" 
    107 msgstr "Activation requise" 
    108  
    109 #: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:4 
    110 #: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:5 
    111 #: amp_conf/htdocs/admin/views/freepbx_reload.php:107 
    112 msgid "Apply Configuration Changes" 
    113 msgstr "Activer nouvelle configuration" 
    114  
    115 #: amp_conf/htdocs/admin/views/freepbx_reloadbar.php:5 
    116 #, php-format 
    117 msgid "You have made changes to the configuration that have not yet been applied. When you are finished making all changes, click on %s to put them into effect." 
    118 msgstr "Vous avez fait des changements de configuration qui n'ont pas été pris en compte. Quand vous avez fini, cliquez sur %s pour les activer." 
    119  
    120 #: amp_conf/htdocs/admin/views/unauthorized.php:4 
    121 msgid "Unauthorized" 
    122 msgstr "Non autorisé" 
    123  
    124 #: amp_conf/htdocs/admin/views/unauthorized.php:5 
    125 msgid "You are not authorized to access this page." 
    126 msgstr "Vous n'êtes pas autorisés à accéder à cette page" 
    127  
    128 #: amp_conf/htdocs/admin/views/freepbx_admin.php:87 
    129 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:217 
    130 msgid "category" 
    131 msgstr "Catégorie" 
    132  
    133 #: amp_conf/htdocs/admin/views/freepbx_admin.php:107 
    134 #: amp_conf/htdocs/admin/views/freepbx_admin.php:112 
    135 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:223 
    136 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:227 
    137 #: amp_conf/htdocs/admin/page.modules.php:541 
    138 #: amp_conf/htdocs/admin/page.modules.php:546 
    139 msgid "name" 
    140 msgstr "Nom" 
    141  
    142 #: amp_conf/htdocs/admin/views/freepbx_admin.php:177 
    143 msgid "WARNING: Javascript is disabled in your browser. The FreePBX administration interface requires Javascript to run properly. Please enable javascript or switch to another  browser that supports it." 
    144 msgstr "ATTENTION: Javascript n'est pas activé dans votre navigateur. Linterface d'administration de FreePBX nécessite Javascript pour fonctionner. Merci d'activer Javascript ou d'utilser un autre navigateur qui le supporte." 
    145  
    146 #: amp_conf/htdocs/admin/views/freepbx_admin.php:191 
    147 #, php-format 
    148 msgid "%s is a registered trademark of %s" 
    149 msgstr "%s est une marque enregistrée de %s" 
    150  
    151 #: amp_conf/htdocs/admin/views/freepbx_admin.php:192 
    152 #: amp_conf/htdocs/admin/views/freepbx_admin.php:195 
    153 #: amp_conf/htdocs/admin/views/freepbx.php:140 
    154 #: amp_conf/htdocs/admin/views/freepbx.php:149 
    155 msgid "FreePBX" 
    156 msgstr "FreePBX" 
    157  
    158 #: amp_conf/htdocs/admin/views/freepbx_admin.php:194 
    159 #, php-format 
    160 msgid "%s is licensed under %s" 
    161 msgstr "%s est licencié sous %s" 
    162  
    163 #: amp_conf/htdocs/admin/views/loggedout.php:4 
    164 msgid "Logged out" 
    165 msgstr "Déconnecté" 
    166  
    167 #: amp_conf/htdocs/admin/views/loggedout.php:5 
    168 msgid "You have been succesfully logged out." 
    169 msgstr "Vous avez été déconnecté avec suuccés" 
    170  
    171 #: amp_conf/htdocs/admin/views/loggedout.php:6 
    172 msgid "Log in" 
    173 msgstr "Connecté" 
    174  
    175 #: amp_conf/htdocs/admin/views/welcome_nomanager.php:2 
    176 msgid "Warning:" 
    177 msgstr "Attention:" 
    178  
    179 #: amp_conf/htdocs/admin/views/welcome_nomanager.php:5 
    180 msgid "Cannot connect to Asterisk Manager with " 
    181 msgstr "Ne peut se connecterau gestionnaire Asterisk avec " 
    182  
    183 #: amp_conf/htdocs/admin/views/welcome_nomanager.php:7 
    184 msgid "Asterisk may not be running." 
    185 msgstr "Asterisk n'est peut être pas lancé" 
    186  
    187 #: amp_conf/htdocs/admin/views/freepbx_reload.php:71 
    188 msgid " error(s) occured, you should view the notification log on the dashboard or main screen to check for more details." 
    189 msgstr "Une erreur est survenue. Vous devriez regarder dans le statut systÚme ou l'écran principal pour plus d'information." 
    190  
    191 #: amp_conf/htdocs/admin/views/freepbx_reload.php:75 
    192 #: amp_conf/htdocs/admin/views/freepbx_reload.php:89 
    193 msgid "Close" 
    194 msgstr "Fermé" 
    195  
    196 #: amp_conf/htdocs/admin/views/freepbx_reload.php:76 
    197 msgid "Retry" 
    198 msgstr "Réessayer" 
    199  
    200 #: amp_conf/htdocs/admin/views/freepbx_reload.php:88 
    201 msgid "Error: Did not receive valid response from server" 
    202 msgstr "Erreur : n'a pas reçu de réponse valide du serveur" 
    203  
    204 #: amp_conf/htdocs/admin/views/freepbx_reload.php:108 
    205 msgid "Reloading will apply all configuration changes made in FreePBX to your PBX engine and make them active." 
    206 msgstr "Activer appliquera tous les changements de configuration effectués avec FreePBX à votre PaBX et les rendra actifs." 
    207  
    208 #: amp_conf/htdocs/admin/views/freepbx_reload.php:110 
    209 msgid "Accept" 
    210 msgstr "Accepter" 
    211  
    212 #: amp_conf/htdocs/admin/views/freepbx_reload.php:110 
    213 msgid "Continue with reload" 
    214 msgstr "Activer" 
    215  
    216 #: amp_conf/htdocs/admin/views/freepbx_reload.php:111 
    217 #: amp_conf/htdocs/admin/page.modules.php:408 
    218 msgid "Cancel" 
    219 msgstr "Abandonner" 
    220  
    221 #: amp_conf/htdocs/admin/views/freepbx_reload.php:111 
    222 msgid "Cancel reload and go back to editing" 
    223 msgstr "Annuler Activer et retour à l'édition" 
    224  
    225 #: amp_conf/htdocs/admin/views/freepbx_reload.php:116 
    226 msgid "Please wait, reloading.." 
    227 msgstr "Activation en cours" 
    228  
    229 #: amp_conf/htdocs/admin/views/freepbx_reload.php:117 
    230 msgid "Loading..." 
    231 msgstr "Chargement..." 
    232  
    233 #: amp_conf/htdocs/admin/views/freepbx.php:147 
    234 #, php-format 
    235 msgid "%s %s on %s" 
    236 msgstr "%s %s sur %s" 
    237  
    238 # ###### FIN ANCIENS MESSAGES de GENERAL 
    239 #: amp_conf/htdocs/admin/views/freepbx.php:164 
    240 msgid "Management" 
    241 msgstr "Gestion" 
    242  
    243 #: amp_conf/htdocs/admin/views/freepbx.php:165 
    244 msgid "Admin" 
    245 msgstr "Administrateur" 
    246  
    247 #: amp_conf/htdocs/admin/views/freepbx.php:166 
    248 msgid "Reports" 
    249 msgstr "Rapports" 
    250  
    251 #: amp_conf/htdocs/admin/views/freepbx.php:168 
    252 msgid "Panel" 
    253 msgstr "Panneau" 
    254  
    255 #: amp_conf/htdocs/admin/views/freepbx.php:170 
    256 msgid "Recordings" 
    257 msgstr "Enregistrements" 
    258  
    259 #: amp_conf/htdocs/admin/views/freepbx.php:171 
    260 msgid "Help" 
    261 msgstr "Aide!" 
    262  
    263 #: amp_conf/htdocs/admin/views/freepbx.php:188 
    264 msgid "Logged in: " 
    265 msgstr "Connexion:" 
    266  
    267 #: amp_conf/htdocs/admin/views/freepbx.php:189 
    268 msgid "Logout" 
    269 msgstr "Déconnexion" 
    270  
    271 #: amp_conf/htdocs/admin/views/menuitem_disabled.php:3 
    272 #, php-format 
    273 msgid "[WARNING]: Menu Item: %s is disabled because asterisk is not running" 
    274 msgstr "[Attention]: Choix menu : %s est désactivé car Asterisk ne fonctionne pas" 
    275  
    276 #: amp_conf/htdocs/admin/views/menuitem_disabled.php:4 
    277 msgid "Restart Asterisk and then refresh the browser in order to try accessing this menu item again." 
    278 msgstr "Relancer Asterisk et actualiser la page pour accéder de nouveau à ce menu." 
    279  
    280 #: amp_conf/htdocs/admin/views/noaccess.php:4 
    281 msgid "Not found" 
    282 msgstr "Pas trouv&eacute;" 
    283  
    284 #: amp_conf/htdocs/admin/views/noaccess.php:5 
    285 msgid "The section you requested does not exist or you do not have access to it." 
    286 msgstr "La section demandée n'existe pas ou vous n'y avez pas accÚs." 
    287  
    288 #: amp_conf/htdocs/admin/common/db_connect.php:78 
     1258#: admin/common/db_connect.php:78 
    2891259msgid "Default SQL Password Used" 
    2901260msgstr "Mot de passe par défaut SQL utilisé" 
    2911261 
    292 #: amp_conf/htdocs/admin/common/db_connect.php:78 
    293 msgid "You are using the default SQL password that is widely known, you should set a secure password" 
    294 msgstr "Vous utilisez le mot de passe SQL par défaut qui est connu. Vous devriez utiliser un autre mot de passe" 
    295  
    296 #: amp_conf/htdocs/admin/common/db_connect.php:89 
     1262#: admin/common/db_connect.php:78 
     1263msgid "" 
     1264"You are using the default SQL password that is widely known, you should set " 
     1265"a secure password" 
     1266msgstr "" 
     1267"Vous utilisez le mot de passe SQL par défaut qui est connu. Vous devriez " 
     1268"utiliser un autre mot de passe" 
     1269 
     1270#: admin/common/db_connect.php:89 
    2971271msgid "Memory Limit Changed" 
    2981272msgstr "Changement de mémoire limite" 
    2991273 
    300 #: amp_conf/htdocs/admin/common/db_connect.php:89 
    301 #, php-format 
    302 msgid "Your memory_limit, %sM, is set too low and has been increased to %sM. You may want to change this in you php.ini config file" 
    303 msgstr "Votre mémoire limite , %sM est trop basse et a été augmentée à %sM. Vous devriez le changer également dans le fichier de configuration php.ini" 
    304  
    305 #: amp_conf/htdocs/admin/common/db_connect.php:91 
     1274#: admin/common/db_connect.php:89 
     1275#, php-format 
     1276msgid "" 
     1277"Your memory_limit, %sM, is set too low and has been increased to %sM. You " 
     1278"may want to change this in you php.ini config file" 
     1279msgstr "" 
     1280"Votre mémoire limite , %sM est trop basse et a été augmentée à %sM. Vous " 
     1281"devriez le changer également dans le fichier de configuration php.ini" 
     1282 
     1283#: admin/common/db_connect.php:91 
    3061284msgid "Low Memory Limit" 
    3071285msgstr "Limite mémoire basse." 
    3081286 
    309 #: amp_conf/htdocs/admin/common/db_connect.php:91 
    310 #, php-format 
    311 msgid "Your memory_limit, %sM, is set too low and may cause problems. FreePBX is not able to change this on your system. You should increase this to %sM in you php.ini config file" 
    312 msgstr "Votre limite mémoire, %sM, est trop basse et peut générer des problÚmes. FreePBX n'est pas capable de la changer dans votre systÚme. Vous devriez l'augmenter à %sM dans le fichier de configuration php.ini" 
    313  
    314 #: amp_conf/htdocs/admin/common/db_connect.php:100 
     1287#: admin/common/db_connect.php:91 
     1288#, php-format 
     1289msgid "" 
     1290"Your memory_limit, %sM, is set too low and may cause problems. FreePBX is " 
     1291"not able to change this on your system. You should increase this to %sM in " 
     1292"you php.ini config file" 
     1293msgstr "" 
     1294"Votre limite mémoire, %sM, est trop basse et peut générer des problÚmes. " 
     1295"FreePBX n'est pas capable de la changer dans votre systÚme. Vous devriez " 
     1296"l'augmenter à %sM dans le fichier de configuration php.ini" 
     1297 
     1298#: admin/common/db_connect.php:100 
    3151299msgid "Magic Quotes GPC" 
    3161300msgstr "Magic Quotes GPC" 
    3171301 
    318 #: amp_conf/htdocs/admin/common/db_connect.php:100 
    319 msgid "You have magic_quotes_gpc enabled in your php.ini, http or .htaccess file which will cause errors in some modules. FreePBX expects this to be off and runs under that assumption" 
    320 msgstr "magic_quotes_gpc est activé dans le fichier php.ini, http ou .htaccess ce qui provoqera une erreur pour ceratins modules. FreePBX s'attend à ce que ce paramÚtre soit Off et fonctionne ainsi." 
    321  
    322 #: amp_conf/htdocs/admin/common/script.js.php:36 
     1302#: admin/common/db_connect.php:100 
     1303msgid "" 
     1304"You have magic_quotes_gpc enabled in your php.ini, http or .htaccess file " 
     1305"which will cause errors in some modules. FreePBX expects this to be off and " 
     1306"runs under that assumption" 
     1307msgstr "" 
     1308"magic_quotes_gpc est activé dans le fichier php.ini, http ou .htaccess ce " 
     1309"qui provoqera une erreur pour ceratins modules. FreePBX s'attend à ce que ce " 
     1310"paramÚtre soit Off et fonctionne ainsi." 
     1311 
     1312#: admin/common/script.js.php:36 
    3231313msgid "Please select a \"Destination\"" 
    324 msgstr "Choix d'une destination" 
    325  
    326 #: amp_conf/htdocs/admin/common/script.js.php:44 
    327 msgid "Custom Goto contexts must contain the string \"custom-\".  ie: custom-app,s,1" 
    328 msgstr "Le contexte personnalisé Goito doit contenir la chaîne \"custom\".  ie: custom-app,s,1" 
    329  
    330 #: amp_conf/htdocs/admin/components.class.php:362 
    331 #: amp_conf/htdocs/admin/modules/core/page.did.php:306 
    332 msgid "Submit" 
    333 msgstr "Soumettre" 
    334  
    335 #: amp_conf/htdocs/admin/header_auth.php:43 
    336 #: amp_conf/htdocs/admin/header_auth.php:70 
    337 msgid "Administration" 
    338 msgstr "Administration" 
    339  
    340 #: amp_conf/htdocs/admin/panel.php:18 
    341 msgid "FreePBX: Flash Operator Panel" 
    342 msgstr "FreePBX: Flash Operator Panel" 
    343  
    344 #: amp_conf/htdocs/admin/panel.php:19 
    345 msgid "Flash Operator Panel" 
    346 msgstr "Panneau Opérateur" 
    347  
    348 #: amp_conf/htdocs/admin/functions.inc.php:392 
    349 #, php-format 
    350 msgid "Cronmanager encountered %s Errors" 
    351 msgstr "Cronmanager a rencontré %s erreurs." 
    352  
    353 #: amp_conf/htdocs/admin/functions.inc.php:393 
    354 msgid "The following commands failed with the listed error" 
    355 msgstr "Echecs des commandes suivantes avec les erreurs suivantes" 
    356  
    357 #: amp_conf/htdocs/admin/functions.inc.php:765 
    358 #, php-format 
    359 msgid "Missing or unreadable config file (%s)...cannot continue" 
    360 msgstr "Fichier de configuration manquant ou non lisible (%s)..ne peut continuer" 
    361  
    362 #: amp_conf/htdocs/admin/functions.inc.php:1044 
    363 msgid "Objects" 
    364 msgstr "Objets" 
    365  
    366 #: amp_conf/htdocs/admin/functions.inc.php:1044 
    367 msgid "Object" 
    368 msgstr "Objet" 
    369  
    370 #: amp_conf/htdocs/admin/functions.inc.php:1045 
    371 #, php-format 
    372 msgid "Used as Destination by %s %s" 
    373 msgstr "Utilisé comme destination par %s %s" 
    374  
    375 #: amp_conf/htdocs/admin/functions.inc.php:1500 
    376 #: amp_conf/htdocs/admin/functions.inc.php:1570 
    377 #, php-format 
    378 msgid "Exit code was %s and output was: %s" 
    379 msgstr "Code sortie était %s et message de sortie était: %s" 
    380  
    381 #: amp_conf/htdocs/admin/functions.inc.php:1501 
    382 #: amp_conf/htdocs/admin/functions.inc.php:1571 
    383 #, php-format 
    384 msgid "Could not run %s script." 
    385 msgstr "Ne peut exécuter le script %s" 
    386  
    387 #: amp_conf/htdocs/admin/functions.inc.php:1518 
    388 #, php-format 
    389 msgid "Reload failed because retrieve_conf encountered an error: %s" 
    390 msgstr "Rechargement à échouer car retrieve_conf a rencontré l'erreur : %s" 
    391  
    392 #: amp_conf/htdocs/admin/functions.inc.php:1520 
    393 #: amp_conf/htdocs/admin/functions.inc.php:1528 
    394 msgid "retrieve_conf failed, config not applied" 
    395 msgstr "echec de retrieve_conf, configuration non activée" 
    396  
    397 #: amp_conf/htdocs/admin/functions.inc.php:1526 
    398 msgid "Reload failed because FreePBX could not connect to the asterisk manager interface." 
    399 msgstr "Le rechargement a échoué car FreePBX ne peut se connecter à l'interface de gestion d'Asterisk" 
    400  
    401 #: amp_conf/htdocs/admin/functions.inc.php:1540 
    402 msgid "Successfully reloaded" 
    403 msgstr "Téléchargement réussi" 
    404  
    405 #: amp_conf/htdocs/admin/functions.inc.php:1549 
    406 msgid "Could not reload the FOP operator panel server using the bounce_op.sh script. Configuration changes may not be reflected in the panel display." 
    407 msgstr "Ne peut recharger le serveur Opérateur avec le script bounce_op.sh. Les changements de configuration ne seront peut être pas pris en compte dans l'affichage." 
    408  
    409 #: amp_conf/htdocs/admin/functions.inc.php:1550 
    410 msgid "Could not reload FOP server" 
    411 msgstr "Ne peut recharger le serveur FOP" 
    412  
    413 #: amp_conf/htdocs/admin/functions.inc.php:1562 
    414 msgid "Successful reload, but could not clear reload flag due to a database error: " 
    415 msgstr "Rechargement réussi mais impossible d'effacer le flag de rechargement à cause d'une erreur de la base données" 
    416  
    417 #: amp_conf/htdocs/admin/functions.inc.php:1611 
    418 #: amp_conf/htdocs/admin/modules/core/page.routing.php:578 
    419 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4696 
    420 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4698 
    421 msgid "Add" 
    422 msgstr "Ajout" 
    423  
    424 #: amp_conf/htdocs/admin/functions.inc.php:2051 
    425 msgid "Unknown Destination" 
    426 msgstr "Destination inconnue" 
    427  
    428 #: amp_conf/htdocs/admin/functions.inc.php:2051 
    429 msgid "ERROR: You have an unknown destination. If this was carried over as a Custom App from an earlier version, you must go register the destination in the Custom Destination tab provided by the Custom Applications module.<br />This will remain active until you change it but you can no longer edit or add a new one here." 
    430 msgstr "ERREUR: vous avez une destination inconnue. Si cela provient d'une application particuliÚre d'une ancienne version, vous devez enregistrer la destination dans la tabulation Destination Personnalisée fourni par le module Applications Personnalisées.<br /> Cela restera actif jusqu'à ce que vous le changiez mais vous ne pouvez plus éditer ou ajouter ici. " 
    431  
    432 #: amp_conf/htdocs/admin/functions.inc.php:2309 
    433 msgid "The following new modules are available for download. Click delete icon on the right to remove this notice." 
    434 msgstr "Les nouveaux modules suivants sont disponibles au téléchargement. Cliquer sur l'icÃŽne supprimer à droite pour retirer cette information." 
    435  
    436 #: amp_conf/htdocs/admin/functions.inc.php:2313 
    437 #, php-format 
    438 msgid "%s New modules are available" 
    439 msgstr "%s nouveaux modules sont disponibles" 
    440  
    441 #: amp_conf/htdocs/admin/functions.inc.php:2347 
    442 msgid "There is 1 module available for online upgrade" 
    443 msgstr "Il y a un nouveau module disponible pour téléchargement" 
    444  
    445 #: amp_conf/htdocs/admin/functions.inc.php:2349 
    446 #, php-format 
    447 msgid "There are %s modules available for online upgrades" 
    448 msgstr "Il y a %s modules disponibles au téléchargement" 
    449  
    450 #: amp_conf/htdocs/admin/functions.inc.php:2353 
    451 #, php-format 
    452 msgid "%s (current: %s)" 
    453 msgstr "%s (actuellement: %s)" 
    454  
    455 #: amp_conf/htdocs/admin/functions.inc.php:2555 
    456 #, php-format 
    457 msgid "Module %s is required, but yours is broken. You should reinstall " 
    458 msgstr "Le module %s est requis mais le vÃŽtre ne fonctionne pas. Vous devriez le réinstaller." 
    459  
    460 #: amp_conf/htdocs/admin/functions.inc.php:2556 
    461 #, php-format 
    462 msgid "it and try again." 
    463 msgstr "et réessayer." 
    464  
    465 #: amp_conf/htdocs/admin/functions.inc.php:2559 
    466 #, php-format 
    467 msgid "Module %s is required, but yours is disabled." 
    468 msgstr "Le module %s est requie mais le vÃŽtre est désactivé." 
    469  
    470 #: amp_conf/htdocs/admin/functions.inc.php:2562 
    471 #, php-format 
    472 msgid "Module %s is required, but yours is disabled because it needs to " 
    473 msgstr "Le module %s est requis mais le vÃŽtre doit être" 
    474  
    475 #: amp_conf/htdocs/admin/functions.inc.php:2563 
    476 #, php-format 
    477 msgid "be upgraded. Please upgrade %s first, and then try again." 
    478 msgstr "mis à jour. Merci de mettre à jour %s puis essayez de nouveau." 
    479  
    480 #: amp_conf/htdocs/admin/functions.inc.php:2568 
    481 #, php-format 
    482 msgid "Module %s is required, yours is not installed." 
    483 msgstr "Le module %s est  requis, il n'est pas installé" 
    484  
    485 #: amp_conf/htdocs/admin/functions.inc.php:2572 
    486 #, php-format 
    487 msgid "Module %s is required." 
    488 msgstr "Le module %s est requis" 
    489  
    490 #: amp_conf/htdocs/admin/functions.inc.php:2581 
    491 #, php-format 
    492 msgid "File %s must exist." 
    493 msgstr "Le fichier %s doit exister" 
    494  
    495 #: amp_conf/htdocs/admin/functions.inc.php:2628 
    496 #, php-format 
    497 msgid "Requires engine %s, you have: %s" 
    498 msgstr "A besoin du moteur %s, vous avez: %s" 
    499  
    500 #: amp_conf/htdocs/admin/functions.inc.php:2630 
    501 #, php-format 
    502 msgid "Requires one of the following engines: %s; you have: %s" 
    503 msgstr "A besoin d'un des moteurs suivants : %s; vous avez : %s" 
    504  
    505 #: amp_conf/htdocs/admin/functions.inc.php:2645 
    506 #, php-format 
    507 msgid "A %s version below %s is required, you have %s" 
    508 msgstr "La version %s  sous %s est requise. Celle installée est %s" 
    509  
    510 #: amp_conf/htdocs/admin/functions.inc.php:2648 
    511 #, php-format 
    512 msgid "%s version %s or below is required, you have %s" 
    513 msgstr "Les versions %s ou %s sont requises. Celle installée est %s" 
    514  
    515 #: amp_conf/htdocs/admin/functions.inc.php:2651 
    516 #, php-format 
    517 msgid "A %s version newer than %s required, you have %s" 
    518 msgstr "La nouvelle version %s plus récente que %s est requise. Celle installée est %s" 
    519  
    520 #: amp_conf/htdocs/admin/functions.inc.php:2654 
    521 #, php-format 
    522 msgid "Your %s version (%s) is incompatible." 
    523 msgstr "Votre version %s (%s) est incompatible" 
    524  
    525 #: amp_conf/htdocs/admin/functions.inc.php:2657 
    526 #, php-format 
    527 msgid "Only %s version %s is compatible, you have %s" 
    528 msgstr "Seule la version %s %s est compatible. Celle installée est %s" 
    529  
    530 #: amp_conf/htdocs/admin/functions.inc.php:2661 
    531 #, php-format 
    532 msgid "%s version %s or higher is required, you have %s" 
    533 msgstr "La version %s %s ou plus est requise. Celle installée est %s" 
    534  
    535 #: amp_conf/htdocs/admin/functions.inc.php:2719 
    536 msgid "Module is already enabled" 
    537 msgstr "Le module est déjà activé" 
    538  
    539 #: amp_conf/htdocs/admin/functions.inc.php:2724 
    540 msgid "Module cannot be enabled" 
    541 msgstr "Le module ne peut être activé" 
    542  
    543 #: amp_conf/htdocs/admin/functions.inc.php:2771 
    544 msgid "Module not found in repository" 
    545 msgstr "Module non trouvé dans le dépÃŽt" 
    546  
    547 #: amp_conf/htdocs/admin/functions.inc.php:2804 
    548 #: amp_conf/htdocs/admin/functions.inc.php:2900 
    549 #: amp_conf/htdocs/admin/functions.inc.php:2978 
    550 #, php-format 
    551 msgid "Could not remove %s to install new version" 
    552 msgstr "Ne peut retirer %s pour installer la nouvelle version" 
    553  
    554 #: amp_conf/htdocs/admin/functions.inc.php:2808 
    555 #: amp_conf/htdocs/admin/functions.inc.php:2904 
    556 #: amp_conf/htdocs/admin/functions.inc.php:2982 
    557 #, php-format 
    558 msgid "Could not untar %s to %s" 
    559 msgstr "Ne peut décompresser %s vers %s" 
    560  
    561 #: amp_conf/htdocs/admin/functions.inc.php:2812 
    562 #: amp_conf/htdocs/admin/functions.inc.php:2908 
    563 #: amp_conf/htdocs/admin/functions.inc.php:2986 
    564 #, php-format 
    565 msgid "Could not remove old module %s to install new version" 
    566 msgstr "Ne peut retirer l'ancien module %s pour installer la nouvelle version" 
    567  
    568 #: amp_conf/htdocs/admin/functions.inc.php:2816 
    569 #: amp_conf/htdocs/admin/functions.inc.php:2912 
    570 #: amp_conf/htdocs/admin/functions.inc.php:2990 
    571 #, php-format 
    572 msgid "Could not move %s to %s" 
    573 msgstr "Ne peut déplacer %s vers %s" 
    574  
    575 #: amp_conf/htdocs/admin/functions.inc.php:2837 
    576 #, php-format 
    577 msgid "Error opening %s for writing" 
    578 msgstr "Erreur lors de l'ouverture de %s pour écriture" 
    579  
    580 #: amp_conf/htdocs/admin/functions.inc.php:2853 
    581 #: amp_conf/htdocs/admin/functions.inc.php:2856 
    582 #, php-format 
    583 msgid "Error opening %s for reading" 
    584 msgstr "Erreur lors de l'ouverture de %s pour lecture" 
    585  
    586 #: amp_conf/htdocs/admin/functions.inc.php:2876 
    587 #, php-format 
    588 msgid "Unable to save %s" 
    589 msgstr "Impossible de sauvegarder %s" 
    590  
    591 #: amp_conf/htdocs/admin/functions.inc.php:2884 
    592 #, php-format 
    593 msgid "File Integrity failed for %s - aborting" 
    594 msgstr "Erreur intégrité de fichier pour %s - arrêt" 
    595  
    596 #: amp_conf/htdocs/admin/functions.inc.php:2929 
    597 msgid "Error finding uploaded file - check your PHP and/or web server configuration" 
    598 msgstr "Erreur pour trouver le fichier téléchargé - vérifiez la configuration de votre serveur PHP et/ou Web" 
    599  
    600 #: amp_conf/htdocs/admin/functions.inc.php:2934 
    601 msgid "File must be in tar+gzip (.tgz or .tar.gz) format" 
    602 msgstr "Le fichier doit être au format tar+gzip (.tar ou .tar.gz)" 
    603  
    604 #: amp_conf/htdocs/admin/functions.inc.php:2939 
    605 msgid "Filename not in correct format: must be modulename-version.tar.gz (eg. custommodule-0.1.tar.gz)" 
    606 msgstr "Le nom de fichier n'est pas correcte: doit être sous la forme nom_module-version.tar.gz (par exemple custommodule-0.1.tar.gz)" 
    607  
    608 #: amp_conf/htdocs/admin/functions.inc.php:2948 
    609 #, php-format 
    610 msgid "Error creating temporary directory: %s" 
    611 msgstr "Erreur lors de la création du répertoire temporaire: %s" 
    612  
    613 #: amp_conf/htdocs/admin/functions.inc.php:2956 
    614 msgid "Error untaring uploaded file. Must be a tar+gzip file" 
    615 msgstr "Erreur lors de la décompression du fichier téléchargé. Doit être au format tar+gzip" 
    616  
    617 #: amp_conf/htdocs/admin/functions.inc.php:2995 
    618 #, php-format 
    619 msgid "Error removing temporary directory: %s" 
    620 msgstr "Erreur suppression répertoire temporaire: %s" 
    621  
    622 #: amp_conf/htdocs/admin/functions.inc.php:3024 
    623 msgid "Cannot find module" 
    624 msgstr "Impossible de trouver le module" 
    625  
    626 #: amp_conf/htdocs/admin/functions.inc.php:3030 
    627 msgid "Could not read module.xml" 
    628 msgstr "Ne peut lire module.xml" 
    629  
    630 #: amp_conf/htdocs/admin/functions.inc.php:3035 
    631 msgid "This module is broken and cannot be installed. You should try to download it again." 
    632 msgstr "Ce module est incomplet et ne peut être installé. Vous devriez le télécharger à nouveau" 
    633  
    634 #: amp_conf/htdocs/admin/functions.inc.php:3054 
    635 msgid "Failed to run installation scripts" 
    636 msgstr "Impossible d'exécuter les cripts d'installation" 
    637  
    638 #: amp_conf/htdocs/admin/functions.inc.php:3068 
    639 #, php-format 
    640 msgid "Error updating database. Command was: %s; error was: %s " 
    641 msgstr "Erreur mise à jour base. Commande : %s; erreur : %s" 
    642  
    643 #: amp_conf/htdocs/admin/functions.inc.php:3102 
    644 #: amp_conf/htdocs/admin/functions.inc.php:3130 
    645 #: amp_conf/htdocs/admin/functions.inc.php:3167 
    646 msgid "Specified module not found" 
    647 msgstr "Module demandé non trouvé" 
    648  
    649 #: amp_conf/htdocs/admin/functions.inc.php:3107 
    650 msgid "Module not enabled: cannot disable" 
    651 msgstr "Module non activé donc ne peut être désactivé" 
    652  
    653 #: amp_conf/htdocs/admin/functions.inc.php:3111 
    654 #: amp_conf/htdocs/admin/functions.inc.php:3139 
    655 msgid "Cannot disable: The following modules depend on this one: " 
    656 msgstr "Ne peut désactivé: les modules suivants en dépendent:" 
    657  
    658 #: amp_conf/htdocs/admin/functions.inc.php:3135 
    659 msgid "Module not installed: cannot uninstall" 
    660 msgstr "Module non installé : ne peut être désinstallé" 
    661  
    662 #: amp_conf/htdocs/admin/functions.inc.php:3146 
    663 msgid "Error updating database: " 
    664 msgstr "Erreur de mise à jour de la base:" 
    665  
    666 #: amp_conf/htdocs/admin/functions.inc.php:3150 
    667 msgid "Failed to run un-installation scripts" 
    668 msgstr "Impossible de démarrer les scripts de désinstallation" 
    669  
    670 #: amp_conf/htdocs/admin/functions.inc.php:3180 
    671 #, php-format 
    672 msgid "Cannot delete directory %s" 
    673 msgstr "Ne peut supprimer le répertoire %s" 
    674  
    675 #: amp_conf/htdocs/admin/functions.inc.php:3187 
    676 #, php-format 
    677 msgid "Error deleting directory %s (code %d)" 
    678 msgstr "Erreur suppression répertoire %s (code %d)" 
    679  
    680 #: amp_conf/htdocs/admin/functions.inc.php:3565 
    681 #, php-format 
    682 msgid "You have %s disabled modules" 
    683 msgstr "Vous avez %s modules désactivés." 
    684  
    685 #: amp_conf/htdocs/admin/functions.inc.php:3565 
    686 msgid "You have a disabled module" 
    687 msgstr "Vous avez désactivé le module" 
    688  
    689 #: amp_conf/htdocs/admin/functions.inc.php:3566 
    690 msgid "The following modules are disabled because they need to be upgraded:" 
    691 msgstr "Les modules suivants sont désactivés car ils doivent être mis à jour." 
    692  
    693 #: amp_conf/htdocs/admin/functions.inc.php:3567 
    694 #: amp_conf/htdocs/admin/functions.inc.php:3575 
    695 msgid "You should go to the module admin page to fix these." 
    696 msgstr "Vous devriez aller dans le module Administration pour résoudre ce problÚme" 
    697  
    698 #: amp_conf/htdocs/admin/functions.inc.php:3573 
    699 #, php-format 
    700 msgid "You have %s broken modules" 
    701 msgstr "Vous avez %s modules défaillants" 
    702  
    703 #: amp_conf/htdocs/admin/functions.inc.php:3573 
    704 msgid "You have a broken module" 
    705 msgstr "Vous avez un module défaillant" 
    706  
    707 #: amp_conf/htdocs/admin/functions.inc.php:3574 
    708 msgid "The following modules are disabled because they are broken:" 
    709 msgstr "Les modules suivants sont désactivés car ils sont défaillants" 
    710  
    711 # ######## DEBUT ANCIENS MESSAGES de RECORDINGS 
    712 # ######## FIN ANCIENS MESSAGES de RECORDINGS 
    713 #: amp_conf/htdocs/admin/reports.php:18 
    714 msgid "FreePBX: Call Detail Reports" 
    715 msgstr "FreePBX : Rapports CDR" 
    716  
    717 # ######## DEBUT ANCIENS MESSAGES de RECORDINGS 
    718 # ######## FIN ANCIENS MESSAGES de RECORDINGS 
    719 #: amp_conf/htdocs/admin/reports.php:19 
    720 msgid "Call Detail Reports" 
    721 msgstr "Rapports des CDR" 
    722  
    723 #: amp_conf/htdocs/admin/reports.php:41 
    724 msgid "Call Logs" 
    725 msgstr "Journal des Appels" 
    726  
    727 #: amp_conf/htdocs/admin/reports.php:42 
    728 msgid "Compare Calls" 
    729 msgstr "Compare les Appels" 
    730  
    731 #: amp_conf/htdocs/admin/reports.php:43 
    732 msgid "Monthly Traffic" 
    733 msgstr "Trafic Mensuel" 
    734  
    735 #: amp_conf/htdocs/admin/reports.php:44 
    736 msgid "Daily load" 
    737 msgstr "Charge JournaliÚre" 
     1314msgstr "Choix d\\'une destination" 
     1315 
     1316#: admin/common/script.js.php:44 
     1317msgid "" 
     1318"Custom Goto contexts must contain the string \"custom-\".  ie: custom-app,s,1" 
     1319msgstr "" 
     1320"Le contexte personnalisé Goito doit contenir la chaîne \"custom\".  ie: " 
     1321"custom-app,s,1" 
     1322 
     1323#: admin/modules/core/core.i18n.php:5 admin/modules/core/install.php:4 
     1324msgid "Core" 
     1325msgstr "Coeur" 
     1326 
     1327#: admin/modules/core/core.i18n.php:7 
     1328msgid "Basic" 
     1329msgstr "Base" 
     1330 
     1331# La suite ne sont plus des messages de config. Peut-etre utilise par d'autres! 
     1332# msgid "Incoming Calls" 
     1333# msgstr "Appels entrants" 
     1334#: admin/modules/core/core.i18n.php:9 
     1335msgid "Extensions" 
     1336msgstr "Extensions" 
     1337 
     1338#: admin/modules/core/core.i18n.php:11 
     1339msgid "Users" 
     1340msgstr "Utilisateurs" 
     1341 
     1342#: admin/modules/core/core.i18n.php:13 
     1343msgid "Devices" 
     1344msgstr "Périphériques" 
     1345 
     1346#: admin/modules/core/core.i18n.php:15 
     1347msgid "Inbound Routes" 
     1348msgstr "Routes Entrantes" 
     1349 
     1350#: admin/modules/core/core.i18n.php:17 
     1351msgid "Zap Channel DIDs" 
     1352msgstr "Canal ZAP DIDs" 
     1353 
     1354#: admin/modules/core/core.i18n.php:19 
     1355msgid "Outbound Routes" 
     1356msgstr "Routes Sortantes" 
     1357 
     1358#: admin/modules/core/core.i18n.php:21 
     1359msgid "Trunks" 
     1360msgstr "Trunks" 
     1361 
     1362#: admin/modules/core/core.i18n.php:23 
     1363#: admin/modules/core/page.ampusers.php:159 
     1364#: admin/modules/core/page.trunks.php:351 
     1365msgid "General Settings" 
     1366msgstr "Réglages Généraux" 
     1367 
     1368#: admin/modules/core/core.i18n.php:25 
     1369msgid "Administrators" 
     1370msgstr "Administrateurs" 
     1371 
     1372#: admin/modules/core/core.i18n.php:27 
     1373msgid "FreePBX Support" 
     1374msgstr "Support FreePBX" 
     1375 
     1376#: admin/modules/core/functions.inc.php:477 
     1377msgid "Terminate Call" 
     1378msgstr "" 
     1379 
     1380#: admin/modules/core/functions.inc.php:478 
     1381msgid "Hangup" 
     1382msgstr "" 
     1383 
     1384#: admin/modules/core/functions.inc.php:479 
     1385msgid "Congestion" 
     1386msgstr "" 
     1387 
     1388#: admin/modules/core/functions.inc.php:480 
     1389#: admin/modules/core/page.general.php:198 
     1390msgid "Busy" 
     1391msgstr "Occupé" 
     1392 
     1393#: admin/modules/core/functions.inc.php:481 
     1394msgid "Play SIT Tone (Zapateller)" 
     1395msgstr "" 
     1396 
     1397#: admin/modules/core/functions.inc.php:482 
     1398msgid "Put caller on hold forever" 
     1399msgstr "" 
     1400 
     1401#: admin/modules/core/functions.inc.php:483 
     1402msgid "Play ringtones to caller until they hangup" 
     1403msgstr "" 
     1404 
     1405#: admin/modules/core/functions.inc.php:554 
     1406#, php-format 
     1407msgid "User Extension %s: %s" 
     1408msgstr "Extension Utilisateur %s: %s" 
     1409 
     1410#: admin/modules/core/functions.inc.php:1993 
     1411#: admin/modules/core/functions.inc.php:2012 
     1412msgid "A route for this DID/CID already exists!" 
     1413msgstr "Une route pour ce DID/CID existe déjà!" 
     1414 
     1415#: admin/modules/core/functions.inc.php:2079 
     1416msgid "You must put in a device id" 
     1417msgstr "Vous devez mettre un identifiant périphérique" 
     1418 
     1419#: admin/modules/core/functions.inc.php:2089 
     1420msgid "This device id is already in use" 
     1421msgstr "Ce périphérique est déjà utilisé" 
     1422 
     1423#: admin/modules/core/functions.inc.php:2670 
     1424msgid "User Extension: " 
     1425msgstr "Extension Utilisateur:" 
     1426 
     1427#: admin/modules/core/functions.inc.php:2699 
     1428#, php-format 
     1429msgid "Inbound Route: %s (%s)" 
     1430msgstr "Route Entrante: %s (%s)" 
     1431 
     1432#: admin/modules/core/functions.inc.php:2733 
     1433msgid "You must put in an extension (or user) number" 
     1434msgstr "Vous devez mettre un numéro d'extension ou d'utilisateur" 
     1435 
     1436#: admin/modules/core/functions.inc.php:2742 
     1437#, php-format 
     1438msgid "This user/extension %s is already in use" 
     1439msgstr "L'extension %s est déjà utilisée" 
     1440 
     1441#: admin/modules/core/functions.inc.php:2761 
     1442#: admin/modules/core/functions.inc.php:3012 
     1443#, php-format 
     1444msgid "A route with this DID/CID: %s/%s already exists" 
     1445msgstr "Une route pour ce SDA/CID: %s/%s existe déjà" 
     1446 
     1447#: admin/modules/core/functions.inc.php:3047 
     1448#: admin/modules/core/page.zapchandids.php:123 
     1449msgid "Invalid Channel Number, must be numeric and not blank" 
     1450msgstr "" 
     1451"Numéro de canal invalide, ne doit contenir que des chiffres et pas de blanc" 
     1452 
     1453#: admin/modules/core/functions.inc.php:3051 
     1454#: admin/modules/core/page.zapchandids.php:124 
     1455msgid "Invalid DID, must be a non-blank DID" 
     1456msgstr "SDA invalide, ne peut être vide" 
     1457 
     1458#: admin/modules/core/functions.inc.php:3063 
     1459msgid "Error Duplicate Channel Entry" 
     1460msgstr "Erreur de copie de l'entrée du canal" 
     1461 
     1462#: admin/modules/core/functions.inc.php:4227 
     1463#, php-format 
     1464msgid "" 
     1465"Failed to open %s for writing, aborting attempt to write the country " 
     1466"indications. The file may be readonly or the permissions may be incorrect." 
     1467msgstr "" 
     1468"Impossible d'ouvrir %s pour écriture de l'indication pays. Le fichier doit " 
     1469"être en écriture seule ou les autorisations ne sont pas correctes." 
     1470 
     1471#: admin/modules/core/functions.inc.php:4228 
     1472msgid "Failed to write indications.conf" 
     1473msgstr "Echec d'écriture du fichier indications.conf" 
     1474 
     1475#: admin/modules/core/functions.inc.php:4252 
     1476msgid "On Demand" 
     1477msgstr "A la Demande" 
     1478 
     1479#: admin/modules/core/functions.inc.php:4253 
     1480msgid "Always" 
     1481msgstr "Toujours" 
     1482 
     1483#: admin/modules/core/functions.inc.php:4254 
     1484msgid "Never" 
     1485msgstr "Jamais" 
     1486 
     1487#: admin/modules/core/functions.inc.php:4266 
     1488msgid "Screen Caller: No Memory" 
     1489msgstr "Screen : sans mémorisation" 
     1490 
     1491#: admin/modules/core/functions.inc.php:4267 
     1492msgid "Screen Caller: Memory" 
     1493msgstr "Screen : avec mémorisation" 
     1494 
     1495#: admin/modules/core/functions.inc.php:4270 
     1496#: admin/modules/core/page.did.php:224 admin/modules/core/page.general.php:196 
     1497msgid "Default" 
     1498msgstr "Défaut" 
     1499 
     1500#: admin/modules/core/functions.inc.php:4318 
     1501#: admin/modules/core/functions.inc.php:4671 
     1502#: admin/modules/core/page.did.php:134 
     1503msgid "deleted" 
     1504msgstr "supprimé" 
     1505 
     1506# msgid "DID Number" 
     1507# msgstr "Num&eacute;ro DID" 
     1508# msgid "Set Destination" 
     1509# msgstr "Choisir la destination" 
     1510# msgid "Use 'Incoming Calls' settings" 
     1511# msgstr "Utiliser les r&eacute;glages 'Appels entrants'" 
     1512# ### Fin message DID 
     1513#: admin/modules/core/functions.inc.php:4338 
     1514#: admin/modules/core/functions.inc.php:4723 
     1515#: admin/modules/core/page.did.php:163 
     1516#: admin/modules/core/page.extensions.php:18 
     1517msgid "Extension" 
     1518msgstr "Extension" 
     1519 
     1520#: admin/modules/core/functions.inc.php:4340 
     1521#, php-format 
     1522msgid "Delete Extension %s" 
     1523msgstr "Suppression Extension %s" 
     1524 
     1525#: admin/modules/core/functions.inc.php:4350 
     1526#: admin/modules/core/page.did.php:159 admin/modules/core/page.users.php:21 
     1527msgid "User" 
     1528msgstr "Utilisateur" 
     1529 
     1530#: admin/modules/core/functions.inc.php:4352 
     1531#, php-format 
     1532msgid "Delete User %s" 
     1533msgstr "Suppression Utilisateur %s" 
     1534 
     1535#: admin/modules/core/functions.inc.php:4364 
     1536msgid "Add User/Extension" 
     1537msgstr "Ajout Utilisateur/Extension" 
     1538 
     1539# ATTENTION: Les messages suivants sont des alertes: pas d'accent, pas de caracteres de control sont admis... le fichier script.js est traite plus haut 
     1540#: admin/modules/core/functions.inc.php:4371 
     1541#: admin/modules/core/functions.inc.php:4741 
     1542msgid "Please enter a valid extension number." 
     1543msgstr "SVP, entrez un numéro d'extension valide." 
     1544 
     1545#: admin/modules/core/functions.inc.php:4372 
     1546msgid "Please enter a valid CID Num Alias (must be a valid number)." 
     1547msgstr "SVP, entrez un 'Numéro SDA' valide( uniquement des chiffres)." 
     1548 
     1549#: admin/modules/core/functions.inc.php:4373 
     1550msgid "Please enter valid User Password using numbers only" 
     1551msgstr "" 
     1552"SVP, entrez un 'Mot de Passe Utilisateur' valide utilisant des chiffres " 
     1553"uniquement." 
     1554 
     1555#: admin/modules/core/functions.inc.php:4374 
     1556msgid "Please enter a valid Display Name" 
     1557msgstr "SVP, entrez un 'Nom Affiché (CID)' valide." 
     1558 
     1559#: admin/modules/core/functions.inc.php:4375 
     1560msgid "Please enter a valid Outbound CID" 
     1561msgstr "SVP, entrez un CID Sortant valide." 
     1562 
     1563#: admin/modules/core/functions.inc.php:4376 
     1564msgid "Please enter a valid pause time in seconds, using digits only" 
     1565msgstr "" 
     1566"SVP, entrez un un temps de pause valide (utilisant des chiffres uniquement)." 
     1567 
     1568#: admin/modules/core/functions.inc.php:4377 
     1569msgid "" 
     1570"You have entered a non-standard dialpattern for your DID. You can only enter " 
     1571"standard dialpatterns. You must use the inbound routing form to enter non-" 
     1572"standard patterns" 
     1573msgstr "" 
     1574"Vous avez entré un masque non standard pour votre DID. Vous ne pouvez entrer " 
     1575"que des masques standards. Vous devez utiliser une route entrante pour " 
     1576"entrer un masque non standard." 
     1577 
     1578#: admin/modules/core/functions.inc.php:4378 
     1579msgid "" 
     1580"Please enter a valid Caller ID Number or leave it blank for your Assigned " 
     1581"DID/CID pair" 
     1582msgstr "" 
     1583"SVP, entrez un 'Numero CID' valide ou laissez à vide pour votre SDA/CID " 
     1584"assigné" 
     1585 
     1586#: admin/modules/core/functions.inc.php:4385 
     1587msgid "Edit Extension" 
     1588msgstr "Edition Extension" 
     1589 
     1590#: admin/modules/core/functions.inc.php:4385 
     1591#: admin/modules/core/page.ampusers.php:239 
     1592msgid "Add Extension" 
     1593msgstr "Ajout Extension" 
     1594 
     1595#: admin/modules/core/functions.inc.php:4387 
     1596msgid "Edit User" 
     1597msgstr "Edition Utilisateur" 
     1598 
     1599#: admin/modules/core/functions.inc.php:4387 
     1600#: admin/modules/core/page.ampusers.php:101 
     1601msgid "Add User" 
     1602msgstr "Ajout Utilisateur" 
     1603 
     1604#: admin/modules/core/functions.inc.php:4392 
     1605msgid "User Extension" 
     1606msgstr "Extension Utilisateur" 
     1607 
     1608#: admin/modules/core/functions.inc.php:4392 
     1609msgid "The extension number to dial to reach this user." 
     1610msgstr "Le numéro d'extension à composer pour cet utilisateur" 
     1611 
     1612#: admin/modules/core/functions.inc.php:4395 
     1613msgid "User Password" 
     1614msgstr "Mot de Passe Utilisateur" 
     1615 
     1616#: admin/modules/core/functions.inc.php:4395 
     1617msgid "A user will enter this password when logging onto a device." 
     1618msgstr "" 
     1619"Un utilisateur entrera ce mot de passe pour s'identifier sur un périphérique." 
     1620 
     1621#: admin/modules/core/functions.inc.php:4395 
     1622#: admin/modules/core/functions.inc.php:4756 
     1623msgid "logs into a device." 
     1624msgstr "connecté au périphérique" 
     1625 
     1626#: admin/modules/core/functions.inc.php:4395 
     1627#: admin/modules/core/functions.inc.php:4756 
     1628msgid "logs out of a device." 
     1629msgstr "déconnecté du périphérique" 
     1630 
     1631#: admin/modules/core/functions.inc.php:4399 
     1632msgid "Display Name" 
     1633msgstr "Nom Affiché (CID)" 
     1634 
     1635#: admin/modules/core/functions.inc.php:4399 
     1636msgid "" 
     1637"The caller id name for calls from this user will be set to this name. Only " 
     1638"enter the name, NOT the number." 
     1639msgstr "" 
     1640"Le CID de cet utilisateur sera fixé à ce nom. Entrez le nom, pas le numéro!" 
     1641 
     1642#: admin/modules/core/functions.inc.php:4401 
     1643msgid "CID Num Alias" 
     1644msgstr "Numéro alias du CID" 
     1645 
     1646#: admin/modules/core/functions.inc.php:4401 
     1647msgid "" 
     1648"The CID Number to use for internal calls, if different from the extension " 
     1649"number. This is used to masquerade as a different user. A common example is " 
     1650"a team of support people who would like their internal callerid to display " 
     1651"the general support number (a ringgroup or queue). There will be no effect " 
     1652"on external calls." 
     1653msgstr "" 
     1654"Le CID à utiliser pour les appels internes s'il est différent de " 
     1655"l'extension. Cela est utilisé pour passer pour un autre utilisateur. " 
     1656"L'exemple classique est celui d'une équipe support qui souhaite voir " 
     1657"s'afficher le numéro général du support (groupement d'appel ou file " 
     1658"d'attente). Cela n'a aucun effet sur les appels extérieurs." 
     1659 
     1660#: admin/modules/core/functions.inc.php:4402 
     1661msgid "SIP Alias" 
     1662msgstr "Alias SIP" 
     1663 
     1664#: admin/modules/core/functions.inc.php:4402 
     1665msgid "" 
     1666"If you want to support direct sip dialing of users internally or through " 
     1667"anonymous sip calls, you can supply a friendly name that can be used in " 
     1668"addition to the users extension to call them." 
     1669msgstr "" 
     1670"Si vous voulez supporter l'appel direct sip des utilisateurs internes ou au " 
     1671"travers d'appels anonymes, vous pouvez fournir un nom qui peut être utilisé " 
     1672"en plus de l'extension pour appeler." 
     1673 
     1674#: admin/modules/core/functions.inc.php:4407 
     1675msgid "User Devices" 
     1676msgstr "Périphériques utilisateur" 
     1677 
     1678#: admin/modules/core/functions.inc.php:4418 
     1679msgid "Edit:" 
     1680msgstr "Edition:" 
     1681 
     1682#: admin/modules/core/functions.inc.php:4430 
     1683#: admin/modules/core/functions.inc.php:4759 
     1684msgid "Extension Options" 
     1685msgstr "Options Extension" 
     1686 
     1687#: admin/modules/core/functions.inc.php:4431 
     1688msgid "Outbound CID" 
     1689msgstr "CID Sortant" 
     1690 
     1691#: admin/modules/core/functions.inc.php:4431 
     1692msgid "" 
     1693"Overrides the caller id when dialing out a trunk. Any setting here will " 
     1694"override the common outbound caller id set in the Trunks admin." 
     1695"<br><br>Format: <b>\"caller name\" &lt;#######&gt;</b><br><br>Leave this " 
     1696"field blank to disable the outbound callerid feature for this user." 
     1697msgstr "" 
     1698"Remplace le CID lors d'un appel vers un trunk. Ce paramétrage remplacera le " 
     1699"CID sortant défini pour ce Trunk.<br>Format: <b>\"nom de l'appelant\" &lt;" 
     1700"#######&gt;</b><br>Laissez ce champ vide pour ne pas activer cette " 
     1701"fonctionnalité pour cet utilisateur." 
     1702 
     1703#: admin/modules/core/functions.inc.php:4433 
     1704msgid "Ring Time" 
     1705msgstr "Temporisation Sonnerie" 
     1706 
     1707#: admin/modules/core/functions.inc.php:4433 
     1708msgid "" 
     1709"Number of seconds to ring prior to going to voicemail. Default will use the " 
     1710"value set in the General Tab. If no voicemail is configured this will be " 
     1711"ignored." 
     1712msgstr "" 
     1713"Nombre de secondes avant de basculer sur la boîte vocale. Par défaut la " 
     1714"valeur utilisée est celle des réglages globaux. S'il n'y a pas de boîte " 
     1715"configurée, c'est ignoré." 
     1716 
     1717#: admin/modules/core/functions.inc.php:4441 
     1718msgid "Call Waiting" 
     1719msgstr "Attente appel" 
     1720 
     1721#: admin/modules/core/functions.inc.php:4441 
     1722msgid "Set the initial/current Call Waiting state for this user's extension" 
     1723msgstr "Fixe l'état initial/courant de l'attente pour cette extension." 
     1724 
     1725#: admin/modules/core/functions.inc.php:4442 
     1726msgid "Call Screening" 
     1727msgstr "Call Screening" 
     1728 
     1729#: admin/modules/core/functions.inc.php:4442 
     1730msgid "" 
     1731"Call Screening requires external callers to say their name, which will be " 
     1732"played back to the user and allow the user to accept or reject the call.  " 
     1733"Screening with memory only verifies a caller for their caller-id once. " 
     1734"Screening without memory always requires a caller to say their name. Either " 
     1735"mode will always announce the caller based on the last introduction saved " 
     1736"with that callerid. If any user on the system uses the memory option, when " 
     1737"that user is called, the caller will be required to re-introduce themselves " 
     1738"and all users on the system will have that new introduction associated with " 
     1739"the caller's CallerId." 
     1740msgstr "" 
     1741"La fonction Call Screening demande aux appelants de donner leur nom qui est " 
     1742"ensuite répété à l'appelé qui accepte ou rejette l'appel. Le screening avec " 
     1743"mémorisation fait cette vérification au premier appel de ce numéro. Sans " 
     1744"mémorisation, cela est fait pour tout appel. Dans tous les cas, l'appelant " 
     1745"est prévenu par le message du nom sauvegardé. Si un utilisateur utilise " 
     1746"l'option sans mémoire, l'appelant devra redonner son nom et tous les " 
     1747"utilisateurs recevront ce nouvel enregistrement de message en cas de " 
     1748"nouvelle appel de cette personne. " 
     1749 
     1750#: admin/modules/core/functions.inc.php:4443 
     1751msgid "Pinless Dialing" 
     1752msgstr "" 
     1753 
     1754#: admin/modules/core/functions.inc.php:4443 
     1755msgid "" 
     1756"Enabling Pinless Dialing will allow this extension to bypass any pin codes " 
     1757"normally required on outbound calls" 
     1758msgstr "" 
     1759 
     1760#: admin/modules/core/functions.inc.php:4445 
     1761msgid "Assigned DID/CID" 
     1762msgstr "SDA/CID associé" 
     1763 
     1764#: admin/modules/core/functions.inc.php:4446 
     1765msgid "DID Description" 
     1766msgstr "Description SDA" 
     1767 
     1768#: admin/modules/core/functions.inc.php:4446 
     1769msgid "A description for this DID, such as \"Fax\"" 
     1770msgstr "Une description pour ce SDA, comme\"Télécopieur\"" 
     1771 
     1772# #### Ancien Message DID, plus utilise par DID mais peut-etre par d'autres! 
     1773#: admin/modules/core/functions.inc.php:4447 
     1774msgid "Add Inbound DID" 
     1775msgstr "Ajouter une SDA" 
     1776 
     1777#: admin/modules/core/functions.inc.php:4447 
     1778msgid "" 
     1779"A direct DID that is associated with this extension. The DID should be in " 
     1780"the same format as provided by the provider (e.g. full number, 4 digits for " 
     1781"10x4, etc).<br><br>Format should be: <b>XXXXXXXXXX</b><br><br>.An optional " 
     1782"CID can also be associated with this DID by setting the next box" 
     1783msgstr "" 
     1784"Un SDA associé à cette extension. Le SDA doit être au même format que celui " 
     1785"fourni par le provider (nombre complet, 4 chiffres pour 10x4,...)" 
     1786"<br><br>Format :<b>XXXXXXXXXX</b><br><br>. Un identifiant de l'appelant peut " 
     1787"être associé à ce SDA en modifiant le prochain champ." 
     1788 
     1789#: admin/modules/core/functions.inc.php:4448 
     1790msgid "Add Inbound CID" 
     1791msgstr "Ajout CID Sortant" 
     1792 
     1793#: admin/modules/core/functions.inc.php:4448 
     1794msgid "" 
     1795"Add a CID for more specific DID + CID routing. A DID must be specified in " 
     1796"the above Add DID box. In addition to standard dial sequences, you can also " 
     1797"put Private, Blocked, Unknown, Restricted, Anonymous and Unavailable in " 
     1798"order to catch these special cases if the Telco transmits them." 
     1799msgstr "" 
     1800"Ajout d'un identifiant appelant pour des routages plus spécifiques : SDA + " 
     1801"identifiant. Un SDA doit avoir été spécifié au dessus. En plus des séquences " 
     1802"standard d'appel, vous pouvez aussi mettre Privé, Bloqué, Inconnu, " 
     1803"Restreint, Anonyme et Invalide pour gére ces cas particuliers si l'opérateur " 
     1804"Telecom les transmet." 
     1805 
     1806#: admin/modules/core/functions.inc.php:4456 
     1807msgid "DID / CID" 
     1808msgstr "DID / CID" 
     1809 
     1810#: admin/modules/core/functions.inc.php:4460 
     1811msgid "Any DID" 
     1812msgstr "" 
     1813 
     1814#: admin/modules/core/functions.inc.php:4476 
     1815msgid "Recording Options" 
     1816msgstr "Option d'enregistrement" 
     1817 
     1818#: admin/modules/core/functions.inc.php:4477 
     1819msgid "Record Incoming" 
     1820msgstr "Enregistrement Entrant" 
     1821 
     1822#: admin/modules/core/functions.inc.php:4477 
     1823msgid "Record all inbound calls received at this extension." 
     1824msgstr "Enregistre tous les appels entrants reçus à cette Extension." 
     1825 
     1826#: admin/modules/core/functions.inc.php:4478 
     1827msgid "Record Outgoing" 
     1828msgstr "Enregistrement Sortant" 
     1829 
     1830#: admin/modules/core/functions.inc.php:4478 
     1831msgid "Record all outbound calls received at this extension." 
     1832msgstr "Enregistrer tous les appels sortants reçus à cette Extension." 
     1833 
     1834#: admin/modules/core/functions.inc.php:4496 
     1835msgid "Warning! Extension" 
     1836msgstr "Attention!'Extension" 
     1837 
     1838#: admin/modules/core/functions.inc.php:4496 
     1839msgid "is not allowed for your account" 
     1840msgstr "n'est pas permise pour votre compte" 
     1841 
     1842#: admin/modules/core/functions.inc.php:4510 
     1843msgid "Conflicting Extensions" 
     1844msgstr "Conflit d'extensions" 
     1845 
     1846#: admin/modules/core/functions.inc.php:4510 
     1847msgid "" 
     1848"The following extension numbers are in conflict, you can click on the item" 
     1849"(s) below to edit the conflicting entity." 
     1850msgstr "" 
     1851"Les extensions suivantes sont en conflit. Vous pouvez cliquer et éditer les " 
     1852"entités en conflit." 
     1853 
     1854#: admin/modules/core/functions.inc.php:4514 
     1855msgid "Configure user again:" 
     1856msgstr "Reconfigurer l'utilisateur" 
     1857 
     1858#: admin/modules/core/functions.inc.php:4514 
     1859msgid "Configure extension again:" 
     1860msgstr "Reconfigurer l'extension" 
     1861 
     1862#: admin/modules/core/functions.inc.php:4561 
     1863msgid "Please enter the dtmfmode for this device" 
     1864msgstr "SVP, entrez un mode DTMF valide pour ce péripherique." 
     1865 
     1866#: admin/modules/core/functions.inc.php:4562 
     1867msgid "Please enter the channel for this device" 
     1868msgstr "SVP, entrez un canal valide pour ce péripherique." 
     1869 
     1870#: admin/modules/core/functions.inc.php:4563 
     1871msgid "" 
     1872"You have not entered a Secret for this device, although this is possible it " 
     1873"is generally bad practice to not assign a Secret to a device. Are you sure " 
     1874"you want to leave the Secret empty?" 
     1875msgstr "" 
     1876"Vous n'avez pas entré de mot de passe dans le champ 'secret' de ce " 
     1877"péripherique. Bien que cela soit possible, il est généralement déconseillé " 
     1878"de ne pas saisir le champ 'secret' pour un périphérique. Etes vous certain " 
     1879"de laisser ce champ vide?" 
     1880 
     1881#: admin/modules/core/functions.inc.php:4564 
     1882msgid "Please enter a Secret for this device" 
     1883msgstr "SVP, entrez un mot de passe (secret) pour ce péripherique." 
     1884 
     1885#: admin/modules/core/functions.inc.php:4631 
     1886msgid "Generic SIP Device" 
     1887msgstr "Périphérique SIP" 
     1888 
     1889#: admin/modules/core/functions.inc.php:4632 
     1890msgid "Generic IAX2 Device" 
     1891msgstr "Périphérique IAX2" 
     1892 
     1893#: admin/modules/core/functions.inc.php:4633 
     1894msgid "Generic ZAP Device" 
     1895msgstr "Périphérique ZAP" 
     1896 
     1897#: admin/modules/core/functions.inc.php:4634 
     1898msgid "Other (Custom) Device" 
     1899msgstr "Périphérique autre" 
     1900 
     1901#: admin/modules/core/functions.inc.php:4639 
     1902msgid "Fixed" 
     1903msgstr "Fixe" 
     1904 
     1905#: admin/modules/core/functions.inc.php:4640 
     1906msgid "Adhoc" 
     1907msgstr "Adhoc" 
     1908 
     1909#: admin/modules/core/functions.inc.php:4643 
     1910msgid "none" 
     1911msgstr "aucun" 
     1912 
     1913#: admin/modules/core/functions.inc.php:4644 
     1914msgid "New User" 
     1915msgstr "Nouvel Utilisateur" 
     1916 
     1917#: admin/modules/core/functions.inc.php:4677 
     1918#: admin/modules/core/page.ampusers.php:239 
     1919msgid "Add Device" 
     1920msgstr "Ajout Périphérique" 
     1921 
     1922#: admin/modules/core/functions.inc.php:4679 
     1923msgid "Add an Extension" 
     1924msgstr "Ajout Extension" 
     1925 
     1926#: admin/modules/core/functions.inc.php:4681 
     1927msgid "Please select your Device below then click Submit" 
     1928msgstr "Sélectionner votre périphérique puis cliquer sur Soumettre" 
    7381929 
    7391930# msgid "Not found" 
     
    7441935# "La section demand&eacute;e n'existe pas ou vous n'y avez pas acc&egrave;s." 
    7451936# #       FIN config 
    746 #: amp_conf/htdocs/admin/modules/core/page.devices.php:18 
    747 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4657 
    748 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4674 
    749 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4696 
     1937#: admin/modules/core/functions.inc.php:4682 
     1938#: admin/modules/core/functions.inc.php:4699 
     1939#: admin/modules/core/functions.inc.php:4721 
     1940#: admin/modules/core/page.devices.php:18 
    7501941msgid "Device" 
    7511942msgstr "Périphérique" 
    7521943 
    753 #: amp_conf/htdocs/admin/modules/core/module.php:4 
    754 msgid "Basic" 
    755 msgstr "Base" 
    756  
    757 #: amp_conf/htdocs/admin/modules/core/module.php:5 
    758 #: amp_conf/htdocs/admin/modules/core/install.php:4 
    759 msgid "Core" 
    760 msgstr "Coeur" 
    761  
    762 # La suite ne sont plus des messages de config. Peut-etre utilise par d'autres! 
    763 # msgid "Incoming Calls" 
    764 # msgstr "Appels entrants" 
    765 #: amp_conf/htdocs/admin/modules/core/module.php:6 
    766 msgid "Extensions" 
    767 msgstr "Extensions" 
    768  
    769 #: amp_conf/htdocs/admin/modules/core/module.php:7 
    770 msgid "Users" 
    771 msgstr "Utilisateurs" 
    772  
    773 #: amp_conf/htdocs/admin/modules/core/module.php:8 
    774 msgid "Devices" 
    775 msgstr "Périphériques" 
    776  
    777 #: amp_conf/htdocs/admin/modules/core/module.php:9 
    778 msgid "Inbound Routes" 
    779 msgstr "Routes Entrantes" 
    780  
    781 #: amp_conf/htdocs/admin/modules/core/module.php:10 
    782 msgid "Zap Channel DIDs" 
    783 msgstr "Canal ZAP DIDs" 
    784  
    785 #: amp_conf/htdocs/admin/modules/core/module.php:11 
    786 msgid "Outbound Routes" 
    787 msgstr "Routes Sortantes" 
    788  
    789 #: amp_conf/htdocs/admin/modules/core/module.php:12 
    790 msgid "Trunks" 
    791 msgstr "Trunks" 
    792  
    793 #: amp_conf/htdocs/admin/modules/core/module.php:13 
    794 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:159 
    795 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:351 
    796 msgid "General Settings" 
    797 msgstr "Réglages Généraux" 
    798  
    799 #: amp_conf/htdocs/admin/modules/core/module.php:14 
    800 msgid "Administrators" 
    801 msgstr "Administrateurs" 
    802  
    803 #: amp_conf/htdocs/admin/modules/core/module.php:15 
    804 msgid "FreePBX Support" 
    805 msgstr "Support FreePBX" 
    806  
    807 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:101 
    808 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4362 
    809 msgid "Add User" 
    810 msgstr "Ajout Utilisateur" 
    811  
    812 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:118 
     1944#: admin/modules/core/functions.inc.php:4685 
     1945msgid "Edit existing Device" 
     1946msgstr "Edition périphérique existant" 
     1947 
     1948#: admin/modules/core/functions.inc.php:4687 
     1949msgid "Edit existing Extension" 
     1950msgstr "Edition extension existante" 
     1951 
     1952#: admin/modules/core/functions.inc.php:4702 
     1953#, php-format 
     1954msgid "Delete Device %s" 
     1955msgstr "Suppression Périphérique %s" 
     1956 
     1957#: admin/modules/core/functions.inc.php:4708 
     1958#, php-format 
     1959msgid "Edit Default User: %s" 
     1960msgstr "Edition utilisateur par défaut: %s" 
     1961 
     1962#: admin/modules/core/functions.inc.php:4708 
     1963#, php-format 
     1964msgid "Edit Fixed User: %s" 
     1965msgstr "Edition Utilisateur: %s" 
     1966 
     1967#: admin/modules/core/functions.inc.php:4738 
     1968msgid "Please enter a device id." 
     1969msgstr "SVP, entrez un identifiant péripherique." 
     1970 
     1971#: admin/modules/core/functions.inc.php:4739 
     1972msgid "Please enter a valid Description for this device" 
     1973msgstr "SVP, entrez une Description de Peripherique valide" 
     1974 
     1975#: admin/modules/core/functions.inc.php:4740 
     1976msgid "Please enter a valid Emergency CID" 
     1977msgstr "SVP, entrez un CID d'Urgence valide." 
     1978 
     1979#: admin/modules/core/functions.inc.php:4748 
     1980msgid "Device Info" 
     1981msgstr "Information périphérique" 
     1982 
     1983#: admin/modules/core/functions.inc.php:4752 
     1984msgid "Device ID" 
     1985msgstr "Identité Périphérique" 
     1986 
     1987#: admin/modules/core/functions.inc.php:4752 
     1988msgid "" 
     1989"Give your device a unique integer ID.  The device will use this ID to " 
     1990"authenticate to the system." 
     1991msgstr "" 
     1992"Donnez à votre périphérique un identiifiant unique. Le périphérique " 
     1993"utilisera cette identitifiant pour s'authentifier au systÚme." 
     1994 
     1995#: admin/modules/core/functions.inc.php:4754 
     1996msgid "" 
     1997"The caller id name for this device will be set to this description until it " 
     1998"is logged into." 
     1999msgstr "" 
     2000"Le nom du CID pour ce périphérique sera mis à cette description jusqu'à ce " 
     2001"qu'il s'inscrive" 
     2002 
     2003#: admin/modules/core/functions.inc.php:4755 
     2004#: admin/modules/core/functions.inc.php:4760 
     2005msgid "Emergency CID" 
     2006msgstr "CID d'Urgence" 
     2007 
     2008#: admin/modules/core/functions.inc.php:4755 
     2009#: admin/modules/core/functions.inc.php:4760 
     2010msgid "" 
     2011"This caller id will always be set when dialing out an Outbound Route flagged " 
     2012"as Emergency.  The Emergency CID overrides all other caller id settings." 
     2013msgstr "" 
     2014"Le CID (Caller ID) de l'appelant sera toujours transmis lors d'une " 
     2015"numérotation vers une Route Sortante labellisée comme Urgence. Le CID " 
     2016"d'Urgence remplace tout autre CID." 
     2017 
     2018#: admin/modules/core/functions.inc.php:4756 
     2019msgid "Device Type" 
     2020msgstr "Type Périphérique" 
     2021 
     2022#: admin/modules/core/functions.inc.php:4756 
     2023msgid "" 
     2024"Devices can be fixed or adhoc. Fixed devices are always associated to the " 
     2025"same extension/user. Adhoc devices can be logged into and logged out of by " 
     2026"users." 
     2027msgstr "" 
     2028"Les périphériques peuvent être <b>Fixe</b> ou <b>Adhoc</b>.<br>Les " 
     2029"périphériques fixes sont toujours associés à la même extension/utilisateur." 
     2030"<br>Les périphériques adhocs sont accessibles par les utilisateurs en tapant " 
     2031"<strong>*11</strong> pour s'inscrire et <strong>*12</strong> pour se " 
     2032"désinscrire." 
     2033 
     2034#: admin/modules/core/functions.inc.php:4757 
     2035msgid "Default User" 
     2036msgstr "Utilisateur par défaut" 
     2037 
     2038#: admin/modules/core/functions.inc.php:4757 
     2039msgid "" 
     2040"Fixed devices will always mapped to this user.  Adhoc devices will be mapped " 
     2041"to this user by default.<br><br>If selecting 'New User', a new User " 
     2042"Extension of the same Device ID will be set as the Default User." 
     2043msgstr "" 
     2044"Les Périphériques fixes seront toujours associés à cet utilisateur. Les " 
     2045"périphériques adhocs seront associés à cet utilisateur par défaut. <br>Si " 
     2046"l'option <b>Nouvel Utilisateur</b> est choisie, une nouvelle extension du " 
     2047"même périphérique (Identitifiant) sera sélectionnée comme utilisateur par " 
     2048"défaut" 
     2049 
     2050#: admin/modules/core/functions.inc.php:4765 
     2051msgid "Device Options" 
     2052msgstr "Options Périphérique" 
     2053 
     2054#: admin/modules/core/functions.inc.php:4767 
     2055#, php-format 
     2056msgid "This device uses %s technology." 
     2057msgstr "Ce périphérique utilise la technologie %s" 
     2058 
     2059#: admin/modules/core/functions.inc.php:4767 
     2060msgid "Via DAHDI compatibility mode" 
     2061msgstr "Via le mode de compatibilité DAHDI" 
     2062 
     2063#: admin/modules/core/install.php:5 
     2064msgid "User Logon" 
     2065msgstr "Connexion utilisateur" 
     2066 
     2067#: admin/modules/core/install.php:6 
     2068msgid "User Logoff" 
     2069msgstr "Déconnexion utilisateur" 
     2070 
     2071#: admin/modules/core/install.php:7 
     2072msgid "ZapBarge" 
     2073msgstr "Entrée en tiers" 
     2074 
     2075#: admin/modules/core/install.php:8 
     2076msgid "ChanSpy" 
     2077msgstr "ChanSpy" 
     2078 
     2079#: admin/modules/core/install.php:9 
     2080msgid "Simulate Incoming Call" 
     2081msgstr "Simule un appels entrant" 
     2082 
     2083#: admin/modules/core/install.php:10 
     2084msgid "Dial System FAX" 
     2085msgstr "Appel systÚme Fax" 
     2086 
     2087#: admin/modules/core/install.php:11 
     2088msgid "Directed Call Pickup" 
     2089msgstr "Interception d'appel" 
     2090 
     2091#: admin/modules/core/install.php:12 
     2092msgid "Asterisk General Call Pickup" 
     2093msgstr "Interception général d'appel Asterisk" 
     2094 
     2095#: admin/modules/core/install.php:13 
     2096msgid "In-Call Asterisk Blind Transfer" 
     2097msgstr "Transfert en aveugle Asterisk" 
     2098 
     2099#: admin/modules/core/install.php:14 
     2100msgid "In-Call Asterisk Attended Transfer" 
     2101msgstr "Mise en liaison Asterisk" 
     2102 
     2103#: admin/modules/core/install.php:15 
     2104msgid "In-Call Asterisk Toggle Call Recording" 
     2105msgstr "Bascule enregistrement d'appel Asterisk" 
     2106 
     2107#: admin/modules/core/install.php:16 
     2108msgid "In-Call Asterisk Disconnect Code" 
     2109msgstr "Code de déconnexion Asterisk" 
     2110 
     2111#: admin/modules/core/install.php:43 
     2112#, php-format 
     2113msgid "ERROR: trying to check if %s already in use" 
     2114msgstr "ERREUR: impossible de vérifier si %s est en cours d'utilisation" 
     2115 
     2116#: admin/modules/core/install.php:130 
     2117msgid "Checking if directdids need migrating.." 
     2118msgstr "Vérification de la nécessité de migration des SDA" 
     2119 
     2120#: admin/modules/core/install.php:134 
     2121msgid "starting migration" 
     2122msgstr "Migration en cours" 
     2123 
     2124#: admin/modules/core/install.php:151 
     2125msgid "User: " 
     2126msgstr "Utilisateur:" 
     2127 
     2128#: admin/modules/core/install.php:154 
     2129#, php-format 
     2130msgid "ERROR: failed to insert %s for user %s" 
     2131msgstr "ERREUR: impossible d'insérer %s pour l'utilisateur %s" 
     2132 
     2133#: admin/modules/core/install.php:159 
     2134#, php-format 
     2135msgid "" 
     2136"There were %s failures migrating directdids, users table not being changed" 
     2137msgstr "" 
     2138"Il y a %s erreurs de migration des SDA, la table utilisateurs n'a pas été " 
     2139"modifiée" 
     2140 
     2141#: admin/modules/core/install.php:163 
     2142#, php-format 
     2143msgid "Removing field %s from users table.." 
     2144msgstr "Supression du champ %s de la table utilisateurs.." 
     2145 
     2146#: admin/modules/core/install.php:167 
     2147msgid "not present" 
     2148msgstr "non présent" 
     2149 
     2150#: admin/modules/core/install.php:169 
     2151msgid "removed" 
     2152msgstr "retiré" 
     2153 
     2154#: admin/modules/core/install.php:174 
     2155msgid "" 
     2156"ERROR: could not access user table to migrate directdids to incoming table, " 
     2157"aborting" 
     2158msgstr "" 
     2159"ERREUR: ne peut accéder à l atable utilisateurspour migrer les SDA à la " 
     2160"table incoming, arrêt" 
     2161 
     2162#: admin/modules/core/install.php:177 
     2163msgid "already done" 
     2164msgstr "déjà fait" 
     2165 
     2166#: admin/modules/core/install.php:182 
     2167msgid "updating zap callgroup, pickupgroup.." 
     2168msgstr "mis à jour des groupements d'appels et d'interception Zap.." 
     2169 
     2170#: admin/modules/core/install.php:207 
     2171#, php-format 
     2172msgid "updated %s callgroups, %s pickupgroups" 
     2173msgstr "mis à jour groupement d'appels %s, groupement d'interception %s" 
     2174 
     2175#: admin/modules/core/install.php:209 
     2176msgid "not needed" 
     2177msgstr "pas nécessaire" 
     2178 
     2179#: admin/modules/core/install.php:214 
     2180msgid "checking for delay_answer field .." 
     2181msgstr "vérification du champ delay_answer" 
     2182 
     2183#: admin/modules/core/install.php:221 admin/modules/core/install.php:237 
     2184msgid "fatal error" 
     2185msgstr "erreur fatale" 
     2186 
     2187#: admin/modules/core/install.php:224 admin/modules/core/install.php:240 
     2188msgid "added" 
     2189msgstr "ajouté" 
     2190 
     2191#: admin/modules/core/install.php:227 admin/modules/core/install.php:243 
     2192msgid "already exists" 
     2193msgstr "Existe déjà" 
     2194 
     2195#: admin/modules/core/install.php:230 
     2196msgid "checking for pricid field .." 
     2197msgstr "vérification du champ pricid" 
     2198 
     2199#: admin/modules/core/install.php:254 
     2200msgid "Created" 
     2201msgstr "Créé" 
     2202 
     2203#: admin/modules/core/install.php:256 
     2204msgid "Already exists!" 
     2205msgstr "Existe déjà!" 
     2206 
     2207#: admin/modules/core/page.ampusers.php:118 
    8132208msgid "Edit Administrator" 
    8142209msgstr "Edition Administrateur" 
    8152210 
    816 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:129 
     2211#: admin/modules/core/page.ampusers.php:129 
    8172212#, php-format 
    8182213msgid "Delete User: %s" 
    8192214msgstr "Suppression Utilisateur: %s" 
    8202215 
    821 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:147 
     2216#: admin/modules/core/page.ampusers.php:147 
    8222217msgid "Add Administrator" 
    8232218msgstr "Ajout Administrateur" 
    8242219 
    825 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:165 
     2220#: admin/modules/core/page.ampusers.php:165 
    8262221msgid "NOTE:" 
    8272222msgstr "NOTE:" 
    8282223 
    829 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:165 
    830 msgid "AUTHTYPE is not set to 'database' in /etc/amportal.conf - note that this module is not currently providing access control, and changing passwords here or adding users will have no effect unless AUTHTYPE is set to 'database'." 
    831 msgstr "AUTHTYPE n'a pas comme valeur  'database' dans /etc/amportal.conf. Ce module ne fournit pas de contrÃŽle d'accés, et changer de mot de passe ou ajouter des utilisateurs n'aura aucun effet tant que AUTHTYPE n'est pas renseigné à 'database'." 
    832  
    833 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:171 
     2224#: admin/modules/core/page.ampusers.php:165 
     2225msgid "" 
     2226"AUTHTYPE is not set to 'database' in /etc/amportal.conf - note that this " 
     2227"module is not currently providing access control, and changing passwords " 
     2228"here or adding users will have no effect unless AUTHTYPE is set to " 
     2229"'database'." 
     2230msgstr "" 
     2231"AUTHTYPE n'a pas comme valeur  'database' dans /etc/amportal.conf. Ce module " 
     2232"ne fournit pas de contrÃŽle d'accés, et changer de mot de passe ou ajouter " 
     2233"des utilisateurs n'aura aucun effet tant que AUTHTYPE n'est pas renseigné à " 
     2234"'database'." 
     2235 
     2236#: admin/modules/core/page.ampusers.php:171 
    8342237msgid "Username<span>Create a unique username for this new user</span>" 
    835 msgstr "Nom Administrateur<span>Création d'un nom unique pour cet administrateur</span>" 
    836  
    837 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:178 
     2238msgstr "" 
     2239"Nom Administrateur<span>Création d'un nom unique pour cet administrateur</" 
     2240"span>" 
     2241 
     2242#: admin/modules/core/page.ampusers.php:178 
    8382243msgid "Password<span>Create a password for this new user</span>" 
    8392244msgstr "Mot de Passe<span>Mot de passe pour cet administrateur</span>" 
    8402245 
    841 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:186 
     2246#: admin/modules/core/page.ampusers.php:186 
    8422247msgid "Access Restrictions" 
    8432248msgstr "Restrictions d'accÚs" 
    8442249 
    845 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:191 
    846 msgid "Department Name<span>Restrict this user's view of Digital Receptionist menus and System Recordings to only those for this department.</span>" 
    847 msgstr "Nom du Département<span>Restriction d'affichage, pour cet administrateur, à des menus Serveur vocal et Enregistrement systÚme appartenant à ce département.</span>" 
    848  
    849 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:198 
    850 msgid "Extension Range<span>Restrict this user's view to only Extensions, Ring Groups, and Queues within this range.</span>" 
    851 msgstr "Gamme des Extensions<span>Restriction d'affichage, pour cet utilisateur aux extensions, groupes de sonneries et files d'attente appartenant à cette <strong>Gamme</strong>.</span>" 
    852  
    853 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:207 
    854 msgid "Admin Access<span>Select the Admin Sections this user should have access to.</span>" 
    855 msgstr "AccÚs Administrateur<span>Sélection des modules auxquels cet administrateur aura accÚs.</span>" 
    856  
    857 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:234 
     2250#: admin/modules/core/page.ampusers.php:191 
     2251msgid "" 
     2252"Department Name<span>Restrict this user's view of Digital Receptionist menus " 
     2253"and System Recordings to only those for this department.</span>" 
     2254msgstr "" 
     2255"Nom du Département<span>Restriction d'affichage, pour cet administrateur, à " 
     2256"des menus Serveur vocal et Enregistrement systÚme appartenant à ce " 
     2257"département.</span>" 
     2258 
     2259#: admin/modules/core/page.ampusers.php:198 
     2260msgid "" 
     2261"Extension Range<span>Restrict this user's view to only Extensions, Ring " 
     2262"Groups, and Queues within this range.</span>" 
     2263msgstr "" 
     2264"Gamme des Extensions<span>Restriction d'affichage, pour cet utilisateur aux " 
     2265"extensions, groupes de sonneries et files d'attente appartenant à cette " 
     2266"<strong>Gamme</strong>.</span>" 
     2267 
     2268#: admin/modules/core/page.ampusers.php:207 
     2269msgid "" 
     2270"Admin Access<span>Select the Admin Sections this user should have access to." 
     2271"</span>" 
     2272msgstr "" 
     2273"AccÚs Administrateur<span>Sélection des modules auxquels cet administrateur " 
     2274"aura accÚs.</span>" 
     2275 
     2276#: admin/modules/core/page.ampusers.php:234 
    8582277msgid "Apply Changes Bar" 
    8592278msgstr "Barre d'application des changements" 
    8602279 
    861 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:239 
    862 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4652 
    863 msgid "Add Device" 
    864 msgstr "Ajout Périphérique" 
    865  
    866 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:239 
    867 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4360 
    868 msgid "Add Extension" 
    869 msgstr "Ajout Extension" 
    870  
    871 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:244 
     2280#: admin/modules/core/page.ampusers.php:244 
    8722281msgid "ALL SECTIONS" 
    8732282msgstr "TOUS LES MODULES" 
    8742283 
    875 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:252 
    876 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:766 
    877 #: amp_conf/htdocs/admin/modules/core/page.general.php:453 
    878 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:108 
    879 #: amp_conf/htdocs/admin/modules/core/page.routing.php:584 
     2284#: admin/modules/core/page.ampusers.php:252 
     2285#: admin/modules/core/page.general.php:453 
     2286#: admin/modules/core/page.routing.php:584 
     2287#: admin/modules/core/page.trunks.php:766 
     2288#: admin/modules/core/page.zapchandids.php:108 
    8802289msgid "Submit Changes" 
    8812290msgstr "Soumettre Changements" 
    8822291 
    883 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:266 
     2292#: admin/modules/core/page.ampusers.php:266 
    8842293msgid "Username must not be blank" 
    8852294msgstr "Un nom d'utilisateur ne peut être à blanc" 
    8862295 
    887 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:268 
    888 msgid "Username cannot start with a number, and can only contain letters and numbers" 
    889 msgstr "Un nom d'utilisateur doit commencer par une lettre et ne contenir que des chiffres et des lettres" 
    890  
    891 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:270 
     2296#: admin/modules/core/page.ampusers.php:268 
     2297msgid "" 
     2298"Username cannot start with a number, and can only contain letters and numbers" 
     2299msgstr "" 
     2300"Un nom d'utilisateur doit commencer par une lettre et ne contenir que des " 
     2301"chiffres et des lettres" 
     2302 
     2303#: admin/modules/core/page.ampusers.php:270 
    8922304msgid "For security reasons, you cannot use the department name default" 
    893 msgstr "Pour des raisons de sécurité, vous ne pouvez utiliser le nom de département par défaut" 
    894  
    895 #: amp_conf/htdocs/admin/modules/core/page.ampusers.php:272 
     2305msgstr "" 
     2306"Pour des raisons de sécurité, vous ne pouvez utiliser le nom de département " 
     2307"par défaut" 
     2308 
     2309#: admin/modules/core/page.ampusers.php:272 
    8962310msgid "Department name cannot have a space" 
    8972311msgstr "Un nom de département ne peut avoir un espace" 
    8982312 
    899 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:159 
    900 #: amp_conf/htdocs/admin/modules/core/page.routing.php:164 
    901 msgid "Error fetching prefix list for: " 
    902 msgstr "Erreur lors de la récupération de la liste des préfixes pour:" 
    903  
    904 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:164 
    905 #: amp_conf/htdocs/admin/modules/core/page.routing.php:169 
    906 msgid "Invalid format for NPA-NXX code (must be format: NXXNXX)" 
    907 msgstr "Format invalide pour le code NPA-NXX (format doit être; <b>NXXNXX</b>)" 
    908  
    909 # ########################################################## 
    910 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:191 
    911 msgid "Add Trunk" 
    912 msgstr "Ajout Trunk" 
    913  
    914 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:198 
    915 msgid "Trunk" 
    916 msgstr "Trunk" 
    917  
    918 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:210 
    919 msgid "Add a Trunk" 
    920 msgstr "Ajout Trunk" 
    921  
    922 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:214 
    923 msgid "Add Zap Trunk" 
    924 msgstr "Ajout Trunk ZAP" 
    925  
    926 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:214 
    927 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:325 
    928 msgid "DAHDI compatibility mode" 
    929 msgstr "Mode compatibilité DAHDI" 
    930  
    931 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:215 
    932 msgid "Add IAX2 Trunk" 
    933 msgstr "Ajout Trunk IAX2" 
    934  
    935 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:216 
    936 msgid "Add SIP Trunk" 
    937 msgstr "Ajout Trunk SIP" 
    938  
    939 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:217 
    940 msgid "Add ENUM Trunk" 
    941 msgstr "Ajout Trunk ENUM" 
    942  
    943 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:218 
    944 msgid "Add DUNDi Trunk" 
    945 msgstr "Ajout Trunk DUNDi" 
    946  
    947 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:219 
    948 msgid "Add Custom Trunk" 
    949 msgstr "Ajout Trunk Personnalisé" 
    950  
    951 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:280 
    952 #, php-format 
    953 msgid "Edit %s Trunk" 
    954 msgstr "Edition Trunk %s" 
    955  
    956 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:280 
    957 msgid "DAHDI compatibility Mode" 
    958 msgstr "Mode compatibilité DAHDI" 
    959  
    960 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:281 
    961 #, php-format 
    962 msgid "Delete Trunk %s" 
    963 msgstr "Suppression Trunk %s" 
    964  
    965 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:291 
    966 msgid "In use by" 
    967 msgstr "Utilis&eacute; par" 
    968  
    969 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:291 
    970 msgid "route" 
    971 msgstr "route" 
    972  
    973 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:291 
    974 msgid "routes" 
    975 msgstr "routes" 
    976  
    977 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:293 
    978 #: amp_conf/htdocs/admin/modules/core/page.did.php:138 
     2313#: admin/modules/core/page.did.php:81 
     2314msgid " (toggle sort)" 
     2315msgstr "" 
     2316 
     2317#: admin/modules/core/page.did.php:85 admin/modules/core/page.did.php:173 
     2318#: admin/modules/core/page.did.php:184 
     2319msgid "Add Incoming Route" 
     2320msgstr "Ajout Route Entrante" 
     2321 
     2322#: admin/modules/core/page.did.php:86 
     2323msgid "All DIDs" 
     2324msgstr "" 
     2325 
     2326#: admin/modules/core/page.did.php:87 
     2327msgid "User DIDs" 
     2328msgstr "" 
     2329 
     2330#: admin/modules/core/page.did.php:88 
     2331msgid "General DIDs" 
     2332msgstr "" 
     2333 
     2334#: admin/modules/core/page.did.php:89 
     2335msgid "Unused DIDs" 
     2336msgstr "" 
     2337 
     2338#: admin/modules/core/page.did.php:121 
     2339msgid "any DID" 
     2340msgstr "Tout SDA" 
     2341 
     2342#: admin/modules/core/page.did.php:122 
     2343msgid "any CID" 
     2344msgstr "Tout CID" 
     2345 
     2346#: admin/modules/core/page.did.php:146 admin/modules/core/page.trunks.php:293 
    9792347msgid "Route" 
    9802348msgstr "Route" 
    9812349 
    982 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:293 
    983 msgid "Sequence" 
    984 msgstr "Séquence" 
    985  
    986 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:297 
    987 msgid "WARNING:" 
    988 msgstr "ATTENTION:" 
    989  
    990 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:297 
    991 msgid "This trunk is not used by any routes!" 
    992 msgstr "Ce trunk n'est utilisé par aucune route!" 
    993  
    994 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:298 
    995 msgid "This trunk will not be able to be used for outbound calls until a route is setup that uses it. Click on <b>Outbound Routes</b> to setup routing." 
    996 msgstr "Ce trunk ne peut pas être utilisé pour des appels sortants tant qu'une route ne l'utilise pas. Voir dans le menu <strong>Routes Sortantes</strong>." 
    997  
    998 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:329 
    999 msgid "FreePBX offers limited support for DUNDi trunks and additional manual configuration is required. The trunk name should correspond to the [mappings] section of the remote dundi.conf systems. For example, you may have a mapping on the remote system, and corresponding configurations in dundi.conf locally, that looks as follows:<br /><br />[mappings]<br />priv => dundi-extens,0,IAX2,priv:${SECRET}@218.23.42.26/${NUMBER},noparital<br /><br />In this example, you would create this trunk and name it priv. You would then create the corresponding IAX2 trunk with proper settings to work with DUNDi. This can be done by making an IAX2 trunk in FreePBX or by using the iax_custom.conf file.<br />The dundi-extens context in this example must be created in extensions_custom.conf. This can simply include contexts such as ext-local, ext-intercom-users, ext-paging and so forth to provide access to the corresponding extensions and features provided by these various contexts and generated by FreePBX." 
    1000 msgstr "FreePBX offre un support limité aux trunks DUNDi et nécessite une configuration manuelle. Le nom du trunk doit correspondre à la section [mappings] du systÚme dundi.conf à distance. Par exemple, vous pouvez avoir un mapping sur la machine distante et des configurations locales dundi.conf, ce qui ressemble à:<br /><br />[mappings]<br />priv => dundi-extens,0,IAX2,priv:${SECRET}@218.23.42.26/${NUMBER},noparital<br /><br />Dans cet exemple, vous allez créer ce trunk et l'appeler priv. Vous allez ensuite créer le trunk correspondant IAX2 avec les paramÚtres idoines pour fonctionner avec DUNDi. Ce qui peut être fait en créant un trunk IAX2 avec FreePBX ou en utilisant le fichier iax_custom.conf.<br />Le contexte dundi-extens dans cet exemple doit être créé dans extensions_custom.conf. Cela peut inclure simplement des contextes tels que ext-local, ext-intercom-users, ext-paging,... pour accéder aux extensions et fonctionnalités fournies par ces contextes nombreux et générées par FreePBX." 
    1001  
    1002 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:356 
    1003 msgid "Outbound Caller ID" 
    1004 msgstr "CID Sortant" 
    1005  
    1006 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:356 
    1007 msgid "Caller ID for calls placed out on this trunk<br><br>Format: <b>\"caller name\" &lt;#######&gt;</b>. You can also use the magic string 'hidden' to hide the CallerID sent out over Digital lines ONLY (E1/T1/J1/BRI/SIP/IAX)" 
    1008 msgstr "CID pour les appels envoyé sur ce trunk<br><br>Format: <b>\"nom appelant\"&lt;#######&gt;</b>. Vous pouvez aussi utiliser la chaîne 'hidden' pour cacher le CID envoyé sur les lignes numériques seulement (E1/T1/J1/BRI/SIP/IAX)" 
    1009  
    1010 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:363 
    1011 msgid "Never Override CallerID" 
    1012 msgstr "Ne jamais modifier le CID" 
    1013  
    1014 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:363 
    1015 msgid "Some VoIP providers will drop the call if you try to send an invalid CallerID (one you don't 'own.' Use this to never send a CallerID that you haven't explicitly specified in this trunk or in the outbound callerid field of an extension/user. You might notice this problem if you discover that Follow-Me or RingGroups with external numbers don't work properly. Checking this box has the effect of disabling 'foreign' callerids from going out this trunk. You must define an Outbound Caller ID on the this trunk when checking this." 
    1016 msgstr "Quelques fournisseurs VoIP annuleront l'appel si vous essayez d'envoyer un CID invalide. Utilisez cela pour ne jamais envoyer un CID que vous n'avez pas explicitement déclaré dans ce trunk ou dans le champ de sortie du CID d'une extension/utilisateur. Vous pouvez remarquer ce problÚme si le Follow Me ou les groupements d'appels ne fonctionnent pas correctement. Cette option empêche les appels 'étrangers' d'aller sur ce trunk. Vous devez définir un CID sortant sur ce trunk si vous activez cette option." 
    1017  
    1018 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:373 
    1019 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:377 
    1020 msgid "Maximum Channels" 
    1021 msgstr "Nombre maximal de canaux" 
    1022  
    1023 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:373 
    1024 #, php-format 
    1025 msgid "Controls the maximum number of outbound channels (simultaneous calls) that can be used on this trunk. To count inbound calls against this maximum, use the auto-generated context: %s as the inbound trunk's context. (see extensions_additional.conf) Leave blank to specify no maximum." 
    1026 msgstr "ContrÃŽle le nombre maximal de canaux (appels entrants et sortants simultanés) sur ce trunk. Pour compter les appels entrants dans ce maximum, utilisez le contexte auto-généré: %s comme contexte trunk entrant (voir le fichier extensions_additional.conf). Laissez vide pour ne pas préciser de maximum." 
    1027  
    1028 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:377 
    1029 msgid "Controls the maximum number of outbound channels (simultaneous calls) that can be used on this trunk. Inbound calls are not counted against the maximum. Leave blank to specify no maximum." 
    1030 msgstr "ContrÃŽle le nombre maximal de canaux (appels entrants et sortants simultanés) sur ce trunk. Les appels entrants ne sont pas comptés dans ce maximum. Laissez vide pour ne pas préciser de maximum." 
    1031  
    1032 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:387 
    1033 msgid "Disable Trunk" 
    1034 msgstr "Désactivation du Trunk" 
    1035  
    1036 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:387 
    1037 msgid "Check this to disable this trunk in all routes where it is used." 
    1038 msgstr "Cochez cette case pour désactiver ce trunk sur toutes les routes qui l'utilisent." 
    1039  
    1040 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:390 
    1041 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4237 
    1042 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4240 
    1043 #: amp_conf/htdocs/admin/page.modules.php:686 
    1044 msgid "Disable" 
    1045 msgstr "Désactivation" 
    1046  
    1047 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:395 
    1048 msgid "Monitor Trunk Failures" 
    1049 msgstr "Monitoring problÚmes de trunk" 
    1050  
    1051 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:395 
    1052 msgid "If checked, supply the name of a custom AGI Script that will be called to report, log, email or otherwise take some action on trunk failures that are not caused by either NOANSWER or CANCEL." 
    1053 msgstr "Si coché, fournit le nom de script AGI personnalisé qui sera appelé pour reporter, logguer, mailer ou prendre toute action sur les problÚmes du trunk qui ne proviennent pas des motifs : Pas de réponse (NOANSWER) ou Annulé (CANCEL)" 
    1054  
    1055 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:399 
    1056 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4236 
    1057 #: amp_conf/htdocs/admin/page.modules.php:644 
    1058 msgid "Enable" 
    1059 msgstr "Activation" 
    1060  
    1061 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:405 
    1062 msgid "Outgoing Dial Rules" 
    1063 msgstr "RÚgles de Composition de Sortie" 
    1064  
    1065 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:410 
    1066 msgid "Dial Rules" 
    1067 msgstr "RÚgles de Composition" 
    1068  
    1069 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:410 
    1070 msgid "A Dial Rule controls how calls will be dialed on this trunk. It can be used to add or remove prefixes. Numbers that don't match any patterns defined here will be dialed as-is. Note that a pattern without a + or | (to add or remove a prefix) will not make any changes but will create a match. Only the first matched rule will be executed and the remaining rules will not be acted on." 
    1071 msgstr "Une rÚgle de composition contrÃŽle comment les appels sont numérotés sur ce trunk. Utilisé pour ajouter ou supprimer des préfixes. Les numéros qui ne correspondent à aucune rÚgle sont composés tels quels. Une rÚgle qui ne contient ni <b>+</b> ni <b>|</b> (ajouter ou supprimer un préfixe) est inutile. Seule la premiÚre rÚgle qui peut être appliquée sera exécutée et les autres rÚgles seront ignorées." 
    1072  
    1073 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:410 
    1074 #: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
    1075 msgid "Rules:" 
    1076 msgstr "RÚgles:" 
    1077  
    1078 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:411 
    1079 #: amp_conf/htdocs/admin/modules/core/page.routing.php:355 
    1080 msgid "matches any digit from 0-9" 
    1081 msgstr "correspond à un chiffre de 0-9" 
    1082  
    1083 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:412 
    1084 #: amp_conf/htdocs/admin/modules/core/page.routing.php:356 
    1085 msgid "matches any digit from 1-9" 
    1086 msgstr "correspond à un chiffre de 1-9" 
    1087  
    1088 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:413 
    1089 #: amp_conf/htdocs/admin/modules/core/page.routing.php:357 
    1090 msgid "matches any digit from 2-9" 
    1091 msgstr "correspond à un chiffre de 2-9" 
    1092  
    1093 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:414 
    1094 #: amp_conf/htdocs/admin/modules/core/page.routing.php:358 
    1095 msgid "matches any digit or letter in the brackets (in this example, 1,2,3,7,8,9)" 
    1096 msgstr "correspond à n'importe quel chiffre ou lettre inclus dans les crochets (dans cet exemple, 1,2,3,7,8,9)" 
    1097  
    1098 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:415 
    1099 msgid "wildcard, matches one or more characters (not allowed before a | or +)" 
    1100 msgstr "joker, correspond à un ou plusieurs caractÚres (interdit avant un <b>|</b> ou <b>+</b>)" 
    1101  
    1102 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:416 
    1103 msgid "removes a dialing prefix from the number (for example, 613|NXXXXXX would match when some dialed \"6135551234\" but would only pass \"5551234\" to the trunk)" 
    1104 msgstr "supprime un préfixe du numéro (par exemple, la rÚgle 613|NXXXXXX correspond à: si \"6135551234\" est composé, seulement \"5551234\" sera passé au trunk)" 
    1105  
    1106 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:417 
    1107 msgid "adds a dialing prefix from the number (for example, 1613+NXXXXXX would match when some dialed \"5551234\" and would pass \"16135551234\" to the trunk)" 
    1108 msgstr "ajoute un préfixe au numéro (par exemple, la rÚgle 1613+NXXXXXX correspond à: si \"5551234\" est composé \"16135551234\" sera passé au trunk)" 
    1109  
    1110 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:418 
    1111 msgid "You can also use both + and |, for example: 01+0|1ZXXXXXXXXX would match \"016065551234\" and dial it as \"0116065551234\" Note that the order does not matter, eg. 0|01+1ZXXXXXXXXX does the same thing." 
    1112 msgstr "Vous pouvez aussi utiliser ensemble + et |, par exemple: 01+0|1ZXXXXXXXXX sera appliqué pour \"016065551234\" et sera appelé comme \"0116065551234\" Notez que l'ordre n'a pas d'importance : 0|01+1ZXXXXXXXXX a le même résultat." 
    1113  
    1114 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:429 
    1115 #: amp_conf/htdocs/admin/modules/core/page.routing.php:397 
    1116 msgid "Clean & Remove duplicates" 
    1117 msgstr "Nettoyer & Supprimer les duplicats" 
    1118  
    1119 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:434 
    1120 msgid "Dial Rules Wizards" 
    1121 msgstr "Assistant rÚgles d'appels" 
    1122  
    1123 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:435 
    1124 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:441 
    1125 msgid "Always dial with prefix" 
    1126 msgstr "Toujours appeler avec un préfixe" 
    1127  
    1128 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:435 
    1129 msgid "is useful for VoIP trunks, where if a number is dialed as \"5551234\", it can be converted to \"16135551234\"." 
    1130 msgstr "est utile pour les trunks VoIP dans le cas où si un numéro est composé comme \"5551234\", il peut être converti en  \"16135551234\"." 
    1131  
    1132 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:436 
    1133 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:442 
    1134 msgid "Remove prefix from local numbers" 
    1135 msgstr "Supprime le préfixe des numéros locaux" 
    1136  
    1137 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:436 
    1138 msgid "is useful for ZAP trunks, where if a local number is dialed as \"6135551234\", it can be converted to \"555-1234\"." 
    1139 msgstr "est utile pour les trunks ZAP dans le cas où si un numéro est composé comme \"16135551234\", il peut être converti comme \"555-1234\"." 
    1140  
    1141 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:437 
    1142 msgid "Lookup numbers for local trunk" 
    1143 msgstr "Recherche nombre pour trunk local" 
    1144  
    1145 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:437 
    1146 msgid "This looks up your local number on www.localcallingguide.com (NA-only), and sets up so you can dial either 7 or 10 digits (regardless of what your PSTN is) on a local trunk (where you have to dial 1+area code for long distance, but only 5551234 (7-digit dialing) or 6135551234 (10-digit dialing) for local calls" 
    1147 msgstr "Cela recherche votre numéro local sur www.localcallingguide.com (NA-seulement), et ainsi vous pouvez appeler avec 7 ou 10 digits (quelque soit votre réseau PSTN) sur un trunk local où vous avez à composer 1+code région pour un appel longue distance, mais seulement 5551234 (7 chiffres) ou 6135551234 (10 chiffres) pour les appels locaux." 
    1148  
    1149 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:440 
    1150 #: amp_conf/htdocs/admin/modules/core/page.routing.php:482 
    1151 msgid "(pick one)" 
    1152 msgstr "(choisir un)" 
    1153  
    1154 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:443 
    1155 msgid "Lookup numbers for local trunk (7-digit dialing)" 
    1156 msgstr "Recherche nombre pour trunk local(7 chiffres)" 
    1157  
    1158 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:444 
    1159 msgid "Lookup numbers for local trunk (10-digit dialing)" 
    1160 msgstr "Recherche nombre pour trunk local(10 chiffres)" 
    1161  
    1162 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:464 
    1163 msgid "Are you sure you want to disable this trunk in all routes it is used?" 
    1164 msgstr "Etes-vous sûre de vouloir désactiver ce trunk sur toutes les routes qui l'utilisent" 
    1165  
    1166 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:469 
    1167 msgid "You have enabled this trunk in all routes it is used" 
    1168 msgstr "Vous avez autorisé ce Trunk pour toutes les routes qu'il utilise" 
    1169  
    1170 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:479 
    1171 #: amp_conf/htdocs/admin/modules/core/page.routing.php:415 
    1172 msgid "" 
    1173 "What is your areacode + prefix (NPA-NXX)?\\n" 
    1174 "\\n" 
    1175 "(Note: this database contains North American numbers only, and is not guaranteed to be 100% accurate. You will still have the option of modifying results.)\\n" 
    1176 "\\n" 
    1177 "This may take a few seconds." 
    1178 msgstr "" 
    1179 "Quel est votre code région + péfixe (NPA-NXX)?\\n" 
    1180 "\\n" 
    1181 "(Note: cette base ne contient que des numéros du Nord des Etats-Unis, et n'est pas garantieà 100% aussi vous pouvez toujours modifier ces résultats.)\\n" 
    1182 "\\n" 
    1183 "Cela peut prendre quelques secondes." 
    1184  
    1185 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:479 
    1186 msgid "\")" 
    1187 msgstr "\")" 
    1188  
    1189 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:481 
    1190 #: amp_conf/htdocs/admin/modules/core/page.routing.php:417 
    1191 msgid "Invalid NPA-NXX. Must be of the format \\'NXX-NXX\\'" 
    1192 msgstr "NPA-NXX invalide. Doit être au format \"NXX-NXX\"" 
    1193  
    1194 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:493 
    1195 #: amp_conf/htdocs/admin/modules/core/page.routing.php:425 
    1196 msgid "" 
    1197 "Error: Cannot continue!\\n" 
    1198 "\\n" 
    1199 "Prefix lookup requires cURL support in PHP on the server. Please install or enable cURL support in your PHP installation to use this function. See http://www.php.net/curl for more information." 
    1200 msgstr "" 
    1201 "Erreur: Impossible de continuer!\\n" 
    1202 "\\n" 
    1203 " La recherche du préfixe requiert le support cURL dans PHP sur le serveur. SVP, installez et activez le support cURL dans votre installation PHP pour utiliser cette fonction. Voir http://www.php.net/curl pour plus d'informations." 
    1204  
    1205 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:501 
    1206 msgid "" 
    1207 "What is the local dialing pattern?\\n" 
    1208 "\\n" 
    1209 "(ie. NXXNXXXXXX for US/CAN 10-digit dialing, NXXXXXX for 7-digit)" 
    1210 msgstr "" 
    1211 "Quel est le plan de numérotation local?\\n" 
    1212 "\\n" 
    1213 "(ie. NXXNXXXXXX pour US/CAN composition pour 10 chiffres, NXXXXXX composition pour 7 chiffres)" 
    1214  
    1215 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:503 
    1216 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:526 
    1217 msgid "Invalid pattern. Only 0-9, #, *, Z, N, X and . are allowed." 
    1218 msgstr "Masque de numérotation invalide. Seulement <b>0-9</b>, <b>#</b>, <b>*</b>, <b>Z</b>, <b>N</b>, <b>X</b> sont autorisés." 
    1219  
    1220 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:506 
    1221 msgid "" 
    1222 "What prefix should be added to the dialing pattern?\\n" 
    1223 "\\n" 
    1224 "(ie. for US/CAN, 1+areacode, ie, \\'1613\\')?" 
    1225 msgstr "" 
    1226 "Quel préfixe doit être ajouté au plan de numérotation?\\n" 
    1227 "\\n" 
    1228 "(ie. pour US/CAN, 1 +code de zone => <strong>1613</strong>." 
    1229  
    1230 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:508 
    1231 msgid "Invalid prefix. Only dialable characters (0-9, #, and *) are allowed." 
    1232 msgstr "Pr&eacute;fixe invalide. Seulement les caract&egrave;res num&eacute;rotables (0-9, #, et *) sont autoris&eacute;s." 
    1233  
    1234 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:519 
    1235 msgid "" 
    1236 "What prefix should be removed from the number?\\n" 
    1237 "\\n" 
    1238 "(ie. for US/CAN, 1+areacode, ie, \\'1613\\')" 
    1239 msgstr "" 
    1240 "Quel préfixe doit être supprimé du numéro?\\n" 
    1241 "\\n" 
    1242 "(ie. pour US/CAN, 1 +code de zone => <strong>1613</strong>." 
    1243  
    1244 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:521 
    1245 msgid "Invalid prefix. Only 0-9, #, *, Z, N, and X are allowed." 
    1246 msgstr "Préfixe invalide. Seulement 0-9, #, *, Z, N, et  X sont autorisés" 
    1247  
    1248 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:524 
    1249 msgid "What is the dialing pattern for local numbers after" 
    1250 msgstr "Quel est le plan de numérotation pour les numéros locaux aprÚs" 
    1251  
    1252 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:524 
    1253 msgid "(ie. NXXNXXXXXX for US/CAN 10-digit dialing, NXXXXXX for 7-digit)" 
    1254 msgstr "(ie. NXXNXXXXXX pour US/CAN composition pour 10 chiffres, NXXXXXX composition pour 7 chiffres)" 
    1255  
    1256 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:649 
    1257 msgid "Outbound Dial Prefix" 
    1258 msgstr "Préfixe de Numérotation Externe" 
    1259  
    1260 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:649 
    1261 msgid "The outbound dialing prefix is used to prefix a dialing string to all outbound calls placed on this trunk. For example, if this trunk is behind another PBX or is a Centrex line, then you would put 9 here to access an outbound line. Another common use is to prefix calls with 'w' on a POTS line that need time to obtain dial tone to avoid eating digits.<br><br>Most users should leave this option blank." 
    1262 msgstr "Le Préfixe de Numérotation Externe permet d'ajouter un préfixe à tous les appels sortant de ce trunk. Par exemple, si ce trunk est derriÚre un autre PBX ou qu'il soit une ligne Centrex, alors vous devez composer le 9 pour sortir. Une autre utilisation habituelle est d'utiliser le préfixe 'w' pour les lignes qui ont besoin d'un temps d'attente pour obtenir la ligne<br>La plupart des utilisateurs laisseront ce champ vide." 
    1263  
    1264 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:657 
    1265 msgid "Outgoing Settings" 
    1266 msgstr "ParamÚtres de Sortie" 
    1267  
    1268 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:668 
    1269 msgid "Zap Identifier (trunk name)" 
    1270 msgstr "Identifiant Zap (nom du trunk)" 
    1271  
    1272 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:668 
    1273 msgid "ZAP channels are referenced either by a group number or channel number (which is defined in zapata.conf).  <br><br>The default setting is <b>g0</b> (group zero)." 
    1274 msgstr "Les canaux ZAP sont référencés soit par un numéro de groupe ou un numéo de canal (défini dans zapata.conf).<br>Le paramÚtres par défaut est <b>g0</b> (groupe zéro)" 
    1275  
    1276 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:682 
    1277 msgid "Custom Dial String" 
    1278 msgstr "Chaîne de Numérotation Personnalisée" 
    1279  
    1280 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:682 
    1281 msgid "Define the custom Dial String.  Include the token" 
    1282 msgstr "Définit la chaîne de numérotation Personnalisée. Incluez le jeton" 
    1283  
    1284 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:682 
    1285 msgid "wherever the number to dial should go.<br><br><b>examples:</b><br>" 
    1286 msgstr "quelque soit l'endroit où le numéro à composer doit aller.<br><br><b>exemples:</b><br><br>CAPI/ XXXXXXXX:b" 
    1287  
    1288 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:694 
    1289 msgid "DUNDi Mapping" 
    1290 msgstr "DUNDi Mapping" 
    1291  
    1292 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:694 
    1293 msgid "This is the name of the DUNDi mapping as defined in the [mappings] section of remote dundi.conf peers. This corresponds to the 'include' section of the peer details in the local dundi.conf file. This requires manual configuration of DUNDi to use this trunk." 
    1294 msgstr "C'est le nom du mapping DUNDi défini dans la section [mappings] des peers à distance dundi.conf.Cela correspond à la section 'include' des détails peer dans le fichier local dundi.conf. Cela nécessite une configuration manuelle de DUNDi pour utiliser ce trunk." 
    1295  
    1296 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:706 
    1297 msgid "Trunk Name" 
    1298 msgstr "Nom du Trunk" 
    1299  
    1300 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:706 
    1301 msgid "Give this trunk a unique name.  Example: myiaxtel" 
    1302 msgstr "Donnez un nom unique au trunk. Exemple: moniaxtel" 
    1303  
    1304 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:713 
    1305 msgid "PEER Details" 
    1306 msgstr "Détails du PEER" 
    1307  
    1308 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:713 
    1309 msgid "Modify the default PEER connection parameters for your VoIP provider.<br><br>You may need to add to the default lines listed below, depending on your provider.<br /><br />WARNING: Order is important as it will be retained. For example, if you use the \"allow/deny\" directives make sure deny comes first." 
    1310 msgstr "Modifie les paramÚtres par défaut de connexion PEER pour votre fournisseur VoIP.<br>Vous pouvez devoir ajouter des lignes à celles listées ci-dessous par défaut (dépend de votre fournisseur VoIP).<br><br>ATTENTION: l'ordre est important. Par exemple, si vous utilisez les directives \"allow/deny\" assurez vous que deny vient en premier!" 
    1311  
    1312 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:723 
    1313 msgid "Incoming Settings" 
    1314 msgstr "ParamÚ;tres d'Entrée" 
    1315  
    1316 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:728 
    1317 msgid "USER Context" 
    1318 msgstr "Contexte Utilisateur" 
    1319  
    1320 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:728 
    1321 msgid "This is most often the account name or number your provider expects.<br><br>This USER Context will be used to define the below user details." 
    1322 msgstr "C'est le plus souvent, le nom ou numéro du compte que votre fournisseur attend.<br>Ce Contexte USER sera utilisé pour définir les détails du USER ci-dessous." 
    1323  
    1324 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:735 
    1325 msgid "USER Details" 
    1326 msgstr "Détails de l'utilisateur" 
    1327  
    1328 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:735 
    1329 msgid "Modify the default USER connection parameters for your VoIP provider." 
    1330 msgstr "Modifie les paramÚtres de connection Utilisateur par défaut pour votre fournisseur VoIP." 
    1331  
    1332 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:735 
    1333 msgid "" 
    1334 "You may need to add to the default lines listed below, depending on your provider..<br /><br />WARNING: Order is important as it will be retained. For example, if you use the \"allow/deny\" directives make sure deny \n" 
    1335 "\t\t\t\tcomes first." 
    1336 msgstr "Il peut être nécessaire d'ajouter des lignes aux lignes par défaut ci-aprÚs, dépendant de votre provider.<br /><br />ATTENTION : l'ordre est important. Par exemple, si vous utilisez les directives \"allow/deny\" assurez vous que deny vient en premier!" 
    1337  
    1338 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:746 
    1339 msgid "Registration" 
    1340 msgstr "Enregistrement" 
    1341  
    1342 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:751 
    1343 msgid "Register String" 
    1344 msgstr "Chaîne d'enregistrement" 
    1345  
    1346 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:751 
    1347 msgid "Most VoIP providers require your system to REGISTER with theirs. Enter the registration line here.<br><br>example:<br><br>username:password@switch.voipprovider.com.<br><br>Many providers will require you to provide a DID number, ex: username:password@switch.voipprovider.com/didnumber in order for any DID matching to work." 
    1348 msgstr "La plupart des fournisseurs VoIP demande que votre systÚme s'enregistre auprÚs du leur. Entrez la ligne d'enregistrement ici.<br>exemple: <br><br>username:password@switch.fournisseurvoip.com<br><br>Beaucoup de providers demanderont de fournir un numéro DID, ex:username:password@switch.voipprovider.com/didnumber pour que les DID correspondant fonctionnent." 
    1349  
    1350 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:779 
    1351 msgid "Invalid Outbound Caller ID" 
    1352 msgstr "'CID sortant' invalide" 
    1353  
    1354 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:780 
    1355 msgid "Invalid Maximum Channels" 
    1356 msgstr "'Nombre maximal de Canaux' invalide" 
    1357  
    1358 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:781 
    1359 msgid "Invalid Dial Rules" 
    1360 msgstr "'RÚgles de Composition' invalide" 
    1361  
    1362 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:782 
    1363 msgid "Invalid Outbound Dial Prefix" 
    1364 msgstr "'Préfixe de Numérotation Externe' invalide" 
    1365  
    1366 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:783 
    1367 msgid "Invalid Trunk Name entered" 
    1368 msgstr "'Nom de Trunk' invalide" 
    1369  
    1370 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:784 
    1371 msgid "Invalid Custom Dial String entered" 
    1372 msgstr "Chaîne de Numérotation Personnalisée invalide" 
    1373  
    1374 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:785 
    1375 msgid "Trunk Name and User Context cannot be set to the same value" 
    1376 msgstr "Le 'Nom du Trunk' et le 'Contexte Utilisateur' ne peuvent pas avoir la même valeur." 
    1377  
    1378 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:786 
    1379 msgid "User Context was left blank and User Details will not be saved!" 
    1380 msgstr "Le contexte utilisateur est vide et les détails utilisateurs ne seront pas sauvegardés!" 
    1381  
    1382 #: amp_conf/htdocs/admin/modules/core/page.trunks.php:787 
    1383 msgid "You must define an Outbound Caller ID when Choosing Never Override CallerID" 
    1384 msgstr "Vous devez définir un identifiant appel sortant quand vous choisissez l'option Ne jamais modifier le CID." 
     2350#: admin/modules/core/page.did.php:149 admin/modules/core/page.routing.php:275 
     2351#, php-format 
     2352msgid "Delete Route %s" 
     2353msgstr "Suppression Route %s" 
     2354 
     2355#: admin/modules/core/page.did.php:166 
     2356#, php-format 
     2357msgid "Edit %s" 
     2358msgstr "Edition %s" 
     2359 
     2360#: admin/modules/core/page.did.php:166 
     2361#, php-format 
     2362msgid "Edit %s %s (%s)" 
     2363msgstr "Edition %s %s (%s)" 
     2364 
     2365#: admin/modules/core/page.did.php:184 
     2366msgid "Edit Incoming Route" 
     2367msgstr "Edition Route Entrante" 
     2368 
     2369#: admin/modules/core/page.did.php:186 
     2370msgid "Provide a meaningful description of what this incoming route is" 
     2371msgstr "Donnez une description précise de la route entrante" 
     2372 
     2373#: admin/modules/core/page.did.php:190 
     2374msgid "DID Number" 
     2375msgstr "Numéro SDA" 
     2376 
     2377#: admin/modules/core/page.did.php:190 
     2378msgid "" 
     2379"Define the expected DID Number if your trunk passes DID on incoming calls. " 
     2380"<br><br>Leave this blank to match calls with any or no DID info.<br><br>You " 
     2381"can also use a pattern match (eg _2[345]X) to match a range of numbers" 
     2382msgstr "" 
     2383"Définit le numéro de SDA attendu si votre Trunk le transmet sur les appels " 
     2384"entrants. <br>Laissez ce champ vide pour correspondre à tous les SDA " 
     2385"transmis ou non.<br><br>Vous pouvez aussi utiliser un masque (eg _2[345]X) " 
     2386"pour associer une tranche de numéros." 
     2387 
     2388#: admin/modules/core/page.did.php:194 
     2389msgid "Caller ID Number" 
     2390msgstr "Numéro CID" 
     2391 
     2392#: admin/modules/core/page.did.php:194 
     2393msgid "" 
     2394"Define the Caller ID Number to be matched on incoming calls.<br><br>Leave " 
     2395"this field blank to match any or no CID info. In addition to standard dial " 
     2396"sequences, you can also put Private, Blocked, Unknown, Restricted, Anonymous " 
     2397"and Unavailable in order to catch these special cases if the Telco transmits " 
     2398"them." 
     2399msgstr "" 
     2400"Définit le numéro de l'appelant qui doit correspondre pour les appels " 
     2401"entrants.<br><br>Laissez ce champ à vide pour tous les CID ou aucun. De " 
     2402"plus, vous pouvez ajouter Privé, Bloqué, Inconnu, Restreint, Anonyme si " 
     2403"votre opérateur Telecom les transmets." 
     2404 
     2405#: admin/modules/core/page.did.php:199 
     2406msgid "CID Priority Route" 
     2407msgstr "Priorité de la route" 
     2408 
     2409#: admin/modules/core/page.did.php:199 
     2410msgid "" 
     2411"This effects CID ONLY routes where no DID is specified. If checked, calls " 
     2412"with this CID will be routed to this route, even if there is a route to the " 
     2413"DID that was called. Normal behavior is for the DID route to take the calls. " 
     2414"If there is a specific DID/CID route for this CID, that route will still " 
     2415"take the call when that DID is called." 
     2416msgstr "" 
     2417"Cela modifie seulement les routes où aucun SDA n'est spécifié. Si coché, les " 
     2418"appels avec ce SDA seront routé sur cette route même s'il existe une autre " 
     2419"route pour ce SDA. Un comportement normal est pour cette route SDA de " 
     2420"prendre les appels. Si il y a unne route spécifique pour ce SDA, cette route " 
     2421"prendra l'appel quand ce SDA est appelé." 
     2422 
     2423#: admin/modules/core/page.did.php:203 
     2424msgid "Options" 
     2425msgstr "Options" 
     2426 
     2427#: admin/modules/core/page.did.php:205 
     2428msgid "Alert Info" 
     2429msgstr "Alert Info" 
     2430 
     2431#: admin/modules/core/page.did.php:205 
     2432msgid "ALERT_INFO can be used for distinctive ring with SIP devices." 
     2433msgstr "" 
     2434"ALERT_INFO peut-être utilisé pour des sonneries distinctes avec des " 
     2435"périphériques SIP." 
     2436 
     2437#: admin/modules/core/page.did.php:209 
     2438msgid "CID name prefix" 
     2439msgstr "Préfixe au CID" 
     2440 
     2441#: admin/modules/core/page.did.php:209 
     2442msgid "" 
     2443"You can optionally prefix the Caller ID name. ie: If you prefix with \"Sales:" 
     2444"\", a call from John Doe would display as \"Sales:John Doe\" on the " 
     2445"extensions that ring." 
     2446msgstr "" 
     2447"Option: vous pouvez ajouter un préfixe au CID de la partie appellante. Par " 
     2448"exemple: si le Préfixe est \"<b>Ventes:</b>\", un appel de Jean Martin " 
     2449"devrait faire apparaitre le CID \"<b>Ventes:Jean Martin</b>\" sur les " 
     2450"Extensions appelées." 
     2451 
     2452#: admin/modules/core/page.did.php:214 
     2453msgid "Music On Hold" 
     2454msgstr "Musique d'attente" 
     2455 
     2456#: admin/modules/core/page.did.php:214 
     2457msgid "" 
     2458"Set the MoH class that will be used for calls that come in on this route. " 
     2459"For example, choose a type appropriate for routes coming in from a country " 
     2460"which may have announcements in their language." 
     2461msgstr "" 
     2462"Définit la classe de musique d'attente qui sera utilisé pour les appels " 
     2463"provenant de cette route. Par exemple, choississez un type approprié pour " 
     2464"les routes venant de pays étrangers avec des messages dans leur langue" 
     2465 
     2466#: admin/modules/core/page.did.php:223 
     2467msgid "No Music" 
     2468msgstr "Pas de musique" 
     2469 
     2470#: admin/modules/core/page.did.php:234 
     2471msgid "Signal RINGING" 
     2472msgstr "Signal de sonnerie" 
     2473 
     2474#: admin/modules/core/page.did.php:234 
     2475msgid "" 
     2476"Some devices or providers require RINGING to be sent before ANSWER. You'll " 
     2477"notice this happening if you can send calls directly to a phone, but if you " 
     2478"send it to an IVR, it won't connect the call." 
     2479msgstr "" 
     2480"Quelques périphériques ont besoin d'un signal de sonnerie (RINGING) avant de " 
     2481"recevoir la commande ANSWER. Vous pourrez remarquer cela si un appel envoyé " 
     2482"à un serveur vocal ne fonctionne pas alors que envoyé à un téléphone cela " 
     2483"fonctionne." 
     2484 
     2485#: admin/modules/core/page.did.php:238 
     2486msgid "Pause Before Answer" 
     2487msgstr "Pause avant réponse" 
     2488 
     2489#: admin/modules/core/page.did.php:238 
     2490msgid "" 
     2491"An optional delay to wait before processing this route. Setting this value " 
     2492"will delay the channel from answering the call. This may be handy if " 
     2493"external fax equipment or security systems are installed in parallel and you " 
     2494"would like them to be able to seize the line." 
     2495msgstr "" 
     2496"Délai optionnel d'attente avant d'utiliser cette route. En positionnant " 
     2497"cette valeur vous ajoutez un délai avant de répondre à l'appel. Cela peut " 
     2498"servir si un télécopieur externe ou un équipement de sécurité est installé " 
     2499"en paralelle et que vous souhaitez qu'ils prennent la ligne." 
     2500 
     2501#: admin/modules/core/page.did.php:242 
     2502msgid "Privacy" 
     2503msgstr "Protection" 
     2504 
     2505#: admin/modules/core/page.did.php:245 
     2506msgid "Privacy Manager" 
     2507msgstr "Gestion de la protection" 
     2508 
     2509#: admin/modules/core/page.did.php:245 
     2510msgid "" 
     2511"If no Caller ID is sent, Privacy Manager will asks the caller to enter their " 
     2512"10 digit phone number. The caller is given 3 attempts. The number of digits " 
     2513"and attempts can be defined in privacy.conf. If a user has Call Screening " 
     2514"enabled, the incoming caller will be asked to enter their CallerId here if " 
     2515"enabled, and then to say their name once determined that the called user " 
     2516"requires it." 
     2517msgstr "" 
     2518"Si l'appel est en numéro caché, le gestionnaire de protection demandera à " 
     2519"l'appelant d'entrer son numéro à 10 chiffres. Il y a trois tentatives pour " 
     2520"l'appelant. Le nombre de chiffres et d'essais est paramétrable dans le " 
     2521"fichier privacy.conf. Si un utilisateur a l'option Call Screening, il sera " 
     2522"demandé à l'appelant de saisir son numéro, si activé puis d'énoncer son nom " 
     2523"si le paramétrage de l'appelé le demande." 
     2524 
     2525#: admin/modules/core/page.did.php:248 admin/modules/core/page.general.php:438 
     2526msgid "No" 
     2527msgstr "Non" 
     2528 
     2529#: admin/modules/core/page.did.php:249 admin/modules/core/page.general.php:437 
     2530msgid "Yes" 
     2531msgstr "Oui" 
     2532 
     2533#: admin/modules/core/page.did.php:254 
     2534msgid "Fax Handling" 
     2535msgstr "Acheminement télécopie" 
     2536 
     2537#: admin/modules/core/page.did.php:258 
     2538msgid "Fax Extension" 
     2539msgstr "Numéro d'extension du télécopieur" 
     2540 
     2541#: admin/modules/core/page.did.php:258 
     2542msgid "" 
     2543"Select 'system' to have the system receive and email faxes.<br><br>The " 
     2544"FreePBX default is defined in General Settings." 
     2545msgstr "" 
     2546"Choisir <b>SystÚme</b> pour autoriser le systÚme à recevoir les télécopies " 
     2547"et à les retransmettre par courriel.<br>Le paramétrage par défaut est défini " 
     2548"dans la section <strong>Réglages Globaux</strong> de FreePBX." 
     2549 
     2550#: admin/modules/core/page.did.php:262 
     2551msgid "FreePBX default" 
     2552msgstr "Par Défaut" 
     2553 
     2554#: admin/modules/core/page.did.php:263 admin/modules/core/page.general.php:368 
     2555msgid "disabled" 
     2556msgstr "Désactivé" 
     2557 
     2558#: admin/modules/core/page.did.php:264 admin/modules/core/page.general.php:369 
     2559msgid "system" 
     2560msgstr "SystÚme" 
     2561 
     2562#: admin/modules/core/page.did.php:279 
     2563msgid "Fax Email" 
     2564msgstr "Adresse courriel du télécopieur" 
     2565 
     2566#: admin/modules/core/page.did.php:279 
     2567msgid "" 
     2568"Email address is used if 'system' has been chosen for the fax extension " 
     2569"above.<br><br>Leave this blank to use the FreePBX default in General " 
     2570"Settings." 
     2571msgstr "" 
     2572"L'adresse courriel est utilisée si l'option <b>SystÚme</b> a été choisie ci-" 
     2573"dessus.<br>Laissez ce champ vide pour utiliser le réglage par défaut défini " 
     2574"dans la section <strong>Réglages Globaux</strong>." 
     2575 
     2576#: admin/modules/core/page.did.php:286 
     2577msgid "Fax Detection Type" 
     2578msgstr "Type de détection télécopieur" 
     2579 
     2580#: admin/modules/core/page.did.php:286 
     2581msgid "" 
     2582"Selecting Zaptel or NVFax will immediately answer the call and play ringing " 
     2583"tones to the caller for the number of seconds in Pause below. Use NVFax on " 
     2584"SIP or IAX trunks." 
     2585msgstr "" 
     2586"La sélection de Zaptel ou NVFAx permettra de faire sonner immédiatement le " 
     2587"poste de l'appelé pour le nombre de secondes paramétré en dessous. Utilisez " 
     2588"NVFax avec des trunks SIP ou IAX." 
     2589 
     2590#: admin/modules/core/page.did.php:289 
     2591msgid "None" 
     2592msgstr "Aucun" 
     2593 
     2594#: admin/modules/core/page.did.php:290 
     2595msgid "Zaptel" 
     2596msgstr "Zaptel" 
     2597 
     2598#: admin/modules/core/page.did.php:291 
     2599msgid "NVFax" 
     2600msgstr "NVFax" 
     2601 
     2602#: admin/modules/core/page.did.php:296 
     2603msgid "Pause After Answer" 
     2604msgstr "Pause aprÚs réponse" 
     2605 
     2606#: admin/modules/core/page.did.php:296 
     2607msgid "" 
     2608"The number of seconds we should wait after performing an Immediate Answer. " 
     2609"The primary purpose of this is to pause and listen for a fax tone before " 
     2610"allowing the call to proceed." 
     2611msgstr "" 
     2612"Le nombre de secondes à attendre aprÚs une <b>Réponse Immédiate</b>. Le but " 
     2613"principal est de faire une pause pour détecter une tonalité télécopieur " 
     2614"avant de permettre le déroulement de l'appel." 
     2615 
     2616#: admin/modules/core/page.did.php:305 
     2617msgid "Set Destination" 
     2618msgstr "Choix Destination" 
     2619 
     2620#: admin/modules/core/page.did.php:314 
     2621msgid "Clear Destination & Submit" 
     2622msgstr "Effacer Destination et Soumettre" 
     2623 
     2624#: admin/modules/core/page.did.php:326 
     2625msgid "Please enter a valid DID Number" 
     2626msgstr "SVP, entrez un 'Numéro DID' valide." 
     2627 
     2628#: admin/modules/core/page.did.php:327 
     2629msgid "Please enter a valid Caller ID Number" 
     2630msgstr "SVP, entrez un 'Numero CID' valide." 
     2631 
     2632#: admin/modules/core/page.did.php:328 
     2633msgid "Please enter a valid Fax Email or leave it empty to use the default" 
     2634msgstr "" 
     2635"SVP, entrez une 'Adresse courriel du télécopieur' valide ou laissez ce champ " 
     2636"vide pour utiliser la configuration Par Defaut." 
     2637 
     2638#: admin/modules/core/page.did.php:329 
     2639msgid "Please enter a valid number for Pause after answer" 
     2640msgstr "SVP, entrez un nombre 'Pause aprÚs réponse' valide." 
     2641 
     2642#: admin/modules/core/page.did.php:330 
     2643msgid "Please enter a valid number for Pause Before Answer field" 
     2644msgstr "SVP, entrez un nombre pour 'Pause avant réponse' valide." 
     2645 
     2646#: admin/modules/core/page.did.php:331 
     2647msgid "" 
     2648"Leaving the DID Number AND the Caller ID Number empty will match all " 
     2649"incoming calls received not routed using any other defined Incoming Route.\\n" 
     2650"\\nAre you sure?" 
     2651msgstr "" 
     2652"Laisser les champs 'numéro SDA' ET 'numéro CID' vides aura pour conséquence " 
     2653"recevoir tous les appels entrants n'utilisant aucune autre route definie. " 
     2654"Etes vous certain?" 
     2655 
     2656#: admin/modules/core/page.did.php:332 
     2657msgid "" 
     2658"DID information is normally just an incoming telephone number or for " 
     2659"advanced users, a valid Asterisk Dial Pattern\\n\\nYou have entered a non " 
     2660"standard DID pattern.\\n\\nAre you sure this is correct?" 
     2661msgstr "" 
     2662"L'information SDA est normalement juste un numéro d'appel entrant ou pour " 
     2663"des utilisateurs experts un masque d'appel valide pour Asterisk.\\n\\nVous " 
     2664"avez entré un numéro de SDA non standard.\\n\\nEtes vous sûr que c'est " 
     2665"correct?" 
     2666 
     2667#: admin/modules/core/page.did.php:333 
     2668msgid "A Slash ('/') is never a valid DID. Please remove it and try again" 
     2669msgstr "" 
     2670"Un slash ('/') n'est pas un SDA valide. SVP retirez le et essayez de nouveau" 
     2671 
     2672#: admin/modules/core/page.did.php:334 
     2673msgid "Invalid Caller ID prefix." 
     2674msgstr " CID sortant' invalide" 
    13852675 
    13862676# Deja dans functions.inc 
     
    13982688# "doit &ecirc;tre cr&eacute;&eacute; et inclut dans extension_custom.conf</span>" 
    13992689# ########### FIN ANCIENS MESSAGES de FUNCTIONS 
    1400 #: amp_conf/htdocs/admin/modules/core/page.general.php:106 
     2690#: admin/modules/core/page.general.php:106 
    14012691msgid "Dialing Options" 
    14022692msgstr "Options de Numérotation" 
    14032693 
    1404 #: amp_conf/htdocs/admin/modules/core/page.general.php:109 
     2694#: admin/modules/core/page.general.php:109 
    14052695msgid "Asterisk Dial command options:" 
    14062696msgstr "Options Commandes de numérotation" 
    14072697 
    1408 #: amp_conf/htdocs/admin/modules/core/page.general.php:110 
    1409 #: amp_conf/htdocs/admin/modules/core/page.general.php:121 
     2698#: admin/modules/core/page.general.php:110 
     2699#: admin/modules/core/page.general.php:121 
    14102700msgid "t: Allow the called user to transfer the call by hitting #" 
    1411 msgstr "<b>t</b>: Permet à l'Appelé de transférer l'appel en appuyant sur <b>#</b>" 
    1412  
    1413 #: amp_conf/htdocs/admin/modules/core/page.general.php:111 
    1414 #: amp_conf/htdocs/admin/modules/core/page.general.php:122 
     2701msgstr "" 
     2702"<b>t</b>: Permet à l'Appelé de transférer l'appel en appuyant sur <b>#</b>" 
     2703 
     2704#: admin/modules/core/page.general.php:111 
     2705#: admin/modules/core/page.general.php:122 
    14152706msgid "T: Allow the calling user to transfer the call by hitting #" 
    1416 msgstr "<b>T</b>: Permet à l'Appelant de transférer l'appel en appuyant sur <b>#</b>" 
    1417  
    1418 #: amp_conf/htdocs/admin/modules/core/page.general.php:112 
     2707msgstr "" 
     2708"<b>T</b>: Permet à l'Appelant de transférer l'appel en appuyant sur <b>#</b>" 
     2709 
     2710#: admin/modules/core/page.general.php:112 
    14192711msgid "r: Generate a ringing tone for the calling party" 
    14202712msgstr "<b>r</b>: GenÚre une tonalité pour l'appelant" 
    14212713 
    1422 #: amp_conf/htdocs/admin/modules/core/page.general.php:113 
    1423 #: amp_conf/htdocs/admin/modules/core/page.general.php:123 
    1424 msgid "w: Allow the called user to start recording after pressing *1 (Asterisk v1.2)" 
    1425 msgstr "<b>w</b>: Permet à l'Appelé de débuter l'enregistrement en appuyant sur <b>*1</b> (Asterisk v1.2)" 
    1426  
    1427 #: amp_conf/htdocs/admin/modules/core/page.general.php:114 
    1428 #: amp_conf/htdocs/admin/modules/core/page.general.php:124 
    1429 msgid "W: Allow the calling user to start recording after pressing *1 (Asterisk v1.2)" 
    1430 msgstr "<b>W</b>: Permet à l'Appelant de débuter l'enregistrement en appuyant sur <b>*1</b> (Asterisk v1.2)" 
    1431  
    1432 #: amp_conf/htdocs/admin/modules/core/page.general.php:120 
     2714#: admin/modules/core/page.general.php:113 
     2715#: admin/modules/core/page.general.php:123 
     2716msgid "" 
     2717"w: Allow the called user to start recording after pressing *1 (Asterisk v1.2)" 
     2718msgstr "" 
     2719"<b>w</b>: Permet à l'Appelé de débuter l'enregistrement en appuyant sur " 
     2720"<b>*1</b> (Asterisk v1.2)" 
     2721 
     2722#: admin/modules/core/page.general.php:114 
     2723#: admin/modules/core/page.general.php:124 
     2724msgid "" 
     2725"W: Allow the calling user to start recording after pressing *1 (Asterisk " 
     2726"v1.2)" 
     2727msgstr "" 
     2728"<b>W</b>: Permet à l'Appelant de débuter l'enregistrement en appuyant sur " 
     2729"<b>*1</b> (Asterisk v1.2)" 
     2730 
     2731#: admin/modules/core/page.general.php:120 
    14332732msgid "Asterisk Outbound Dial command options:" 
    14342733msgstr "Options Commandes Appels sortants" 
    14352734 
    1436 #: amp_conf/htdocs/admin/modules/core/page.general.php:125 
     2735#: admin/modules/core/page.general.php:125 
    14372736msgid "r: You SHOULD NOT use this option on outbound trunks" 
    14382737msgstr "r: vous NE DEVEZ PAS utiliser cette option pour les trunks sortants" 
    14392738 
    1440 #: amp_conf/htdocs/admin/modules/core/page.general.php:132 
     2739#: admin/modules/core/page.general.php:132 
    14412740msgid "Call Recording" 
    14422741msgstr "Enregistrement d'appels" 
    14432742 
    1444 #: amp_conf/htdocs/admin/modules/core/page.general.php:135 
     2743#: admin/modules/core/page.general.php:135 
    14452744msgid "Extension Recording Override:" 
    14462745msgstr "Remplacement des paramÚtres des extensions" 
    14472746 
    1448 #: amp_conf/htdocs/admin/modules/core/page.general.php:136 
    1449 msgid "This will override the recording settings of all extensions/users. If enabled, the system will ignore all Record Always settings of a user and will not turn on recording. This does not effect On Demand recording controlled by the dial options 'w' and 'W' above. It does not effect other recording settings in modules such as Queues and Conferences. If you don't use recordings, setting this is beneficial to system performance as it removes the check that is otherwise done on every single call." 
    1450 msgstr "Cela va remplacer les paramÚtres d'enregistrement de tous les utilisateurs/extensions. Si activé, le systÚme ignorera les paramÚtres des utilisateurs et il ne sera pas possible d'enregistrer. Cela ne changera pas les demandes d'enregistrement paramÚtre 'w' ou 'W'. Cela ne change pas les paramÚtres des modules Queues et Conférences. Si vous n'utilisez pas l'enregistrement, paramétrez ceci est bénéfique pour les performances du systÚme car cela supprime la vérification qui est normalement fait à chaque appel." 
    1451  
    1452 #: amp_conf/htdocs/admin/modules/core/page.general.php:139 
    1453 #: amp_conf/htdocs/admin/page.modules.php:602 
    1454 msgid "Enabled" 
    1455 msgstr "Activé" 
    1456  
    1457 #: amp_conf/htdocs/admin/modules/core/page.general.php:140 
    1458 msgid "Disabled" 
    1459 msgstr "Désactivé" 
    1460  
    1461 #: amp_conf/htdocs/admin/modules/core/page.general.php:144 
     2747#: admin/modules/core/page.general.php:136 
     2748msgid "" 
     2749"This will override the recording settings of all extensions/users. If " 
     2750"enabled, the system will ignore all Record Always settings of a user and " 
     2751"will not turn on recording. This does not effect On Demand recording " 
     2752"controlled by the dial options 'w' and 'W' above. It does not effect other " 
     2753"recording settings in modules such as Queues and Conferences. If you don't " 
     2754"use recordings, setting this is beneficial to system performance as it " 
     2755"removes the check that is otherwise done on every single call." 
     2756msgstr "" 
     2757"Cela va remplacer les paramÚtres d'enregistrement de tous les utilisateurs/" 
     2758"extensions. Si activé, le systÚme ignorera les paramÚtres des utilisateurs " 
     2759"et il ne sera pas possible d'enregistrer. Cela ne changera pas les demandes " 
     2760"d'enregistrement paramÚtre 'w' ou 'W'. Cela ne change pas les paramÚtres des " 
     2761"modules Queues et Conférences. Si vous n'utilisez pas l'enregistrement, " 
     2762"paramétrez ceci est bénéfique pour les performances du systÚme car cela " 
     2763"supprime la vérification qui est normalement fait à chaque appel." 
     2764 
     2765#: admin/modules/core/page.general.php:144 
    14622766msgid "Call recording format:" 
    14632767msgstr "Format des enregistrement d'appels" 
    14642768 
    1465 #: amp_conf/htdocs/admin/modules/core/page.general.php:145 
     2769#: admin/modules/core/page.general.php:145 
    14662770msgid "Pick the format in which to save recorded calls" 
    14672771msgstr "Format de sauvegarde des appels enregistrés" 
    14682772 
    1469 #: amp_conf/htdocs/admin/modules/core/page.general.php:149 
     2773#: admin/modules/core/page.general.php:149 
    14702774msgid "WAV" 
    14712775msgstr "WAV" 
    14722776 
    1473 #: amp_conf/htdocs/admin/modules/core/page.general.php:150 
     2777#: admin/modules/core/page.general.php:150 
    14742778msgid "wav" 
    14752779msgstr "wav" 
    14762780 
    1477 #: amp_conf/htdocs/admin/modules/core/page.general.php:151 
     2781#: admin/modules/core/page.general.php:151 
    14782782msgid "ulaw" 
    14792783msgstr "ulaw" 
    14802784 
    1481 #: amp_conf/htdocs/admin/modules/core/page.general.php:152 
     2785#: admin/modules/core/page.general.php:152 
    14822786msgid "alaw" 
    14832787msgstr "alaw" 
    14842788 
    1485 #: amp_conf/htdocs/admin/modules/core/page.general.php:153 
     2789#: admin/modules/core/page.general.php:153 
    14862790msgid "sln" 
    14872791msgstr "sln" 
    14882792 
    1489 #: amp_conf/htdocs/admin/modules/core/page.general.php:154 
     2793#: admin/modules/core/page.general.php:154 
    14902794msgid "gsm" 
    14912795msgstr "gsm" 
    14922796 
    1493 #: amp_conf/htdocs/admin/modules/core/page.general.php:155 
     2797#: admin/modules/core/page.general.php:155 
    14942798msgid "g729" 
    14952799msgstr "g729" 
    14962800 
    1497 #: amp_conf/htdocs/admin/modules/core/page.general.php:159 
     2801#: admin/modules/core/page.general.php:159 
    14982802msgid "Recording Location:" 
    14992803msgstr "Répertoire d'enregistrement" 
    15002804 
    1501 #: amp_conf/htdocs/admin/modules/core/page.general.php:160 
    1502 msgid "Override the default location where asterisk will store call recordings. Include the trailing /. Be sure to set proper permissions on the directory for the asterisk user." 
    1503 msgstr "Remplace le répertoire où Asterisk stocke par défaut les enregistrements d'appels. Ne pas oublier le /. Vérifiez les droits sur ce répertoire pour l'utilisateur Asterisk." 
    1504  
    1505 #: amp_conf/htdocs/admin/modules/core/page.general.php:166 
     2805#: admin/modules/core/page.general.php:160 
     2806msgid "" 
     2807"Override the default location where asterisk will store call recordings. " 
     2808"Include the trailing /. Be sure to set proper permissions on the directory " 
     2809"for the asterisk user." 
     2810msgstr "" 
     2811"Remplace le répertoire où Asterisk stocke par défaut les enregistrements " 
     2812"d'appels. Ne pas oublier le /. Vérifiez les droits sur ce répertoire pour " 
     2813"l'utilisateur Asterisk." 
     2814 
     2815#: admin/modules/core/page.general.php:166 
    15062816msgid "Run after record:" 
    15072817msgstr "Exécuter aprÚs enregistrement" 
    15082818 
    1509 #: amp_conf/htdocs/admin/modules/core/page.general.php:167 
    1510 msgid "An optional script to be run after the call is hungup. You can include channel and MixMon variables like ${CALLFILENAME}, ${MIXMON_FORMAT} and ${MIXMON_DIR}. To ensure that you variables are properly escaped, use the following notation: ^{MY_VAR}" 
    1511 msgstr "Un script optionnel peut être exécuté aprÚs le raccoché de l'appel. Vous pouivez inclure le canal et les variables comme ${CALLFILENAME}, ${MIXMON_FORMAT} et ${MIXMON_DIR}. Assurez vous que les variables sont bien utilisées, notation : ^{MY_VAR}" 
     2819#: admin/modules/core/page.general.php:167 
     2820msgid "" 
     2821"An optional script to be run after the call is hungup. You can include " 
     2822"channel and MixMon variables like ${CALLFILENAME}, ${MIXMON_FORMAT} and " 
     2823"${MIXMON_DIR}. To ensure that you variables are properly escaped, use the " 
     2824"following notation: ^{MY_VAR}" 
     2825msgstr "" 
     2826"Un script optionnel peut être exécuté aprÚs le raccoché de l'appel. Vous " 
     2827"pouivez inclure le canal et les variables comme ${CALLFILENAME}, " 
     2828"${MIXMON_FORMAT} et ${MIXMON_DIR}. Assurez vous que les variables sont bien " 
     2829"utilisées, notation : ^{MY_VAR}" 
    15122830 
    15132831# ######### ANCIEN MESSAGES de FUNCTIONS 
     
    15152833# msgid "Extension" 
    15162834# msgstr "Extension" 
    1517 #: amp_conf/htdocs/admin/modules/core/page.general.php:174 
     2835#: admin/modules/core/page.general.php:174 
    15182836msgid "Voicemail" 
    15192837msgstr "Boîte vocale" 
    15202838 
    1521 #: amp_conf/htdocs/admin/modules/core/page.general.php:177 
     2839#: admin/modules/core/page.general.php:177 
    15222840msgid "Ringtime Default:" 
    15232841msgstr "Temps de sonnerie par défaut" 
    15242842 
    1525 #: amp_conf/htdocs/admin/modules/core/page.general.php:178 
    1526 msgid "Default number of seconds to ring phones before sending callers to voicemail. This can be set per extension/user and will have no effect on phones with no voicemail." 
    1527 msgstr "Nombre de sonnerie par défaut avant d'activer la boîte vocale. Cela peut être défini par utilisateur/extension et n'a pas d'effet sur les téléphones qui n'ont pas de boîte vocale." 
    1528  
    1529 #: amp_conf/htdocs/admin/modules/core/page.general.php:184 
     2843#: admin/modules/core/page.general.php:178 
     2844msgid "" 
     2845"Default number of seconds to ring phones before sending callers to " 
     2846"voicemail. This can be set per extension/user and will have no effect on " 
     2847"phones with no voicemail." 
     2848msgstr "" 
     2849"Nombre de sonnerie par défaut avant d'activer la boîte vocale. Cela peut " 
     2850"être défini par utilisateur/extension et n'a pas d'effet sur les téléphones " 
     2851"qui n'ont pas de boîte vocale." 
     2852 
     2853#: admin/modules/core/page.general.php:184 
    15302854msgid "Direct Dial Voicemail Prefix:" 
    15312855msgstr "Préfixe d'accÚs direct à la boîte vocale" 
    15322856 
    1533 #: amp_conf/htdocs/admin/modules/core/page.general.php:185 
    1534 msgid "Prefix used to dial directly to someone's voicemail. Caution should be taken in choosing this prefix to avoid conflicts with featurecodes." 
    1535 msgstr "Préfixe utilisé pour accéder directement à la boîte vocale de l'utilisateur. Attention de ne pas prendre un préfixe utilisé pour une fonctionnalité." 
    1536  
    1537 #: amp_conf/htdocs/admin/modules/core/page.general.php:191 
     2857#: admin/modules/core/page.general.php:185 
     2858msgid "" 
     2859"Prefix used to dial directly to someone's voicemail. Caution should be taken " 
     2860"in choosing this prefix to avoid conflicts with featurecodes." 
     2861msgstr "" 
     2862"Préfixe utilisé pour accéder directement à la boîte vocale de l'utilisateur. " 
     2863"Attention de ne pas prendre un préfixe utilisé pour une fonctionnalité." 
     2864 
     2865#: admin/modules/core/page.general.php:191 
    15382866msgid "Direct Dial to Voicemail message type:" 
    15392867msgstr "Message type d'accÚs à la boîte vocale" 
    15402868 
    1541 #: amp_conf/htdocs/admin/modules/core/page.general.php:192 
    1542 msgid "Default message type to use when dialing direct to an extensions voicemail" 
    1543 msgstr "Message type utilisé quand on accÚde directement à une boîte vocale par l'extension." 
    1544  
    1545 #: amp_conf/htdocs/admin/modules/core/page.general.php:196 
    1546 msgid "Default" 
    1547 msgstr "Défaut" 
    1548  
    1549 #: amp_conf/htdocs/admin/modules/core/page.general.php:197 
     2869#: admin/modules/core/page.general.php:192 
     2870msgid "" 
     2871"Default message type to use when dialing direct to an extensions voicemail" 
     2872msgstr "" 
     2873"Message type utilisé quand on accÚde directement à une boîte vocale par " 
     2874"l'extension." 
     2875 
     2876#: admin/modules/core/page.general.php:197 
    15502877msgid "Unavailable" 
    15512878msgstr "Indisponible" 
    15522879 
    1553 #: amp_conf/htdocs/admin/modules/core/page.general.php:198 
    1554 msgid "Busy
    1555 msgstr "Occupé
    1556  
    1557 #: amp_conf/htdocs/admin/modules/core/page.general.php:203 
     2880#: admin/modules/core/page.general.php:199 
     2881msgid "No Message
     2882msgstr "
     2883 
     2884#: admin/modules/core/page.general.php:203 
    15582885msgid "Optional Voicemail Recording Gain:" 
    15592886msgstr "Augmentation du volume d'enregistrement" 
    15602887 
    1561 #: amp_conf/htdocs/admin/modules/core/page.general.php:204 
     2888#: admin/modules/core/page.general.php:204 
    15622889msgid "Use the specified amount of gain when recording the voicemail message." 
    1563 msgstr "Utilisé pour spécifier l'augmentation de volume pour un enregistrement de message sur une boîte vocale" 
    1564  
    1565 #: amp_conf/htdocs/admin/modules/core/page.general.php:205 
     2890msgstr "" 
     2891"Utilisé pour spécifier l'augmentation de volume pour un enregistrement de " 
     2892"message sur une boîte vocale" 
     2893 
     2894#: admin/modules/core/page.general.php:205 
    15662895msgid "The units are whole-number decibels (dB)." 
    15672896msgstr "L'unité est le nombre de décibels (dB)." 
    15682897 
    1569 #: amp_conf/htdocs/admin/modules/core/page.general.php:210 
     2898#: admin/modules/core/page.general.php:210 
    15702899msgid "Do Not Play \"please leave message after tone\" to caller" 
    15712900msgstr "Ne pas jouer \"SVP laisser un message aprÚs le beep\" à l'appelant" 
    15722901 
    1573 #: amp_conf/htdocs/admin/modules/core/page.general.php:210 
    1574 msgid "Check this to remove the default message \"Please leave your message after the tone. When done, hang-up, or press the pound key.\" That is played after the voicemail greeting (the s option). This applies globally to all vm boxes." 
    1575 msgstr "Pour retirer le message par défaut \"SVP, laisser votre message aprÚs le beep. Quand activé, raccrochez ou appuyez sur la touche #. C'est joué aprÚs le message d'accueil (option s). Cela s'applique à toutes les boîtes vocales." 
    1576  
    1577 #: amp_conf/htdocs/admin/modules/core/page.general.php:216 
     2902#: admin/modules/core/page.general.php:210 
     2903msgid "" 
     2904"Check this to remove the default message \"Please leave your message after " 
     2905"the tone. When done, hang-up, or press the pound key.\" That is played after " 
     2906"the voicemail greeting (the s option). This applies globally to all vm boxes." 
     2907msgstr "" 
     2908"Pour retirer le message par défaut \"SVP, laisser votre message aprÚs le " 
     2909"beep. Quand activé, raccrochez ou appuyez sur la touche #. C'est joué aprÚs " 
     2910"le message d'accueil (option s). Cela s'applique à toutes les boîtes vocales." 
     2911 
     2912#: admin/modules/core/page.general.php:216 
    15782913msgid "Voicemail VmX Locator" 
    15792914msgstr "Boîte vocale VmX Locator" 
    15802915 
    1581 #: amp_conf/htdocs/admin/modules/core/page.general.php:220 
     2916#: admin/modules/core/page.general.php:220 
    15822917msgid "Default Context & Pri:" 
    15832918msgstr "Contexte par défaut & Pri" 
    15842919 
    1585 #: amp_conf/htdocs/admin/modules/core/page.general.php:221 
     2920#: admin/modules/core/page.general.php:221 
    15862921msgid "Default to use if only a number/extension are provided." 
    15872922msgstr "A utiliser par défaut si seulement un numéro/extension est fourni" 
    15882923 
    1589 #: amp_conf/htdocs/admin/modules/core/page.general.php:228 
     2924#: admin/modules/core/page.general.php:228 
    15902925msgid "Timeout/#-press default:" 
    15912926msgstr "Timeout/ Appui touche #" 
    15922927 
    1593 #: amp_conf/htdocs/admin/modules/core/page.general.php:229 
    1594 msgid "This is the default location that a caller will be sent if they don't press any key (timeout) or press # which is interpreted as a timeout. Set this to 'dovm' to go to voicemail (default)." 
    1595 msgstr "C'est l'endroit par défaut où l'appelant sera envoyé si il n'appuie sur aucune touche (Timeout) ou appuie sur la touche #. 'dovm' permet d'aller sur la boîte vocale (défaut)" 
    1596  
    1597 #: amp_conf/htdocs/admin/modules/core/page.general.php:237 
     2928#: admin/modules/core/page.general.php:229 
     2929msgid "" 
     2930"This is the default location that a caller will be sent if they don't press " 
     2931"any key (timeout) or press # which is interpreted as a timeout. Set this to " 
     2932"'dovm' to go to voicemail (default)." 
     2933msgstr "" 
     2934"C'est l'endroit par défaut où l'appelant sera envoyé si il n'appuie sur " 
     2935"aucune touche (Timeout) ou appuie sur la touche #. 'dovm' permet d'aller sur " 
     2936"la boîte vocale (défaut)" 
     2937 
     2938#: admin/modules/core/page.general.php:237 
    15982939msgid "Loop Exceed default:" 
    15992940msgstr "Nombre d'essais invalides" 
    16002941 
    1601 #: amp_conf/htdocs/admin/modules/core/page.general.php:238 
    1602 msgid "This is the default location that a caller will be sent if they press an invalid options too man times, as defined by the Maximum Loops count. Set this to 'dovm' to go to voicemail (default)." 
    1603 msgstr "C'est l'endroit par défaut où l'appelant ira s'il presse une touche invalide trop de fois (nombre maximum de touches). 'dovm' permet d'aller vers la boîte vocale (défaut)." 
    1604  
    1605 #: amp_conf/htdocs/admin/modules/core/page.general.php:246 
     2942#: admin/modules/core/page.general.php:238 
     2943msgid "" 
     2944"This is the default location that a caller will be sent if they press an " 
     2945"invalid options too man times, as defined by the Maximum Loops count. Set " 
     2946"this to 'dovm' to go to voicemail (default)." 
     2947msgstr "" 
     2948"C'est l'endroit par défaut où l'appelant ira s'il presse une touche invalide " 
     2949"trop de fois (nombre maximum de touches). 'dovm' permet d'aller vers la " 
     2950"boîte vocale (défaut)." 
     2951 
     2952#: admin/modules/core/page.general.php:246 
    16062953msgid "Timeout VM Msg:" 
    16072954msgstr "Timeout : message vocale" 
    16082955 
    1609 #: amp_conf/htdocs/admin/modules/core/page.general.php:247 
    1610 #: amp_conf/htdocs/admin/modules/core/page.general.php:259 
    1611 msgid "If this destination is voicemail, select whether or not to play the standard voicemail instructions or just beep." 
    1612 msgstr "Si la destination choisie est la boîte vocale, sélectionne si les instructions vocales standard sont jouées ou si c'est juste un beep." 
    1613  
    1614 #: amp_conf/htdocs/admin/modules/core/page.general.php:251 
    1615 #: amp_conf/htdocs/admin/modules/core/page.general.php:263 
    1616 #: amp_conf/htdocs/admin/modules/core/page.general.php:275 
     2956#: admin/modules/core/page.general.php:247 
     2957#: admin/modules/core/page.general.php:259 
     2958msgid "" 
     2959"If this destination is voicemail, select whether or not to play the standard " 
     2960"voicemail instructions or just beep." 
     2961msgstr "" 
     2962"Si la destination choisie est la boîte vocale, sélectionne si les " 
     2963"instructions vocales standard sont jouées ou si c'est juste un beep." 
     2964 
     2965#: admin/modules/core/page.general.php:251 
     2966#: admin/modules/core/page.general.php:263 
     2967#: admin/modules/core/page.general.php:275 
    16172968msgid "Std Instructions" 
    16182969msgstr "Instructions standard" 
    16192970 
    1620 #: amp_conf/htdocs/admin/modules/core/page.general.php:252 
    1621 #: amp_conf/htdocs/admin/modules/core/page.general.php:264 
    1622 #: amp_conf/htdocs/admin/modules/core/page.general.php:276 
     2971#: admin/modules/core/page.general.php:252 
     2972#: admin/modules/core/page.general.php:264 
     2973#: admin/modules/core/page.general.php:276 
    16232974msgid "Beep Only" 
    16242975msgstr "Beep seulement" 
    16252976 
    1626 #: amp_conf/htdocs/admin/modules/core/page.general.php:258 
     2977#: admin/modules/core/page.general.php:258 
    16272978msgid "Max Loop VM Msg:" 
    16282979msgstr "Essais invalides : message vocale" 
    16292980 
    1630 #: amp_conf/htdocs/admin/modules/core/page.general.php:270 
     2981#: admin/modules/core/page.general.php:270 
    16312982msgid "Direct VM Option" 
    16322983msgstr "Options boîte vocale" 
    16332984 
    1634 #: amp_conf/htdocs/admin/modules/core/page.general.php:271 
    1635 msgid "If a user defined option is to go to voicemail (using the 'dovm' extension) this is the default option if not specified by the user's settings." 
    1636 msgstr "Si l'option choisie est d'activer la boîte vocale (extension 'dovm'), c'est l'option par défaut si les rÚglages utilisateurs ne précisent rien." 
    1637  
    1638 #: amp_conf/htdocs/admin/modules/core/page.general.php:282 
     2985#: admin/modules/core/page.general.php:271 
     2986msgid "" 
     2987"If a user defined option is to go to voicemail (using the 'dovm' extension) " 
     2988"this is the default option if not specified by the user's settings." 
     2989msgstr "" 
     2990"Si l'option choisie est d'activer la boîte vocale (extension 'dovm'), c'est " 
     2991"l'option par défaut si les rÚglages utilisateurs ne précisent rien." 
     2992 
     2993#: admin/modules/core/page.general.php:282 
    16392994msgid "Msg Timeout:" 
    16402995msgstr "Message Timeout" 
    16412996 
    1642 #: amp_conf/htdocs/admin/modules/core/page.general.php:283 
    1643 msgid "Time to wait after message has played to timeout and/or repeat the message if no entry pressed." 
    1644 msgstr "Temps d'attente aprÚs le message associé au Timeout et/ou le message est rejoué si aucune touche n'est appuyée." 
    1645  
    1646 #: amp_conf/htdocs/admin/modules/core/page.general.php:295 
     2997#: admin/modules/core/page.general.php:283 
     2998msgid "" 
     2999"Time to wait after message has played to timeout and/or repeat the message " 
     3000"if no entry pressed." 
     3001msgstr "" 
     3002"Temps d'attente aprÚs le message associé au Timeout et/ou le message est " 
     3003"rejoué si aucune touche n'est appuyée." 
     3004 
     3005#: admin/modules/core/page.general.php:295 
    16473006msgid "seconds" 
    16483007msgstr "secondes" 
    16493008 
    1650 #: amp_conf/htdocs/admin/modules/core/page.general.php:300 
     3009#: admin/modules/core/page.general.php:300 
    16513010msgid "Msg Play:" 
    16523011msgstr "Message rejoué" 
    16533012 
    1654 #: amp_conf/htdocs/admin/modules/core/page.general.php:301 
    1655 msgid "Number of times to play the recorded message if the caller does not press any options and it times out." 
    1656 msgstr "Nombre de fois où le message est joué si l'appelant ne presse aucune touche et le timeout est atteint." 
    1657  
    1658 #: amp_conf/htdocs/admin/modules/core/page.general.php:313 
    1659 #: amp_conf/htdocs/admin/modules/core/page.general.php:331 
     3013#: admin/modules/core/page.general.php:301 
     3014msgid "" 
     3015"Number of times to play the recorded message if the caller does not press " 
     3016"any options and it times out." 
     3017msgstr "" 
     3018"Nombre de fois où le message est joué si l'appelant ne presse aucune touche " 
     3019"et le timeout est atteint." 
     3020 
     3021#: admin/modules/core/page.general.php:313 
     3022#: admin/modules/core/page.general.php:331 
    16603023msgid "times" 
    16613024msgstr "fois" 
    16623025 
    1663 #: amp_conf/htdocs/admin/modules/core/page.general.php:318 
     3026#: admin/modules/core/page.general.php:318 
    16643027msgid "Error Re-tries:" 
    16653028msgstr " Message invalide" 
    16663029 
    1667 #: amp_conf/htdocs/admin/modules/core/page.general.php:319 
    1668 msgid "Number of times to play invalid options and repeat the message upon receiving an undefined option." 
    1669 msgstr "Nombre de fois pour jouer le message 'option invalide' en cas d'option non définie." 
    1670  
    1671 #: amp_conf/htdocs/admin/modules/core/page.general.php:336 
     3030#: admin/modules/core/page.general.php:319 
     3031msgid "" 
     3032"Number of times to play invalid options and repeat the message upon " 
     3033"receiving an undefined option." 
     3034msgstr "" 
     3035"Nombre de fois pour jouer le message 'option invalide' en cas d'option non " 
     3036"définie." 
     3037 
     3038#: admin/modules/core/page.general.php:336 
    16723039msgid "Company Directory" 
    16733040msgstr "Annuaire d'entreprise" 
    16743041 
    1675 #: amp_conf/htdocs/admin/modules/core/page.general.php:339 
     3042#: admin/modules/core/page.general.php:339 
    16763043msgid "Find users in the Company Directory by:" 
    16773044msgstr "Chercher les utilisateurs dans le répertoire de l'entreprise par" 
    16783045 
    1679 #: amp_conf/htdocs/admin/modules/core/page.general.php:339 
    1680 msgid "The Company Directory allows a caller to spell the user's first name, last name, or both when searching for a user. This will select which of these modes are used." 
    1681 msgstr "L'annuaire de l'entreprise permet à l'appelant d'épeler le nom, le prénom ou les deux lors d'une recherche pour un utilisateur. Ceci sélectionne le mode utilisé." 
    1682  
    1683 #: amp_conf/htdocs/admin/modules/core/page.general.php:342 
     3046#: admin/modules/core/page.general.php:339 
     3047msgid "" 
     3048"The Company Directory allows a caller to spell the user's first name, last " 
     3049"name, or both when searching for a user. This will select which of these " 
     3050"modes are used." 
     3051msgstr "" 
     3052"L'annuaire de l'entreprise permet à l'appelant d'épeler le nom, le prénom ou " 
     3053"les deux lors d'une recherche pour un utilisateur. Ceci sélectionne le mode " 
     3054"utilisé." 
     3055 
     3056#: admin/modules/core/page.general.php:342 
    16843057msgid "first name" 
    16853058msgstr "prénom" 
    16863059 
    1687 #: amp_conf/htdocs/admin/modules/core/page.general.php:343 
     3060#: admin/modules/core/page.general.php:343 
    16883061msgid "last name" 
    16893062msgstr "nom" 
    16903063 
    1691 #: amp_conf/htdocs/admin/modules/core/page.general.php:344 
     3064#: admin/modules/core/page.general.php:344 
    16923065msgid "first or last name" 
    16933066msgstr "prénom ou nom" 
    16943067 
    1695 #: amp_conf/htdocs/admin/modules/core/page.general.php:348 
     3068#: admin/modules/core/page.general.php:348 
    16963069msgid "Announce Extension:" 
    16973070msgstr "Annonce de l'Extension" 
    16983071 
    1699 #: amp_conf/htdocs/admin/modules/core/page.general.php:348 
    1700 msgid "Plays a message \"Please hold while I transfer you to extension xxx\" that lets the caller know what extension to use in the future when connecting from the company directory." 
    1701 msgstr "Joue un message: \"<strong>Veuillez patienter pendant que je vous transfÚre à l'extension XXXX</strong>\".<br>Permet d'informer l'appelant de l'extension à utiliser dans le futur." 
    1702  
    1703 #: amp_conf/htdocs/admin/modules/core/page.general.php:353 
     3072#: admin/modules/core/page.general.php:348 
     3073msgid "" 
     3074"Plays a message \"Please hold while I transfer you to extension xxx\" that " 
     3075"lets the caller know what extension to use in the future when connecting " 
     3076"from the company directory." 
     3077msgstr "" 
     3078"Joue un message: \"<strong>Veuillez patienter pendant que je vous transfÚre " 
     3079"à l'extension XXXX</strong>\".<br>Permet d'informer l'appelant de " 
     3080"l'extension à utiliser dans le futur." 
     3081 
     3082#: admin/modules/core/page.general.php:353 
    17043083msgid "Operator Extension:" 
    17053084msgstr "Extension Opérateur" 
    17063085 
    1707 #: amp_conf/htdocs/admin/modules/core/page.general.php:354 
    1708 msgid "When users hit '0' in the directory, they are put through to this number. Note that it" 
    1709 msgstr "Quand un utilisateur presse le 0 dans l'annuaire, le numéro est composé. " 
    1710  
    1711 #: amp_conf/htdocs/admin/modules/core/page.general.php:355 
    1712 msgid " does NOT need to be an extension, it can be a Ring Group, or even an external number." 
    1713 msgstr "Cela ne peut être une extension mais un appel de groupe ou même un numéro externe." 
    1714  
    1715 #: amp_conf/htdocs/admin/modules/core/page.general.php:361 
     3086#: admin/modules/core/page.general.php:354 
     3087msgid "" 
     3088"When users hit '0' in the directory, they are put through to this number. " 
     3089"Note that it" 
     3090msgstr "" 
     3091"Quand un utilisateur presse le 0 dans l'annuaire, le numéro est composé. " 
     3092 
     3093#: admin/modules/core/page.general.php:355 
     3094msgid "" 
     3095" does NOT need to be an extension, it can be a Ring Group, or even an " 
     3096"external number." 
     3097msgstr "" 
     3098"Cela ne peut être une extension mais un appel de groupe ou même un numéro " 
     3099"externe." 
     3100 
     3101#: admin/modules/core/page.general.php:361 
    17163102msgid "Fax Machine" 
    17173103msgstr "Télécopieur" 
    17183104 
    1719 #: amp_conf/htdocs/admin/modules/core/page.general.php:364 
     3105#: admin/modules/core/page.general.php:364 
    17203106msgid "Extension of fax machine for receiving faxes:" 
    17213107msgstr "Extension pour recevoir les télécopies" 
    17223108 
    1723 #: amp_conf/htdocs/admin/modules/core/page.general.php:364 
    1724 msgid "Select 'system' to have the system receive and email faxes.<br>Selecting 'disabled' will result in incoming calls being answered more quickly." 
    1725 msgstr "Choisir SystÚme pour que le systÚme recoive les télécopies et les renvoie par courriel.Si désactivé,cela permettra de répondre aux appels plus rapidement." 
    1726  
    1727 #: amp_conf/htdocs/admin/modules/core/page.general.php:368 
    1728 #: amp_conf/htdocs/admin/modules/core/page.did.php:251 
    1729 msgid "disabled" 
    1730 msgstr "Désactivé" 
    1731  
    1732 #: amp_conf/htdocs/admin/modules/core/page.general.php:369 
    1733 #: amp_conf/htdocs/admin/modules/core/page.did.php:252 
    1734 msgid "system" 
    1735 msgstr "SystÚme" 
    1736  
    1737 #: amp_conf/htdocs/admin/modules/core/page.general.php:382 
     3109#: admin/modules/core/page.general.php:364 
     3110msgid "" 
     3111"Select 'system' to have the system receive and email faxes.<br>Selecting " 
     3112"'disabled' will result in incoming calls being answered more quickly." 
     3113msgstr "" 
     3114"Choisir SystÚme pour que le systÚme recoive les télécopies et les renvoie " 
     3115"par courriel.Si désactivé,cela permettra de répondre aux appels plus " 
     3116"rapidement." 
     3117 
     3118#: admin/modules/core/page.general.php:382 
    17383119msgid "Email address to have faxes emailed to:" 
    17393120msgstr "Adresse courriel du télécopieur" 
    17403121 
    1741 #: amp_conf/htdocs/admin/modules/core/page.general.php:382 
    1742 msgid "Email address used if 'system' has been chosen for the fax extension above." 
    1743 msgstr "Adresse courriel utilisée si l'option <b>SystÚme</b> a été choisie pour l'<strong>Extension du télécopieur</strong> définie ci-dessus." 
    1744  
    1745 #: amp_conf/htdocs/admin/modules/core/page.general.php:387 
     3122#: admin/modules/core/page.general.php:382 
     3123msgid "" 
     3124"Email address used if 'system' has been chosen for the fax extension above." 
     3125msgstr "" 
     3126"Adresse courriel utilisée si l'option <b>SystÚme</b> a été choisie pour " 
     3127"l'<strong>Extension du télécopieur</strong> définie ci-dessus." 
     3128 
     3129#: admin/modules/core/page.general.php:387 
    17463130msgid "Email address that faxes appear to come from:" 
    17473131msgstr "Adresse courriel d'émission du télécopieur" 
    17483132 
    1749 #: amp_conf/htdocs/admin/modules/core/page.general.php:387 
    1750 msgid "Email address that faxes appear to come from if 'system' has been chosen for the fax extension above." 
    1751 msgstr "Adresse courriel du télécopieur affiché si l'option <b>SystÚme</b> a été choisie pour l'<strong>Extension du télécopieur</strong> définie ci-dessus." 
    1752  
    1753 #: amp_conf/htdocs/admin/modules/core/page.general.php:392 
     3133#: admin/modules/core/page.general.php:387 
     3134msgid "" 
     3135"Email address that faxes appear to come from if 'system' has been chosen for " 
     3136"the fax extension above." 
     3137msgstr "" 
     3138"Adresse courriel du télécopieur affiché si l'option <b>SystÚme</b> a été " 
     3139"choisie pour l'<strong>Extension du télécopieur</strong> définie ci-dessus." 
     3140 
     3141#: admin/modules/core/page.general.php:392 
    17543142msgid "International Settings" 
    17553143msgstr "Réglages internationaux" 
    17563144 
    1757 #: amp_conf/htdocs/admin/modules/core/page.general.php:395 
     3145#: admin/modules/core/page.general.php:395 
    17583146msgid "Country Indications" 
    17593147msgstr "Pays" 
    17603148 
    1761 #: amp_conf/htdocs/admin/modules/core/page.general.php:395 
     3149#: admin/modules/core/page.general.php:395 
    17623150msgid "Select which country you are in" 
    17633151msgstr "Pays dans lequel vous êtes" 
    17643152 
    1765 #: amp_conf/htdocs/admin/modules/core/page.general.php:404 
     3153#: admin/modules/core/page.general.php:404 
    17663154msgid "24-hour format" 
    17673155msgstr "Format 24 heures" 
    17683156 
    1769 #: amp_conf/htdocs/admin/modules/core/page.general.php:404 
    1770 msgid "Select Yes if you use 24-hour format or No if you are using 12-hour am/pm format" 
    1771 msgstr "Sélectionner Oui pour utiliser le format 24 heures et Non pour utiliser le format 12 heures am/pm" 
    1772  
    1773 #: amp_conf/htdocs/admin/modules/core/page.general.php:407 
    1774 #: amp_conf/htdocs/admin/modules/core/page.general.php:422 
     3157#: admin/modules/core/page.general.php:404 
     3158msgid "" 
     3159"Select Yes if you use 24-hour format or No if you are using 12-hour am/pm " 
     3160"format" 
     3161msgstr "" 
     3162"Sélectionner Oui pour utiliser le format 24 heures et Non pour utiliser le " 
     3163"format 12 heures am/pm" 
     3164 
     3165#: admin/modules/core/page.general.php:407 
     3166#: admin/modules/core/page.general.php:422 
    17753167msgid "no" 
    17763168msgstr "non" 
    17773169 
    1778 #: amp_conf/htdocs/admin/modules/core/page.general.php:408 
    1779 #: amp_conf/htdocs/admin/modules/core/page.general.php:423 
     3170#: admin/modules/core/page.general.php:408 
     3171#: admin/modules/core/page.general.php:423 
    17803172msgid "yes" 
    17813173msgstr "oui" 
    17823174 
    1783 #: amp_conf/htdocs/admin/modules/core/page.general.php:412 
     3175#: admin/modules/core/page.general.php:412 
    17843176msgid "Security Settings" 
    17853177msgstr "Paramétres de sécurité" 
    17863178 
    1787 #: amp_conf/htdocs/admin/modules/core/page.general.php:415 
     3179#: admin/modules/core/page.general.php:415 
    17883180msgid "Allow Anonymous Inbound SIP Calls?" 
    17893181msgstr "Autorise les appels SIP entrants anonymes?" 
    17903182 
    1791 #: amp_conf/htdocs/admin/modules/core/page.general.php:416 
     3183#: admin/modules/core/page.general.php:416 
    17923184msgid "** WARNING **" 
    17933185msgstr "**ATTENTION**" 
    17943186 
    1795 #: amp_conf/htdocs/admin/modules/core/page.general.php:417 
    1796 msgid "Setting this to 'yes' will potentially allow ANYBODY to call into your Asterisk server using the SIP protocol" 
    1797 msgstr "Une sélection à Oui autorise potentiellement tout le monde à appeler via le protocole SIP et votre serveur Asterisk" 
    1798  
    1799 #: amp_conf/htdocs/admin/modules/core/page.general.php:418 
    1800 msgid "It should only be used if you fully understand the impact of allowing anonymous calls into your server" 
    1801 msgstr "Ceci ne doit être utilisé que si vous comprenez parfaitement les risques encourus." 
    1802  
    1803 #: amp_conf/htdocs/admin/modules/core/page.general.php:428 
     3187#: admin/modules/core/page.general.php:417 
     3188msgid "" 
     3189"Setting this to 'yes' will potentially allow ANYBODY to call into your " 
     3190"Asterisk server using the SIP protocol" 
     3191msgstr "" 
     3192"Une sélection à Oui autorise potentiellement tout le monde à appeler via le " 
     3193"protocole SIP et votre serveur Asterisk" 
     3194 
     3195#: admin/modules/core/page.general.php:418 
     3196msgid "" 
     3197"It should only be used if you fully understand the impact of allowing " 
     3198"anonymous calls into your server" 
     3199msgstr "" 
     3200"Ceci ne doit être utilisé que si vous comprenez parfaitement les risques " 
     3201"encourus." 
     3202 
     3203#: admin/modules/core/page.general.php:428 
    18043204msgid "Online Updates" 
    18053205msgstr "Mise à jour réseau" 
    18063206 
    1807 #: amp_conf/htdocs/admin/modules/core/page.general.php:432 
     3207#: admin/modules/core/page.general.php:432 
    18083208msgid "Check for Updates" 
    18093209msgstr "Vérification des mises à jour" 
    18103210 
    1811 #: amp_conf/htdocs/admin/modules/core/page.general.php:433 
    1812 msgid "Choosing Yes will result in the system automatically checking for updates nighly. The resulting infomation will be displayed in the dashboard and will be optionally emailed to the address below if provided.<br />This will transmit your FreePBX and Asterisk version numbers along with a unique but random identifier. This is used to provide proper update information and to track version usage to focus development and maintenance efforts. No private information is transmitted." 
    1813 msgstr "Le choix Oui amÚne le systÚme a automatiquement rechercher une mise à jour toutes les nuits. Le résultat sera affiché sur l'écran et sera de façon optionnelle envoyé par courriel si l'adresse est renseignée.<br />Cela transmettra les numéros de version FreePBX et Asterisk avec un identifiant unique aléatoire. Cela permet de fournir des informations sur les mises à jour et les versions utilisées au développement et à la maintenance. Aucune information privée n'est transmise." 
    1814  
    1815 #: amp_conf/htdocs/admin/modules/core/page.general.php:437 
    1816 #: amp_conf/htdocs/admin/modules/core/page.did.php:237 
    1817 msgid "Yes" 
    1818 msgstr "Oui" 
    1819  
    1820 #: amp_conf/htdocs/admin/modules/core/page.general.php:438 
    1821 #: amp_conf/htdocs/admin/modules/core/page.did.php:236 
    1822 msgid "No" 
    1823 msgstr "Non" 
    1824  
    1825 #: amp_conf/htdocs/admin/modules/core/page.general.php:444 
     3211#: admin/modules/core/page.general.php:433 
     3212msgid "" 
     3213"Choosing Yes will result in the system automatically checking for updates " 
     3214"nighly. The resulting infomation will be displayed in the dashboard and will " 
     3215"be optionally emailed to the address below if provided.<br />This will " 
     3216"transmit your FreePBX and Asterisk version numbers along with a unique but " 
     3217"random identifier. This is used to provide proper update information and to " 
     3218"track version usage to focus development and maintenance efforts. No private " 
     3219"information is transmitted." 
     3220msgstr "" 
     3221"Le choix Oui amÚne le systÚme a automatiquement rechercher une mise à jour " 
     3222"toutes les nuits. Le résultat sera affiché sur l'écran et sera de façon " 
     3223"optionnelle envoyé par courriel si l'adresse est renseignée.<br />Cela " 
     3224"transmettra les numéros de version FreePBX et Asterisk avec un identifiant " 
     3225"unique aléatoire. Cela permet de fournir des informations sur les mises à " 
     3226"jour et les versions utilisées au développement et à la maintenance. Aucune " 
     3227"information privée n'est transmise." 
     3228 
     3229#: admin/modules/core/page.general.php:444 
    18263230msgid "Update Email" 
    18273231msgstr "Adresse Courriel mis à jour" 
    18283232 
    1829 #: amp_conf/htdocs/admin/modules/core/page.general.php:445 
    1830 msgid "Email address where online updates will be sent. Leaving blank will result in no updates being sent." 
    1831 msgstr "Adresse courriel où les mises à jour seront envoyées. Aucune mise à jour ne sera envoyée si le champ est vide." 
    1832  
    1833 #: amp_conf/htdocs/admin/modules/core/page.general.php:475 
     3233#: admin/modules/core/page.general.php:445 
     3234msgid "" 
     3235"Email address where online updates will be sent. Leaving blank will result " 
     3236"in no updates being sent." 
     3237msgstr "" 
     3238"Adresse courriel où les mises à jour seront envoyées. Aucune mise à jour ne " 
     3239"sera envoyée si le champ est vide." 
     3240 
     3241#: admin/modules/core/page.general.php:475 
    18343242msgid "Please enter a valid Number of Seconds" 
    18353243msgstr "SVP, entrez un nombre de secondes valide" 
    18363244 
    1837 #: amp_conf/htdocs/admin/modules/core/page.general.php:476 
     3245#: admin/modules/core/page.general.php:476 
    18383246msgid "Please enter a valid Fax Email" 
    18393247msgstr "SVP, entrez une adresse courriel télécopieur valide." 
    18403248 
    1841 #: amp_conf/htdocs/admin/modules/core/page.general.php:477 
    1842 msgid "You have selected the 'r' option for your trunks. This is highly discouraged and will create problems with calls on many PRI, VoIP, ISDN and other trunks that are capable of signaling. Asterisk will generate a ringing tone until the signalling indicates the line is answered. This will result in some external IVRs being inaccessible and other strange problems." 
    1843 msgstr "Vous avez sélectionné l'option 'r' pour vos trunks. C'est un choix à éviter car il crée des problÚmes avec les appels sur beaucoup de T2, VoIP, Numeris et autres trunks. Asterisk va générer un sonnerie jusqu'à ce la signalisation indique que l'appel est répondu. Cela va rendre certains serveurs vocaux inacessibles et crée d'autres problÚmes." 
    1844  
    1845 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:53 
    1846 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:87 
     3249#: admin/modules/core/page.general.php:477 
     3250msgid "" 
     3251"You have selected the 'r' option for your trunks. This is highly discouraged " 
     3252"and will create problems with calls on many PRI, VoIP, ISDN and other trunks " 
     3253"that are capable of signaling. Asterisk will generate a ringing tone until " 
     3254"the signalling indicates the line is answered. This will result in some " 
     3255"external IVRs being inaccessible and other strange problems." 
     3256msgstr "" 
     3257"Vous avez sélectionné l'option 'r' pour vos trunks. C'est un choix à éviter " 
     3258"car il crée des problÚmes avec les appels sur beaucoup de T2, VoIP, Numeris " 
     3259"et autres trunks. Asterisk va générer un sonnerie jusqu'à ce la " 
     3260"signalisation indique que l'appel est répondu. Cela va rendre certains " 
     3261"serveurs vocaux inacessibles et crée d'autres problÚmes." 
     3262 
     3263# ######## DEBUT ANCIENS MESSAGES de REPORTS 
     3264# ######## FIN ANCIENS MESSAGES de REPORTS 
     3265#: admin/modules/core/page.routing.php:118 
     3266msgid "Error renaming route: duplicate name" 
     3267msgstr "Erreur: ce nom de route existe déjà" 
     3268 
     3269#: admin/modules/core/page.routing.php:164 
     3270#: admin/modules/core/page.trunks.php:159 
     3271msgid "Error fetching prefix list for: " 
     3272msgstr "Erreur lors de la récupération de la liste des préfixes pour:" 
     3273 
     3274#: admin/modules/core/page.routing.php:169 
     3275#: admin/modules/core/page.trunks.php:164 
     3276msgid "Invalid format for NPA-NXX code (must be format: NXXNXX)" 
     3277msgstr "Format invalide pour le code NPA-NXX (format doit être; <b>NXXNXX</b>)" 
     3278 
     3279#: admin/modules/core/page.routing.php:200 
     3280#: admin/modules/core/page.routing.php:265 
     3281msgid "Add Route" 
     3282msgstr "Ajout Route" 
     3283 
     3284#: admin/modules/core/page.routing.php:215 
     3285#: admin/modules/core/page.routing.php:528 
     3286msgid "Move Up" 
     3287msgstr "Vers le Haut" 
     3288 
     3289#: admin/modules/core/page.routing.php:222 
     3290#: admin/modules/core/page.routing.php:536 
     3291msgid "Move Down" 
     3292msgstr "Vers le Bas" 
     3293 
     3294#: admin/modules/core/page.routing.php:263 
     3295msgid "Edit Route" 
     3296msgstr "Edition Route" 
     3297 
     3298#: admin/modules/core/page.routing.php:290 
     3299msgid "Route Name" 
     3300msgstr "Nom de la Route" 
     3301 
     3302#: admin/modules/core/page.routing.php:290 
     3303msgid "" 
     3304"Name of this route. Should be used to describe what type of calls this route " 
     3305"matches (for example, 'local' or 'longdistance')." 
     3306msgstr "" 
     3307"Nom de cette route. Par commodité, devrait décrire le type d'appels routés " 
     3308"sur cette route (par exemple, <strong>local</strong> ou " 
     3309"<strong>longuedistance</strong>)" 
     3310 
     3311#: admin/modules/core/page.routing.php:296 
     3312msgid "Rename" 
     3313msgstr "Renommer" 
     3314 
     3315#: admin/modules/core/page.routing.php:301 
     3316msgid "Rename route" 
     3317msgstr "Renommer la route" 
     3318 
     3319#: admin/modules/core/page.routing.php:301 
     3320msgid "to:" 
     3321msgstr "vers:" 
     3322 
     3323#: admin/modules/core/page.routing.php:303 
     3324msgid "Route name is invalid...please try again" 
     3325msgstr "Le 'Nom de la Route' est invalide... SVP réessayez." 
     3326 
     3327#: admin/modules/core/page.routing.php:318 
     3328msgid "Route Password" 
     3329msgstr "Mot de Passe de la Route" 
     3330 
     3331#: admin/modules/core/page.routing.php:318 
     3332msgid "" 
     3333"Optional: A route can prompt users for a password before allowing calls to " 
     3334"progress.  This is useful for restricting calls to international " 
     3335"destinations or 1-900 numbers.<br><br>A numerical password, or the path to " 
     3336"an Authenticate password file can be used.<br><br>Leave this field blank to " 
     3337"not prompt for password.</span>" 
     3338msgstr "" 
     3339"Optionnel: Une route peut demander aux utilisateurs un mot de passe avant de " 
     3340"permettre la progression des appels. Utile pour restreindre les appels " 
     3341"internationaux ou les appels surtaxés.<br><br>Un mot de passe numérique ou " 
     3342"un chemin vers un fichier d'authentification de mot de passe peuvent être " 
     3343"utilisés.<br><br>Laissez ce champ vide si aucun mot de passe n'est requis.</" 
     3344"span>" 
     3345 
     3346#: admin/modules/core/page.routing.php:327 
     3347msgid "Emergency Dialing" 
     3348msgstr "Numérotation d'Urgence" 
     3349 
     3350#: admin/modules/core/page.routing.php:327 
     3351msgid "" 
     3352"Optional: Selecting this option will enforce the use of a device's Emergency " 
     3353"CID setting (if set).  Select this option if this set of routes is used for " 
     3354"emergency dialing (ie: 911).</span>" 
     3355msgstr "" 
     3356"Optionnel: Choisir cette option va forcer l'utilisation du param&egrave;" 
     3357"trage (si d&eacute;fini) du CID d'Urgence d'un p&eacute;riph&eacute;rique. " 
     3358"Choisir cette option si ces routes sont utilis&eacute;s pour la num&eacute;" 
     3359"rotation des appels d'urgence (eg: 112).</span>" 
     3360 
     3361#: admin/modules/core/page.routing.php:331 
     3362msgid "Intra Company Route" 
     3363msgstr "Route intra-entreprise" 
     3364 
     3365#: admin/modules/core/page.routing.php:331 
     3366msgid "" 
     3367"Optional: Selecting this option will treat this route as a intra-company " 
     3368"connection, preserving the internal Caller ID information and not use the " 
     3369"outbound CID of either the extension or trunk.</span>" 
     3370msgstr "" 
     3371"Option: sélectionner cette option gÚrera la route come une route intra-" 
     3372"entreprise, conservant le CID et n'utilisera pas le CID ou l'extension ou le " 
     3373"trunk sortant ." 
     3374 
     3375#: admin/modules/core/page.routing.php:336 
     3376msgid "Music On Hold?" 
     3377msgstr "Musique d'attente" 
     3378 
     3379#: admin/modules/core/page.routing.php:336 
     3380msgid "" 
     3381"You can choose which music category to use. For example, choose a type " 
     3382"appropriate for a destination country which may have announcements in the " 
     3383"appropriate language." 
     3384msgstr "" 
     3385"Vous pouvez choisir votre type de musique à utiliser. Par exemple, choisir " 
     3386"un type pour un pays de destination qui comprendra une annonce dans la " 
     3387"langue du pays." 
     3388 
     3389#: admin/modules/core/page.routing.php:354 
     3390msgid "Dial Patterns" 
     3391msgstr "Masque de numérotation:" 
     3392 
     3393#: admin/modules/core/page.routing.php:354 
     3394msgid "" 
     3395"A Dial Pattern is a unique set of digits that will select this trunk. Enter " 
     3396"one dial pattern per line." 
     3397msgstr "" 
     3398"Un Masque de numérotation est une suite de chiffres qui vont sélectionner " 
     3399"cette route.<br> Entrez un masque de numérotation par ligne." 
     3400 
     3401#: admin/modules/core/page.routing.php:354 
     3402#: admin/modules/core/page.trunks.php:410 
     3403msgid "Rules:" 
     3404msgstr "RÚgles:" 
     3405 
     3406#: admin/modules/core/page.routing.php:355 
     3407#: admin/modules/core/page.trunks.php:411 
     3408msgid "matches any digit from 0-9" 
     3409msgstr "correspond à un chiffre de 0-9" 
     3410 
     3411#: admin/modules/core/page.routing.php:356 
     3412#: admin/modules/core/page.trunks.php:412 
     3413msgid "matches any digit from 1-9" 
     3414msgstr "correspond à un chiffre de 1-9" 
     3415 
     3416#: admin/modules/core/page.routing.php:357 
     3417#: admin/modules/core/page.trunks.php:413 
     3418msgid "matches any digit from 2-9" 
     3419msgstr "correspond à un chiffre de 2-9" 
     3420 
     3421#: admin/modules/core/page.routing.php:358 
     3422#: admin/modules/core/page.trunks.php:414 
     3423msgid "" 
     3424"matches any digit or letter in the brackets (in this example, 1,2,3,7,8,9)" 
     3425msgstr "" 
     3426"correspond à n'importe quel chiffre ou lettre inclus dans les crochets (dans " 
     3427"cet exemple, 1,2,3,7,8,9)" 
     3428 
     3429#: admin/modules/core/page.routing.php:359 
     3430msgid "wildcard, matches one or more characters" 
     3431msgstr "joker, correspond à un ou plusieurs caractÚres" 
     3432 
     3433#: admin/modules/core/page.routing.php:360 
     3434msgid "" 
     3435"separates a dialing prefix from the number (for example, 9|NXXXXXX would " 
     3436"match when some dialed \"95551234\" but would only pass \"5551234\" to the " 
     3437"trunks)" 
     3438msgstr "" 
     3439"Sépare un préfixe de numérotation du numéro composé.<br>Par exemple, 9|" 
     3440"NXXXXXX aura l'effet suivant: si \"95551234\" est composé, seulement " 
     3441"\"5551234\" sera transmis au trunk." 
     3442 
     3443#: admin/modules/core/page.routing.php:397 
     3444#: admin/modules/core/page.trunks.php:429 
     3445msgid "Clean & Remove duplicates" 
     3446msgstr "Nettoyer & Supprimer les duplicats" 
     3447 
     3448#: admin/modules/core/page.routing.php:402 
     3449msgid "Dial patterns wizards" 
     3450msgstr "Masque de numérotation pré-défini" 
     3451 
     3452#: admin/modules/core/page.routing.php:403 
     3453msgid "" 
     3454"These options provide a quick way to add outbound dialing rules. Follow the " 
     3455"prompts for each." 
     3456msgstr "" 
     3457"Ces options fournissent un moyen rapide d'ajouter une rÚgle de numérotation " 
     3458"sortante." 
     3459 
     3460#: admin/modules/core/page.routing.php:404 
     3461#: admin/modules/core/page.routing.php:490 
     3462msgid "Lookup local prefixes" 
     3463msgstr "Recherche préfixes locaux" 
     3464 
     3465#: admin/modules/core/page.routing.php:404 
     3466msgid "" 
     3467"This looks up your local number on www.localcallingguide.com (NA-only), and " 
     3468"sets up so you can dial either 7, 10 or 11 digits (5551234, 6135551234, " 
     3469"16135551234) to access this route." 
     3470msgstr "" 
     3471"Cela recherche votre numéro local sur www.localcallingguide.com (NA-" 
     3472"seulement), et ainsi vous pouvez appeler avec 7, 10 ou 11 chiffres (5551234, " 
     3473"6135551234, 16135551234) pour accéder à cette route." 
     3474 
     3475#: admin/modules/core/page.routing.php:415 
     3476#: admin/modules/core/page.trunks.php:479 
     3477msgid "" 
     3478"What is your areacode + prefix (NPA-NXX)?\\n\\n(Note: this database contains " 
     3479"North American numbers only, and is not guaranteed to be 100% accurate. You " 
     3480"will still have the option of modifying results.)\\n\\nThis may take a few " 
     3481"seconds." 
     3482msgstr "" 
     3483"Quel est votre code région + péfixe (NPA-NXX)?\\n\\n(Note: cette base ne " 
     3484"contient que des numéros du Nord des Etats-Unis, et n'est pas garantieà 100% " 
     3485"aussi vous pouvez toujours modifier ces résultats.)\\n\\nCela peut prendre " 
     3486"quelques secondes." 
     3487 
     3488#: admin/modules/core/page.routing.php:417 
     3489#: admin/modules/core/page.trunks.php:481 
     3490msgid "Invalid NPA-NXX. Must be of the format \\'NXX-NXX\\'" 
     3491msgstr "NPA-NXX invalide. Doit être au format \"NXX-NXX\"" 
     3492 
     3493#: admin/modules/core/page.routing.php:425 
     3494#: admin/modules/core/page.trunks.php:493 
     3495msgid "" 
     3496"Error: Cannot continue!\\n\\nPrefix lookup requires cURL support in PHP on " 
     3497"the server. Please install or enable cURL support in your PHP installation " 
     3498"to use this function. See http://www.php.net/curl for more information." 
     3499msgstr "" 
     3500"Erreur: Impossible de continuer!\\n\\n La recherche du préfixe requiert le " 
     3501"support cURL dans PHP sur le serveur. SVP, installez et activez le support " 
     3502"cURL dans votre installation PHP pour utiliser cette fonction. Voir http://" 
     3503"www.php.net/curl pour plus d'informations." 
     3504 
     3505#: admin/modules/core/page.routing.php:482 
     3506#: admin/modules/core/page.trunks.php:440 
     3507msgid "(pick one)" 
     3508msgstr "(choisir un)" 
     3509 
     3510#: admin/modules/core/page.routing.php:483 
     3511msgid "Local 7 digit" 
     3512msgstr "7 chiffres local" 
     3513 
     3514#: admin/modules/core/page.routing.php:484 
     3515msgid "Local 7/10 digit" 
     3516msgstr "7/10 chiffres local" 
     3517 
     3518#: admin/modules/core/page.routing.php:485 
     3519msgid "Toll-free" 
     3520msgstr "Numéro gratuit" 
     3521 
     3522#: admin/modules/core/page.routing.php:486 
     3523msgid "Long-distance" 
     3524msgstr "Longue distance" 
     3525 
     3526#: admin/modules/core/page.routing.php:487 
     3527msgid "International" 
     3528msgstr "International" 
     3529 
     3530#: admin/modules/core/page.routing.php:488 
     3531msgid "Information" 
     3532msgstr "Information" 
     3533 
     3534#: admin/modules/core/page.routing.php:489 
     3535msgid "Emergency" 
     3536msgstr "Urgence" 
     3537 
     3538#: admin/modules/core/page.routing.php:496 
     3539msgid "Trunk Sequence" 
     3540msgstr "Séquence Trunk" 
     3541 
     3542#: admin/modules/core/page.routing.php:496 
     3543msgid "" 
     3544"The Trunk Sequence controls the order of trunks that will be used when the " 
     3545"above Dial Patterns are matched. <br><br>For Dial Patterns that match long " 
     3546"distance numbers, for example, you'd want to pick the cheapest routes for " 
     3547"long distance (ie, VoIP trunks first) followed by more expensive routes " 
     3548"(POTS lines)." 
     3549msgstr "" 
     3550"La séquence de trunk contrÃŽle l'ordre des trunks qui seront utilisés pour " 
     3551"cette route selon le masque de numérotation ci-dessus défini.<br>Pour les " 
     3552"routes qui correspondent à des appels internationaux, vous pouvez par " 
     3553"exemple choisir d'abord les routes les moins chÚres (trunks VoIP) et ensuite " 
     3554"les lignes classiques." 
     3555 
     3556#: admin/modules/core/page.routing.php:618 
     3557msgid "Route name is invalid, please try again" 
     3558msgstr "Le 'Nom de la Route' est invalide, SVP réessayez." 
     3559 
     3560#: admin/modules/core/page.routing.php:619 
     3561msgid "Route password must be numeric or leave blank to disable" 
     3562msgstr "" 
     3563"Le mot de passe de la Route ne doit contenir que des chiffres ou laisser le " 
     3564"champ vide." 
     3565 
     3566#: admin/modules/core/page.routing.php:620 
     3567msgid "Dial pattern is invalid" 
     3568msgstr "Le 'Masque de Numerotation' est invalide." 
     3569 
     3570#: admin/modules/core/page.routing.php:621 
     3571msgid "At least one trunk must be picked" 
     3572msgstr "Au moins un Trunk doit être choisi." 
     3573 
     3574# ########################################################## 
     3575#: admin/modules/core/page.trunks.php:191 
     3576msgid "Add Trunk" 
     3577msgstr "Ajout Trunk" 
     3578 
     3579#: admin/modules/core/page.trunks.php:198 
     3580msgid "Trunk" 
     3581msgstr "Trunk" 
     3582 
     3583#: admin/modules/core/page.trunks.php:210 
     3584msgid "Add a Trunk" 
     3585msgstr "Ajout Trunk" 
     3586 
     3587#: admin/modules/core/page.trunks.php:214 
     3588msgid "Add Zap Trunk" 
     3589msgstr "Ajout Trunk ZAP" 
     3590 
     3591#: admin/modules/core/page.trunks.php:214 
     3592#: admin/modules/core/page.trunks.php:325 
     3593msgid "DAHDI compatibility mode" 
     3594msgstr "Mode compatibilité DAHDI" 
     3595 
     3596#: admin/modules/core/page.trunks.php:215 
     3597msgid "Add IAX2 Trunk" 
     3598msgstr "Ajout Trunk IAX2" 
     3599 
     3600#: admin/modules/core/page.trunks.php:216 
     3601msgid "Add SIP Trunk" 
     3602msgstr "Ajout Trunk SIP" 
     3603 
     3604#: admin/modules/core/page.trunks.php:217 
     3605msgid "Add ENUM Trunk" 
     3606msgstr "Ajout Trunk ENUM" 
     3607 
     3608#: admin/modules/core/page.trunks.php:218 
     3609msgid "Add DUNDi Trunk" 
     3610msgstr "Ajout Trunk DUNDi" 
     3611 
     3612#: admin/modules/core/page.trunks.php:219 
     3613msgid "Add Custom Trunk" 
     3614msgstr "Ajout Trunk Personnalisé" 
     3615 
     3616#: admin/modules/core/page.trunks.php:280 
     3617#, php-format 
     3618msgid "Edit %s Trunk" 
     3619msgstr "Edition Trunk %s" 
     3620 
     3621#: admin/modules/core/page.trunks.php:280 
     3622msgid "DAHDI compatibility Mode" 
     3623msgstr "Mode compatibilité DAHDI" 
     3624 
     3625#: admin/modules/core/page.trunks.php:281 
     3626#, php-format 
     3627msgid "Delete Trunk %s" 
     3628msgstr "Suppression Trunk %s" 
     3629 
     3630#: admin/modules/core/page.trunks.php:291 
     3631msgid "In use by" 
     3632msgstr "Utilis&eacute; par" 
     3633 
     3634#: admin/modules/core/page.trunks.php:291 
     3635msgid "route" 
     3636msgstr "route" 
     3637 
     3638#: admin/modules/core/page.trunks.php:291 
     3639msgid "routes" 
     3640msgstr "routes" 
     3641 
     3642#: admin/modules/core/page.trunks.php:293 
     3643msgid "Sequence" 
     3644msgstr "Séquence" 
     3645 
     3646#: admin/modules/core/page.trunks.php:297 
     3647msgid "WARNING:" 
     3648msgstr "ATTENTION:" 
     3649 
     3650#: admin/modules/core/page.trunks.php:297 
     3651msgid "This trunk is not used by any routes!" 
     3652msgstr "Ce trunk n'est utilisé par aucune route!" 
     3653 
     3654#: admin/modules/core/page.trunks.php:298 
     3655msgid "" 
     3656"This trunk will not be able to be used for outbound calls until a route is " 
     3657"setup that uses it. Click on <b>Outbound Routes</b> to setup routing." 
     3658msgstr "" 
     3659"Ce trunk ne peut pas être utilisé pour des appels sortants tant qu'une route " 
     3660"ne l'utilise pas. Voir dans le menu <strong>Routes Sortantes</strong>." 
     3661 
     3662#: admin/modules/core/page.trunks.php:325 
     3663#, php-format 
     3664msgid "Add %s Trunk" 
     3665msgstr "" 
     3666 
     3667#: admin/modules/core/page.trunks.php:329 
     3668msgid "" 
     3669"FreePBX offers limited support for DUNDi trunks and additional manual " 
     3670"configuration is required. The trunk name should correspond to the " 
     3671"[mappings] section of the remote dundi.conf systems. For example, you may " 
     3672"have a mapping on the remote system, and corresponding configurations in " 
     3673"dundi.conf locally, that looks as follows:<br /><br />[mappings]<br />priv " 
     3674"=> dundi-extens,0,IAX2,priv:${SECRET}@218.23.42.26/${NUMBER},noparital<br /" 
     3675"><br />In this example, you would create this trunk and name it priv. You " 
     3676"would then create the corresponding IAX2 trunk with proper settings to work " 
     3677"with DUNDi. This can be done by making an IAX2 trunk in FreePBX or by using " 
     3678"the iax_custom.conf file.<br />The dundi-extens context in this example must " 
     3679"be created in extensions_custom.conf. This can simply include contexts such " 
     3680"as ext-local, ext-intercom-users, ext-paging and so forth to provide access " 
     3681"to the corresponding extensions and features provided by these various " 
     3682"contexts and generated by FreePBX." 
     3683msgstr "" 
     3684"FreePBX offre un support limité aux trunks DUNDi et nécessite une " 
     3685"configuration manuelle. Le nom du trunk doit correspondre à la section " 
     3686"[mappings] du systÚme dundi.conf à distance. Par exemple, vous pouvez avoir " 
     3687"un mapping sur la machine distante et des configurations locales dundi.conf, " 
     3688"ce qui ressemble à:<br /><br />[mappings]<br />priv => dundi-extens,0,IAX2," 
     3689"priv:${SECRET}@218.23.42.26/${NUMBER},noparital<br /><br />Dans cet exemple, " 
     3690"vous allez créer ce trunk et l'appeler priv. Vous allez ensuite créer le " 
     3691"trunk correspondant IAX2 avec les paramÚtres idoines pour fonctionner avec " 
     3692"DUNDi. Ce qui peut être fait en créant un trunk IAX2 avec FreePBX ou en " 
     3693"utilisant le fichier iax_custom.conf.<br />Le contexte dundi-extens dans cet " 
     3694"exemple doit être créé dans extensions_custom.conf. Cela peut inclure " 
     3695"simplement des contextes tels que ext-local, ext-intercom-users, ext-" 
     3696"paging,... pour accéder aux extensions et fonctionnalités fournies par ces " 
     3697"contextes nombreux et générées par FreePBX." 
     3698 
     3699#: admin/modules/core/page.trunks.php:356 
     3700msgid "Outbound Caller ID" 
     3701msgstr "CID Sortant" 
     3702 
     3703#: admin/modules/core/page.trunks.php:356 
     3704msgid "" 
     3705"Caller ID for calls placed out on this trunk<br><br>Format: <b>\"caller name" 
     3706"\" &lt;#######&gt;</b>. You can also use the magic string 'hidden' to hide " 
     3707"the CallerID sent out over Digital lines ONLY (E1/T1/J1/BRI/SIP/IAX)" 
     3708msgstr "" 
     3709"CID pour les appels envoyé sur ce trunk<br><br>Format: <b>\"nom appelant" 
     3710"\"&lt;#######&gt;</b>. Vous pouvez aussi utiliser la chaîne 'hidden' pour " 
     3711"cacher le CID envoyé sur les lignes numériques seulement (E1/T1/J1/BRI/SIP/" 
     3712"IAX)" 
     3713 
     3714#: admin/modules/core/page.trunks.php:363 
     3715msgid "Never Override CallerID" 
     3716msgstr "Ne jamais modifier le CID" 
     3717 
     3718#: admin/modules/core/page.trunks.php:363 
     3719msgid "" 
     3720"Some VoIP providers will drop the call if you try to send an invalid " 
     3721"CallerID (one you don't 'own.' Use this to never send a CallerID that you " 
     3722"haven't explicitly specified in this trunk or in the outbound callerid field " 
     3723"of an extension/user. You might notice this problem if you discover that " 
     3724"Follow-Me or RingGroups with external numbers don't work properly. Checking " 
     3725"this box has the effect of disabling 'foreign' callerids from going out this " 
     3726"trunk. You must define an Outbound Caller ID on the this trunk when checking " 
     3727"this." 
     3728msgstr "" 
     3729"Quelques fournisseurs VoIP annuleront l'appel si vous essayez d'envoyer un " 
     3730"CID invalide. Utilisez cela pour ne jamais envoyer un CID que vous n'avez " 
     3731"pas explicitement déclaré dans ce trunk ou dans le champ de sortie du CID " 
     3732"d'une extension/utilisateur. Vous pouvez remarquer ce problÚme si le Follow " 
     3733"Me ou les groupements d'appels ne fonctionnent pas correctement. Cette " 
     3734"option empêche les appels 'étrangers' d'aller sur ce trunk. Vous devez " 
     3735"définir un CID sortant sur ce trunk si vous activez cette option." 
     3736 
     3737#: admin/modules/core/page.trunks.php:373 
     3738#: admin/modules/core/page.trunks.php:377 
     3739msgid "Maximum Channels" 
     3740msgstr "Nombre maximal de canaux" 
     3741 
     3742#: admin/modules/core/page.trunks.php:373 
     3743#, php-format 
     3744msgid "" 
     3745"Controls the maximum number of outbound channels (simultaneous calls) that " 
     3746"can be used on this trunk. To count inbound calls against this maximum, use " 
     3747"the auto-generated context: %s as the inbound trunk's context. (see " 
     3748"extensions_additional.conf) Leave blank to specify no maximum." 
     3749msgstr "" 
     3750"ContrÃŽle le nombre maximal de canaux (appels entrants et sortants " 
     3751"simultanés) sur ce trunk. Pour compter les appels entrants dans ce maximum, " 
     3752"utilisez le contexte auto-généré: %s comme contexte trunk entrant (voir le " 
     3753"fichier extensions_additional.conf). Laissez vide pour ne pas préciser de " 
     3754"maximum." 
     3755 
     3756#: admin/modules/core/page.trunks.php:377 
     3757msgid "" 
     3758"Controls the maximum number of outbound channels (simultaneous calls) that " 
     3759"can be used on this trunk. Inbound calls are not counted against the " 
     3760"maximum. Leave blank to specify no maximum." 
     3761msgstr "" 
     3762"ContrÃŽle le nombre maximal de canaux (appels entrants et sortants " 
     3763"simultanés) sur ce trunk. Les appels entrants ne sont pas comptés dans ce " 
     3764"maximum. Laissez vide pour ne pas préciser de maximum." 
     3765 
     3766#: admin/modules/core/page.trunks.php:387 
     3767msgid "Disable Trunk" 
     3768msgstr "Désactivation du Trunk" 
     3769 
     3770#: admin/modules/core/page.trunks.php:387 
     3771msgid "Check this to disable this trunk in all routes where it is used." 
     3772msgstr "" 
     3773"Cochez cette case pour désactiver ce trunk sur toutes les routes qui " 
     3774"l'utilisent." 
     3775 
     3776#: admin/modules/core/page.trunks.php:395 
     3777msgid "Monitor Trunk Failures" 
     3778msgstr "Monitoring problÚmes de trunk" 
     3779 
     3780#: admin/modules/core/page.trunks.php:395 
     3781msgid "" 
     3782"If checked, supply the name of a custom AGI Script that will be called to " 
     3783"report, log, email or otherwise take some action on trunk failures that are " 
     3784"not caused by either NOANSWER or CANCEL." 
     3785msgstr "" 
     3786"Si coché, fournit le nom de script AGI personnalisé qui sera appelé pour " 
     3787"reporter, logguer, mailer ou prendre toute action sur les problÚmes du trunk " 
     3788"qui ne proviennent pas des motifs : Pas de réponse (NOANSWER) ou Annulé " 
     3789"(CANCEL)" 
     3790 
     3791#: admin/modules/core/page.trunks.php:405 
     3792msgid "Outgoing Dial Rules" 
     3793msgstr "RÚgles de Composition de Sortie" 
     3794 
     3795#: admin/modules/core/page.trunks.php:410 
     3796msgid "Dial Rules" 
     3797msgstr "RÚgles de Composition" 
     3798 
     3799#: admin/modules/core/page.trunks.php:410 
     3800msgid "" 
     3801"A Dial Rule controls how calls will be dialed on this trunk. It can be used " 
     3802"to add or remove prefixes. Numbers that don't match any patterns defined " 
     3803"here will be dialed as-is. Note that a pattern without a + or | (to add or " 
     3804"remove a prefix) will not make any changes but will create a match. Only the " 
     3805"first matched rule will be executed and the remaining rules will not be " 
     3806"acted on." 
     3807msgstr "" 
     3808"Une rÚgle de composition contrÃŽle comment les appels sont numérotés sur ce " 
     3809"trunk. Utilisé pour ajouter ou supprimer des préfixes. Les numéros qui ne " 
     3810"correspondent à aucune rÚgle sont composés tels quels. Une rÚgle qui ne " 
     3811"contient ni <b>+</b> ni <b>|</b> (ajouter ou supprimer un préfixe) est " 
     3812"inutile. Seule la premiÚre rÚgle qui peut être appliquée sera exécutée et " 
     3813"les autres rÚgles seront ignorées." 
     3814 
     3815#: admin/modules/core/page.trunks.php:415 
     3816msgid "wildcard, matches one or more characters (not allowed before a | or +)" 
     3817msgstr "" 
     3818"joker, correspond à un ou plusieurs caractÚres (interdit avant un <b>|</b> " 
     3819"ou <b>+</b>)" 
     3820 
     3821#: admin/modules/core/page.trunks.php:416 
     3822msgid "" 
     3823"removes a dialing prefix from the number (for example, 613|NXXXXXX would " 
     3824"match when some dialed \"6135551234\" but would only pass \"5551234\" to the " 
     3825"trunk)" 
     3826msgstr "" 
     3827"supprime un préfixe du numéro (par exemple, la rÚgle 613|NXXXXXX correspond " 
     3828"à: si \"6135551234\" est composé, seulement \"5551234\" sera passé au trunk)" 
     3829 
     3830#: admin/modules/core/page.trunks.php:417 
     3831msgid "" 
     3832"adds a dialing prefix from the number (for example, 1613+NXXXXXX would match " 
     3833"when some dialed \"5551234\" and would pass \"16135551234\" to the trunk)" 
     3834msgstr "" 
     3835"ajoute un préfixe au numéro (par exemple, la rÚgle 1613+NXXXXXX correspond " 
     3836"à: si \"5551234\" est composé \"16135551234\" sera passé au trunk)" 
     3837 
     3838#: admin/modules/core/page.trunks.php:418 
     3839msgid "" 
     3840"You can also use both + and |, for example: 01+0|1ZXXXXXXXXX would match " 
     3841"\"016065551234\" and dial it as \"0116065551234\" Note that the order does " 
     3842"not matter, eg. 0|01+1ZXXXXXXXXX does the same thing." 
     3843msgstr "" 
     3844"Vous pouvez aussi utiliser ensemble + et |, par exemple: 01+0|1ZXXXXXXXXX " 
     3845"sera appliqué pour \"016065551234\" et sera appelé comme \"0116065551234\" " 
     3846"Notez que l'ordre n'a pas d'importance : 0|01+1ZXXXXXXXXX a le même résultat." 
     3847 
     3848#: admin/modules/core/page.trunks.php:434 
     3849msgid "Dial Rules Wizards" 
     3850msgstr "Assistant rÚgles d'appels" 
     3851 
     3852#: admin/modules/core/page.trunks.php:435 
     3853#: admin/modules/core/page.trunks.php:441 
     3854msgid "Always dial with prefix" 
     3855msgstr "Toujours appeler avec un préfixe" 
     3856 
     3857#: admin/modules/core/page.trunks.php:435 
     3858msgid "" 
     3859"is useful for VoIP trunks, where if a number is dialed as \"5551234\", it " 
     3860"can be converted to \"16135551234\"." 
     3861msgstr "" 
     3862"est utile pour les trunks VoIP dans le cas où si un numéro est composé comme " 
     3863"\"5551234\", il peut être converti en  \"16135551234\"." 
     3864 
     3865#: admin/modules/core/page.trunks.php:436 
     3866#: admin/modules/core/page.trunks.php:442 
     3867msgid "Remove prefix from local numbers" 
     3868msgstr "Supprime le préfixe des numéros locaux" 
     3869 
     3870#: admin/modules/core/page.trunks.php:436 
     3871msgid "" 
     3872"is useful for ZAP trunks, where if a local number is dialed as \"6135551234" 
     3873"\", it can be converted to \"555-1234\"." 
     3874msgstr "" 
     3875"est utile pour les trunks ZAP dans le cas où si un numéro est composé comme " 
     3876"\"16135551234\", il peut être converti comme \"555-1234\"." 
     3877 
     3878#: admin/modules/core/page.trunks.php:437 
     3879msgid "Lookup numbers for local trunk" 
     3880msgstr "Recherche nombre pour trunk local" 
     3881 
     3882#: admin/modules/core/page.trunks.php:437 
     3883msgid "" 
     3884"This looks up your local number on www.localcallingguide.com (NA-only), and " 
     3885"sets up so you can dial either 7 or 10 digits (regardless of what your PSTN " 
     3886"is) on a local trunk (where you have to dial 1+area code for long distance, " 
     3887"but only 5551234 (7-digit dialing) or 6135551234 (10-digit dialing) for " 
     3888"local calls" 
     3889msgstr "" 
     3890"Cela recherche votre numéro local sur www.localcallingguide.com (NA-" 
     3891"seulement), et ainsi vous pouvez appeler avec 7 ou 10 digits (quelque soit " 
     3892"votre réseau PSTN) sur un trunk local où vous avez à composer 1+code région " 
     3893"pour un appel longue distance, mais seulement 5551234 (7 chiffres) ou " 
     3894"6135551234 (10 chiffres) pour les appels locaux." 
     3895 
     3896#: admin/modules/core/page.trunks.php:443 
     3897msgid "Lookup numbers for local trunk (7-digit dialing)" 
     3898msgstr "Recherche nombre pour trunk local(7 chiffres)" 
     3899 
     3900#: admin/modules/core/page.trunks.php:444 
     3901msgid "Lookup numbers for local trunk (10-digit dialing)" 
     3902msgstr "Recherche nombre pour trunk local(10 chiffres)" 
     3903 
     3904#: admin/modules/core/page.trunks.php:464 
     3905msgid "Are you sure you want to disable this trunk in all routes it is used?" 
     3906msgstr "" 
     3907"Etes-vous sûre de vouloir désactiver ce trunk sur toutes les routes qui " 
     3908"l'utilisent" 
     3909 
     3910#: admin/modules/core/page.trunks.php:469 
     3911msgid "You have enabled this trunk in all routes it is used" 
     3912msgstr "Vous avez autorisé ce Trunk pour toutes les routes qu'il utilise" 
     3913 
     3914#: admin/modules/core/page.trunks.php:479 
     3915msgid "\")" 
     3916msgstr "\")" 
     3917 
     3918#: admin/modules/core/page.trunks.php:501 
     3919msgid "" 
     3920"What is the local dialing pattern?\\n\\n(ie. NXXNXXXXXX for US/CAN 10-digit " 
     3921"dialing, NXXXXXX for 7-digit)" 
     3922msgstr "" 
     3923"Quel est le plan de numérotation local?\\n\\n(ie. NXXNXXXXXX pour US/CAN " 
     3924"composition pour 10 chiffres, NXXXXXX composition pour 7 chiffres)" 
     3925 
     3926#: admin/modules/core/page.trunks.php:503 
     3927#: admin/modules/core/page.trunks.php:526 
     3928msgid "Invalid pattern. Only 0-9, #, *, Z, N, X and . are allowed." 
     3929msgstr "" 
     3930"Masque de numérotation invalide. Seulement <b>0-9</b>, <b>#</b>, <b>*</b>, " 
     3931"<b>Z</b>, <b>N</b>, <b>X</b> sont autorisés." 
     3932 
     3933#: admin/modules/core/page.trunks.php:506 
     3934msgid "" 
     3935"What prefix should be added to the dialing pattern?\\n\\n(ie. for US/CAN, 1" 
     3936"+areacode, ie, \\'1613\\')?" 
     3937msgstr "" 
     3938"Quel préfixe doit être ajouté au plan de numérotation?\\n\\n(ie. pour US/" 
     3939"CAN, 1 +code de zone => <strong>1613</strong>." 
     3940 
     3941#: admin/modules/core/page.trunks.php:508 
     3942msgid "Invalid prefix. Only dialable characters (0-9, #, and *) are allowed." 
     3943msgstr "" 
     3944"Pr&eacute;fixe invalide. Seulement les caract&egrave;res num&eacute;rotables " 
     3945"(0-9, #, et *) sont autoris&eacute;s." 
     3946 
     3947#: admin/modules/core/page.trunks.php:519 
     3948msgid "" 
     3949"What prefix should be removed from the number?\\n\\n(ie. for US/CAN, 1" 
     3950"+areacode, ie, \\'1613\\')" 
     3951msgstr "" 
     3952"Quel préfixe doit être supprimé du numéro?\\n\\n(ie. pour US/CAN, 1 +code de " 
     3953"zone => <strong>1613</strong>." 
     3954 
     3955#: admin/modules/core/page.trunks.php:521 
     3956msgid "Invalid prefix. Only 0-9, #, *, Z, N, and X are allowed." 
     3957msgstr "Préfixe invalide. Seulement 0-9, #, *, Z, N, et  X sont autorisés" 
     3958 
     3959#: admin/modules/core/page.trunks.php:524 
     3960msgid "What is the dialing pattern for local numbers after" 
     3961msgstr "Quel est le plan de numérotation pour les numéros locaux aprÚs" 
     3962 
     3963#: admin/modules/core/page.trunks.php:524 
     3964msgid "(ie. NXXNXXXXXX for US/CAN 10-digit dialing, NXXXXXX for 7-digit)" 
     3965msgstr "" 
     3966"(ie. NXXNXXXXXX pour US/CAN composition pour 10 chiffres, NXXXXXX " 
     3967"composition pour 7 chiffres)" 
     3968 
     3969#: admin/modules/core/page.trunks.php:649 
     3970msgid "Outbound Dial Prefix" 
     3971msgstr "Préfixe de Numérotation Externe" 
     3972 
     3973#: admin/modules/core/page.trunks.php:649 
     3974msgid "" 
     3975"The outbound dialing prefix is used to prefix a dialing string to all " 
     3976"outbound calls placed on this trunk. For example, if this trunk is behind " 
     3977"another PBX or is a Centrex line, then you would put 9 here to access an " 
     3978"outbound line. Another common use is to prefix calls with 'w' on a POTS line " 
     3979"that need time to obtain dial tone to avoid eating digits.<br><br>Most users " 
     3980"should leave this option blank." 
     3981msgstr "" 
     3982"Le Préfixe de Numérotation Externe permet d'ajouter un préfixe à tous les " 
     3983"appels sortant de ce trunk. Par exemple, si ce trunk est derriÚre un autre " 
     3984"PBX ou qu'il soit une ligne Centrex, alors vous devez composer le 9 pour " 
     3985"sortir. Une autre utilisation habituelle est d'utiliser le préfixe 'w' pour " 
     3986"les lignes qui ont besoin d'un temps d'attente pour obtenir la ligne<br>La " 
     3987"plupart des utilisateurs laisseront ce champ vide." 
     3988 
     3989#: admin/modules/core/page.trunks.php:657 
     3990msgid "Outgoing Settings" 
     3991msgstr "ParamÚtres de Sortie" 
     3992 
     3993#: admin/modules/core/page.trunks.php:668 
     3994msgid "Zap Identifier (trunk name)" 
     3995msgstr "Identifiant Zap (nom du trunk)" 
     3996 
     3997#: admin/modules/core/page.trunks.php:668 
     3998msgid "" 
     3999"ZAP channels are referenced either by a group number or channel number " 
     4000"(which is defined in zapata.conf).  <br><br>The default setting is <b>g0</b> " 
     4001"(group zero)." 
     4002msgstr "" 
     4003"Les canaux ZAP sont référencés soit par un numéro de groupe ou un numéo de " 
     4004"canal (défini dans zapata.conf).<br>Le paramÚtres par défaut est <b>g0</b> " 
     4005"(groupe zéro)" 
     4006 
     4007#: admin/modules/core/page.trunks.php:682 
     4008msgid "Custom Dial String" 
     4009msgstr "Chaîne de Numérotation Personnalisée" 
     4010 
     4011#: admin/modules/core/page.trunks.php:682 
     4012msgid "Define the custom Dial String.  Include the token" 
     4013msgstr "Définit la chaîne de numérotation Personnalisée. Incluez le jeton" 
     4014 
     4015#: admin/modules/core/page.trunks.php:682 
     4016msgid "wherever the number to dial should go.<br><br><b>examples:</b><br>" 
     4017msgstr "" 
     4018"quelque soit l'endroit où le numéro à composer doit aller." 
     4019"<br><br><b>exemples:</b><br><br>CAPI/ XXXXXXXX:b" 
     4020 
     4021#: admin/modules/core/page.trunks.php:694 
     4022msgid "DUNDi Mapping" 
     4023msgstr "DUNDi Mapping" 
     4024 
     4025#: admin/modules/core/page.trunks.php:694 
     4026msgid "" 
     4027"This is the name of the DUNDi mapping as defined in the [mappings] section " 
     4028"of remote dundi.conf peers. This corresponds to the 'include' section of the " 
     4029"peer details in the local dundi.conf file. This requires manual " 
     4030"configuration of DUNDi to use this trunk." 
     4031msgstr "" 
     4032"C'est le nom du mapping DUNDi défini dans la section [mappings] des peers à " 
     4033"distance dundi.conf.Cela correspond à la section 'include' des détails peer " 
     4034"dans le fichier local dundi.conf. Cela nécessite une configuration manuelle " 
     4035"de DUNDi pour utiliser ce trunk." 
     4036 
     4037#: admin/modules/core/page.trunks.php:706 
     4038msgid "Trunk Name" 
     4039msgstr "Nom du Trunk" 
     4040 
     4041#: admin/modules/core/page.trunks.php:706 
     4042msgid "Give this trunk a unique name.  Example: myiaxtel" 
     4043msgstr "Donnez un nom unique au trunk. Exemple: moniaxtel" 
     4044 
     4045#: admin/modules/core/page.trunks.php:713 
     4046msgid "PEER Details" 
     4047msgstr "Détails du PEER" 
     4048 
     4049#: admin/modules/core/page.trunks.php:713 
     4050msgid "" 
     4051"Modify the default PEER connection parameters for your VoIP provider." 
     4052"<br><br>You may need to add to the default lines listed below, depending on " 
     4053"your provider.<br /><br />WARNING: Order is important as it will be " 
     4054"retained. For example, if you use the \"allow/deny\" directives make sure " 
     4055"deny comes first." 
     4056msgstr "" 
     4057"Modifie les paramÚtres par défaut de connexion PEER pour votre fournisseur " 
     4058"VoIP.<br>Vous pouvez devoir ajouter des lignes à celles listées ci-dessous " 
     4059"par défaut (dépend de votre fournisseur VoIP).<br><br>ATTENTION: l'ordre est " 
     4060"important. Par exemple, si vous utilisez les directives \"allow/deny\" " 
     4061"assurez vous que deny vient en premier!" 
     4062 
     4063#: admin/modules/core/page.trunks.php:723 
     4064msgid "Incoming Settings" 
     4065msgstr "ParamÚ;tres d'Entrée" 
     4066 
     4067#: admin/modules/core/page.trunks.php:728 
     4068msgid "USER Context" 
     4069msgstr "Contexte Utilisateur" 
     4070 
     4071#: admin/modules/core/page.trunks.php:728 
     4072msgid "" 
     4073"This is most often the account name or number your provider expects." 
     4074"<br><br>This USER Context will be used to define the below user details." 
     4075msgstr "" 
     4076"C'est le plus souvent, le nom ou numéro du compte que votre fournisseur " 
     4077"attend.<br>Ce Contexte USER sera utilisé pour définir les détails du USER ci-" 
     4078"dessous." 
     4079 
     4080#: admin/modules/core/page.trunks.php:735 
     4081msgid "USER Details" 
     4082msgstr "Détails de l'utilisateur" 
     4083 
     4084#: admin/modules/core/page.trunks.php:735 
     4085msgid "Modify the default USER connection parameters for your VoIP provider." 
     4086msgstr "" 
     4087"Modifie les paramÚtres de connection Utilisateur par défaut pour votre " 
     4088"fournisseur VoIP." 
     4089 
     4090#: admin/modules/core/page.trunks.php:735 
     4091msgid "" 
     4092"You may need to add to the default lines listed below, depending on your " 
     4093"provider..<br /><br />WARNING: Order is important as it will be retained. " 
     4094"For example, if you use the \"allow/deny\" directives make sure deny \n" 
     4095"\t\t\t\tcomes first." 
     4096msgstr "" 
     4097"Il peut être nécessaire d'ajouter des lignes aux lignes par défaut ci-aprÚs, " 
     4098"dépendant de votre provider.<br /><br />ATTENTION : l'ordre est important. " 
     4099"Par exemple, si vous utilisez les directives \"allow/deny\" assurez vous que " 
     4100"deny vient en premier!" 
     4101 
     4102#: admin/modules/core/page.trunks.php:746 
     4103msgid "Registration" 
     4104msgstr "Enregistrement" 
     4105 
     4106#: admin/modules/core/page.trunks.php:751 
     4107msgid "Register String" 
     4108msgstr "Chaîne d'enregistrement" 
     4109 
     4110#: admin/modules/core/page.trunks.php:751 
     4111msgid "" 
     4112"Most VoIP providers require your system to REGISTER with theirs. Enter the " 
     4113"registration line here.<br><br>example:<br><br>username:password@switch." 
     4114"voipprovider.com.<br><br>Many providers will require you to provide a DID " 
     4115"number, ex: username:password@switch.voipprovider.com/didnumber in order for " 
     4116"any DID matching to work." 
     4117msgstr "" 
     4118"La plupart des fournisseurs VoIP demande que votre systÚme s'enregistre " 
     4119"auprÚs du leur. Entrez la ligne d'enregistrement ici.<br>exemple: " 
     4120"<br><br>username:password@switch.fournisseurvoip.com<br><br>Beaucoup de " 
     4121"providers demanderont de fournir un numéro DID, ex:username:password@switch." 
     4122"voipprovider.com/didnumber pour que les DID correspondant fonctionnent." 
     4123 
     4124#: admin/modules/core/page.trunks.php:779 
     4125msgid "Invalid Outbound Caller ID" 
     4126msgstr "'CID sortant' invalide" 
     4127 
     4128#: admin/modules/core/page.trunks.php:780 
     4129msgid "Invalid Maximum Channels" 
     4130msgstr "'Nombre maximal de Canaux' invalide" 
     4131 
     4132#: admin/modules/core/page.trunks.php:781 
     4133msgid "Invalid Dial Rules" 
     4134msgstr "'RÚgles de Composition' invalide" 
     4135 
     4136#: admin/modules/core/page.trunks.php:782 
     4137msgid "Invalid Outbound Dial Prefix" 
     4138msgstr "'Préfixe de Numérotation Externe' invalide" 
     4139 
     4140#: admin/modules/core/page.trunks.php:783 
     4141msgid "Invalid Trunk Name entered" 
     4142msgstr "'Nom de Trunk' invalide" 
     4143 
     4144#: admin/modules/core/page.trunks.php:784 
     4145msgid "Invalid Custom Dial String entered" 
     4146msgstr "Chaîne de Numérotation Personnalisée invalide" 
     4147 
     4148#: admin/modules/core/page.trunks.php:785 
     4149msgid "Trunk Name and User Context cannot be set to the same value" 
     4150msgstr "" 
     4151"Le 'Nom du Trunk' et le 'Contexte Utilisateur' ne peuvent pas avoir la même " 
     4152"valeur." 
     4153 
     4154#: admin/modules/core/page.trunks.php:786 
     4155msgid "User Context was left blank and User Details will not be saved!" 
     4156msgstr "" 
     4157"Le contexte utilisateur est vide et les détails utilisateurs ne seront pas " 
     4158"sauvegardés!" 
     4159 
     4160#: admin/modules/core/page.trunks.php:787 
     4161msgid "" 
     4162"You must define an Outbound Caller ID when Choosing Never Override CallerID" 
     4163msgstr "" 
     4164"Vous devez définir un identifiant appel sortant quand vous choisissez " 
     4165"l'option Ne jamais modifier le CID." 
     4166 
     4167# # le message suivant n'est pas traduit, il faut revoir le code dans page.users 
     4168#: admin/modules/core/page.users.php:34 
     4169msgid "" 
     4170"You have not entered a User Password.  While this is acceptable, this user " 
     4171"will not be able to login to an AdHoc device.\\n\\nAre you sure you wish to " 
     4172"leave the User Password empty?" 
     4173msgstr "" 
     4174"Vous n'avez pas saisi un mot de passe Utilisateur. Bien que cela soit " 
     4175"possible, cet utilisateur ne pourra se loguer à un terminal.\n" 
     4176"\n" 
     4177"Etes-vous sûre de vouloir laisser le mot de passe à blanc?" 
     4178 
     4179#: admin/modules/core/page.zapchandids.php:53 
     4180#: admin/modules/core/page.zapchandids.php:87 
    18474181msgid "Add Channel" 
    18484182msgstr "Ajout Canal" 
    18494183 
    1850 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:74 
     4184#: admin/modules/core/page.zapchandids.php:74 
    18514185msgid "Edit Zap Channel: " 
    18524186msgstr "Edition Canal ZAP" 
    18534187 
    1854 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:76 
     4188#: admin/modules/core/page.zapchandids.php:76 
    18554189msgid "Add Zap Channel" 
    18564190msgstr "Ajout d'un canal ZAP" 
    18574191 
    1858 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:79 
    1859 msgid "Zap Channel DIDs allow you to assign a DID to specific Zap Channels. You can supply the same DID to multiple channels. This would be a common scenario if you have multiple POTS lines that are on a hunt group from your provider. You MUST assign the channel's context to from-zaptel for these settings to have effect. It will be a line that looks like:<br /><br />context = from-zaptel<br /><br />in your zapata.conf configuration effecting the specified channel(s). Once you have assigned DIDs you can use standard Inbound Routes with the specified DIDs to route your calls." 
    1860 msgstr "Il est possible d'assigner un SDA à un canal Zap spécifique. Il est également possible d'assigner le même SDA à plusieurs canaux. C'est le cas par exemple si vous avez plusieurs lignes qui forment un hunt groupe de votre provider. Vous DEVEZ assigner le contexte du canal à from-zaptel pour que ces réglages sont effectifs. Ce sera une ligne comme :<br /><br />context = from-zaptel<br /><br />dans le fichier de configuration zapata.conf pour ces canaux. Une fois les SDA assignés, vous pouvez utiliser les routes entrantes standard avec les SDA spécifiés pour router vos appels." 
    1861  
    1862 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:87 
     4192#: admin/modules/core/page.zapchandids.php:79 
     4193msgid "" 
     4194"Zap Channel DIDs allow you to assign a DID to specific Zap Channels. You can " 
     4195"supply the same DID to multiple channels. This would be a common scenario if " 
     4196"you have multiple POTS lines that are on a hunt group from your provider. " 
     4197"You MUST assign the channel's context to from-zaptel for these settings to " 
     4198"have effect. It will be a line that looks like:<br /><br />context = from-" 
     4199"zaptel<br /><br />in your zapata.conf configuration effecting the specified " 
     4200"channel(s). Once you have assigned DIDs you can use standard Inbound Routes " 
     4201"with the specified DIDs to route your calls." 
     4202msgstr "" 
     4203"Il est possible d'assigner un SDA à un canal Zap spécifique. Il est " 
     4204"également possible d'assigner le même SDA à plusieurs canaux. C'est le cas " 
     4205"par exemple si vous avez plusieurs lignes qui forment un hunt groupe de " 
     4206"votre provider. Vous DEVEZ assigner le contexte du canal à from-zaptel pour " 
     4207"que ces réglages sont effectifs. Ce sera une ligne comme :<br /><br /" 
     4208">context = from-zaptel<br /><br />dans le fichier de configuration zapata." 
     4209"conf pour ces canaux. Une fois les SDA assignés, vous pouvez utiliser les " 
     4210"routes entrantes standard avec les SDA spécifiés pour router vos appels." 
     4211 
     4212#: admin/modules/core/page.zapchandids.php:87 
    18634213msgid "Edit Channel" 
    18644214msgstr "Edition Canal" 
    18654215 
    1866 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:92 
     4216#: admin/modules/core/page.zapchandids.php:92 
    18674217msgid "Channel" 
    18684218msgstr "Canal" 
    18694219 
    1870 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:92 
     4220#: admin/modules/core/page.zapchandids.php:92 
    18714221msgid "The Zap Channel number to map to a DID" 
    18724222msgstr "Le numéro de canal Zap pour associer un SDA" 
    18734223 
    1874 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:99 
    1875 #: amp_conf/htdocs/admin/modules/core/page.did.php:176 
    1876 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4729 
    1877 #: amp_conf/htdocs/admin/page.modules.php:696 
    1878 msgid "Description" 
    1879 msgstr "Description" 
    1880  
    1881 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:99 
     4224#: admin/modules/core/page.zapchandids.php:99 
    18824225msgid "A useful description describing this channel" 
    18834226msgstr "La description du canal" 
    18844227 
    18854228# #### Ancien Message DID, plus utilise par DID mais peut-etre par d'autres! 
    1886 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:103 
     4229#: admin/modules/core/page.zapchandids.php:103 
    18874230msgid "DID" 
    18884231msgstr "DID" 
    18894232 
    1890 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:103 
    1891 msgid "The DID that this channel represents. The incoming call on this channel will be treated as if it came in with this DID and can be managed with Inbound Routing on DIDs" 
    1892 msgstr "Le SDA que représente ce canal. L'appel entrant sur ce canal sera traité comme si il venait avec ce SDA et peut être traité avec les Routes Entrantes sur SDA." 
    1893  
    1894 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:109 
     4233#: admin/modules/core/page.zapchandids.php:103 
     4234msgid "" 
     4235"The DID that this channel represents. The incoming call on this channel will " 
     4236"be treated as if it came in with this DID and can be managed with Inbound " 
     4237"Routing on DIDs" 
     4238msgstr "" 
     4239"Le SDA que représente ce canal. L'appel entrant sur ce canal sera traité " 
     4240"comme si il venait avec ce SDA et peut être traité avec les Routes Entrantes " 
     4241"sur SDA." 
     4242 
     4243#: admin/modules/core/page.zapchandids.php:109 
    18954244msgid "Delete" 
    18964245msgstr "Suppression" 
    18974246 
    1898 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:123 
    1899 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:3026 
    1900 msgid "Invalid Channel Number, must be numeric and not blank" 
    1901 msgstr "Numéro de canal invalide, ne doit contenir que des chiffres et pas de blanc" 
    1902  
    1903 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:124 
    1904 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:3030 
    1905 msgid "Invalid DID, must be a non-blank DID" 
    1906 msgstr "SDA invalide, ne peut être vide" 
    1907  
    1908 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:125 
    1909 msgid "" 
    1910 "DID information is normally just an incoming telephone number.\\n" 
    1911 "\\n" 
    1912 "You have entered a non standard DID pattern.\\n" 
    1913 "\\n" 
    1914 "Are you sure this is correct?" 
    1915 msgstr "" 
    1916 "L'information SDA est normalement juste un numéro d'appel entrant.\\n" 
    1917 "\\n" 
    1918 "Vous avez entré un numéro de SDA non standard.\\n" 
    1919 "\\n" 
    1920 "Etes vous sûr que c'est correct?" 
    1921  
    1922 #: amp_conf/htdocs/admin/modules/core/page.zapchandids.php:126 
    1923 msgid "You appear to be using a converted DID in the form of zapchanNN that was automatically generated during an upgrade. You should consider assigning the DID that is normally associated with this channel to take full advantage of the inbound routing abilities. Changing the DID here will require you to make changes in the Inbound Routes tab. Do you want to continue?" 
    1924 msgstr "Il apparaît que vous utilisé un SDA converti dans la forme zapchanNN qui a automatiquement été généré pendant une mise à jour. Vous devez assigner le SDA normalement associé à ce canal pour pouvoir utilsier toutes les possibilités associées au routage des appels entrants. Changer le SDA ici nécessite que vous fassiez aussi le changement dans les routes entrantes. Voulez vous continuer?" 
    1925  
    1926 #: amp_conf/htdocs/admin/modules/core/install.php:5 
    1927 msgid "User Logon" 
    1928 msgstr "Connexion utilisateur" 
    1929  
    1930 #: amp_conf/htdocs/admin/modules/core/install.php:6 
    1931 msgid "User Logoff" 
    1932 msgstr "Déconnexion utilisateur" 
    1933  
    1934 #: amp_conf/htdocs/admin/modules/core/install.php:7 
    1935 msgid "ZapBarge" 
    1936 msgstr "Entrée en tiers" 
    1937  
    1938 #: amp_conf/htdocs/admin/modules/core/install.php:8 
    1939 msgid "ChanSpy" 
    1940 msgstr "ChanSpy" 
    1941  
    1942 #: amp_conf/htdocs/admin/modules/core/install.php:9 
    1943 msgid "Simulate Incoming Call" 
    1944 msgstr "Simule un appels entrant" 
    1945  
    1946 #: amp_conf/htdocs/admin/modules/core/install.php:10 
    1947 msgid "Dial System FAX" 
    1948 msgstr "Appel systÚme Fax" 
    1949  
    1950 #: amp_conf/htdocs/admin/modules/core/install.php:11 
    1951 msgid "Directed Call Pickup" 
    1952 msgstr "Interception d'appel" 
    1953  
    1954 #: amp_conf/htdocs/admin/modules/core/install.php:12 
    1955 msgid "Asterisk General Call Pickup" 
    1956 msgstr "Interception général d'appel Asterisk" 
    1957  
    1958 #: amp_conf/htdocs/admin/modules/core/install.php:13 
    1959 msgid "In-Call Asterisk Blind Transfer" 
    1960 msgstr "Transfert en aveugle Asterisk" 
    1961  
    1962 #: amp_conf/htdocs/admin/modules/core/install.php:14 
    1963 msgid "In-Call Asterisk Attended Transfer" 
    1964 msgstr "Mise en liaison Asterisk" 
    1965  
    1966 #: amp_conf/htdocs/admin/modules/core/install.php:15 
    1967 msgid "In-Call Asterisk Toggle Call Recording" 
    1968 msgstr "Bascule enregistrement d'appel Asterisk" 
    1969  
    1970 #: amp_conf/htdocs/admin/modules/core/install.php:16 
    1971 msgid "In-Call Asterisk Disconnect Code" 
    1972 msgstr "Code de déconnexion Asterisk" 
    1973  
    1974 #: amp_conf/htdocs/admin/modules/core/install.php:43 
    1975 #, php-format 
    1976 msgid "ERROR: trying to check if %s already in use" 
    1977 msgstr "ERREUR: impossible de vérifier si %s est en cours d'utilisation" 
    1978  
    1979 #: amp_conf/htdocs/admin/modules/core/install.php:130 
    1980 msgid "Checking if directdids need migrating.." 
    1981 msgstr "Vérification de la nécessité de migration des SDA" 
    1982  
    1983 #: amp_conf/htdocs/admin/modules/core/install.php:134 
    1984 msgid "starting migration" 
    1985 msgstr "Migration en cours" 
    1986  
    1987 #: amp_conf/htdocs/admin/modules/core/install.php:151 
    1988 msgid "User: " 
    1989 msgstr "Utilisateur:" 
    1990  
    1991 #: amp_conf/htdocs/admin/modules/core/install.php:154 
    1992 #, php-format 
    1993 msgid "ERROR: failed to insert %s for user %s" 
    1994 msgstr "ERREUR: impossible d'insérer %s pour l'utilisateur %s" 
    1995  
    1996 #: amp_conf/htdocs/admin/modules/core/install.php:159 
    1997 #, php-format 
    1998 msgid "There were %s failures migrating directdids, users table not being changed" 
    1999 msgstr "Il y a %s erreurs de migration des SDA, la table utilisateurs n'a pas été modifiée" 
    2000  
    2001 #: amp_conf/htdocs/admin/modules/core/install.php:163 
    2002 #, php-format 
    2003 msgid "Removing field %s from users table.." 
    2004 msgstr "Supression du champ %s de la table utilisateurs.." 
    2005  
    2006 #: amp_conf/htdocs/admin/modules/core/install.php:167 
    2007 msgid "not present" 
    2008 msgstr "non présent" 
    2009  
    2010 #: amp_conf/htdocs/admin/modules/core/install.php:169 
    2011 msgid "removed" 
    2012 msgstr "retiré" 
    2013  
    2014 #: amp_conf/htdocs/admin/modules/core/install.php:174 
    2015 msgid "ERROR: could not access user table to migrate directdids to incoming table, aborting" 
    2016 msgstr "ERREUR: ne peut accéder à l atable utilisateurspour migrer les SDA à la table incoming, arrêt" 
    2017  
    2018 #: amp_conf/htdocs/admin/modules/core/install.php:177 
    2019 msgid "already done" 
    2020 msgstr "déjà fait" 
    2021  
    2022 #: amp_conf/htdocs/admin/modules/core/install.php:182 
    2023 msgid "updating zap callgroup, pickupgroup.." 
    2024 msgstr "mis à jour des groupements d'appels et d'interception Zap.." 
    2025  
    2026 #: amp_conf/htdocs/admin/modules/core/install.php:207 
    2027 #, php-format 
    2028 msgid "updated %s callgroups, %s pickupgroups" 
    2029 msgstr "mis à jour groupement d'appels %s, groupement d'interception %s" 
    2030  
    2031 #: amp_conf/htdocs/admin/modules/core/install.php:209 
    2032 msgid "not needed" 
    2033 msgstr "pas nécessaire" 
    2034  
    2035 #: amp_conf/htdocs/admin/modules/core/install.php:214 
    2036 msgid "checking for delay_answer field .." 
    2037 msgstr "vérification du champ delay_answer" 
    2038  
    2039 #: amp_conf/htdocs/admin/modules/core/install.php:221 
    2040 #: amp_conf/htdocs/admin/modules/core/install.php:237 
    2041 msgid "fatal error" 
    2042 msgstr "erreur fatale" 
    2043  
    2044 #: amp_conf/htdocs/admin/modules/core/install.php:224 
    2045 #: amp_conf/htdocs/admin/modules/core/install.php:240 
    2046 msgid "added" 
    2047 msgstr "ajouté" 
    2048  
    2049 #: amp_conf/htdocs/admin/modules/core/install.php:227 
    2050 #: amp_conf/htdocs/admin/modules/core/install.php:243 
    2051 msgid "already exists" 
    2052 msgstr "Existe déjà" 
    2053  
    2054 #: amp_conf/htdocs/admin/modules/core/install.php:230 
    2055 msgid "checking for pricid field .." 
    2056 msgstr "vérification du champ pricid" 
    2057  
    2058 #: amp_conf/htdocs/admin/modules/core/install.php:254 
    2059 msgid "Created" 
    2060 msgstr "Créé" 
    2061  
    2062 #: amp_conf/htdocs/admin/modules/core/install.php:256 
    2063 msgid "Already exists!" 
    2064 msgstr "Existe déjà!" 
    2065  
    2066 # ######## DEBUT ANCIENS MESSAGES de REPORTS 
    2067 # ######## FIN ANCIENS MESSAGES de REPORTS 
    2068 #: amp_conf/htdocs/admin/modules/core/page.routing.php:118 
    2069 msgid "Error renaming route: duplicate name" 
    2070 msgstr "Erreur: ce nom de route existe déjà" 
    2071  
    2072 #: amp_conf/htdocs/admin/modules/core/page.routing.php:200 
    2073 #: amp_conf/htdocs/admin/modules/core/page.routing.php:265 
    2074 msgid "Add Route" 
    2075 msgstr "Ajout Route" 
    2076  
    2077 #: amp_conf/htdocs/admin/modules/core/page.routing.php:215 
    2078 #: amp_conf/htdocs/admin/modules/core/page.routing.php:528 
    2079 msgid "Move Up" 
    2080 msgstr "Vers le Haut" 
    2081  
    2082 #: amp_conf/htdocs/admin/modules/core/page.routing.php:222 
    2083 #: amp_conf/htdocs/admin/modules/core/page.routing.php:536 
    2084 msgid "Move Down" 
    2085 msgstr "Vers le Bas" 
    2086  
    2087 #: amp_conf/htdocs/admin/modules/core/page.routing.php:263 
    2088 msgid "Edit Route" 
    2089 msgstr "Edition Route" 
    2090  
    2091 #: amp_conf/htdocs/admin/modules/core/page.routing.php:275 
    2092 #: amp_conf/htdocs/admin/modules/core/page.did.php:141 
    2093 #, php-format 
    2094 msgid "Delete Route %s" 
    2095 msgstr "Suppression Route %s" 
    2096  
    2097 #: amp_conf/htdocs/admin/modules/core/page.routing.php:290 
    2098 msgid "Route Name" 
    2099 msgstr "Nom de la Route" 
    2100  
    2101 #: amp_conf/htdocs/admin/modules/core/page.routing.php:290 
    2102 msgid "Name of this route. Should be used to describe what type of calls this route matches (for example, 'local' or 'longdistance')." 
    2103 msgstr "Nom de cette route. Par commodité, devrait décrire le type d'appels routés sur cette route (par exemple, <strong>local</strong> ou <strong>longuedistance</strong>)" 
    2104  
    2105 #: amp_conf/htdocs/admin/modules/core/page.routing.php:296 
    2106 msgid "Rename" 
    2107 msgstr "Renommer" 
    2108  
    2109 #: amp_conf/htdocs/admin/modules/core/page.routing.php:301 
    2110 msgid "Rename route" 
    2111 msgstr "Renommer la route" 
    2112  
    2113 #: amp_conf/htdocs/admin/modules/core/page.routing.php:301 
    2114 msgid "to:" 
    2115 msgstr "vers:" 
    2116  
    2117 #: amp_conf/htdocs/admin/modules/core/page.routing.php:303 
    2118 msgid "Route name is invalid...please try again" 
    2119 msgstr "Le 'Nom de la Route' est invalide... SVP réessayez." 
    2120  
    2121 #: amp_conf/htdocs/admin/modules/core/page.routing.php:318 
    2122 msgid "Route Password" 
    2123 msgstr "Mot de Passe de la Route" 
    2124  
    2125 #: amp_conf/htdocs/admin/modules/core/page.routing.php:318 
    2126 msgid "Optional: A route can prompt users for a password before allowing calls to progress.  This is useful for restricting calls to international destinations or 1-900 numbers.<br><br>A numerical password, or the path to an Authenticate password file can be used.<br><br>Leave this field blank to not prompt for password.</span>" 
    2127 msgstr "Optionnel: Une route peut demander aux utilisateurs un mot de passe avant de permettre la progression des appels. Utile pour restreindre les appels internationaux ou les appels surtaxés.<br><br>Un mot de passe numérique ou un chemin vers un fichier d'authentification de mot de passe peuvent être utilisés.<br><br>Laissez ce champ vide si aucun mot de passe n'est requis.</span>" 
    2128  
    2129 #: amp_conf/htdocs/admin/modules/core/page.routing.php:327 
    2130 msgid "Emergency Dialing" 
    2131 msgstr "Numérotation d'Urgence" 
    2132  
    2133 #: amp_conf/htdocs/admin/modules/core/page.routing.php:327 
    2134 msgid "Optional: Selecting this option will enforce the use of a device's Emergency CID setting (if set).  Select this option if this set of routes is used for emergency dialing (ie: 911).</span>" 
    2135 msgstr "Optionnel: Choisir cette option va forcer l'utilisation du param&egrave;trage (si d&eacute;fini) du CID d'Urgence d'un p&eacute;riph&eacute;rique. Choisir cette option si ces routes sont utilis&eacute;s pour la num&eacute;rotation des appels d'urgence (eg: 112).</span>" 
    2136  
    2137 #: amp_conf/htdocs/admin/modules/core/page.routing.php:331 
    2138 msgid "Intra Company Route" 
    2139 msgstr "Route intra-entreprise" 
    2140  
    2141 #: amp_conf/htdocs/admin/modules/core/page.routing.php:331 
    2142 msgid "Optional: Selecting this option will treat this route as a intra-company connection, preserving the internal Caller ID information and not use the outbound CID of either the extension or trunk.</span>" 
    2143 msgstr "Option: sélectionner cette option gÚrera la route come une route intra-entreprise, conservant le CID et n'utilisera pas le CID ou l'extension ou le trunk sortant ." 
    2144  
    2145 #: amp_conf/htdocs/admin/modules/core/page.routing.php:336 
    2146 msgid "Music On Hold?" 
    2147 msgstr "Musique d'attente" 
    2148  
    2149 #: amp_conf/htdocs/admin/modules/core/page.routing.php:336 
    2150 msgid "You can choose which music category to use. For example, choose a type appropriate for a destination country which may have announcements in the appropriate language." 
    2151 msgstr "Vous pouvez choisir votre type de musique à utiliser. Par exemple, choisir un type pour un pays de destination qui comprendra une annonce dans la langue du pays." 
    2152  
    2153 #: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
    2154 msgid "Dial Patterns" 
    2155 msgstr "Masque de numérotation:" 
    2156  
    2157 #: amp_conf/htdocs/admin/modules/core/page.routing.php:354 
    2158 msgid "A Dial Pattern is a unique set of digits that will select this trunk. Enter one dial pattern per line." 
    2159 msgstr "Un Masque de numérotation est une suite de chiffres qui vont sélectionner cette route.<br> Entrez un masque de numérotation par ligne." 
    2160  
    2161 #: amp_conf/htdocs/admin/modules/core/page.routing.php:359 
    2162 msgid "wildcard, matches one or more characters" 
    2163 msgstr "joker, correspond à un ou plusieurs caractÚres" 
    2164  
    2165 #: amp_conf/htdocs/admin/modules/core/page.routing.php:360 
    2166 msgid "separates a dialing prefix from the number (for example, 9|NXXXXXX would match when some dialed \"95551234\" but would only pass \"5551234\" to the trunks)" 
    2167 msgstr "Sépare un préfixe de numérotation du numéro composé.<br>Par exemple, 9|NXXXXXX aura l'effet suivant: si \"95551234\" est composé, seulement \"5551234\" sera transmis au trunk." 
    2168  
    2169 #: amp_conf/htdocs/admin/modules/core/page.routing.php:402 
    2170 msgid "Dial patterns wizards" 
    2171 msgstr "Masque de numérotation pré-défini" 
    2172  
    2173 #: amp_conf/htdocs/admin/modules/core/page.routing.php:403 
    2174 msgid "These options provide a quick way to add outbound dialing rules. Follow the prompts for each." 
    2175 msgstr "Ces options fournissent un moyen rapide d'ajouter une rÚgle de numérotation sortante." 
    2176  
    2177 #: amp_conf/htdocs/admin/modules/core/page.routing.php:404 
    2178 #: amp_conf/htdocs/admin/modules/core/page.routing.php:490 
    2179 msgid "Lookup local prefixes" 
    2180 msgstr "Recherche préfixes locaux" 
    2181  
    2182 #: amp_conf/htdocs/admin/modules/core/page.routing.php:404 
    2183 msgid "This looks up your local number on www.localcallingguide.com (NA-only), and sets up so you can dial either 7, 10 or 11 digits (5551234, 6135551234, 16135551234) to access this route." 
    2184 msgstr "Cela recherche votre numéro local sur www.localcallingguide.com (NA-seulement), et ainsi vous pouvez appeler avec 7, 10 ou 11 chiffres (5551234, 6135551234, 16135551234) pour accéder à cette route." 
    2185  
    2186 #: amp_conf/htdocs/admin/modules/core/page.routing.php:483 
    2187 msgid "Local 7 digit" 
    2188 msgstr "7 chiffres local" 
    2189  
    2190 #: amp_conf/htdocs/admin/modules/core/page.routing.php:484 
    2191 msgid "Local 7/10 digit" 
    2192 msgstr "7/10 chiffres local" 
    2193  
    2194 #: amp_conf/htdocs/admin/modules/core/page.routing.php:485 
    2195 msgid "Toll-free" 
    2196 msgstr "Numéro gratuit" 
    2197  
    2198 #: amp_conf/htdocs/admin/modules/core/page.routing.php:486 
    2199 msgid "Long-distance" 
    2200 msgstr "Longue distance" 
    2201  
    2202 #: amp_conf/htdocs/admin/modules/core/page.routing.php:487 
    2203 msgid "International" 
    2204 msgstr "International" 
    2205  
    2206 #: amp_conf/htdocs/admin/modules/core/page.routing.php:488 
    2207 msgid "Information" 
    2208 msgstr "Information" 
    2209  
    2210 #: amp_conf/htdocs/admin/modules/core/page.routing.php:489 
    2211 msgid "Emergency" 
    2212 msgstr "Urgence" 
    2213  
    2214 #: amp_conf/htdocs/admin/modules/core/page.routing.php:496 
    2215 msgid "Trunk Sequence" 
    2216 msgstr "Séquence Trunk" 
    2217  
    2218 #: amp_conf/htdocs/admin/modules/core/page.routing.php:496 
    2219 msgid "The Trunk Sequence controls the order of trunks that will be used when the above Dial Patterns are matched. <br><br>For Dial Patterns that match long distance numbers, for example, you'd want to pick the cheapest routes for long distance (ie, VoIP trunks first) followed by more expensive routes (POTS lines)." 
    2220 msgstr "La séquence de trunk contrÃŽle l'ordre des trunks qui seront utilisés pour cette route selon le masque de numérotation ci-dessus défini.<br>Pour les routes qui correspondent à des appels internationaux, vous pouvez par exemple choisir d'abord les routes les moins chÚres (trunks VoIP) et ensuite les lignes classiques." 
    2221  
    2222 #: amp_conf/htdocs/admin/modules/core/page.routing.php:618 
    2223 msgid "Route name is invalid, please try again" 
    2224 msgstr "Le 'Nom de la Route' est invalide, SVP réessayez." 
    2225  
    2226 #: amp_conf/htdocs/admin/modules/core/page.routing.php:619 
    2227 msgid "Route password must be numeric or leave blank to disable" 
    2228 msgstr "Le mot de passe de la Route ne doit contenir que des chiffres ou laisser le champ vide." 
    2229  
    2230 #: amp_conf/htdocs/admin/modules/core/page.routing.php:620 
    2231 msgid "Dial pattern is invalid" 
    2232 msgstr "Le 'Masque de Numerotation' est invalide." 
    2233  
    2234 #: amp_conf/htdocs/admin/modules/core/page.routing.php:621 
    2235 msgid "At least one trunk must be picked" 
    2236 msgstr "Au moins un Trunk doit être choisi." 
    2237  
    2238 #: amp_conf/htdocs/admin/modules/core/page.did.php:77 
    2239 #: amp_conf/htdocs/admin/modules/core/page.did.php:165 
    2240 #: amp_conf/htdocs/admin/modules/core/page.did.php:174 
    2241 msgid "Add Incoming Route" 
    2242 msgstr "Ajout Route Entrante" 
    2243  
    2244 #: amp_conf/htdocs/admin/modules/core/page.did.php:78 
     4247#: admin/modules/core/page.zapchandids.php:125 
     4248msgid "" 
     4249"DID information is normally just an incoming telephone number.\\n\\nYou have " 
     4250"entered a non standard DID pattern.\\n\\nAre you sure this is correct?" 
     4251msgstr "" 
     4252"L'information SDA est normalement juste un numéro d'appel entrant.\\n\\nVous " 
     4253"avez entré un numéro de SDA non standard.\\n\\nEtes vous sûr que c'est " 
     4254"correct?" 
     4255 
     4256#: admin/modules/core/page.zapchandids.php:126 
     4257msgid "" 
     4258"You appear to be using a converted DID in the form of zapchanNN that was " 
     4259"automatically generated during an upgrade. You should consider assigning the " 
     4260"DID that is normally associated with this channel to take full advantage of " 
     4261"the inbound routing abilities. Changing the DID here will require you to " 
     4262"make changes in the Inbound Routes tab. Do you want to continue?" 
     4263msgstr "" 
     4264"Il apparaît que vous utilisé un SDA converti dans la forme zapchanNN qui a " 
     4265"automatiquement été généré pendant une mise à jour. Vous devez assigner le " 
     4266"SDA normalement associé à ce canal pour pouvoir utilsier toutes les " 
     4267"possibilités associées au routage des appels entrants. Changer le SDA ici " 
     4268"nécessite que vous fassiez aussi le changement dans les routes entrantes. " 
     4269"Voulez vous continuer?" 
     4270 
     4271msgid "Internal Options & Configuration" 
     4272msgstr "Options et configuration internes" 
     4273 
     4274msgid "Inbound Call Control" 
     4275msgstr "ContrÃŽle des appels entrants" 
     4276 
     4277msgid "Maintenance" 
     4278msgstr "Maintenance" 
     4279 
     4280msgid "Support" 
     4281msgstr "Support" 
     4282 
     4283msgid "System Administration" 
     4284msgstr "Administration systÚme" 
     4285 
     4286msgid "Third Party Addon" 
     4287msgstr "AddOn Tierce partie" 
     4288 
     4289msgid "Module Admin" 
     4290msgstr "Administration Modules" 
     4291 
     4292msgid "FreePBX System Status" 
     4293msgstr "Statut SystÚme FreePBX" 
     4294 
     4295msgid "Config Edit" 
     4296msgstr "Edition configuration" 
     4297 
     4298msgid "Sys Info" 
     4299msgstr "Information systÚme" 
     4300 
     4301msgid "A2Billing Admin" 
     4302msgstr "Administration A2Billing" 
     4303 
     4304msgid "Time Groups" 
     4305msgstr "Groupes temps" 
     4306 
     4307msgid "Custom Destinations" 
     4308msgstr "Destinations personnalisées" 
     4309 
     4310msgid "Custom Extensions" 
     4311msgstr "Extensions personnalisées" 
     4312 
     4313msgid "Custom Applications" 
     4314msgstr "Applications personnalisées" 
     4315 
    22454316msgid "View All DIDs" 
    22464317msgstr "Vue de tous les SDA" 
    22474318 
    2248 #: amp_conf/htdocs/admin/modules/core/page.did.php:79 
    22494319msgid "View User DIDs" 
    22504320msgstr "Vue des SDA" 
    22514321 
    2252 #: amp_conf/htdocs/admin/modules/core/page.did.php:80 
    22534322msgid "View General DIDs" 
    22544323msgstr "Vue des SDA généraux" 
    22554324 
    2256 #: amp_conf/htdocs/admin/modules/core/page.did.php:81 
    22574325msgid "View Unused DIDs" 
    22584326msgstr "Vue des SDA non utilisés" 
    22594327 
    2260 #: amp_conf/htdocs/admin/modules/core/page.did.php:113 
    2261 msgid "any DID" 
    2262 msgstr "Tout SDA" 
    2263  
    2264 #: amp_conf/htdocs/admin/modules/core/page.did.php:114 
    2265 msgid "any CID" 
    2266 msgstr "Tout CID" 
    2267  
    2268 #: amp_conf/htdocs/admin/modules/core/page.did.php:126 
    2269 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4293 
    2270 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4646 
    2271 msgid "deleted" 
    2272 msgstr "supprimé" 
    2273  
    2274 #: amp_conf/htdocs/admin/modules/core/page.did.php:151 
    2275 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4325 
    2276 #: amp_conf/htdocs/admin/modules/core/page.users.php:21 
    2277 msgid "User" 
    2278 msgstr "Utilisateur" 
    2279  
    2280 # msgid "DID Number" 
    2281 # msgstr "Num&eacute;ro DID" 
    2282 # msgid "Set Destination" 
    2283 # msgstr "Choisir la destination" 
    2284 # msgid "Use 'Incoming Calls' settings" 
    2285 # msgstr "Utiliser les r&eacute;glages 'Appels entrants'" 
    2286 # ### Fin message DID 
    2287 #: amp_conf/htdocs/admin/modules/core/page.did.php:155 
    2288 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4313 
    2289 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4698 
    2290 #: amp_conf/htdocs/admin/modules/core/page.extensions.php:18 
    2291 msgid "Extension" 
    2292 msgstr "Extension" 
    2293  
    2294 #: amp_conf/htdocs/admin/modules/core/page.did.php:158 
    2295 #, php-format 
    2296 msgid "Edit %s" 
    2297 msgstr "Edition %s" 
    2298  
    2299 #: amp_conf/htdocs/admin/modules/core/page.did.php:158 
    2300 #, php-format 
    2301 msgid "Edit %s %s (%s)" 
    2302 msgstr "Edition %s %s (%s)" 
    2303  
    2304 #: amp_conf/htdocs/admin/modules/core/page.did.php:174 
    2305 msgid "Edit Incoming Route" 
    2306 msgstr "Edition Route Entrante" 
    2307  
    2308 #: amp_conf/htdocs/admin/modules/core/page.did.php:176 
    2309 msgid "Provide a meaningful description of what this incoming route is" 
    2310 msgstr "Donnez une description précise de la route entrante" 
    2311  
    2312 #: amp_conf/htdocs/admin/modules/core/page.did.php:180 
    2313 msgid "DID Number" 
    2314 msgstr "Numéro SDA" 
    2315  
    2316 #: amp_conf/htdocs/admin/modules/core/page.did.php:180 
    2317 msgid "Define the expected DID Number if your trunk passes DID on incoming calls. <br><br>Leave this blank to match calls with any or no DID info.<br><br>You can also use a pattern match (eg _2[345]X) to match a range of numbers" 
    2318 msgstr "Définit le numéro de SDA attendu si votre Trunk le transmet sur les appels entrants. <br>Laissez ce champ vide pour correspondre à tous les SDA transmis ou non.<br><br>Vous pouvez aussi utiliser un masque (eg _2[345]X) pour associer une tranche de numéros." 
    2319  
    2320 #: amp_conf/htdocs/admin/modules/core/page.did.php:184 
    2321 msgid "Caller ID Number" 
    2322 msgstr "Numéro CID" 
    2323  
    2324 #: amp_conf/htdocs/admin/modules/core/page.did.php:184 
    2325 msgid "Define the Caller ID Number to be matched on incoming calls.<br><br>Leave this field blank to match any or no CID info. In addition to standard dial sequences, you can also put Private, Blocked, Unknown, Restricted, Anonymous and Unavailable in order to catch these special cases if the Telco transmits them." 
    2326 msgstr "Définit le numéro de l'appelant qui doit correspondre pour les appels entrants.<br><br>Laissez ce champ à vide pour tous les CID ou aucun. De plus, vous pouvez ajouter Privé, Bloqué, Inconnu, Restreint, Anonyme si votre opérateur Telecom les transmets." 
    2327  
    2328 #: amp_conf/htdocs/admin/modules/core/page.did.php:189 
    2329 msgid "CID Priority Route" 
    2330 msgstr "Priorité de la route" 
    2331  
    2332 #: amp_conf/htdocs/admin/modules/core/page.did.php:189 
    2333 msgid "This effects CID ONLY routes where no DID is specified. If checked, calls with this CID will be routed to this route, even if there is a route to the DID that was called. Normal behavior is for the DID route to take the calls. If there is a specific DID/CID route for this CID, that route will still take the call when that DID is called." 
    2334 msgstr "Cela modifie seulement les routes où aucun SDA n'est spécifié. Si coché, les appels avec ce SDA seront routé sur cette route même s'il existe une autre route pour ce SDA. Un comportement normal est pour cette route SDA de prendre les appels. Si il y a unne route spécifique pour ce SDA, cette route prendra l'appel quand ce SDA est appelé." 
    2335  
    2336 #: amp_conf/htdocs/admin/modules/core/page.did.php:193 
    2337 msgid "Options" 
    2338 msgstr "Options" 
    2339  
    2340 #: amp_conf/htdocs/admin/modules/core/page.did.php:195 
    2341 msgid "Alert Info" 
    2342 msgstr "Alert Info" 
    2343  
    2344 #: amp_conf/htdocs/admin/modules/core/page.did.php:195 
    2345 msgid "ALERT_INFO can be used for distinctive ring with SIP devices." 
    2346 msgstr "ALERT_INFO peut-être utilisé pour des sonneries distinctes avec des périphériques SIP." 
    2347  
    2348 #: amp_conf/htdocs/admin/modules/core/page.did.php:199 
    2349 msgid "CID name prefix" 
    2350 msgstr "Préfixe au CID" 
    2351  
    2352 #: amp_conf/htdocs/admin/modules/core/page.did.php:199 
    2353 msgid "You can optionally prefix the Caller ID name. ie: If you prefix with \"Sales:\", a call from John Doe would display as \"Sales:John Doe\" on the extensions that ring." 
    2354 msgstr "Option: vous pouvez ajouter un préfixe au CID de la partie appellante. Par exemple: si le Préfixe est \"<b>Ventes:</b>\", un appel de Jean Martin devrait faire apparaitre le CID \"<b>Ventes:Jean Martin</b>\" sur les Extensions appelées." 
    2355  
    2356 #: amp_conf/htdocs/admin/modules/core/page.did.php:204 
    2357 msgid "Music On Hold" 
    2358 msgstr "Musique d'attente" 
    2359  
    2360 #: amp_conf/htdocs/admin/modules/core/page.did.php:204 
    2361 msgid "Set the MoH class that will be used for calls that come in on this route. For example, choose a type appropriate for routes coming in from a country which may have announcements in their language." 
    2362 msgstr "Définit la classe de musique d'attente qui sera utilisé pour les appels provenant de cette route. Par exemple, choississez un type approprié pour les routes venant de pays étrangers avec des messages dans leur langue" 
    2363  
    2364 #: amp_conf/htdocs/admin/modules/core/page.did.php:210 
    2365 msgid "No Music" 
    2366 msgstr "Pas de musique" 
    2367  
    2368 #: amp_conf/htdocs/admin/modules/core/page.did.php:222 
    2369 msgid "Signal RINGING" 
    2370 msgstr "Signal de sonnerie" 
    2371  
    2372 #: amp_conf/htdocs/admin/modules/core/page.did.php:222 
    2373 msgid "Some devices or providers require RINGING to be sent before ANSWER. You'll notice this happening if you can send calls directly to a phone, but if you send it to an IVR, it won't connect the call." 
    2374 msgstr "Quelques périphériques ont besoin d'un signal de sonnerie (RINGING) avant de recevoir la commande ANSWER. Vous pourrez remarquer cela si un appel envoyé à un serveur vocal ne fonctionne pas alors que envoyé à un téléphone cela fonctionne." 
    2375  
    2376 #: amp_conf/htdocs/admin/modules/core/page.did.php:226 
    2377 msgid "Pause Before Answer" 
    2378 msgstr "Pause avant réponse" 
    2379  
    2380 #: amp_conf/htdocs/admin/modules/core/page.did.php:226 
    2381 msgid "An optional delay to wait before processing this route. Setting this value will delay the channel from answering the call. This may be handy if external fax equipment or security systems are installed in parallel and you would like them to be able to seize the line." 
    2382 msgstr "Délai optionnel d'attente avant d'utiliser cette route. En positionnant cette valeur vous ajoutez un délai avant de répondre à l'appel. Cela peut servir si un télécopieur externe ou un équipement de sécurité est installé en paralelle et que vous souhaitez qu'ils prennent la ligne." 
    2383  
    2384 #: amp_conf/htdocs/admin/modules/core/page.did.php:230 
    2385 msgid "Privacy" 
    2386 msgstr "Protection" 
    2387  
    2388 #: amp_conf/htdocs/admin/modules/core/page.did.php:233 
    2389 msgid "Privacy Manager" 
    2390 msgstr "Gestion de la protection" 
    2391  
    2392 #: amp_conf/htdocs/admin/modules/core/page.did.php:233 
    2393 msgid "If no Caller ID is sent, Privacy Manager will asks the caller to enter their 10 digit phone number. The caller is given 3 attempts. The number of digits and attempts can be defined in privacy.conf. If a user has Call Screening enabled, the incoming caller will be asked to enter their CallerId here if enabled, and then to say their name once determined that the called user requires it." 
    2394 msgstr "Si l'appel est en numéro caché, le gestionnaire de protection demandera à l'appelant d'entrer son numéro à 10 chiffres. Il y a trois tentatives pour l'appelant. Le nombre de chiffres et d'essais est paramétrable dans le fichier privacy.conf. Si un utilisateur a l'option Call Screening, il sera demandé à l'appelant de saisir son numéro, si activé puis d'énoncer son nom si le paramétrage de l'appelé le demande." 
    2395  
    2396 #: amp_conf/htdocs/admin/modules/core/page.did.php:242 
    2397 msgid "Fax Handling" 
    2398 msgstr "Acheminement télécopie" 
    2399  
    2400 #: amp_conf/htdocs/admin/modules/core/page.did.php:246 
    2401 msgid "Fax Extension" 
    2402 msgstr "Numéro d'extension du télécopieur" 
    2403  
    2404 #: amp_conf/htdocs/admin/modules/core/page.did.php:246 
    2405 msgid "Select 'system' to have the system receive and email faxes.<br><br>The FreePBX default is defined in General Settings." 
    2406 msgstr "Choisir <b>SystÚme</b> pour autoriser le systÚme à recevoir les télécopies et à les retransmettre par courriel.<br>Le paramétrage par défaut est défini dans la section <strong>Réglages Globaux</strong> de FreePBX." 
    2407  
    2408 #: amp_conf/htdocs/admin/modules/core/page.did.php:250 
    2409 msgid "FreePBX default" 
    2410 msgstr "Par Défaut" 
    2411  
    2412 #: amp_conf/htdocs/admin/modules/core/page.did.php:267 
    2413 msgid "Fax Email" 
    2414 msgstr "Adresse courriel du télécopieur" 
    2415  
    2416 #: amp_conf/htdocs/admin/modules/core/page.did.php:267 
    2417 msgid "Email address is used if 'system' has been chosen for the fax extension above.<br><br>Leave this blank to use the FreePBX default in General Settings." 
    2418 msgstr "L'adresse courriel est utilisée si l'option <b>SystÚme</b> a été choisie ci-dessus.<br>Laissez ce champ vide pour utiliser le réglage par défaut défini dans la section <strong>Réglages Globaux</strong>." 
    2419  
    2420 #: amp_conf/htdocs/admin/modules/core/page.did.php:274 
    2421 msgid "Fax Detection Type" 
    2422 msgstr "Type de détection télécopieur" 
    2423  
    2424 #: amp_conf/htdocs/admin/modules/core/page.did.php:274 
    2425 msgid "Selecting Zaptel or NVFax will immediately answer the call and play ringing tones to the caller for the number of seconds in Pause below. Use NVFax on SIP or IAX trunks." 
    2426 msgstr "La sélection de Zaptel ou NVFAx permettra de faire sonner immédiatement le poste de l'appelé pour le nombre de secondes paramétré en dessous. Utilisez NVFax avec des trunks SIP ou IAX." 
    2427  
    2428 #: amp_conf/htdocs/admin/modules/core/page.did.php:277 
    2429 msgid "None" 
    2430 msgstr "Aucun" 
    2431  
    2432 #: amp_conf/htdocs/admin/modules/core/page.did.php:278 
    2433 msgid "Zaptel" 
    2434 msgstr "Zaptel" 
    2435  
    2436 #: amp_conf/htdocs/admin/modules/core/page.did.php:279 
    2437 msgid "NVFax" 
    2438 msgstr "NVFax" 
    2439  
    2440 #: amp_conf/htdocs/admin/modules/core/page.did.php:284 
    2441 msgid "Pause After Answer" 
    2442 msgstr "Pause aprÚs réponse" 
    2443  
    2444 #: amp_conf/htdocs/admin/modules/core/page.did.php:284 
    2445 msgid "The number of seconds we should wait after performing an Immediate Answer. The primary purpose of this is to pause and listen for a fax tone before allowing the call to proceed." 
    2446 msgstr "Le nombre de secondes à attendre aprÚs une <b>Réponse Immédiate</b>. Le but principal est de faire une pause pour détecter une tonalité télécopieur avant de permettre le déroulement de l'appel." 
    2447  
    2448 #: amp_conf/htdocs/admin/modules/core/page.did.php:293 
    2449 msgid "Set Destination" 
    2450 msgstr "Choix Destination" 
    2451  
    2452 #: amp_conf/htdocs/admin/modules/core/page.did.php:298 
    2453 msgid "Clear Destination" 
    2454 msgstr "Effacer Destination" 
    2455  
    2456 #: amp_conf/htdocs/admin/modules/core/page.did.php:307 
    2457 msgid "Clear Destination & Submit" 
    2458 msgstr "Effacer Destination et Soumettre" 
    2459  
    2460 #: amp_conf/htdocs/admin/modules/core/page.did.php:319 
    2461 msgid "Please enter a valid DID Number" 
    2462 msgstr "SVP, entrez un 'Numéro DID' valide." 
    2463  
    2464 #: amp_conf/htdocs/admin/modules/core/page.did.php:320 
    2465 msgid "Please enter a valid Caller ID Number" 
    2466 msgstr "SVP, entrez un 'Numero CID' valide." 
    2467  
    2468 #: amp_conf/htdocs/admin/modules/core/page.did.php:321 
    2469 msgid "Please enter a valid Fax Email or leave it empty to use the default" 
    2470 msgstr "SVP, entrez une 'Adresse courriel du télécopieur' valide ou laissez ce champ vide pour utiliser la configuration Par Defaut." 
    2471  
    2472 #: amp_conf/htdocs/admin/modules/core/page.did.php:322 
    2473 msgid "Please enter a valid number for Pause after answer" 
    2474 msgstr "SVP, entrez un nombre 'Pause aprÚs réponse' valide." 
    2475  
    2476 #: amp_conf/htdocs/admin/modules/core/page.did.php:323 
    2477 msgid "Please enter a valid number for Pause Before Answer field" 
    2478 msgstr "SVP, entrez un nombre pour 'Pause avant réponse' valide." 
    2479  
    2480 #: amp_conf/htdocs/admin/modules/core/page.did.php:324 
    2481 msgid "" 
    2482 "Leaving the DID Number AND the Caller ID Number empty will match all incoming calls received not routed using any other defined Incoming Route.\\n" 
    2483 "\\n" 
    2484 "Are you sure?" 
    2485 msgstr "Laisser les champs 'numéro SDA' ET 'numéro CID' vides aura pour conséquence recevoir tous les appels entrants n'utilisant aucune autre route definie. Etes vous certain?" 
    2486  
    2487 #: amp_conf/htdocs/admin/modules/core/page.did.php:325 
    2488 msgid "" 
    2489 "DID information is normally just an incoming telephone number or for advanced users, a valid Asterisk Dial Pattern\\n" 
    2490 "\\n" 
    2491 "You have entered a non standard DID pattern.\\n" 
    2492 "\\n" 
    2493 "Are you sure this is correct?" 
    2494 msgstr "" 
    2495 "L'information SDA est normalement juste un numéro d'appel entrant ou pour des utilisateurs experts un masque d'appel valide pour Asterisk.\\n" 
    2496 "\\n" 
    2497 "Vous avez entré un numéro de SDA non standard.\\n" 
    2498 "\\n" 
    2499 "Etes vous sûr que c'est correct?" 
    2500  
    2501 #: amp_conf/htdocs/admin/modules/core/page.did.php:326 
    2502 msgid "A Slash ('/') is never a valid DID. Please remove it and try again" 
    2503 msgstr "Un slash ('/') n'est pas un SDA valide. SVP retirez le et essayez de nouveau" 
    2504  
    2505 #: amp_conf/htdocs/admin/modules/core/page.did.php:327 
    2506 msgid "Invalid Caller ID prefix." 
    2507 msgstr " CID sortant' invalide" 
    2508  
    2509 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:554 
    2510 #, php-format 
    2511 msgid "User Extension %s: %s" 
    2512 msgstr "Extension Utilisateur %s: %s" 
    2513  
    2514 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:1983 
    2515 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2002 
    2516 msgid "A route for this DID/CID already exists!" 
    2517 msgstr "Une route pour ce DID/CID existe déjà!" 
    2518  
    2519 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2069 
    2520 msgid "You must put in a device id" 
    2521 msgstr "Vous devez mettre un identifiant périphérique" 
    2522  
    2523 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2079 
    2524 msgid "This device id is already in use" 
    2525 msgstr "Ce périphérique est déjà utilisé" 
    2526  
    2527 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2660 
    2528 msgid "User Extension: " 
    2529 msgstr "Extension Utilisateur:" 
    2530  
    2531 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2689 
    2532 #, php-format 
    2533 msgid "Inbound Route: %s (%s)" 
    2534 msgstr "Route Entrante: %s (%s)" 
    2535  
    2536 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2723 
    2537 msgid "You must put in an extension (or user) number" 
    2538 msgstr "Vous devez mettre un numéro d'extension ou d'utilisateur" 
    2539  
    2540 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2732 
    2541 #, php-format 
    2542 msgid "This user/extension %s is already in use" 
    2543 msgstr "L'extension %s est déjà utilisée" 
    2544  
    2545 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2751 
    2546 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:2991 
    2547 #, php-format 
    2548 msgid "A route with this DID/CID: %s/%s already exists" 
    2549 msgstr "Une route pour ce SDA/CID: %s/%s existe déjà" 
    2550  
    2551 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:3042 
    2552 msgid "Error Duplicate Channel Entry" 
    2553 msgstr "Erreur de copie de l'entrée du canal" 
    2554  
    2555 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4206 
    2556 #, php-format 
    2557 msgid "Failed to open %s for writing, aborting attempt to write the country indications. The file may be readonly or the permissions may be incorrect." 
    2558 msgstr "Impossible d'ouvrir %s pour écriture de l'indication pays. Le fichier doit être en écriture seule ou les autorisations ne sont pas correctes." 
    2559  
    2560 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4207 
    2561 msgid "Failed to write indications.conf" 
    2562 msgstr "Echec d'écriture du fichier indications.conf" 
    2563  
    2564 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4231 
    2565 msgid "On Demand" 
    2566 msgstr "A la Demande" 
    2567  
    2568 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4232 
    2569 msgid "Always" 
    2570 msgstr "Toujours" 
    2571  
    2572 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4233 
    2573 msgid "Never" 
    2574 msgstr "Jamais" 
    2575  
    2576 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4241 
    2577 msgid "Screen Caller: No Memory" 
    2578 msgstr "Screen : sans mémorisation" 
    2579  
    2580 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4242 
    2581 msgid "Screen Caller: Memory" 
    2582 msgstr "Screen : avec mémorisation" 
    2583  
    2584 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4315 
    2585 #, php-format 
    2586 msgid "Delete Extension %s" 
    2587 msgstr "Suppression Extension %s" 
    2588  
    2589 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4327 
    2590 #, php-format 
    2591 msgid "Delete User %s" 
    2592 msgstr "Suppression Utilisateur %s" 
    2593  
    2594 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4339 
    2595 msgid "Add User/Extension" 
    2596 msgstr "Ajout Utilisateur/Extension" 
    2597  
    2598 # ATTENTION: Les messages suivants sont des alertes: pas d'accent, pas de caracteres de control sont admis... le fichier script.js est traite plus haut 
    2599 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4346 
    2600 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4716 
    2601 msgid "Please enter a valid extension number." 
    2602 msgstr "SVP, entrez un numéro d'extension valide." 
    2603  
    2604 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4347 
    2605 msgid "Please enter a valid CID Num Alias (must be a valid number)." 
    2606 msgstr "SVP, entrez un 'Numéro SDA' valide( uniquement des chiffres)." 
    2607  
    2608 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4348 
    2609 msgid "Please enter valid User Password using numbers only" 
    2610 msgstr "SVP, entrez un 'Mot de Passe Utilisateur' valide utilisant des chiffres uniquement." 
    2611  
    2612 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4349 
    2613 msgid "Please enter a valid Display Name" 
    2614 msgstr "SVP, entrez un 'Nom Affiché (CID)' valide." 
    2615  
    2616 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4350 
    2617 msgid "Please enter a valid Outbound CID" 
    2618 msgstr "SVP, entrez un CID Sortant valide." 
    2619  
    2620 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4351 
    2621 msgid "Please enter a valid pause time in seconds, using digits only" 
    2622 msgstr "SVP, entrez un un temps de pause valide (utilisant des chiffres uniquement)." 
    2623  
    2624 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4352 
    2625 msgid "You have entered a non-standard dialpattern for your DID. You can only enter standard dialpatterns. You must use the inbound routing form to enter non-standard patterns" 
    2626 msgstr "Vous avez entré un masque non standard pour votre DID. Vous ne pouvez entrer que des masques standards. Vous devez utiliser une route entrante pour entrer un masque non standard." 
    2627  
    2628 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4353 
    2629 msgid "Please enter a valid Caller ID Number or leave it blank for your Assigned DID/CID pair" 
    2630 msgstr "SVP, entrez un 'Numero CID' valide ou laissez à vide pour votre SDA/CID assigné" 
    2631  
    2632 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4360 
    2633 msgid "Edit Extension" 
    2634 msgstr "Edition Extension" 
    2635  
    2636 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4362 
    2637 msgid "Edit User" 
    2638 msgstr "Edition Utilisateur" 
    2639  
    2640 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4367 
    2641 msgid "User Extension" 
    2642 msgstr "Extension Utilisateur" 
    2643  
    2644 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4367 
    2645 msgid "The extension number to dial to reach this user." 
    2646 msgstr "Le numéro d'extension à composer pour cet utilisateur" 
    2647  
    2648 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4370 
    2649 msgid "User Password" 
    2650 msgstr "Mot de Passe Utilisateur" 
    2651  
    2652 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4370 
    2653 msgid "A user will enter this password when logging onto a device." 
    2654 msgstr "Un utilisateur entrera ce mot de passe pour s'identifier sur un périphérique." 
    2655  
    2656 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4370 
    2657 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4731 
    2658 msgid "logs into a device." 
    2659 msgstr "connecté au périphérique" 
    2660  
    2661 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4370 
    2662 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4731 
    2663 msgid "logs out of a device." 
    2664 msgstr "déconnecté du périphérique" 
    2665  
    2666 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4374 
    2667 msgid "Display Name" 
    2668 msgstr "Nom Affiché (CID)" 
    2669  
    2670 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4374 
    2671 msgid "The caller id name for calls from this user will be set to this name. Only enter the name, NOT the number." 
    2672 msgstr "Le CID de cet utilisateur sera fixé à ce nom. Entrez le nom, pas le numéro!" 
    2673  
    2674 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4376 
    2675 msgid "CID Num Alias" 
    2676 msgstr "Numéro alias du CID" 
    2677  
    2678 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4376 
    2679 msgid "The CID Number to use for internal calls, if different from the extension number. This is used to masquerade as a different user. A common example is a team of support people who would like their internal callerid to display the general support number (a ringgroup or queue). There will be no effect on external calls." 
    2680 msgstr "Le CID à utiliser pour les appels internes s'il est différent de l'extension. Cela est utilisé pour passer pour un autre utilisateur. L'exemple classique est celui d'une équipe support qui souhaite voir s'afficher le numéro général du support (groupement d'appel ou file d'attente). Cela n'a aucun effet sur les appels extérieurs." 
    2681  
    2682 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4377 
    2683 msgid "SIP Alias" 
    2684 msgstr "Alias SIP" 
    2685  
    2686 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4377 
    2687 msgid "If you want to support direct sip dialing of users internally or through anonymous sip calls, you can supply a friendly name that can be used in addition to the users extension to call them." 
    2688 msgstr "Si vous voulez supporter l'appel direct sip des utilisateurs internes ou au travers d'appels anonymes, vous pouvez fournir un nom qui peut être utilisé en plus de l'extension pour appeler." 
    2689  
    2690 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4382 
    2691 msgid "User Devices" 
    2692 msgstr "Périphériques utilisateur" 
    2693  
    2694 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4393 
    2695 msgid "Edit:" 
    2696 msgstr "Edition:" 
    2697  
    2698 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4405 
    2699 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4734 
    2700 msgid "Extension Options" 
    2701 msgstr "Options Extension" 
    2702  
    2703 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4406 
    2704 msgid "Outbound CID" 
    2705 msgstr "CID Sortant" 
    2706  
    2707 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4406 
    2708 msgid "Overrides the caller id when dialing out a trunk. Any setting here will override the common outbound caller id set in the Trunks admin.<br><br>Format: <b>\"caller name\" &lt;#######&gt;</b><br><br>Leave this field blank to disable the outbound callerid feature for this user." 
    2709 msgstr "Remplace le CID lors d'un appel vers un trunk. Ce paramétrage remplacera le CID sortant défini pour ce Trunk.<br>Format: <b>\"nom de l'appelant\" &lt;#######&gt;</b><br>Laissez ce champ vide pour ne pas activer cette fonctionnalité pour cet utilisateur." 
    2710  
    2711 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4408 
    2712 msgid "Ring Time" 
    2713 msgstr "Temporisation Sonnerie" 
    2714  
    2715 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4408 
    2716 msgid "Number of seconds to ring prior to going to voicemail. Default will use the value set in the General Tab. If no voicemail is configured this will be ignored." 
    2717 msgstr "Nombre de secondes avant de basculer sur la boîte vocale. Par défaut la valeur utilisée est celle des réglages globaux. S'il n'y a pas de boîte configurée, c'est ignoré." 
    2718  
    2719 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4416 
    2720 msgid "Call Waiting" 
    2721 msgstr "Attente appel" 
    2722  
    2723 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4416 
    2724 msgid "Set the initial/current Call Waiting state for this user's extension" 
    2725 msgstr "Fixe l'état initial/courant de l'attente pour cette extension." 
    2726  
    2727 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4417 
    2728 msgid "Call Screening" 
    2729 msgstr "Call Screening" 
    2730  
    2731 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4417 
    2732 msgid "Call Screening requires external callers to say their name, which will be played back to the user and allow the user to accept or reject the call.  Screening with memory only verifies a caller for their caller-id once. Screening without memory always requires a caller to say their name. Either mode will always announce the caller based on the last introduction saved with that callerid. If any user on the system uses the memory option, when that user is called, the caller will be required to re-introduce themselves and all users on the system will have that new introduction associated with the caller's CallerId." 
    2733 msgstr "La fonction Call Screening demande aux appelants de donner leur nom qui est ensuite répété à l'appelé qui accepte ou rejette l'appel. Le screening avec mémorisation fait cette vérification au premier appel de ce numéro. Sans mémorisation, cela est fait pour tout appel. Dans tous les cas, l'appelant est prévenu par le message du nom sauvegardé. Si un utilisateur utilise l'option sans mémoire, l'appelant devra redonner son nom et tous les utilisateurs recevront ce nouvel enregistrement de message en cas de nouvelle appel de cette personne. " 
    2734  
    2735 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4419 
    2736 msgid "Assigned DID/CID" 
    2737 msgstr "SDA/CID associé" 
    2738  
    2739 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4420 
    2740 msgid "DID Description" 
    2741 msgstr "Description SDA" 
    2742  
    2743 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4420 
    2744 msgid "A description for this DID, such as \"Fax\"" 
    2745 msgstr "Une description pour ce SDA, comme\"Télécopieur\"" 
    2746  
    2747 # #### Ancien Message DID, plus utilise par DID mais peut-etre par d'autres! 
    2748 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4421 
    2749 msgid "Add Inbound DID" 
    2750 msgstr "Ajouter une SDA" 
    2751  
    2752 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4421 
    2753 msgid "A direct DID that is associated with this extension. The DID should be in the same format as provided by the provider (e.g. full number, 4 digits for 10x4, etc).<br><br>Format should be: <b>XXXXXXXXXX</b><br><br>.An optional CID can also be associated with this DID by setting the next box" 
    2754 msgstr "Un SDA associé à cette extension. Le SDA doit être au même format que celui fourni par le provider (nombre complet, 4 chiffres pour 10x4,...)<br><br>Format :<b>XXXXXXXXXX</b><br><br>. Un identifiant de l'appelant peut être associé à ce SDA en modifiant le prochain champ." 
    2755  
    2756 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4422 
    2757 msgid "Add Inbound CID" 
    2758 msgstr "Ajout CID Sortant" 
    2759  
    2760 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4422 
    2761 msgid "Add a CID for more specific DID + CID routing. A DID must be specified in the above Add DID box. In addition to standard dial sequences, you can also put Private, Blocked, Unknown, Restricted, Anonymous and Unavailable in order to catch these special cases if the Telco transmits them." 
    2762 msgstr "Ajout d'un identifiant appelant pour des routages plus spécifiques : SDA + identifiant. Un SDA doit avoir été spécifié au dessus. En plus des séquences standard d'appel, vous pouvez aussi mettre Privé, Bloqué, Inconnu, Restreint, Anonyme et Invalide pour gére ces cas particuliers si l'opérateur Telecom les transmet." 
    2763  
    2764 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4430 
    2765 msgid "DID / CID" 
    2766 msgstr "DID / CID" 
    2767  
    2768 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4450 
    2769 msgid "Recording Options" 
    2770 msgstr "Option d'enregistrement" 
    2771  
    2772 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4451 
    2773 msgid "Record Incoming" 
    2774 msgstr "Enregistrement Entrant" 
    2775  
    2776 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4451 
    2777 msgid "Record all inbound calls received at this extension." 
    2778 msgstr "Enregistre tous les appels entrants reçus à cette Extension." 
    2779  
    2780 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4452 
    2781 msgid "Record Outgoing" 
    2782 msgstr "Enregistrement Sortant" 
    2783  
    2784 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4452 
    2785 msgid "Record all outbound calls received at this extension." 
    2786 msgstr "Enregistrer tous les appels sortants reçus à cette Extension." 
    2787  
    2788 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4470 
    2789 msgid "Warning! Extension" 
    2790 msgstr "Attention!'Extension" 
    2791  
    2792 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4470 
    2793 msgid "is not allowed for your account" 
    2794 msgstr "n'est pas permise pour votre compte" 
    2795  
    2796 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4484 
    2797 msgid "Conflicting Extensions" 
    2798 msgstr "Conflit d'extensions" 
    2799  
    2800 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4484 
    2801 msgid "The following extension numbers are in conflict, you can click on the item(s) below to edit the conflicting entity." 
    2802 msgstr "Les extensions suivantes sont en conflit. Vous pouvez cliquer et éditer les entités en conflit." 
    2803  
    2804 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4488 
    2805 msgid "Configure user again:" 
    2806 msgstr "Reconfigurer l'utilisateur" 
    2807  
    2808 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4488 
    2809 msgid "Configure extension again:" 
    2810 msgstr "Reconfigurer l'extension" 
    2811  
    2812 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4535 
    2813 msgid "Please enter the dtmfmode for this device" 
    2814 msgstr "SVP, entrez un mode DTMF valide pour ce péripherique." 
    2815  
    2816 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4536 
    2817 msgid "Please enter the channel for this device" 
    2818 msgstr "SVP, entrez un canal valide pour ce péripherique." 
    2819  
    2820 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4537 
    2821 msgid "You have not entered a Secret for this device, although this is possible it is generally bad practice to not assign a Secret to a device. Are you sure you want to leave the Secret empty?" 
    2822 msgstr "Vous n'avez pas entré de mot de passe dans le champ 'secret' de ce péripherique. Bien que cela soit possible, il est généralement déconseillé de ne pas saisir le champ 'secret' pour un périphérique. Etes vous certain de laisser ce champ vide?" 
    2823  
    2824 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4538 
    2825 msgid "Please enter a Secret for this device" 
    2826 msgstr "SVP, entrez un mot de passe (secret) pour ce péripherique." 
    2827  
    2828 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4539 
    2829 msgid "You have set your secret and device/extension to the same value. This can be a serious security vulnerability resulting in a hacker compromising your system to make free phone calls. There are many known instances where this has already occurred" 
    2830 msgstr "Vous avez le même mot de passe pour votre périphérique et votre extension. C'est un problÚme de sécurité permettant à une personne mal intentionnée d'utiliser votre systÚme pour appeler gratuitement comme c'est déjà arrivé à de nombreuses reprises." 
    2831  
    2832 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4606 
    2833 msgid "Generic SIP Device" 
    2834 msgstr "Périphérique SIP" 
    2835  
    2836 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4607 
    2837 msgid "Generic IAX2 Device" 
    2838 msgstr "Périphérique IAX2" 
    2839  
    2840 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4608 
    2841 msgid "Generic ZAP Device" 
    2842 msgstr "Périphérique ZAP" 
    2843  
    2844 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4609 
    2845 msgid "Other (Custom) Device" 
    2846 msgstr "Périphérique autre" 
    2847  
    2848 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4614 
    2849 msgid "Fixed" 
    2850 msgstr "Fixe" 
    2851  
    2852 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4615 
    2853 msgid "Adhoc" 
    2854 msgstr "Adhoc" 
    2855  
    2856 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4618 
    2857 msgid "none" 
    2858 msgstr "aucun" 
    2859  
    2860 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4619 
    2861 msgid "New User" 
    2862 msgstr "Nouvel Utilisateur" 
    2863  
    2864 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4654 
    2865 msgid "Add an Extension" 
    2866 msgstr "Ajout Extension" 
    2867  
    2868 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4656 
    2869 msgid "Please select your Device below then click Submit" 
    2870 msgstr "Sélectionner votre périphérique puis cliquer sur Soumettre" 
    2871  
    2872 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4660 
    2873 msgid "Edit existing Device" 
    2874 msgstr "Edition périphérique existant" 
    2875  
    2876 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4662 
    2877 msgid "Edit existing Extension" 
    2878 msgstr "Edition extension existante" 
    2879  
    2880 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4677 
    2881 #, php-format 
    2882 msgid "Delete Device %s" 
    2883 msgstr "Suppression Périphérique %s" 
    2884  
    2885 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4683 
    2886 #, php-format 
    2887 msgid "Edit Default User: %s" 
    2888 msgstr "Edition utilisateur par défaut: %s" 
    2889  
    2890 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4683 
    2891 #, php-format 
    2892 msgid "Edit Fixed User: %s" 
    2893 msgstr "Edition Utilisateur: %s" 
    2894  
    2895 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4713 
    2896 msgid "Please enter a device id." 
    2897 msgstr "SVP, entrez un identifiant péripherique." 
    2898  
    2899 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4714 
    2900 msgid "Please enter a valid Description for this device" 
    2901 msgstr "SVP, entrez une Description de Peripherique valide" 
    2902  
    2903 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4715 
    2904 msgid "Please enter a valid Emergency CID" 
    2905 msgstr "SVP, entrez un CID d'Urgence valide." 
    2906  
    2907 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4723 
    2908 msgid "Device Info" 
    2909 msgstr "Information périphérique" 
    2910  
    2911 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4727 
    2912 msgid "Device ID" 
    2913 msgstr "Identité Périphérique" 
    2914  
    2915 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4727 
    2916 msgid "Give your device a unique integer ID.  The device will use this ID to authenticate to the system." 
    2917 msgstr "Donnez à votre périphérique un identiifiant unique. Le périphérique utilisera cette identitifiant pour s'authentifier au systÚme." 
    2918  
    2919 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4729 
    2920 msgid "The caller id name for this device will be set to this description until it is logged into." 
    2921 msgstr "Le nom du CID pour ce périphérique sera mis à cette description jusqu'à ce qu'il s'inscrive" 
    2922  
    2923 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4730 
    2924 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4735 
    2925 msgid "Emergency CID" 
    2926 msgstr "CID d'Urgence" 
    2927  
    2928 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4730 
    2929 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4735 
    2930 msgid "This caller id will always be set when dialing out an Outbound Route flagged as Emergency.  The Emergency CID overrides all other caller id settings." 
    2931 msgstr "Le CID (Caller ID) de l'appelant sera toujours transmis lors d'une numérotation vers une Route Sortante labellisée comme Urgence. Le CID d'Urgence remplace tout autre CID." 
    2932  
    2933 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4731 
    2934 msgid "Device Type" 
    2935 msgstr "Type Périphérique" 
    2936  
    2937 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4731 
    2938 msgid "Devices can be fixed or adhoc. Fixed devices are always associated to the same extension/user. Adhoc devices can be logged into and logged out of by users." 
    2939 msgstr "Les périphériques peuvent être <b>Fixe</b> ou <b>Adhoc</b>.<br>Les périphériques fixes sont toujours associés à la même extension/utilisateur.<br>Les périphériques adhocs sont accessibles par les utilisateurs en tapant <strong>*11</strong> pour s'inscrire et <strong>*12</strong> pour se désinscrire." 
    2940  
    2941 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4732 
    2942 msgid "Default User" 
    2943 msgstr "Utilisateur par défaut" 
    2944  
    2945 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4732 
    2946 msgid "Fixed devices will always mapped to this user.  Adhoc devices will be mapped to this user by default.<br><br>If selecting 'New User', a new User Extension of the same Device ID will be set as the Default User." 
    2947 msgstr "Les Périphériques fixes seront toujours associés à cet utilisateur. Les périphériques adhocs seront associés à cet utilisateur par défaut. <br>Si l'option <b>Nouvel Utilisateur</b> est choisie, une nouvelle extension du même périphérique (Identitifiant) sera sélectionnée comme utilisateur par défaut" 
    2948  
    2949 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4740 
    2950 msgid "Device Options" 
    2951 msgstr "Options Périphérique" 
    2952  
    2953 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4742 
    2954 #, php-format 
    2955 msgid "This device uses %s technology." 
    2956 msgstr "Ce périphérique utilise la technologie %s" 
    2957  
    2958 #: amp_conf/htdocs/admin/modules/core/functions.inc.php:4742 
    2959 msgid "Via DAHDI compatibility mode" 
    2960 msgstr "Via le mode de compatibilité DAHDI" 
    2961  
    2962 # # le message suivant n'est pas traduit, il faut revoir le code dans page.users 
    2963 #: amp_conf/htdocs/admin/modules/core/page.users.php:34 
    2964 msgid "" 
    2965 "You have not entered a User Password.  While this is acceptable, this user will not be able to login to an AdHoc device.\\n" 
    2966 "\\n" 
    2967 "Are you sure you wish to leave the User Password empty?" 
    2968 msgstr "" 
    2969 "Vous n'avez pas saisi un mot de passe Utilisateur. Bien que cela soit possible, cet utilisateur ne pourra se loguer à un terminal.\n" 
    2970 "\n" 
    2971 "Etes-vous sûre de vouloir laisser le mot de passe à blanc?" 
    2972  
    2973 #: amp_conf/htdocs/admin/page.modules.php:129 
    2974 msgid "Module Administration" 
    2975 msgstr "Administration des modules" 
    2976  
    2977 #: amp_conf/htdocs/admin/page.modules.php:146 
    2978 #, php-format 
    2979 msgid "Warning: Cannot connect to online repository (%s). Online modules are not available." 
    2980 msgstr "Attention: ne peut se connecter au dépÃŽt (%s). Les modules ne sont pas accessibles." 
    2981  
    2982 #: amp_conf/htdocs/admin/page.modules.php:150 
    2983 #, php-format 
    2984 msgid "Warning: Error retrieving updates from online repository (%s). Online modules are not available." 
    2985 msgstr "Attention: erreur de mise à jour provenant du dépÃŽt (%s). Les modules ne sont pas accessibles." 
    2986  
    2987 #: amp_conf/htdocs/admin/page.modules.php:190 
    2988 msgid "Please wait while module actions are performed" 
    2989 msgstr "Merci de patienter: exécution en cours" 
    2990  
    2991 #: amp_conf/htdocs/admin/page.modules.php:203 
    2992 #, php-format 
    2993 msgid "Downloading %s" 
    2994 msgstr "Chargement %s" 
    2995  
    2996 #: amp_conf/htdocs/admin/page.modules.php:205 
    2997 #, php-format 
    2998 msgid "Error(s) downloading %s" 
    2999 msgstr "Erreur téléchargement %s" 
    3000  
    3001 #: amp_conf/htdocs/admin/page.modules.php:210 
    3002 #: amp_conf/htdocs/admin/page.modules.php:222 
    3003 #, php-format 
    3004 msgid "Error(s) installing %s" 
    3005 msgstr "Erreur installation %s" 
    3006  
    3007 #: amp_conf/htdocs/admin/page.modules.php:214 
    3008 #: amp_conf/htdocs/admin/page.modules.php:226 
    3009 #, php-format 
    3010 msgid "%s installed successfully" 
    3011 msgstr "%s installé avec succÚs" 
    3012  
    3013 #: amp_conf/htdocs/admin/page.modules.php:232 
    3014 #, php-format 
    3015 msgid "Error(s) enabling %s" 
    3016 msgstr "Erreur activation %s" 
    3017  
    3018 #: amp_conf/htdocs/admin/page.modules.php:236 
    3019 #, php-format 
    3020 msgid "%s enabled successfully" 
    3021 msgstr "%s activé avec succÚs" 
    3022  
    3023 #: amp_conf/htdocs/admin/page.modules.php:241 
    3024 #, php-format 
    3025 msgid "Error(s) disabling %s" 
    3026 msgstr "Erreur désactivation %s" 
    3027  
    3028 #: amp_conf/htdocs/admin/page.modules.php:245 
    3029 #, php-format 
    3030 msgid "%s disabled successfully" 
    3031 msgstr "%s désactivé avec succÚs" 
    3032  
    3033 #: amp_conf/htdocs/admin/page.modules.php:251 
    3034 #, php-format 
    3035 msgid "Error(s) uninstalling %s" 
    3036 msgstr "Erreur désinstallation %s" 
    3037  
    3038 #: amp_conf/htdocs/admin/page.modules.php:255 
    3039 #, php-format 
    3040 msgid "%s uninstalled successfully" 
    3041 msgstr "%s désinstallé avec succÚs" 
    3042  
    3043 #: amp_conf/htdocs/admin/page.modules.php:271 
    3044 #: amp_conf/htdocs/admin/page.modules.php:273 
    3045 msgid "Return" 
    3046 msgstr "Retour" 
    3047  
    3048 #: amp_conf/htdocs/admin/page.modules.php:304 
    3049 #: amp_conf/htdocs/admin/page.modules.php:328 
    3050 #, php-format 
    3051 msgid "%s cannot be upgraded: %s Please try again after the dependencies have been installed." 
    3052 msgstr "%s ne peut être mis à jour: %s Réessayez quand les dépendances auront été installées" 
    3053  
    3054 #: amp_conf/htdocs/admin/page.modules.php:308 
    3055 #, php-format 
    3056 msgid "%s %s will be upgraded to online version %s" 
    3057 msgstr "%s %s sera mis à jour avec la version en ligne %s" 
    3058  
    3059 #: amp_conf/htdocs/admin/page.modules.php:316 
    3060 #: amp_conf/htdocs/admin/page.modules.php:328 
    3061 #, php-format 
    3062 msgid "%s cannot be installed: %s Please try again after the dependencies have been installed." 
    3063 msgstr "%s ne peut être installé: %s Réessayez quand les dépendances auront été installées" 
    3064  
    3065 #: amp_conf/htdocs/admin/page.modules.php:320 
    3066 #, php-format 
    3067 msgid "%s %s will be downloaded and installed" 
    3068 msgstr "%s %s va être téléchargé et installé" 
    3069  
    3070 #: amp_conf/htdocs/admin/page.modules.php:333 
    3071 #, php-format 
    3072 msgid "%s %s will be upgraded to %s" 
    3073 msgstr "%s %s va être installé et mis à jour à %s" 
    3074  
    3075 #: amp_conf/htdocs/admin/page.modules.php:335 
    3076 #, php-format 
    3077 msgid "%s %s will be installed and enabled" 
    3078 msgstr "%s %s va être installé et activé" 
    3079  
    3080 #: amp_conf/htdocs/admin/page.modules.php:343 
    3081 #, php-format 
    3082 msgid "%s cannot be enabled: %s Please try again after the dependencies have been installed." 
    3083 msgstr "%s ne peut être activé: %s Réessayez quand les dépendances auront été installées" 
    3084  
    3085 #: amp_conf/htdocs/admin/page.modules.php:347 
    3086 #, php-format 
    3087 msgid "%s %s will be enabled" 
    3088 msgstr "%s %s va être activé" 
    3089  
    3090 #: amp_conf/htdocs/admin/page.modules.php:353 
    3091 #, php-format 
    3092 msgid "%s cannot be disabled because the following modules depend on it: %s Please disable those modules first then try again." 
    3093 msgstr "%s ne peut être désactivé car le module %s en dépend. Désactivé d'abord ces modules puis réessayer." 
    3094  
    3095 #: amp_conf/htdocs/admin/page.modules.php:357 
    3096 #, php-format 
    3097 msgid "%s %s will be disabled" 
    3098 msgstr "%s %s va être désactivé" 
    3099  
    3100 #: amp_conf/htdocs/admin/page.modules.php:364 
    3101 #, php-format 
    3102 msgid "%s cannot be uninstalled because the following modules depend on it: %s Please disable those modules first then try again." 
    3103 msgstr "%s ne peut être désactivé car le module %s en dépend. Désactivé d'abord ces modules puis réessayer." 
    3104  
    3105 #: amp_conf/htdocs/admin/page.modules.php:368 
    3106 #, php-format 
    3107 msgid "%s %s will be uninstalled" 
    3108 msgstr "%s %s va être désinstallé" 
    3109  
    3110 #: amp_conf/htdocs/admin/page.modules.php:385 
    3111 msgid "Errors with selection:" 
    3112 msgstr "Erreurs avec sélection:" 
    3113  
    3114 #: amp_conf/htdocs/admin/page.modules.php:394 
    3115 msgid "You may confirm the remaining selection and then try the again for the listed issues once the required dependencies have been met:" 
    3116 msgstr "Vous pouvez confirmer la sélection restante et essayez de nouveau pour les éléments listés une fois que les dépendances requises sont respectées." 
    3117  
    3118 #: amp_conf/htdocs/admin/page.modules.php:396 
    3119 msgid "Please confirm the following actions:" 
    3120 msgstr "Merci de confirmer les actions suivantes:" 
    3121  
    3122 #: amp_conf/htdocs/admin/page.modules.php:403 
    3123 msgid "Confirm" 
    3124 msgstr "Confirmer" 
    3125  
    3126 #: amp_conf/htdocs/admin/page.modules.php:405 
    3127 msgid "No actions to perform" 
    3128 msgstr "Aucune action à exécuter" 
    3129  
    3130 #: amp_conf/htdocs/admin/page.modules.php:406 
    3131 msgid "Please select at least one action to perform by clicking on the module, and selecting an action on the \"Action\" tab." 
    3132 msgstr "Merci de sélectionner au moins une action à exécuter en cliquant sur le module ainsi que sur la tabulation \"Action\"" 
    3133  
    3134 #: amp_conf/htdocs/admin/page.modules.php:414 
    3135 #: amp_conf/htdocs/admin/page.modules.php:466 
    3136 msgid "Manage local modules" 
    3137 msgstr "Gestion des modules locaux" 
    3138  
    3139 #: amp_conf/htdocs/admin/page.modules.php:416 
    3140 #: amp_conf/htdocs/admin/page.modules.php:471 
    3141 msgid "Check for updates online" 
    3142 msgstr "Rechercher des mises à jour" 
    3143  
    3144 #: amp_conf/htdocs/admin/page.modules.php:416 
    3145 #: amp_conf/htdocs/admin/page.modules.php:471 
    3146 msgid "Checking for updates will transmit your FreePBX and Asterisk version numbers along with a unique but random identifier. This is used to provide proper update information and track version usage to focus development and maintenance efforts. No private information is transmitted." 
    3147 msgstr "Rechercher des mises à jour transmet les numéros de version de FreePBX et d'Asterisk avec un identifiant unique. Cela permet de fournir des informations de mises à jour pertinentes et de suivre l'utilisation des versions pour le développement et la maintenance. Aucune information privée n'est transmise." 
    3148  
    3149 #: amp_conf/htdocs/admin/page.modules.php:421 
    3150 #: amp_conf/htdocs/admin/page.modules.php:473 
    3151 msgid "Upload module" 
    3152 msgstr "Chargement d'un module" 
    3153  
    3154 #: amp_conf/htdocs/admin/page.modules.php:427 
    3155 #, php-format 
    3156 msgid "The following error(s) occurred processing the uploaded file: %s" 
    3157 msgstr "L'erreur suivante s'est produite pendant le téléchargement du fichier : %s" 
    3158  
    3159 #: amp_conf/htdocs/admin/page.modules.php:429 
    3160 #, php-format 
    3161 msgid "You should fix the problem or select another file and %s." 
    3162 msgstr "Vous devez résoudre ce problÚme ou sélectionner un autre fichier et %s" 
    3163  
    3164 #: amp_conf/htdocs/admin/page.modules.php:430 
    3165 msgid "try again" 
    3166 msgstr "essayer de nouveau" 
    3167  
    3168 #: amp_conf/htdocs/admin/page.modules.php:434 
    3169 #, php-format 
    3170 msgid "Module uploaded successfully. You need to enable the module using %s to make it available." 
    3171 msgstr "Module téléchargé avec succÚs. Vous devez l'activer en utilsant %s." 
    3172  
    3173 #: amp_conf/htdocs/admin/page.modules.php:435 
    3174 msgid "local module administration" 
    3175 msgstr "Administration des Modules locaux" 
    3176  
    3177 #: amp_conf/htdocs/admin/page.modules.php:440 
    3178 msgid "You can upload a tar gzip file containing a FreePBX module from your local system. If a module with the same name already exists, it will be overwritten." 
    3179 msgstr "Vous pouvez télécharger un fichier tar gzip contenant un module de votre systÚme local. Si un module ayant le même nom existe, il sera remplacé." 
    3180  
    3181 #: amp_conf/htdocs/admin/page.modules.php:467 
    3182 msgid "Show only upgradable" 
    3183 msgstr "Ne montrer que les mises à jour" 
    3184  
    3185 #: amp_conf/htdocs/admin/page.modules.php:484 
    3186 #: amp_conf/htdocs/admin/page.modules.php:768 
    3187 msgid "Download all" 
    3188 msgstr "Téléchargements de tous" 
    3189  
    3190 #: amp_conf/htdocs/admin/page.modules.php:485 
    3191 #: amp_conf/htdocs/admin/page.modules.php:769 
    3192 msgid "Upgrade all" 
    3193 msgstr "Mis à jour de tous" 
    3194  
    3195 #: amp_conf/htdocs/admin/page.modules.php:487 
    3196 #: amp_conf/htdocs/admin/page.modules.php:771 
    3197 msgid "Reset" 
    3198 msgstr "Remise à 0" 
    3199  
    3200 #: amp_conf/htdocs/admin/page.modules.php:488 
    3201 #: amp_conf/htdocs/admin/page.modules.php:772 
    3202 msgid "Process" 
    3203 msgstr "Exécution" 
    3204  
    3205 #: amp_conf/htdocs/admin/page.modules.php:494 
    3206 msgid "Module" 
    3207 msgstr "Module" 
    3208  
    3209 #: amp_conf/htdocs/admin/page.modules.php:495 
    3210 msgid "Type" 
    3211 msgstr "Type" 
    3212  
    3213 #: amp_conf/htdocs/admin/page.modules.php:496 
    3214 msgid "Version" 
    3215 msgstr "Version" 
    3216  
    3217 #: amp_conf/htdocs/admin/page.modules.php:510 
    3218 #: amp_conf/htdocs/admin/page.modules.php:585 
    3219 msgid "Broken" 
    3220 msgstr "Cassé" 
    3221  
    3222 #: amp_conf/htdocs/admin/page.modules.php:562 
    3223 msgid "Not Installed (Locally available)" 
    3224 msgstr "Non installé (disponible en local)" 
    3225  
    3226 #: amp_conf/htdocs/admin/page.modules.php:564 
    3227 #, php-format 
    3228 msgid "Not Installed (Available online: %s)" 
    3229 msgstr "Non installé (disponible réseau: %s)" 
    3230  
    3231 #: amp_conf/htdocs/admin/page.modules.php:571 
    3232 #, php-format 
    3233 msgid "Disabled; Online upgrade available (%s)" 
    3234 msgstr "Désactivé; mise à jour réseau disponible (%s)" 
    3235  
    3236 #: amp_conf/htdocs/admin/page.modules.php:573 
    3237 #, php-format 
    3238 msgid "Disabled; Newer than online version (%s)" 
    3239 msgstr "Désactive; plus récent que la version réseau (%s)" 
    3240  
    3241 #: amp_conf/htdocs/admin/page.modules.php:575 
    3242 msgid "Disabled; up to date" 
    3243 msgstr "Désactivé; mis à jour" 
    3244  
    3245 #: amp_conf/htdocs/admin/page.modules.php:582 
    3246 #, php-format 
    3247 msgid "Disabled; Pending upgrade to %s" 
    3248 msgstr "Désactivé; attente mise à jour vers %s" 
    3249  
    3250 #: amp_conf/htdocs/admin/page.modules.php:592 
    3251 #, php-format 
    3252 msgid "Online upgrade available (%s)" 
    3253 msgstr "Mise à jour réseau disponible (%s)" 
    3254  
    3255 #: amp_conf/htdocs/admin/page.modules.php:594 
    3256 #, php-format 
    3257 msgid "Newer than online version (%s)" 
    3258 msgstr "Plus récent que la version réseau (%s)" 
    3259  
    3260 #: amp_conf/htdocs/admin/page.modules.php:596 
    3261 msgid "Enabled and up to date" 
    3262 msgstr "Activé et à jour" 
    3263  
    3264 #: amp_conf/htdocs/admin/page.modules.php:600 
    3265 msgid "Enabled; Not available online" 
    3266 msgstr "Activé, non disponible réseau" 
    3267  
    3268 # msgid "DID Number" 
    3269 # msgstr "Num&eacute;ro DID" 
    3270 # msgid "Set Destination" 
    3271 # msgstr "Choisir la destination" 
    3272 # msgid "Use 'Incoming Calls' settings" 
    3273 # msgstr "Utiliser les r&eacute;glages 'Appels entrants'" 
    3274 # ### Fin message DID 
    3275 #: amp_conf/htdocs/admin/page.modules.php:620 
    3276 msgid "Attention" 
    3277 msgstr "Attention" 
    3278  
    3279 # msgid "DID Number" 
    3280 # msgstr "Num&eacute;ro DID" 
    3281 # msgid "Set Destination" 
    3282 # msgstr "Choisir la destination" 
    3283 # msgid "Use 'Incoming Calls' settings" 
    3284 # msgstr "Utiliser les r&eacute;glages 'Appels entrants'" 
    3285 # ### Fin message DID 
    3286 #: amp_conf/htdocs/admin/page.modules.php:621 
    3287 msgid "attention" 
    3288 msgstr "attention" 
    3289  
    3290 #: amp_conf/htdocs/admin/page.modules.php:625 
    3291 msgid "Action" 
    3292 msgstr "Action" 
    3293  
    3294 #: amp_conf/htdocs/admin/page.modules.php:628 
    3295 msgid "No Action" 
    3296 msgstr "Pas d'action" 
    3297  
    3298 #: amp_conf/htdocs/admin/page.modules.php:635 
    3299 #: amp_conf/htdocs/admin/page.modules.php:668 
    3300 msgid "Install" 
    3301 msgstr "Installation" 
    3302  
    3303 #: amp_conf/htdocs/admin/page.modules.php:638 
    3304 msgid "Download and Install" 
    3305 msgstr "Téléchargement et installation" 
    3306  
    3307 #: amp_conf/htdocs/admin/page.modules.php:647 
    3308 #: amp_conf/htdocs/admin/page.modules.php:662 
    3309 #: amp_conf/htdocs/admin/page.modules.php:670 
    3310 #: amp_conf/htdocs/admin/page.modules.php:690 
    3311 msgid "Uninstall" 
    3312 msgstr "Désinstallation" 
    3313  
    3314 #: amp_conf/htdocs/admin/page.modules.php:652 
    3315 #, php-format 
    3316 msgid "Download %s, keep Disabled" 
    3317 msgstr "Téléchargement %s, reste désactivé" 
    3318  
    3319 #: amp_conf/htdocs/admin/page.modules.php:660 
    3320 #, php-format 
    3321 msgid "Upgrade to %s and Enable" 
    3322 msgstr "Mise à jour %s et activé" 
    3323  
    3324 #: amp_conf/htdocs/admin/page.modules.php:680 
    3325 #, php-format 
    3326 msgid "Download and Upgrade to %s" 
    3327 msgstr "Téléchargement et mis à jour %s" 
    3328  
    3329 #: amp_conf/htdocs/admin/page.modules.php:698 
    3330 #, php-format 
    3331 msgid "Description for version %s" 
    3332 msgstr "Description de la version %s" 
    3333  
    3334 #: amp_conf/htdocs/admin/page.modules.php:699 
    3335 msgid "description" 
    3336 msgstr "description" 
    3337  
    3338 #: amp_conf/htdocs/admin/page.modules.php:701 
    3339 msgid "No description is available." 
    3340 msgstr "Aucune description disponible" 
    3341  
    3342 #: amp_conf/htdocs/admin/page.modules.php:704 
    3343 #: amp_conf/htdocs/admin/page.modules.php:706 
    3344 msgid "More info" 
    3345 msgstr "Plus d'infos" 
    3346  
    3347 #: amp_conf/htdocs/admin/page.modules.php:706 
    3348 #, php-format 
    3349 msgid "Get help for %s" 
    3350 msgstr "Aide pour %s" 
    3351  
    3352 #: amp_conf/htdocs/admin/page.modules.php:711 
    3353 msgid "Changelog" 
    3354 msgstr "Modifications" 
    3355  
    3356 #: amp_conf/htdocs/admin/page.modules.php:712 
    3357 #, php-format 
    3358 msgid "Change Log for version %s" 
    3359 msgstr "Modification version %s" 
    3360  
    3361 #: amp_conf/htdocs/admin/page.modules.php:732 
    3362 msgid "Debug" 
    3363 msgstr "Debogage" 
    3364  
    3365 #: amp_conf/htdocs/admin/page.modules.php:757 
    3366 msgid "All available modules are up-to-date and installed." 
    3367 msgstr "Tous les modules disponibles sont à jour et installés" 
    3368  
    3369 #: amp_conf/htdocs/admin/page.modules.php:759 
    3370 msgid "No modules to display." 
    3371 msgstr "Aucun module à afficher" 
    3372  
    3373 #: amp_conf/htdocs/admin/page.modules.php:809 
    3374 msgid "Untarring.." 
    3375 msgstr "Décompression: " 
    3376  
    3377 #: amp_conf/htdocs/admin/page.modules.php:829 
    3378 msgid "Done." 
    3379 msgstr "exécutée" 
    3380  
    3381 msgid "Internal Options & Configuration" 
    3382 msgstr "Options  et configuration internes" 
    3383  
    3384 msgid "Inbound Call Control" 
    3385 msgstr "ContrÃŽle des appels entrants" 
    3386  
    3387 msgid "Maintenance" 
    3388 msgstr "Maintenance" 
    3389  
    3390 msgid "Support" 
    3391 msgstr "Support" 
    3392  
    3393 msgid "System Administration" 
    3394 msgstr "Administration systÚme" 
    3395  
    3396 msgid "Third Party Addon" 
    3397 msgstr "AddOn Tierce partie" 
    3398  
    3399 msgid "Module Admin" 
    3400 msgstr "Administration Modules" 
    3401  
    3402 msgid "FreePBX System Status" 
    3403 msgstr "Statut SystÚme FreePBX" 
    3404  
    3405 msgid "Setup" 
    3406 msgstr "Configuration" 
    3407  
    3408 msgid "Tools" 
    3409 msgstr "Outils" 
    3410  
    3411 msgid "Config Edit" 
    3412 msgstr "Edition configuration" 
    3413  
    3414 msgid "Sys Info" 
    3415 msgstr "Information systÚme" 
    3416  
    3417 msgid "A2Billing Admin" 
    3418 msgstr "Administration A2Billing" 
    3419  
    3420 msgid "Time Groups" 
    3421 msgstr "Groupes temps" 
    3422  
    3423 msgid "Custom Destinations" 
    3424 msgstr "Destinations personnalisées" 
    3425  
    3426 msgid "Custom Extensions" 
    3427 msgstr "Extensions personnalisées" 
    3428  
    3429 msgid "Custom Applications" 
    3430 msgstr "Applications personnalisées" 
  • freepbx/trunk/amp_conf/htdocs/admin/i18n/sv_SE/LC_MESSAGES/amp.po

    r7646 r8560  
     1# This file is part of FreePBX. 
     2# 
     3#    FreePBX is free software: you can redistribute it and/or modify 
     4#    it under the terms of the GNU General Public License as published by 
     5#    the Free Software Foundation, either version 2 of the License, or 
     6#    (at your option) any later version. 
     7# 
     8#    FreePBX is distributed in the hope that it will be useful, 
     9#    but WITHOUT ANY WARRANTY; without even the implied warranty of 
     10#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     11#    GNU General Public License for more details. 
     12# 
     13#    You should have received a copy of the GNU General Public License 
     14#    along with FreePBX.  If not, see <http://www.gnu.org/licenses/>. 
     15# 
    116# Swedish translation for FreePBX. 
    2 # Copyright (C) 2008 
    3 # This file is distributed under the same license as the FreePBX package. 
    4 # mickecamino@gmail.com, 2008. 
     17# Copyright (C) 2009 Mikael Carlsson 
    518# 
    619msgid "" 
     
    922"Report-Msgid-Bugs-To: \n" 
    1023"POT-Creation-Date: 2008-11-12 23:00+0100\n" 
    11 "PO-Revision-Date: 2009-01-07 19:00+0100\n" 
     24"PO-Revision-Date: 2009-06-14 17:58+0100\n" 
    1225"Last-Translator: Mikael Carlsson <mickecamino@gmail.com>\n" 
    1326"Language-Team: Swedish\n" 
     
    17301743#: admin/modules/core/functions.inc.php:4754 
    17311744msgid "The caller id name for this device will be set to this description until it is logged into." 
    1732 msgstr "Nummerpresentationsnamnet för denna enhet kommer att vara detta man tills nÃ¥gon logga in pÃ¥ enheten." 
     1745msgstr "Nummerpresentationsnamnet för denna enhet kommer att vara detta man tills nÃ¥gon loggar in pÃ¥ enheten." 
    17331746 
    17341747#: admin/modules/core/functions.inc.php:4755 
  • freepbx/trunk/amp_conf/htdocs/admin/page.modules.php

    r7906 r8560  
    397397    } 
    398398     
    399     // Write out the erros, if there are additional actions that can be accomplished list those next with the choice to 
     399    // Write out the errors, if there are additional actions that can be accomplished list those next with the choice to 
    400400    // process which will ignore the ones with errors but process the rest. 
    401401    // 
     
    477477     
    478478    if ($online) { 
    479       // Check for annoucements such as security advisories, required updates, etc. 
     479      // Check for announcements such as security advisories, required updates, etc. 
    480480      // 
    481481      $announcements = module_get_annoucements(); 
  • freepbx/trunk/amp_conf/htdocs/admin/views/freepbx_admin.php

    r7646 r8560  
    140140    if (!isset($_COOKIE['lang'])) { 
    141141      $_COOKIE['lang'] = "en_US"; 
    142     }  
     142    } else { 
     143        setcookie("lang", $_COOKIE['lang'], time()+365*24*60*60); 
     144    } 
    143145?> 
    144146&nbsp;&nbsp;&nbsp; 
  • freepbx/trunk/amp_conf/htdocs/recordings/locale/uk_UA/LC_MESSAGES/ari.po

    r7771 r8560  
    1414#    along with FreePBX.  If not, see <http://www.gnu.org/licenses/>. 
    1515# 
    16 #    Copyright 2009, Oleh Miniv <oleg-min@ukr.net> 
     16# Copyright (C) 2009 Oleh Miniv <oleg-min@ukr.net> 
     17
    1718msgid "" 
    1819msgstr "" 
     
    2021"Report-Msgid-Bugs-To: \n" 
    2122"POT-Creation-Date: 2008-12-07 12:40+0100\n" 
    22 "PO-Revision-Date: 2009-05-22 17:05+0300\n" 
    23 "Last-Translator: CrabMan\n" 
     23"PO-Revision-Date: 2009-07-27 12:09+0300\n" 
     24"Last-Translator: Oleh Miniv <oleg-min@ukr.net>\n" 
    2425"Language-Team: Oleh Miniv <oleg-min@ukr.net>\n" 
    2526"MIME-Version: 1.0\n" 
     
    3536#: includes/asi.php:54 
    3637msgid "Asterisk authentication failed:" 
    37 msgstr "
     38msgstr "ППЌОлка автеМтОфікації в asterisk:
    3839 
    3940#: includes/asi.php:96 
     
    4243#: includes/asi.php:144 
    4344msgid "Asterisk command not understood" 
    44 msgstr "
     45msgstr "НезрПзуЌіла кПЌаМЎа Ўля asterisk
    4546 
    4647#: includes/bootstrap.php:125 
    4748#, php-format 
    4849msgid "To many directories in %s Not all files processed" 
    49 msgstr "
     50msgstr "ЗаМаЎтП багатП папПк в %s. ОбрПблеМП Ме всі файлО
    5051 
    5152#: includes/bootstrap.php:228 
     
    197198 
    198199#: includes/main.conf.php:243 
    199 #, fuzzy 
    200200msgid "Call Forward Busy Prompting Deactivate" 
    201 msgstr "СОстеЌа ПереаЎресації ВОклОку
     201msgstr "
    202202 
    203203#: includes/main.conf.php:244 
     
    207207#: includes/main.conf.php:245 
    208208msgid "Call Forward No Answer/Unavailable Deactivate" 
    209 msgstr "
     209msgstr "ВОЌкМутО ПереаЎресацію ВОклОку
    210210 
    211211#: includes/main.conf.php:246 
     
    227227#: includes/main.conf.php:250 
    228228msgid "My Voicemail" 
    229 msgstr "МПя ГПлПсПва ППшта
     229msgstr "ГПлПсПва ППшта (з свПгП телефПМу)
    230230 
    231231#: includes/main.conf.php:251 
    232232msgid "Dial Voicemail" 
    233 msgstr "НабратО ГПлПсПву ППшту
     233msgstr "ГПлПсПва ППшта (з буЎь-якПгП телефПМу)
    234234 
    235235#: includes/main.conf.php:304 
     
    271271#: modules/voicemail.module:169 
    272272msgid "One or more messages must be selected before clicking delete." 
    273 msgstr "
     273msgstr "ВОберіть прОМайЌМі ПЎМе пПвіЎПЌлеММя переЎ тОЌ як вОЎалятО.
    274274 
    275275#: modules/callmonitor.module:137 
     
    337337#: modules/voicemail.module:429 
    338338msgid "Download" 
    339 msgstr "ЗаваМтажОтО" 
     339msgstr "ЗберегтО" 
    340340 
    341341#: modules/callmonitor.module:279 
     
    383383#: modules/followme.module:43 
    384384msgid "Follow Me" 
    385 msgstr "
     385msgstr "Follow Me
    386386 
    387387#: modules/followme.module:100 
    388388msgid "Your Follow-Me has been disabled, REFRESH your browser to remove this message" 
    389 msgstr "Ваш Follow-Me булП забПрПМеМП, ОНОВІТЬ стПріМку абО вОЎалОтО це пПвіЎПЌлеММя" 
     389msgstr "Ваш Follow Me булП забПрПМеМП, ОНОВІТЬ стПріМку абО вОЎалОтО це пПвіЎПЌлеММя" 
    390390 
    391391#: modules/followme.module:101 
     
    393393#, php-format 
    394394msgid "Check with your Telephone System Administrator if you think there is a problem" 
    395 msgstr "
     395msgstr "ЯкщП вО вважаєте, щП є прПблеЌа - зверМіться ЎП АЎЌіМістратПра ТелефПММПї Мережі.
    396396 
    397397#: modules/followme.module:118 
    398 #, fuzzy 
    399398msgid "Follow-Me pre-ring time not changed" 
    400 msgstr "ВО Ме вказалО куЎО переаЎресПвуватО ЎзвіМПк
     399msgstr "
    401400 
    402401#: modules/followme.module:119 
     
    408407#: modules/followme.module:141 
    409408msgid "Follow-Me list ring time not changed" 
    410 msgstr "
     409msgstr "Час вОклОку спОску Follow Me Ме зЌіМеМП
    411410 
    412411#: modules/followme.module:185 
    413412msgid "Follow-Me list must contain at least one valid number" 
    414 msgstr "
     413msgstr "СпОсПк Follow Me пПвОМеМ ЌістОтО прОМайЌМі ПЎОМ працюючОй МПЌер
    415414 
    416415#: modules/followme.module:186 
    417416#, php-format 
    418417msgid "The following: %s is not valid" 
    419 msgstr "
     418msgstr "НаступМе: %s Ме працюватОЌе
    420419 
    421420#: modules/followme.module:291 
     
    424423#: modules/settings.module:430 
    425424msgid "Enable" 
    426 msgstr "ДПзвПлОтО" 
     425msgstr "АктОвуватО" 
    427426 
    428427#: modules/followme.module:292 
     
    437436#: modules/followme.module:302 
    438437msgid "Follow Me List:" 
    439 msgstr "СпОсПк Follow Me
     438msgstr "СпОсПк Follow Me:
    440439 
    441440#: modules/followme.module:303 
    442441#, php-format 
    443442msgid "Extensions and outside numbers to ring next." 
    444 msgstr "
     443msgstr "НаступМі МПЌерО Ма які ЎзвПМОтО.
    445444 
    446445#: modules/followme.module:304 
    447446#, php-format 
    448447msgid "Include %s to keep it ringing." 
    449 msgstr "
     448msgstr "ОбПв'язкПвП залОште %s в цьПЌу спОску.
    450449 
    451450#: modules/followme.module:310 
    452451#, php-format 
    453452msgid "Ring %s First For:" 
    454 msgstr "
     453msgstr "ДзвПМОтО %s прПтягПЌ:
    455454 
    456455#: modules/followme.module:311 
    457456#, php-format 
    458457msgid "Time to ring extension %s before ringing the %s Follow Me List %s" 
    459 msgstr "
     458msgstr "Час прПтягПЌ якПгП ЎзвПМОтОЌе МПЌер %s переЎ тОЌ як перейтО ЎП спОску %s Follow Me %s
    460459 
    461460#: modules/followme.module:321 
     
    466465#: modules/followme.module:324 
    467466msgid "Ring Followme List for:" 
    468 msgstr "
     467msgstr "ДзвПМОтО спОску Follow Me:
    469468 
    470469#: modules/followme.module:324 
    471470msgid "Time to ring the Follow Me List." 
    472 msgstr "
     471msgstr "Час, прПтягПЌ якПгП ЎзвПМОтОЌе спОсПк Follow Me.
    473472 
    474473#: modules/followme.module:339 
     
    482481#: modules/followme.module:354 
    483482msgid "Followme Settings" 
    484 msgstr "НалаштуваММя Followme" 
     483msgstr "НалаштуваММя Follow Me" 
    485484 
    486485#: modules/followme.module:356 
    487486#, php-format 
    488487msgid "Followme Settings for %s (%s)" 
    489 msgstr "НалаштуваММя Followme Ўля %s (%s)" 
     488msgstr "НалаштуваММя Follow Me Ўля %s (%s)" 
    490489 
    491490#: modules/followme.module:382 
     
    524523 
    525524#: modules/phonefeatures.module:422 
    526 #, fuzzy 
    527525msgid "Call Screening:" 
    528 msgstr "ПереаЎресація ВОклОку:
     526msgstr "
    529527 
    530528#: modules/phonefeatures.module:422 
     
    628626#: modules/settings.module:488 
    629627msgid "Call Me Number:" 
    630 msgstr "
     628msgstr "НПЌер 'ППЎзвПМО ЌеМі'
    631629 
    632630#: modules/settings.module:505 
     
    704702#: modules/VmX.module:300 
    705703msgid "Menu options below are available during your personal voicemail greeting playback. <br/><br/>Check both to use at all times." 
    706 msgstr "
     704msgstr "Опції ЎПступМі піЎ час віЎтвПреММя пПвіЎПЌлеММя гПлПсПвПї пПштО.
    707705 
    708706#: modules/VmX.module:302 
     
    735733"\t\t\t\t\tUncheck to enter another destination here." 
    736734msgstr "" 
     735"НатОскаММя клавіші 0 піЎ час прОвітаММя гПлПсПвПї пПштО перевеЎе вОклОк Ма ОператПра. \n" 
     736"\t\t\t\t\tЗМіЌіть вОЎілеММя, щПб ввестО іМшОй МПЌер." 
    737737 
    738738#: modules/VmX.module:327 
     
    750750#: modules/VmX.module:336 
    751751msgid "Enter an alternate number here, then change your personal voicemail greeting to let callers know to press 1 to reach that number. <br/><br/>If you'd like to use your Follow Me List, check \"Send to Follow Me\" and disable Follow Me above." 
    752 msgstr "
     752msgstr "ВвеЎіть сюЎО МПЌер та пПвіЎПЌте в прОвітаММі гПлПсПвПї пПштО, щП пПтрібМП МатОсМутО 1 абО ЎПЎзвПМОтОся Ма цей МПЌер.<br/><br/>If you'd like to use your Follow Me List, check \"Send to Follow Me\" and disable Follow Me above.
    753753 
    754754#: modules/VmX.module:349 
    755755msgid "Send to Follow-Me" 
    756 msgstr "ВіЎправОтО ЎП Follow-Me" 
     756msgstr "ВіЎправОтО ЎП Follow Me" 
    757757 
    758758#: modules/VmX.module:357 
     
    762762#: modules/VmX.module:357 
    763763msgid "Use any extensions, ringgroups, queues or external numbers. <br/><br/>Remember to re-record your personal voicemail greeting and include instructions. Run a test to make sure that the number is functional." 
    764 msgstr "
     764msgstr "ВОкПрОстПвуйте буЎь-якОй вМутрішМій МПЌер, групу МПЌерів, чергу абП зПвМішМій МПЌер. <br/><br/>Не забуЎьте запОсатО МПві іМструкції в прОвітаММі гПлПсПвПї пПштО. ПрПтестуйте чО ввеЎеМОй ваЌО МПЌер працює.
    765765 
    766766#: modules/VmX.module:371 
    767767#, php-format 
    768768msgid "VmX Locator&#8482; Settings for %s (%s)" 
    769 msgstr "VmX Locator&#8482; НалаштуваММя Ўля %s (%s)" 
     769msgstr "НалаштуваММя VmX Locator&#8482; Ўля %s (%s)" 
    770770 
    771771#: modules/voicemail.module:51 
     
    778778 
    779779#: modules/voicemail.module:185 
    780 #, fuzzy 
    781780msgid "One or more messages must be selected before clicking move_to." 
    782 msgstr "ПереЎ переЌіщеММяЌ пПвіЎПЌлеММя вОберіть папку." 
     781msgstr "ВОберіть прОМайЌМі ПЎМе пПвіЎПЌлеММя переЎ тОЌ як переЌіщуватО." 
    783782 
    784783#: modules/voicemail.module:194 
     
    787786 
    788787#: modules/voicemail.module:202 
    789 #, fuzzy 
    790788msgid "One or more messages must be selected before clicking forward_to." 
    791 msgstr "ВОберіть аЎресата, перш Між, пересОлатО пПвіЎПЌлеММя
     789msgstr "ВОберіть прОМайЌМі ПЎМе пПвіЎПЌлеММя переЎ тОЌ як пересОлатО.
    792790 
    793791#: modules/voicemail.module:345 
     
    817815#: modules/voicemail.module:427 
    818816msgid "Play message at: " 
    819 msgstr "
     817msgstr "ВіЎтвПрОтО пПвіЎПЌлеММя Ма МПЌері:
    820818 
    821819#: modules/voicemail.module:432 
     
    849847 
    850848#: modules/voicemail.module:507 
    851 #, fuzzy 
    852849msgid "Calling: " 
    853 msgstr "ПереаЎресація ВОклОку:" 
     850msgstr "НабОраю:" 
    854851 
    855852#: modules/voicemail.module:508 
    856853msgid ". Please wait patiently..." 
    857 msgstr ". БуЎь-ласка, зачекайте..." 
     854msgstr ". БуЎь-ласка, ЎПчекайтеся ЎзвіМка..." 
    858855 
    859856#: modules/voicemail.module:779