Contact Form 7 - Version 3.3.3

Version Description

  • Fixed: Logic of resolving upload directory on WordPress 3.5 multi-site install.
  • The jQuery Form Plugin (jquery.form.js) has been updated to 3.25.0.
  • Translations for French, German, Russian and Turkish have been updated.
Download this release

Release Info

Developer takayukister
Plugin Icon 128x128 Contact Form 7
Version 3.3.3
Comparing to
See all releases

Code changes from version 3.3.2 to 3.3.3

admin/images/fade-butt.png ADDED
Binary file
admin/js/scripts.js CHANGED
@@ -5,8 +5,9 @@
5
  $('div.cf7com-links').insertAfter($('div.wrap h2:first'));
6
 
7
  $.extend($.tgPanes, _wpcf7.tagGenerators);
8
- $('#taggenerator').tagGenerator(_wpcf7.generateTag,
9
- { dropdownIconUrl: _wpcf7.pluginUrl + '/admin/images/dropdown.gif' });
 
10
 
11
  $('input#wpcf7-title:disabled').css({cursor: 'default'});
12
 
5
  $('div.cf7com-links').insertAfter($('div.wrap h2:first'));
6
 
7
  $.extend($.tgPanes, _wpcf7.tagGenerators);
8
+ $('#taggenerator').tagGenerator(_wpcf7.generateTag, {
9
+ dropdownIconUrl: _wpcf7.pluginUrl + '/admin/images/dropdown.gif',
10
+ fadebuttImageUrl: _wpcf7.pluginUrl + '/admin/images/fade-butt.png' });
11
 
12
  $('input#wpcf7-title:disabled').css({cursor: 'default'});
13
 
admin/js/taggenerator.js CHANGED
@@ -8,7 +8,7 @@
8
  selector.css({
9
  border: '1px solid #ddd',
10
  padding: '2px 4px',
11
- background: '#fff url( ../wp-admin/images/fade-butt.png ) repeat-x 0 0',
12
  '-moz-border-radius': '3px',
13
  '-khtml-border-radius': '3px',
14
  '-webkit-border-radius': '3px',
@@ -26,7 +26,7 @@
26
  });
27
  selector.mouseup(function() {
28
  $(this).css({
29
- background: '#fff url( ../wp-admin/images/fade-butt.png ) repeat-x 0 0'
30
  });
31
  });
32
  selector.click(function() {
8
  selector.css({
9
  border: '1px solid #ddd',
10
  padding: '2px 4px',
11
+ background: '#fff url(' + options.fadebuttImageUrl + ') repeat-x 0 0',
12
  '-moz-border-radius': '3px',
13
  '-khtml-border-radius': '3px',
14
  '-webkit-border-radius': '3px',
26
  });
27
  selector.mouseup(function() {
28
  $(this).css({
29
+ background: '#fff url(' + options.fadebuttImageUrl + ') repeat-x 0 0'
30
  });
31
  });
32
  selector.click(function() {
includes/controller.php CHANGED
@@ -228,7 +228,7 @@ function wpcf7_enqueue_scripts() {
228
  wp_deregister_script( 'jquery-form' );
229
  wp_register_script( 'jquery-form',
230
  wpcf7_plugin_url( 'includes/js/jquery.form.min.js' ),
231
- array( 'jquery' ), '3.23', true );
232
 
233
  $in_footer = true;
234
  if ( 'header' === WPCF7_LOAD_JS )
228
  wp_deregister_script( 'jquery-form' );
229
  wp_register_script( 'jquery-form',
230
  wpcf7_plugin_url( 'includes/js/jquery.form.min.js' ),
231
+ array( 'jquery' ), '3.25.0-2013.01.18', true );
232
 
233
  $in_footer = true;
234
  if ( 'header' === WPCF7_LOAD_JS )
includes/functions.php CHANGED
@@ -168,15 +168,11 @@ function wpcf7_upload_dir( $type = false ) {
168
  && ( ! isset( $switched ) || $switched === false ) ) {
169
  $dir = ABSPATH . UPLOADS;
170
  $url = trailingslashit( $siteurl ) . UPLOADS;
171
- }
172
-
173
- if ( is_multisite() && ! $main_override
174
- && ( ! isset( $switched ) || $switched === false ) ) {
175
 
176
- if ( defined( 'BLOGUPLOADDIR' ) )
177
  $dir = untrailingslashit( BLOGUPLOADDIR );
178
-
179
- $url = str_replace( UPLOADS, 'files', $url );
180
  }
181
 
182
  $uploads = apply_filters( 'wpcf7_upload_dir', array( 'dir' => $dir, 'url' => $url ) );
168
  && ( ! isset( $switched ) || $switched === false ) ) {
169
  $dir = ABSPATH . UPLOADS;
170
  $url = trailingslashit( $siteurl ) . UPLOADS;
 
 
 
 
171
 
172
+ if ( is_multisite() && defined( 'BLOGUPLOADDIR' ) ) {
173
  $dir = untrailingslashit( BLOGUPLOADDIR );
174
+ $url = str_replace( UPLOADS, 'files', $url );
175
+ }
176
  }
177
 
178
  $uploads = apply_filters( 'wpcf7_upload_dir', array( 'dir' => $dir, 'url' => $url ) );
includes/js/jquery.form.js CHANGED
@@ -1,6 +1,6 @@
1
  /*!
2
  * jQuery Form Plugin
3
- * version: 3.23 (11-DEC-2012)
4
  * @requires jQuery v1.5 or later
5
  *
6
  * Examples and documentation at: http://malsup.com/jquery/form/
@@ -465,11 +465,11 @@ $.fn.ajaxSubmit = function(options) {
465
  // if using the $.param format that allows for multiple values with the same name
466
  if($.isPlainObject(s.extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) {
467
  extraInputs.push(
468
- $('<input type="hidden" name="'+s.extraData[n].name+'">').attr('value',s.extraData[n].value)
469
  .appendTo(form)[0]);
470
  } else {
471
  extraInputs.push(
472
- $('<input type="hidden" name="'+n+'">').attr('value',s.extraData[n])
473
  .appendTo(form)[0]);
474
  }
475
  }
@@ -1046,7 +1046,7 @@ $.fn.clearFields = $.fn.clearInputs = function(includeHidden) {
1046
  this.selectedIndex = -1;
1047
  }
1048
  else if (t == "file") {
1049
- if ($.browser.msie) {
1050
  $(this).replaceWith($(this).clone());
1051
  } else {
1052
  $(this).val('');
1
  /*!
2
  * jQuery Form Plugin
3
+ * version: 3.25.0-2013.01.18
4
  * @requires jQuery v1.5 or later
5
  *
6
  * Examples and documentation at: http://malsup.com/jquery/form/
465
  // if using the $.param format that allows for multiple values with the same name
466
  if($.isPlainObject(s.extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) {
467
  extraInputs.push(
468
+ $('<input type="hidden" name="'+s.extraData[n].name+'">').val(s.extraData[n].value)
469
  .appendTo(form)[0]);
470
  } else {
471
  extraInputs.push(
472
+ $('<input type="hidden" name="'+n+'">').val(s.extraData[n])
473
  .appendTo(form)[0]);
474
  }
475
  }
1046
  this.selectedIndex = -1;
1047
  }
1048
  else if (t == "file") {
1049
+ if (/MSIE/.test(navigator.userAgent)) {
1050
  $(this).replaceWith($(this).clone());
1051
  } else {
1052
  $(this).val('');
includes/js/jquery.form.min.js CHANGED
@@ -1,6 +1,6 @@
1
  /*!
2
  * jQuery Form Plugin
3
- * version: 3.23 (11-DEC-2012)
4
  * @requires jQuery v1.5 or later
5
  *
6
  * Examples and documentation at: http://malsup.com/jquery/form/
@@ -9,4 +9,4 @@
9
  * http://malsup.github.com/mit-license.txt
10
  * http://malsup.github.com/gpl-license-v2.txt
11
  */
12
- (function(e){var c={};c.fileapi=e("<input type='file'/>").get(0).files!==undefined;c.formdata=window.FormData!==undefined;e.fn.ajaxSubmit=function(h){if(!this.length){d("ajaxSubmit: skipping submit process - no element selected");return this}var g,y,j,m=this;if(typeof h=="function"){h={success:h}}g=this.attr("method");y=this.attr("action");j=(typeof y==="string")?e.trim(y):"";j=j||window.location.href||"";if(j){j=(j.match(/^([^#]+)/)||[])[1]}h=e.extend(true,{url:j,success:e.ajaxSettings.success,type:g||"GET",iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},h);var s={};this.trigger("form-pre-serialize",[this,h,s]);if(s.veto){d("ajaxSubmit: submit vetoed via form-pre-serialize trigger");return this}if(h.beforeSerialize&&h.beforeSerialize(this,h)===false){d("ajaxSubmit: submit aborted via beforeSerialize callback");return this}var l=h.traditional;if(l===undefined){l=e.ajaxSettings.traditional}var p=[];var B,C=this.formToArray(h.semantic,p);if(h.data){h.extraData=h.data;B=e.param(h.data,l)}if(h.beforeSubmit&&h.beforeSubmit(C,this,h)===false){d("ajaxSubmit: submit aborted via beforeSubmit callback");return this}this.trigger("form-submit-validate",[C,this,h,s]);if(s.veto){d("ajaxSubmit: submit vetoed via form-submit-validate trigger");return this}var w=e.param(C,l);if(B){w=(w?(w+"&"+B):B)}if(h.type.toUpperCase()=="GET"){h.url+=(h.url.indexOf("?")>=0?"&":"?")+w;h.data=null}else{h.data=w}var E=[];if(h.resetForm){E.push(function(){m.resetForm()})}if(h.clearForm){E.push(function(){m.clearForm(h.includeHidden)})}if(!h.dataType&&h.target){var i=h.success||function(){};E.push(function(q){var k=h.replaceTarget?"replaceWith":"html";e(h.target)[k](q).each(i,arguments)})}else{if(h.success){E.push(h.success)}}h.success=function(H,q,I){var G=h.context||this;for(var F=0,k=E.length;F<k;F++){E[F].apply(G,[H,q,I||m,m])}};var A=e('input[type=file]:enabled[value!=""]',this);var n=A.length>0;var z="multipart/form-data";var v=(m.attr("enctype")==z||m.attr("encoding")==z);var u=c.fileapi&&c.formdata;d("fileAPI :"+u);var o=(n||v)&&!u;var t;if(h.iframe!==false&&(h.iframe||o)){if(h.closeKeepAlive){e.get(h.closeKeepAlive,function(){t=D(C)})}else{t=D(C)}}else{if((n||v)&&u){t=r(C)}else{t=e.ajax(h)}}m.removeData("jqxhr").data("jqxhr",t);for(var x=0;x<p.length;x++){p[x]=null}this.trigger("form-submit-notify",[this,h]);return this;function f(H){var I=e.param(H).split("&");var q=I.length;var k={};var G,F;for(G=0;G<q;G++){I[G]=I[G].replace(/\+/g," ");F=I[G].split("=");k[decodeURIComponent(F[0])]=decodeURIComponent(F[1])}return k}function r(q){var k=new FormData();for(var F=0;F<q.length;F++){k.append(q[F].name,q[F].value)}if(h.extraData){var I=f(h.extraData);for(var J in I){if(I.hasOwnProperty(J)){k.append(J,I[J])}}}h.data=null;var H=e.extend(true,{},e.ajaxSettings,h,{contentType:false,processData:false,cache:false,type:g||"POST"});if(h.uploadProgress){H.xhr=function(){var K=jQuery.ajaxSettings.xhr();if(K.upload){K.upload.onprogress=function(O){var N=0;var L=O.loaded||O.position;var M=O.total;if(O.lengthComputable){N=Math.ceil(L/M*100)}h.uploadProgress(O,L,M,N)}}return K}}H.data=null;var G=H.beforeSend;H.beforeSend=function(L,K){K.data=k;if(G){G.call(this,L,K)}};return e.ajax(H)}function D(ad){var I=m[0],H,Z,T,ab,W,K,O,M,N,X,aa,R;var L=!!e.fn.prop;var ag=e.Deferred();if(e("[name=submit],[id=submit]",I).length){alert('Error: Form elements must not have name or id of "submit".');ag.reject();return ag}if(ad){for(Z=0;Z<p.length;Z++){H=e(p[Z]);if(L){H.prop("disabled",false)}else{H.removeAttr("disabled")}}}T=e.extend(true,{},e.ajaxSettings,h);T.context=T.context||T;W="jqFormIO"+(new Date().getTime());if(T.iframeTarget){K=e(T.iframeTarget);X=K.attr("name");if(!X){K.attr("name",W)}else{W=X}}else{K=e('<iframe name="'+W+'" src="'+T.iframeSrc+'" />');K.css({position:"absolute",top:"-1000px",left:"-1000px"})}O=K[0];M={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(ah){var ai=(ah==="timeout"?"timeout":"aborted");d("aborting upload... "+ai);this.aborted=1;try{if(O.contentWindow.document.execCommand){O.contentWindow.document.execCommand("Stop")}}catch(aj){}K.attr("src",T.iframeSrc);M.error=ai;if(T.error){T.error.call(T.context,M,ai,ah)}if(ab){e.event.trigger("ajaxError",[M,T,ai])}if(T.complete){T.complete.call(T.context,M,ai)}}};ab=T.global;if(ab&&0===e.active++){e.event.trigger("ajaxStart")}if(ab){e.event.trigger("ajaxSend",[M,T])}if(T.beforeSend&&T.beforeSend.call(T.context,M,T)===false){if(T.global){e.active--}ag.reject();return ag}if(M.aborted){ag.reject();return ag}N=I.clk;if(N){X=N.name;if(X&&!N.disabled){T.extraData=T.extraData||{};T.extraData[X]=N.value;if(N.type=="image"){T.extraData[X+".x"]=I.clk_x;T.extraData[X+".y"]=I.clk_y}}}var S=1;var P=2;function Q(ai){var ah=ai.contentWindow?ai.contentWindow.document:ai.contentDocument?ai.contentDocument:ai.document;return ah}var G=e("meta[name=csrf-token]").attr("content");var F=e("meta[name=csrf-param]").attr("content");if(F&&G){T.extraData=T.extraData||{};T.extraData[F]=G}function Y(){var aj=m.attr("target"),ah=m.attr("action");I.setAttribute("target",W);if(!g){I.setAttribute("method","POST")}if(ah!=T.url){I.setAttribute("action",T.url)}if(!T.skipEncodingOverride&&(!g||/post/i.test(g))){m.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"})}if(T.timeout){R=setTimeout(function(){aa=true;V(S)},T.timeout)}function ak(){try{var am=Q(O).readyState;d("state = "+am);if(am&&am.toLowerCase()=="uninitialized"){setTimeout(ak,50)}}catch(an){d("Server abort: ",an," (",an.name,")");V(P);if(R){clearTimeout(R)}R=undefined}}var ai=[];try{if(T.extraData){for(var al in T.extraData){if(T.extraData.hasOwnProperty(al)){if(e.isPlainObject(T.extraData[al])&&T.extraData[al].hasOwnProperty("name")&&T.extraData[al].hasOwnProperty("value")){ai.push(e('<input type="hidden" name="'+T.extraData[al].name+'">').attr("value",T.extraData[al].value).appendTo(I)[0])}else{ai.push(e('<input type="hidden" name="'+al+'">').attr("value",T.extraData[al]).appendTo(I)[0])}}}}if(!T.iframeTarget){K.appendTo("body");if(O.attachEvent){O.attachEvent("onload",V)}else{O.addEventListener("load",V,false)}}setTimeout(ak,15);I.submit()}finally{I.setAttribute("action",ah);if(aj){I.setAttribute("target",aj)}else{m.removeAttr("target")}e(ai).remove()}}if(T.forceSync){Y()}else{setTimeout(Y,10)}var ae,af,ac=50,J;function V(am){if(M.aborted||J){return}try{af=Q(O)}catch(ap){d("cannot access response document: ",ap);am=P}if(am===S&&M){M.abort("timeout");ag.reject(M,"timeout");return}else{if(am==P&&M){M.abort("server abort");ag.reject(M,"error","server abort");return}}if(!af||af.location.href==T.iframeSrc){if(!aa){return}}if(O.detachEvent){O.detachEvent("onload",V)}else{O.removeEventListener("load",V,false)}var ak="success",ao;try{if(aa){throw"timeout"}var aj=T.dataType=="xml"||af.XMLDocument||e.isXMLDoc(af);d("isXml="+aj);if(!aj&&window.opera&&(af.body===null||!af.body.innerHTML)){if(--ac){d("requeing onLoad callback, DOM not available");setTimeout(V,250);return}}var aq=af.body?af.body:af.documentElement;M.responseText=aq?aq.innerHTML:null;M.responseXML=af.XMLDocument?af.XMLDocument:af;if(aj){T.dataType="xml"}M.getResponseHeader=function(au){var at={"content-type":T.dataType};return at[au]};if(aq){M.status=Number(aq.getAttribute("status"))||M.status;M.statusText=aq.getAttribute("statusText")||M.statusText}var ah=(T.dataType||"").toLowerCase();var an=/(json|script|text)/.test(ah);if(an||T.textarea){var al=af.getElementsByTagName("textarea")[0];if(al){M.responseText=al.value;M.status=Number(al.getAttribute("status"))||M.status;M.statusText=al.getAttribute("statusText")||M.statusText}else{if(an){var ai=af.getElementsByTagName("pre")[0];var ar=af.getElementsByTagName("body")[0];if(ai){M.responseText=ai.textContent?ai.textContent:ai.innerText}else{if(ar){M.responseText=ar.textContent?ar.textContent:ar.innerText}}}}}else{if(ah=="xml"&&!M.responseXML&&M.responseText){M.responseXML=U(M.responseText)}}try{ae=k(M,ah,T)}catch(am){ak="parsererror";M.error=ao=(am||ak)}}catch(am){d("error caught: ",am);ak="error";M.error=ao=(am||ak)}if(M.aborted){d("upload aborted");ak=null}if(M.status){ak=(M.status>=200&&M.status<300||M.status===304)?"success":"error"}if(ak==="success"){if(T.success){T.success.call(T.context,ae,"success",M)}ag.resolve(M.responseText,"success",M);if(ab){e.event.trigger("ajaxSuccess",[M,T])}}else{if(ak){if(ao===undefined){ao=M.statusText}if(T.error){T.error.call(T.context,M,ak,ao)}ag.reject(M,"error",ao);if(ab){e.event.trigger("ajaxError",[M,T,ao])}}}if(ab){e.event.trigger("ajaxComplete",[M,T])}if(ab&&!--e.active){e.event.trigger("ajaxStop")}if(T.complete){T.complete.call(T.context,M,ak)}J=true;if(T.timeout){clearTimeout(R)}setTimeout(function(){if(!T.iframeTarget){K.remove()}M.responseXML=null},100)}var U=e.parseXML||function(ah,ai){if(window.ActiveXObject){ai=new ActiveXObject("Microsoft.XMLDOM");ai.async="false";ai.loadXML(ah)}else{ai=(new DOMParser()).parseFromString(ah,"text/xml")}return(ai&&ai.documentElement&&ai.documentElement.nodeName!="parsererror")?ai:null};var q=e.parseJSON||function(ah){return window["eval"]("("+ah+")")};var k=function(am,ak,aj){var ai=am.getResponseHeader("content-type")||"",ah=ak==="xml"||!ak&&ai.indexOf("xml")>=0,al=ah?am.responseXML:am.responseText;if(ah&&al.documentElement.nodeName==="parsererror"){if(e.error){e.error("parsererror")}}if(aj&&aj.dataFilter){al=aj.dataFilter(al,ak)}if(typeof al==="string"){if(ak==="json"||!ak&&ai.indexOf("json")>=0){al=q(al)}else{if(ak==="script"||!ak&&ai.indexOf("javascript")>=0){e.globalEval(al)}}}return al};return ag}};e.fn.ajaxForm=function(f){f=f||{};f.delegation=f.delegation&&e.isFunction(e.fn.on);if(!f.delegation&&this.length===0){var g={s:this.selector,c:this.context};if(!e.isReady&&g.s){d("DOM not ready, queuing ajaxForm");e(function(){e(g.s,g.c).ajaxForm(f)});return this}d("terminating; zero elements found by selector"+(e.isReady?"":" (DOM not ready)"));return this}if(f.delegation){e(document).off("submit.form-plugin",this.selector,b).off("click.form-plugin",this.selector,a).on("submit.form-plugin",this.selector,f,b).on("click.form-plugin",this.selector,f,a);return this}return this.ajaxFormUnbind().bind("submit.form-plugin",f,b).bind("click.form-plugin",f,a)};function b(g){var f=g.data;if(!g.isDefaultPrevented()){g.preventDefault();e(this).ajaxSubmit(f)}}function a(j){var i=j.target;var g=e(i);if(!(g.is("[type=submit],[type=image]"))){var f=g.closest("[type=submit]");if(f.length===0){return}i=f[0]}var h=this;h.clk=i;if(i.type=="image"){if(j.offsetX!==undefined){h.clk_x=j.offsetX;h.clk_y=j.offsetY}else{if(typeof e.fn.offset=="function"){var k=g.offset();h.clk_x=j.pageX-k.left;h.clk_y=j.pageY-k.top}else{h.clk_x=j.pageX-i.offsetLeft;h.clk_y=j.pageY-i.offsetTop}}}setTimeout(function(){h.clk=h.clk_x=h.clk_y=null},100)}e.fn.ajaxFormUnbind=function(){return this.unbind("submit.form-plugin click.form-plugin")};e.fn.formToArray=function(w,f){var u=[];if(this.length===0){return u}var k=this[0];var o=w?k.getElementsByTagName("*"):k.elements;if(!o){return u}var q,p,m,x,l,s,h;for(q=0,s=o.length;q<s;q++){l=o[q];m=l.name;if(!m){continue}if(w&&k.clk&&l.type=="image"){if(!l.disabled&&k.clk==l){u.push({name:m,value:e(l).val(),type:l.type});u.push({name:m+".x",value:k.clk_x},{name:m+".y",value:k.clk_y})}continue}x=e.fieldValue(l,true);if(x&&x.constructor==Array){if(f){f.push(l)}for(p=0,h=x.length;p<h;p++){u.push({name:m,value:x[p]})}}else{if(c.fileapi&&l.type=="file"&&!l.disabled){if(f){f.push(l)}var g=l.files;if(g.length){for(p=0;p<g.length;p++){u.push({name:m,value:g[p],type:l.type})}}else{u.push({name:m,value:"",type:l.type})}}else{if(x!==null&&typeof x!="undefined"){if(f){f.push(l)}u.push({name:m,value:x,type:l.type,required:l.required})}}}}if(!w&&k.clk){var r=e(k.clk),t=r[0];m=t.name;if(m&&!t.disabled&&t.type=="image"){u.push({name:m,value:r.val()});u.push({name:m+".x",value:k.clk_x},{name:m+".y",value:k.clk_y})}}return u};e.fn.formSerialize=function(f){return e.param(this.formToArray(f))};e.fn.fieldSerialize=function(g){var f=[];this.each(function(){var l=this.name;if(!l){return}var j=e.fieldValue(this,g);if(j&&j.constructor==Array){for(var k=0,h=j.length;k<h;k++){f.push({name:l,value:j[k]})}}else{if(j!==null&&typeof j!="undefined"){f.push({name:this.name,value:j})}}});return e.param(f)};e.fn.fieldValue=function(l){for(var k=[],h=0,f=this.length;h<f;h++){var j=this[h];var g=e.fieldValue(j,l);if(g===null||typeof g=="undefined"||(g.constructor==Array&&!g.length)){continue}if(g.constructor==Array){e.merge(k,g)}else{k.push(g)}}return k};e.fieldValue=function(f,m){var h=f.name,s=f.type,u=f.tagName.toLowerCase();if(m===undefined){m=true}if(m&&(!h||f.disabled||s=="reset"||s=="button"||(s=="checkbox"||s=="radio")&&!f.checked||(s=="submit"||s=="image")&&f.form&&f.form.clk!=f||u=="select"&&f.selectedIndex==-1)){return null}if(u=="select"){var o=f.selectedIndex;if(o<0){return null}var q=[],g=f.options;var k=(s=="select-one");var p=(k?o+1:g.length);for(var j=(k?o:0);j<p;j++){var l=g[j];if(l.selected){var r=l.value;if(!r){r=(l.attributes&&l.attributes.value&&!(l.attributes.value.specified))?l.text:l.value}if(k){return r}q.push(r)}}return q}return e(f).val()};e.fn.clearForm=function(f){return this.each(function(){e("input,select,textarea",this).clearFields(f)})};e.fn.clearFields=e.fn.clearInputs=function(f){var g=/^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i;return this.each(function(){var i=this.type,h=this.tagName.toLowerCase();if(g.test(i)||h=="textarea"){this.value=""}else{if(i=="checkbox"||i=="radio"){this.checked=false}else{if(h=="select"){this.selectedIndex=-1}else{if(i=="file"){if(e.browser.msie){e(this).replaceWith(e(this).clone())}else{e(this).val("")}}else{if(f){if((f===true&&/hidden/.test(i))||(typeof f=="string"&&e(this).is(f))){this.value=""}}}}}}})};e.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};e.fn.enable=function(f){if(f===undefined){f=true}return this.each(function(){this.disabled=!f})};e.fn.selected=function(f){if(f===undefined){f=true}return this.each(function(){var g=this.type;if(g=="checkbox"||g=="radio"){this.checked=f}else{if(this.tagName.toLowerCase()=="option"){var h=e(this).parent("select");if(f&&h[0]&&h[0].type=="select-one"){h.find("option").selected(false)}this.selected=f}}})};e.fn.ajaxSubmit.debug=false;function d(){if(!e.fn.ajaxSubmit.debug){return}var f="[jquery.form] "+Array.prototype.join.call(arguments,"");if(window.console&&window.console.log){window.console.log(f)}else{if(window.opera&&window.opera.postError){window.opera.postError(f)}}}})(jQuery);
1
  /*!
2
  * jQuery Form Plugin
3
+ * version: 3.25.0-2013.01.18
4
  * @requires jQuery v1.5 or later
5
  *
6
  * Examples and documentation at: http://malsup.com/jquery/form/
9
  * http://malsup.github.com/mit-license.txt
10
  * http://malsup.github.com/gpl-license-v2.txt
11
  */
12
+ (function(e){var c={};c.fileapi=e("<input type='file'/>").get(0).files!==undefined;c.formdata=window.FormData!==undefined;e.fn.ajaxSubmit=function(h){if(!this.length){d("ajaxSubmit: skipping submit process - no element selected");return this}var g,y,j,m=this;if(typeof h=="function"){h={success:h}}g=this.attr("method");y=this.attr("action");j=(typeof y==="string")?e.trim(y):"";j=j||window.location.href||"";if(j){j=(j.match(/^([^#]+)/)||[])[1]}h=e.extend(true,{url:j,success:e.ajaxSettings.success,type:g||"GET",iframeSrc:/^https/i.test(window.location.href||"")?"javascript:false":"about:blank"},h);var s={};this.trigger("form-pre-serialize",[this,h,s]);if(s.veto){d("ajaxSubmit: submit vetoed via form-pre-serialize trigger");return this}if(h.beforeSerialize&&h.beforeSerialize(this,h)===false){d("ajaxSubmit: submit aborted via beforeSerialize callback");return this}var l=h.traditional;if(l===undefined){l=e.ajaxSettings.traditional}var p=[];var B,C=this.formToArray(h.semantic,p);if(h.data){h.extraData=h.data;B=e.param(h.data,l)}if(h.beforeSubmit&&h.beforeSubmit(C,this,h)===false){d("ajaxSubmit: submit aborted via beforeSubmit callback");return this}this.trigger("form-submit-validate",[C,this,h,s]);if(s.veto){d("ajaxSubmit: submit vetoed via form-submit-validate trigger");return this}var w=e.param(C,l);if(B){w=(w?(w+"&"+B):B)}if(h.type.toUpperCase()=="GET"){h.url+=(h.url.indexOf("?")>=0?"&":"?")+w;h.data=null}else{h.data=w}var E=[];if(h.resetForm){E.push(function(){m.resetForm()})}if(h.clearForm){E.push(function(){m.clearForm(h.includeHidden)})}if(!h.dataType&&h.target){var i=h.success||function(){};E.push(function(q){var k=h.replaceTarget?"replaceWith":"html";e(h.target)[k](q).each(i,arguments)})}else{if(h.success){E.push(h.success)}}h.success=function(H,q,I){var G=h.context||this;for(var F=0,k=E.length;F<k;F++){E[F].apply(G,[H,q,I||m,m])}};var A=e('input[type=file]:enabled[value!=""]',this);var n=A.length>0;var z="multipart/form-data";var v=(m.attr("enctype")==z||m.attr("encoding")==z);var u=c.fileapi&&c.formdata;d("fileAPI :"+u);var o=(n||v)&&!u;var t;if(h.iframe!==false&&(h.iframe||o)){if(h.closeKeepAlive){e.get(h.closeKeepAlive,function(){t=D(C)})}else{t=D(C)}}else{if((n||v)&&u){t=r(C)}else{t=e.ajax(h)}}m.removeData("jqxhr").data("jqxhr",t);for(var x=0;x<p.length;x++){p[x]=null}this.trigger("form-submit-notify",[this,h]);return this;function f(H){var I=e.param(H).split("&");var q=I.length;var k={};var G,F;for(G=0;G<q;G++){I[G]=I[G].replace(/\+/g," ");F=I[G].split("=");k[decodeURIComponent(F[0])]=decodeURIComponent(F[1])}return k}function r(q){var k=new FormData();for(var F=0;F<q.length;F++){k.append(q[F].name,q[F].value)}if(h.extraData){var I=f(h.extraData);for(var J in I){if(I.hasOwnProperty(J)){k.append(J,I[J])}}}h.data=null;var H=e.extend(true,{},e.ajaxSettings,h,{contentType:false,processData:false,cache:false,type:g||"POST"});if(h.uploadProgress){H.xhr=function(){var K=jQuery.ajaxSettings.xhr();if(K.upload){K.upload.onprogress=function(O){var N=0;var L=O.loaded||O.position;var M=O.total;if(O.lengthComputable){N=Math.ceil(L/M*100)}h.uploadProgress(O,L,M,N)}}return K}}H.data=null;var G=H.beforeSend;H.beforeSend=function(L,K){K.data=k;if(G){G.call(this,L,K)}};return e.ajax(H)}function D(ad){var I=m[0],H,Z,T,ab,W,K,O,M,N,X,aa,R;var L=!!e.fn.prop;var ag=e.Deferred();if(e("[name=submit],[id=submit]",I).length){alert('Error: Form elements must not have name or id of "submit".');ag.reject();return ag}if(ad){for(Z=0;Z<p.length;Z++){H=e(p[Z]);if(L){H.prop("disabled",false)}else{H.removeAttr("disabled")}}}T=e.extend(true,{},e.ajaxSettings,h);T.context=T.context||T;W="jqFormIO"+(new Date().getTime());if(T.iframeTarget){K=e(T.iframeTarget);X=K.attr("name");if(!X){K.attr("name",W)}else{W=X}}else{K=e('<iframe name="'+W+'" src="'+T.iframeSrc+'" />');K.css({position:"absolute",top:"-1000px",left:"-1000px"})}O=K[0];M={aborted:0,responseText:null,responseXML:null,status:0,statusText:"n/a",getAllResponseHeaders:function(){},getResponseHeader:function(){},setRequestHeader:function(){},abort:function(ah){var ai=(ah==="timeout"?"timeout":"aborted");d("aborting upload... "+ai);this.aborted=1;try{if(O.contentWindow.document.execCommand){O.contentWindow.document.execCommand("Stop")}}catch(aj){}K.attr("src",T.iframeSrc);M.error=ai;if(T.error){T.error.call(T.context,M,ai,ah)}if(ab){e.event.trigger("ajaxError",[M,T,ai])}if(T.complete){T.complete.call(T.context,M,ai)}}};ab=T.global;if(ab&&0===e.active++){e.event.trigger("ajaxStart")}if(ab){e.event.trigger("ajaxSend",[M,T])}if(T.beforeSend&&T.beforeSend.call(T.context,M,T)===false){if(T.global){e.active--}ag.reject();return ag}if(M.aborted){ag.reject();return ag}N=I.clk;if(N){X=N.name;if(X&&!N.disabled){T.extraData=T.extraData||{};T.extraData[X]=N.value;if(N.type=="image"){T.extraData[X+".x"]=I.clk_x;T.extraData[X+".y"]=I.clk_y}}}var S=1;var P=2;function Q(ai){var ah=ai.contentWindow?ai.contentWindow.document:ai.contentDocument?ai.contentDocument:ai.document;return ah}var G=e("meta[name=csrf-token]").attr("content");var F=e("meta[name=csrf-param]").attr("content");if(F&&G){T.extraData=T.extraData||{};T.extraData[F]=G}function Y(){var aj=m.attr("target"),ah=m.attr("action");I.setAttribute("target",W);if(!g){I.setAttribute("method","POST")}if(ah!=T.url){I.setAttribute("action",T.url)}if(!T.skipEncodingOverride&&(!g||/post/i.test(g))){m.attr({encoding:"multipart/form-data",enctype:"multipart/form-data"})}if(T.timeout){R=setTimeout(function(){aa=true;V(S)},T.timeout)}function ak(){try{var am=Q(O).readyState;d("state = "+am);if(am&&am.toLowerCase()=="uninitialized"){setTimeout(ak,50)}}catch(an){d("Server abort: ",an," (",an.name,")");V(P);if(R){clearTimeout(R)}R=undefined}}var ai=[];try{if(T.extraData){for(var al in T.extraData){if(T.extraData.hasOwnProperty(al)){if(e.isPlainObject(T.extraData[al])&&T.extraData[al].hasOwnProperty("name")&&T.extraData[al].hasOwnProperty("value")){ai.push(e('<input type="hidden" name="'+T.extraData[al].name+'">').val(T.extraData[al].value).appendTo(I)[0])}else{ai.push(e('<input type="hidden" name="'+al+'">').val(T.extraData[al]).appendTo(I)[0])}}}}if(!T.iframeTarget){K.appendTo("body");if(O.attachEvent){O.attachEvent("onload",V)}else{O.addEventListener("load",V,false)}}setTimeout(ak,15);I.submit()}finally{I.setAttribute("action",ah);if(aj){I.setAttribute("target",aj)}else{m.removeAttr("target")}e(ai).remove()}}if(T.forceSync){Y()}else{setTimeout(Y,10)}var ae,af,ac=50,J;function V(am){if(M.aborted||J){return}try{af=Q(O)}catch(ap){d("cannot access response document: ",ap);am=P}if(am===S&&M){M.abort("timeout");ag.reject(M,"timeout");return}else{if(am==P&&M){M.abort("server abort");ag.reject(M,"error","server abort");return}}if(!af||af.location.href==T.iframeSrc){if(!aa){return}}if(O.detachEvent){O.detachEvent("onload",V)}else{O.removeEventListener("load",V,false)}var ak="success",ao;try{if(aa){throw"timeout"}var aj=T.dataType=="xml"||af.XMLDocument||e.isXMLDoc(af);d("isXml="+aj);if(!aj&&window.opera&&(af.body===null||!af.body.innerHTML)){if(--ac){d("requeing onLoad callback, DOM not available");setTimeout(V,250);return}}var aq=af.body?af.body:af.documentElement;M.responseText=aq?aq.innerHTML:null;M.responseXML=af.XMLDocument?af.XMLDocument:af;if(aj){T.dataType="xml"}M.getResponseHeader=function(au){var at={"content-type":T.dataType};return at[au]};if(aq){M.status=Number(aq.getAttribute("status"))||M.status;M.statusText=aq.getAttribute("statusText")||M.statusText}var ah=(T.dataType||"").toLowerCase();var an=/(json|script|text)/.test(ah);if(an||T.textarea){var al=af.getElementsByTagName("textarea")[0];if(al){M.responseText=al.value;M.status=Number(al.getAttribute("status"))||M.status;M.statusText=al.getAttribute("statusText")||M.statusText}else{if(an){var ai=af.getElementsByTagName("pre")[0];var ar=af.getElementsByTagName("body")[0];if(ai){M.responseText=ai.textContent?ai.textContent:ai.innerText}else{if(ar){M.responseText=ar.textContent?ar.textContent:ar.innerText}}}}}else{if(ah=="xml"&&!M.responseXML&&M.responseText){M.responseXML=U(M.responseText)}}try{ae=k(M,ah,T)}catch(am){ak="parsererror";M.error=ao=(am||ak)}}catch(am){d("error caught: ",am);ak="error";M.error=ao=(am||ak)}if(M.aborted){d("upload aborted");ak=null}if(M.status){ak=(M.status>=200&&M.status<300||M.status===304)?"success":"error"}if(ak==="success"){if(T.success){T.success.call(T.context,ae,"success",M)}ag.resolve(M.responseText,"success",M);if(ab){e.event.trigger("ajaxSuccess",[M,T])}}else{if(ak){if(ao===undefined){ao=M.statusText}if(T.error){T.error.call(T.context,M,ak,ao)}ag.reject(M,"error",ao);if(ab){e.event.trigger("ajaxError",[M,T,ao])}}}if(ab){e.event.trigger("ajaxComplete",[M,T])}if(ab&&!--e.active){e.event.trigger("ajaxStop")}if(T.complete){T.complete.call(T.context,M,ak)}J=true;if(T.timeout){clearTimeout(R)}setTimeout(function(){if(!T.iframeTarget){K.remove()}M.responseXML=null},100)}var U=e.parseXML||function(ah,ai){if(window.ActiveXObject){ai=new ActiveXObject("Microsoft.XMLDOM");ai.async="false";ai.loadXML(ah)}else{ai=(new DOMParser()).parseFromString(ah,"text/xml")}return(ai&&ai.documentElement&&ai.documentElement.nodeName!="parsererror")?ai:null};var q=e.parseJSON||function(ah){return window["eval"]("("+ah+")")};var k=function(am,ak,aj){var ai=am.getResponseHeader("content-type")||"",ah=ak==="xml"||!ak&&ai.indexOf("xml")>=0,al=ah?am.responseXML:am.responseText;if(ah&&al.documentElement.nodeName==="parsererror"){if(e.error){e.error("parsererror")}}if(aj&&aj.dataFilter){al=aj.dataFilter(al,ak)}if(typeof al==="string"){if(ak==="json"||!ak&&ai.indexOf("json")>=0){al=q(al)}else{if(ak==="script"||!ak&&ai.indexOf("javascript")>=0){e.globalEval(al)}}}return al};return ag}};e.fn.ajaxForm=function(f){f=f||{};f.delegation=f.delegation&&e.isFunction(e.fn.on);if(!f.delegation&&this.length===0){var g={s:this.selector,c:this.context};if(!e.isReady&&g.s){d("DOM not ready, queuing ajaxForm");e(function(){e(g.s,g.c).ajaxForm(f)});return this}d("terminating; zero elements found by selector"+(e.isReady?"":" (DOM not ready)"));return this}if(f.delegation){e(document).off("submit.form-plugin",this.selector,b).off("click.form-plugin",this.selector,a).on("submit.form-plugin",this.selector,f,b).on("click.form-plugin",this.selector,f,a);return this}return this.ajaxFormUnbind().bind("submit.form-plugin",f,b).bind("click.form-plugin",f,a)};function b(g){var f=g.data;if(!g.isDefaultPrevented()){g.preventDefault();e(this).ajaxSubmit(f)}}function a(j){var i=j.target;var g=e(i);if(!(g.is("[type=submit],[type=image]"))){var f=g.closest("[type=submit]");if(f.length===0){return}i=f[0]}var h=this;h.clk=i;if(i.type=="image"){if(j.offsetX!==undefined){h.clk_x=j.offsetX;h.clk_y=j.offsetY}else{if(typeof e.fn.offset=="function"){var k=g.offset();h.clk_x=j.pageX-k.left;h.clk_y=j.pageY-k.top}else{h.clk_x=j.pageX-i.offsetLeft;h.clk_y=j.pageY-i.offsetTop}}}setTimeout(function(){h.clk=h.clk_x=h.clk_y=null},100)}e.fn.ajaxFormUnbind=function(){return this.unbind("submit.form-plugin click.form-plugin")};e.fn.formToArray=function(w,f){var u=[];if(this.length===0){return u}var k=this[0];var o=w?k.getElementsByTagName("*"):k.elements;if(!o){return u}var q,p,m,x,l,s,h;for(q=0,s=o.length;q<s;q++){l=o[q];m=l.name;if(!m){continue}if(w&&k.clk&&l.type=="image"){if(!l.disabled&&k.clk==l){u.push({name:m,value:e(l).val(),type:l.type});u.push({name:m+".x",value:k.clk_x},{name:m+".y",value:k.clk_y})}continue}x=e.fieldValue(l,true);if(x&&x.constructor==Array){if(f){f.push(l)}for(p=0,h=x.length;p<h;p++){u.push({name:m,value:x[p]})}}else{if(c.fileapi&&l.type=="file"&&!l.disabled){if(f){f.push(l)}var g=l.files;if(g.length){for(p=0;p<g.length;p++){u.push({name:m,value:g[p],type:l.type})}}else{u.push({name:m,value:"",type:l.type})}}else{if(x!==null&&typeof x!="undefined"){if(f){f.push(l)}u.push({name:m,value:x,type:l.type,required:l.required})}}}}if(!w&&k.clk){var r=e(k.clk),t=r[0];m=t.name;if(m&&!t.disabled&&t.type=="image"){u.push({name:m,value:r.val()});u.push({name:m+".x",value:k.clk_x},{name:m+".y",value:k.clk_y})}}return u};e.fn.formSerialize=function(f){return e.param(this.formToArray(f))};e.fn.fieldSerialize=function(g){var f=[];this.each(function(){var l=this.name;if(!l){return}var j=e.fieldValue(this,g);if(j&&j.constructor==Array){for(var k=0,h=j.length;k<h;k++){f.push({name:l,value:j[k]})}}else{if(j!==null&&typeof j!="undefined"){f.push({name:this.name,value:j})}}});return e.param(f)};e.fn.fieldValue=function(l){for(var k=[],h=0,f=this.length;h<f;h++){var j=this[h];var g=e.fieldValue(j,l);if(g===null||typeof g=="undefined"||(g.constructor==Array&&!g.length)){continue}if(g.constructor==Array){e.merge(k,g)}else{k.push(g)}}return k};e.fieldValue=function(f,m){var h=f.name,s=f.type,u=f.tagName.toLowerCase();if(m===undefined){m=true}if(m&&(!h||f.disabled||s=="reset"||s=="button"||(s=="checkbox"||s=="radio")&&!f.checked||(s=="submit"||s=="image")&&f.form&&f.form.clk!=f||u=="select"&&f.selectedIndex==-1)){return null}if(u=="select"){var o=f.selectedIndex;if(o<0){return null}var q=[],g=f.options;var k=(s=="select-one");var p=(k?o+1:g.length);for(var j=(k?o:0);j<p;j++){var l=g[j];if(l.selected){var r=l.value;if(!r){r=(l.attributes&&l.attributes.value&&!(l.attributes.value.specified))?l.text:l.value}if(k){return r}q.push(r)}}return q}return e(f).val()};e.fn.clearForm=function(f){return this.each(function(){e("input,select,textarea",this).clearFields(f)})};e.fn.clearFields=e.fn.clearInputs=function(f){var g=/^(?:color|date|datetime|email|month|number|password|range|search|tel|text|time|url|week)$/i;return this.each(function(){var i=this.type,h=this.tagName.toLowerCase();if(g.test(i)||h=="textarea"){this.value=""}else{if(i=="checkbox"||i=="radio"){this.checked=false}else{if(h=="select"){this.selectedIndex=-1}else{if(i=="file"){if(/MSIE/.test(navigator.userAgent)){e(this).replaceWith(e(this).clone())}else{e(this).val("")}}else{if(f){if((f===true&&/hidden/.test(i))||(typeof f=="string"&&e(this).is(f))){this.value=""}}}}}}})};e.fn.resetForm=function(){return this.each(function(){if(typeof this.reset=="function"||(typeof this.reset=="object"&&!this.reset.nodeType)){this.reset()}})};e.fn.enable=function(f){if(f===undefined){f=true}return this.each(function(){this.disabled=!f})};e.fn.selected=function(f){if(f===undefined){f=true}return this.each(function(){var g=this.type;if(g=="checkbox"||g=="radio"){this.checked=f}else{if(this.tagName.toLowerCase()=="option"){var h=e(this).parent("select");if(f&&h[0]&&h[0].type=="select-one"){h.find("option").selected(false)}this.selected=f}}})};e.fn.ajaxSubmit.debug=false;function d(){if(!e.fn.ajaxSubmit.debug){return}var f="[jquery.form] "+Array.prototype.join.call(arguments,"");if(window.console&&window.console.log){window.console.log(f)}else{if(window.opera&&window.opera.postError){window.opera.postError(f)}}}})(jQuery);
includes/js/scripts.js CHANGED
@@ -22,6 +22,9 @@
22
  data: { '_wpcf7_is_ajax_call': 1 },
23
  dataType: 'json',
24
  success: function(data) {
 
 
 
25
  var ro = $(data.into).find('div.wpcf7-response-output');
26
  $(data.into).wpcf7ClearResponseOutput();
27
 
22
  data: { '_wpcf7_is_ajax_call': 1 },
23
  dataType: 'json',
24
  success: function(data) {
25
+ if (! $.isPlainObject(data) || $.isEmptyObject(data))
26
+ return;
27
+
28
  var ro = $(data.into).find('div.wpcf7-response-output');
29
  $(data.into).wpcf7ClearResponseOutput();
30
 
languages/wpcf7-de_DE.mo CHANGED
Binary file
languages/wpcf7-fr_FR.mo CHANGED
Binary file
languages/wpcf7-ru_RU.mo CHANGED
Binary file
languages/wpcf7-tr_TR.mo CHANGED
Binary file
languages/wpcf7.pot CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-12-04 11:43+0900\n"
6
- "PO-Revision-Date: 2012-12-04 11:43+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -399,239 +399,239 @@ msgstr ""
399
  msgid "This mail is sent via contact form on %1$s %2$s"
400
  msgstr ""
401
 
402
- #: contact-form-7/includes/functions.php:194
403
  msgid "Afrikaans"
404
  msgstr ""
405
 
406
- #: contact-form-7/includes/functions.php:195
407
  msgid "Albanian"
408
  msgstr ""
409
 
410
- #: contact-form-7/includes/functions.php:196
411
  msgid "Arabic"
412
  msgstr ""
413
 
414
- #: contact-form-7/includes/functions.php:197
415
  msgid "Armenian"
416
  msgstr ""
417
 
418
- #: contact-form-7/includes/functions.php:198
419
  msgid "Azerbaijani"
420
  msgstr ""
421
 
422
- #: contact-form-7/includes/functions.php:199
423
  msgid "Bangla"
424
  msgstr ""
425
 
426
- #: contact-form-7/includes/functions.php:200
427
  msgid "Basque"
428
  msgstr ""
429
 
430
- #: contact-form-7/includes/functions.php:201
431
  msgid "Belarusian"
432
  msgstr ""
433
 
434
- #: contact-form-7/includes/functions.php:202
435
  msgid "Bosnian"
436
  msgstr ""
437
 
438
- #: contact-form-7/includes/functions.php:203
439
  msgid "Brazilian Portuguese"
440
  msgstr ""
441
 
442
- #: contact-form-7/includes/functions.php:204
443
  msgid "Bulgarian"
444
  msgstr ""
445
 
446
- #: contact-form-7/includes/functions.php:205
447
  msgid "Catalan"
448
  msgstr ""
449
 
450
- #: contact-form-7/includes/functions.php:206
451
  msgid "Chinese (Simplified)"
452
  msgstr ""
453
 
454
- #: contact-form-7/includes/functions.php:207
455
  msgid "Chinese (Traditional)"
456
  msgstr ""
457
 
458
- #: contact-form-7/includes/functions.php:208
459
  msgid "Croatian"
460
  msgstr ""
461
 
462
- #: contact-form-7/includes/functions.php:209
463
  msgid "Czech"
464
  msgstr ""
465
 
466
- #: contact-form-7/includes/functions.php:210
467
  msgid "Danish"
468
  msgstr ""
469
 
470
- #: contact-form-7/includes/functions.php:211
471
  msgid "Dutch"
472
  msgstr ""
473
 
474
- #: contact-form-7/includes/functions.php:212
475
  msgid "English"
476
  msgstr ""
477
 
478
- #: contact-form-7/includes/functions.php:213
479
  msgid "Esperanto"
480
  msgstr ""
481
 
482
- #: contact-form-7/includes/functions.php:214
483
  msgid "Estonian"
484
  msgstr ""
485
 
486
- #: contact-form-7/includes/functions.php:215
487
  msgid "Finnish"
488
  msgstr ""
489
 
490
- #: contact-form-7/includes/functions.php:216
491
  msgid "French"
492
  msgstr ""
493
 
494
- #: contact-form-7/includes/functions.php:217
495
  msgid "Galician"
496
  msgstr ""
497
 
498
- #: contact-form-7/includes/functions.php:218
499
  msgid "Georgian"
500
  msgstr ""
501
 
502
- #: contact-form-7/includes/functions.php:219
503
  msgid "German"
504
  msgstr ""
505
 
506
- #: contact-form-7/includes/functions.php:220
507
  msgid "Greek"
508
  msgstr ""
509
 
510
- #: contact-form-7/includes/functions.php:221
511
  msgid "Hebrew"
512
  msgstr ""
513
 
514
- #: contact-form-7/includes/functions.php:222
515
  msgid "Hindi"
516
  msgstr ""
517
 
518
- #: contact-form-7/includes/functions.php:223
519
  msgid "Hungarian"
520
  msgstr ""
521
 
522
- #: contact-form-7/includes/functions.php:224
523
  msgid "Indonesian"
524
  msgstr ""
525
 
526
- #: contact-form-7/includes/functions.php:225
527
  msgid "Irish"
528
  msgstr ""
529
 
530
- #: contact-form-7/includes/functions.php:226
531
  msgid "Italian"
532
  msgstr ""
533
 
534
- #: contact-form-7/includes/functions.php:227
535
  msgid "Japanese"
536
  msgstr ""
537
 
538
- #: contact-form-7/includes/functions.php:228
539
  msgid "Korean"
540
  msgstr ""
541
 
542
- #: contact-form-7/includes/functions.php:229
543
  msgid "Latvian"
544
  msgstr ""
545
 
546
- #: contact-form-7/includes/functions.php:230
547
  msgid "Lithuanian"
548
  msgstr ""
549
 
550
- #: contact-form-7/includes/functions.php:231
551
  msgid "Macedonian"
552
  msgstr ""
553
 
554
- #: contact-form-7/includes/functions.php:232
555
  msgid "Malay"
556
  msgstr ""
557
 
558
- #: contact-form-7/includes/functions.php:233
559
  msgid "Malayalam"
560
  msgstr ""
561
 
562
- #: contact-form-7/includes/functions.php:234
563
  msgid "Maltese"
564
  msgstr ""
565
 
566
- #: contact-form-7/includes/functions.php:235
567
  msgid "Norwegian"
568
  msgstr ""
569
 
570
- #: contact-form-7/includes/functions.php:236
571
  msgid "Persian"
572
  msgstr ""
573
 
574
- #: contact-form-7/includes/functions.php:237
575
  msgid "Polish"
576
  msgstr ""
577
 
578
- #: contact-form-7/includes/functions.php:238
579
  msgid "Portuguese"
580
  msgstr ""
581
 
582
- #: contact-form-7/includes/functions.php:239
583
  msgid "Russian"
584
  msgstr ""
585
 
586
- #: contact-form-7/includes/functions.php:240
587
  msgid "Romanian"
588
  msgstr ""
589
 
590
- #: contact-form-7/includes/functions.php:241
591
  msgid "Serbian"
592
  msgstr ""
593
 
594
- #: contact-form-7/includes/functions.php:242
595
  msgid "Sinhala"
596
  msgstr ""
597
 
598
- #: contact-form-7/includes/functions.php:243
599
  msgid "Slovak"
600
  msgstr ""
601
 
602
- #: contact-form-7/includes/functions.php:244
603
  msgid "Slovene"
604
  msgstr ""
605
 
606
- #: contact-form-7/includes/functions.php:245
607
  msgid "Spanish"
608
  msgstr ""
609
 
610
- #: contact-form-7/includes/functions.php:246
611
  msgid "Swedish"
612
  msgstr ""
613
 
614
- #: contact-form-7/includes/functions.php:247
615
  msgid "Tamil"
616
  msgstr ""
617
 
618
- #: contact-form-7/includes/functions.php:248
619
  msgid "Thai"
620
  msgstr ""
621
 
622
- #: contact-form-7/includes/functions.php:249
623
  msgid "Tagalog"
624
  msgstr ""
625
 
626
- #: contact-form-7/includes/functions.php:250
627
  msgid "Turkish"
628
  msgstr ""
629
 
630
- #: contact-form-7/includes/functions.php:251
631
  msgid "Ukrainian"
632
  msgstr ""
633
 
634
- #: contact-form-7/includes/functions.php:252
635
  msgid "Vietnamese"
636
  msgstr ""
637
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form 7\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2013-01-20 09:53+0900\n"
6
+ "PO-Revision-Date: 2013-01-20 09:53+0900\n"
7
  "Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
399
  msgid "This mail is sent via contact form on %1$s %2$s"
400
  msgstr ""
401
 
402
+ #: contact-form-7/includes/functions.php:190
403
  msgid "Afrikaans"
404
  msgstr ""
405
 
406
+ #: contact-form-7/includes/functions.php:191
407
  msgid "Albanian"
408
  msgstr ""
409
 
410
+ #: contact-form-7/includes/functions.php:192
411
  msgid "Arabic"
412
  msgstr ""
413
 
414
+ #: contact-form-7/includes/functions.php:193
415
  msgid "Armenian"
416
  msgstr ""
417
 
418
+ #: contact-form-7/includes/functions.php:194
419
  msgid "Azerbaijani"
420
  msgstr ""
421
 
422
+ #: contact-form-7/includes/functions.php:195
423
  msgid "Bangla"
424
  msgstr ""
425
 
426
+ #: contact-form-7/includes/functions.php:196
427
  msgid "Basque"
428
  msgstr ""
429
 
430
+ #: contact-form-7/includes/functions.php:197
431
  msgid "Belarusian"
432
  msgstr ""
433
 
434
+ #: contact-form-7/includes/functions.php:198
435
  msgid "Bosnian"
436
  msgstr ""
437
 
438
+ #: contact-form-7/includes/functions.php:199
439
  msgid "Brazilian Portuguese"
440
  msgstr ""
441
 
442
+ #: contact-form-7/includes/functions.php:200
443
  msgid "Bulgarian"
444
  msgstr ""
445
 
446
+ #: contact-form-7/includes/functions.php:201
447
  msgid "Catalan"
448
  msgstr ""
449
 
450
+ #: contact-form-7/includes/functions.php:202
451
  msgid "Chinese (Simplified)"
452
  msgstr ""
453
 
454
+ #: contact-form-7/includes/functions.php:203
455
  msgid "Chinese (Traditional)"
456
  msgstr ""
457
 
458
+ #: contact-form-7/includes/functions.php:204
459
  msgid "Croatian"
460
  msgstr ""
461
 
462
+ #: contact-form-7/includes/functions.php:205
463
  msgid "Czech"
464
  msgstr ""
465
 
466
+ #: contact-form-7/includes/functions.php:206
467
  msgid "Danish"
468
  msgstr ""
469
 
470
+ #: contact-form-7/includes/functions.php:207
471
  msgid "Dutch"
472
  msgstr ""
473
 
474
+ #: contact-form-7/includes/functions.php:208
475
  msgid "English"
476
  msgstr ""
477
 
478
+ #: contact-form-7/includes/functions.php:209
479
  msgid "Esperanto"
480
  msgstr ""
481
 
482
+ #: contact-form-7/includes/functions.php:210
483
  msgid "Estonian"
484
  msgstr ""
485
 
486
+ #: contact-form-7/includes/functions.php:211
487
  msgid "Finnish"
488
  msgstr ""
489
 
490
+ #: contact-form-7/includes/functions.php:212
491
  msgid "French"
492
  msgstr ""
493
 
494
+ #: contact-form-7/includes/functions.php:213
495
  msgid "Galician"
496
  msgstr ""
497
 
498
+ #: contact-form-7/includes/functions.php:214
499
  msgid "Georgian"
500
  msgstr ""
501
 
502
+ #: contact-form-7/includes/functions.php:215
503
  msgid "German"
504
  msgstr ""
505
 
506
+ #: contact-form-7/includes/functions.php:216
507
  msgid "Greek"
508
  msgstr ""
509
 
510
+ #: contact-form-7/includes/functions.php:217
511
  msgid "Hebrew"
512
  msgstr ""
513
 
514
+ #: contact-form-7/includes/functions.php:218
515
  msgid "Hindi"
516
  msgstr ""
517
 
518
+ #: contact-form-7/includes/functions.php:219
519
  msgid "Hungarian"
520
  msgstr ""
521
 
522
+ #: contact-form-7/includes/functions.php:220
523
  msgid "Indonesian"
524
  msgstr ""
525
 
526
+ #: contact-form-7/includes/functions.php:221
527
  msgid "Irish"
528
  msgstr ""
529
 
530
+ #: contact-form-7/includes/functions.php:222
531
  msgid "Italian"
532
  msgstr ""
533
 
534
+ #: contact-form-7/includes/functions.php:223
535
  msgid "Japanese"
536
  msgstr ""
537
 
538
+ #: contact-form-7/includes/functions.php:224
539
  msgid "Korean"
540
  msgstr ""
541
 
542
+ #: contact-form-7/includes/functions.php:225
543
  msgid "Latvian"
544
  msgstr ""
545
 
546
+ #: contact-form-7/includes/functions.php:226
547
  msgid "Lithuanian"
548
  msgstr ""
549
 
550
+ #: contact-form-7/includes/functions.php:227
551
  msgid "Macedonian"
552
  msgstr ""
553
 
554
+ #: contact-form-7/includes/functions.php:228
555
  msgid "Malay"
556
  msgstr ""
557
 
558
+ #: contact-form-7/includes/functions.php:229
559
  msgid "Malayalam"
560
  msgstr ""
561
 
562
+ #: contact-form-7/includes/functions.php:230
563
  msgid "Maltese"
564
  msgstr ""
565
 
566
+ #: contact-form-7/includes/functions.php:231
567
  msgid "Norwegian"
568
  msgstr ""
569
 
570
+ #: contact-form-7/includes/functions.php:232
571
  msgid "Persian"
572
  msgstr ""
573
 
574
+ #: contact-form-7/includes/functions.php:233
575
  msgid "Polish"
576
  msgstr ""
577
 
578
+ #: contact-form-7/includes/functions.php:234
579
  msgid "Portuguese"
580
  msgstr ""
581
 
582
+ #: contact-form-7/includes/functions.php:235
583
  msgid "Russian"
584
  msgstr ""
585
 
586
+ #: contact-form-7/includes/functions.php:236
587
  msgid "Romanian"
588
  msgstr ""
589
 
590
+ #: contact-form-7/includes/functions.php:237
591
  msgid "Serbian"
592
  msgstr ""
593
 
594
+ #: contact-form-7/includes/functions.php:238
595
  msgid "Sinhala"
596
  msgstr ""
597
 
598
+ #: contact-form-7/includes/functions.php:239
599
  msgid "Slovak"
600
  msgstr ""
601
 
602
+ #: contact-form-7/includes/functions.php:240
603
  msgid "Slovene"
604
  msgstr ""
605
 
606
+ #: contact-form-7/includes/functions.php:241
607
  msgid "Spanish"
608
  msgstr ""
609
 
610
+ #: contact-form-7/includes/functions.php:242
611
  msgid "Swedish"
612
  msgstr ""
613
 
614
+ #: contact-form-7/includes/functions.php:243
615
  msgid "Tamil"
616
  msgstr ""
617
 
618
+ #: contact-form-7/includes/functions.php:244
619
  msgid "Thai"
620
  msgstr ""
621
 
622
+ #: contact-form-7/includes/functions.php:245
623
  msgid "Tagalog"
624
  msgstr ""
625
 
626
+ #: contact-form-7/includes/functions.php:246
627
  msgid "Turkish"
628
  msgstr ""
629
 
630
+ #: contact-form-7/includes/functions.php:247
631
  msgid "Ukrainian"
632
  msgstr ""
633
 
634
+ #: contact-form-7/includes/functions.php:248
635
  msgid "Vietnamese"
636
  msgstr ""
637
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://contactform7.com/donate/
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 3.3
6
  Tested up to: 3.5
7
- Stable tag: 3.3.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -53,7 +53,7 @@ The following are other recommended plugins by the author of Contact Form 7.
53
  * Esperanto (eo_EO) - Arkadiusz Zychewicz
54
  * Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee), Egon Elbre
55
  * Finnish (fi) - [Miika Turunen](http://www.webwork.fi/), [Mediajalostamo](http://www.mediajalostamo.fi/), [Jani Alha](http://www.wysiwyg.fi/)
56
- * French (fr_FR) - [Jillij](http://www.jillij.com/), [Oncle Tom](http://case.oncle-tom.net/), [Maître Mô](http://maitremo.fr/)
57
  * Galician (gl_ES) - [Arume Desenvolvementos Informáticos](http://www.arumeinformatica.es/)
58
  * Georgian (ka_GE) - [Nodar Rocko Davituri](http://davituri.com/)
59
  * German (de_DE) - [Marcel Spitau](http://blog.spitau.de), [Ivan Graf](http://blog.bildergallery.com/)
@@ -76,7 +76,7 @@ The following are other recommended plugins by the author of Contact Form 7.
76
  * Persian (Farsi; fa_IR) - [Mohammad Musavi](http://www.musavis.com/), [Mohsen Firoozmandan](http://www.rankbazar.com/)
77
  * Polish (pl_PL) - [Zbigniew Czernik](http://zibik.jogger.pl/), [Daniel Fruzynski](http://www.poradnik-webmastera.com), [RafalDesign](http://www.rafaldesign.pl/), [Bartosz Arendt](http://digitalfactory.pl/)
78
  * Portuguese (pt_PT) - [Hugo Baeta](http://hugobaeta.com), [Pedro Nave](http://pedronave.com/)
79
- * Russian (ru_RU) - Dmitry Volotovich, [kg69design](http://kg69design.com/), [Denis Voituk](http://artprima.cz/)
80
  * Romanian (ro_RO) - [Stas Sushkov](http://stas.nerd.ro/), [Anunturi Jibo](http://www.jibo.ro/), [Marius Olar](http://webdudes.ro/)
81
  * Serbian (sr_RS) - [Vedran](http://www.seorabbit.com/), [Aleksandar Urošević](http://blog.urosevic.net/)
82
  * Sinhala (si_LK) - [Nitin Aggarwal](http://offshoreally.com/)
@@ -87,7 +87,7 @@ The following are other recommended plugins by the author of Contact Form 7.
87
  * Tagalog (tl) - [Rupert Agnew Lanuza](http://wheretobuy.com.ph/), [Hanne](http://pointen.dk/)
88
  * Tamil (ta) - [Nitin Aggarwal](http://offshoreally.com/)
89
  * Thai (th) - [ToshiK](http://www.tuntikorn.com/), [kazama](http://blog.wordthai.com/)
90
- * Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com), [Hasan Yılmaz](http://hedefturkce.com/), [Emin Buğra Saral](http://www.rahmetli.info/)
91
  * Ukrainian (uk) - [Andrey Kovba](http://myserver.com.ua/), [Ukrainian WordPress localization team](http://wordpress.co.ua/plugins/contact-form-7.html)
92
  * Vietnamese (vi) - Thanh Hải, Hà, [Khang Minh](http://betterwp.net/)
93
 
@@ -122,6 +122,12 @@ Do you have questions or issues with Contact Form 7? Use these support channels
122
 
123
  == Changelog ==
124
 
 
 
 
 
 
 
125
  = 3.3.2 =
126
 
127
  * Fixed: Add the additional headers only when they are not empty.
4
  Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
5
  Requires at least: 3.3
6
  Tested up to: 3.5
7
+ Stable tag: 3.3.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
53
  * Esperanto (eo_EO) - Arkadiusz Zychewicz
54
  * Estonian (et) - [Peeter Rahuvarm](http://www.kraabus.ee), Egon Elbre
55
  * Finnish (fi) - [Miika Turunen](http://www.webwork.fi/), [Mediajalostamo](http://www.mediajalostamo.fi/), [Jani Alha](http://www.wysiwyg.fi/)
56
+ * French (fr_FR) - [Jillij](http://www.jillij.com/), [Oncle Tom](http://case.oncle-tom.net/), [Maître Mô](http://maitremo.fr/), Sellami Hédi
57
  * Galician (gl_ES) - [Arume Desenvolvementos Informáticos](http://www.arumeinformatica.es/)
58
  * Georgian (ka_GE) - [Nodar Rocko Davituri](http://davituri.com/)
59
  * German (de_DE) - [Marcel Spitau](http://blog.spitau.de), [Ivan Graf](http://blog.bildergallery.com/)
76
  * Persian (Farsi; fa_IR) - [Mohammad Musavi](http://www.musavis.com/), [Mohsen Firoozmandan](http://www.rankbazar.com/)
77
  * Polish (pl_PL) - [Zbigniew Czernik](http://zibik.jogger.pl/), [Daniel Fruzynski](http://www.poradnik-webmastera.com), [RafalDesign](http://www.rafaldesign.pl/), [Bartosz Arendt](http://digitalfactory.pl/)
78
  * Portuguese (pt_PT) - [Hugo Baeta](http://hugobaeta.com), [Pedro Nave](http://pedronave.com/)
79
+ * Russian (ru_RU) - Dmitry Volotovich, [Denis Voituk](http://artprima.cz/), [kg69design](http://kg69design.com/)
80
  * Romanian (ro_RO) - [Stas Sushkov](http://stas.nerd.ro/), [Anunturi Jibo](http://www.jibo.ro/), [Marius Olar](http://webdudes.ro/)
81
  * Serbian (sr_RS) - [Vedran](http://www.seorabbit.com/), [Aleksandar Urošević](http://blog.urosevic.net/)
82
  * Sinhala (si_LK) - [Nitin Aggarwal](http://offshoreally.com/)
87
  * Tagalog (tl) - [Rupert Agnew Lanuza](http://wheretobuy.com.ph/), [Hanne](http://pointen.dk/)
88
  * Tamil (ta) - [Nitin Aggarwal](http://offshoreally.com/)
89
  * Thai (th) - [ToshiK](http://www.tuntikorn.com/), [kazama](http://blog.wordthai.com/)
90
+ * Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com), [Hasan Yılmaz](http://hedefturkce.com/), [Emin Buğra Saral](http://www.rahmetli.info/), Burak Yavuz
91
  * Ukrainian (uk) - [Andrey Kovba](http://myserver.com.ua/), [Ukrainian WordPress localization team](http://wordpress.co.ua/plugins/contact-form-7.html)
92
  * Vietnamese (vi) - Thanh Hải, Hà, [Khang Minh](http://betterwp.net/)
93
 
122
 
123
  == Changelog ==
124
 
125
+ = 3.3.3 =
126
+
127
+ * Fixed: Logic of resolving upload directory on WordPress 3.5 multi-site install.
128
+ * The jQuery Form Plugin (jquery.form.js) has been updated to 3.25.0.
129
+ * Translations for French, German, Russian and Turkish have been updated.
130
+
131
  = 3.3.2 =
132
 
133
  * Fixed: Add the additional headers only when they are not empty.
wp-contact-form-7.php CHANGED
@@ -7,10 +7,10 @@ Author: Takayuki Miyoshi
7
  Author URI: http://ideasilo.wordpress.com/
8
  Text Domain: wpcf7
9
  Domain Path: /languages/
10
- Version: 3.3.2
11
  */
12
 
13
- /* Copyright 2007-2012 Takayuki Miyoshi (email: takayukister at gmail.com)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
@@ -27,7 +27,7 @@ Version: 3.3.2
27
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28
  */
29
 
30
- define( 'WPCF7_VERSION', '3.3.2' );
31
 
32
  define( 'WPCF7_REQUIRED_WP_VERSION', '3.3' );
33
 
7
  Author URI: http://ideasilo.wordpress.com/
8
  Text Domain: wpcf7
9
  Domain Path: /languages/
10
+ Version: 3.3.3
11
  */
12
 
13
+ /* Copyright 2007-2013 Takayuki Miyoshi (email: takayukister at gmail.com)
14
 
15
  This program is free software; you can redistribute it and/or modify
16
  it under the terms of the GNU General Public License as published by
27
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28
  */
29
 
30
+ define( 'WPCF7_VERSION', '3.3.3' );
31
 
32
  define( 'WPCF7_REQUIRED_WP_VERSION', '3.3' );
33