MailChimp for WordPress - Version 3.1.8

Version Description

Download this release

Release Info

Developer DvanKooten
Plugin Icon 128x128 MailChimp for WordPress
Version 3.1.8
Comparing to
See all releases

Code changes from version 3.1.7 to 3.1.8

CHANGELOG.md CHANGED
@@ -1,6 +1,23 @@
1
  Changelog
2
  =========
3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  #### 3.1.7 - May 9, 2016
5
 
6
  **Fixes**
1
  Changelog
2
  =========
3
 
4
+ #### 3.1.8 - May 23, 2016
5
+
6
+ **Fixes**
7
+
8
+ - Form Preview mode replaced all titles on that page with "Form Preview".
9
+ - API class fix for [eCommerce360 functionality](https://mc4wp.com/kb/what-is-ecommerce360/).
10
+
11
+ **Improvements**
12
+
13
+ - Show dismissible notice when API key is not set.
14
+ - Show empty API key errors in plugin log.
15
+ - Friendlier error message for re-subscribe failures.
16
+
17
+ **Additions**
18
+
19
+ - Add `form.reset()` method to JS API.
20
+
21
  #### 3.1.7 - May 9, 2016
22
 
23
  **Fixes**
assets/js/forms-api.js CHANGED
@@ -126,6 +126,13 @@ var Form = function(id, element) {
126
  form.element.querySelector('.mc4wp-response').innerHTML = msg;
127
  };
128
 
 
 
 
 
 
 
 
129
  };
130
 
131
  module.exports = Form;
126
  form.element.querySelector('.mc4wp-response').innerHTML = msg;
127
  };
128
 
129
+ // revert back to original state
130
+ this.reset = function() {
131
+ this.setResponse('');
132
+ form.element.querySelector('.mc4wp-form-fields').style.display = '';
133
+ form.element.reset();
134
+ }
135
+
136
  };
137
 
138
  module.exports = Form;
assets/js/forms-api.min.js CHANGED
@@ -1,2 +1,2 @@
1
- !function(){var e=void 0,t=void 0;!function n(t,r,i){function o(a,c){if(!r[a]){if(!t[a]){var u="function"==typeof e&&e;if(!c&&u)return u(a,!0);if(s)return s(a,!0);var f=new Error("Cannot find module '"+a+"'");throw f.code="MODULE_NOT_FOUND",f}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){var n=t[a][1][e];return o(n?n:e)},l,l.exports,n,t,r,i)}return r[a].exports}for(var s="function"==typeof e&&e,a=0;a<i.length;a++)o(i[a]);return o}({1:[function(e,t,n){"use strict";function r(e,t,n,r){a.trigger("submitted",[e]),n?a.trigger("error",[e,n]):(a.trigger("success",[e,r]),a.trigger(t+"d",[e,r]))}function i(e,t,n,i){if(n&&e.setData(i),u.auto_scroll){var o="animated"===u.auto_scroll,s=o?{behavior:"smooth"}:!1;e.element.scrollIntoView(s)}window.addEventListener("load",function(){r(e,t,n,i)})}var o=window.mc4wp||{};if(window.addEventListener){for(var s=e("gator"),a=e("./forms/forms.js"),c=window.mc4wp&&window.mc4wp.listeners?window.mc4wp.listeners:[],u=window.mc4wp_forms_config||{},f=0;f<c.length;f++)a.on(c[f].event,c[f].callback);if(s(document.body).on("submit",".mc4wp-form",function(e){e=e||window.event;var t=a.getByElement(e.target||e.srcElement);a.trigger("submit",[t,e])}),s(document.body).on("focus",".mc4wp-form",function(e){e=e||window.event;var t=a.getByElement(e.target||e.srcElement);t.started||(a.trigger("started",[t,e]),t.started=!0)}),s(document.body).on("change",".mc4wp-form",function(e){e=e||window.event;var t=a.getByElement(e.target||e.srcElement);a.trigger("change",[t,e])}),u.submitted_form){var l=u.submitted_form,h=document.getElementById(l.element_id),d=a.getByElement(h);i(d,l.action,l.errors,l.data)}o.forms=a,window.mc4wp=o}},{"./forms/forms.js":3,gator:6}],2:[function(e,t,n){"use strict";var r=e("../third-party/serialize.js"),i=e("populate.js"),o=e("../third-party/form2js.js"),s=function(e,t){var n=this;this.id=e,this.element=t||document.createElement("form"),this.name=this.element.getAttribute("data-name")||"Form #"+this.id,this.errors=[],this.started=!1,this.setData=function(e){try{i(n.element,e)}catch(t){console.error(t)}},this.getData=function(){return o(n.element)},this.getSerializedData=function(){return r(n.element)},this.setResponse=function(e){n.element.querySelector(".mc4wp-response").innerHTML=e}};t.exports=s},{"../third-party/form2js.js":4,"../third-party/serialize.js":5,"populate.js":7}],3:[function(e,t,n){"use strict";function r(e){for(var t=0;t<d.length;t++)if(d[t].id==e)return d[t];var n=document.querySelector(".mc4wp-form-"+e);return o(n,e)}function i(e){for(var t=e.form||e,n=0;n<d.length;n++)if(d[n].element==t)return d[n];return o(t)}function o(e,t){t=t||parseInt(e.getAttribute("data-id"))||0;var n=new l(t,e);return d.push(n),n}function s(){return d}function a(e,t){return h.on(e,t)}function c(e,t){return h.trigger(e,t)}function u(e,t){return h.off(e,t)}var f=e("wolfy87-eventemitter"),l=e("./form.js"),h=new f,d=[];t.exports={all:s,get:r,getByElement:i,on:a,trigger:c,off:u}},{"./form.js":2,"wolfy87-eventemitter":8}],4:[function(e,n,r){!function(e,i){"undefined"!=typeof r&&"undefined"!=typeof n&&n.exports?n.exports=i():"function"==typeof t&&t.amd?t(i):e.form2js=i()}(this,function(){"use strict";function e(e,r,i,o,s,a){a=!!a,"undefined"!=typeof i&&null!=i||(i=!0),"undefined"!=typeof r&&null!=r||(r="."),arguments.length<5&&(s=!1),e="string"==typeof e?document.getElementById(e):e;var c,u=[],f=0;if(e.constructor==Array||"undefined"!=typeof NodeList&&e.constructor==NodeList)for(;c=e[f++];)u=u.concat(n(c,o,s,a));else u=n(e,o,s,a);return t(u,i,r)}function t(e,t,n){var r,i,o,s,a,c,u,f,l,h,d,m,p,v={},g={};for(r=0;r<e.length;r++)if(a=e[r].value,!t||""!==a&&null!==a){for(m=e[r].name,p=m.split(n),c=[],u=v,f="",i=0;i<p.length;i++)if(d=p[i].split("]["),d.length>1)for(o=0;o<d.length;o++)if(0==o?d[o]=d[o]+"]":o==d.length-1?d[o]="["+d[o]:d[o]="["+d[o]+"]",h=d[o].match(/([a-z_]+)?\[([a-z_][a-z0-9_]+?)\]/i))for(s=1;s<h.length;s++)h[s]&&c.push(h[s]);else c.push(d[o]);else c=c.concat(d);for(i=0;i<c.length;i++)d=c[i],d.indexOf("[]")>-1&&i==c.length-1?(l=d.substr(0,d.indexOf("[")),f+=l,u[l]||(u[l]=[]),u[l].push(a)):d.indexOf("[")>-1?(l=d.substr(0,d.indexOf("[")),h=d.replace(/(^([a-z_]+)?\[)|(\]$)/gi,""),f+="_"+l+"_"+h,g[f]||(g[f]={}),""==l||u[l]||(u[l]=[]),i==c.length-1?""==l?(u.push(a),g[f][h]=u[u.length-1]):(u[l].push(a),g[f][h]=u[l][u[l].length-1]):g[f][h]||(/^[0-9a-z_]+\[?/i.test(c[i+1])?u[l].push({}):u[l].push([]),g[f][h]=u[l][u[l].length-1]),u=g[f][h]):(f+=d,i<c.length-1?(u[d]||(u[d]={}),u=u[d]):u[d]=a)}return v}function n(e,t,n,o){var s=i(e,t,n,o);return s.length>0?s:r(e,t,n,o)}function r(e,t,n,r){for(var o=[],s=e.firstChild;s;)o=o.concat(i(s,t,n,r)),s=s.nextSibling;return o}function i(e,t,n,i){if(e.disabled&&!i)return[];var a,c,u,f=o(e,n);return a=t&&t(e),a&&a.name?u=[a]:""!=f&&e.nodeName.match(/INPUT|TEXTAREA/i)?(c=s(e,i),u=null===c?[]:[{name:f,value:c}]):""!=f&&e.nodeName.match(/SELECT/i)?(c=s(e,i),u=[{name:f.replace(/\[\]$/,""),value:c}]):u=r(e,t,n,i),u}function o(e,t){return e.name&&""!=e.name?e.name:t&&e.id&&""!=e.id?e.id:""}function s(e,t){if(e.disabled&&!t)return null;switch(e.nodeName){case"INPUT":case"TEXTAREA":switch(e.type.toLowerCase()){case"radio":if(e.checked&&"false"===e.value)return!1;case"checkbox":if(e.checked&&"true"===e.value)return!0;if(!e.checked&&"true"===e.value)return!1;if(e.checked)return e.value;break;case"button":case"reset":case"submit":case"image":return"";default:return e.value}break;case"SELECT":return a(e)}return null}function a(e){var t,n,r,i=e.multiple,o=[];if(!i)return e.value;for(t=e.getElementsByTagName("option"),n=0,r=t.length;r>n;n++)t[n].selected&&o.push(t[n].value);return o}return e})},{}],5:[function(e,t,n){function r(e,t){"object"!=typeof t?t={hash:!!t}:void 0===t.hash&&(t.hash=!0);for(var n=t.hash?{}:"",r=t.serializer||(t.hash?s:a),i=e&&e.elements?e.elements:[],o=Object.create(null),f=0;f<i.length;++f){var l=i[f];if((t.disabled||!l.disabled)&&l.name&&u.test(l.nodeName)&&!c.test(l.type)){var h=l.name,d=l.value;if("checkbox"!==l.type&&"radio"!==l.type||l.checked||(d=void 0),t.empty){if("checkbox"!==l.type||l.checked||(d=""),"radio"===l.type&&(o[l.name]||l.checked?l.checked&&(o[l.name]=!0):o[l.name]=!1),!d&&"radio"==l.type)continue}else if(!d)continue;if("select-multiple"!==l.type)n=r(n,h,d);else{d=[];for(var m=l.options,p=!1,v=0;v<m.length;++v){var g=m[v],y=t.empty&&!g.value,w=g.value||y;g.selected&&w&&(p=!0,n=t.hash&&"[]"!==h.slice(h.length-2)?r(n,h+"[]",g.value):r(n,h,g.value))}!p&&t.empty&&(n=r(n,h,""))}}}if(t.empty)for(var h in o)o[h]||(n=r(n,h,""));return n}function i(e){var t=[],n=/^([^\[\]]*)/,r=new RegExp(f),i=n.exec(e);for(i[1]&&t.push(i[1]);null!==(i=r.exec(e));)t.push(i[1]);return t}function o(e,t,n){if(0===t.length)return e=n;var r=t.shift(),i=r.match(/^\[(.+?)\]$/);if("[]"===r)return e=e||[],Array.isArray(e)?e.push(o(null,t,n)):(e._values=e._values||[],e._values.push(o(null,t,n))),e;if(i){var s=i[1],a=parseInt(s,10);isNaN(a)?(e=e||{},e[s]=o(e[s],t,n)):(e=e||[],e[a]=o(e[a],t,n))}else e[r]=o(e[r],t,n);return e}function s(e,t,n){var r=t.match(f);if(r){var s=i(t);o(e,s,n)}else{var a=e[t];a?(Array.isArray(a)||(e[t]=[a]),e[t].push(n)):e[t]=n}return e}function a(e,t,n){return n=n.replace(/(\r)?\n/g,"\r\n"),n=encodeURIComponent(n),n=n.replace(/%20/g,"+"),e+(e?"&":"")+encodeURIComponent(t)+"="+n}var c=/^(?:submit|button|image|reset|file)$/i,u=/^(?:input|select|textarea|keygen)/i,f=/(\[[^\[\]]*\])/g;t.exports=r},{}],6:[function(e,t,n){!function(){function e(e,t,n){var r="blur"==t||"focus"==t;e.element.addEventListener(t,n,r)}function n(e){e.preventDefault(),e.stopPropagation()}function r(e){return f?f:f=e.matches?e.matches:e.webkitMatchesSelector?e.webkitMatchesSelector:e.mozMatchesSelector?e.mozMatchesSelector:e.msMatchesSelector?e.msMatchesSelector:e.oMatchesSelector?e.oMatchesSelector:u.matchesSelector}function i(e,t,n){if("_root"==t)return n;if(e!==n)return r(e).call(e,t)?e:e.parentNode?(l++,i(e.parentNode,t,n)):void 0}function o(e,t,n,r){d[e.id]||(d[e.id]={}),d[e.id][t]||(d[e.id][t]={}),d[e.id][t][n]||(d[e.id][t][n]=[]),d[e.id][t][n].push(r)}function s(e,t,n,r){if(d[e.id])if(t){if(!r&&!n)return void(d[e.id][t]={});if(!r)return void delete d[e.id][t][n];if(d[e.id][t][n])for(var i=0;i<d[e.id][t][n].length;i++)if(d[e.id][t][n][i]===r){d[e.id][t][n].splice(i,1);break}}else for(var o in d[e.id])d[e.id].hasOwnProperty(o)&&(d[e.id][o]={})}function a(e,t,n){if(d[e][n]){var r,o,s=t.target||t.srcElement,a={},c=0,f=0;l=0;for(r in d[e][n])d[e][n].hasOwnProperty(r)&&(o=i(s,r,m[e].element),o&&u.matchesEvent(n,m[e].element,o,"_root"==r,t)&&(l++,d[e][n][r].match=o,a[l]=d[e][n][r]));for(t.stopPropagation=function(){t.cancelBubble=!0},c=0;l>=c;c++)if(a[c])for(f=0;f<a[c].length;f++){if(a[c][f].call(a[c].match,t)===!1)return void u.cancel(t);if(t.cancelBubble)return}}}function c(e,t,n,r){function i(e){return function(t){a(f,t,e)}}if(this.element){e instanceof Array||(e=[e]),n||"function"!=typeof t||(n=t,t="_root");var c,f=this.id;for(c=0;c<e.length;c++)r?s(this,e[c],t,n):(d[f]&&d[f][e[c]]||u.addEvent(this,e[c],i(e[c])),o(this,e[c],t,n));return this}}function u(e,t){if(!(this instanceof u)){for(var n in m)if(m[n].element===e)return m[n];return h++,m[h]=new u(e,h),m[h]}this.element=e,this.id=t}var f,l=0,h=0,d={},m={};u.prototype.on=function(e,t,n){return c.call(this,e,t,n)},u.prototype.off=function(e,t,n){return c.call(this,e,t,n,!0)},u.matchesSelector=function(){},u.cancel=n,u.addEvent=e,u.matchesEvent=function(){return!0},"undefined"!=typeof t&&t.exports&&(t.exports=u),window.Gator=u}()},{}],7:[function(e,n,r){!function(e){var r=function(e,t,n){for(var i in t)if(t.hasOwnProperty(i)){var o=i,s=t[i];if("undefined"!=typeof n&&(o=n+"["+i+"]"),s.constructor===Array)o+="[]";else if("object"==typeof s){r(e,s,o);continue}var a=e.elements.namedItem(o);if(a){var c=a.type||a[0].type;switch(c){default:a.value=s;break;case"radio":case"checkbox":for(var u=0;u<a.length;u++)a[u].checked=s.indexOf(a[u].value)>-1;break;case"select-multiple":for(var f=s.constructor==Array?s:[s],l=0;l<a.options.length;l++)a.options[l].selected|=f.indexOf(a.options[l].value)>-1;break;case"select":case"select-one":a.value=s.toString()||s}}}};"function"==typeof t&&"object"==typeof t.amd&&t.amd?t(function(){return r}):"undefined"!=typeof n&&n.exports?n.exports=r:e.populate=r}(this)},{}],8:[function(e,n,r){(function(){"use strict";function e(){}function r(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function i(e){return function(){return this[e].apply(this,arguments)}}var o=e.prototype,s=this,a=s.EventEmitter;o.getListeners=function(e){var t,n,r=this._getEvents();if(e instanceof RegExp){t={};for(n in r)r.hasOwnProperty(n)&&e.test(n)&&(t[n]=r[n])}else t=r[e]||(r[e]=[]);return t},o.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},o.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},o.addListener=function(e,t){var n,i=this.getListenersAsObject(e),o="object"==typeof t;for(n in i)i.hasOwnProperty(n)&&-1===r(i[n],t)&&i[n].push(o?t:{listener:t,once:!1});return this},o.on=i("addListener"),o.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},o.once=i("addOnceListener"),o.defineEvent=function(e){return this.getListeners(e),this},o.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},o.removeListener=function(e,t){var n,i,o=this.getListenersAsObject(e);for(i in o)o.hasOwnProperty(i)&&(n=r(o[i],t),-1!==n&&o[i].splice(n,1));return this},o.off=i("removeListener"),o.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},o.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},o.manipulateListeners=function(e,t,n){var r,i,o=e?this.removeListener:this.addListener,s=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(r=n.length;r--;)o.call(this,t,n[r]);else for(r in t)t.hasOwnProperty(r)&&(i=t[r])&&("function"==typeof i?o.call(this,r,i):s.call(this,r,i));return this},o.removeEvent=function(e){var t,n=typeof e,r=this._getEvents();if("string"===n)delete r[e];else if(e instanceof RegExp)for(t in r)r.hasOwnProperty(t)&&e.test(t)&&delete r[t];else delete this._events;return this},o.removeAllListeners=i("removeEvent"),o.emitEvent=function(e,t){var n,r,i,o,s,a=this.getListenersAsObject(e);for(o in a)if(a.hasOwnProperty(o))for(n=a[o].slice(0),i=n.length;i--;)r=n[i],r.once===!0&&this.removeListener(e,r.listener),s=r.listener.apply(this,t||[]),s===this._getOnceReturnValue()&&this.removeListener(e,r.listener);return this},o.trigger=i("emitEvent"),o.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},o.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},o._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},o._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return s.EventEmitter=a,e},"function"==typeof t&&t.amd?t(function(){return e}):"object"==typeof n&&n.exports?n.exports=e:s.EventEmitter=e}).call(this)},{}]},{},[1])}();
2
  //# sourceMappingURL=forms-api.min.js.map
1
+ !function(){var e=void 0,t=void 0;!function n(t,r,i){function o(a,c){if(!r[a]){if(!t[a]){var u="function"==typeof e&&e;if(!c&&u)return u(a,!0);if(s)return s(a,!0);var f=new Error("Cannot find module '"+a+"'");throw f.code="MODULE_NOT_FOUND",f}var l=r[a]={exports:{}};t[a][0].call(l.exports,function(e){var n=t[a][1][e];return o(n?n:e)},l,l.exports,n,t,r,i)}return r[a].exports}for(var s="function"==typeof e&&e,a=0;a<i.length;a++)o(i[a]);return o}({1:[function(e,t,n){"use strict";function r(e,t,n,r){a.trigger("submitted",[e]),n?a.trigger("error",[e,n]):(a.trigger("success",[e,r]),a.trigger(t+"d",[e,r]))}function i(e,t,n,i){if(n&&e.setData(i),u.auto_scroll){var o="animated"===u.auto_scroll,s=o?{behavior:"smooth"}:!1;e.element.scrollIntoView(s)}window.addEventListener("load",function(){r(e,t,n,i)})}var o=window.mc4wp||{};if(window.addEventListener){for(var s=e("gator"),a=e("./forms/forms.js"),c=window.mc4wp&&window.mc4wp.listeners?window.mc4wp.listeners:[],u=window.mc4wp_forms_config||{},f=0;f<c.length;f++)a.on(c[f].event,c[f].callback);if(s(document.body).on("submit",".mc4wp-form",function(e){e=e||window.event;var t=a.getByElement(e.target||e.srcElement);a.trigger("submit",[t,e])}),s(document.body).on("focus",".mc4wp-form",function(e){e=e||window.event;var t=a.getByElement(e.target||e.srcElement);t.started||(a.trigger("started",[t,e]),t.started=!0)}),s(document.body).on("change",".mc4wp-form",function(e){e=e||window.event;var t=a.getByElement(e.target||e.srcElement);a.trigger("change",[t,e])}),u.submitted_form){var l=u.submitted_form,h=document.getElementById(l.element_id),d=a.getByElement(h);i(d,l.action,l.errors,l.data)}o.forms=a,window.mc4wp=o}},{"./forms/forms.js":3,gator:6}],2:[function(e,t,n){"use strict";var r=e("../third-party/serialize.js"),i=e("populate.js"),o=e("../third-party/form2js.js"),s=function(e,t){var n=this;this.id=e,this.element=t||document.createElement("form"),this.name=this.element.getAttribute("data-name")||"Form #"+this.id,this.errors=[],this.started=!1,this.setData=function(e){try{i(n.element,e)}catch(t){console.error(t)}},this.getData=function(){return o(n.element)},this.getSerializedData=function(){return r(n.element)},this.setResponse=function(e){n.element.querySelector(".mc4wp-response").innerHTML=e},this.reset=function(){this.setResponse(""),n.element.querySelector(".mc4wp-form-fields").style.display="",n.element.reset()}};t.exports=s},{"../third-party/form2js.js":4,"../third-party/serialize.js":5,"populate.js":7}],3:[function(e,t,n){"use strict";function r(e){for(var t=0;t<d.length;t++)if(d[t].id==e)return d[t];var n=document.querySelector(".mc4wp-form-"+e);return o(n,e)}function i(e){for(var t=e.form||e,n=0;n<d.length;n++)if(d[n].element==t)return d[n];return o(t)}function o(e,t){t=t||parseInt(e.getAttribute("data-id"))||0;var n=new l(t,e);return d.push(n),n}function s(){return d}function a(e,t){return h.on(e,t)}function c(e,t){return h.trigger(e,t)}function u(e,t){return h.off(e,t)}var f=e("wolfy87-eventemitter"),l=e("./form.js"),h=new f,d=[];t.exports={all:s,get:r,getByElement:i,on:a,trigger:c,off:u}},{"./form.js":2,"wolfy87-eventemitter":8}],4:[function(e,n,r){!function(e,i){"undefined"!=typeof r&&"undefined"!=typeof n&&n.exports?n.exports=i():"function"==typeof t&&t.amd?t(i):e.form2js=i()}(this,function(){"use strict";function e(e,r,i,o,s,a){a=!!a,"undefined"!=typeof i&&null!=i||(i=!0),"undefined"!=typeof r&&null!=r||(r="."),arguments.length<5&&(s=!1),e="string"==typeof e?document.getElementById(e):e;var c,u=[],f=0;if(e.constructor==Array||"undefined"!=typeof NodeList&&e.constructor==NodeList)for(;c=e[f++];)u=u.concat(n(c,o,s,a));else u=n(e,o,s,a);return t(u,i,r)}function t(e,t,n){var r,i,o,s,a,c,u,f,l,h,d,m,p,v={},g={};for(r=0;r<e.length;r++)if(a=e[r].value,!t||""!==a&&null!==a){for(m=e[r].name,p=m.split(n),c=[],u=v,f="",i=0;i<p.length;i++)if(d=p[i].split("]["),d.length>1)for(o=0;o<d.length;o++)if(0==o?d[o]=d[o]+"]":o==d.length-1?d[o]="["+d[o]:d[o]="["+d[o]+"]",h=d[o].match(/([a-z_]+)?\[([a-z_][a-z0-9_]+?)\]/i))for(s=1;s<h.length;s++)h[s]&&c.push(h[s]);else c.push(d[o]);else c=c.concat(d);for(i=0;i<c.length;i++)d=c[i],d.indexOf("[]")>-1&&i==c.length-1?(l=d.substr(0,d.indexOf("[")),f+=l,u[l]||(u[l]=[]),u[l].push(a)):d.indexOf("[")>-1?(l=d.substr(0,d.indexOf("[")),h=d.replace(/(^([a-z_]+)?\[)|(\]$)/gi,""),f+="_"+l+"_"+h,g[f]||(g[f]={}),""==l||u[l]||(u[l]=[]),i==c.length-1?""==l?(u.push(a),g[f][h]=u[u.length-1]):(u[l].push(a),g[f][h]=u[l][u[l].length-1]):g[f][h]||(/^[0-9a-z_]+\[?/i.test(c[i+1])?u[l].push({}):u[l].push([]),g[f][h]=u[l][u[l].length-1]),u=g[f][h]):(f+=d,i<c.length-1?(u[d]||(u[d]={}),u=u[d]):u[d]=a)}return v}function n(e,t,n,o){var s=i(e,t,n,o);return s.length>0?s:r(e,t,n,o)}function r(e,t,n,r){for(var o=[],s=e.firstChild;s;)o=o.concat(i(s,t,n,r)),s=s.nextSibling;return o}function i(e,t,n,i){if(e.disabled&&!i)return[];var a,c,u,f=o(e,n);return a=t&&t(e),a&&a.name?u=[a]:""!=f&&e.nodeName.match(/INPUT|TEXTAREA/i)?(c=s(e,i),u=null===c?[]:[{name:f,value:c}]):""!=f&&e.nodeName.match(/SELECT/i)?(c=s(e,i),u=[{name:f.replace(/\[\]$/,""),value:c}]):u=r(e,t,n,i),u}function o(e,t){return e.name&&""!=e.name?e.name:t&&e.id&&""!=e.id?e.id:""}function s(e,t){if(e.disabled&&!t)return null;switch(e.nodeName){case"INPUT":case"TEXTAREA":switch(e.type.toLowerCase()){case"radio":if(e.checked&&"false"===e.value)return!1;case"checkbox":if(e.checked&&"true"===e.value)return!0;if(!e.checked&&"true"===e.value)return!1;if(e.checked)return e.value;break;case"button":case"reset":case"submit":case"image":return"";default:return e.value}break;case"SELECT":return a(e)}return null}function a(e){var t,n,r,i=e.multiple,o=[];if(!i)return e.value;for(t=e.getElementsByTagName("option"),n=0,r=t.length;r>n;n++)t[n].selected&&o.push(t[n].value);return o}return e})},{}],5:[function(e,t,n){function r(e,t){"object"!=typeof t?t={hash:!!t}:void 0===t.hash&&(t.hash=!0);for(var n=t.hash?{}:"",r=t.serializer||(t.hash?s:a),i=e&&e.elements?e.elements:[],o=Object.create(null),f=0;f<i.length;++f){var l=i[f];if((t.disabled||!l.disabled)&&l.name&&u.test(l.nodeName)&&!c.test(l.type)){var h=l.name,d=l.value;if("checkbox"!==l.type&&"radio"!==l.type||l.checked||(d=void 0),t.empty){if("checkbox"!==l.type||l.checked||(d=""),"radio"===l.type&&(o[l.name]||l.checked?l.checked&&(o[l.name]=!0):o[l.name]=!1),!d&&"radio"==l.type)continue}else if(!d)continue;if("select-multiple"!==l.type)n=r(n,h,d);else{d=[];for(var m=l.options,p=!1,v=0;v<m.length;++v){var g=m[v],y=t.empty&&!g.value,w=g.value||y;g.selected&&w&&(p=!0,n=t.hash&&"[]"!==h.slice(h.length-2)?r(n,h+"[]",g.value):r(n,h,g.value))}!p&&t.empty&&(n=r(n,h,""))}}}if(t.empty)for(var h in o)o[h]||(n=r(n,h,""));return n}function i(e){var t=[],n=/^([^\[\]]*)/,r=new RegExp(f),i=n.exec(e);for(i[1]&&t.push(i[1]);null!==(i=r.exec(e));)t.push(i[1]);return t}function o(e,t,n){if(0===t.length)return e=n;var r=t.shift(),i=r.match(/^\[(.+?)\]$/);if("[]"===r)return e=e||[],Array.isArray(e)?e.push(o(null,t,n)):(e._values=e._values||[],e._values.push(o(null,t,n))),e;if(i){var s=i[1],a=parseInt(s,10);isNaN(a)?(e=e||{},e[s]=o(e[s],t,n)):(e=e||[],e[a]=o(e[a],t,n))}else e[r]=o(e[r],t,n);return e}function s(e,t,n){var r=t.match(f);if(r){var s=i(t);o(e,s,n)}else{var a=e[t];a?(Array.isArray(a)||(e[t]=[a]),e[t].push(n)):e[t]=n}return e}function a(e,t,n){return n=n.replace(/(\r)?\n/g,"\r\n"),n=encodeURIComponent(n),n=n.replace(/%20/g,"+"),e+(e?"&":"")+encodeURIComponent(t)+"="+n}var c=/^(?:submit|button|image|reset|file)$/i,u=/^(?:input|select|textarea|keygen)/i,f=/(\[[^\[\]]*\])/g;t.exports=r},{}],6:[function(e,t,n){!function(){function e(e,t,n){var r="blur"==t||"focus"==t;e.element.addEventListener(t,n,r)}function n(e){e.preventDefault(),e.stopPropagation()}function r(e){return f?f:f=e.matches?e.matches:e.webkitMatchesSelector?e.webkitMatchesSelector:e.mozMatchesSelector?e.mozMatchesSelector:e.msMatchesSelector?e.msMatchesSelector:e.oMatchesSelector?e.oMatchesSelector:u.matchesSelector}function i(e,t,n){if("_root"==t)return n;if(e!==n)return r(e).call(e,t)?e:e.parentNode?(l++,i(e.parentNode,t,n)):void 0}function o(e,t,n,r){d[e.id]||(d[e.id]={}),d[e.id][t]||(d[e.id][t]={}),d[e.id][t][n]||(d[e.id][t][n]=[]),d[e.id][t][n].push(r)}function s(e,t,n,r){if(d[e.id])if(t){if(!r&&!n)return void(d[e.id][t]={});if(!r)return void delete d[e.id][t][n];if(d[e.id][t][n])for(var i=0;i<d[e.id][t][n].length;i++)if(d[e.id][t][n][i]===r){d[e.id][t][n].splice(i,1);break}}else for(var o in d[e.id])d[e.id].hasOwnProperty(o)&&(d[e.id][o]={})}function a(e,t,n){if(d[e][n]){var r,o,s=t.target||t.srcElement,a={},c=0,f=0;l=0;for(r in d[e][n])d[e][n].hasOwnProperty(r)&&(o=i(s,r,m[e].element),o&&u.matchesEvent(n,m[e].element,o,"_root"==r,t)&&(l++,d[e][n][r].match=o,a[l]=d[e][n][r]));for(t.stopPropagation=function(){t.cancelBubble=!0},c=0;l>=c;c++)if(a[c])for(f=0;f<a[c].length;f++){if(a[c][f].call(a[c].match,t)===!1)return void u.cancel(t);if(t.cancelBubble)return}}}function c(e,t,n,r){function i(e){return function(t){a(f,t,e)}}if(this.element){e instanceof Array||(e=[e]),n||"function"!=typeof t||(n=t,t="_root");var c,f=this.id;for(c=0;c<e.length;c++)r?s(this,e[c],t,n):(d[f]&&d[f][e[c]]||u.addEvent(this,e[c],i(e[c])),o(this,e[c],t,n));return this}}function u(e,t){if(!(this instanceof u)){for(var n in m)if(m[n].element===e)return m[n];return h++,m[h]=new u(e,h),m[h]}this.element=e,this.id=t}var f,l=0,h=0,d={},m={};u.prototype.on=function(e,t,n){return c.call(this,e,t,n)},u.prototype.off=function(e,t,n){return c.call(this,e,t,n,!0)},u.matchesSelector=function(){},u.cancel=n,u.addEvent=e,u.matchesEvent=function(){return!0},"undefined"!=typeof t&&t.exports&&(t.exports=u),window.Gator=u}()},{}],7:[function(e,n,r){!function(e){var r=function(e,t,n){for(var i in t)if(t.hasOwnProperty(i)){var o=i,s=t[i];if("undefined"!=typeof n&&(o=n+"["+i+"]"),s.constructor===Array)o+="[]";else if("object"==typeof s){r(e,s,o);continue}var a=e.elements.namedItem(o);if(a){var c=a.type||a[0].type;switch(c){default:a.value=s;break;case"radio":case"checkbox":for(var u=0;u<a.length;u++)a[u].checked=s.indexOf(a[u].value)>-1;break;case"select-multiple":for(var f=s.constructor==Array?s:[s],l=0;l<a.options.length;l++)a.options[l].selected|=f.indexOf(a.options[l].value)>-1;break;case"select":case"select-one":a.value=s.toString()||s}}}};"function"==typeof t&&"object"==typeof t.amd&&t.amd?t(function(){return r}):"undefined"!=typeof n&&n.exports?n.exports=r:e.populate=r}(this)},{}],8:[function(e,n,r){(function(){"use strict";function e(){}function r(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function i(e){return function(){return this[e].apply(this,arguments)}}var o=e.prototype,s=this,a=s.EventEmitter;o.getListeners=function(e){var t,n,r=this._getEvents();if(e instanceof RegExp){t={};for(n in r)r.hasOwnProperty(n)&&e.test(n)&&(t[n]=r[n])}else t=r[e]||(r[e]=[]);return t},o.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},o.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},o.addListener=function(e,t){var n,i=this.getListenersAsObject(e),o="object"==typeof t;for(n in i)i.hasOwnProperty(n)&&-1===r(i[n],t)&&i[n].push(o?t:{listener:t,once:!1});return this},o.on=i("addListener"),o.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},o.once=i("addOnceListener"),o.defineEvent=function(e){return this.getListeners(e),this},o.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},o.removeListener=function(e,t){var n,i,o=this.getListenersAsObject(e);for(i in o)o.hasOwnProperty(i)&&(n=r(o[i],t),-1!==n&&o[i].splice(n,1));return this},o.off=i("removeListener"),o.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},o.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},o.manipulateListeners=function(e,t,n){var r,i,o=e?this.removeListener:this.addListener,s=e?this.removeListeners:this.addListeners;if("object"!=typeof t||t instanceof RegExp)for(r=n.length;r--;)o.call(this,t,n[r]);else for(r in t)t.hasOwnProperty(r)&&(i=t[r])&&("function"==typeof i?o.call(this,r,i):s.call(this,r,i));return this},o.removeEvent=function(e){var t,n=typeof e,r=this._getEvents();if("string"===n)delete r[e];else if(e instanceof RegExp)for(t in r)r.hasOwnProperty(t)&&e.test(t)&&delete r[t];else delete this._events;return this},o.removeAllListeners=i("removeEvent"),o.emitEvent=function(e,t){var n,r,i,o,s,a=this.getListenersAsObject(e);for(o in a)if(a.hasOwnProperty(o))for(n=a[o].slice(0),i=n.length;i--;)r=n[i],r.once===!0&&this.removeListener(e,r.listener),s=r.listener.apply(this,t||[]),s===this._getOnceReturnValue()&&this.removeListener(e,r.listener);return this},o.trigger=i("emitEvent"),o.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},o.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},o._getOnceReturnValue=function(){return this.hasOwnProperty("_onceReturnValue")?this._onceReturnValue:!0},o._getEvents=function(){return this._events||(this._events={})},e.noConflict=function(){return s.EventEmitter=a,e},"function"==typeof t&&t.amd?t(function(){return e}):"object"==typeof n&&n.exports?n.exports=e:s.EventEmitter=e}).call(this)},{}]},{},[1])}();
2
  //# sourceMappingURL=forms-api.min.js.map
assets/js/forms-api.min.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["forms-api.js"],"names":["require","undefined","define","e","t","n","r","s","o","u","a","i","f","Error","code","l","exports","call","length",1,"module","triggerFormEvents","form","action","errors","data","forms","trigger","handleFormRequest","setData","config","auto_scroll","animate","arg","behavior","element","scrollIntoView","window","addEventListener","mc4wp","Gator","listeners","mc4wp_forms_config","on","event","callback","document","body","getByElement","target","srcElement","started","submitted_form","formConfig","getElementById","element_id","./forms/forms.js","gator",2,"serialize","populate","formToJson","Form","id","this","createElement","name","getAttribute","console","error","getData","getSerializedData","setResponse","msg","querySelector","innerHTML","../third-party/form2js.js","../third-party/serialize.js","populate.js",3,"get","formId","formElement","createFromElement","parseInt","push","all","events","args","off","EventEmitter","./form.js","wolfy87-eventemitter",4,"root","factory","amd","form2js","rootNode","delimiter","skipEmpty","nodeCallback","useIdIfEmptyName","getDisabled","arguments","currNode","formValues","constructor","Array","NodeList","concat","getFormValues","processNameValues","nameValues","j","k","value","nameParts","currResult","arrNameFull","arrName","arrIdx","namePart","_nameParts","result","arrays","split","match","indexOf","substr","replace","test","extractNodeValues","getSubFormValues","currentNode","firstChild","nextSibling","node","disabled","callbackResult","fieldValue","fieldName","getFieldName","nodeName","getFieldValue","fieldNode","type","toLowerCase","checked","getSelectedOptionValue","selectNode","options","multiple","getElementsByTagName","selected",5,"hash","serializer","hash_serializer","str_serialize","elements","radio_store","Object","create","k_r_success_contrls","k_r_submitter","key","val","empty","selectOptions","isSelectedOptions","option","allowedEmpty","hasValue","slice","parse_keys","string","keys","prefix","children","RegExp","brackets","exec","hash_assign","shift","between","isArray","_values","index","isNaN","matches","existing","encodeURIComponent",6,"_addEvent","useCapture","_cancel","preventDefault","stopPropagation","_getMatcher","_matcher","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","matchesSelector","_matchesSelector","selector","boundElement","parentNode","_level","_addHandler","_handlers","_removeHandler","splice","hasOwnProperty","_handleEvent","_gatorInstances","matchesEvent","cancelBubble","cancel","_bind","remove","_getGlobalCallback","addEvent","_id","prototype",7,"basename","namedItem","values","toString",8,"indexOfListener","listener","alias","apply","proto","originalGlobalValue","getListeners","evt","response","_getEvents","flattenListeners","flatListeners","getListenersAsObject","addListener","listenerIsWrapped","once","addOnceListener","defineEvent","defineEvents","evts","removeListener","addListeners","manipulateListeners","removeListeners","single","removeEvent","_events","removeAllListeners","emitEvent","listenersMap","_getOnceReturnValue","emit","setOnceReturnValue","_onceReturnValue","noConflict"],"mappings":"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","file":"forms-api.min.js","sourcesContent":["(function () { var require = undefined; var define = undefined; (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n'use strict';\n\nvar mc4wp = window.mc4wp || {};\n\n// bail early if we're on IE8..\n// TODO: just don't load in IE8\nif( ! window.addEventListener ) {\n\treturn;\n}\n\n// deps & vars\nvar Gator = require('gator');\nvar forms = require('./forms/forms.js');\nvar listeners = window.mc4wp && window.mc4wp.listeners ? window.mc4wp.listeners : [];\nvar config = window.mc4wp_forms_config || {};\n\n// funcs\nfunction triggerFormEvents(form, action, errors, data) {\n\n\t// trigger events\n\tforms.trigger( 'submitted', [form]);\n\n\tif( errors ) {\n\t\tforms.trigger('error', [form, errors]);\n\t} else {\n\t\t// form was successfully submitted\n\t\tforms.trigger('success', [form, data]);\n\t\tforms.trigger(action + \"d\", [form, data]);\n\t}\n}\n\nfunction handleFormRequest(form, action, errors, data){\n\n\t// re-populate form\n\tif( errors ) {\n\t\tform.setData(data);\n\t}\n\n\tif( config.auto_scroll ) {\n\t\tvar animate = ( config.auto_scroll === 'animated' );\n\t\tvar arg = animate ? { behavior: 'smooth' } : false;\n\t\tform.element.scrollIntoView(arg);\n\t}\n\n\t// trigger events on window.load so all other scripts have loaded\n\twindow.addEventListener('load', function(){\n\t\ttriggerFormEvents(form, action, errors, data);\n\t});\n}\n\n// register early listeners\nfor(var i=0; i<listeners.length;i++) {\n\tforms.on(listeners[i].event, listeners[i].callback);\n}\n\n// Bind browser events to form events (using delegation to work with AJAX loaded forms as well)\nGator(document.body).on('submit', '.mc4wp-form', function(event) {\n\tevent = event || window.event;\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('submit', [form, event]);\n});\n\nGator(document.body).on('focus', '.mc4wp-form', function(event) {\n\tevent = event || window.event;\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\n\tif( ! form.started ) {\n\t\tforms.trigger('started', [form, event]);\n\t\tform.started = true;\n\t}\n});\n\nGator(document.body).on('change', '.mc4wp-form', function(event) {\n\tevent = event || window.event;\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('change', [form,event]);\n});\n\nif( config.submitted_form ) {\n\tvar formConfig = config.submitted_form,\n\t\telement = document.getElementById(formConfig.element_id),\n\t\tform = forms.getByElement(element);\n\n\thandleFormRequest(form, formConfig.action, formConfig.errors, formConfig.data);\n}\n\n// expose forms object\nmc4wp.forms = forms;\nwindow.mc4wp = mc4wp;\n\n},{\"./forms/forms.js\":3,\"gator\":6}],2:[function(require,module,exports){\n'use strict';\n\nvar serialize = require('../third-party/serialize.js');\nvar populate = require('populate.js');\nvar formToJson = require('../third-party/form2js.js');\n\nvar Form = function(id, element) {\n\n\tvar form = this;\n\n\tthis.id = id;\n\tthis.element = element || document.createElement('form');\n\tthis.name = this.element.getAttribute('data-name') || \"Form #\" + this.id;\n\tthis.errors = [];\n\tthis.started = false;\n\n\tthis.setData = function(data) {\n\t\ttry {\n\t\t\tpopulate(form.element, data);\n\t\t} catch(e) {\n\t\t\tconsole.error(e);\n\t\t}\n\t};\n\n\tthis.getData = function() {\n\t\treturn formToJson(form.element);\n\t};\n\n\tthis.getSerializedData = function() {\n\t\treturn serialize(form.element);\n\t};\n\n\tthis.setResponse = function( msg ) {\n\t\tform.element.querySelector('.mc4wp-response').innerHTML = msg;\n\t};\n\n};\n\nmodule.exports = Form;\n\n},{\"../third-party/form2js.js\":4,\"../third-party/serialize.js\":5,\"populate.js\":7}],3:[function(require,module,exports){\n'use strict';\n\n// deps\nvar EventEmitter = require('wolfy87-eventemitter');\nvar Form = require('./form.js');\n\n// variables\nvar events = new EventEmitter();\nvar forms = [];\n\n// get form by its id\n// please note that this will get the FIRST occurence of the form with that ID on the page\nfunction get(formId) {\n\n\t// do we have form for this one already?\n\tfor(var i=0; i<forms.length;i++) {\n\t\tif(forms[i].id == formId) {\n\t\t\treturn forms[i];\n\t\t}\n\t}\n\n\t// try to create from first occurence of this element\n\tvar formElement = document.querySelector('.mc4wp-form-' + formId);\n\treturn createFromElement(formElement,formId);\n}\n\n// get form by <form> element (or any input in form)\nfunction getByElement(element) {\n\tvar formElement = element.form || element;\n\n\tfor(var i=0; i < forms.length; i++) {\n\t\tif(forms[i].element == formElement) {\n\t\t\treturn forms[i];\n\t\t}\n\t}\n\n\treturn createFromElement(formElement);\n}\n\n// create form object from <form> element\nfunction createFromElement(formElement, id) {\n\tid = id || parseInt( formElement.getAttribute('data-id') ) || 0;\n\tvar form = new Form(id, formElement);\n\tforms.push(form);\n\treturn form;\n}\n\nfunction all() {\n\treturn forms;\n}\n\nfunction on(event,callback) {\n\treturn events.on(event,callback);\n}\n\nfunction trigger(event,args) {\n\treturn events.trigger(event,args);\n}\n\nfunction off(event,callback) {\n\treturn events.off(event,callback);\n}\n\nmodule.exports = {\n\t\"all\": all,\n\t\"get\": get,\n\t\"getByElement\": getByElement,\n\t\"on\": on,\n\t\"trigger\": trigger,\n\t\"off\": off\n};\n\n\n},{\"./form.js\":2,\"wolfy87-eventemitter\":8}],4:[function(require,module,exports){\n/**\n * Copyright (c) 2010 Maxim Vasiliev\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n *\n * @author Maxim Vasiliev\n * Date: 09.09.2010\n * Time: 19:02:33\n */\n\n\n(function (root, factory)\n{\n\tif (typeof exports !== 'undefined' && typeof module !== 'undefined' && module.exports) {\n\t\t// NodeJS\n\t\tmodule.exports = factory();\n\t}\n\telse if (typeof define === 'function' && define.amd)\n\t{\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine(factory);\n\t}\n\telse\n\t{\n\t\t// Browser globals\n\t\troot.form2js = factory();\n\t}\n}(this, function ()\n{\n\t\"use strict\";\n\n\t/**\n\t * Returns form values represented as Javascript object\n\t * \"name\" attribute defines structure of resulting object\n\t *\n\t * @param rootNode {Element|String} root form element (or it's id) or array of root elements\n\t * @param delimiter {String} structure parts delimiter defaults to '.'\n\t * @param skipEmpty {Boolean} should skip empty text values, defaults to true\n\t * @param nodeCallback {Function} custom function to get node value\n\t * @param useIdIfEmptyName {Boolean} if true value of id attribute of field will be used if name of field is empty\n\t */\n\tfunction form2js(rootNode, delimiter, skipEmpty, nodeCallback, useIdIfEmptyName, getDisabled)\n\t{\n\t\tgetDisabled = getDisabled ? true : false;\n\t\tif (typeof skipEmpty == 'undefined' || skipEmpty == null) skipEmpty = true;\n\t\tif (typeof delimiter == 'undefined' || delimiter == null) delimiter = '.';\n\t\tif (arguments.length < 5) useIdIfEmptyName = false;\n\n\t\trootNode = typeof rootNode == 'string' ? document.getElementById(rootNode) : rootNode;\n\n\t\tvar formValues = [],\n\t\t\tcurrNode,\n\t\t\ti = 0;\n\n\t\t/* If rootNode is array - combine values */\n\t\tif (rootNode.constructor == Array || (typeof NodeList != \"undefined\" && rootNode.constructor == NodeList))\n\t\t{\n\t\t\twhile(currNode = rootNode[i++])\n\t\t\t{\n\t\t\t\tformValues = formValues.concat(getFormValues(currNode, nodeCallback, useIdIfEmptyName, getDisabled));\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\tformValues = getFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled);\n\t\t}\n\n\t\treturn processNameValues(formValues, skipEmpty, delimiter);\n\t}\n\n\t/**\n\t * Processes collection of { name: 'name', value: 'value' } objects.\n\t * @param nameValues\n\t * @param skipEmpty if true skips elements with value == '' or value == null\n\t * @param delimiter\n\t */\n\tfunction processNameValues(nameValues, skipEmpty, delimiter)\n\t{\n\t\tvar result = {},\n\t\t\tarrays = {},\n\t\t\ti, j, k, l,\n\t\t\tvalue,\n\t\t\tnameParts,\n\t\t\tcurrResult,\n\t\t\tarrNameFull,\n\t\t\tarrName,\n\t\t\tarrIdx,\n\t\t\tnamePart,\n\t\t\tname,\n\t\t\t_nameParts;\n\n\t\tfor (i = 0; i < nameValues.length; i++)\n\t\t{\n\t\t\tvalue = nameValues[i].value;\n\n\t\t\tif (skipEmpty && (value === '' || value === null)) continue;\n\n\t\t\tname = nameValues[i].name;\n\t\t\t_nameParts = name.split(delimiter);\n\t\t\tnameParts = [];\n\t\t\tcurrResult = result;\n\t\t\tarrNameFull = '';\n\n\t\t\tfor(j = 0; j < _nameParts.length; j++)\n\t\t\t{\n\t\t\t\tnamePart = _nameParts[j].split('][');\n\t\t\t\tif (namePart.length > 1)\n\t\t\t\t{\n\t\t\t\t\tfor(k = 0; k < namePart.length; k++)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (k == 0)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tnamePart[k] = namePart[k] + ']';\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if (k == namePart.length - 1)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tnamePart[k] = '[' + namePart[k];\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tnamePart[k] = '[' + namePart[k] + ']';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tarrIdx = namePart[k].match(/([a-z_]+)?\\[([a-z_][a-z0-9_]+?)\\]/i);\n\t\t\t\t\t\tif (arrIdx)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tfor(l = 1; l < arrIdx.length; l++)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tif (arrIdx[l]) nameParts.push(arrIdx[l]);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse{\n\t\t\t\t\t\t\tnameParts.push(namePart[k]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t\tnameParts = nameParts.concat(namePart);\n\t\t\t}\n\n\t\t\tfor (j = 0; j < nameParts.length; j++)\n\t\t\t{\n\t\t\t\tnamePart = nameParts[j];\n\n\t\t\t\tif (namePart.indexOf('[]') > -1 && j == nameParts.length - 1)\n\t\t\t\t{\n\t\t\t\t\tarrName = namePart.substr(0, namePart.indexOf('['));\n\t\t\t\t\tarrNameFull += arrName;\n\n\t\t\t\t\tif (!currResult[arrName]) currResult[arrName] = [];\n\t\t\t\t\tcurrResult[arrName].push(value);\n\t\t\t\t}\n\t\t\t\telse if (namePart.indexOf('[') > -1)\n\t\t\t\t{\n\t\t\t\t\tarrName = namePart.substr(0, namePart.indexOf('['));\n\t\t\t\t\tarrIdx = namePart.replace(/(^([a-z_]+)?\\[)|(\\]$)/gi, '');\n\n\t\t\t\t\t/* Unique array name */\n\t\t\t\t\tarrNameFull += '_' + arrName + '_' + arrIdx;\n\n\t\t\t\t\t/*\n\t\t\t\t\t * Because arrIdx in field name can be not zero-based and step can be\n\t\t\t\t\t * other than 1, we can't use them in target array directly.\n\t\t\t\t\t * Instead we're making a hash where key is arrIdx and value is a reference to\n\t\t\t\t\t * added array element\n\t\t\t\t\t */\n\n\t\t\t\t\tif (!arrays[arrNameFull]) arrays[arrNameFull] = {};\n\t\t\t\t\tif (arrName != '' && !currResult[arrName]) currResult[arrName] = [];\n\n\t\t\t\t\tif (j == nameParts.length - 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (arrName == '')\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrResult.push(value);\n\t\t\t\t\t\t\tarrays[arrNameFull][arrIdx] = currResult[currResult.length - 1];\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrResult[arrName].push(value);\n\t\t\t\t\t\t\tarrays[arrNameFull][arrIdx] = currResult[arrName][currResult[arrName].length - 1];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tif (!arrays[arrNameFull][arrIdx])\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif ((/^[0-9a-z_]+\\[?/i).test(nameParts[j+1])) currResult[arrName].push({});\n\t\t\t\t\t\t\telse currResult[arrName].push([]);\n\n\t\t\t\t\t\t\tarrays[arrNameFull][arrIdx] = currResult[arrName][currResult[arrName].length - 1];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcurrResult = arrays[arrNameFull][arrIdx];\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tarrNameFull += namePart;\n\n\t\t\t\t\tif (j < nameParts.length - 1) /* Not the last part of name - means object */\n\t\t\t\t\t{\n\t\t\t\t\t\tif (!currResult[namePart]) currResult[namePart] = {};\n\t\t\t\t\t\tcurrResult = currResult[namePart];\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tcurrResult[namePart] = value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tfunction getFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled)\n\t{\n\t\tvar result = extractNodeValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled);\n\t\treturn result.length > 0 ? result : getSubFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled);\n\t}\n\n\tfunction getSubFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled)\n\t{\n\t\tvar result = [],\n\t\t\tcurrentNode = rootNode.firstChild;\n\n\t\twhile (currentNode)\n\t\t{\n\t\t\tresult = result.concat(extractNodeValues(currentNode, nodeCallback, useIdIfEmptyName, getDisabled));\n\t\t\tcurrentNode = currentNode.nextSibling;\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tfunction extractNodeValues(node, nodeCallback, useIdIfEmptyName, getDisabled) {\n\t\tif (node.disabled && !getDisabled) return [];\n\n\t\tvar callbackResult, fieldValue, result, fieldName = getFieldName(node, useIdIfEmptyName);\n\n\t\tcallbackResult = nodeCallback && nodeCallback(node);\n\n\t\tif (callbackResult && callbackResult.name) {\n\t\t\tresult = [callbackResult];\n\t\t}\n\t\telse if (fieldName != '' && node.nodeName.match(/INPUT|TEXTAREA/i)) {\n\t\t\tfieldValue = getFieldValue(node, getDisabled);\n\t\t\tif (null === fieldValue) {\n\t\t\t\tresult = [];\n\t\t\t} else {\n\t\t\t\tresult = [ { name: fieldName, value: fieldValue} ];\n\t\t\t}\n\t\t}\n\t\telse if (fieldName != '' && node.nodeName.match(/SELECT/i)) {\n\t\t\tfieldValue = getFieldValue(node, getDisabled);\n\t\t\tresult = [ { name: fieldName.replace(/\\[\\]$/, ''), value: fieldValue } ];\n\t\t}\n\t\telse {\n\t\t\tresult = getSubFormValues(node, nodeCallback, useIdIfEmptyName, getDisabled);\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tfunction getFieldName(node, useIdIfEmptyName)\n\t{\n\t\tif (node.name && node.name != '') return node.name;\n\t\telse if (useIdIfEmptyName && node.id && node.id != '') return node.id;\n\t\telse return '';\n\t}\n\n\n\tfunction getFieldValue(fieldNode, getDisabled)\n\t{\n\t\tif (fieldNode.disabled && !getDisabled) return null;\n\n\t\tswitch (fieldNode.nodeName) {\n\t\t\tcase 'INPUT':\n\t\t\tcase 'TEXTAREA':\n\t\t\t\tswitch (fieldNode.type.toLowerCase()) {\n\t\t\t\t\tcase 'radio':\n\t\t\t\t\t\tif (fieldNode.checked && fieldNode.value === \"false\") return false;\n\t\t\t\t\tcase 'checkbox':\n\t\t\t\t\t\tif (fieldNode.checked && fieldNode.value === \"true\") return true;\n\t\t\t\t\t\tif (!fieldNode.checked && fieldNode.value === \"true\") return false;\n\t\t\t\t\t\tif (fieldNode.checked) return fieldNode.value;\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase 'button':\n\t\t\t\t\tcase 'reset':\n\t\t\t\t\tcase 'submit':\n\t\t\t\t\tcase 'image':\n\t\t\t\t\t\treturn '';\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tdefault:\n\t\t\t\t\t\treturn fieldNode.value;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase 'SELECT':\n\t\t\t\treturn getSelectedOptionValue(fieldNode);\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t}\n\n\t\treturn null;\n\t}\n\n\tfunction getSelectedOptionValue(selectNode)\n\t{\n\t\tvar multiple = selectNode.multiple,\n\t\t\tresult = [],\n\t\t\toptions,\n\t\t\ti, l;\n\n\t\tif (!multiple) return selectNode.value;\n\n\t\tfor (options = selectNode.getElementsByTagName(\"option\"), i = 0, l = options.length; i < l; i++)\n\t\t{\n\t\t\tif (options[i].selected) result.push(options[i].value);\n\t\t}\n\n\t\treturn result;\n\t}\n\n\treturn form2js;\n\n}));\n},{}],5:[function(require,module,exports){\n// get successful control from form and assemble into object\n// http://www.w3.org/TR/html401/interact/forms.html#h-17.13.2\n\n// types which indicate a submit action and are not successful controls\n// these will be ignored\nvar k_r_submitter = /^(?:submit|button|image|reset|file)$/i;\n\n// node names which could be successful controls\nvar k_r_success_contrls = /^(?:input|select|textarea|keygen)/i;\n\n// Matches bracket notation.\nvar brackets = /(\\[[^\\[\\]]*\\])/g;\n\n// serializes form fields\n// @param form MUST be an HTMLForm element\n// @param options is an optional argument to configure the serialization. Default output\n// with no options specified is a url encoded string\n// - hash: [true | false] Configure the output type. If true, the output will\n// be a js object.\n// - serializer: [function] Optional serializer function to override the default one.\n// The function takes 3 arguments (result, key, value) and should return new result\n// hash and url encoded str serializers are provided with this module\n// - disabled: [true | false]. If true serialize disabled fields.\n// - empty: [true | false]. If true serialize empty fields\nfunction serialize(form, options) {\n\tif (typeof options != 'object') {\n\t\toptions = { hash: !!options };\n\t}\n\telse if (options.hash === undefined) {\n\t\toptions.hash = true;\n\t}\n\n\tvar result = (options.hash) ? {} : '';\n\tvar serializer = options.serializer || ((options.hash) ? hash_serializer : str_serialize);\n\n\tvar elements = form && form.elements ? form.elements : [];\n\n\t//Object store each radio and set if it's empty or not\n\tvar radio_store = Object.create(null);\n\n\tfor (var i=0 ; i<elements.length ; ++i) {\n\t\tvar element = elements[i];\n\n\t\t// ingore disabled fields\n\t\tif ((!options.disabled && element.disabled) || !element.name) {\n\t\t\tcontinue;\n\t\t}\n\t\t// ignore anyhting that is not considered a success field\n\t\tif (!k_r_success_contrls.test(element.nodeName) ||\n\t\t\tk_r_submitter.test(element.type)) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvar key = element.name;\n\t\tvar val = element.value;\n\n\t\t// we can't just use element.value for checkboxes cause some browsers lie to us\n\t\t// they say \"on\" for value when the box isn't checked\n\t\tif ((element.type === 'checkbox' || element.type === 'radio') && !element.checked) {\n\t\t\tval = undefined;\n\t\t}\n\n\t\t// If we want empty elements\n\t\tif (options.empty) {\n\t\t\t// for checkbox\n\t\t\tif (element.type === 'checkbox' && !element.checked) {\n\t\t\t\tval = '';\n\t\t\t}\n\n\t\t\t// for radio\n\t\t\tif (element.type === 'radio') {\n\t\t\t\tif (!radio_store[element.name] && !element.checked) {\n\t\t\t\t\tradio_store[element.name] = false;\n\t\t\t\t}\n\t\t\t\telse if (element.checked) {\n\t\t\t\t\tradio_store[element.name] = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// if options empty is true, continue only if its radio\n\t\t\tif (!val && element.type == 'radio') {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// value-less fields are ignored unless options.empty is true\n\t\t\tif (!val) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t}\n\n\t\t// multi select boxes\n\t\tif (element.type === 'select-multiple') {\n\t\t\tval = [];\n\n\t\t\tvar selectOptions = element.options;\n\t\t\tvar isSelectedOptions = false;\n\t\t\tfor (var j=0 ; j<selectOptions.length ; ++j) {\n\t\t\t\tvar option = selectOptions[j];\n\t\t\t\tvar allowedEmpty = options.empty && !option.value;\n\t\t\t\tvar hasValue = (option.value || allowedEmpty);\n\t\t\t\tif (option.selected && hasValue) {\n\t\t\t\t\tisSelectedOptions = true;\n\n\t\t\t\t\t// If using a hash serializer be sure to add the\n\t\t\t\t\t// correct notation for an array in the multi-select\n\t\t\t\t\t// context. Here the name attribute on the select element\n\t\t\t\t\t// might be missing the trailing bracket pair. Both names\n\t\t\t\t\t// \"foo\" and \"foo[]\" should be arrays.\n\t\t\t\t\tif (options.hash && key.slice(key.length - 2) !== '[]') {\n\t\t\t\t\t\tresult = serializer(result, key + '[]', option.value);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tresult = serializer(result, key, option.value);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Serialize if no selected options and options.empty is true\n\t\t\tif (!isSelectedOptions && options.empty) {\n\t\t\t\tresult = serializer(result, key, '');\n\t\t\t}\n\n\t\t\tcontinue;\n\t\t}\n\n\t\tresult = serializer(result, key, val);\n\t}\n\n\t// Check for all empty radio buttons and serialize them with key=\"\"\n\tif (options.empty) {\n\t\tfor (var key in radio_store) {\n\t\t\tif (!radio_store[key]) {\n\t\t\t\tresult = serializer(result, key, '');\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nfunction parse_keys(string) {\n\tvar keys = [];\n\tvar prefix = /^([^\\[\\]]*)/;\n\tvar children = new RegExp(brackets);\n\tvar match = prefix.exec(string);\n\n\tif (match[1]) {\n\t\tkeys.push(match[1]);\n\t}\n\n\twhile ((match = children.exec(string)) !== null) {\n\t\tkeys.push(match[1]);\n\t}\n\n\treturn keys;\n}\n\nfunction hash_assign(result, keys, value) {\n\tif (keys.length === 0) {\n\t\tresult = value;\n\t\treturn result;\n\t}\n\n\tvar key = keys.shift();\n\tvar between = key.match(/^\\[(.+?)\\]$/);\n\n\tif (key === '[]') {\n\t\tresult = result || [];\n\n\t\tif (Array.isArray(result)) {\n\t\t\tresult.push(hash_assign(null, keys, value));\n\t\t}\n\t\telse {\n\t\t\t// This might be the result of bad name attributes like \"[][foo]\",\n\t\t\t// in this case the original `result` object will already be\n\t\t\t// assigned to an object literal. Rather than coerce the object to\n\t\t\t// an array, or cause an exception the attribute \"_values\" is\n\t\t\t// assigned as an array.\n\t\t\tresult._values = result._values || [];\n\t\t\tresult._values.push(hash_assign(null, keys, value));\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t// Key is an attribute name and can be assigned directly.\n\tif (!between) {\n\t\tresult[key] = hash_assign(result[key], keys, value);\n\t}\n\telse {\n\t\tvar string = between[1];\n\t\tvar index = parseInt(string, 10);\n\n\t\t// If the characters between the brackets is not a number it is an\n\t\t// attribute name and can be assigned directly.\n\t\tif (isNaN(index)) {\n\t\t\tresult = result || {};\n\t\t\tresult[string] = hash_assign(result[string], keys, value);\n\t\t}\n\t\telse {\n\t\t\tresult = result || [];\n\t\t\tresult[index] = hash_assign(result[index], keys, value);\n\t\t}\n\t}\n\n\treturn result;\n}\n\n// Object/hash encoding serializer.\nfunction hash_serializer(result, key, value) {\n\tvar matches = key.match(brackets);\n\n\t// Has brackets? Use the recursive assignment function to walk the keys,\n\t// construct any missing objects in the result tree and make the assignment\n\t// at the end of the chain.\n\tif (matches) {\n\t\tvar keys = parse_keys(key);\n\t\thash_assign(result, keys, value);\n\t}\n\telse {\n\t\t// Non bracket notation can make assignments directly.\n\t\tvar existing = result[key];\n\n\t\t// If the value has been assigned already (for instance when a radio and\n\t\t// a checkbox have the same name attribute) convert the previous value\n\t\t// into an array before pushing into it.\n\t\t//\n\t\t// NOTE: If this requirement were removed all hash creation and\n\t\t// assignment could go through `hash_assign`.\n\t\tif (existing) {\n\t\t\tif (!Array.isArray(existing)) {\n\t\t\t\tresult[key] = [ existing ];\n\t\t\t}\n\n\t\t\tresult[key].push(value);\n\t\t}\n\t\telse {\n\t\t\tresult[key] = value;\n\t\t}\n\t}\n\n\treturn result;\n}\n\n// urlform encoding serializer\nfunction str_serialize(result, key, value) {\n\t// encode newlines as \\r\\n cause the html spec says so\n\tvalue = value.replace(/(\\r)?\\n/g, '\\r\\n');\n\tvalue = encodeURIComponent(value);\n\n\t// spaces should be '+' rather than '%20'.\n\tvalue = value.replace(/%20/g, '+');\n\treturn result + (result ? '&' : '') + encodeURIComponent(key) + '=' + value;\n}\n\nmodule.exports = serialize;\n},{}],6:[function(require,module,exports){\n/**\n * Copyright 2014 Craig Campbell\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\n * GATOR.JS\n * Simple Event Delegation\n *\n * @version 1.2.4\n *\n * Compatible with IE 9+, FF 3.6+, Safari 5+, Chrome\n *\n * Include legacy.js for compatibility with older browsers\n *\n * .-._ _ _ _ _ _ _ _ _\n * .-''-.__.-'00 '-' ' ' ' ' ' ' ' '-.\n * '.___ ' . .--_'-' '-' '-' _'-' '._\n * V: V 'vv-' '_ '. .' _..' '.'.\n * '=.____.=_.--' :_.__.__:_ '. : :\n * (((____.-' '-. / : :\n * (((-'\\ .' /\n * _____..' .'\n * '-._____.-'\n */\n(function() {\n var _matcher,\n _level = 0,\n _id = 0,\n _handlers = {},\n _gatorInstances = {};\n\n function _addEvent(gator, type, callback) {\n\n // blur and focus do not bubble up but if you use event capturing\n // then you will get them\n var useCapture = type == 'blur' || type == 'focus';\n gator.element.addEventListener(type, callback, useCapture);\n }\n\n function _cancel(e) {\n e.preventDefault();\n e.stopPropagation();\n }\n\n /**\n * returns function to use for determining if an element\n * matches a query selector\n *\n * @returns {Function}\n */\n function _getMatcher(element) {\n if (_matcher) {\n return _matcher;\n }\n\n if (element.matches) {\n _matcher = element.matches;\n return _matcher;\n }\n\n if (element.webkitMatchesSelector) {\n _matcher = element.webkitMatchesSelector;\n return _matcher;\n }\n\n if (element.mozMatchesSelector) {\n _matcher = element.mozMatchesSelector;\n return _matcher;\n }\n\n if (element.msMatchesSelector) {\n _matcher = element.msMatchesSelector;\n return _matcher;\n }\n\n if (element.oMatchesSelector) {\n _matcher = element.oMatchesSelector;\n return _matcher;\n }\n\n // if it doesn't match a native browser method\n // fall back to the gator function\n _matcher = Gator.matchesSelector;\n return _matcher;\n }\n\n /**\n * determines if the specified element matches a given selector\n *\n * @param {Node} element - the element to compare against the selector\n * @param {string} selector\n * @param {Node} boundElement - the element the listener was attached to\n * @returns {void|Node}\n */\n function _matchesSelector(element, selector, boundElement) {\n\n // no selector means this event was bound directly to this element\n if (selector == '_root') {\n return boundElement;\n }\n\n // if we have moved up to the element you bound the event to\n // then we have come too far\n if (element === boundElement) {\n return;\n }\n\n // if this is a match then we are done!\n if (_getMatcher(element).call(element, selector)) {\n return element;\n }\n\n // if this element did not match but has a parent we should try\n // going up the tree to see if any of the parent elements match\n // for example if you are looking for a click on an <a> tag but there\n // is a <span> inside of the a tag that it is the target,\n // it should still work\n if (element.parentNode) {\n _level++;\n return _matchesSelector(element.parentNode, selector, boundElement);\n }\n }\n\n function _addHandler(gator, event, selector, callback) {\n if (!_handlers[gator.id]) {\n _handlers[gator.id] = {};\n }\n\n if (!_handlers[gator.id][event]) {\n _handlers[gator.id][event] = {};\n }\n\n if (!_handlers[gator.id][event][selector]) {\n _handlers[gator.id][event][selector] = [];\n }\n\n _handlers[gator.id][event][selector].push(callback);\n }\n\n function _removeHandler(gator, event, selector, callback) {\n\n // if there are no events tied to this element at all\n // then don't do anything\n if (!_handlers[gator.id]) {\n return;\n }\n\n // if there is no event type specified then remove all events\n // example: Gator(element).off()\n if (!event) {\n for (var type in _handlers[gator.id]) {\n if (_handlers[gator.id].hasOwnProperty(type)) {\n _handlers[gator.id][type] = {};\n }\n }\n return;\n }\n\n // if no callback or selector is specified remove all events of this type\n // example: Gator(element).off('click')\n if (!callback && !selector) {\n _handlers[gator.id][event] = {};\n return;\n }\n\n // if a selector is specified but no callback remove all events\n // for this selector\n // example: Gator(element).off('click', '.sub-element')\n if (!callback) {\n delete _handlers[gator.id][event][selector];\n return;\n }\n\n // if we have specified an event type, selector, and callback then we\n // need to make sure there are callbacks tied to this selector to\n // begin with. if there aren't then we can stop here\n if (!_handlers[gator.id][event][selector]) {\n return;\n }\n\n // if there are then loop through all the callbacks and if we find\n // one that matches remove it from the array\n for (var i = 0; i < _handlers[gator.id][event][selector].length; i++) {\n if (_handlers[gator.id][event][selector][i] === callback) {\n _handlers[gator.id][event][selector].splice(i, 1);\n break;\n }\n }\n }\n\n function _handleEvent(id, e, type) {\n if (!_handlers[id][type]) {\n return;\n }\n\n var target = e.target || e.srcElement,\n selector,\n match,\n matches = {},\n i = 0,\n j = 0;\n\n // find all events that match\n _level = 0;\n for (selector in _handlers[id][type]) {\n if (_handlers[id][type].hasOwnProperty(selector)) {\n match = _matchesSelector(target, selector, _gatorInstances[id].element);\n\n if (match && Gator.matchesEvent(type, _gatorInstances[id].element, match, selector == '_root', e)) {\n _level++;\n _handlers[id][type][selector].match = match;\n matches[_level] = _handlers[id][type][selector];\n }\n }\n }\n\n // stopPropagation() fails to set cancelBubble to true in Webkit\n // @see http://code.google.com/p/chromium/issues/detail?id=162270\n e.stopPropagation = function() {\n e.cancelBubble = true;\n };\n\n for (i = 0; i <= _level; i++) {\n if (matches[i]) {\n for (j = 0; j < matches[i].length; j++) {\n if (matches[i][j].call(matches[i].match, e) === false) {\n Gator.cancel(e);\n return;\n }\n\n if (e.cancelBubble) {\n return;\n }\n }\n }\n }\n }\n\n /**\n * binds the specified events to the element\n *\n * @param {string|Array} events\n * @param {string} selector\n * @param {Function} callback\n * @param {boolean=} remove\n * @returns {Object}\n */\n function _bind(events, selector, callback, remove) {\n\n // fail silently if you pass null or undefined as an alement\n // in the Gator constructor\n if (!this.element) {\n return;\n }\n\n if (!(events instanceof Array)) {\n events = [events];\n }\n\n if (!callback && typeof(selector) == 'function') {\n callback = selector;\n selector = '_root';\n }\n\n var id = this.id,\n i;\n\n function _getGlobalCallback(type) {\n return function(e) {\n _handleEvent(id, e, type);\n };\n }\n\n for (i = 0; i < events.length; i++) {\n if (remove) {\n _removeHandler(this, events[i], selector, callback);\n continue;\n }\n\n if (!_handlers[id] || !_handlers[id][events[i]]) {\n Gator.addEvent(this, events[i], _getGlobalCallback(events[i]));\n }\n\n _addHandler(this, events[i], selector, callback);\n }\n\n return this;\n }\n\n /**\n * Gator object constructor\n *\n * @param {Node} element\n */\n function Gator(element, id) {\n\n // called as function\n if (!(this instanceof Gator)) {\n // only keep one Gator instance per node to make sure that\n // we don't create a ton of new objects if you want to delegate\n // multiple events from the same node\n //\n // for example: Gator(document).on(...\n for (var key in _gatorInstances) {\n if (_gatorInstances[key].element === element) {\n return _gatorInstances[key];\n }\n }\n\n _id++;\n _gatorInstances[_id] = new Gator(element, _id);\n\n return _gatorInstances[_id];\n }\n\n this.element = element;\n this.id = id;\n }\n\n /**\n * adds an event\n *\n * @param {string|Array} events\n * @param {string} selector\n * @param {Function} callback\n * @returns {Object}\n */\n Gator.prototype.on = function(events, selector, callback) {\n return _bind.call(this, events, selector, callback);\n };\n\n /**\n * removes an event\n *\n * @param {string|Array} events\n * @param {string} selector\n * @param {Function} callback\n * @returns {Object}\n */\n Gator.prototype.off = function(events, selector, callback) {\n return _bind.call(this, events, selector, callback, true);\n };\n\n Gator.matchesSelector = function() {};\n Gator.cancel = _cancel;\n Gator.addEvent = _addEvent;\n Gator.matchesEvent = function() {\n return true;\n };\n\n if (typeof module !== 'undefined' && module.exports) {\n module.exports = Gator;\n }\n\n window.Gator = Gator;\n}) ();\n\n},{}],7:[function(require,module,exports){\n/*! populate.js v1.0.2 by @dannyvankooten | MIT license */\n;(function(root) {\n\n\t/**\n\t * Populate form fields from a JSON object.\n\t *\n\t * @param form object The form element containing your input fields.\n\t * @param data array JSON data to populate the fields with.\n\t * @param basename string Optional basename which is added to `name` attributes\n\t */\n\tvar populate = function( form, data, basename) {\n\n\t\tfor(var key in data) {\n\n\t\t\tif( ! data.hasOwnProperty( key ) ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tvar name = key;\n\t\t\tvar value = data[key];\n\n\t\t\t// handle array name attributes\n\t\t\tif(typeof(basename) !== \"undefined\") {\n\t\t\t\tname = basename + \"[\" + key + \"]\";\n\t\t\t}\n\n\t\t\tif(value.constructor === Array) {\n\t\t\t\tname += '[]';\n\t\t\t} else if(typeof value == \"object\") {\n\t\t\t\tpopulate( form, value, name);\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// only proceed if element is set\n\t\t\tvar element = form.elements.namedItem( name );\n\t\t\tif( ! element ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tvar type = element.type || element[0].type;\n\n\t\t\tswitch(type ) {\n\t\t\t\tdefault:\n\t\t\t\t\telement.value = value;\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'radio':\n\t\t\t\tcase 'checkbox':\n\t\t\t\t\tfor( var j=0; j < element.length; j++ ) {\n\t\t\t\t\t\telement[j].checked = ( value.indexOf(element[j].value) > -1 );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'select-multiple':\n\t\t\t\t\tvar values = value.constructor == Array ? value : [value];\n\n\t\t\t\t\tfor(var k = 0; k < element.options.length; k++) {\n\t\t\t\t\t\telement.options[k].selected |= (values.indexOf(element.options[k].value) > -1 );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'select':\n\t\t\t\tcase 'select-one':\n\t\t\t\t\telement.value = value.toString() || value;\n\t\t\t\t\tbreak;\n\n\t\t\t}\n\n\t\t}\n\n\t};\n\n\t// Play nice with AMD, CommonJS or a plain global object.\n\tif ( typeof define == 'function' && typeof define.amd == 'object' && define.amd ) {\n\t\tdefine(function() {\n\t\t\treturn populate;\n\t\t});\n\t}\telse if ( typeof module !== 'undefined' && module.exports ) {\n\t\tmodule.exports = populate;\n\t} else {\n\t\troot.populate = populate;\n\t}\n\n}(this));\n},{}],8:[function(require,module,exports){\n/*!\n * EventEmitter v4.2.11 - git.io/ee\n * Unlicense - http://unlicense.org/\n * Oliver Caldwell - http://oli.me.uk/\n * @preserve\n */\n\n;(function () {\n 'use strict';\n\n /**\n * Class for managing events.\n * Can be extended to provide event functionality in other classes.\n *\n * @class EventEmitter Manages event registering and emitting.\n */\n function EventEmitter() {}\n\n // Shortcuts to improve speed and size\n var proto = EventEmitter.prototype;\n var exports = this;\n var originalGlobalValue = exports.EventEmitter;\n\n /**\n * Finds the index of the listener for the event in its storage array.\n *\n * @param {Function[]} listeners Array of listeners to search through.\n * @param {Function} listener Method to look for.\n * @return {Number} Index of the specified listener, -1 if not found\n * @api private\n */\n function indexOfListener(listeners, listener) {\n var i = listeners.length;\n while (i--) {\n if (listeners[i].listener === listener) {\n return i;\n }\n }\n\n return -1;\n }\n\n /**\n * Alias a method while keeping the context correct, to allow for overwriting of target method.\n *\n * @param {String} name The name of the target method.\n * @return {Function} The aliased method\n * @api private\n */\n function alias(name) {\n return function aliasClosure() {\n return this[name].apply(this, arguments);\n };\n }\n\n /**\n * Returns the listener array for the specified event.\n * Will initialise the event object and listener arrays if required.\n * Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them.\n * Each property in the object response is an array of listener functions.\n *\n * @param {String|RegExp} evt Name of the event to return the listeners from.\n * @return {Function[]|Object} All listener functions for the event.\n */\n proto.getListeners = function getListeners(evt) {\n var events = this._getEvents();\n var response;\n var key;\n\n // Return a concatenated array of all matching events if\n // the selector is a regular expression.\n if (evt instanceof RegExp) {\n response = {};\n for (key in events) {\n if (events.hasOwnProperty(key) && evt.test(key)) {\n response[key] = events[key];\n }\n }\n }\n else {\n response = events[evt] || (events[evt] = []);\n }\n\n return response;\n };\n\n /**\n * Takes a list of listener objects and flattens it into a list of listener functions.\n *\n * @param {Object[]} listeners Raw listener objects.\n * @return {Function[]} Just the listener functions.\n */\n proto.flattenListeners = function flattenListeners(listeners) {\n var flatListeners = [];\n var i;\n\n for (i = 0; i < listeners.length; i += 1) {\n flatListeners.push(listeners[i].listener);\n }\n\n return flatListeners;\n };\n\n /**\n * Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful.\n *\n * @param {String|RegExp} evt Name of the event to return the listeners from.\n * @return {Object} All listener functions for an event in an object.\n */\n proto.getListenersAsObject = function getListenersAsObject(evt) {\n var listeners = this.getListeners(evt);\n var response;\n\n if (listeners instanceof Array) {\n response = {};\n response[evt] = listeners;\n }\n\n return response || listeners;\n };\n\n /**\n * Adds a listener function to the specified event.\n * The listener will not be added if it is a duplicate.\n * If the listener returns true then it will be removed after it is called.\n * If you pass a regular expression as the event name then the listener will be added to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to attach the listener to.\n * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addListener = function addListener(evt, listener) {\n var listeners = this.getListenersAsObject(evt);\n var listenerIsWrapped = typeof listener === 'object';\n var key;\n\n for (key in listeners) {\n if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) {\n listeners[key].push(listenerIsWrapped ? listener : {\n listener: listener,\n once: false\n });\n }\n }\n\n return this;\n };\n\n /**\n * Alias of addListener\n */\n proto.on = alias('addListener');\n\n /**\n * Semi-alias of addListener. It will add a listener that will be\n * automatically removed after its first execution.\n *\n * @param {String|RegExp} evt Name of the event to attach the listener to.\n * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addOnceListener = function addOnceListener(evt, listener) {\n return this.addListener(evt, {\n listener: listener,\n once: true\n });\n };\n\n /**\n * Alias of addOnceListener.\n */\n proto.once = alias('addOnceListener');\n\n /**\n * Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad.\n * You need to tell it what event names should be matched by a regex.\n *\n * @param {String} evt Name of the event to create.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.defineEvent = function defineEvent(evt) {\n this.getListeners(evt);\n return this;\n };\n\n /**\n * Uses defineEvent to define multiple events.\n *\n * @param {String[]} evts An array of event names to define.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.defineEvents = function defineEvents(evts) {\n for (var i = 0; i < evts.length; i += 1) {\n this.defineEvent(evts[i]);\n }\n return this;\n };\n\n /**\n * Removes a listener function from the specified event.\n * When passed a regular expression as the event name, it will remove the listener from all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to remove the listener from.\n * @param {Function} listener Method to remove from the event.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeListener = function removeListener(evt, listener) {\n var listeners = this.getListenersAsObject(evt);\n var index;\n var key;\n\n for (key in listeners) {\n if (listeners.hasOwnProperty(key)) {\n index = indexOfListener(listeners[key], listener);\n\n if (index !== -1) {\n listeners[key].splice(index, 1);\n }\n }\n }\n\n return this;\n };\n\n /**\n * Alias of removeListener\n */\n proto.off = alias('removeListener');\n\n /**\n * Adds listeners in bulk using the manipulateListeners method.\n * If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added.\n * You can also pass it a regular expression to add the array of listeners to all events that match it.\n * Yeah, this function does quite a bit. That's probably a bad thing.\n *\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to add.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addListeners = function addListeners(evt, listeners) {\n // Pass through to manipulateListeners\n return this.manipulateListeners(false, evt, listeners);\n };\n\n /**\n * Removes listeners in bulk using the manipulateListeners method.\n * If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.\n * You can also pass it an event name and an array of listeners to be removed.\n * You can also pass it a regular expression to remove the listeners from all events that match it.\n *\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to remove.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeListeners = function removeListeners(evt, listeners) {\n // Pass through to manipulateListeners\n return this.manipulateListeners(true, evt, listeners);\n };\n\n /**\n * Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level.\n * The first argument will determine if the listeners are removed (true) or added (false).\n * If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.\n * You can also pass it an event name and an array of listeners to be added/removed.\n * You can also pass it a regular expression to manipulate the listeners of all events that match it.\n *\n * @param {Boolean} remove True if you want to remove listeners, false if you want to add.\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to add/remove.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) {\n var i;\n var value;\n var single = remove ? this.removeListener : this.addListener;\n var multiple = remove ? this.removeListeners : this.addListeners;\n\n // If evt is an object then pass each of its properties to this method\n if (typeof evt === 'object' && !(evt instanceof RegExp)) {\n for (i in evt) {\n if (evt.hasOwnProperty(i) && (value = evt[i])) {\n // Pass the single listener straight through to the singular method\n if (typeof value === 'function') {\n single.call(this, i, value);\n }\n else {\n // Otherwise pass back to the multiple function\n multiple.call(this, i, value);\n }\n }\n }\n }\n else {\n // So evt must be a string\n // And listeners must be an array of listeners\n // Loop over it and pass each one to the multiple method\n i = listeners.length;\n while (i--) {\n single.call(this, evt, listeners[i]);\n }\n }\n\n return this;\n };\n\n /**\n * Removes all listeners from a specified event.\n * If you do not specify an event then all listeners will be removed.\n * That means every event will be emptied.\n * You can also pass a regex to remove all events that match it.\n *\n * @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeEvent = function removeEvent(evt) {\n var type = typeof evt;\n var events = this._getEvents();\n var key;\n\n // Remove different things depending on the state of evt\n if (type === 'string') {\n // Remove all listeners for the specified event\n delete events[evt];\n }\n else if (evt instanceof RegExp) {\n // Remove all events matching the regex.\n for (key in events) {\n if (events.hasOwnProperty(key) && evt.test(key)) {\n delete events[key];\n }\n }\n }\n else {\n // Remove all listeners in all events\n delete this._events;\n }\n\n return this;\n };\n\n /**\n * Alias of removeEvent.\n *\n * Added to mirror the node API.\n */\n proto.removeAllListeners = alias('removeEvent');\n\n /**\n * Emits an event of your choice.\n * When emitted, every listener attached to that event will be executed.\n * If you pass the optional argument array then those arguments will be passed to every listener upon execution.\n * Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately.\n * So they will not arrive within the array on the other side, they will be separate.\n * You can also pass a regular expression to emit to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to emit and execute listeners for.\n * @param {Array} [args] Optional array of arguments to be passed to each listener.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.emitEvent = function emitEvent(evt, args) {\n var listenersMap = this.getListenersAsObject(evt);\n var listeners;\n var listener;\n var i;\n var key;\n var response;\n\n for (key in listenersMap) {\n if (listenersMap.hasOwnProperty(key)) {\n listeners = listenersMap[key].slice(0);\n i = listeners.length;\n\n while (i--) {\n // If the listener returns true then it shall be removed from the event\n // The function is executed either with a basic call or an apply if there is an args array\n listener = listeners[i];\n\n if (listener.once === true) {\n this.removeListener(evt, listener.listener);\n }\n\n response = listener.listener.apply(this, args || []);\n\n if (response === this._getOnceReturnValue()) {\n this.removeListener(evt, listener.listener);\n }\n }\n }\n }\n\n return this;\n };\n\n /**\n * Alias of emitEvent\n */\n proto.trigger = alias('emitEvent');\n\n /**\n * Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on.\n * As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to emit and execute listeners for.\n * @param {...*} Optional additional arguments to be passed to each listener.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.emit = function emit(evt) {\n var args = Array.prototype.slice.call(arguments, 1);\n return this.emitEvent(evt, args);\n };\n\n /**\n * Sets the current value to check against when executing listeners. If a\n * listeners return value matches the one set here then it will be removed\n * after execution. This value defaults to true.\n *\n * @param {*} value The new value to check for when executing listeners.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.setOnceReturnValue = function setOnceReturnValue(value) {\n this._onceReturnValue = value;\n return this;\n };\n\n /**\n * Fetches the current value to check against when executing listeners. If\n * the listeners return value matches this one then it should be removed\n * automatically. It will return true by default.\n *\n * @return {*|Boolean} The current value to check for or the default, true.\n * @api private\n */\n proto._getOnceReturnValue = function _getOnceReturnValue() {\n if (this.hasOwnProperty('_onceReturnValue')) {\n return this._onceReturnValue;\n }\n else {\n return true;\n }\n };\n\n /**\n * Fetches the events object and creates one if required.\n *\n * @return {Object} The events storage object.\n * @api private\n */\n proto._getEvents = function _getEvents() {\n return this._events || (this._events = {});\n };\n\n /**\n * Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version.\n *\n * @return {Function} Non conflicting EventEmitter class.\n */\n EventEmitter.noConflict = function noConflict() {\n exports.EventEmitter = originalGlobalValue;\n return EventEmitter;\n };\n\n // Expose the class either via AMD, CommonJS or the global object\n if (typeof define === 'function' && define.amd) {\n define(function () {\n return EventEmitter;\n });\n }\n else if (typeof module === 'object' && module.exports){\n module.exports = EventEmitter;\n }\n else {\n exports.EventEmitter = EventEmitter;\n }\n}.call(this));\n\n},{}]},{},[1]);\n })();"],"sourceRoot":"/source/"}
1
+ {"version":3,"sources":["forms-api.js"],"names":["require","undefined","define","e","t","n","r","s","o","u","a","i","f","Error","code","l","exports","call","length",1,"module","triggerFormEvents","form","action","errors","data","forms","trigger","handleFormRequest","setData","config","auto_scroll","animate","arg","behavior","element","scrollIntoView","window","addEventListener","mc4wp","Gator","listeners","mc4wp_forms_config","on","event","callback","document","body","getByElement","target","srcElement","started","submitted_form","formConfig","getElementById","element_id","./forms/forms.js","gator",2,"serialize","populate","formToJson","Form","id","this","createElement","name","getAttribute","console","error","getData","getSerializedData","setResponse","msg","querySelector","innerHTML","reset","style","display","../third-party/form2js.js","../third-party/serialize.js","populate.js",3,"get","formId","formElement","createFromElement","parseInt","push","all","events","args","off","EventEmitter","./form.js","wolfy87-eventemitter",4,"root","factory","amd","form2js","rootNode","delimiter","skipEmpty","nodeCallback","useIdIfEmptyName","getDisabled","arguments","currNode","formValues","constructor","Array","NodeList","concat","getFormValues","processNameValues","nameValues","j","k","value","nameParts","currResult","arrNameFull","arrName","arrIdx","namePart","_nameParts","result","arrays","split","match","indexOf","substr","replace","test","extractNodeValues","getSubFormValues","currentNode","firstChild","nextSibling","node","disabled","callbackResult","fieldValue","fieldName","getFieldName","nodeName","getFieldValue","fieldNode","type","toLowerCase","checked","getSelectedOptionValue","selectNode","options","multiple","getElementsByTagName","selected",5,"hash","serializer","hash_serializer","str_serialize","elements","radio_store","Object","create","k_r_success_contrls","k_r_submitter","key","val","empty","selectOptions","isSelectedOptions","option","allowedEmpty","hasValue","slice","parse_keys","string","keys","prefix","children","RegExp","brackets","exec","hash_assign","shift","between","isArray","_values","index","isNaN","matches","existing","encodeURIComponent",6,"_addEvent","useCapture","_cancel","preventDefault","stopPropagation","_getMatcher","_matcher","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","matchesSelector","_matchesSelector","selector","boundElement","parentNode","_level","_addHandler","_handlers","_removeHandler","splice","hasOwnProperty","_handleEvent","_gatorInstances","matchesEvent","cancelBubble","cancel","_bind","remove","_getGlobalCallback","addEvent","_id","prototype",7,"basename","namedItem","values","toString",8,"indexOfListener","listener","alias","apply","proto","originalGlobalValue","getListeners","evt","response","_getEvents","flattenListeners","flatListeners","getListenersAsObject","addListener","listenerIsWrapped","once","addOnceListener","defineEvent","defineEvents","evts","removeListener","addListeners","manipulateListeners","removeListeners","single","removeEvent","_events","removeAllListeners","emitEvent","listenersMap","_getOnceReturnValue","emit","setOnceReturnValue","_onceReturnValue","noConflict"],"mappings":"CAAA,WAAe,GAAIA,GAAUC,OAAeC,EAASD,QAAW,QAAUE,GAAEC,EAAEC,EAAEC,GAAG,QAASC,GAAEC,EAAEC,GAAG,IAAIJ,EAAEG,GAAG,CAAC,IAAIJ,EAAEI,GAAG,CAAC,GAAIE,GAAkB,kBAATV,IAAqBA,CAAQ,KAAIS,GAAGC,EAAE,MAAOA,GAAEF,GAAE,EAAI,IAAGG,EAAE,MAAOA,GAAEH,GAAE,EAAI,IAAII,GAAE,GAAIC,OAAM,uBAAuBL,EAAE,IAAK,MAAMI,GAAEE,KAAK,mBAAmBF,EAAE,GAAIG,GAAEV,EAAEG,IAAIQ,WAAYZ,GAAEI,GAAG,GAAGS,KAAKF,EAAEC,QAAQ,SAASb,GAAG,GAAIE,GAAED,EAAEI,GAAG,GAAGL,EAAG,OAAOI,GAAEF,EAAEA,EAAEF,IAAIY,EAAEA,EAAEC,QAAQb,EAAEC,EAAEC,EAAEC,GAAG,MAAOD,GAAEG,GAAGQ,QAAkD,IAAI,GAA1CL,GAAkB,kBAATX,IAAqBA,EAAgBQ,EAAE,EAAEA,EAAEF,EAAEY,OAAOV,IAAID,EAAED,EAAEE,GAAI,OAAOD,KAAKY,GAAG,SAASnB,EAAQoB,EAAOJ,GACvhB,YAiBA,SAASK,GAAkBC,EAAMC,EAAQC,EAAQC,GAGhDC,EAAMC,QAAS,aAAcL,IAEzBE,EACHE,EAAMC,QAAQ,SAAUL,EAAME,KAG9BE,EAAMC,QAAQ,WAAYL,EAAMG,IAChCC,EAAMC,QAAQJ,EAAS,KAAMD,EAAMG,KAIrC,QAASG,GAAkBN,EAAMC,EAAQC,EAAQC,GAOhD,GAJID,GACHF,EAAKO,QAAQJ,GAGVK,EAAOC,YAAc,CACxB,GAAIC,GAAmC,aAAvBF,EAAOC,YACnBE,EAAMD,GAAYE,SAAU,WAAa,CAC7CZ,GAAKa,QAAQC,eAAeH,GAI7BI,OAAOC,iBAAiB,OAAQ,WAC/BjB,EAAkBC,EAAMC,EAAQC,EAAQC,KA5C1C,GAAIc,GAAQF,OAAOE,SAInB,IAAMF,OAAOC,iBAAb,CA6CA,IAAI,GAxCAE,GAAQxC,EAAQ,SAChB0B,EAAQ1B,EAAQ,oBAChByC,EAAYJ,OAAOE,OAASF,OAAOE,MAAME,UAAYJ,OAAOE,MAAME,aAClEX,EAASO,OAAOK,uBAqCZ/B,EAAE,EAAGA,EAAE8B,EAAUvB,OAAOP,IAC/Be,EAAMiB,GAAGF,EAAU9B,GAAGiC,MAAOH,EAAU9B,GAAGkC,SA0B3C,IAtBAL,EAAMM,SAASC,MAAMJ,GAAG,SAAU,cAAe,SAASC,GACzDA,EAAQA,GAASP,OAAOO,KACxB,IAAItB,GAAOI,EAAMsB,aAAaJ,EAAMK,QAAUL,EAAMM,WACpDxB,GAAMC,QAAQ,UAAWL,EAAMsB,MAGhCJ,EAAMM,SAASC,MAAMJ,GAAG,QAAS,cAAe,SAASC,GACxDA,EAAQA,GAASP,OAAOO,KACxB,IAAItB,GAAOI,EAAMsB,aAAaJ,EAAMK,QAAUL,EAAMM,WAE9C5B,GAAK6B,UACVzB,EAAMC,QAAQ,WAAYL,EAAMsB,IAChCtB,EAAK6B,SAAU,KAIjBX,EAAMM,SAASC,MAAMJ,GAAG,SAAU,cAAe,SAASC,GACzDA,EAAQA,GAASP,OAAOO,KACxB,IAAItB,GAAOI,EAAMsB,aAAaJ,EAAMK,QAAUL,EAAMM,WACpDxB,GAAMC,QAAQ,UAAWL,EAAKsB,MAG3Bd,EAAOsB,eAAiB,CAC3B,GAAIC,GAAavB,EAAOsB,eACvBjB,EAAUW,SAASQ,eAAeD,EAAWE,YAC7CjC,EAAOI,EAAMsB,aAAab,EAE3BP,GAAkBN,EAAM+B,EAAW9B,OAAQ8B,EAAW7B,OAAQ6B,EAAW5B,MAI1Ec,EAAMb,MAAQA,EACdW,OAAOE,MAAQA,KAEZiB,mBAAmB,EAAEC,MAAQ,IAAIC,GAAG,SAAS1D,EAAQoB,EAAOJ,GAC/D,YAEA,IAAI2C,GAAY3D,EAAQ,+BACpB4D,EAAW5D,EAAQ,eACnB6D,EAAa7D,EAAQ,6BAErB8D,EAAO,SAASC,EAAI5B,GAEvB,GAAIb,GAAO0C,IAEXA,MAAKD,GAAKA,EACVC,KAAK7B,QAAUA,GAAWW,SAASmB,cAAc,QACjDD,KAAKE,KAAOF,KAAK7B,QAAQgC,aAAa,cAAgB,SAAWH,KAAKD,GACtEC,KAAKxC,UACLwC,KAAKb,SAAU,EAEfa,KAAKnC,QAAU,SAASJ,GACvB,IACCmC,EAAStC,EAAKa,QAASV,GACtB,MAAMtB,GACPiE,QAAQC,MAAMlE,KAIhB6D,KAAKM,QAAU,WACd,MAAOT,GAAWvC,EAAKa,UAGxB6B,KAAKO,kBAAoB,WACxB,MAAOZ,GAAUrC,EAAKa,UAGvB6B,KAAKQ,YAAc,SAAUC,GAC5BnD,EAAKa,QAAQuC,cAAc,mBAAmBC,UAAYF,GAI3DT,KAAKY,MAAQ,WACZZ,KAAKQ,YAAY,IACjBlD,EAAKa,QAAQuC,cAAc,sBAAsBG,MAAMC,QAAU,GACjExD,EAAKa,QAAQyC,SAKfxD,GAAOJ,QAAU8C,IAEdiB,4BAA4B,EAAEC,8BAA8B,EAAEC,cAAc,IAAIC,GAAG,SAASlF,EAAQoB,EAAOJ,GAC9G,YAYA,SAASmE,GAAIC,GAGZ,IAAI,GAAIzE,GAAE,EAAGA,EAAEe,EAAMR,OAAOP,IAC3B,GAAGe,EAAMf,GAAGoD,IAAMqB,EACjB,MAAO1D,GAAMf,EAKf,IAAI0E,GAAcvC,SAAS4B,cAAc,eAAiBU,EAC1D,OAAOE,GAAkBD,EAAYD,GAItC,QAASpC,GAAab,GAGrB,IAAI,GAFAkD,GAAclD,EAAQb,MAAQa,EAE1BxB,EAAE,EAAGA,EAAIe,EAAMR,OAAQP,IAC9B,GAAGe,EAAMf,GAAGwB,SAAWkD,EACtB,MAAO3D,GAAMf,EAIf,OAAO2E,GAAkBD,GAI1B,QAASC,GAAkBD,EAAatB,GACvCA,EAAKA,GAAMwB,SAAUF,EAAYlB,aAAa,aAAgB,CAC9D,IAAI7C,GAAO,GAAIwC,GAAKC,EAAIsB,EAExB,OADA3D,GAAM8D,KAAKlE,GACJA,EAGR,QAASmE,KACR,MAAO/D,GAGR,QAASiB,GAAGC,EAAMC,GACjB,MAAO6C,GAAO/C,GAAGC,EAAMC,GAGxB,QAASlB,GAAQiB,EAAM+C,GACtB,MAAOD,GAAO/D,QAAQiB,EAAM+C,GAG7B,QAASC,GAAIhD,EAAMC,GAClB,MAAO6C,GAAOE,IAAIhD,EAAMC,GAzDzB,GAAIgD,GAAe7F,EAAQ,wBACvB8D,EAAO9D,EAAQ,aAGf0F,EAAS,GAAIG,GACbnE,IAuDJN,GAAOJ,SACNyE,IAAOA,EACPN,IAAOA,EACPnC,aAAgBA,EAChBL,GAAMA,EACNhB,QAAWA,EACXiE,IAAOA,KAILE,YAAY,EAAEC,uBAAuB,IAAIC,GAAG,SAAShG,EAAQoB,EAAOJ,IA4BtE,SAAUiF,EAAMC,GAEO,mBAAZlF,IAA6C,mBAAXI,IAA0BA,EAAOJ,QAE7EI,EAAOJ,QAAUkF,IAES,kBAAXhG,IAAyBA,EAAOiG,IAG/CjG,EAAOgG,GAKPD,EAAKG,QAAUF,KAEflC,KAAM,WAEP,YAYA,SAASoC,GAAQC,EAAUC,EAAWC,EAAWC,EAAcC,EAAkBC,GAEhFA,IAAcA,EACU,mBAAbH,IAAyC,MAAbA,IAAmBA,GAAY,GAC9C,mBAAbD,IAAyC,MAAbA,IAAmBA,EAAY,KAClEK,UAAUzF,OAAS,IAAGuF,GAAmB,GAE7CJ,EAA8B,gBAAZA,GAAuBvD,SAASQ,eAAe+C,GAAYA,CAE7E,IACCO,GADGC,KAEHlG,EAAI,CAGL,IAAI0F,EAASS,aAAeC,OAA6B,mBAAZC,WAA2BX,EAASS,aAAeE,SAE/F,KAAMJ,EAAWP,EAAS1F,MAEzBkG,EAAaA,EAAWI,OAAOC,EAAcN,EAAUJ,EAAcC,EAAkBC,QAKxFG,GAAaK,EAAcb,EAAUG,EAAcC,EAAkBC,EAGtE,OAAOS,GAAkBN,EAAYN,EAAWD,GASjD,QAASa,GAAkBC,EAAYb,EAAWD,GAEjD,GAEC3F,GAAG0G,EAAGC,EAAGvG,EACTwG,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,EACA3D,EACA4D,EAXGC,KACHC,IAYD,KAAKrH,EAAI,EAAGA,EAAIyG,EAAWlG,OAAQP,IAIlC,GAFA4G,EAAQH,EAAWzG,GAAG4G,OAElBhB,GAAwB,KAAVgB,GAA0B,OAAVA,EAAlC,CAQA,IANArD,EAAOkD,EAAWzG,GAAGuD,KACrB4D,EAAa5D,EAAK+D,MAAM3B,GACxBkB,KACAC,EAAaM,EACbL,EAAc,GAEVL,EAAI,EAAGA,EAAIS,EAAW5G,OAAQmG,IAGjC,GADAQ,EAAWC,EAAWT,GAAGY,MAAM,MAC3BJ,EAAS3G,OAAS,EAErB,IAAIoG,EAAI,EAAGA,EAAIO,EAAS3G,OAAQoG,IAgB/B,GAdS,GAALA,EAEHO,EAASP,GAAKO,EAASP,GAAK,IAEpBA,GAAKO,EAAS3G,OAAS,EAE/B2G,EAASP,GAAK,IAAMO,EAASP,GAI7BO,EAASP,GAAK,IAAMO,EAASP,GAAK,IAGnCM,EAASC,EAASP,GAAGY,MAAM,sCAG1B,IAAInH,EAAI,EAAGA,EAAI6G,EAAO1G,OAAQH,IAEzB6G,EAAO7G,IAAIyG,EAAUhC,KAAKoC,EAAO7G,QAItCyG,GAAUhC,KAAKqC,EAASP,QAK1BE,GAAYA,EAAUP,OAAOY,EAG/B,KAAKR,EAAI,EAAGA,EAAIG,EAAUtG,OAAQmG,IAEjCQ,EAAWL,EAAUH,GAEjBQ,EAASM,QAAQ,MAAQ,IAAMd,GAAKG,EAAUtG,OAAS,GAE1DyG,EAAUE,EAASO,OAAO,EAAGP,EAASM,QAAQ,MAC9CT,GAAeC,EAEVF,EAAWE,KAAUF,EAAWE,OACrCF,EAAWE,GAASnC,KAAK+B,IAEjBM,EAASM,QAAQ,KAAO,IAEhCR,EAAUE,EAASO,OAAO,EAAGP,EAASM,QAAQ,MAC9CP,EAASC,EAASQ,QAAQ,0BAA2B,IAGrDX,GAAe,IAAMC,EAAU,IAAMC,EAShCI,EAAON,KAAcM,EAAON,OAClB,IAAXC,GAAkBF,EAAWE,KAAUF,EAAWE,OAElDN,GAAKG,EAAUtG,OAAS,EAEZ,IAAXyG,GAEHF,EAAWjC,KAAK+B,GAChBS,EAAON,GAAaE,GAAUH,EAAWA,EAAWvG,OAAS,KAI7DuG,EAAWE,GAASnC,KAAK+B,GACzBS,EAAON,GAAaE,GAAUH,EAAWE,GAASF,EAAWE,GAASzG,OAAS,IAK3E8G,EAAON,GAAaE,KAEpB,kBAAoBU,KAAKd,EAAUH,EAAE,IAAKI,EAAWE,GAASnC,SAC7DiC,EAAWE,GAASnC,SAEzBwC,EAAON,GAAaE,GAAUH,EAAWE,GAASF,EAAWE,GAASzG,OAAS,IAIjFuG,EAAaO,EAAON,GAAaE,KAIjCF,GAAeG,EAEXR,EAAIG,EAAUtG,OAAS,GAErBuG,EAAWI,KAAWJ,EAAWI,OACtCJ,EAAaA,EAAWI,IAIxBJ,EAAWI,GAAYN,GAM3B,MAAOQ,GAGR,QAASb,GAAcb,EAAUG,EAAcC,EAAkBC,GAEhE,GAAIqB,GAASQ,EAAkBlC,EAAUG,EAAcC,EAAkBC,EACzE,OAAOqB,GAAO7G,OAAS,EAAI6G,EAASS,EAAiBnC,EAAUG,EAAcC,EAAkBC,GAGhG,QAAS8B,GAAiBnC,EAAUG,EAAcC,EAAkBC,GAKnE,IAHA,GAAIqB,MACHU,EAAcpC,EAASqC,WAEjBD,GAENV,EAASA,EAAOd,OAAOsB,EAAkBE,EAAajC,EAAcC,EAAkBC,IACtF+B,EAAcA,EAAYE,WAG3B,OAAOZ,GAGR,QAASQ,GAAkBK,EAAMpC,EAAcC,EAAkBC,GAChE,GAAIkC,EAAKC,WAAanC,EAAa,QAEnC,IAAIoC,GAAgBC,EAAYhB,EAAQiB,EAAYC,EAAaL,EAAMnC,EAuBvE,OArBAqC,GAAiBtC,GAAgBA,EAAaoC,GAE1CE,GAAkBA,EAAe5E,KACpC6D,GAAUe,GAEW,IAAbE,GAAmBJ,EAAKM,SAAShB,MAAM,oBAC/Ca,EAAaI,EAAcP,EAAMlC,GAEhCqB,EADG,OAASgB,OAGC7E,KAAM8E,EAAWzB,MAAOwB,KAGjB,IAAbC,GAAmBJ,EAAKM,SAAShB,MAAM,YAC/Ca,EAAaI,EAAcP,EAAMlC,GACjCqB,IAAa7D,KAAM8E,EAAUX,QAAQ,QAAS,IAAKd,MAAOwB,KAG1DhB,EAASS,EAAiBI,EAAMpC,EAAcC,EAAkBC,GAG1DqB,EAGR,QAASkB,GAAaL,EAAMnC,GAE3B,MAAImC,GAAK1E,MAAqB,IAAb0E,EAAK1E,KAAmB0E,EAAK1E,KACrCuC,GAAoBmC,EAAK7E,IAAiB,IAAX6E,EAAK7E,GAAiB6E,EAAK7E,GACvD,GAIb,QAASoF,GAAcC,EAAW1C,GAEjC,GAAI0C,EAAUP,WAAanC,EAAa,MAAO,KAE/C,QAAQ0C,EAAUF,UACjB,IAAK,QACL,IAAK,WACJ,OAAQE,EAAUC,KAAKC,eACtB,IAAK,QACJ,GAAIF,EAAUG,SAA+B,UAApBH,EAAU7B,MAAmB,OAAO,CAC9D,KAAK,WACJ,GAAI6B,EAAUG,SAA+B,SAApBH,EAAU7B,MAAkB,OAAO,CAC5D,KAAK6B,EAAUG,SAA+B,SAApBH,EAAU7B,MAAkB,OAAO,CAC7D,IAAI6B,EAAUG,QAAS,MAAOH,GAAU7B,KACxC,MAED,KAAK,SACL,IAAK,QACL,IAAK,SACL,IAAK,QACJ,MAAO,EAGR,SACC,MAAO6B,GAAU7B,MAGnB,KAED,KAAK,SACJ,MAAOiC,GAAuBJ,GAOhC,MAAO,MAGR,QAASI,GAAuBC,GAE/B,GAECC,GACA/I,EAAGI,EAHA4I,EAAWF,EAAWE,SACzB5B,IAID,KAAK4B,EAAU,MAAOF,GAAWlC,KAEjC,KAAKmC,EAAUD,EAAWG,qBAAqB,UAAWjJ,EAAI,EAAGI,EAAI2I,EAAQxI,OAAYH,EAAJJ,EAAOA,IAEvF+I,EAAQ/I,GAAGkJ,UAAU9B,EAAOvC,KAAKkE,EAAQ/I,GAAG4G,MAGjD,OAAOQ,GAGR,MAAO3B,UAGF0D,GAAG,SAAS9J,EAAQoB,EAAOJ,GAyBjC,QAAS2C,GAAUrC,EAAMoI,GACF,gBAAXA,GACVA,GAAYK,OAAQL,GAEKzJ,SAAjByJ,EAAQK,OAChBL,EAAQK,MAAO,EAWhB,KAAK,GARDhC,GAAU2B,EAAY,QAAS,GAC/BM,EAAaN,EAAQM,aAAgBN,EAAY,KAAIO,EAAkBC,GAEvEC,EAAW7I,GAAQA,EAAK6I,SAAW7I,EAAK6I,YAGxCC,EAAcC,OAAOC,OAAO,MAEvB3J,EAAE,EAAIA,EAAEwJ,EAASjJ,SAAWP,EAAG,CACvC,GAAIwB,GAAUgI,EAASxJ,EAGvB,KAAM+I,EAAQb,WAAY1G,EAAQ0G,WAAc1G,EAAQ+B,MAInDqG,EAAoBjC,KAAKnG,EAAQ+G,YACrCsB,EAAclC,KAAKnG,EAAQkH,MAD5B,CAKA,GAAIoB,GAAMtI,EAAQ+B,KACdwG,EAAMvI,EAAQoF,KASlB,IALsB,aAAjBpF,EAAQkH,MAAwC,UAAjBlH,EAAQkH,MAAsBlH,EAAQoH,UACzEmB,EAAMzK,QAIHyJ,EAAQiB,OAiBX,GAfqB,aAAjBxI,EAAQkH,MAAwBlH,EAAQoH,UAC3CmB,EAAM,IAIc,UAAjBvI,EAAQkH,OACNe,EAAYjI,EAAQ+B,OAAU/B,EAAQoH,QAGlCpH,EAAQoH,UAChBa,EAAYjI,EAAQ+B,OAAQ,GAH5BkG,EAAYjI,EAAQ+B,OAAQ,IAQzBwG,GAAuB,SAAhBvI,EAAQkH,KACnB,aAKD,KAAKqB,EACJ,QAKF,IAAqB,oBAAjBvI,EAAQkH,KAkCZtB,EAASiC,EAAWjC,EAAQ0C,EAAKC,OAlCjC,CACCA,IAIA,KAAK,GAFDE,GAAgBzI,EAAQuH,QACxBmB,GAAoB,EACfxD,EAAE,EAAIA,EAAEuD,EAAc1J,SAAWmG,EAAG,CAC5C,GAAIyD,GAASF,EAAcvD,GACvB0D,EAAerB,EAAQiB,QAAUG,EAAOvD,MACxCyD,EAAYF,EAAOvD,OAASwD,CAC5BD,GAAOjB,UAAYmB,IACtBH,GAAoB,EAQnB9C,EADG2B,EAAQK,MAAsC,OAA9BU,EAAIQ,MAAMR,EAAIvJ,OAAS,GACjC8I,EAAWjC,EAAQ0C,EAAM,KAAMK,EAAOvD,OAGtCyC,EAAWjC,EAAQ0C,EAAKK,EAAOvD,SAMtCsD,GAAqBnB,EAAQiB,QACjC5C,EAASiC,EAAWjC,EAAQ0C,EAAK,OAUpC,GAAIf,EAAQiB,MACX,IAAK,GAAIF,KAAOL,GACVA,EAAYK,KAChB1C,EAASiC,EAAWjC,EAAQ0C,EAAK,IAKpC,OAAO1C,GAGR,QAASmD,GAAWC,GACnB,GAAIC,MACAC,EAAS,cACTC,EAAW,GAAIC,QAAOC,GACtBtD,EAAQmD,EAAOI,KAAKN,EAMxB,KAJIjD,EAAM,IACTkD,EAAK5F,KAAK0C,EAAM,IAG0B,QAAnCA,EAAQoD,EAASG,KAAKN,KAC7BC,EAAK5F,KAAK0C,EAAM,GAGjB,OAAOkD,GAGR,QAASM,GAAY3D,EAAQqD,EAAM7D,GAClC,GAAoB,IAAhB6D,EAAKlK,OAER,MADA6G,GAASR,CAIV,IAAIkD,GAAMW,EAAKO,QACXC,EAAUnB,EAAIvC,MAAM,cAExB,IAAY,OAARuC,EAgBH,MAfA1C,GAASA,MAELhB,MAAM8E,QAAQ9D,GACjBA,EAAOvC,KAAKkG,EAAY,KAAMN,EAAM7D,KAQpCQ,EAAO+D,QAAU/D,EAAO+D,YACxB/D,EAAO+D,QAAQtG,KAAKkG,EAAY,KAAMN,EAAM7D,KAGtCQ,CAIR,IAAK6D,EAGA,CACJ,GAAIT,GAASS,EAAQ,GACjBG,EAAQxG,SAAS4F,EAAQ,GAIzBa,OAAMD,IACThE,EAASA,MACTA,EAAOoD,GAAUO,EAAY3D,EAAOoD,GAASC,EAAM7D,KAGnDQ,EAASA,MACTA,EAAOgE,GAASL,EAAY3D,EAAOgE,GAAQX,EAAM7D,QAdlDQ,GAAO0C,GAAOiB,EAAY3D,EAAO0C,GAAMW,EAAM7D,EAkB9C,OAAOQ,GAIR,QAASkC,GAAgBlC,EAAQ0C,EAAKlD,GACrC,GAAI0E,GAAUxB,EAAIvC,MAAMsD,EAKxB,IAAIS,EAAS,CACZ,GAAIb,GAAOF,EAAWT,EACtBiB,GAAY3D,EAAQqD,EAAM7D,OAEtB,CAEJ,GAAI2E,GAAWnE,EAAO0C,EAQlByB,IACEnF,MAAM8E,QAAQK,KAClBnE,EAAO0C,IAASyB,IAGjBnE,EAAO0C,GAAKjF,KAAK+B,IAGjBQ,EAAO0C,GAAOlD,EAIhB,MAAOQ,GAIR,QAASmC,GAAcnC,EAAQ0C,EAAKlD,GAOnC,MALAA,GAAQA,EAAMc,QAAQ,WAAY,QAClCd,EAAQ4E,mBAAmB5E,GAG3BA,EAAQA,EAAMc,QAAQ,OAAQ,KACvBN,GAAUA,EAAS,IAAM,IAAMoE,mBAAmB1B,GAAO,IAAMlD,EAxPvE,GAAIiD,GAAgB,wCAGhBD,EAAsB,qCAGtBiB,EAAW,iBAqPfpK,GAAOJ,QAAU2C,OACXyI,GAAG,SAASpM,EAAQoB,EAAOJ,IAmCjC,WAOI,QAASqL,GAAU5I,EAAO4F,EAAMxG,GAI5B,GAAIyJ,GAAqB,QAARjD,GAA0B,SAARA,CACnC5F,GAAMtB,QAAQG,iBAAiB+G,EAAMxG,EAAUyJ,GAGnD,QAASC,GAAQpM,GACbA,EAAEqM,iBACFrM,EAAEsM,kBASN,QAASC,GAAYvK,GACjB,MAAIwK,GACOA,EAIPA,EADAxK,EAAQ8J,QACG9J,EAAQ8J,QAInB9J,EAAQyK,sBACGzK,EAAQyK,sBAInBzK,EAAQ0K,mBACG1K,EAAQ0K,mBAInB1K,EAAQ2K,kBACG3K,EAAQ2K,kBAInB3K,EAAQ4K,iBACG5K,EAAQ4K,iBAMZvK,EAAMwK,gBAYrB,QAASC,GAAiB9K,EAAS+K,EAAUC,GAGzC,GAAgB,SAAZD,EACA,MAAOC,EAKX,IAAIhL,IAAYgL,EAKhB,MAAIT,GAAYvK,GAASlB,KAAKkB,EAAS+K,GAC5B/K,EAQPA,EAAQiL,YACRC,IACOJ,EAAiB9K,EAAQiL,WAAYF,EAAUC,IAF1D,OAMJ,QAASG,GAAY7J,EAAOb,EAAOsK,EAAUrK,GACpC0K,EAAU9J,EAAMM,MACjBwJ,EAAU9J,EAAMM,QAGfwJ,EAAU9J,EAAMM,IAAInB,KACrB2K,EAAU9J,EAAMM,IAAInB,OAGnB2K,EAAU9J,EAAMM,IAAInB,GAAOsK,KAC5BK,EAAU9J,EAAMM,IAAInB,GAAOsK,OAG/BK,EAAU9J,EAAMM,IAAInB,GAAOsK,GAAU1H,KAAK3C,GAG9C,QAAS2K,GAAe/J,EAAOb,EAAOsK,EAAUrK,GAI5C,GAAK0K,EAAU9J,EAAMM,IAMrB,GAAKnB,EAAL,CAWA,IAAKC,IAAaqK,EAEd,YADAK,EAAU9J,EAAMM,IAAInB,MAOxB,KAAKC,EAED,kBADO0K,GAAU9J,EAAMM,IAAInB,GAAOsK,EAOtC,IAAKK,EAAU9J,EAAMM,IAAInB,GAAOsK,GAMhC,IAAK,GAAIvM,GAAI,EAAGA,EAAI4M,EAAU9J,EAAMM,IAAInB,GAAOsK,GAAUhM,OAAQP,IAC7D,GAAI4M,EAAU9J,EAAMM,IAAInB,GAAOsK,GAAUvM,KAAOkC,EAAU,CACtD0K,EAAU9J,EAAMM,IAAInB,GAAOsK,GAAUO,OAAO9M,EAAG,EAC/C,YAnCJ,KAAK,GAAI0I,KAAQkE,GAAU9J,EAAMM,IACzBwJ,EAAU9J,EAAMM,IAAI2J,eAAerE,KACnCkE,EAAU9J,EAAMM,IAAIsF,OAsCpC,QAASsE,GAAa5J,EAAI5D,EAAGkJ,GACzB,GAAKkE,EAAUxJ,GAAIsF,GAAnB,CAIA,GACI6D,GACAhF,EAFAjF,EAAS9C,EAAE8C,QAAU9C,EAAE+C,WAGvB+I,KACAtL,EAAI,EACJ0G,EAAI,CAGRgG,GAAS,CACT,KAAKH,IAAYK,GAAUxJ,GAAIsF,GACvBkE,EAAUxJ,GAAIsF,GAAMqE,eAAeR,KACnChF,EAAQ+E,EAAiBhK,EAAQiK,EAAUU,EAAgB7J,GAAI5B,SAE3D+F,GAAS1F,EAAMqL,aAAaxE,EAAMuE,EAAgB7J,GAAI5B,QAAS+F,EAAmB,SAAZgF,EAAqB/M,KAC3FkN,IACAE,EAAUxJ,GAAIsF,GAAM6D,GAAUhF,MAAQA,EACtC+D,EAAQoB,GAAUE,EAAUxJ,GAAIsF,GAAM6D,IAWlD,KAJA/M,EAAEsM,gBAAkB,WAChBtM,EAAE2N,cAAe,GAGhBnN,EAAI,EAAQ0M,GAAL1M,EAAaA,IACrB,GAAIsL,EAAQtL,GACR,IAAK0G,EAAI,EAAGA,EAAI4E,EAAQtL,GAAGO,OAAQmG,IAAK,CACpC,GAAI4E,EAAQtL,GAAG0G,GAAGpG,KAAKgL,EAAQtL,GAAGuH,MAAO/H,MAAO,EAE5C,WADAqC,GAAMuL,OAAO5N,EAIjB,IAAIA,EAAE2N,aACF,SAgBpB,QAASE,GAAMtI,EAAQwH,EAAUrK,EAAUoL,GAoBvC,QAASC,GAAmB7E,GACxB,MAAO,UAASlJ,GACZwN,EAAa5J,EAAI5D,EAAGkJ,IAlB5B,GAAKrF,KAAK7B,QAAV,CAIMuD,YAAkBqB,SACpBrB,GAAUA,IAGT7C,GAAgC,kBAAd,KACnBA,EAAWqK,EACXA,EAAW,QAGf,IACIvM,GADAoD,EAAKC,KAAKD,EASd,KAAKpD,EAAI,EAAGA,EAAI+E,EAAOxE,OAAQP,IACvBsN,EACAT,EAAexJ,KAAM0B,EAAO/E,GAAIuM,EAAUrK,IAIzC0K,EAAUxJ,IAAQwJ,EAAUxJ,GAAI2B,EAAO/E,KACxC6B,EAAM2L,SAASnK,KAAM0B,EAAO/E,GAAIuN,EAAmBxI,EAAO/E,KAG9D2M,EAAYtJ,KAAM0B,EAAO/E,GAAIuM,EAAUrK,GAG3C,OAAOmB,OAQX,QAASxB,GAAML,EAAS4B,GAGpB,KAAMC,eAAgBxB,IAAQ,CAM1B,IAAK,GAAIiI,KAAOmD,GACZ,GAAIA,EAAgBnD,GAAKtI,UAAYA,EACjC,MAAOyL,GAAgBnD,EAO/B,OAHA2D,KACAR,EAAgBQ,GAAO,GAAI5L,GAAML,EAASiM,GAEnCR,EAAgBQ,GAG3BpK,KAAK7B,QAAUA,EACf6B,KAAKD,GAAKA,EAnSd,GAAI4I,GACAU,EAAS,EACTe,EAAM,EACNb,KACAK,IA0SJpL,GAAM6L,UAAU1L,GAAK,SAAS+C,EAAQwH,EAAUrK,GAC5C,MAAOmL,GAAM/M,KAAK+C,KAAM0B,EAAQwH,EAAUrK,IAW9CL,EAAM6L,UAAUzI,IAAM,SAASF,EAAQwH,EAAUrK,GAC7C,MAAOmL,GAAM/M,KAAK+C,KAAM0B,EAAQwH,EAAUrK,GAAU,IAGxDL,EAAMwK,gBAAkB,aACxBxK,EAAMuL,OAASxB,EACf/J,EAAM2L,SAAW9B,EACjB7J,EAAMqL,aAAe,WACjB,OAAO,GAGW,mBAAXzM,IAA0BA,EAAOJ,UACxCI,EAAOJ,QAAUwB,GAGrBH,OAAOG,MAAQA,UAGb8L,GAAG,SAAStO,EAAQoB,EAAOJ,IAE/B,SAASiF,GASV,GAAIrC,GAAW,SAAUtC,EAAMG,EAAM8M,GAEpC,IAAI,GAAI9D,KAAOhJ,GAEd,GAAMA,EAAKiM,eAAgBjD,GAA3B,CAIA,GAAIvG,GAAOuG,EACPlD,EAAQ9F,EAAKgJ,EAOjB,IAJwB,mBAAf,KACRvG,EAAOqK,EAAW,IAAM9D,EAAM,KAG5BlD,EAAMT,cAAgBC,MACxB7C,GAAQ,SACF,IAAmB,gBAATqD,GAAmB,CACnC3D,EAAUtC,EAAMiG,EAAOrD,EACvB,UAID,GAAI/B,GAAUb,EAAK6I,SAASqE,UAAWtK,EACvC,IAAM/B,EAAN,CAIA,GAAIkH,GAAOlH,EAAQkH,MAAQlH,EAAQ,GAAGkH,IAEtC,QAAOA,GACN,QACClH,EAAQoF,MAAQA,CAChB,MAED,KAAK,QACL,IAAK,WACJ,IAAK,GAAIF,GAAE,EAAGA,EAAIlF,EAAQjB,OAAQmG,IACjClF,EAAQkF,GAAGkC,QAAYhC,EAAMY,QAAQhG,EAAQkF,GAAGE,OAAS,EAE1D,MAED,KAAK,kBAGJ,IAAI,GAFAkH,GAASlH,EAAMT,aAAeC,MAAQQ,GAASA,GAE3CD,EAAI,EAAGA,EAAInF,EAAQuH,QAAQxI,OAAQoG,IAC1CnF,EAAQuH,QAAQpC,GAAGuC,UAAa4E,EAAOtG,QAAQhG,EAAQuH,QAAQpC,GAAGC,OAAS,EAE5E,MAED,KAAK,SACL,IAAK,aACJpF,EAAQoF,MAAQA,EAAMmH,YAAcnH,KAUlB,mBAAVrH,IAA6C,gBAAdA,GAAOiG,KAAmBjG,EAAOiG,IAC3EjG,EAAO,WACN,MAAO0D,KAEqB,mBAAXxC,IAA0BA,EAAOJ,QACnDI,EAAOJ,QAAU4C,EAEjBqC,EAAKrC,SAAWA,GAGhBI,WACI2K,GAAG,SAAS3O,EAAQoB,EAAOJ,IAQ/B,WACE,YAQA,SAAS6E,MAeT,QAAS+I,GAAgBnM,EAAWoM,GAEhC,IADA,GAAIlO,GAAI8B,EAAUvB,OACXP,KACH,GAAI8B,EAAU9B,GAAGkO,WAAaA,EAC1B,MAAOlO,EAIf,OAAO,GAUX,QAASmO,GAAM5K,GACX,MAAO,YACH,MAAOF,MAAKE,GAAM6K,MAAM/K,KAAM2C,YAhCtC,GAAIqI,GAAQnJ,EAAawI,UACrBrN,EAAUgD,KACViL,EAAsBjO,EAAQ6E,YA2ClCmJ,GAAME,aAAe,SAAsBC,GACvC,GACIC,GACA3E,EAFA/E,EAAS1B,KAAKqL,YAMlB,IAAIF,YAAe5D,QAAQ,CACvB6D,IACA,KAAK3E,IAAO/E,GACJA,EAAOgI,eAAejD,IAAQ0E,EAAI7G,KAAKmC,KACvC2E,EAAS3E,GAAO/E,EAAO+E,QAK/B2E,GAAW1J,EAAOyJ,KAASzJ,EAAOyJ,MAGtC,OAAOC,IASXJ,EAAMM,iBAAmB,SAA0B7M,GAC/C,GACI9B,GADA4O,IAGJ,KAAK5O,EAAI,EAAGA,EAAI8B,EAAUvB,OAAQP,GAAK,EACnC4O,EAAc/J,KAAK/C,EAAU9B,GAAGkO,SAGpC,OAAOU,IASXP,EAAMQ,qBAAuB,SAA8BL,GACvD,GACIC,GADA3M,EAAYuB,KAAKkL,aAAaC,EAQlC,OALI1M,aAAqBsE,SACrBqI,KACAA,EAASD,GAAO1M,GAGb2M,GAAY3M,GAavBuM,EAAMS,YAAc,SAAqBN,EAAKN,GAC1C,GAEIpE,GAFAhI,EAAYuB,KAAKwL,qBAAqBL,GACtCO,EAAwC,gBAAbb,EAG/B,KAAKpE,IAAOhI,GACJA,EAAUiL,eAAejD,IAAsD,KAA9CmE,EAAgBnM,EAAUgI,GAAMoE,IACjEpM,EAAUgI,GAAKjF,KAAKkK,EAAoBb,GACpCA,SAAUA,EACVc,MAAM,GAKlB,OAAO3L,OAMXgL,EAAMrM,GAAKmM,EAAM,eAUjBE,EAAMY,gBAAkB,SAAyBT,EAAKN,GAClD,MAAO7K,MAAKyL,YAAYN,GACpBN,SAAUA,EACVc,MAAM,KAOdX,EAAMW,KAAOb,EAAM,mBASnBE,EAAMa,YAAc,SAAqBV,GAErC,MADAnL,MAAKkL,aAAaC,GACXnL,MASXgL,EAAMc,aAAe,SAAsBC,GACvC,IAAK,GAAIpP,GAAI,EAAGA,EAAIoP,EAAK7O,OAAQP,GAAK,EAClCqD,KAAK6L,YAAYE,EAAKpP,GAE1B,OAAOqD,OAWXgL,EAAMgB,eAAiB,SAAwBb,EAAKN,GAChD,GACI9C,GACAtB,EAFAhI,EAAYuB,KAAKwL,qBAAqBL,EAI1C,KAAK1E,IAAOhI,GACJA,EAAUiL,eAAejD,KACzBsB,EAAQ6C,EAAgBnM,EAAUgI,GAAMoE,GAE1B,KAAV9C,GACAtJ,EAAUgI,GAAKgD,OAAO1B,EAAO,GAKzC,OAAO/H,OAMXgL,EAAMpJ,IAAMkJ,EAAM,kBAYlBE,EAAMiB,aAAe,SAAsBd,EAAK1M,GAE5C,MAAOuB,MAAKkM,qBAAoB,EAAOf,EAAK1M,IAahDuM,EAAMmB,gBAAkB,SAAyBhB,EAAK1M,GAElD,MAAOuB,MAAKkM,qBAAoB,EAAMf,EAAK1M,IAe/CuM,EAAMkB,oBAAsB,SAA6BjC,EAAQkB,EAAK1M,GAClE,GAAI9B,GACA4G,EACA6I,EAASnC,EAASjK,KAAKgM,eAAiBhM,KAAKyL,YAC7C9F,EAAWsE,EAASjK,KAAKmM,gBAAkBnM,KAAKiM,YAGpD,IAAmB,gBAARd,IAAsBA,YAAe5D,QAmB5C,IADA5K,EAAI8B,EAAUvB,OACPP,KACHyP,EAAOnP,KAAK+C,KAAMmL,EAAK1M,EAAU9B,QAnBrC,KAAKA,IAAKwO,GACFA,EAAIzB,eAAe/M,KAAO4G,EAAQ4H,EAAIxO,MAEjB,kBAAV4G,GACP6I,EAAOnP,KAAK+C,KAAMrD,EAAG4G,GAIrBoC,EAAS1I,KAAK+C,KAAMrD,EAAG4G,GAevC,OAAOvD,OAYXgL,EAAMqB,YAAc,SAAqBlB,GACrC,GAEI1E,GAFApB,QAAc8F,GACdzJ,EAAS1B,KAAKqL,YAIlB,IAAa,WAAThG,QAEO3D,GAAOyJ,OAEb,IAAIA,YAAe5D,QAEpB,IAAKd,IAAO/E,GACJA,EAAOgI,eAAejD,IAAQ0E,EAAI7G,KAAKmC,UAChC/E,GAAO+E,cAMfzG,MAAKsM,OAGhB,OAAOtM,OAQXgL,EAAMuB,mBAAqBzB,EAAM,eAcjCE,EAAMwB,UAAY,SAAmBrB,EAAKxJ,GACtC,GACIlD,GACAoM,EACAlO,EACA8J,EACA2E,EALAqB,EAAezM,KAAKwL,qBAAqBL,EAO7C,KAAK1E,IAAOgG,GACR,GAAIA,EAAa/C,eAAejD,GAI5B,IAHAhI,EAAYgO,EAAahG,GAAKQ,MAAM,GACpCtK,EAAI8B,EAAUvB,OAEPP,KAGHkO,EAAWpM,EAAU9B,GAEjBkO,EAASc,QAAS,GAClB3L,KAAKgM,eAAeb,EAAKN,EAASA,UAGtCO,EAAWP,EAASA,SAASE,MAAM/K,KAAM2B,OAErCyJ,IAAapL,KAAK0M,uBAClB1M,KAAKgM,eAAeb,EAAKN,EAASA,SAMlD,OAAO7K,OAMXgL,EAAMrN,QAAUmN,EAAM,aAUtBE,EAAM2B,KAAO,SAAcxB,GACvB,GAAIxJ,GAAOoB,MAAMsH,UAAUpD,MAAMhK,KAAK0F,UAAW,EACjD,OAAO3C,MAAKwM,UAAUrB,EAAKxJ,IAW/BqJ,EAAM4B,mBAAqB,SAA4BrJ,GAEnD,MADAvD,MAAK6M,iBAAmBtJ,EACjBvD,MAWXgL,EAAM0B,oBAAsB,WACxB,MAAI1M,MAAK0J,eAAe,oBACb1J,KAAK6M,kBAGL,GAUf7B,EAAMK,WAAa,WACf,MAAOrL,MAAKsM,UAAYtM,KAAKsM,aAQjCzK,EAAaiL,WAAa,WAEtB,MADA9P,GAAQ6E,aAAeoJ,EAChBpJ,GAIW,kBAAX3F,IAAyBA,EAAOiG,IACvCjG,EAAO,WACH,MAAO2F,KAGY,gBAAXzE,IAAuBA,EAAOJ,QAC1CI,EAAOJ,QAAU6E,EAGjB7E,EAAQ6E,aAAeA,IAE7B5E,KAAK+C,gBAEI","file":"forms-api.min.js","sourcesContent":["(function () { var require = undefined; var define = undefined; (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require==\"function\"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error(\"Cannot find module '\"+o+\"'\");throw f.code=\"MODULE_NOT_FOUND\",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require==\"function\"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){\n'use strict';\n\nvar mc4wp = window.mc4wp || {};\n\n// bail early if we're on IE8..\n// TODO: just don't load in IE8\nif( ! window.addEventListener ) {\n\treturn;\n}\n\n// deps & vars\nvar Gator = require('gator');\nvar forms = require('./forms/forms.js');\nvar listeners = window.mc4wp && window.mc4wp.listeners ? window.mc4wp.listeners : [];\nvar config = window.mc4wp_forms_config || {};\n\n// funcs\nfunction triggerFormEvents(form, action, errors, data) {\n\n\t// trigger events\n\tforms.trigger( 'submitted', [form]);\n\n\tif( errors ) {\n\t\tforms.trigger('error', [form, errors]);\n\t} else {\n\t\t// form was successfully submitted\n\t\tforms.trigger('success', [form, data]);\n\t\tforms.trigger(action + \"d\", [form, data]);\n\t}\n}\n\nfunction handleFormRequest(form, action, errors, data){\n\n\t// re-populate form\n\tif( errors ) {\n\t\tform.setData(data);\n\t}\n\n\tif( config.auto_scroll ) {\n\t\tvar animate = ( config.auto_scroll === 'animated' );\n\t\tvar arg = animate ? { behavior: 'smooth' } : false;\n\t\tform.element.scrollIntoView(arg);\n\t}\n\n\t// trigger events on window.load so all other scripts have loaded\n\twindow.addEventListener('load', function(){\n\t\ttriggerFormEvents(form, action, errors, data);\n\t});\n}\n\n// register early listeners\nfor(var i=0; i<listeners.length;i++) {\n\tforms.on(listeners[i].event, listeners[i].callback);\n}\n\n// Bind browser events to form events (using delegation to work with AJAX loaded forms as well)\nGator(document.body).on('submit', '.mc4wp-form', function(event) {\n\tevent = event || window.event;\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('submit', [form, event]);\n});\n\nGator(document.body).on('focus', '.mc4wp-form', function(event) {\n\tevent = event || window.event;\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\n\tif( ! form.started ) {\n\t\tforms.trigger('started', [form, event]);\n\t\tform.started = true;\n\t}\n});\n\nGator(document.body).on('change', '.mc4wp-form', function(event) {\n\tevent = event || window.event;\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('change', [form,event]);\n});\n\nif( config.submitted_form ) {\n\tvar formConfig = config.submitted_form,\n\t\telement = document.getElementById(formConfig.element_id),\n\t\tform = forms.getByElement(element);\n\n\thandleFormRequest(form, formConfig.action, formConfig.errors, formConfig.data);\n}\n\n// expose forms object\nmc4wp.forms = forms;\nwindow.mc4wp = mc4wp;\n\n},{\"./forms/forms.js\":3,\"gator\":6}],2:[function(require,module,exports){\n'use strict';\n\nvar serialize = require('../third-party/serialize.js');\nvar populate = require('populate.js');\nvar formToJson = require('../third-party/form2js.js');\n\nvar Form = function(id, element) {\n\n\tvar form = this;\n\n\tthis.id = id;\n\tthis.element = element || document.createElement('form');\n\tthis.name = this.element.getAttribute('data-name') || \"Form #\" + this.id;\n\tthis.errors = [];\n\tthis.started = false;\n\n\tthis.setData = function(data) {\n\t\ttry {\n\t\t\tpopulate(form.element, data);\n\t\t} catch(e) {\n\t\t\tconsole.error(e);\n\t\t}\n\t};\n\n\tthis.getData = function() {\n\t\treturn formToJson(form.element);\n\t};\n\n\tthis.getSerializedData = function() {\n\t\treturn serialize(form.element);\n\t};\n\n\tthis.setResponse = function( msg ) {\n\t\tform.element.querySelector('.mc4wp-response').innerHTML = msg;\n\t};\n\n\t// revert back to original state\n\tthis.reset = function() {\n\t\tthis.setResponse('');\n\t\tform.element.querySelector('.mc4wp-form-fields').style.display = '';\n\t\tform.element.reset();\n\t}\n\n};\n\nmodule.exports = Form;\n\n},{\"../third-party/form2js.js\":4,\"../third-party/serialize.js\":5,\"populate.js\":7}],3:[function(require,module,exports){\n'use strict';\n\n// deps\nvar EventEmitter = require('wolfy87-eventemitter');\nvar Form = require('./form.js');\n\n// variables\nvar events = new EventEmitter();\nvar forms = [];\n\n// get form by its id\n// please note that this will get the FIRST occurence of the form with that ID on the page\nfunction get(formId) {\n\n\t// do we have form for this one already?\n\tfor(var i=0; i<forms.length;i++) {\n\t\tif(forms[i].id == formId) {\n\t\t\treturn forms[i];\n\t\t}\n\t}\n\n\t// try to create from first occurence of this element\n\tvar formElement = document.querySelector('.mc4wp-form-' + formId);\n\treturn createFromElement(formElement,formId);\n}\n\n// get form by <form> element (or any input in form)\nfunction getByElement(element) {\n\tvar formElement = element.form || element;\n\n\tfor(var i=0; i < forms.length; i++) {\n\t\tif(forms[i].element == formElement) {\n\t\t\treturn forms[i];\n\t\t}\n\t}\n\n\treturn createFromElement(formElement);\n}\n\n// create form object from <form> element\nfunction createFromElement(formElement, id) {\n\tid = id || parseInt( formElement.getAttribute('data-id') ) || 0;\n\tvar form = new Form(id, formElement);\n\tforms.push(form);\n\treturn form;\n}\n\nfunction all() {\n\treturn forms;\n}\n\nfunction on(event,callback) {\n\treturn events.on(event,callback);\n}\n\nfunction trigger(event,args) {\n\treturn events.trigger(event,args);\n}\n\nfunction off(event,callback) {\n\treturn events.off(event,callback);\n}\n\nmodule.exports = {\n\t\"all\": all,\n\t\"get\": get,\n\t\"getByElement\": getByElement,\n\t\"on\": on,\n\t\"trigger\": trigger,\n\t\"off\": off\n};\n\n\n},{\"./form.js\":2,\"wolfy87-eventemitter\":8}],4:[function(require,module,exports){\n/**\n * Copyright (c) 2010 Maxim Vasiliev\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n * THE SOFTWARE.\n *\n * @author Maxim Vasiliev\n * Date: 09.09.2010\n * Time: 19:02:33\n */\n\n\n(function (root, factory)\n{\n\tif (typeof exports !== 'undefined' && typeof module !== 'undefined' && module.exports) {\n\t\t// NodeJS\n\t\tmodule.exports = factory();\n\t}\n\telse if (typeof define === 'function' && define.amd)\n\t{\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine(factory);\n\t}\n\telse\n\t{\n\t\t// Browser globals\n\t\troot.form2js = factory();\n\t}\n}(this, function ()\n{\n\t\"use strict\";\n\n\t/**\n\t * Returns form values represented as Javascript object\n\t * \"name\" attribute defines structure of resulting object\n\t *\n\t * @param rootNode {Element|String} root form element (or it's id) or array of root elements\n\t * @param delimiter {String} structure parts delimiter defaults to '.'\n\t * @param skipEmpty {Boolean} should skip empty text values, defaults to true\n\t * @param nodeCallback {Function} custom function to get node value\n\t * @param useIdIfEmptyName {Boolean} if true value of id attribute of field will be used if name of field is empty\n\t */\n\tfunction form2js(rootNode, delimiter, skipEmpty, nodeCallback, useIdIfEmptyName, getDisabled)\n\t{\n\t\tgetDisabled = getDisabled ? true : false;\n\t\tif (typeof skipEmpty == 'undefined' || skipEmpty == null) skipEmpty = true;\n\t\tif (typeof delimiter == 'undefined' || delimiter == null) delimiter = '.';\n\t\tif (arguments.length < 5) useIdIfEmptyName = false;\n\n\t\trootNode = typeof rootNode == 'string' ? document.getElementById(rootNode) : rootNode;\n\n\t\tvar formValues = [],\n\t\t\tcurrNode,\n\t\t\ti = 0;\n\n\t\t/* If rootNode is array - combine values */\n\t\tif (rootNode.constructor == Array || (typeof NodeList != \"undefined\" && rootNode.constructor == NodeList))\n\t\t{\n\t\t\twhile(currNode = rootNode[i++])\n\t\t\t{\n\t\t\t\tformValues = formValues.concat(getFormValues(currNode, nodeCallback, useIdIfEmptyName, getDisabled));\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\tformValues = getFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled);\n\t\t}\n\n\t\treturn processNameValues(formValues, skipEmpty, delimiter);\n\t}\n\n\t/**\n\t * Processes collection of { name: 'name', value: 'value' } objects.\n\t * @param nameValues\n\t * @param skipEmpty if true skips elements with value == '' or value == null\n\t * @param delimiter\n\t */\n\tfunction processNameValues(nameValues, skipEmpty, delimiter)\n\t{\n\t\tvar result = {},\n\t\t\tarrays = {},\n\t\t\ti, j, k, l,\n\t\t\tvalue,\n\t\t\tnameParts,\n\t\t\tcurrResult,\n\t\t\tarrNameFull,\n\t\t\tarrName,\n\t\t\tarrIdx,\n\t\t\tnamePart,\n\t\t\tname,\n\t\t\t_nameParts;\n\n\t\tfor (i = 0; i < nameValues.length; i++)\n\t\t{\n\t\t\tvalue = nameValues[i].value;\n\n\t\t\tif (skipEmpty && (value === '' || value === null)) continue;\n\n\t\t\tname = nameValues[i].name;\n\t\t\t_nameParts = name.split(delimiter);\n\t\t\tnameParts = [];\n\t\t\tcurrResult = result;\n\t\t\tarrNameFull = '';\n\n\t\t\tfor(j = 0; j < _nameParts.length; j++)\n\t\t\t{\n\t\t\t\tnamePart = _nameParts[j].split('][');\n\t\t\t\tif (namePart.length > 1)\n\t\t\t\t{\n\t\t\t\t\tfor(k = 0; k < namePart.length; k++)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (k == 0)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tnamePart[k] = namePart[k] + ']';\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if (k == namePart.length - 1)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tnamePart[k] = '[' + namePart[k];\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tnamePart[k] = '[' + namePart[k] + ']';\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tarrIdx = namePart[k].match(/([a-z_]+)?\\[([a-z_][a-z0-9_]+?)\\]/i);\n\t\t\t\t\t\tif (arrIdx)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tfor(l = 1; l < arrIdx.length; l++)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tif (arrIdx[l]) nameParts.push(arrIdx[l]);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse{\n\t\t\t\t\t\t\tnameParts.push(namePart[k]);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t\tnameParts = nameParts.concat(namePart);\n\t\t\t}\n\n\t\t\tfor (j = 0; j < nameParts.length; j++)\n\t\t\t{\n\t\t\t\tnamePart = nameParts[j];\n\n\t\t\t\tif (namePart.indexOf('[]') > -1 && j == nameParts.length - 1)\n\t\t\t\t{\n\t\t\t\t\tarrName = namePart.substr(0, namePart.indexOf('['));\n\t\t\t\t\tarrNameFull += arrName;\n\n\t\t\t\t\tif (!currResult[arrName]) currResult[arrName] = [];\n\t\t\t\t\tcurrResult[arrName].push(value);\n\t\t\t\t}\n\t\t\t\telse if (namePart.indexOf('[') > -1)\n\t\t\t\t{\n\t\t\t\t\tarrName = namePart.substr(0, namePart.indexOf('['));\n\t\t\t\t\tarrIdx = namePart.replace(/(^([a-z_]+)?\\[)|(\\]$)/gi, '');\n\n\t\t\t\t\t/* Unique array name */\n\t\t\t\t\tarrNameFull += '_' + arrName + '_' + arrIdx;\n\n\t\t\t\t\t/*\n\t\t\t\t\t * Because arrIdx in field name can be not zero-based and step can be\n\t\t\t\t\t * other than 1, we can't use them in target array directly.\n\t\t\t\t\t * Instead we're making a hash where key is arrIdx and value is a reference to\n\t\t\t\t\t * added array element\n\t\t\t\t\t */\n\n\t\t\t\t\tif (!arrays[arrNameFull]) arrays[arrNameFull] = {};\n\t\t\t\t\tif (arrName != '' && !currResult[arrName]) currResult[arrName] = [];\n\n\t\t\t\t\tif (j == nameParts.length - 1)\n\t\t\t\t\t{\n\t\t\t\t\t\tif (arrName == '')\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrResult.push(value);\n\t\t\t\t\t\t\tarrays[arrNameFull][arrIdx] = currResult[currResult.length - 1];\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrResult[arrName].push(value);\n\t\t\t\t\t\t\tarrays[arrNameFull][arrIdx] = currResult[arrName][currResult[arrName].length - 1];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tif (!arrays[arrNameFull][arrIdx])\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tif ((/^[0-9a-z_]+\\[?/i).test(nameParts[j+1])) currResult[arrName].push({});\n\t\t\t\t\t\t\telse currResult[arrName].push([]);\n\n\t\t\t\t\t\t\tarrays[arrNameFull][arrIdx] = currResult[arrName][currResult[arrName].length - 1];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tcurrResult = arrays[arrNameFull][arrIdx];\n\t\t\t\t}\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\tarrNameFull += namePart;\n\n\t\t\t\t\tif (j < nameParts.length - 1) /* Not the last part of name - means object */\n\t\t\t\t\t{\n\t\t\t\t\t\tif (!currResult[namePart]) currResult[namePart] = {};\n\t\t\t\t\t\tcurrResult = currResult[namePart];\n\t\t\t\t\t}\n\t\t\t\t\telse\n\t\t\t\t\t{\n\t\t\t\t\t\tcurrResult[namePart] = value;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tfunction getFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled)\n\t{\n\t\tvar result = extractNodeValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled);\n\t\treturn result.length > 0 ? result : getSubFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled);\n\t}\n\n\tfunction getSubFormValues(rootNode, nodeCallback, useIdIfEmptyName, getDisabled)\n\t{\n\t\tvar result = [],\n\t\t\tcurrentNode = rootNode.firstChild;\n\n\t\twhile (currentNode)\n\t\t{\n\t\t\tresult = result.concat(extractNodeValues(currentNode, nodeCallback, useIdIfEmptyName, getDisabled));\n\t\t\tcurrentNode = currentNode.nextSibling;\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tfunction extractNodeValues(node, nodeCallback, useIdIfEmptyName, getDisabled) {\n\t\tif (node.disabled && !getDisabled) return [];\n\n\t\tvar callbackResult, fieldValue, result, fieldName = getFieldName(node, useIdIfEmptyName);\n\n\t\tcallbackResult = nodeCallback && nodeCallback(node);\n\n\t\tif (callbackResult && callbackResult.name) {\n\t\t\tresult = [callbackResult];\n\t\t}\n\t\telse if (fieldName != '' && node.nodeName.match(/INPUT|TEXTAREA/i)) {\n\t\t\tfieldValue = getFieldValue(node, getDisabled);\n\t\t\tif (null === fieldValue) {\n\t\t\t\tresult = [];\n\t\t\t} else {\n\t\t\t\tresult = [ { name: fieldName, value: fieldValue} ];\n\t\t\t}\n\t\t}\n\t\telse if (fieldName != '' && node.nodeName.match(/SELECT/i)) {\n\t\t\tfieldValue = getFieldValue(node, getDisabled);\n\t\t\tresult = [ { name: fieldName.replace(/\\[\\]$/, ''), value: fieldValue } ];\n\t\t}\n\t\telse {\n\t\t\tresult = getSubFormValues(node, nodeCallback, useIdIfEmptyName, getDisabled);\n\t\t}\n\n\t\treturn result;\n\t}\n\n\tfunction getFieldName(node, useIdIfEmptyName)\n\t{\n\t\tif (node.name && node.name != '') return node.name;\n\t\telse if (useIdIfEmptyName && node.id && node.id != '') return node.id;\n\t\telse return '';\n\t}\n\n\n\tfunction getFieldValue(fieldNode, getDisabled)\n\t{\n\t\tif (fieldNode.disabled && !getDisabled) return null;\n\n\t\tswitch (fieldNode.nodeName) {\n\t\t\tcase 'INPUT':\n\t\t\tcase 'TEXTAREA':\n\t\t\t\tswitch (fieldNode.type.toLowerCase()) {\n\t\t\t\t\tcase 'radio':\n\t\t\t\t\t\tif (fieldNode.checked && fieldNode.value === \"false\") return false;\n\t\t\t\t\tcase 'checkbox':\n\t\t\t\t\t\tif (fieldNode.checked && fieldNode.value === \"true\") return true;\n\t\t\t\t\t\tif (!fieldNode.checked && fieldNode.value === \"true\") return false;\n\t\t\t\t\t\tif (fieldNode.checked) return fieldNode.value;\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tcase 'button':\n\t\t\t\t\tcase 'reset':\n\t\t\t\t\tcase 'submit':\n\t\t\t\t\tcase 'image':\n\t\t\t\t\t\treturn '';\n\t\t\t\t\t\tbreak;\n\n\t\t\t\t\tdefault:\n\t\t\t\t\t\treturn fieldNode.value;\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tbreak;\n\n\t\t\tcase 'SELECT':\n\t\t\t\treturn getSelectedOptionValue(fieldNode);\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\tbreak;\n\t\t}\n\n\t\treturn null;\n\t}\n\n\tfunction getSelectedOptionValue(selectNode)\n\t{\n\t\tvar multiple = selectNode.multiple,\n\t\t\tresult = [],\n\t\t\toptions,\n\t\t\ti, l;\n\n\t\tif (!multiple) return selectNode.value;\n\n\t\tfor (options = selectNode.getElementsByTagName(\"option\"), i = 0, l = options.length; i < l; i++)\n\t\t{\n\t\t\tif (options[i].selected) result.push(options[i].value);\n\t\t}\n\n\t\treturn result;\n\t}\n\n\treturn form2js;\n\n}));\n},{}],5:[function(require,module,exports){\n// get successful control from form and assemble into object\n// http://www.w3.org/TR/html401/interact/forms.html#h-17.13.2\n\n// types which indicate a submit action and are not successful controls\n// these will be ignored\nvar k_r_submitter = /^(?:submit|button|image|reset|file)$/i;\n\n// node names which could be successful controls\nvar k_r_success_contrls = /^(?:input|select|textarea|keygen)/i;\n\n// Matches bracket notation.\nvar brackets = /(\\[[^\\[\\]]*\\])/g;\n\n// serializes form fields\n// @param form MUST be an HTMLForm element\n// @param options is an optional argument to configure the serialization. Default output\n// with no options specified is a url encoded string\n// - hash: [true | false] Configure the output type. If true, the output will\n// be a js object.\n// - serializer: [function] Optional serializer function to override the default one.\n// The function takes 3 arguments (result, key, value) and should return new result\n// hash and url encoded str serializers are provided with this module\n// - disabled: [true | false]. If true serialize disabled fields.\n// - empty: [true | false]. If true serialize empty fields\nfunction serialize(form, options) {\n\tif (typeof options != 'object') {\n\t\toptions = { hash: !!options };\n\t}\n\telse if (options.hash === undefined) {\n\t\toptions.hash = true;\n\t}\n\n\tvar result = (options.hash) ? {} : '';\n\tvar serializer = options.serializer || ((options.hash) ? hash_serializer : str_serialize);\n\n\tvar elements = form && form.elements ? form.elements : [];\n\n\t//Object store each radio and set if it's empty or not\n\tvar radio_store = Object.create(null);\n\n\tfor (var i=0 ; i<elements.length ; ++i) {\n\t\tvar element = elements[i];\n\n\t\t// ingore disabled fields\n\t\tif ((!options.disabled && element.disabled) || !element.name) {\n\t\t\tcontinue;\n\t\t}\n\t\t// ignore anyhting that is not considered a success field\n\t\tif (!k_r_success_contrls.test(element.nodeName) ||\n\t\t\tk_r_submitter.test(element.type)) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvar key = element.name;\n\t\tvar val = element.value;\n\n\t\t// we can't just use element.value for checkboxes cause some browsers lie to us\n\t\t// they say \"on\" for value when the box isn't checked\n\t\tif ((element.type === 'checkbox' || element.type === 'radio') && !element.checked) {\n\t\t\tval = undefined;\n\t\t}\n\n\t\t// If we want empty elements\n\t\tif (options.empty) {\n\t\t\t// for checkbox\n\t\t\tif (element.type === 'checkbox' && !element.checked) {\n\t\t\t\tval = '';\n\t\t\t}\n\n\t\t\t// for radio\n\t\t\tif (element.type === 'radio') {\n\t\t\t\tif (!radio_store[element.name] && !element.checked) {\n\t\t\t\t\tradio_store[element.name] = false;\n\t\t\t\t}\n\t\t\t\telse if (element.checked) {\n\t\t\t\t\tradio_store[element.name] = true;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// if options empty is true, continue only if its radio\n\t\t\tif (!val && element.type == 'radio') {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// value-less fields are ignored unless options.empty is true\n\t\t\tif (!val) {\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t}\n\n\t\t// multi select boxes\n\t\tif (element.type === 'select-multiple') {\n\t\t\tval = [];\n\n\t\t\tvar selectOptions = element.options;\n\t\t\tvar isSelectedOptions = false;\n\t\t\tfor (var j=0 ; j<selectOptions.length ; ++j) {\n\t\t\t\tvar option = selectOptions[j];\n\t\t\t\tvar allowedEmpty = options.empty && !option.value;\n\t\t\t\tvar hasValue = (option.value || allowedEmpty);\n\t\t\t\tif (option.selected && hasValue) {\n\t\t\t\t\tisSelectedOptions = true;\n\n\t\t\t\t\t// If using a hash serializer be sure to add the\n\t\t\t\t\t// correct notation for an array in the multi-select\n\t\t\t\t\t// context. Here the name attribute on the select element\n\t\t\t\t\t// might be missing the trailing bracket pair. Both names\n\t\t\t\t\t// \"foo\" and \"foo[]\" should be arrays.\n\t\t\t\t\tif (options.hash && key.slice(key.length - 2) !== '[]') {\n\t\t\t\t\t\tresult = serializer(result, key + '[]', option.value);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tresult = serializer(result, key, option.value);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Serialize if no selected options and options.empty is true\n\t\t\tif (!isSelectedOptions && options.empty) {\n\t\t\t\tresult = serializer(result, key, '');\n\t\t\t}\n\n\t\t\tcontinue;\n\t\t}\n\n\t\tresult = serializer(result, key, val);\n\t}\n\n\t// Check for all empty radio buttons and serialize them with key=\"\"\n\tif (options.empty) {\n\t\tfor (var key in radio_store) {\n\t\t\tif (!radio_store[key]) {\n\t\t\t\tresult = serializer(result, key, '');\n\t\t\t}\n\t\t}\n\t}\n\n\treturn result;\n}\n\nfunction parse_keys(string) {\n\tvar keys = [];\n\tvar prefix = /^([^\\[\\]]*)/;\n\tvar children = new RegExp(brackets);\n\tvar match = prefix.exec(string);\n\n\tif (match[1]) {\n\t\tkeys.push(match[1]);\n\t}\n\n\twhile ((match = children.exec(string)) !== null) {\n\t\tkeys.push(match[1]);\n\t}\n\n\treturn keys;\n}\n\nfunction hash_assign(result, keys, value) {\n\tif (keys.length === 0) {\n\t\tresult = value;\n\t\treturn result;\n\t}\n\n\tvar key = keys.shift();\n\tvar between = key.match(/^\\[(.+?)\\]$/);\n\n\tif (key === '[]') {\n\t\tresult = result || [];\n\n\t\tif (Array.isArray(result)) {\n\t\t\tresult.push(hash_assign(null, keys, value));\n\t\t}\n\t\telse {\n\t\t\t// This might be the result of bad name attributes like \"[][foo]\",\n\t\t\t// in this case the original `result` object will already be\n\t\t\t// assigned to an object literal. Rather than coerce the object to\n\t\t\t// an array, or cause an exception the attribute \"_values\" is\n\t\t\t// assigned as an array.\n\t\t\tresult._values = result._values || [];\n\t\t\tresult._values.push(hash_assign(null, keys, value));\n\t\t}\n\n\t\treturn result;\n\t}\n\n\t// Key is an attribute name and can be assigned directly.\n\tif (!between) {\n\t\tresult[key] = hash_assign(result[key], keys, value);\n\t}\n\telse {\n\t\tvar string = between[1];\n\t\tvar index = parseInt(string, 10);\n\n\t\t// If the characters between the brackets is not a number it is an\n\t\t// attribute name and can be assigned directly.\n\t\tif (isNaN(index)) {\n\t\t\tresult = result || {};\n\t\t\tresult[string] = hash_assign(result[string], keys, value);\n\t\t}\n\t\telse {\n\t\t\tresult = result || [];\n\t\t\tresult[index] = hash_assign(result[index], keys, value);\n\t\t}\n\t}\n\n\treturn result;\n}\n\n// Object/hash encoding serializer.\nfunction hash_serializer(result, key, value) {\n\tvar matches = key.match(brackets);\n\n\t// Has brackets? Use the recursive assignment function to walk the keys,\n\t// construct any missing objects in the result tree and make the assignment\n\t// at the end of the chain.\n\tif (matches) {\n\t\tvar keys = parse_keys(key);\n\t\thash_assign(result, keys, value);\n\t}\n\telse {\n\t\t// Non bracket notation can make assignments directly.\n\t\tvar existing = result[key];\n\n\t\t// If the value has been assigned already (for instance when a radio and\n\t\t// a checkbox have the same name attribute) convert the previous value\n\t\t// into an array before pushing into it.\n\t\t//\n\t\t// NOTE: If this requirement were removed all hash creation and\n\t\t// assignment could go through `hash_assign`.\n\t\tif (existing) {\n\t\t\tif (!Array.isArray(existing)) {\n\t\t\t\tresult[key] = [ existing ];\n\t\t\t}\n\n\t\t\tresult[key].push(value);\n\t\t}\n\t\telse {\n\t\t\tresult[key] = value;\n\t\t}\n\t}\n\n\treturn result;\n}\n\n// urlform encoding serializer\nfunction str_serialize(result, key, value) {\n\t// encode newlines as \\r\\n cause the html spec says so\n\tvalue = value.replace(/(\\r)?\\n/g, '\\r\\n');\n\tvalue = encodeURIComponent(value);\n\n\t// spaces should be '+' rather than '%20'.\n\tvalue = value.replace(/%20/g, '+');\n\treturn result + (result ? '&' : '') + encodeURIComponent(key) + '=' + value;\n}\n\nmodule.exports = serialize;\n},{}],6:[function(require,module,exports){\n/**\n * Copyright 2014 Craig Campbell\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\n * GATOR.JS\n * Simple Event Delegation\n *\n * @version 1.2.4\n *\n * Compatible with IE 9+, FF 3.6+, Safari 5+, Chrome\n *\n * Include legacy.js for compatibility with older browsers\n *\n * .-._ _ _ _ _ _ _ _ _\n * .-''-.__.-'00 '-' ' ' ' ' ' ' ' '-.\n * '.___ ' . .--_'-' '-' '-' _'-' '._\n * V: V 'vv-' '_ '. .' _..' '.'.\n * '=.____.=_.--' :_.__.__:_ '. : :\n * (((____.-' '-. / : :\n * (((-'\\ .' /\n * _____..' .'\n * '-._____.-'\n */\n(function() {\n var _matcher,\n _level = 0,\n _id = 0,\n _handlers = {},\n _gatorInstances = {};\n\n function _addEvent(gator, type, callback) {\n\n // blur and focus do not bubble up but if you use event capturing\n // then you will get them\n var useCapture = type == 'blur' || type == 'focus';\n gator.element.addEventListener(type, callback, useCapture);\n }\n\n function _cancel(e) {\n e.preventDefault();\n e.stopPropagation();\n }\n\n /**\n * returns function to use for determining if an element\n * matches a query selector\n *\n * @returns {Function}\n */\n function _getMatcher(element) {\n if (_matcher) {\n return _matcher;\n }\n\n if (element.matches) {\n _matcher = element.matches;\n return _matcher;\n }\n\n if (element.webkitMatchesSelector) {\n _matcher = element.webkitMatchesSelector;\n return _matcher;\n }\n\n if (element.mozMatchesSelector) {\n _matcher = element.mozMatchesSelector;\n return _matcher;\n }\n\n if (element.msMatchesSelector) {\n _matcher = element.msMatchesSelector;\n return _matcher;\n }\n\n if (element.oMatchesSelector) {\n _matcher = element.oMatchesSelector;\n return _matcher;\n }\n\n // if it doesn't match a native browser method\n // fall back to the gator function\n _matcher = Gator.matchesSelector;\n return _matcher;\n }\n\n /**\n * determines if the specified element matches a given selector\n *\n * @param {Node} element - the element to compare against the selector\n * @param {string} selector\n * @param {Node} boundElement - the element the listener was attached to\n * @returns {void|Node}\n */\n function _matchesSelector(element, selector, boundElement) {\n\n // no selector means this event was bound directly to this element\n if (selector == '_root') {\n return boundElement;\n }\n\n // if we have moved up to the element you bound the event to\n // then we have come too far\n if (element === boundElement) {\n return;\n }\n\n // if this is a match then we are done!\n if (_getMatcher(element).call(element, selector)) {\n return element;\n }\n\n // if this element did not match but has a parent we should try\n // going up the tree to see if any of the parent elements match\n // for example if you are looking for a click on an <a> tag but there\n // is a <span> inside of the a tag that it is the target,\n // it should still work\n if (element.parentNode) {\n _level++;\n return _matchesSelector(element.parentNode, selector, boundElement);\n }\n }\n\n function _addHandler(gator, event, selector, callback) {\n if (!_handlers[gator.id]) {\n _handlers[gator.id] = {};\n }\n\n if (!_handlers[gator.id][event]) {\n _handlers[gator.id][event] = {};\n }\n\n if (!_handlers[gator.id][event][selector]) {\n _handlers[gator.id][event][selector] = [];\n }\n\n _handlers[gator.id][event][selector].push(callback);\n }\n\n function _removeHandler(gator, event, selector, callback) {\n\n // if there are no events tied to this element at all\n // then don't do anything\n if (!_handlers[gator.id]) {\n return;\n }\n\n // if there is no event type specified then remove all events\n // example: Gator(element).off()\n if (!event) {\n for (var type in _handlers[gator.id]) {\n if (_handlers[gator.id].hasOwnProperty(type)) {\n _handlers[gator.id][type] = {};\n }\n }\n return;\n }\n\n // if no callback or selector is specified remove all events of this type\n // example: Gator(element).off('click')\n if (!callback && !selector) {\n _handlers[gator.id][event] = {};\n return;\n }\n\n // if a selector is specified but no callback remove all events\n // for this selector\n // example: Gator(element).off('click', '.sub-element')\n if (!callback) {\n delete _handlers[gator.id][event][selector];\n return;\n }\n\n // if we have specified an event type, selector, and callback then we\n // need to make sure there are callbacks tied to this selector to\n // begin with. if there aren't then we can stop here\n if (!_handlers[gator.id][event][selector]) {\n return;\n }\n\n // if there are then loop through all the callbacks and if we find\n // one that matches remove it from the array\n for (var i = 0; i < _handlers[gator.id][event][selector].length; i++) {\n if (_handlers[gator.id][event][selector][i] === callback) {\n _handlers[gator.id][event][selector].splice(i, 1);\n break;\n }\n }\n }\n\n function _handleEvent(id, e, type) {\n if (!_handlers[id][type]) {\n return;\n }\n\n var target = e.target || e.srcElement,\n selector,\n match,\n matches = {},\n i = 0,\n j = 0;\n\n // find all events that match\n _level = 0;\n for (selector in _handlers[id][type]) {\n if (_handlers[id][type].hasOwnProperty(selector)) {\n match = _matchesSelector(target, selector, _gatorInstances[id].element);\n\n if (match && Gator.matchesEvent(type, _gatorInstances[id].element, match, selector == '_root', e)) {\n _level++;\n _handlers[id][type][selector].match = match;\n matches[_level] = _handlers[id][type][selector];\n }\n }\n }\n\n // stopPropagation() fails to set cancelBubble to true in Webkit\n // @see http://code.google.com/p/chromium/issues/detail?id=162270\n e.stopPropagation = function() {\n e.cancelBubble = true;\n };\n\n for (i = 0; i <= _level; i++) {\n if (matches[i]) {\n for (j = 0; j < matches[i].length; j++) {\n if (matches[i][j].call(matches[i].match, e) === false) {\n Gator.cancel(e);\n return;\n }\n\n if (e.cancelBubble) {\n return;\n }\n }\n }\n }\n }\n\n /**\n * binds the specified events to the element\n *\n * @param {string|Array} events\n * @param {string} selector\n * @param {Function} callback\n * @param {boolean=} remove\n * @returns {Object}\n */\n function _bind(events, selector, callback, remove) {\n\n // fail silently if you pass null or undefined as an alement\n // in the Gator constructor\n if (!this.element) {\n return;\n }\n\n if (!(events instanceof Array)) {\n events = [events];\n }\n\n if (!callback && typeof(selector) == 'function') {\n callback = selector;\n selector = '_root';\n }\n\n var id = this.id,\n i;\n\n function _getGlobalCallback(type) {\n return function(e) {\n _handleEvent(id, e, type);\n };\n }\n\n for (i = 0; i < events.length; i++) {\n if (remove) {\n _removeHandler(this, events[i], selector, callback);\n continue;\n }\n\n if (!_handlers[id] || !_handlers[id][events[i]]) {\n Gator.addEvent(this, events[i], _getGlobalCallback(events[i]));\n }\n\n _addHandler(this, events[i], selector, callback);\n }\n\n return this;\n }\n\n /**\n * Gator object constructor\n *\n * @param {Node} element\n */\n function Gator(element, id) {\n\n // called as function\n if (!(this instanceof Gator)) {\n // only keep one Gator instance per node to make sure that\n // we don't create a ton of new objects if you want to delegate\n // multiple events from the same node\n //\n // for example: Gator(document).on(...\n for (var key in _gatorInstances) {\n if (_gatorInstances[key].element === element) {\n return _gatorInstances[key];\n }\n }\n\n _id++;\n _gatorInstances[_id] = new Gator(element, _id);\n\n return _gatorInstances[_id];\n }\n\n this.element = element;\n this.id = id;\n }\n\n /**\n * adds an event\n *\n * @param {string|Array} events\n * @param {string} selector\n * @param {Function} callback\n * @returns {Object}\n */\n Gator.prototype.on = function(events, selector, callback) {\n return _bind.call(this, events, selector, callback);\n };\n\n /**\n * removes an event\n *\n * @param {string|Array} events\n * @param {string} selector\n * @param {Function} callback\n * @returns {Object}\n */\n Gator.prototype.off = function(events, selector, callback) {\n return _bind.call(this, events, selector, callback, true);\n };\n\n Gator.matchesSelector = function() {};\n Gator.cancel = _cancel;\n Gator.addEvent = _addEvent;\n Gator.matchesEvent = function() {\n return true;\n };\n\n if (typeof module !== 'undefined' && module.exports) {\n module.exports = Gator;\n }\n\n window.Gator = Gator;\n}) ();\n\n},{}],7:[function(require,module,exports){\n/*! populate.js v1.0.2 by @dannyvankooten | MIT license */\n;(function(root) {\n\n\t/**\n\t * Populate form fields from a JSON object.\n\t *\n\t * @param form object The form element containing your input fields.\n\t * @param data array JSON data to populate the fields with.\n\t * @param basename string Optional basename which is added to `name` attributes\n\t */\n\tvar populate = function( form, data, basename) {\n\n\t\tfor(var key in data) {\n\n\t\t\tif( ! data.hasOwnProperty( key ) ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tvar name = key;\n\t\t\tvar value = data[key];\n\n\t\t\t// handle array name attributes\n\t\t\tif(typeof(basename) !== \"undefined\") {\n\t\t\t\tname = basename + \"[\" + key + \"]\";\n\t\t\t}\n\n\t\t\tif(value.constructor === Array) {\n\t\t\t\tname += '[]';\n\t\t\t} else if(typeof value == \"object\") {\n\t\t\t\tpopulate( form, value, name);\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// only proceed if element is set\n\t\t\tvar element = form.elements.namedItem( name );\n\t\t\tif( ! element ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tvar type = element.type || element[0].type;\n\n\t\t\tswitch(type ) {\n\t\t\t\tdefault:\n\t\t\t\t\telement.value = value;\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'radio':\n\t\t\t\tcase 'checkbox':\n\t\t\t\t\tfor( var j=0; j < element.length; j++ ) {\n\t\t\t\t\t\telement[j].checked = ( value.indexOf(element[j].value) > -1 );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'select-multiple':\n\t\t\t\t\tvar values = value.constructor == Array ? value : [value];\n\n\t\t\t\t\tfor(var k = 0; k < element.options.length; k++) {\n\t\t\t\t\t\telement.options[k].selected |= (values.indexOf(element.options[k].value) > -1 );\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\n\t\t\t\tcase 'select':\n\t\t\t\tcase 'select-one':\n\t\t\t\t\telement.value = value.toString() || value;\n\t\t\t\t\tbreak;\n\n\t\t\t}\n\n\t\t}\n\n\t};\n\n\t// Play nice with AMD, CommonJS or a plain global object.\n\tif ( typeof define == 'function' && typeof define.amd == 'object' && define.amd ) {\n\t\tdefine(function() {\n\t\t\treturn populate;\n\t\t});\n\t}\telse if ( typeof module !== 'undefined' && module.exports ) {\n\t\tmodule.exports = populate;\n\t} else {\n\t\troot.populate = populate;\n\t}\n\n}(this));\n},{}],8:[function(require,module,exports){\n/*!\n * EventEmitter v4.2.11 - git.io/ee\n * Unlicense - http://unlicense.org/\n * Oliver Caldwell - http://oli.me.uk/\n * @preserve\n */\n\n;(function () {\n 'use strict';\n\n /**\n * Class for managing events.\n * Can be extended to provide event functionality in other classes.\n *\n * @class EventEmitter Manages event registering and emitting.\n */\n function EventEmitter() {}\n\n // Shortcuts to improve speed and size\n var proto = EventEmitter.prototype;\n var exports = this;\n var originalGlobalValue = exports.EventEmitter;\n\n /**\n * Finds the index of the listener for the event in its storage array.\n *\n * @param {Function[]} listeners Array of listeners to search through.\n * @param {Function} listener Method to look for.\n * @return {Number} Index of the specified listener, -1 if not found\n * @api private\n */\n function indexOfListener(listeners, listener) {\n var i = listeners.length;\n while (i--) {\n if (listeners[i].listener === listener) {\n return i;\n }\n }\n\n return -1;\n }\n\n /**\n * Alias a method while keeping the context correct, to allow for overwriting of target method.\n *\n * @param {String} name The name of the target method.\n * @return {Function} The aliased method\n * @api private\n */\n function alias(name) {\n return function aliasClosure() {\n return this[name].apply(this, arguments);\n };\n }\n\n /**\n * Returns the listener array for the specified event.\n * Will initialise the event object and listener arrays if required.\n * Will return an object if you use a regex search. The object contains keys for each matched event. So /ba[rz]/ might return an object containing bar and baz. But only if you have either defined them with defineEvent or added some listeners to them.\n * Each property in the object response is an array of listener functions.\n *\n * @param {String|RegExp} evt Name of the event to return the listeners from.\n * @return {Function[]|Object} All listener functions for the event.\n */\n proto.getListeners = function getListeners(evt) {\n var events = this._getEvents();\n var response;\n var key;\n\n // Return a concatenated array of all matching events if\n // the selector is a regular expression.\n if (evt instanceof RegExp) {\n response = {};\n for (key in events) {\n if (events.hasOwnProperty(key) && evt.test(key)) {\n response[key] = events[key];\n }\n }\n }\n else {\n response = events[evt] || (events[evt] = []);\n }\n\n return response;\n };\n\n /**\n * Takes a list of listener objects and flattens it into a list of listener functions.\n *\n * @param {Object[]} listeners Raw listener objects.\n * @return {Function[]} Just the listener functions.\n */\n proto.flattenListeners = function flattenListeners(listeners) {\n var flatListeners = [];\n var i;\n\n for (i = 0; i < listeners.length; i += 1) {\n flatListeners.push(listeners[i].listener);\n }\n\n return flatListeners;\n };\n\n /**\n * Fetches the requested listeners via getListeners but will always return the results inside an object. This is mainly for internal use but others may find it useful.\n *\n * @param {String|RegExp} evt Name of the event to return the listeners from.\n * @return {Object} All listener functions for an event in an object.\n */\n proto.getListenersAsObject = function getListenersAsObject(evt) {\n var listeners = this.getListeners(evt);\n var response;\n\n if (listeners instanceof Array) {\n response = {};\n response[evt] = listeners;\n }\n\n return response || listeners;\n };\n\n /**\n * Adds a listener function to the specified event.\n * The listener will not be added if it is a duplicate.\n * If the listener returns true then it will be removed after it is called.\n * If you pass a regular expression as the event name then the listener will be added to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to attach the listener to.\n * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addListener = function addListener(evt, listener) {\n var listeners = this.getListenersAsObject(evt);\n var listenerIsWrapped = typeof listener === 'object';\n var key;\n\n for (key in listeners) {\n if (listeners.hasOwnProperty(key) && indexOfListener(listeners[key], listener) === -1) {\n listeners[key].push(listenerIsWrapped ? listener : {\n listener: listener,\n once: false\n });\n }\n }\n\n return this;\n };\n\n /**\n * Alias of addListener\n */\n proto.on = alias('addListener');\n\n /**\n * Semi-alias of addListener. It will add a listener that will be\n * automatically removed after its first execution.\n *\n * @param {String|RegExp} evt Name of the event to attach the listener to.\n * @param {Function} listener Method to be called when the event is emitted. If the function returns true then it will be removed after calling.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addOnceListener = function addOnceListener(evt, listener) {\n return this.addListener(evt, {\n listener: listener,\n once: true\n });\n };\n\n /**\n * Alias of addOnceListener.\n */\n proto.once = alias('addOnceListener');\n\n /**\n * Defines an event name. This is required if you want to use a regex to add a listener to multiple events at once. If you don't do this then how do you expect it to know what event to add to? Should it just add to every possible match for a regex? No. That is scary and bad.\n * You need to tell it what event names should be matched by a regex.\n *\n * @param {String} evt Name of the event to create.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.defineEvent = function defineEvent(evt) {\n this.getListeners(evt);\n return this;\n };\n\n /**\n * Uses defineEvent to define multiple events.\n *\n * @param {String[]} evts An array of event names to define.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.defineEvents = function defineEvents(evts) {\n for (var i = 0; i < evts.length; i += 1) {\n this.defineEvent(evts[i]);\n }\n return this;\n };\n\n /**\n * Removes a listener function from the specified event.\n * When passed a regular expression as the event name, it will remove the listener from all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to remove the listener from.\n * @param {Function} listener Method to remove from the event.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeListener = function removeListener(evt, listener) {\n var listeners = this.getListenersAsObject(evt);\n var index;\n var key;\n\n for (key in listeners) {\n if (listeners.hasOwnProperty(key)) {\n index = indexOfListener(listeners[key], listener);\n\n if (index !== -1) {\n listeners[key].splice(index, 1);\n }\n }\n }\n\n return this;\n };\n\n /**\n * Alias of removeListener\n */\n proto.off = alias('removeListener');\n\n /**\n * Adds listeners in bulk using the manipulateListeners method.\n * If you pass an object as the second argument you can add to multiple events at once. The object should contain key value pairs of events and listeners or listener arrays. You can also pass it an event name and an array of listeners to be added.\n * You can also pass it a regular expression to add the array of listeners to all events that match it.\n * Yeah, this function does quite a bit. That's probably a bad thing.\n *\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add to multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to add.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.addListeners = function addListeners(evt, listeners) {\n // Pass through to manipulateListeners\n return this.manipulateListeners(false, evt, listeners);\n };\n\n /**\n * Removes listeners in bulk using the manipulateListeners method.\n * If you pass an object as the second argument you can remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.\n * You can also pass it an event name and an array of listeners to be removed.\n * You can also pass it a regular expression to remove the listeners from all events that match it.\n *\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to remove from multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to remove.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeListeners = function removeListeners(evt, listeners) {\n // Pass through to manipulateListeners\n return this.manipulateListeners(true, evt, listeners);\n };\n\n /**\n * Edits listeners in bulk. The addListeners and removeListeners methods both use this to do their job. You should really use those instead, this is a little lower level.\n * The first argument will determine if the listeners are removed (true) or added (false).\n * If you pass an object as the second argument you can add/remove from multiple events at once. The object should contain key value pairs of events and listeners or listener arrays.\n * You can also pass it an event name and an array of listeners to be added/removed.\n * You can also pass it a regular expression to manipulate the listeners of all events that match it.\n *\n * @param {Boolean} remove True if you want to remove listeners, false if you want to add.\n * @param {String|Object|RegExp} evt An event name if you will pass an array of listeners next. An object if you wish to add/remove from multiple events at once.\n * @param {Function[]} [listeners] An optional array of listener functions to add/remove.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.manipulateListeners = function manipulateListeners(remove, evt, listeners) {\n var i;\n var value;\n var single = remove ? this.removeListener : this.addListener;\n var multiple = remove ? this.removeListeners : this.addListeners;\n\n // If evt is an object then pass each of its properties to this method\n if (typeof evt === 'object' && !(evt instanceof RegExp)) {\n for (i in evt) {\n if (evt.hasOwnProperty(i) && (value = evt[i])) {\n // Pass the single listener straight through to the singular method\n if (typeof value === 'function') {\n single.call(this, i, value);\n }\n else {\n // Otherwise pass back to the multiple function\n multiple.call(this, i, value);\n }\n }\n }\n }\n else {\n // So evt must be a string\n // And listeners must be an array of listeners\n // Loop over it and pass each one to the multiple method\n i = listeners.length;\n while (i--) {\n single.call(this, evt, listeners[i]);\n }\n }\n\n return this;\n };\n\n /**\n * Removes all listeners from a specified event.\n * If you do not specify an event then all listeners will be removed.\n * That means every event will be emptied.\n * You can also pass a regex to remove all events that match it.\n *\n * @param {String|RegExp} [evt] Optional name of the event to remove all listeners for. Will remove from every event if not passed.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.removeEvent = function removeEvent(evt) {\n var type = typeof evt;\n var events = this._getEvents();\n var key;\n\n // Remove different things depending on the state of evt\n if (type === 'string') {\n // Remove all listeners for the specified event\n delete events[evt];\n }\n else if (evt instanceof RegExp) {\n // Remove all events matching the regex.\n for (key in events) {\n if (events.hasOwnProperty(key) && evt.test(key)) {\n delete events[key];\n }\n }\n }\n else {\n // Remove all listeners in all events\n delete this._events;\n }\n\n return this;\n };\n\n /**\n * Alias of removeEvent.\n *\n * Added to mirror the node API.\n */\n proto.removeAllListeners = alias('removeEvent');\n\n /**\n * Emits an event of your choice.\n * When emitted, every listener attached to that event will be executed.\n * If you pass the optional argument array then those arguments will be passed to every listener upon execution.\n * Because it uses `apply`, your array of arguments will be passed as if you wrote them out separately.\n * So they will not arrive within the array on the other side, they will be separate.\n * You can also pass a regular expression to emit to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to emit and execute listeners for.\n * @param {Array} [args] Optional array of arguments to be passed to each listener.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.emitEvent = function emitEvent(evt, args) {\n var listenersMap = this.getListenersAsObject(evt);\n var listeners;\n var listener;\n var i;\n var key;\n var response;\n\n for (key in listenersMap) {\n if (listenersMap.hasOwnProperty(key)) {\n listeners = listenersMap[key].slice(0);\n i = listeners.length;\n\n while (i--) {\n // If the listener returns true then it shall be removed from the event\n // The function is executed either with a basic call or an apply if there is an args array\n listener = listeners[i];\n\n if (listener.once === true) {\n this.removeListener(evt, listener.listener);\n }\n\n response = listener.listener.apply(this, args || []);\n\n if (response === this._getOnceReturnValue()) {\n this.removeListener(evt, listener.listener);\n }\n }\n }\n }\n\n return this;\n };\n\n /**\n * Alias of emitEvent\n */\n proto.trigger = alias('emitEvent');\n\n /**\n * Subtly different from emitEvent in that it will pass its arguments on to the listeners, as opposed to taking a single array of arguments to pass on.\n * As with emitEvent, you can pass a regex in place of the event name to emit to all events that match it.\n *\n * @param {String|RegExp} evt Name of the event to emit and execute listeners for.\n * @param {...*} Optional additional arguments to be passed to each listener.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.emit = function emit(evt) {\n var args = Array.prototype.slice.call(arguments, 1);\n return this.emitEvent(evt, args);\n };\n\n /**\n * Sets the current value to check against when executing listeners. If a\n * listeners return value matches the one set here then it will be removed\n * after execution. This value defaults to true.\n *\n * @param {*} value The new value to check for when executing listeners.\n * @return {Object} Current instance of EventEmitter for chaining.\n */\n proto.setOnceReturnValue = function setOnceReturnValue(value) {\n this._onceReturnValue = value;\n return this;\n };\n\n /**\n * Fetches the current value to check against when executing listeners. If\n * the listeners return value matches this one then it should be removed\n * automatically. It will return true by default.\n *\n * @return {*|Boolean} The current value to check for or the default, true.\n * @api private\n */\n proto._getOnceReturnValue = function _getOnceReturnValue() {\n if (this.hasOwnProperty('_onceReturnValue')) {\n return this._onceReturnValue;\n }\n else {\n return true;\n }\n };\n\n /**\n * Fetches the events object and creates one if required.\n *\n * @return {Object} The events storage object.\n * @api private\n */\n proto._getEvents = function _getEvents() {\n return this._events || (this._events = {});\n };\n\n /**\n * Reverts the global {@link EventEmitter} to its previous value and returns a reference to this version.\n *\n * @return {Function} Non conflicting EventEmitter class.\n */\n EventEmitter.noConflict = function noConflict() {\n exports.EventEmitter = originalGlobalValue;\n return EventEmitter;\n };\n\n // Expose the class either via AMD, CommonJS or the global object\n if (typeof define === 'function' && define.amd) {\n define(function () {\n return EventEmitter;\n });\n }\n else if (typeof module === 'object' && module.exports){\n module.exports = EventEmitter;\n }\n else {\n exports.EventEmitter = EventEmitter;\n }\n}.call(this));\n\n},{}]},{},[1]);\n })();"],"sourceRoot":"/source/"}
config/default-form-messages.php CHANGED
@@ -32,4 +32,8 @@ return array(
32
  'type' => 'error',
33
  'text' => __( 'Please select at least one list.', 'mailchimp-for-wp' )
34
  ),
 
 
 
 
35
  );
32
  'type' => 'error',
33
  'text' => __( 'Please select at least one list.', 'mailchimp-for-wp' )
34
  ),
35
+ 'previously_unsubscribed' => array(
36
+ 'type' => 'error',
37
+ 'text' => __( 'It seems that you have previously unsubscribed, so we can not automatically resubscribe you.', 'mailchimp-for-wp' )
38
+ ),
39
  );
includes/admin/class-admin.php CHANGED
@@ -58,10 +58,14 @@ class MC4WP_Admin {
58
  // Actions used globally throughout WP Admin
59
  add_action( 'admin_menu', array( $this, 'build_menu' ) );
60
  add_action( 'admin_init', array( $this, 'initialize' ) );
 
61
  add_action( 'current_screen', array( $this, 'customize_admin_texts' ) );
62
  add_action( 'wp_dashboard_setup', array( $this, 'register_dashboard_widgets' ) );
63
  add_action( 'mc4wp_admin_empty_lists_cache', array( $this, 'renew_lists_cache' ) );
64
  add_action( 'mc4wp_admin_empty_debug_log', array( $this, 'empty_debug_log' ) );
 
 
 
65
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_assets' ) );
66
 
67
  $this->ads->add_hooks();
@@ -454,6 +458,45 @@ class MC4WP_Admin {
454
  $this->messages->flash( __( 'Log successfully emptied.', 'mailchimp-for-wp' ) );
455
  }
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  /**
458
  * @return MC4WP_Debug_Log
459
  */
58
  // Actions used globally throughout WP Admin
59
  add_action( 'admin_menu', array( $this, 'build_menu' ) );
60
  add_action( 'admin_init', array( $this, 'initialize' ) );
61
+
62
  add_action( 'current_screen', array( $this, 'customize_admin_texts' ) );
63
  add_action( 'wp_dashboard_setup', array( $this, 'register_dashboard_widgets' ) );
64
  add_action( 'mc4wp_admin_empty_lists_cache', array( $this, 'renew_lists_cache' ) );
65
  add_action( 'mc4wp_admin_empty_debug_log', array( $this, 'empty_debug_log' ) );
66
+
67
+ add_action( 'admin_notices', array( $this, 'show_api_key_notice' ) );
68
+ add_action( 'mc4wp_admin_dismiss_api_key_notice', array( $this, 'dismiss_api_key_notice' ) );
69
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_assets' ) );
70
 
71
  $this->ads->add_hooks();
458
  $this->messages->flash( __( 'Log successfully emptied.', 'mailchimp-for-wp' ) );
459
  }
460
 
461
+ /**
462
+ * Shows a notice when API key is not set.
463
+ */
464
+ public function show_api_key_notice() {
465
+
466
+ // don't show if on settings page already
467
+ if( isset( $_GET['page'] ) && $_GET['page'] === 'mailchimp-for-wp' ) {
468
+ return;
469
+ }
470
+
471
+ // only show to user with proper permissions
472
+ if( ! $this->is_user_authorized() ) {
473
+ return;
474
+ }
475
+
476
+ // don't show if dismissed
477
+ if( get_transient( 'mc4wp_api_key_notice_dismissed' ) ) {
478
+ return;
479
+ }
480
+
481
+ // don't show if api key is set already
482
+ $options = mc4wp_get_options();
483
+ if( ! empty( $options['api_key'] ) ) {
484
+ return;
485
+ }
486
+
487
+ echo '<div class="notice notice-warning" style="position: relative; padding-right: 36px;">';
488
+ echo '<p>' . sprintf( __( 'To get started with MailChimp for WordPress, please <a href="%s">enter your MailChimp API key on the settings page of the plugin</a>.', 'mailchimp-for-wp' ), admin_url( 'admin.php?page=mailchimp-for-wp' ) ) . '</p>';
489
+ echo '<form method="post"><input type="hidden" name="_mc4wp_action" value="dismiss_api_key_notice" /><button type="submit" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button></form>';
490
+ echo '</div>';
491
+ }
492
+
493
+ /**
494
+ * Dismisses the API key notice for 1 week
495
+ */
496
+ public function dismiss_api_key_notice() {
497
+ set_transient( 'mc4wp_api_key_notice_dismissed', 1, 3600 * 24 * 7 );
498
+ }
499
+
500
  /**
501
  * @return MC4WP_Debug_Log
502
  */
includes/class-api.php CHANGED
@@ -363,6 +363,7 @@ class MC4WP_API {
363
  * @return boolean
364
  */
365
  public function add_ecommerce_order( array $order_data ) {
 
366
  $response = $this->call( 'ecomm/order-add', array( 'order' => $order_data ) );
367
 
368
  if( is_object( $response ) ) {
@@ -372,8 +373,8 @@ class MC4WP_API {
372
  return true;
373
  }
374
 
375
- // 330 means order was already added: great
376
- if( isset( $response->code ) && $response->code == 330 ) {
377
  return true;
378
  }
379
  }
@@ -430,6 +431,8 @@ class MC4WP_API {
430
 
431
  // do not make request when no api key was provided.
432
  if( empty( $this->api_key ) ) {
 
 
433
  return false;
434
  }
435
 
363
  * @return boolean
364
  */
365
  public function add_ecommerce_order( array $order_data ) {
366
+
367
  $response = $this->call( 'ecomm/order-add', array( 'order' => $order_data ) );
368
 
369
  if( is_object( $response ) ) {
373
  return true;
374
  }
375
 
376
+ // if order was already added: great
377
+ if( isset( $response->code, $response->error ) && $response->code == 330 && strpos( $response->error, 'already been recorded' ) !== false ) {
378
  return true;
379
  }
380
  }
431
 
432
  // do not make request when no api key was provided.
433
  if( empty( $this->api_key ) ) {
434
+ $this->error_message = "Missing MailChimp API key.";
435
+ $this->error_code = 001;
436
  return false;
437
  }
438
 
includes/forms/class-form-listener.php CHANGED
@@ -91,7 +91,10 @@ class MC4WP_Form_Listener {
91
  // do stuff on failure
92
  if( ! $result ) {
93
 
94
- if( $api->get_error_code() == 214 ) {
 
 
 
95
  // handle "already_subscribed" as a soft-error
96
  $form->errors[] = 'already_subscribed';
97
  $this->get_log()->warning( sprintf( "Form %d > %s is already subscribed to the selected list(s)", $form->ID, mc4wp_obfuscate_string( $form->data['EMAIL'] ) ) );
91
  // do stuff on failure
92
  if( ! $result ) {
93
 
94
+ if( $api->get_error_code() == 212 ) {
95
+ $form->errors[] = 'previously_unsubscribed';
96
+ $this->get_log()->warning( sprintf( 'Form %d > %s has unsubscribed before and cannot be resubscribed by the plugin.', $form->ID, $form->data['EMAIL'] ) );
97
+ } elseif( $api->get_error_code() == 214 ) {
98
  // handle "already_subscribed" as a soft-error
99
  $form->errors[] = 'already_subscribed';
100
  $this->get_log()->warning( sprintf( "Form %d > %s is already subscribed to the selected list(s)", $form->ID, mc4wp_obfuscate_string( $form->data['EMAIL'] ) ) );
includes/forms/class-form-previewer.php CHANGED
@@ -163,6 +163,10 @@ class MC4WP_Form_Previewer {
163
  * @return string
164
  */
165
  public function set_page_title( $title ) {
 
 
 
 
166
  return __( 'Form preview', 'mailchimp-for-wp' );
167
  }
168
 
@@ -171,6 +175,10 @@ class MC4WP_Form_Previewer {
171
  * @return string
172
  */
173
  public function set_page_content( $content ) {
 
 
 
 
174
  return $this->form;
175
  }
176
 
163
  * @return string
164
  */
165
  public function set_page_title( $title ) {
166
+ if( ! in_the_loop() ) {
167
+ return $title;
168
+ }
169
+
170
  return __( 'Form preview', 'mailchimp-for-wp' );
171
  }
172
 
175
  * @return string
176
  */
177
  public function set_page_content( $content ) {
178
+ if( ! in_the_loop() ) {
179
+ return $content;
180
+ }
181
+
182
  return $this->form;
183
  }
184
 
includes/forms/views/tabs/form-messages.php CHANGED
@@ -63,6 +63,14 @@
63
  </td>
64
  </tr>
65
 
 
 
 
 
 
 
 
 
66
  <?php do_action( 'mc4wp_admin_form_after_messages_settings_rows', $messages, $form ); ?>
67
 
68
  <tr valign="top">
63
  </td>
64
  </tr>
65
 
66
+ <tr valign="top">
67
+ <th scope="row"><label for="mc4wp_form_previously_unsubscribed"><?php _e( 'Previously unsubscribed', 'mailchimp-for-wp' ); ?></label></th>
68
+ <td>
69
+ <input type="text" class="widefat" id="mc4wp_form_previously_unsubscribed" name="mc4wp_form[messages][previously_unsubscribed]" value="<?php echo esc_attr( $form->messages['previously_unsubscribed'] ); ?>" required />
70
+ <p class="help"><?php _e( 'When someone previously unsubscribed, the plugin can not resubscribe them automatically. Refer to your MailChimp hosted sign-up form here.', 'mailchimp-for-wp' ); ?></p>
71
+ </td>
72
+ </tr>
73
+
74
  <?php do_action( 'mc4wp_admin_form_after_messages_settings_rows', $messages, $form ); ?>
75
 
76
  <tr valign="top">
languages/mailchimp-for-wp-ca_ES.mo CHANGED
Binary file
languages/mailchimp-for-wp-ca_ES.po CHANGED
@@ -1,2099 +1,879 @@
1
- # Copyright (C) 2015 Danny van Kooten
2
- # This file is distributed under the GPL v3.
3
  # Translators:
 
4
  # Xavier Gimeno Torrent, 2015
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: MailChimp for WordPress\n"
8
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
9
- "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
10
- "PO-Revision-Date: 2015-09-30 15:15+0000\n"
11
- "Last-Translator: Xavier Gimeno Torrent\n"
12
  "Language-Team: Catalan (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ca_ES/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Language: ca_ES\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Generator: grunt-wp-i18n 0.4.4\n"
19
- "X-Poedit-Basepath: .\n"
20
- "X-Poedit-Bookmarks: \n"
21
- "X-Poedit-Country: UNITED STATES\n"
22
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2; _nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__; esc_html__;esc_attr_e; esc_html_e;esc_attr_x:1,2c; esc_html_x:1,2c;\n"
23
- "X-Poedit-Language: English\n"
24
- "X-Poedit-SearchPath-0: .\n"
25
- "X-Poedit-SourceCharset: utf-8\n"
26
- "X-Textdomain-Support: yes\n"
27
-
28
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:141
29
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:157
30
- msgid "Settings"
31
- msgstr "Configuració"
32
-
33
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:160
34
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
35
- msgid "Upgrade to MailChimp for WordPress Pro"
36
- msgstr "Actualitza a MailChimp per a WordPress Pro"
37
-
38
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:179
39
- msgid "MailChimp API Settings"
40
- msgstr "Configuració d'API de MailChimp"
41
-
42
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:180
43
- msgid "MailChimp"
44
- msgstr "MailChimp"
45
-
46
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:185
47
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
48
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
49
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
50
- msgid "Checkbox Settings"
51
- msgstr "Ajustos de les caselles de verificació"
52
-
53
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:186
54
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
55
- msgid "Checkboxes"
56
- msgstr "Caselles de verificació"
57
-
58
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:191
59
- #: mailchimp-for-wordpress/includes/views/form-settings.php:9
60
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
61
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
62
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
63
- msgid "Form Settings"
64
- msgstr "Ajustos del formulari"
65
-
66
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:192
67
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:513
68
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
69
- msgid "Forms"
70
- msgstr "Formularis"
71
-
72
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:196
73
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:197
74
- msgid "Upgrade to Pro"
75
- msgstr "Actualitzar a Pro"
76
-
77
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:283
78
- msgid "This option is only available in MailChimp for WordPress Pro."
79
- msgstr "Aquesta opció només està disponible a MailChimp per a WordPress Pro."
80
-
81
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:285
82
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
83
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
84
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
85
- msgid "(PRO ONLY)"
86
- msgstr "(NOMÉS PRO)"
87
-
88
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:286
89
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
90
- msgid "Button text"
91
- msgstr "Text del botó"
92
-
93
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:287
94
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
95
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
96
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
97
- msgid "Initial value"
98
- msgstr "Valor inicial"
99
-
100
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:288
101
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
102
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
103
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
104
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
105
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
106
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
107
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
108
- msgid "(optional)"
109
- msgstr "(opcional)"
110
-
111
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:289
112
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
113
- msgid "Label for"
114
- msgstr "Etiqueta per a"
115
-
116
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:290
117
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
118
- msgid "(or leave empty)"
119
- msgstr "(o deixa en blanc)"
120
-
121
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:291
122
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
123
- msgid "Subscribe"
124
- msgstr "Subscriure's"
125
-
126
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:292
127
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
128
- msgid "Unsubscribe"
129
- msgstr "Dessubscriure's"
130
-
131
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:316
132
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
133
- msgid "Comment form"
134
- msgstr "Formulari de comentaris"
135
-
136
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:317
137
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
138
- msgid "Registration form"
139
- msgstr "Formulari de registre"
140
-
141
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:321
142
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
143
- msgid "MultiSite forms"
144
- msgstr "Formularis Multi-Lloc"
145
-
146
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:325
147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
148
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
149
- msgid "BuddyPress registration"
150
- msgstr "Registre BuddyPress"
151
-
152
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:333
153
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:337
154
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
155
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
156
- msgid "%s checkout"
157
- msgstr "Verificació de %s"
158
-
159
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:365
160
- msgid ""
161
- "The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
162
- "first 100 lists are shown."
163
- msgstr "Aquest plugin pot obtenir un màxim de 100 llistes de MailChimp. Només es mostren les teves 100 primeres llistes."
164
-
165
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:370
166
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:719
167
- msgid "Renewed MailChimp cache."
168
- msgstr "Memòria cau de MailChimp renovada."
169
 
170
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:372
171
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
172
- msgid "Failed to renew MailChimp cache - please try again later."
173
- msgstr "Ha fallat la renovació de la memòria cau de MailChimp - Sisplau, torna a provar-ho més tard."
174
-
175
- #: mailchimp-for-wordpress/includes/class-widget.php:21
176
- msgid "MailChimp Sign-Up Form"
177
- msgstr "Formulari de subscripció de MailChimp"
178
-
179
- #: mailchimp-for-wordpress/includes/class-widget.php:23
180
- msgid "Displays your MailChimp for WordPress sign-up form"
181
- msgstr "Mostra el teu formulari de subscripció de MailChimp per a WordPress"
182
-
183
- #: mailchimp-for-wordpress/includes/class-widget.php:67
184
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:71
185
- msgid "Newsletter"
186
- msgstr "Llista de correu"
187
-
188
- #: mailchimp-for-wordpress/includes/class-widget.php:70
189
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:82
190
- msgid "Title:"
191
- msgstr "Títol:"
192
-
193
- #: mailchimp-for-wordpress/includes/class-widget.php:74
194
- msgid ""
195
- "You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
196
- " form settings</a>."
197
- msgstr "Pots editar el teu formulari de subscripció a la <a href=\"%s\">configuració dels formularis de MailChimp per a Wordpress</a>."
198
-
199
- #: mailchimp-for-wordpress/includes/functions/general.php:15
200
- #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
201
- #: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
202
  msgid "Email address"
203
  msgstr "Adreça de correu electrònic"
204
 
205
- #: mailchimp-for-wordpress/includes/functions/general.php:16
206
- #: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
207
- #: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
208
  msgid "Your email address"
209
  msgstr "La teva adreça de correu electrònic"
210
 
211
- #: mailchimp-for-wordpress/includes/functions/general.php:17
212
- #: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
213
- #: mailchimp-for-wordpress-pro/includes/config/inline-form.php:3
214
  msgid "Sign up"
215
  msgstr "Registre"
216
 
217
- #: mailchimp-for-wordpress/includes/functions/general.php:24
218
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:9
219
- msgid "Sign me up for the newsletter!"
220
- msgstr "Subscriu-me a la llista de correu!"
221
-
222
- #: mailchimp-for-wordpress/includes/functions/general.php:44
223
  msgid ""
224
- "Thank you, your sign-up request was successful! Please check your e-mail "
225
- "inbox."
226
- msgstr "Gràcies, la teva sol·licitud de subscripció s'ha completat! Sisplau, revisa la safata d'entrada del teu correu electrònic."
227
 
228
- #: mailchimp-for-wordpress/includes/functions/general.php:45
229
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
230
  msgid "Oops. Something went wrong. Please try again later."
231
  msgstr "Vaja! Alguna cosa ha anat malament. Sisplau, torna a provar-ho més tard."
232
 
233
- #: mailchimp-for-wordpress/includes/functions/general.php:46
234
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
235
  msgid "Please provide a valid email address."
236
  msgstr "Sisplau, introdueix una adreça de correu electrònic vàlida."
237
 
238
- #: mailchimp-for-wordpress/includes/functions/general.php:47
239
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
240
  msgid "Given email address is already subscribed, thank you!"
241
  msgstr "Gràcies, però l'adreça de correu electrònic facilitada ja està subscrita."
242
 
243
- #: mailchimp-for-wordpress/includes/functions/general.php:48
244
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
245
- msgid "Please complete the CAPTCHA."
246
- msgstr "Sisplau, introdueix el codi de verificació CAPTCHA."
247
-
248
- #: mailchimp-for-wordpress/includes/functions/general.php:49
249
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:39
250
  msgid "Please fill in the required fields."
251
  msgstr "Sisplau omple els camps sol·licitats."
252
 
253
- #: mailchimp-for-wordpress/includes/functions/general.php:50
254
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
255
  msgid "You were successfully unsubscribed."
256
  msgstr "Has estat dessubscrit correctament."
257
 
258
- #: mailchimp-for-wordpress/includes/functions/general.php:51
259
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
260
  msgid "Given email address is not subscribed."
261
  msgstr "El correu proporcionat no està subscrit."
262
 
263
- #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
264
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
265
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
266
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
267
- #: mailchimp-for-wordpress/includes/views/form-settings.php:106
268
- #: mailchimp-for-wordpress/includes/views/form-settings.php:121
269
- #: mailchimp-for-wordpress/includes/views/form-settings.php:134
270
- #: mailchimp-for-wordpress/includes/views/form-settings.php:145
271
- #: mailchimp-for-wordpress/includes/views/form-settings.php:164
272
- #: mailchimp-for-wordpress/includes/views/form-settings.php:178
273
- #: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
274
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
275
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
276
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
277
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:75
278
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:98
279
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:116
280
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
281
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
282
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
283
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
284
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
285
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
286
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
287
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
288
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
289
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:97
290
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
291
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
292
- msgid "Yes"
293
- msgstr "Sí"
294
-
295
- #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
296
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
297
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
298
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
299
- #: mailchimp-for-wordpress/includes/views/form-settings.php:27
300
- #: mailchimp-for-wordpress/includes/views/form-settings.php:110
301
- #: mailchimp-for-wordpress/includes/views/form-settings.php:125
302
- #: mailchimp-for-wordpress/includes/views/form-settings.php:136
303
- #: mailchimp-for-wordpress/includes/views/form-settings.php:149
304
- #: mailchimp-for-wordpress/includes/views/form-settings.php:168
305
- #: mailchimp-for-wordpress/includes/views/form-settings.php:182
306
- #: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
307
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
308
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
309
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
310
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:79
311
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:102
312
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:120
313
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
314
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
315
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
316
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:75
317
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
318
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
319
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
320
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
321
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
322
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:86
323
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:101
324
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
325
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
326
- msgid "No"
327
- msgstr "No"
328
-
329
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:235
330
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
331
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:300
332
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
333
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
334
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
335
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
336
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
337
- msgid "MailChimp for WordPress - Error"
338
- msgstr "MailChimp per a WordPress - Error"
339
-
340
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
341
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
342
- msgid ""
343
- "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
344
- "settings</a>."
345
- msgstr "Sisplau selecciona una llista de subscripció a la <a href=\"%s\">configuració de caselles de verificació</a>."
346
-
347
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
348
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
349
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
350
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
351
- msgid "This message is only visible to administrators for debugging purposes."
352
- msgstr "Aquest missatge només és visible als administradors per a fins de correcció d'errors."
353
-
354
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
355
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
356
- msgid ""
357
- "The MailChimp server returned the following error message as a response to "
358
- "our sign-up request:"
359
- msgstr "El servidor de MailChimp ha retornat el següent missatge d'error com a resposta a la teva sol·licitud de subscripció:"
360
-
361
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
362
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
363
- msgid "This is the data that was sent to MailChimp:"
364
- msgstr "Aquestes són les dades enviades a MailChimp:"
365
-
366
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
367
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
368
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
369
- msgid "Email address:"
370
- msgstr "Adreça de correu electrònic:"
371
-
372
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
373
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
374
- msgid "Merge variables:"
375
- msgstr "Combinar variables:"
376
-
377
- #. Plugin Name of the plugin/theme
378
- msgid "MailChimp for WordPress"
379
- msgstr "MailChimp per a WordPress"
380
-
381
- #: mailchimp-for-wordpress/includes/views/api-settings.php:12
382
- #: mailchimp-for-wordpress/includes/views/form-settings.php:99
383
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
384
- msgid "MailChimp Settings"
385
- msgstr "Configuració de MailChimp"
386
-
387
- #: mailchimp-for-wordpress/includes/views/api-settings.php:22
388
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
389
- msgid "API Settings"
390
- msgstr "Configuració de la API"
391
-
392
- #: mailchimp-for-wordpress/includes/views/api-settings.php:24
393
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
394
- msgid "CONNECTED"
395
- msgstr "CONNECTAT"
396
-
397
- #: mailchimp-for-wordpress/includes/views/api-settings.php:26
398
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
399
- msgid "NOT CONNECTED"
400
- msgstr "NO CONNECTAT"
401
-
402
- #: mailchimp-for-wordpress/includes/views/api-settings.php:32
403
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
404
- msgid "API Key"
405
- msgstr "Clau API"
406
-
407
- #: mailchimp-for-wordpress/includes/views/api-settings.php:34
408
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
409
- msgid "Your MailChimp API key"
410
- msgstr "La teva clau API de MailChimp"
411
-
412
- #: mailchimp-for-wordpress/includes/views/api-settings.php:35
413
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
414
- msgid "Get your API key here."
415
- msgstr "Obté la teva clau API aquí."
416
-
417
- #: mailchimp-for-wordpress/includes/views/api-settings.php:47
418
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
419
- msgid "MailChimp Data"
420
- msgstr "Dades de MailChimp"
421
-
422
- #: mailchimp-for-wordpress/includes/views/api-settings.php:48
423
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
424
- msgid ""
425
- "The table below shows your MailChimp lists data. If you applied changes to "
426
- "your MailChimp lists, please use the following button to renew your cached "
427
- "data."
428
- msgstr "La següent taula mostra les dades de les teves llistes de MailChimp. Si has efectuat canvis en les llistes de MailChimp, sisplau utilitza el botó següent per renovar les seves dades a la memòria cau."
429
-
430
- #: mailchimp-for-wordpress/includes/views/api-settings.php:54
431
- #: mailchimp-for-wordpress/includes/views/api-settings.php:125
432
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
433
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
434
- msgid "Renew MailChimp lists"
435
- msgstr "Actualitzar les llistes de MailChimp"
436
-
437
- #: mailchimp-for-wordpress/includes/views/api-settings.php:112
438
- msgid "No lists were found in your MailChimp account"
439
- msgstr "No s'ha trobat cap llista al teu compte de MailChimp"
440
-
441
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
442
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
443
- msgid ""
444
- "To use sign-up checkboxes, select at least one list and one form to add the "
445
- "checkbox to."
446
- msgstr "Per emprar caselles de verificació en el registre, selecciona com a mínim una llista i un formulari on afegir aquesta casella de verificació."
447
-
448
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
449
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
450
- msgid "MailChimp settings for checkboxes"
451
- msgstr "Ajustos de MailChimp per a les caselles de verificació"
452
-
453
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
454
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
455
- msgid ""
456
- "If you want to use sign-up checkboxes, select at least one MailChimp list to"
457
- " subscribe people to."
458
- msgstr "Si vols emprar caselles de verificació en el registre, selecciona com a mínim una llista de MailChimp a què subscriure's."
459
-
460
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
461
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
462
- msgid "MailChimp Lists"
463
- msgstr "Llistes de MailChimp"
464
-
465
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
466
- #: mailchimp-for-wordpress/includes/views/form-settings.php:48
467
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
468
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
469
- msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
470
- msgstr "No s'han trobat llistes, ¿<a href=\"%s\">estàs connectat a MailChimp</a>?"
471
-
472
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
473
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
474
- msgid ""
475
- "Select the list(s) to which people who check the checkbox should be "
476
- "subscribed."
477
- msgstr "Selecciona la(es) llista(es) a què es subscriuran els que marquin les caselles de verificació."
478
-
479
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
480
- #: mailchimp-for-wordpress/includes/views/form-settings.php:102
481
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
482
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
483
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
484
- msgid "Double opt-in?"
485
- msgstr "Vols que confirmin el registre?"
486
-
487
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
488
- #: mailchimp-for-wordpress/includes/views/form-settings.php:113
489
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
490
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
491
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
492
- msgid ""
493
- "Select \"yes\" if you want people to confirm their email address before "
494
- "being subscribed (recommended)"
495
- msgstr "Selecciona \"sí\" si vols que els subscriptors confirmin la seva adreça de correu electrònic abans de subscriure's (recomanat)"
496
-
497
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
498
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
499
- msgid "Checkbox settings"
500
- msgstr "Configuració de la casella de verificació"
501
-
502
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
503
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
504
- msgid "Add the checkbox to these forms"
505
- msgstr "Afegir caselles de verificació en aquests formularis"
506
-
507
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
508
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
509
- msgid "Selecting a form will automatically add the sign-up checkbox to it."
510
- msgstr "Al seleccionar un formulari s'afegirà automàticament la casella de verificació de registre."
511
-
512
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
513
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
514
- msgid "Checkbox label text"
515
- msgstr "Text de la casella de verificació."
516
-
517
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
518
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
519
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
520
- msgid "HTML tags like %s are allowed in the label text."
521
- msgstr "Les etiquetes HTML com % s estan permeses en el text de l'etiqueta."
522
-
523
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
524
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
525
- msgid "Pre-check the checkbox?"
526
- msgstr "Deixem pre-marcada la casella de verificació?"
527
-
528
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
529
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
530
- msgid "Load some default CSS?"
531
- msgstr "Carreguem alguns estils CSS per defecte?"
532
-
533
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
534
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
535
- msgid "Select \"yes\" if the checkbox appears in a weird place."
536
- msgstr "Seleccioneu \"sí\" si la casella de verificació apareix en un lloc inadequat."
537
-
538
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
539
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
540
- msgid "WooCommerce checkbox position"
541
- msgstr "Posició de la casella de verificació a WooCommerce"
542
-
543
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
544
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
545
- msgid "After the billing details"
546
- msgstr "Detalls després de la factura"
547
-
548
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
549
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:126
550
- msgid "After the additional information"
551
- msgstr "Després de la informació extra"
552
-
553
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
554
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
555
- msgid ""
556
- "Choose the position for the checkbox in your WooCommerce checkout form."
557
- msgstr "Escull la posició de les caselles de verificació en el teu formulari de pagament de WooCommerce."
558
-
559
- #: mailchimp-for-wordpress/includes/views/form-settings.php:15
560
- msgid ""
561
- "To use the MailChimp sign-up form, configure the form below and then either "
562
- "paste %s in the content of a post or page or use the widget."
563
- msgstr "Per emprar el formulari de subscripció de MailChimp, configura el següent formulari i després enganxa % s al contingut de l'article, pàgina, o giny."
564
-
565
- #: mailchimp-for-wordpress/includes/views/form-settings.php:20
566
- msgid "Required form settings"
567
- msgstr "Configuració de formulari requerida"
568
-
569
- #: mailchimp-for-wordpress/includes/views/form-settings.php:24
570
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
571
- msgid "Load form styles (CSS)?"
572
- msgstr "Carreguem els estils de formulari (CSS)?"
573
-
574
- #: mailchimp-for-wordpress/includes/views/form-settings.php:28
575
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
576
- msgid "Yes, load basic form styles"
577
- msgstr "Sí, carrega els estils de formulari bàsics"
578
-
579
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
580
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
581
- msgid "Yes, load my custom form styles"
582
- msgstr "Sí, carrega els meus estils de formulari personalitzats"
583
-
584
- #: mailchimp-for-wordpress/includes/views/form-settings.php:30
585
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
586
- msgid "Yes, load default form theme"
587
- msgstr "Sí, carrega els estils de formulari del tema per defecte"
588
-
589
- #: mailchimp-for-wordpress/includes/views/form-settings.php:31
590
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
591
- msgid "Light Theme"
592
- msgstr "Tema clar"
593
-
594
- #: mailchimp-for-wordpress/includes/views/form-settings.php:32
595
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
596
- msgid "Red Theme"
597
- msgstr "Tema vermell"
598
-
599
- #: mailchimp-for-wordpress/includes/views/form-settings.php:33
600
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
601
- msgid "Green Theme"
602
- msgstr "Tema verd"
603
-
604
- #: mailchimp-for-wordpress/includes/views/form-settings.php:34
605
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
606
- msgid "Blue Theme"
607
- msgstr "Tema blau"
608
-
609
- #: mailchimp-for-wordpress/includes/views/form-settings.php:35
610
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
611
- msgid "Dark Theme"
612
- msgstr "Tema fosc"
613
-
614
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
615
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
616
- msgid "Custom Color Theme"
617
- msgstr "Color de tema personalitzat"
618
-
619
- #: mailchimp-for-wordpress/includes/views/form-settings.php:41
620
- msgid ""
621
- "If you want to load some default CSS styles, select \"basic formatting "
622
- "styles\" or choose one of the color themes"
623
- msgstr "Si vols carregar els fulls d'estils CSS per defecte, selecciona \"Estils de formulari bàsics\" o escull un dels temes de colors."
624
-
625
- #: mailchimp-for-wordpress/includes/views/form-settings.php:45
626
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
627
- msgid "Lists this form subscribes to"
628
- msgstr "Les llistes d'aquest formulari subscriuen a"
629
-
630
- #: mailchimp-for-wordpress/includes/views/form-settings.php:63
631
- msgid ""
632
- "Select the list(s) to which people who submit this form should be "
633
- "subscribed."
634
- msgstr "Selecciona la(es) llista(es) a què es subscriuran els que usin aquest formulari."
635
-
636
- #: mailchimp-for-wordpress/includes/views/form-settings.php:69
637
- msgid "Form mark-up"
638
- msgstr "Codi del formulari"
639
-
640
- #: mailchimp-for-wordpress/includes/views/form-settings.php:79
641
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
642
- msgid ""
643
- "Use the shortcode %s to display this form inside a post, page or text "
644
- "widget."
645
- msgstr "Insereix el shortcode % s per mostrar aquest formulari en una entrada, article o giny de text."
646
-
647
- #: mailchimp-for-wordpress/includes/views/form-settings.php:92
648
- #: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
649
- msgid "Your form is missing the following (required) form fields:"
650
- msgstr "Cal que afegeixis els següents camps (requerits) al teu formulari:"
651
-
652
- #: mailchimp-for-wordpress/includes/views/form-settings.php:117
653
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
654
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
655
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
656
- msgid "Send Welcome Email?"
657
- msgstr "Vols que enviem un correu electrònic de benvinguda?"
658
-
659
- #: mailchimp-for-wordpress/includes/views/form-settings.php:128
660
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
661
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
662
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
663
- msgid ""
664
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
665
- "succeeds (only when double opt-in is disabled)."
666
- msgstr "Selecciona \"sí\" si vols enviar a les teves llistes un correu electrònic de benvinguda quan es realitzi una subscripció correctament (només quan la confirmació de registre està desactivada)."
667
-
668
- #: mailchimp-for-wordpress/includes/views/form-settings.php:131
669
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
670
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:67
671
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
672
- msgid "Update existing subscribers?"
673
- msgstr "Vols actualitzar els subscriptors existents?"
674
-
675
- #: mailchimp-for-wordpress/includes/views/form-settings.php:138
676
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
677
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
678
- msgid ""
679
- "Select \"yes\" if you want to update existing subscribers (instead of "
680
- "showing the \"already subscribed\" message)."
681
- msgstr "Selecciona \"sí\" si vols actualitzar els subscriptors existents (en lloc de mostrar el missatge \"ja subscrit\")."
682
-
683
- #: mailchimp-for-wordpress/includes/views/form-settings.php:141
684
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
685
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
686
- msgid "Replace interest groups?"
687
- msgstr "Vols reemplaçar els grups d'interessos?"
688
 
689
- #: mailchimp-for-wordpress/includes/views/form-settings.php:152
690
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
691
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
692
- msgid ""
693
- "Select \"yes\" if you want to replace the interest groups with the groups "
694
- "provided instead of adding the provided groups to the member's interest "
695
- "groups (only when updating a subscriber)."
696
- msgstr "Selecciona \"sí\" si vols reemplaçar els grups d'interessos pels grups previstos en lloc d'afegir els grups previstos als grups d'interessos de l'usuari (només quan s'actualitza un subscriptor)."
697
-
698
- #: mailchimp-for-wordpress/includes/views/form-settings.php:156
699
- msgid "Form Settings & Messages"
700
- msgstr "Configuració de formularis i missatges"
701
-
702
- #: mailchimp-for-wordpress/includes/views/form-settings.php:160
703
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
704
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
705
- msgid "Enable AJAX form submission?"
706
- msgstr "Habilitem AJAX als formularis de registre?"
707
-
708
- #: mailchimp-for-wordpress/includes/views/form-settings.php:171
709
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
710
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
711
- msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
712
- msgstr "Selecciona \"sí\" si vols utilitzar AJAX (JavaScript) en els formularis de registre."
713
-
714
- #: mailchimp-for-wordpress/includes/views/form-settings.php:174
715
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
716
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
717
- msgid "Hide form after a successful sign-up?"
718
- msgstr "Vols que s'oculti el formulari després d'un registre satisfactori?"
719
-
720
- #: mailchimp-for-wordpress/includes/views/form-settings.php:185
721
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
722
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
723
- msgid "Select \"yes\" to hide the form fields after a successful sign-up."
724
- msgstr "Selecciona \"sí\" per ocultar els camps del formulari després d'un registre satisfactori."
725
 
726
- #: mailchimp-for-wordpress/includes/views/form-settings.php:188
727
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
728
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
729
- msgid "Redirect to URL after successful sign-ups"
730
- msgstr "Redireccionar a una URL després d'una subscripció satisfactòria."
731
 
732
- #: mailchimp-for-wordpress/includes/views/form-settings.php:190
733
- msgid "Example: %s"
734
- msgstr "Exemple: %s"
735
 
736
- #: mailchimp-for-wordpress/includes/views/form-settings.php:191
737
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
738
  msgid ""
739
- "Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
740
- " (absolute) URLs, including <code>http://</code>."
741
- msgstr "Deixa en blanc o introdueix <code>0</ code> per no redireccionar. En cas contrari, utilitza URL completes (absolutes), incloent <code>http://</code>."
742
-
743
- #: mailchimp-for-wordpress/includes/views/form-settings.php:195
744
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
745
- msgid "Successfully subscribed"
746
- msgstr "Subscripció satisfactòria"
747
 
748
- #: mailchimp-for-wordpress/includes/views/form-settings.php:198
749
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
750
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
751
  msgid ""
752
- "The text that shows when an email address is successfully subscribed to the "
753
- "selected list(s)."
754
- msgstr "Text a mostrar quan una adreça de correu electrònic s'ha subscrit correctament a la(es) llista(es) seleccionada(es)."
755
 
756
- #: mailchimp-for-wordpress/includes/views/form-settings.php:202
757
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
758
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
759
- msgid "Invalid email address"
760
- msgstr "Adreça de correu electrònic no vàlida"
761
 
762
- #: mailchimp-for-wordpress/includes/views/form-settings.php:205
763
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
764
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
765
- msgid "The text that shows when an invalid email address is given."
766
- msgstr "Text a mostrar quan es proporciona una adreça de correu electrònic no vàlida."
767
 
768
- #: mailchimp-for-wordpress/includes/views/form-settings.php:209
769
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
770
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
771
- msgid "Required field missing"
772
- msgstr "Introdueix el camp requerit"
773
 
774
- #: mailchimp-for-wordpress/includes/views/form-settings.php:212
775
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
776
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
777
  msgid ""
778
- "The text that shows when a required field for the selected list(s) is "
779
- "missing."
780
- msgstr "Text a mostrar quan no s'ha introduït un camp obligatori per a la(es) llista(es) seleccionada(es)."
781
 
782
- #: mailchimp-for-wordpress/includes/views/form-settings.php:216
783
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
784
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
785
- msgid "Already subscribed"
786
- msgstr "Ja estàs subscrit"
787
 
788
- #: mailchimp-for-wordpress/includes/views/form-settings.php:219
789
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
790
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
791
  msgid ""
792
- "The text that shows when the given email is already subscribed to the "
793
- "selected list(s)."
794
- msgstr "Text a mostrar quan l'adreça de correu electrònic proporcionada ja està subscrita a la(es) llista(es) seleccionada(es)."
795
-
796
- #: mailchimp-for-wordpress/includes/views/form-settings.php:224
797
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
798
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
799
- msgid "Invalid CAPTCHA"
800
- msgstr "Codi de verificació CAPTCHA no vàlid"
801
-
802
- #: mailchimp-for-wordpress/includes/views/form-settings.php:229
803
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
804
- msgid "General error"
805
- msgstr "Error general"
806
-
807
- #: mailchimp-for-wordpress/includes/views/form-settings.php:232
808
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
809
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
810
- msgid "The text that shows when a general error occured."
811
- msgstr "Text a mostrar quan es produeix un error general."
812
 
813
- #: mailchimp-for-wordpress/includes/views/form-settings.php:236
814
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
815
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
816
- msgid "Unsubscribed"
817
- msgstr "Dessubscrit"
818
 
819
- #: mailchimp-for-wordpress/includes/views/form-settings.php:239
820
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
821
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
822
- msgid ""
823
- "When using the unsubscribe method, this is the text that shows when the "
824
- "given email address is successfully unsubscribed from the selected list(s)."
825
- msgstr "Quan s'empra el mètode dessubscriure's, aquest és el text a mostrar quan l'adreça de correu electrònic facilitada s'ha dessubscrit correctament de la(es) llista(es) seleccionada(es)."
826
 
827
- #: mailchimp-for-wordpress/includes/views/form-settings.php:243
828
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
829
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
830
- msgid "Not subscribed"
831
- msgstr "No subscrit"
832
 
833
- #: mailchimp-for-wordpress/includes/views/form-settings.php:246
834
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
835
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
836
- msgid ""
837
- "When using the unsubscribe method, this is the text that shows when the "
838
- "given email address is not on the selected list(s)."
839
- msgstr "Quan s'empra el mètode dessubscriure's, aquest és el text a mostrar quan l'adreça de correu electrònic facilitada no és a la(es) llista(es) seleccionada(es)."
840
 
841
- #: mailchimp-for-wordpress/includes/views/form-settings.php:252
842
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
843
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
844
- msgid "HTML tags like %s are allowed in the message fields."
845
- msgstr "Les etiquetes HTML com %s estan permeses en els camps del missatge."
846
 
847
- #: mailchimp-for-wordpress/includes/views/form-settings.php:266
848
- msgid "Form Styling"
849
- msgstr "Estil del formulari"
850
 
851
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
852
- msgid "Alter the visual appearance of the form by applying CSS rules to %s."
853
- msgstr "Modifica l'aspecte del formulari aplicant estils CSS a %s."
 
854
 
855
- #: mailchimp-for-wordpress/includes/views/form-settings.php:268
856
- msgid ""
857
- "You can add the CSS rules to your theme stylesheet using the <a "
858
- "href=\"%s\">Theme Editor</a> or by using a plugin like %s"
859
- msgstr "Pots afegir regles CSS al full d'estils del teu tema emprant l'<a href=\"%s\">Editor de Temes</a> o usant plugins com ara %s"
860
 
861
- #: mailchimp-for-wordpress/includes/views/form-settings.php:269
862
- msgid ""
863
- "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
864
- "selectors you can use to target the different form elements."
865
- msgstr "A les <a href=\"%s\" target=\"_blank\">preguntes més freqüents del plugin</a> hi ha una llista dels diversos selectors CSS que pots emprar per modificar els diferents elements del formulari."
866
 
867
- #: mailchimp-for-wordpress/includes/views/form-settings.php:270
868
- msgid ""
869
- "If you need an easier way to style your forms, consider <a "
870
- "href=\"%s\">upgrading to MailChimp for WordPress Pro</a> which comes with an"
871
- " easy Styles Builder."
872
- msgstr "Si necessites donar estil als teus formularis de forma sencilla, <a href=\"%s\">actualitza a MailChimp per a WordPress Pro</a>. Inclou un \"Constructor d'Estils\" que et permet personalitzar estils de formulari sense haver d'escriure gens de codi."
873
-
874
- #: mailchimp-for-wordpress/includes/views/form-settings.php:272
875
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
876
- msgid "Variables"
877
- msgstr "Variables"
878
-
879
- #: mailchimp-for-wordpress/includes/views/form-settings.php:274
880
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
881
- msgid ""
882
- "The following list of variables can be used to <a href=\"%s\">add some "
883
- "dynamic content to your form or success and error messages</a>."
884
- msgstr "La següent llista de variables es pot emprar per a <a href=\"%s\">afegir continguts dinàmics al teu formulari o als seus missatges d'éxit i error</a>."
885
 
886
- #: mailchimp-for-wordpress/includes/views/form-settings.php:274
887
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
888
- msgid "This allows you to personalise your form or response messages."
889
- msgstr "Això et permet personalitzar el formulari o els seus missatges de resposta."
890
 
891
- #: mailchimp-for-wordpress/includes/views/form-settings.php:282
892
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
893
- msgid "Replaced with the visitor's email (if set in URL or cookie)."
894
- msgstr "Es substitueix pel correu electrònic del visitant (si s'ha configurat a la URL o a les galetes)."
895
 
896
- #: mailchimp-for-wordpress/includes/views/form-settings.php:286
897
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
898
  msgid "Replaced with the form response (error or success messages)."
899
  msgstr "Es substitueix per la resposta del formulari (missatges d'error o èxit)."
900
 
901
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
902
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
903
- msgid "Replaced with a captcha field."
904
- msgstr "Es substitueix per un camp de verificació captcha."
905
 
906
- #: mailchimp-for-wordpress/includes/views/form-settings.php:296
907
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
908
  msgid "Replaced with the number of subscribers on the selected list(s)"
909
  msgstr "Es substitueix pel nombre de subscriptors de la(es) llista(es) seleccionada(es)"
910
 
911
- #: mailchimp-for-wordpress/includes/views/form-settings.php:300
912
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
913
- msgid "Replaced with the current site language, eg: %s"
914
- msgstr "Es substitueix per l'idioma actual del lloc, per exemple: %s"
915
-
916
- #: mailchimp-for-wordpress/includes/views/form-settings.php:304
917
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
918
- msgid "Replaced with the visitor's IP address"
919
- msgstr "Es substitueix per l'adreça IP del visitant"
920
-
921
- #: mailchimp-for-wordpress/includes/views/form-settings.php:308
922
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
923
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
924
- msgstr "Es substitueix per la data actual (aaaa/mm/dd per exemple: %s)"
925
-
926
- #: mailchimp-for-wordpress/includes/views/form-settings.php:312
927
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:46
928
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
929
- msgstr "Es substitueix per l'hora actual (hh:mm:ss per exemple: %s)"
930
 
931
- #: mailchimp-for-wordpress/includes/views/form-settings.php:316
932
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:50
933
- msgid ""
934
- "Replaced with the logged in user's email (or nothing, if there is no logged "
935
- "in user)"
936
- msgstr "Es substitueix per l'adreça de correu electrònic de l'usuari que s'ha registrat (o per res, si no s'ha registrat cap usuari)"
937
-
938
- #: mailchimp-for-wordpress/includes/views/form-settings.php:320
939
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:54
940
- msgid "First name of the current user"
941
- msgstr "Nom de l'usuari actual"
942
-
943
- #: mailchimp-for-wordpress/includes/views/form-settings.php:324
944
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:58
945
- msgid "Last name of the current user"
946
- msgstr "Cognom(s) de l'usuari actual"
947
-
948
- #: mailchimp-for-wordpress/includes/views/form-settings.php:328
949
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
950
- msgid "Current user ID"
951
- msgstr "ID de l'usuari actual"
952
-
953
- #: mailchimp-for-wordpress/includes/views/form-settings.php:332
954
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
955
- msgid "Current URL"
956
- msgstr "URL actual"
957
-
958
- #: mailchimp-for-wordpress/includes/views/form-settings.php:336
959
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
960
- msgid "The value of the <strong>FNAME</strong> field, if set."
961
- msgstr "El valor del camp <strong>FNAME</strong>, si s'ha definit."
962
-
963
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
964
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
965
- msgid "Add a new field"
966
- msgstr "Afegir un nou camp"
967
-
968
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
969
- msgid "Use the tool below to generate the HTML for your form fields."
970
- msgstr "Utilitza la següent eina per a generar el codi HTML del teu formulari."
971
-
972
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
973
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
974
- msgid "Select MailChimp field.."
975
- msgstr "Selecciona el camp de MailChimp ..."
976
-
977
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
978
- msgid "Submit Button"
979
- msgstr "Botó enviar"
980
-
981
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
982
- msgid "Subscribe / unsubscribe choice"
983
- msgstr "Opció de subscriure's / dessubscriure's"
984
-
985
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
986
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
987
- msgid "List choice"
988
- msgstr "Llista d'opcions"
989
-
990
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
991
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
992
- msgid "Label"
993
- msgstr "Etiqueta"
994
-
995
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
996
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
997
- msgid "Placeholder"
998
- msgstr "Indicador de posició"
999
-
1000
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
1001
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
1002
- msgid "Labels"
1003
- msgstr "Etiquetes"
1004
-
1005
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
1006
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
1007
- msgid "(leave empty to hide)"
1008
- msgstr "(deixar en blanc per ocultar)"
1009
-
1010
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
1011
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
1012
- msgid "Wrap in paragraph %s tags?"
1013
- msgstr "Embolicar les etiquetes %s al paràgraf?"
1014
-
1015
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
1016
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
1017
- msgid "Required field?"
1018
- msgstr "Camp obligatori?"
1019
-
1020
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
1021
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
1022
- msgid "Add to form"
1023
- msgstr "Afegir al formulari"
1024
-
1025
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
1026
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
1027
- msgid "Generated HTML"
1028
- msgstr "HTML generat"
1029
-
1030
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
1031
- msgid "Select at least one list first."
1032
- msgstr "Selecciona almenys una llista primer."
1033
-
1034
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
1035
- msgid ""
1036
- "MailChimp for WordPress is in need of translations. Is the plugin not "
1037
- "translated in your language or do you spot errors with the current "
1038
- "translations? Helping out is easy! Head over to <a href=\"%s\">the "
1039
- "translation project and click \"help translate\"</a>."
1040
- msgstr "Mailchimp per a Wordpress necessita que el tradueixin. No està traduït al teu idioma o hi ha errors en la traducció actual? Ajudar-nos és fàcil. Visita <a href=\"%s\">el projecte de traducció i selecciona \"help translate\"</a>."
1041
 
1042
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:14
1043
- msgid ""
1044
- "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress "
1045
- "Pro</a> for an even better plugin, you will love it."
1046
- msgstr "T'agrada el plugin? <a href=\"%s\">Actualitza a MailChimp per a WordPress Pro ara</a> per gaudir d'un plugin encara millor. T'encantarà."
1047
 
1048
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:20
1049
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:13
1050
- msgid ""
1051
- "This plugin is not developed by or affiliated with MailChimp in any way."
1052
- msgstr "Aquest plugin no està desenvolupat per ni està afiliat a MailChimp en cap sentit."
1053
 
1054
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
1055
- msgid "Looking for help?"
1056
- msgstr "Necessites ajut?"
1057
 
1058
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
1059
- msgid ""
1060
- "Make sure to look at the <a href=\"%s\">MailChimp for WordPress "
1061
- "documentation</a>, the plugin <a href=\"%s\">FAQ</a> or use the <a "
1062
- "href=\"%s\">support forums</a> on WordPress.org."
1063
- msgstr "Assegura't de llegir <a href=\"%s\">la documentació de MailChimp per a WordPress</a>, les <a href=\"%s\">preguntes més freqüents</a> del plugin o utilitza els <a href=\"%s\">fòrums de suport</a> a WordPress.org."
1064
 
1065
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
1066
- msgid "Do you enjoy this plugin?"
1067
- msgstr "T'agrada aquest plugin?"
1068
 
1069
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
1070
- msgid "Leave a %s plugin review on WordPress.org"
1071
- msgstr "Valora el plugin %s a WordPress.org"
1072
 
1073
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1074
- msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
1075
- msgstr "Jo faig servir MailChimp per a WordPress de @DannyvanKooten - És genial!"
1076
 
1077
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1078
- msgid "Tweet about MailChimp for WordPress"
1079
- msgstr "Tuitejar sobre MailChimp per a WordPress"
1080
 
1081
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
1082
- msgid ""
1083
- "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
1084
- "page</a>."
1085
- msgstr "Valora el plugin al teu bloc i enllaça'ns a <a href=\"%s\">la pàgina del plugin</a>."
1086
 
1087
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
1088
- msgid "There is an <a href=\"%s\">affiliate program</a> as well."
1089
- msgstr "També tenim un <a href=\"%s\">programa d'afiliats</a>."
1090
 
1091
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
1092
- msgid "Vote \"works\" on the WordPress.org plugin page"
1093
- msgstr "Vota \"funciona\" a la pàgina del plugin a WordPress.org"
1094
 
1095
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
1096
  msgid ""
1097
- "This plugin has an even better premium version, you will absolutely love it."
1098
- msgstr "Aquest plugin té una versió premium encara millor que t'encantarà."
1099
-
1100
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
1101
- msgid "Some differences with this free version of the plugin:"
1102
- msgstr "Diferències amb la versió gratuïta del plugin:"
1103
-
1104
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
1105
- msgid "Multiple forms"
1106
- msgstr "Múltiples formularis"
1107
-
1108
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
1109
- msgid "Each subscribing to one or multiple MailChimp lists."
1110
- msgstr "Subscripció a una o vàries llistes de MailChimp."
1111
-
1112
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
1113
- msgid "AJAX forms"
1114
- msgstr "Formularis AJAX"
1115
-
1116
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
1117
- msgid "Forms do not require a full page reload."
1118
- msgstr "Els formularis no requereixen una recàrrega completa de pàgina."
1119
-
1120
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
1121
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
1122
- msgid "Statistics"
1123
- msgstr "Estadístiques"
1124
-
1125
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
1126
- msgid "Every form interaction is logged and visualised in insightful charts."
1127
- msgstr "Cada interacció del formulari es registra i visualitza amb gràfics intuïtius."
1128
-
1129
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
1130
- msgid "Styles Builder"
1131
- msgstr "Creador d'estils CSS"
1132
-
1133
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
1134
- msgid "Create beautiful form themes with ease."
1135
- msgstr "Crea fàcilment bonics temes per a formularis."
1136
-
1137
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
1138
- msgid "Upgrade Now"
1139
- msgstr "Actualitza ara"
1140
-
1141
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
1142
- msgid "View Demo"
1143
- msgstr "Veure demo"
1144
-
1145
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
1146
- msgid "Documentation"
1147
- msgstr "Documentació"
1148
-
1149
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:240
1150
- msgid "Save Form"
1151
- msgstr "Guardar formulari"
1152
-
1153
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:244
1154
- msgid "Update Form"
1155
- msgstr "Actualitzar formulari"
1156
 
1157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:295
1158
- msgid "Back to general form settings"
1159
- msgstr "Tornar a les opcions generals de configuració"
1160
 
1161
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:297
1162
- msgid "Form updated."
1163
- msgstr "Formulari actualitzat."
1164
 
1165
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:298
1166
- msgid "Form saved."
1167
- msgstr "Formulari guardat."
1168
 
1169
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:365
1170
- msgid "Optional Settings"
1171
- msgstr "Propietats opcionals"
1172
 
1173
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
1174
- msgid "MailChimp & Plugin License Settings"
1175
- msgstr "Configuració de MailChimp i de la llicència"
1176
 
1177
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
1178
- msgid "MailChimp & License"
1179
- msgstr "MailChimp i llicència"
1180
 
1181
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:517
1182
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:518
1183
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1184
- msgid "Reports"
1185
- msgstr "Informes"
1186
 
1187
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:709
1188
- msgid ""
1189
- "Please make sure the plugin is connected to MailChimp. <a "
1190
- "href=\"%s\">Provide a valid API key.</a>"
1191
- msgstr "Sisplau, assegura't que el plugin està connectat a MailChimp. <a href=\"%s\">Proporciona una clau d'API vàlida.</a>"
1192
 
1193
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
1194
- msgid ""
1195
- "You disabled logging using the %s filter. Re-enable it to use the Reports "
1196
- "page."
1197
- msgstr "Has deshabilitat el registre utilitzant el filtre %s. Si vols fer servir la pàgina d'informes, l'hauràs de re-habilitar."
 
1198
 
1199
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:840
1200
- msgid ""
1201
- "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1202
- "settings you set in the Lite version, you can safely <a "
1203
- "href=\"%s\">deactivate it now</a>."
1204
- msgstr "<strong>Benvingut a MailChimp per a WordPress Pro!</ Strong> Hem transferit la configuració de la versió Lite, i la pots desactivar de manera segura <a href=\"%s\">ara</a>."
1205
 
1206
- #: mailchimp-for-wordpress-pro/includes/admin/class-statistics.php:130
1207
- msgid "End date can't be before the start date"
1208
- msgstr "La data final no pot ser anterior a la data inicial"
1209
 
1210
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:436
1211
- msgid ""
1212
- "Couldn't create the stylesheet. Manually add the generated CSS to your theme"
1213
- " stylesheet or use a plugin like <em>%s</em>."
1214
- msgstr "No s'ha pogut crear el full d'estils. Afegeix manualment el CSS generat al full d'estils del teu tema o fes servir plugins com ara <em>%s</em>."
1215
 
1216
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:437
1217
- msgid "%sShow generated CSS%s"
1218
- msgstr "%sMostra el CSS generat%s"
1219
 
1220
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:447
1221
- msgid "The %sCSS Stylesheet%s has been created."
1222
- msgstr "S'ha creat el %full d'estils CSS%s."
1223
 
1224
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:263
1225
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
1226
- msgstr "<strong>Error:</strong> Sisplau, especifica un identificador de formulari. Exemple: %s."
 
1227
 
1228
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:278
1229
  msgid ""
1230
- "<strong>Error:</strong> Sign-up form not found. Please check if you used the"
1231
- " correct form ID."
1232
- msgstr "<strong>Error:</strong> formulari de registre no trobat. Sisplau, comprova si has utilitzat l'identificador de formulari correcte."
1233
-
1234
- #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1235
- msgid "IP Address"
1236
- msgstr "Adreça IP"
1237
 
1238
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:199
1239
- msgid "New MailChimp Sign-Up"
1240
- msgstr "Nou formulari de registre MailChimp"
1241
 
1242
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:207
1243
- msgid "New Sign-Up"
1244
- msgstr "Nou registre"
1245
 
1246
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:208
1247
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1248
- msgstr "<strong>%s</strong> registre a %s el %s amb el formulari \"%s\"."
1249
 
1250
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:213
1251
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:77
1252
- msgid "List"
1253
- msgstr "Llista"
1254
 
1255
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:253
1256
- msgid "Other fields"
1257
- msgstr "Altres camps"
1258
 
1259
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:275
1260
  msgid ""
1261
- "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1262
- "be added to the selected MailChimp lists until they confirm their email "
1263
- "address."
1264
- msgstr "Has habilitat la confirmació de registre per al formulari \"%s\". L'usuari no s'afegirà a les llistes seleccionades de MailChimp fins que confirmi la seva adreça de correu electrònic."
1265
-
1266
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:277
1267
- msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1268
- msgstr "Aquest correu ha estat autoenviat pel plugin MailChimp per a WordPress."
1269
 
1270
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1271
- msgid "MailChimp for WP Form"
1272
- msgstr "Formulari MailChimp per a WordPress"
 
1273
 
1274
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:21
1275
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
1276
- msgstr "Mostra un dels teus formularis de registre MailChimp per a WordPress"
1277
 
1278
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:43
1279
  msgid ""
1280
- "Please select the sign-up form you'd like to show here in the <a "
1281
- "href=\"%s\">widget settings</a>."
1282
- msgstr "Sisplau, selecciona el formulari de registre que vols mostrar aquí a la <a href=\"%s\">configuració de ginys</a>."
1283
 
1284
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:86
1285
- msgid "Form:"
1286
- msgstr "Formulari:"
1287
 
1288
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:88
1289
- msgid "Select the form to show"
1290
- msgstr "Selecciona el formulari a mostrar"
1291
 
1292
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:96
1293
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1294
- msgstr "No tens cap formulari de registre. <a href=\"%s\">Crea'n un ara.</a>"
1295
 
1296
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:34
1297
- msgid ""
1298
- "Thank you, your sign-up request was successful! Please check your email "
1299
- "inbox to confirm."
1300
- msgstr "Gràcies, la teva sol·licitud de registre s'ha realitzat amb èxit. Sisplau revisa la safata d'entrada del teu correu electrònic."
1301
 
1302
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:144
1303
- msgid "I know. Don't bug me."
1304
- msgstr "Ja ho sé. No m'empipis! "
1305
 
1306
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:163
1307
- msgid ""
1308
- "<b>Warning!</b> You're blocking external requests which means you won't be "
1309
- "able to get %s updates. Please add %s to %s."
1310
- msgstr "<b>Avís!</b> Estàs bloquejant les sol·licituds externes el que significa que no podràs obtenir les actualitzacions de %s. Sisplau, afegeix %s per a %s."
1311
 
1312
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
1313
- msgid "Your %s license has been activated. You have an unlimited license. "
1314
- msgstr "La teva llicència de %s ha estat activada. Tens una llicència il·limitada."
1315
 
1316
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
1317
- msgid "Your %s license has been activated. You have used %d/%d activations. "
1318
- msgstr "La teva llicència de %s ha estat activada. Has utilitzat %d/%d activacions."
1319
 
1320
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
1321
- msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
1322
- msgstr "<a href=\"%s\">Sabies que pots ampliar la teva llicència?</a>"
1323
 
1324
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
1325
- msgid ""
1326
- "<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
1327
- " it?</a>"
1328
- msgstr "<a href=\"%s\">La teva llicència expira en %d dies, la vols renovar?</a>"
1329
 
1330
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:225
1331
- msgid ""
1332
- "You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
1333
- "<a href=\"%s\">upgrade your license</a> to use it on this site."
1334
- msgstr "Has arribat al límit de les teves activacions. Has de <a href=\"%s\">restablir</a> o <a href=\"%s\">ampliar la teva llicència</a> per usar-la en aquest lloc."
1335
 
1336
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:229
1337
  msgid ""
1338
- "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1339
- "you want to use it again."
1340
- msgstr "La teva llicència ha caducat. Has de <a href=\"%s\">renovar la teva llicència</a> si la vols tornar a fer servir."
1341
 
1342
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
1343
- msgid "Failed to activate your license, your license key seems to be invalid."
1344
- msgstr "La teva llicència no s'ha pogut activar, la clau de llicència sembla que no és vàlida."
1345
 
1346
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
1347
- msgid "Your %s license has been deactivated."
1348
- msgstr "La teva llicència de %s ha estat desactivada."
1349
 
1350
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:262
1351
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:66
1352
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
1353
- msgid ""
1354
- "Your plugin license has expired. You will no longer have access to plugin "
1355
- "updates unless you <a href=\"%s\">renew your license</a>."
1356
- msgstr "La teva llicència del plugin ha caducat. No tindràs accés a les actualitzacions del plugin si no <a href=\"%s\">renoves la teva llicència</a>."
1357
 
1358
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
1359
- msgid "Failed to deactivate your %s license."
1360
- msgstr "No s'ha pogut desactivar la teva llicència de %s."
1361
 
1362
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
1363
- msgid "Request error: \"%s\""
1364
- msgstr "Error de sol·licitud: \"%s\""
 
 
1365
 
1366
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:461
1367
- msgid "%s: License Settings"
1368
- msgstr "%s: Configuració de llicència"
1369
 
1370
- #: mailchimp-for-wordpress-pro/includes/license/class-plugin-license-manager.php:67
1371
- msgid ""
1372
- "%s is network activated, please contact your site administrator to manage "
1373
- "the license."
1374
- msgstr "%s està activada a la xarxa, sisplau contacta amb l'administrador del lloc per gestionar la llicència."
1375
 
1376
- #: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:64
1377
  msgid ""
1378
- "%s failed to check for updates because of the following error: <em>%s</em>"
1379
- msgstr "%s no s'han pogut comprovar les actualitzacions a causa del següent error: <em>%s</em>"
 
1380
 
1381
- #: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:126
1382
- msgid ""
1383
- "This site has not been activated properly on mc4wp.com and thus cannot check"
1384
- " for future updates. Please activate your site with a valid license key."
1385
- msgstr "Aquest lloc no s'ha activat correctament a mc4wp.com i per tant no es pot comprovar si hi ha actualitzacions. Sisplau, activa el teu lloc amb una llicència vàlida."
1386
 
1387
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:23
1388
- msgid "License status"
1389
- msgstr "Estat de la llicència"
1390
 
1391
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
1392
- msgid "ACTIVE"
1393
- msgstr "ACTIVA"
1394
 
1395
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
1396
- msgid "you are receiving updates"
1397
- msgstr "reps actualitzacions"
 
 
1398
 
1399
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
1400
- msgid "EXPIRED"
1401
- msgstr "CADUCADA"
1402
 
1403
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
1404
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
1405
- msgid "you are <strong>not</strong> receiving updates."
1406
- msgstr "<strong>no</strong> reps actualitzacions."
 
1407
 
1408
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
1409
- msgid "INACTIVE"
1410
- msgstr "INACTIVA"
1411
 
1412
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:35
1413
- msgid "Toggle license status"
1414
- msgstr "Canviar l'estat de la llicència"
1415
 
1416
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:39
1417
- msgid "Deactivate License"
1418
- msgstr "Desactivar la llicència"
1419
 
1420
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:40
1421
  msgid ""
1422
- "(deactivate your license so you can activate it on another WordPress site)"
1423
- msgstr "(desactivar la teva llicència per poder activar-la en un altre lloc de WordPress)"
 
1424
 
1425
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:44
1426
- msgid "Activate License"
1427
- msgstr "Activar la llicència"
1428
 
1429
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:46
1430
- msgid "Please enter a license key in the field below first."
1431
- msgstr "Sisplau, primer introdueix una clau de llicència en el següent camp."
 
 
1432
 
1433
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:54
1434
- msgid "License Key"
1435
- msgstr "Clau de llicència"
1436
 
1437
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:56
1438
- msgid "Paste your license key here, as found in the email receipt."
1439
- msgstr "Enganxa aquí la clau de la teva llicència, que trobaràs al correu electrònic que has rebut."
1440
 
1441
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:78
1442
- msgid "Your %s license will expire on %s."
1443
- msgstr "La teva llicència de %s caducarà el %s."
1444
 
1445
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:82
1446
- msgid "%sRenew your license now%s."
1447
- msgstr " %sRenova la teva llicència ara%s."
1448
 
1449
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:49
1450
- msgid "ID"
1451
- msgstr "Identificador"
 
1452
 
1453
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:50
1454
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:462
1455
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:498
1456
- msgid "Form"
1457
- msgstr "Formulari"
1458
 
1459
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:51
1460
- msgid "Shortcode"
1461
- msgstr "Shortcode"
1462
 
1463
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:52
1464
- msgid "List(s)"
1465
- msgstr "Llista(es)"
 
 
 
 
 
 
 
 
 
 
 
 
 
1466
 
1467
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:53
1468
- msgid "Last edited"
1469
- msgstr "Darrera edició"
 
 
 
 
 
 
 
 
 
 
 
 
 
1470
 
1471
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:104
1472
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:108
1473
- msgid "Edit Form"
1474
- msgstr "Editar el formulari"
 
 
1475
 
1476
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:105
1477
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:290
1478
- msgid "Delete"
1479
- msgstr "Eliminar"
1480
 
1481
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
1482
- msgid "No MailChimp list(s) selected yet."
1483
- msgstr "Encara no has seleccionat cap llista(es) de MailChimp."
 
 
 
1484
 
1485
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
1486
- msgid "You have not created any sign-up forms yet. Time to do so!"
1487
- msgstr "Encara no has creat cap formulari de registre. És hora de fer-ho!"
 
1488
 
1489
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:46
1490
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
1491
- msgid "Log"
1492
- msgstr "Registre"
 
 
1493
 
1494
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
1495
- msgid "Log Items"
1496
- msgstr "Registres"
 
1497
 
1498
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
1499
- msgid "Email"
1500
- msgstr "Correu electrònic"
 
 
 
1501
 
1502
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:78
1503
- msgid "Data"
1504
- msgstr "Data"
 
1505
 
1506
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
1507
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
1508
- msgid "Success"
1509
- msgstr "Completat"
1510
 
1511
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:80
1512
- msgid "Type"
1513
- msgstr "Tipus"
1514
 
1515
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:81
1516
- msgid "Source"
1517
- msgstr "Origen"
1518
 
1519
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:82
1520
- msgid "Subscribed"
1521
- msgstr "Subscrit"
1522
 
1523
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:150
1524
- msgid "Log items deleted."
1525
- msgstr "Registres eliminats."
1526
 
1527
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
1528
- msgid "Registration"
1529
- msgstr "Registre"
 
 
1530
 
1531
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
1532
- msgid "Top Bar"
1533
- msgstr "Barra d'encapçalament"
 
 
 
 
1534
 
1535
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1536
- msgid "MultiSite registration"
1537
- msgstr "Registre Multi-Lloc"
1538
 
1539
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
1540
- msgid "Contact Form 7"
1541
- msgstr "Contact Form 7"
1542
 
1543
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
1544
- msgid "bbPress: New Topic"
1545
- msgstr "bbPress: Nou assumpte"
 
1546
 
1547
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
1548
- msgid "bbPress: New Reply"
1549
- msgstr "bbPress: Nova resposta"
1550
 
1551
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
1552
- msgid "Other Form"
1553
- msgstr "Un altre formulari"
 
 
1554
 
1555
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
1556
- msgid "No subscribe requests found."
1557
- msgstr "No s'ha trobat cap sol·licitud de subscripció."
1558
 
1559
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
1560
- msgid "All"
1561
- msgstr "Tot"
 
 
1562
 
1563
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
1564
- msgid "Checkbox"
1565
- msgstr "Casella de verificació"
1566
 
1567
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
1568
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
1569
- msgid "Order"
1570
- msgstr "Ordenar"
1571
 
1572
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
1573
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
1574
- msgid "Checkout"
1575
- msgstr "Verificar"
1576
 
1577
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
1578
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
1579
- msgid "Comment"
1580
- msgstr "Comentar"
1581
 
1582
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
1583
- msgid "deleted"
1584
- msgstr "eliminat"
1585
 
1586
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
1587
- msgid ""
1588
- "Any settings you specify here will override the <a href=\"%s\">general form "
1589
- "settings</a>. If no setting is specified, the corresponding general setting "
1590
- "value will be used."
1591
- msgstr "Els ajustos que especifiquis aquí anul·laran la <a href=\"%s\">configuració general dels formularis</a>. Si no especifiques cap valor, s'utilitzarà el valor de la configuració general corresponent."
1592
-
1593
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
1594
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
1595
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:64
1596
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:83
1597
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
1598
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
1599
- msgid "Inherit"
1600
- msgstr "Heretat"
1601
-
1602
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
1603
- msgid "Send an email copy of the form data?"
1604
- msgstr "Vols una còpia per correu electrònic de les dades del formulari?"
1605
-
1606
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
1607
- msgid ""
1608
- "Tick \"yes\" if you want to receive an email with the form data for every "
1609
- "sign-up request."
1610
- msgstr "Marca \"sí\" si vols rebre un correu electrònic amb les dades del formulari de cada sol·licitud de registre."
1611
 
1612
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
1613
- msgid "Send the copy to this email:"
1614
- msgstr "Envia'n una còpia a aquest correu electrònic:"
1615
 
1616
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
1617
- msgid "Messages"
1618
- msgstr "Missatges"
1619
 
1620
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:190
1621
- msgid "Other errors"
1622
- msgstr "Altres errors"
 
 
1623
 
1624
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
1625
- msgid "Submit button"
1626
- msgstr "Botó enviar"
 
 
 
 
1627
 
1628
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
1629
- msgid "Subscribe / unsubscribe action"
1630
- msgstr "Subscriure's / dessubscriure's"
1631
 
1632
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
1633
- msgid "Form usage"
1634
- msgstr "Ús del formulari"
1635
 
1636
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
1637
- msgid ""
1638
- "Select \"yes\" if you want to update existing subscribers with the data that"
1639
- " is sent."
1640
- msgstr "Selecciona \"sí\" si vols actualitzar els subscriptors existents amb les dades enviades."
1641
 
1642
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:100
1643
  msgid ""
1644
- "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1645
- "forms."
1646
- msgstr "Usa %s al codi de Contact Form 7 per afegir una casella de subscripció al teu formulari de CF7."
1647
 
1648
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
1649
- msgid "Custom label texts"
1650
- msgstr "Etiquetes de text personalitzades"
1651
 
1652
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
1653
- msgid ""
1654
- "Override the default checkbox label text for any given checkbox using the "
1655
- "fields below."
1656
- msgstr "Sobreescriure l'etiqueta de text per defecte de la casella de verificació en qualsevol casella de verificació emprant els camps següents."
1657
 
1658
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
1659
- msgid "Forms & Settings"
1660
- msgstr "Formularis i ajustos"
1661
 
1662
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
1663
- msgid "CSS Styles Builder"
1664
- msgstr "Creador d'estils CSS"
1665
 
1666
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
1667
- msgid "License & API Settings"
1668
- msgstr "Llicència i configuració d'API"
1669
 
1670
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
1671
- msgid "No lists were found in your MailChimp account."
1672
- msgstr "No s'han trobat llistes al teu compte de MailChimp."
1673
 
1674
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
1675
- msgid ""
1676
- "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1677
- "email us directly at <a href=\"%s\">support@mc4wp.com</a>."
1678
- msgstr "Necessites ajut? Fes-li una ullada a la <a href=\"%s\">documentació del plugin</a> o envia'ns un correu directe a <a href=\"%s\">support@mc4wp.com</a>."
1679
 
1680
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
1681
- msgid ""
1682
- "Please use the same email address as you used when purchasing the plugin."
1683
- msgstr "Sisplau, utilitza la mateixa adreça de correu que vas emprar quan vas adquirir el plugin."
1684
 
1685
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
1686
- msgid "Use the fields below to create custom styling rules for your forms."
1687
- msgstr "Utilitza els camps següents per crear regles d'estil personalitzades per als teus formularis."
1688
 
1689
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:16
1690
- msgid ""
1691
- "Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
1692
- "href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
1693
- "form</a> in general."
1694
- msgstr "Recomanació: fes un cop d'ull en el nostre <a href=\"%s\">repertori de coneixements</a> als articles sobre com <a href=\"%s\">crear un formulari en files</a> o <a href = \"% s\">donar-li estil al teu formulari</a> en general."
1695
 
1696
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
1697
  msgid ""
1698
- "You are not loading your custom stylesheet at this moment. To apply these "
1699
- "styles on your site, select \"load custom form styles\" in the <a "
1700
- "href=\"%s\">MailChimp for WordPress form settings</a>."
1701
- msgstr "En aquest moment el full d'estils personalitzats no està carregat. Per aplicar aquests estils al teu lloc web, selecciona \"carregar estils personalitzats de formulari\" als <a href=\"%s\">ajustos de formulari de MailChimp per a WordPress</a>."
1702
-
1703
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:30
1704
- msgid "Select form to build styles for:"
1705
- msgstr "Selecciona el formulari al qual vols aplicar els estils:"
1706
-
1707
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
1708
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
1709
- msgid "Create at least one form first."
1710
- msgstr "Primer crea almenys un formulari."
1711
-
1712
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
1713
- msgid "You need to have JavaScript enabled to see a preview of your form."
1714
- msgstr "Necessites tenir habilitat el JavaScript per a previsualitzar el teu formulari:"
1715
-
1716
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
1717
- msgid "Form container style"
1718
- msgstr "Estil del contenidor del formulari"
1719
-
1720
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
1721
- msgid "Form width"
1722
- msgstr "Amplada del formulari"
1723
-
1724
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
1725
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
1726
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
1727
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
1728
- msgid "px or %"
1729
- msgstr "px o %"
1730
-
1731
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
1732
- msgid "Text alignment"
1733
- msgstr "Alineació del text"
1734
-
1735
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
1736
- msgid "Choose alignment"
1737
- msgstr "Escull alineació"
1738
-
1739
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
1740
- msgid "Left"
1741
- msgstr "Esquerra"
1742
-
1743
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
1744
- msgid "Center"
1745
- msgstr "Centre"
1746
-
1747
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
1748
- msgid "Right"
1749
- msgstr "Dreta"
1750
-
1751
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
1752
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
1753
- msgid "Background color"
1754
- msgstr "Color del fons"
1755
-
1756
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
1757
- msgid "Padding"
1758
- msgstr "Farcit (padding)"
1759
-
1760
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
1761
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
1762
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
1763
- msgid "Border color"
1764
- msgstr "Color de vora (border)"
1765
-
1766
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
1767
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
1768
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
1769
- msgid "Border width"
1770
- msgstr "Amplada de vora (border)"
1771
-
1772
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
1773
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
1774
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
1775
- msgid "Text color"
1776
- msgstr "Color del text"
1777
-
1778
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
1779
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
1780
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
1781
- msgid "Text size"
1782
- msgstr "Mida del text"
1783
-
1784
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
1785
- msgid "Background image"
1786
- msgstr "Imatge de fons"
1787
-
1788
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
1789
- msgid "Label styles"
1790
- msgstr "Estils d'etiquetes"
1791
-
1792
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
1793
- msgid "Label width"
1794
- msgstr "Amplada d'etiqueta"
1795
-
1796
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
1797
- msgid "Text style"
1798
- msgstr "Estil del text"
1799
-
1800
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
1801
- msgid "Choose text style.."
1802
- msgstr "Tria l'estil del text ..."
1803
-
1804
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
1805
- msgid "Normal"
1806
- msgstr "Normal"
1807
-
1808
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
1809
- msgid "Bold"
1810
- msgstr "Negreta"
1811
-
1812
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
1813
- msgid "Italic"
1814
- msgstr "Cursiva"
1815
-
1816
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
1817
- msgid "Bold & Italic"
1818
- msgstr "Negreta i cursiva"
1819
-
1820
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
1821
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
1822
- msgid "Display"
1823
- msgstr "Visualització"
1824
-
1825
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
1826
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
1827
- msgid "Inline"
1828
- msgstr "En línia (inline)"
1829
-
1830
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
1831
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
1832
- msgid "New line"
1833
- msgstr "Nova línia"
1834
-
1835
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
1836
- msgid "Field styles"
1837
- msgstr "Estils del camp"
1838
-
1839
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
1840
- msgid "Field width"
1841
- msgstr "Amplada del camp"
1842
-
1843
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
1844
- msgid "Field height"
1845
- msgstr "Alçada del camp"
1846
-
1847
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
1848
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
1849
- msgid "Border radius"
1850
- msgstr "Radi de vora (border radius)"
1851
-
1852
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
1853
- msgid "Focus outline"
1854
- msgstr "Focus outline"
1855
-
1856
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
1857
- msgid "Button styles"
1858
- msgstr "Estils del botó"
1859
-
1860
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
1861
- msgid "Button width"
1862
- msgstr "Amplada del botó"
1863
-
1864
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
1865
- msgid "Button height"
1866
- msgstr "Alçada del botó"
1867
-
1868
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
1869
- msgid "Error and success messages"
1870
- msgstr "Missatges d'error i d'èxit"
1871
-
1872
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
1873
- msgid "Success text color"
1874
- msgstr "Color del text d'èxit"
1875
-
1876
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
1877
- msgid "Error text color"
1878
- msgstr "Color del text d'error"
1879
-
1880
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
1881
- msgid "Advanced"
1882
- msgstr "Avançat"
1883
 
1884
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
1885
- msgid "CSS Selector Prefix"
1886
- msgstr "Prefix del selector CSS"
1887
 
1888
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
1889
  msgid ""
1890
- "Use this to create a more specific (and thus more \"important\") CSS "
1891
- "selector."
1892
- msgstr "Fes servir això per a crear un CSS més específic (i per tant més \"important\")."
1893
-
1894
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
1895
- msgid "Manual CSS"
1896
- msgstr "CSS Manual"
1897
 
1898
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
1899
  msgid ""
1900
- "The CSS rules you enter here will be appended to the custom stylesheet."
1901
- msgstr "Les regles CSS que introdueixis aquí seran afegides al final del full d'estils personalitzats."
1902
-
1903
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
1904
- msgid "Copy styles from other form"
1905
- msgstr "Copiar estils des d'un altre formulari"
1906
 
1907
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
1908
- msgid "Copy Styles"
1909
- msgstr "Copiar estils"
1910
 
1911
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
1912
  msgid ""
1913
- "Are you sure you want to copy form styles from another form? This will "
1914
- "overwrite current styles for this form."
1915
- msgstr "Estàs segur que vols copiar els estils des d'un altre formulari? Això sobreescriurà els estils actuals d'aquest formulari."
1916
-
1917
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
1918
- msgid "Are you sure you want to delete all custom styles for this form?"
1919
- msgstr "Estàs segur que vols eliminar els estils personalitzats d'aquest formulari?"
1920
 
1921
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
1922
- msgid "Delete Form Styles"
1923
- msgstr "Eliminar els estils del formulari"
1924
 
1925
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
1926
- msgid "Form preview"
1927
- msgstr "Previsualització del formulari"
1928
 
1929
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1930
- msgid "Sign-Up Forms"
1931
- msgstr "Formularis de subscripció"
1932
 
1933
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1934
- msgid "Create New Form"
1935
- msgstr "Crear nou formulari"
1936
 
1937
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
1938
- msgid "General form settings"
1939
- msgstr "Configuració general dels formularis"
1940
 
1941
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
1942
- msgid ""
1943
- "If you %screated a custom stylesheet%s and want it to be loaded, select "
1944
- "\"custom form styles\". Otherwise, choose the basic formatting styles or one"
1945
- " of the default themes."
1946
- msgstr "Si %svas crear un full d'estils personalitzats%s i vols que es carregui, selecciona \"estils de formulari personalitzats\". Altrament, tria els estils de format bàsic o un dels temes per defecte."
1947
 
1948
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
1949
- msgid "Select Color"
1950
- msgstr "Seleccionar color"
1951
 
1952
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
1953
- msgid "Save all changes"
1954
- msgstr "Guardar tots els canvis"
1955
 
1956
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
1957
- msgid "Default MailChimp settings"
1958
- msgstr "Ajustos de MailChimp per defecte"
 
 
1959
 
1960
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
1961
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
1962
  msgid ""
1963
- "The following settings apply to <strong>all</strong> forms but can be "
1964
- "overridden on a per-form basis."
1965
- msgstr "Els següents ajustos s'apliquen a <strong>tots</strong> els formularis però en cada formulari poden canviar-se."
1966
 
1967
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
1968
- msgid "Default Form Settings"
1969
- msgstr "Ajustos per defecte del formulari"
1970
 
1971
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
1972
- msgid ""
1973
- "Leave empty for no redirect. Otherwise, use complete (absolute) URLs, "
1974
- "including <code>http://</code>."
1975
- msgstr "Deixar en blanc per a no redireccionar. En cas contrari, utilitza URL completes (absolutes), incloent <code>http://</code>."
1976
-
1977
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
1978
- msgid "Default Messages"
1979
- msgstr "Missatges per defecte"
1980
-
1981
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:15
1982
- msgid "Today"
1983
- msgstr "Avui"
1984
-
1985
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:16
1986
- msgid "Yesterday"
1987
- msgstr "Ahir"
1988
-
1989
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:17
1990
- msgid "Last Week"
1991
- msgstr "Darrera setmana"
1992
-
1993
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:18
1994
- msgid "Last Month"
1995
- msgstr "Darrer mes"
1996
-
1997
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:19
1998
- msgid "Last Quarter"
1999
- msgstr "Darrer quadrimestre"
2000
-
2001
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:20
2002
- msgid "Last Year"
2003
- msgstr "Darrer any"
2004
-
2005
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:21
2006
- msgid "Custom"
2007
- msgstr "Personalitzat"
2008
-
2009
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:25
2010
- msgid "From"
2011
- msgstr "De"
2012
-
2013
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:32
2014
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:57
2015
- msgid "Jan"
2016
- msgstr "Gen"
2017
-
2018
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:33
2019
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:58
2020
- msgid "Feb"
2021
- msgstr "Feb"
2022
-
2023
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:34
2024
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:59
2025
- msgid "Mar"
2026
- msgstr "Mar"
2027
-
2028
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:35
2029
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:60
2030
- msgid "Apr"
2031
- msgstr "Abr"
2032
-
2033
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:36
2034
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:61
2035
- msgid "May"
2036
- msgstr "Mai"
2037
-
2038
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:37
2039
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:62
2040
- msgid "Jun"
2041
- msgstr "Jun"
2042
-
2043
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:38
2044
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:63
2045
- msgid "Jul"
2046
- msgstr "Jul"
2047
-
2048
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:39
2049
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:64
2050
- msgid "Aug"
2051
- msgstr "Ago"
2052
-
2053
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:40
2054
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:65
2055
- msgid "Sep"
2056
- msgstr "Set"
2057
-
2058
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:41
2059
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:66
2060
- msgid "Oct"
2061
- msgstr "Oct"
2062
-
2063
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:42
2064
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:67
2065
- msgid "Nov"
2066
- msgstr "Nov"
2067
-
2068
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:43
2069
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:68
2070
- msgid "Dec"
2071
- msgstr "Dec"
2072
-
2073
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:50
2074
- msgid "To"
2075
- msgstr "Per a"
2076
-
2077
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:76
2078
- msgid "Filter"
2079
- msgstr "Filtre"
2080
-
2081
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
2082
- msgid "Show these lines:"
2083
- msgstr "Mostrar aquestes línies:"
2084
 
2085
  #. Plugin URI of the plugin/theme
2086
- msgid "https://mc4wp.com/"
2087
- msgstr "https://mc4wp.com/"
 
 
2088
 
2089
  #. Description of the plugin/theme
2090
- msgid "Adds various sign-up methods to your website."
2091
- msgstr "Afegeix diversos mètodes de subscripció a la teva pàgina web."
 
 
2092
 
2093
  #. Author of the plugin/theme
2094
- msgid "Danny van Kooten"
2095
- msgstr "Danny van Kooten"
2096
 
2097
  #. Author URI of the plugin/theme
2098
- msgid "http://dannyvankooten.com"
2099
- msgstr "http://dannyvankooten.com"
1
+ # Copyright (C) 2015 MailChimp for WordPress
2
+ # This file is distributed under the same license as the MailChimp for WordPress package.
3
  # Translators:
4
+ # Miceno Atreides <miceno.atreides@gmail.com>, 2016
5
  # Xavier Gimeno Torrent, 2015
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: MailChimp for WordPress\n"
9
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
10
+ "POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
11
+ "PO-Revision-Date: 2016-05-09 13:06+0000\n"
12
+ "Last-Translator: Miceno Atreides <miceno.atreides@gmail.com>\n"
13
  "Language-Team: Catalan (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ca_ES/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language: ca_ES\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
+ #: config/default-form-content.php:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Email address"
22
  msgstr "Adreça de correu electrònic"
23
 
24
+ #: config/default-form-content.php:4
 
 
25
  msgid "Your email address"
26
  msgstr "La teva adreça de correu electrònic"
27
 
28
+ #: config/default-form-content.php:5
 
 
29
  msgid "Sign up"
30
  msgstr "Registre"
31
 
32
+ #: config/default-form-messages.php:5
 
 
 
 
 
33
  msgid ""
34
+ "Thank you, your sign-up request was successful! Please check your email "
35
+ "inbox to confirm."
36
+ msgstr "Gràcies, la teva sol·licitud de registre s'ha realitzat amb èxit. Sisplau revisa la safata d'entrada del teu correu electrònic."
37
 
38
+ #: config/default-form-messages.php:9
 
39
  msgid "Oops. Something went wrong. Please try again later."
40
  msgstr "Vaja! Alguna cosa ha anat malament. Sisplau, torna a provar-ho més tard."
41
 
42
+ #: config/default-form-messages.php:13
 
43
  msgid "Please provide a valid email address."
44
  msgstr "Sisplau, introdueix una adreça de correu electrònic vàlida."
45
 
46
+ #: config/default-form-messages.php:17
 
47
  msgid "Given email address is already subscribed, thank you!"
48
  msgstr "Gràcies, però l'adreça de correu electrònic facilitada ja està subscrita."
49
 
50
+ #: config/default-form-messages.php:21
 
 
 
 
 
 
51
  msgid "Please fill in the required fields."
52
  msgstr "Sisplau omple els camps sol·licitats."
53
 
54
+ #: config/default-form-messages.php:25
 
55
  msgid "You were successfully unsubscribed."
56
  msgstr "Has estat dessubscrit correctament."
57
 
58
+ #: config/default-form-messages.php:29
 
59
  msgid "Given email address is not subscribed."
60
  msgstr "El correu proporcionat no està subscrit."
61
 
62
+ #: config/default-form-messages.php:33
63
+ msgid "Please select at least one list."
64
+ msgstr "Sisplau selecciona almenys una llista primer."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
+ #: config/default-integration-options.php:5
67
+ msgid "Sign me up for the newsletter!"
68
+ msgstr "Subscriu-me a la llista de correu!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
 
70
+ #: includes/admin/class-admin-texts.php:62
71
+ #: includes/forms/views/edit-form.php:6
72
+ msgid "Settings"
73
+ msgstr "Configuració"
 
74
 
75
+ #: includes/admin/class-admin-texts.php:80
76
+ msgid "Documentation"
77
+ msgstr "Documentació"
78
 
79
+ #: includes/admin/class-admin.php:167
 
80
  msgid ""
81
+ "Success! The cached configuration for your MailChimp lists has been renewed."
82
+ msgstr ""
 
 
 
 
 
 
83
 
84
+ #: includes/admin/class-admin.php:257
 
 
85
  msgid ""
86
+ "This is a pro-only feature. Please upgrade to the premium version to be able"
87
+ " to use it."
88
+ msgstr ""
89
 
90
+ #: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
91
+ msgid "MailChimp API Settings"
92
+ msgstr "Configuració d'API de MailChimp"
 
 
93
 
94
+ #: includes/admin/class-admin.php:324
95
+ #: integrations/ninja-forms/class-ninja-forms.php:34
96
+ msgid "MailChimp"
97
+ msgstr "MailChimp"
 
98
 
99
+ #: includes/admin/class-ads.php:33
100
+ msgid "Upgrade to MailChimp for WordPress Pro"
101
+ msgstr "Actualitza a MailChimp per a WordPress Pro"
 
 
102
 
103
+ #: includes/admin/class-ads.php:41
 
 
104
  msgid ""
105
+ "Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
106
+ "features</a> for an even better plugin."
107
+ msgstr ""
108
 
109
+ #: includes/admin/class-ads.php:62
110
+ msgid "More subscribers, better newsletters."
111
+ msgstr ""
 
 
112
 
113
+ #: includes/admin/class-ads.php:63
 
 
114
  msgid ""
115
+ "Learn how to best grow your lists & write better emails by subscribing to "
116
+ "our monthly tips."
117
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
 
119
+ #: includes/admin/class-ads.php:66
120
+ msgid "Email Address"
121
+ msgstr "Adreça de correu electrònic:"
 
 
122
 
123
+ #: includes/admin/class-ads.php:70
124
+ msgid "First Name"
125
+ msgstr "Nom"
 
 
 
 
126
 
127
+ #: includes/admin/class-ads.php:77
128
+ msgid "Subscribe"
129
+ msgstr "Subscriure's"
 
 
130
 
131
+ #: includes/admin/class-usage-tracking.php:57
132
+ msgid "Once a month"
133
+ msgstr "Una vegada al mes"
 
 
 
 
134
 
135
+ #: includes/admin/migrations/3.0-form-1-post-type.php:35
136
+ msgid "Default sign-up form"
137
+ msgstr ""
 
 
138
 
139
+ #: includes/class-api.php:83
140
+ msgid "Read more about common connectivity issues."
141
+ msgstr ""
142
 
143
+ #: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
144
+ #: includes/forms/views/edit-form.php:17
145
+ msgid "Forms"
146
+ msgstr "Formularis"
147
 
148
+ #: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
149
+ msgid "<strong>Success!</strong> Form successfully saved."
150
+ msgstr ""
 
 
151
 
152
+ #: includes/forms/class-admin.php:176
153
+ msgid "Preview form"
154
+ msgstr ""
 
 
155
 
156
+ #: includes/forms/class-admin.php:279
157
+ msgid "Form not found."
158
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
+ #: includes/forms/class-admin.php:281
161
+ msgid "Go back"
162
+ msgstr ""
 
163
 
164
+ #: includes/forms/class-form-previewer.php:162
165
+ msgid "Form preview"
166
+ msgstr "Previsualització del formulari"
 
167
 
168
+ #: includes/forms/class-form-tags.php:51
 
169
  msgid "Replaced with the form response (error or success messages)."
170
  msgstr "Es substitueix per la resposta del formulari (missatges d'error o èxit)."
171
 
172
+ #: includes/forms/class-form-tags.php:56
173
+ msgid "Data from the URL or a submitted form."
174
+ msgstr ""
 
175
 
176
+ #: includes/forms/class-form-tags.php:62
177
+ #: includes/integrations/class-integration-tags.php:45
178
  msgid "Replaced with the number of subscribers on the selected list(s)"
179
  msgstr "Es substitueix pel nombre de subscriptors de la(es) llista(es) seleccionada(es)"
180
 
181
+ #: includes/forms/class-form-tags.php:67
182
+ msgid "The email address of the current visitor (if known)."
183
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
184
 
185
+ #: includes/forms/class-form-tags.php:72
186
+ msgid "The URL of the page."
187
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
188
 
189
+ #: includes/forms/class-form-tags.php:77
190
+ msgid "The path of the page."
191
+ msgstr ""
 
 
192
 
193
+ #: includes/forms/class-form-tags.php:82
194
+ msgid "The current date. Example: %s."
195
+ msgstr ""
 
 
196
 
197
+ #: includes/forms/class-form-tags.php:87
198
+ msgid "The current time. Example: %s."
199
+ msgstr ""
200
 
201
+ #: includes/forms/class-form-tags.php:92
202
+ msgid "The site's language. Example: %s."
203
+ msgstr ""
 
 
 
204
 
205
+ #: includes/forms/class-form-tags.php:97
206
+ msgid "The visitor's IP address. Example: %s."
207
+ msgstr ""
208
 
209
+ #: includes/forms/class-form-tags.php:102
210
+ msgid "The property of the currently logged-in user."
211
+ msgstr ""
212
 
213
+ #: includes/forms/class-form.php:128
214
+ msgid "There is no form with ID %d, perhaps it was deleted?"
215
+ msgstr ""
216
 
217
+ #: includes/forms/class-widget.php:26
218
+ msgid "Newsletter"
219
+ msgstr "Llista de correu"
220
 
221
+ #: includes/forms/class-widget.php:30
222
+ msgid "MailChimp Sign-Up Form"
223
+ msgstr "Formulari de subscripció de MailChimp"
 
 
224
 
225
+ #: includes/forms/class-widget.php:32
226
+ msgid "Displays your MailChimp for WordPress sign-up form"
227
+ msgstr "Mostra el teu formulari de subscripció de MailChimp per a WordPress"
228
 
229
+ #: includes/forms/class-widget.php:75
230
+ msgid "Title:"
231
+ msgstr "Títol:"
232
 
233
+ #: includes/forms/class-widget.php:92
234
  msgid ""
235
+ "You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
236
+ " form settings</a>."
237
+ msgstr "Pots editar el teu formulari de subscripció a la <a href=\"%s\">configuració dels formularis de MailChimp per a Wordpress</a>."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
 
239
+ #: includes/forms/views/add-form.php:10 includes/forms/views/add-form.php:60
240
+ msgid "Add new form"
241
+ msgstr ""
242
 
243
+ #: includes/forms/views/add-form.php:27
244
+ msgid "What is the name of this form?"
245
+ msgstr ""
246
 
247
+ #: includes/forms/views/add-form.php:30
248
+ msgid "Enter your form title.."
249
+ msgstr ""
250
 
251
+ #: includes/forms/views/add-form.php:37
252
+ msgid "To which MailChimp lists should this form subscribe?"
253
+ msgstr ""
254
 
255
+ #: includes/forms/views/add-form.php:54
256
+ msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
257
+ msgstr ""
258
 
259
+ #: includes/forms/views/edit-form.php:4
260
+ msgid "Fields"
261
+ msgstr ""
262
 
263
+ #: includes/forms/views/edit-form.php:5
264
+ msgid "Messages"
265
+ msgstr "Missatges"
 
 
266
 
267
+ #: includes/forms/views/edit-form.php:7
268
+ msgid "Appearance"
269
+ msgstr ""
 
 
270
 
271
+ #: includes/forms/views/edit-form.php:15
272
+ #: includes/integrations/views/integration-settings.php:8
273
+ #: includes/integrations/views/integrations.php:7
274
+ #: includes/views/general-settings.php:7
275
+ msgid "You are here: "
276
+ msgstr ""
277
 
278
+ #: includes/forms/views/edit-form.php:27
279
+ msgid "Edit Form"
280
+ msgstr "Editar el formulari"
 
 
 
281
 
282
+ #: includes/forms/views/edit-form.php:45
283
+ msgid "Enter form title here"
284
+ msgstr ""
285
 
286
+ #: includes/forms/views/edit-form.php:46
287
+ msgid "Enter the title of your sign-up form"
288
+ msgstr ""
 
 
289
 
290
+ #: includes/forms/views/edit-form.php:54
291
+ msgid "Get shortcode"
292
+ msgstr ""
293
 
294
+ #: includes/forms/views/edit-form.php:59
295
+ msgid "Preview this form"
296
+ msgstr ""
297
 
298
+ #: includes/forms/views/parts/add-fields-help.php:4
299
+ #: includes/forms/views/tabs/form-fields.php:10
300
+ msgid "Add more fields"
301
+ msgstr ""
302
 
303
+ #: includes/forms/views/parts/add-fields-help.php:9
304
  msgid ""
305
+ "To add more fields to your form, you will need to create those fields in "
306
+ "MailChimp first."
307
+ msgstr ""
 
 
 
 
308
 
309
+ #: includes/forms/views/parts/add-fields-help.php:12
310
+ msgid "Here's how:"
311
+ msgstr ""
312
 
313
+ #: includes/forms/views/parts/add-fields-help.php:17
314
+ msgid "Log in to your MailChimp account."
315
+ msgstr ""
316
 
317
+ #: includes/forms/views/parts/add-fields-help.php:22
318
+ msgid "Add list fields to any of your selected lists."
319
+ msgstr ""
320
 
321
+ #: includes/forms/views/parts/add-fields-help.php:23
322
+ msgid "Clicking the following links will take you to the right screen."
323
+ msgstr ""
 
324
 
325
+ #: includes/forms/views/parts/add-fields-help.php:29
326
+ msgid "Edit list fields for"
327
+ msgstr ""
328
 
329
+ #: includes/forms/views/parts/add-fields-help.php:38
330
  msgid ""
331
+ "Click the following button to have MailChimp for WordPress pick up on your "
332
+ "changes."
333
+ msgstr ""
 
 
 
 
 
334
 
335
+ #: includes/forms/views/parts/add-fields-help.php:43
336
+ #: includes/views/parts/lists-overview.php:8
337
+ msgid "Renew MailChimp lists"
338
+ msgstr "Actualitzar les llistes de MailChimp"
339
 
340
+ #: includes/forms/views/parts/dynamic-content-tags.php:6
341
+ msgid "Add dynamic form variable"
342
+ msgstr ""
343
 
344
+ #: includes/forms/views/parts/dynamic-content-tags.php:8
345
  msgid ""
346
+ "The following list of variables can be used to <a href=\"%s\">add some "
347
+ "dynamic content to your form or success and error messages</a>."
348
+ msgstr "La següent llista de variables es pot emprar per a <a href=\"%s\">afegir continguts dinàmics al teu formulari o als seus missatges d'éxit i error</a>."
349
 
350
+ #: includes/forms/views/parts/dynamic-content-tags.php:8
351
+ msgid "This allows you to personalise your form or response messages."
352
+ msgstr "Això et permet personalitzar el formulari o els seus missatges de resposta."
353
 
354
+ #: includes/forms/views/tabs/form-appearance.php:5
355
+ msgid "Inherit from %s theme"
356
+ msgstr ""
357
 
358
+ #: includes/forms/views/tabs/form-appearance.php:6
359
+ msgid "Basic"
360
+ msgstr ""
361
 
362
+ #: includes/forms/views/tabs/form-appearance.php:7
363
+ msgid "Form Themes"
364
+ msgstr ""
 
 
365
 
366
+ #: includes/forms/views/tabs/form-appearance.php:8
367
+ msgid "Light Theme"
368
+ msgstr "Tema clar"
369
 
370
+ #: includes/forms/views/tabs/form-appearance.php:9
371
+ msgid "Dark Theme"
372
+ msgstr "Tema fosc"
 
 
373
 
374
+ #: includes/forms/views/tabs/form-appearance.php:10
375
+ msgid "Red Theme"
376
+ msgstr "Tema vermell"
377
 
378
+ #: includes/forms/views/tabs/form-appearance.php:11
379
+ msgid "Green Theme"
380
+ msgstr "Tema verd"
381
 
382
+ #: includes/forms/views/tabs/form-appearance.php:12
383
+ msgid "Blue Theme"
384
+ msgstr "Tema blau"
385
 
386
+ #: includes/forms/views/tabs/form-appearance.php:25
387
+ msgid "Form Appearance"
388
+ msgstr ""
 
 
389
 
390
+ #: includes/forms/views/tabs/form-appearance.php:29
391
+ msgid "Form Style"
392
+ msgstr ""
 
 
393
 
394
+ #: includes/forms/views/tabs/form-appearance.php:48
395
  msgid ""
396
+ "If you want to load some default CSS styles, select \"basic formatting "
397
+ "styles\" or choose one of the color themes"
398
+ msgstr "Si vols carregar els fulls d'estils CSS per defecte, selecciona \"Estils de formulari bàsics\" o escull un dels temes de colors."
399
 
400
+ #: includes/forms/views/tabs/form-fields.php:6
401
+ msgid "Form variables"
402
+ msgstr ""
403
 
404
+ #: includes/forms/views/tabs/form-fields.php:13
405
+ msgid "Form Fields"
406
+ msgstr ""
407
 
408
+ #: includes/forms/views/tabs/form-fields.php:19
409
+ msgid "Enter the HTML code for your form fields.."
410
+ msgstr ""
 
 
 
 
411
 
412
+ #: includes/forms/views/tabs/form-fields.php:27
413
+ msgid "Your form is missing the following (required) form fields:"
414
+ msgstr "Cal que afegeixis els següents camps (requerits) al teu formulari:"
415
 
416
+ #: includes/forms/views/tabs/form-fields.php:34
417
+ msgid ""
418
+ "Use the shortcode %s to display this form inside a post, page or text "
419
+ "widget."
420
+ msgstr "Insereix el shortcode % s per mostrar aquest formulari en una entrada, article o giny de text."
421
 
422
+ #: includes/forms/views/tabs/form-messages.php:3
423
+ msgid "Form Messages"
424
+ msgstr ""
425
 
426
+ #: includes/forms/views/tabs/form-messages.php:10
427
+ msgid "Successfully subscribed"
428
+ msgstr "Subscripció satisfactòria"
 
 
429
 
430
+ #: includes/forms/views/tabs/form-messages.php:13
431
  msgid ""
432
+ "The text that shows when an email address is successfully subscribed to the "
433
+ "selected list(s)."
434
+ msgstr "Text a mostrar quan una adreça de correu electrònic s'ha subscrit correctament a la(es) llista(es) seleccionada(es)."
435
 
436
+ #: includes/forms/views/tabs/form-messages.php:17
437
+ msgid "Invalid email address"
438
+ msgstr "Adreça de correu electrònic no vàlida"
 
 
439
 
440
+ #: includes/forms/views/tabs/form-messages.php:20
441
+ msgid "The text that shows when an invalid email address is given."
442
+ msgstr "Text a mostrar quan es proporciona una adreça de correu electrònic no vàlida."
443
 
444
+ #: includes/forms/views/tabs/form-messages.php:24
445
+ msgid "Required field missing"
446
+ msgstr "Introdueix el camp requerit"
447
 
448
+ #: includes/forms/views/tabs/form-messages.php:27
449
+ msgid ""
450
+ "The text that shows when a required field for the selected list(s) is "
451
+ "missing."
452
+ msgstr "Text a mostrar quan no s'ha introduït un camp obligatori per a la(es) llista(es) seleccionada(es)."
453
 
454
+ #: includes/forms/views/tabs/form-messages.php:31
455
+ msgid "Already subscribed"
456
+ msgstr "Ja estàs subscrit"
457
 
458
+ #: includes/forms/views/tabs/form-messages.php:34
459
+ msgid ""
460
+ "The text that shows when the given email is already subscribed to the "
461
+ "selected list(s)."
462
+ msgstr "Text a mostrar quan l'adreça de correu electrònic proporcionada ja està subscrita a la(es) llista(es) seleccionada(es)."
463
 
464
+ #: includes/forms/views/tabs/form-messages.php:38
465
+ msgid "General error"
466
+ msgstr "Error general"
467
 
468
+ #: includes/forms/views/tabs/form-messages.php:41
469
+ msgid "The text that shows when a general error occured."
470
+ msgstr "Text a mostrar quan es produeix un error general."
471
 
472
+ #: includes/forms/views/tabs/form-messages.php:45
473
+ msgid "Unsubscribed"
474
+ msgstr "Dessubscrit"
475
 
476
+ #: includes/forms/views/tabs/form-messages.php:48
477
  msgid ""
478
+ "When using the unsubscribe method, this is the text that shows when the "
479
+ "given email address is successfully unsubscribed from the selected list(s)."
480
+ msgstr "Quan s'empra el mètode dessubscriure's, aquest és el text a mostrar quan l'adreça de correu electrònic facilitada s'ha dessubscrit correctament de la(es) llista(es) seleccionada(es)."
481
 
482
+ #: includes/forms/views/tabs/form-messages.php:52
483
+ msgid "Not subscribed"
484
+ msgstr "No subscrit"
485
 
486
+ #: includes/forms/views/tabs/form-messages.php:55
487
+ msgid ""
488
+ "When using the unsubscribe method, this is the text that shows when the "
489
+ "given email address is not on the selected list(s)."
490
+ msgstr "Quan s'empra el mètode dessubscriure's, aquest és el text a mostrar quan l'adreça de correu electrònic facilitada no és a la(es) llista(es) seleccionada(es)."
491
 
492
+ #: includes/forms/views/tabs/form-messages.php:64
493
+ msgid "HTML tags like %s are allowed in the message fields."
494
+ msgstr "Les etiquetes HTML com %s estan permeses en els camps del missatge."
495
 
496
+ #: includes/forms/views/tabs/form-settings.php:1
497
+ msgid "Form Settings"
498
+ msgstr "Ajustos del formulari"
499
 
500
+ #: includes/forms/views/tabs/form-settings.php:5
501
+ msgid "MailChimp specific settings"
502
+ msgstr ""
503
 
504
+ #: includes/forms/views/tabs/form-settings.php:12
505
+ msgid "Lists this form subscribes to"
506
+ msgstr "Les llistes d'aquest formulari subscriuen a"
507
 
508
+ #: includes/forms/views/tabs/form-settings.php:15
509
+ #: includes/integrations/views/integration-settings.php:93
510
+ msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
511
+ msgstr "No s'han trobat llistes, ¿<a href=\"%s\">estàs connectat a MailChimp</a>?"
512
 
513
+ #: includes/forms/views/tabs/form-settings.php:29
514
+ msgid ""
515
+ "Select the list(s) to which people who submit this form should be "
516
+ "subscribed."
517
+ msgstr "Selecciona la(es) llista(es) a què es subscriuran els que usin aquest formulari."
518
 
519
+ #: includes/forms/views/tabs/form-settings.php:35
520
+ msgid "Use double opt-in?"
521
+ msgstr ""
522
 
523
+ #: includes/forms/views/tabs/form-settings.php:39
524
+ #: includes/forms/views/tabs/form-settings.php:54
525
+ #: includes/forms/views/tabs/form-settings.php:69
526
+ #: includes/forms/views/tabs/form-settings.php:85
527
+ #: includes/forms/views/tabs/form-settings.php:115
528
+ #: includes/integrations/views/integration-settings.php:53
529
+ #: includes/integrations/views/integration-settings.php:66
530
+ #: includes/integrations/views/integration-settings.php:117
531
+ #: includes/integrations/views/integration-settings.php:129
532
+ #: includes/integrations/views/integration-settings.php:142
533
+ #: includes/integrations/views/integration-settings.php:163
534
+ #: includes/integrations/views/integration-settings.php:180
535
+ #: includes/integrations/views/integration-settings.php:199
536
+ #: integrations/contact-form-7/class-contact-form-7.php:69
537
+ msgid "Yes"
538
+ msgstr "Sí"
539
 
540
+ #: includes/forms/views/tabs/form-settings.php:43
541
+ #: includes/forms/views/tabs/form-settings.php:58
542
+ #: includes/forms/views/tabs/form-settings.php:73
543
+ #: includes/forms/views/tabs/form-settings.php:89
544
+ #: includes/forms/views/tabs/form-settings.php:119
545
+ #: includes/integrations/views/integration-settings.php:54
546
+ #: includes/integrations/views/integration-settings.php:67
547
+ #: includes/integrations/views/integration-settings.php:118
548
+ #: includes/integrations/views/integration-settings.php:130
549
+ #: includes/integrations/views/integration-settings.php:146
550
+ #: includes/integrations/views/integration-settings.php:167
551
+ #: includes/integrations/views/integration-settings.php:184
552
+ #: includes/integrations/views/integration-settings.php:203
553
+ #: integrations/contact-form-7/class-contact-form-7.php:69
554
+ msgid "No"
555
+ msgstr "No"
556
 
557
+ #: includes/forms/views/tabs/form-settings.php:45
558
+ #: includes/integrations/views/integration-settings.php:149
559
+ msgid ""
560
+ "Select \"yes\" if you want people to confirm their email address before "
561
+ "being subscribed (recommended)"
562
+ msgstr "Selecciona \"sí\" si vols que els subscriptors confirmin la seva adreça de correu electrònic abans de subscriure's (recomanat)"
563
 
564
+ #: includes/forms/views/tabs/form-settings.php:50
565
+ msgid "Send final welcome email?"
566
+ msgstr ""
 
567
 
568
+ #: includes/forms/views/tabs/form-settings.php:60
569
+ #: includes/integrations/views/integration-settings.php:169
570
+ msgid ""
571
+ "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
572
+ "succeeds (only when double opt-in is disabled)."
573
+ msgstr "Selecciona \"sí\" si vols enviar a les teves llistes un correu electrònic de benvinguda quan es realitzi una subscripció correctament (només quan la confirmació de registre està desactivada)."
574
 
575
+ #: includes/forms/views/tabs/form-settings.php:65
576
+ #: includes/integrations/views/integration-settings.php:176
577
+ msgid "Update existing subscribers?"
578
+ msgstr "Vols actualitzar els subscriptors existents?"
579
 
580
+ #: includes/forms/views/tabs/form-settings.php:75
581
+ #: includes/integrations/views/integration-settings.php:186
582
+ msgid ""
583
+ "Select \"yes\" if you want to update existing subscribers with the data that"
584
+ " is sent."
585
+ msgstr "Selecciona \"sí\" si vols actualitzar els subscriptors existents amb les dades enviades."
586
 
587
+ #: includes/forms/views/tabs/form-settings.php:81
588
+ #: includes/integrations/views/integration-settings.php:195
589
+ msgid "Replace interest groups?"
590
+ msgstr "Vols reemplaçar els grups d'interessos?"
591
 
592
+ #: includes/forms/views/tabs/form-settings.php:92
593
+ #: includes/integrations/views/integration-settings.php:206
594
+ msgid ""
595
+ "Select \"no\" if you want to add the selected groupings to any previously "
596
+ "selected groupings when updating a subscriber."
597
+ msgstr ""
598
 
599
+ #: includes/forms/views/tabs/form-settings.php:93
600
+ #: includes/integrations/views/integration-settings.php:207
601
+ msgid "What does this do?"
602
+ msgstr ""
603
 
604
+ #: includes/forms/views/tabs/form-settings.php:104
605
+ msgid "Form behaviour"
606
+ msgstr ""
 
607
 
608
+ #: includes/forms/views/tabs/form-settings.php:111
609
+ msgid "Hide form after a successful sign-up?"
610
+ msgstr "Vols que s'oculti el formulari després d'un registre satisfactori?"
611
 
612
+ #: includes/forms/views/tabs/form-settings.php:122
613
+ msgid "Select \"yes\" to hide the form fields after a successful sign-up."
614
+ msgstr "Selecciona \"sí\" per ocultar els camps del formulari després d'un registre satisfactori."
615
 
616
+ #: includes/forms/views/tabs/form-settings.php:127
617
+ msgid "Redirect to URL after successful sign-ups"
618
+ msgstr "Redireccionar a una URL després d'una subscripció satisfactòria."
619
 
620
+ #: includes/forms/views/tabs/form-settings.php:129
621
+ msgid "Example: %s"
622
+ msgstr "Exemple: %s"
623
 
624
+ #: includes/forms/views/tabs/form-settings.php:130
625
+ msgid ""
626
+ "Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
627
+ " (absolute) URLs, including <code>http://</code>."
628
+ msgstr "Deixa en blanc o introdueix <code>0</ code> per no redireccionar. En cas contrari, utilitza URL completes (absolutes), incloent <code>http://</code>."
629
 
630
+ #: includes/integrations/class-admin.php:79
631
+ #: includes/integrations/class-admin.php:80
632
+ #: includes/integrations/views/integration-settings.php:10
633
+ #: includes/integrations/views/integrations.php:9
634
+ #: includes/integrations/views/integrations.php:17
635
+ msgid "Integrations"
636
+ msgstr ""
637
 
638
+ #: includes/integrations/views/integration-settings.php:20
639
+ msgid "%s integration"
640
+ msgstr ""
641
 
642
+ #: includes/integrations/views/integration-settings.php:51
643
+ msgid "Enabled?"
644
+ msgstr ""
645
 
646
+ #: includes/integrations/views/integration-settings.php:55
647
+ msgid ""
648
+ "Enable the %s integration? This will add a sign-up checkbox to the form."
649
+ msgstr ""
650
 
651
+ #: includes/integrations/views/integration-settings.php:64
652
+ msgid "Implicit?"
653
+ msgstr ""
654
 
655
+ #: includes/integrations/views/integration-settings.php:68
656
+ msgid ""
657
+ "Select \"no\" if you want to ask your visitors before they are subscribed "
658
+ "(recommended)."
659
+ msgstr ""
660
 
661
+ #: includes/integrations/views/integration-settings.php:78
662
+ msgid "MailChimp Lists"
663
+ msgstr "Llistes de MailChimp"
664
 
665
+ #: includes/integrations/views/integration-settings.php:89
666
+ msgid ""
667
+ "Select the list(s) to which people who check the checkbox should be "
668
+ "subscribed."
669
+ msgstr "Selecciona la(es) llista(es) a què es subscriuran els que marquin les caselles de verificació."
670
 
671
+ #: includes/integrations/views/integration-settings.php:102
672
+ msgid "Checkbox label text"
673
+ msgstr "Text de la casella de verificació."
674
 
675
+ #: includes/integrations/views/integration-settings.php:105
676
+ msgid "HTML tags like %s are allowed in the label text."
677
+ msgstr "Les etiquetes HTML com % s estan permeses en el text de l'etiqueta."
 
678
 
679
+ #: includes/integrations/views/integration-settings.php:115
680
+ msgid "Pre-check the checkbox?"
681
+ msgstr "Deixem pre-marcada la casella de verificació?"
 
682
 
683
+ #: includes/integrations/views/integration-settings.php:119
684
+ msgid "Select \"yes\" if the checkbox should be pre-checked."
685
+ msgstr ""
 
686
 
687
+ #: includes/integrations/views/integration-settings.php:127
688
+ msgid "Load some default CSS?"
689
+ msgstr "Carreguem alguns estils CSS per defecte?"
690
 
691
+ #: includes/integrations/views/integration-settings.php:131
692
+ msgid "Select \"yes\" if the checkbox appears in a weird place."
693
+ msgstr "Seleccioneu \"sí\" si la casella de verificació apareix en un lloc inadequat."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
694
 
695
+ #: includes/integrations/views/integration-settings.php:138
696
+ msgid "Double opt-in?"
697
+ msgstr "Vols que confirmin el registre?"
698
 
699
+ #: includes/integrations/views/integration-settings.php:159
700
+ msgid "Send Welcome Email?"
701
+ msgstr "Vols que enviem un correu electrònic de benvinguda?"
702
 
703
+ #: includes/integrations/views/integration-settings.php:244
704
+ msgid ""
705
+ "The selected MailChimp lists require non-default fields, which may prevent "
706
+ "this integration from working."
707
+ msgstr ""
708
 
709
+ #: includes/integrations/views/integration-settings.php:245
710
+ msgid ""
711
+ "Please ensure you <a href=\"%s\">configure the plugin to send all required "
712
+ "fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
713
+ "sure only the email & name fields are marked as required fields for the "
714
+ "selected list(s)."
715
+ msgstr ""
716
 
717
+ #: includes/integrations/views/integrations.php:30
718
+ msgid "Enabled"
719
+ msgstr ""
720
 
721
+ #: includes/integrations/views/integrations.php:31
722
+ msgid "Name"
723
+ msgstr ""
724
 
725
+ #: includes/integrations/views/integrations.php:32
726
+ msgid "Description"
727
+ msgstr ""
 
 
728
 
729
+ #: includes/integrations/views/integrations.php:50
730
  msgid ""
731
+ "This integration is enabled by default as it requires manual actions to "
732
+ "work."
733
+ msgstr ""
734
 
735
+ #: includes/integrations/views/integrations.php:57
736
+ msgid "Configure this integration"
737
+ msgstr ""
738
 
739
+ #: includes/views/general-settings.php:18
740
+ msgid "General Settings"
741
+ msgstr ""
 
 
742
 
743
+ #: includes/views/general-settings.php:35
744
+ msgid "Status"
745
+ msgstr ""
746
 
747
+ #: includes/views/general-settings.php:39
748
+ msgid "CONNECTED"
749
+ msgstr "CONNECTAT"
750
 
751
+ #: includes/views/general-settings.php:41
752
+ msgid "NOT CONNECTED"
753
+ msgstr "NO CONNECTAT"
754
 
755
+ #: includes/views/general-settings.php:48
756
+ msgid "API Key"
757
+ msgstr "Clau API"
758
 
759
+ #: includes/views/general-settings.php:50
760
+ msgid "Your MailChimp API key"
761
+ msgstr "La teva clau API de MailChimp"
 
 
762
 
763
+ #: includes/views/general-settings.php:52
764
+ msgid "The API key for connecting with your MailChimp account."
765
+ msgstr ""
 
766
 
767
+ #: includes/views/general-settings.php:53
768
+ msgid "Get your API key here."
769
+ msgstr "Obté la teva clau API aquí."
770
 
771
+ #: includes/views/general-settings.php:65
772
+ msgid "Usage Tracking"
773
+ msgstr ""
 
 
 
774
 
775
+ #: includes/views/general-settings.php:71
776
  msgid ""
777
+ "Allow us to anonymously track how this plugin is used to help us make it "
778
+ "better fit your needs."
779
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
 
781
+ #: includes/views/general-settings.php:73
782
+ msgid "This is what we track."
783
+ msgstr ""
784
 
785
+ #: includes/views/parts/admin-footer.php:11
786
  msgid ""
787
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
788
+ "translated in your language or do you spot errors with the current "
789
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
790
+ "translation project and click \"help translate\"</a>."
791
+ msgstr "Mailchimp per a Wordpress necessita que el tradueixin. No està traduït al teu idioma o hi ha errors en la traducció actual? Ajudar-nos és fàcil. Visita <a href=\"%s\">el projecte de traducció i selecciona \"help translate\"</a>."
 
 
792
 
793
+ #: includes/views/parts/admin-footer.php:31
794
  msgid ""
795
+ "This plugin is not developed by or affiliated with MailChimp in any way."
796
+ msgstr "Aquest plugin no està desenvolupat per ni està afiliat a MailChimp en cap sentit."
 
 
 
 
797
 
798
+ #: includes/views/parts/lists-overview.php:1
799
+ msgid "Your MailChimp Account"
800
+ msgstr ""
801
 
802
+ #: includes/views/parts/lists-overview.php:2
803
  msgid ""
804
+ "The table below shows your MailChimp lists and their details. If you just "
805
+ "applied changes to your MailChimp lists, please use the following button to "
806
+ "renew the cached lists configuration."
807
+ msgstr ""
 
 
 
808
 
809
+ #: includes/views/parts/lists-overview.php:14
810
+ msgid "No lists were found in your MailChimp account"
811
+ msgstr "No s'ha trobat cap llista al teu compte de MailChimp"
812
 
813
+ #: includes/views/parts/lists-overview.php:16
814
+ msgid "A total of %d lists were found in your MailChimp account."
815
+ msgstr ""
816
 
817
+ #: includes/views/parts/lists-overview.php:21
818
+ msgid "List Name"
819
+ msgstr ""
820
 
821
+ #: includes/views/parts/lists-overview.php:22
822
+ msgid "ID"
823
+ msgstr "Identificador"
824
 
825
+ #: includes/views/parts/lists-overview.php:23
826
+ msgid "Subscribers"
827
+ msgstr ""
828
 
829
+ #: includes/views/parts/lists-overview.php:45
830
+ msgid "Edit this list in MailChimp"
831
+ msgstr ""
 
 
 
832
 
833
+ #: includes/views/parts/lists-overview.php:59
834
+ msgid "%s (%s) with field type %s."
835
+ msgstr ""
836
 
837
+ #: includes/views/parts/lists-overview.php:83
838
+ msgid "%s (ID: %s) with type %s."
839
+ msgstr ""
840
 
841
+ #: integrations/contact-form-7/admin-before.php:2
842
+ msgid ""
843
+ "To integrate with Contact Form 7, configure the settings below and then add "
844
+ "%s to your CF7 form mark-up."
845
+ msgstr ""
846
 
847
+ #: integrations/custom/admin-before.php:2
 
848
  msgid ""
849
+ "To get a custom integration to work, include the following HTML in the form "
850
+ "you are trying to integrate with."
851
+ msgstr ""
852
 
853
+ #: integrations/woocommerce/class-woocommerce.php:102
854
+ msgid "Order #%d"
855
+ msgstr ""
856
 
857
+ #. Plugin Name of the plugin/theme
858
+ msgid "MailChimp for WordPress"
859
+ msgstr "MailChimp per a WordPress"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
860
 
861
  #. Plugin URI of the plugin/theme
862
+ msgid ""
863
+ "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
864
+ "wp&utm_campaign=plugins-page"
865
+ msgstr ""
866
 
867
  #. Description of the plugin/theme
868
+ msgid ""
869
+ "MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
870
+ "methods to your site."
871
+ msgstr ""
872
 
873
  #. Author of the plugin/theme
874
+ msgid "ibericode"
875
+ msgstr ""
876
 
877
  #. Author URI of the plugin/theme
878
+ msgid "https://ibericode.com/"
879
+ msgstr ""
languages/mailchimp-for-wp-cs_CZ.mo CHANGED
Binary file
languages/mailchimp-for-wp-cs_CZ.po CHANGED
@@ -1,2101 +1,881 @@
1
- # Copyright (C) 2015 Danny van Kooten
2
- # This file is distributed under the GPL v3.
3
  # Translators:
4
  # Jan Toman <toman.jan@gmail.com>, 2014-2015
5
  # Libor Matějka <libor.matejka@hotmail.cz>, 2015
6
  # Ondra <subrt.ondra@gmail.com>, 2015
 
7
  msgid ""
8
  msgstr ""
9
  "Project-Id-Version: MailChimp for WordPress\n"
10
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/mailchimp-for-wp\n"
11
- "POT-Creation-Date: 2015-05-26 14:41:46+00:00\n"
12
- "PO-Revision-Date: 2015-05-26 14:42+0000\n"
13
- "Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
14
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/cs_CZ/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Language: cs_CZ\n"
19
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
20
- "X-Generator: grunt-wp-i18n 0.4.4\n"
21
- "X-Poedit-Basepath: .\n"
22
- "X-Poedit-Bookmarks: \n"
23
- "X-Poedit-Country: UNITED STATES\n"
24
- "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2; _nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__; esc_html__;esc_attr_e; esc_html_e;esc_attr_x:1,2c; esc_html_x:1,2c;\n"
25
- "X-Poedit-Language: English\n"
26
- "X-Poedit-SearchPath-0: .\n"
27
- "X-Poedit-SourceCharset: utf-8\n"
28
- "X-Textdomain-Support: yes\n"
29
-
30
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:141
31
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:157
32
- msgid "Settings"
33
- msgstr "Nastavení"
34
-
35
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:160
36
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
37
- msgid "Upgrade to MailChimp for WordPress Pro"
38
- msgstr "Upgrade na Pro verzi pluginu."
39
-
40
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:179
41
- msgid "MailChimp API Settings"
42
- msgstr "Nastavení API MailChimpu"
43
-
44
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:180
45
- msgid "MailChimp"
46
- msgstr "MailChimp"
47
-
48
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:185
49
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
50
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
51
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
52
- msgid "Checkbox Settings"
53
- msgstr "Nastavení zaškrtávacích políček"
54
-
55
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:186
56
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
57
- msgid "Checkboxes"
58
- msgstr "Zaškrtávací políčka"
59
-
60
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:191
61
- #: mailchimp-for-wordpress/includes/views/form-settings.php:9
62
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
63
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
64
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
65
- msgid "Form Settings"
66
- msgstr "Nastavení formuláře"
67
-
68
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:192
69
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:513
70
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
71
- msgid "Forms"
72
- msgstr "Formuláře"
73
-
74
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:196
75
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:197
76
- msgid "Upgrade to Pro"
77
- msgstr "Aktivovat verzi PRO"
78
-
79
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:283
80
- msgid "This option is only available in MailChimp for WordPress Pro."
81
- msgstr "Tato možnost je dostupná pouze v Pro verzi pluginu."
82
-
83
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:285
84
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
85
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
86
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
87
- msgid "(PRO ONLY)"
88
- msgstr "(pouze v PRO verzi)"
89
-
90
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:286
91
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
92
- msgid "Button text"
93
- msgstr "Text tlačítka"
94
-
95
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:287
96
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
97
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
98
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
99
- msgid "Initial value"
100
- msgstr "Předvyplněná hodnota"
101
-
102
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:288
103
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
104
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
105
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
106
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
107
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
108
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
109
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
110
- msgid "(optional)"
111
- msgstr "(nepovinné)"
112
-
113
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:289
114
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
115
- msgid "Label for"
116
- msgstr "Popisek pro"
117
-
118
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:290
119
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
120
- msgid "(or leave empty)"
121
- msgstr "(nebo nechte prázdné)"
122
-
123
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:291
124
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
125
- msgid "Subscribe"
126
- msgstr "Přihlásit se k odběru"
127
-
128
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:292
129
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
130
- msgid "Unsubscribe"
131
- msgstr ""
132
-
133
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:316
134
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
135
- msgid "Comment form"
136
- msgstr "Formulář pro přidávání komentářů"
137
-
138
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:317
139
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
140
- msgid "Registration form"
141
- msgstr "Registrační formulář"
142
-
143
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:321
144
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
145
- msgid "MultiSite forms"
146
- msgstr "Formuláře MultiSite"
147
-
148
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:325
149
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
150
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
151
- msgid "BuddyPress registration"
152
- msgstr "Registrace do BuddyPress"
153
-
154
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:333
155
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:337
156
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
157
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
158
- msgid "%s checkout"
159
- msgstr "%s pokladna"
160
-
161
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:365
162
- msgid ""
163
- "The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
164
- "first 100 lists are shown."
165
- msgstr "Plugin může z Mailchimpu \"natáhnout\" jen 100 listů. Bude zobrazeno prvních 100 listů."
166
-
167
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:370
168
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:719
169
- msgid "Renewed MailChimp cache."
170
- msgstr "Seznamy adres z MailChimpu byly úspěšně aktualizovány."
171
 
172
- #: mailchimp-for-wordpress/includes/admin/class-admin.php:372
173
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
174
- msgid "Failed to renew MailChimp cache - please try again later."
175
- msgstr "Při aktualizaci seznamu adres z MailChimpu se vyskytla chyba - zkuste to prosím později."
176
-
177
- #: mailchimp-for-wordpress/includes/class-widget.php:21
178
- msgid "MailChimp Sign-Up Form"
179
- msgstr "Registrační formulář MailChimpu"
180
-
181
- #: mailchimp-for-wordpress/includes/class-widget.php:23
182
- msgid "Displays your MailChimp for WordPress sign-up form"
183
- msgstr "Zobrazuje váš formulář pro odběratele"
184
-
185
- #: mailchimp-for-wordpress/includes/class-widget.php:67
186
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:71
187
- msgid "Newsletter"
188
- msgstr "Newsletter"
189
-
190
- #: mailchimp-for-wordpress/includes/class-widget.php:70
191
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:82
192
- msgid "Title:"
193
- msgstr "Titulek:"
194
-
195
- #: mailchimp-for-wordpress/includes/class-widget.php:74
196
- msgid ""
197
- "You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
198
- " form settings</a>."
199
- msgstr "Editovat nastavení přihlašovacích formulářů pluginu \"Mailchimp for Wordpress\" můžete <a href=\"%s\">zde</a>."
200
-
201
- #: mailchimp-for-wordpress/includes/functions/general.php:15
202
- #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
203
- #: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
204
  msgid "Email address"
205
  msgstr "E-mailová adresa:"
206
 
207
- #: mailchimp-for-wordpress/includes/functions/general.php:16
208
- #: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
209
- #: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
210
  msgid "Your email address"
211
  msgstr "Vaše e-mailová adresa:"
212
 
213
- #: mailchimp-for-wordpress/includes/functions/general.php:17
214
- #: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
215
- #: mailchimp-for-wordpress-pro/includes/config/inline-form.php:3
216
  msgid "Sign up"
217
  msgstr "Registrovat se"
218
 
219
- #: mailchimp-for-wordpress/includes/functions/general.php:24
220
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:9
221
- msgid "Sign me up for the newsletter!"
222
- msgstr "Přihlásit se k odběru novinek!"
223
-
224
- #: mailchimp-for-wordpress/includes/functions/general.php:44
225
  msgid ""
226
- "Thank you, your sign-up request was successful! Please check your e-mail "
227
- "inbox."
228
- msgstr "Děkujeme, registrace byla úspěšná. Zkontrolujte si prosím svou e-mailovou schránku."
229
 
230
- #: mailchimp-for-wordpress/includes/functions/general.php:45
231
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
232
  msgid "Oops. Something went wrong. Please try again later."
233
  msgstr "Něco se pokazilo. Vyzkoušejte to prosím znovu."
234
 
235
- #: mailchimp-for-wordpress/includes/functions/general.php:46
236
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
237
  msgid "Please provide a valid email address."
238
  msgstr "Vyplňte prosím validní tvar e-mailu."
239
 
240
- #: mailchimp-for-wordpress/includes/functions/general.php:47
241
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
242
  msgid "Given email address is already subscribed, thank you!"
243
  msgstr "Zadaná adresa je již na našem seznamu odběratelů. Děkujeme!"
244
 
245
- #: mailchimp-for-wordpress/includes/functions/general.php:48
246
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
247
- msgid "Please complete the CAPTCHA."
248
- msgstr "Vyplňte prosím kód CAPTCHA."
249
-
250
- #: mailchimp-for-wordpress/includes/functions/general.php:49
251
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:39
252
  msgid "Please fill in the required fields."
253
  msgstr "Vyplňte prosím všechna povinná políčka."
254
 
255
- #: mailchimp-for-wordpress/includes/functions/general.php:50
256
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
257
  msgid "You were successfully unsubscribed."
258
- msgstr ""
259
 
260
- #: mailchimp-for-wordpress/includes/functions/general.php:51
261
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
262
  msgid "Given email address is not subscribed."
263
- msgstr ""
264
-
265
- #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
266
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
267
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
268
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
269
- #: mailchimp-for-wordpress/includes/views/form-settings.php:106
270
- #: mailchimp-for-wordpress/includes/views/form-settings.php:121
271
- #: mailchimp-for-wordpress/includes/views/form-settings.php:134
272
- #: mailchimp-for-wordpress/includes/views/form-settings.php:145
273
- #: mailchimp-for-wordpress/includes/views/form-settings.php:164
274
- #: mailchimp-for-wordpress/includes/views/form-settings.php:178
275
- #: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
276
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
277
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
278
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
279
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:75
280
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:98
281
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:116
282
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
283
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
284
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
285
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
286
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
287
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
288
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
289
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
290
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
291
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:97
292
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
293
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
294
- msgid "Yes"
295
- msgstr "Ano"
296
-
297
- #: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
298
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
299
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
300
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
301
- #: mailchimp-for-wordpress/includes/views/form-settings.php:27
302
- #: mailchimp-for-wordpress/includes/views/form-settings.php:110
303
- #: mailchimp-for-wordpress/includes/views/form-settings.php:125
304
- #: mailchimp-for-wordpress/includes/views/form-settings.php:136
305
- #: mailchimp-for-wordpress/includes/views/form-settings.php:149
306
- #: mailchimp-for-wordpress/includes/views/form-settings.php:168
307
- #: mailchimp-for-wordpress/includes/views/form-settings.php:182
308
- #: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
309
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
310
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
311
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
312
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:79
313
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:102
314
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:120
315
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
316
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
317
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
318
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:75
319
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
320
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
321
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
322
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
323
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
324
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:86
325
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:101
326
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
327
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
328
- msgid "No"
329
- msgstr "Ne"
330
-
331
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:235
332
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
333
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:300
334
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
335
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
336
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
337
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
338
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
339
- msgid "MailChimp for WordPress - Error"
340
- msgstr "Chyba pluginu MailChimp pro WordPress"
341
-
342
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
343
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
344
- msgid ""
345
- "Please select a list to subscribe to in the <a href=\"%s\">checkbox "
346
- "settings</a>."
347
- msgstr "Vyberte prosím seznam odběratelů v sekci <a href=\"%s\">Nastavení zaškrtávacích políček</a>"
348
-
349
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
350
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
351
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
352
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
353
- msgid "This message is only visible to administrators for debugging purposes."
354
- msgstr "Tato ladící hláška je zobrazena pouze administrátorům."
355
-
356
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
357
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
358
- msgid ""
359
- "The MailChimp server returned the following error message as a response to "
360
- "our sign-up request:"
361
- msgstr "Při odeslání požadavku na přihlášení vrátil MailChimp tuto chybovou hlášku:"
362
-
363
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
364
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
365
- msgid "This is the data that was sent to MailChimp:"
366
- msgstr "Toto jsou data, která byla odeslána do MailChimpu:"
367
-
368
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
369
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
370
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
371
- msgid "Email address:"
372
- msgstr "E-mailová adresa:"
373
-
374
- #: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
375
- #: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
376
- msgid "Merge variables:"
377
- msgstr "Proměnné pro registrační formulář"
378
-
379
- #. Plugin Name of the plugin/theme
380
- msgid "MailChimp for WordPress"
381
- msgstr "MailChimp pro WordPress"
382
-
383
- #: mailchimp-for-wordpress/includes/views/api-settings.php:12
384
- #: mailchimp-for-wordpress/includes/views/form-settings.php:99
385
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
386
- msgid "MailChimp Settings"
387
- msgstr "Nastavení MailChimpu"
388
-
389
- #: mailchimp-for-wordpress/includes/views/api-settings.php:22
390
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
391
- msgid "API Settings"
392
- msgstr "Nastavení API"
393
-
394
- #: mailchimp-for-wordpress/includes/views/api-settings.php:24
395
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
396
- msgid "CONNECTED"
397
- msgstr "PŘIPOJENO"
398
-
399
- #: mailchimp-for-wordpress/includes/views/api-settings.php:26
400
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
401
- msgid "NOT CONNECTED"
402
- msgstr "NEPŘIPOJENO"
403
-
404
- #: mailchimp-for-wordpress/includes/views/api-settings.php:32
405
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
406
- msgid "API Key"
407
- msgstr "API klíč"
408
-
409
- #: mailchimp-for-wordpress/includes/views/api-settings.php:34
410
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
411
- msgid "Your MailChimp API key"
412
- msgstr "Váš API klíč z MailChimpu"
413
-
414
- #: mailchimp-for-wordpress/includes/views/api-settings.php:35
415
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
416
- msgid "Get your API key here."
417
- msgstr "Vygenerovat API klíč."
418
-
419
- #: mailchimp-for-wordpress/includes/views/api-settings.php:47
420
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
421
- msgid "MailChimp Data"
422
- msgstr "Seznamy adres z MailChimpu"
423
-
424
- #: mailchimp-for-wordpress/includes/views/api-settings.php:48
425
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
426
- msgid ""
427
- "The table below shows your MailChimp lists data. If you applied changes to "
428
- "your MailChimp lists, please use the following button to renew your cached "
429
- "data."
430
- msgstr "Následující tabulka zobrazuje všechny seznamy adres, které máte uložené v MailChimpu. Pokud jste udělali jakékoliv změny v některém ze seznamu adres, obnovte ho pomocí tlačítka \"Aktualizovat seznamy adres\"."
431
-
432
- #: mailchimp-for-wordpress/includes/views/api-settings.php:54
433
- #: mailchimp-for-wordpress/includes/views/api-settings.php:125
434
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
435
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
436
- msgid "Renew MailChimp lists"
437
- msgstr "Aktualizovat seznamy adres"
438
-
439
- #: mailchimp-for-wordpress/includes/views/api-settings.php:112
440
- msgid "No lists were found in your MailChimp account"
441
- msgstr "Ve Vašem účtu v MailChimpu jsme nenašeli žádné seznamy adres."
442
-
443
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
444
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
445
- msgid ""
446
- "To use sign-up checkboxes, select at least one list and one form to add the "
447
- "checkbox to."
448
- msgstr "Pokud chcete zobrazovat zaškrtávací políčka pro přihlášení k odběru novinek, vyberte alespoň jeden seznam adres a jeden z formulářů níže."
449
-
450
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
451
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
452
- msgid "MailChimp settings for checkboxes"
453
- msgstr "Nastavení pro odběr novinek"
454
-
455
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
456
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
457
- msgid ""
458
- "If you want to use sign-up checkboxes, select at least one MailChimp list to"
459
- " subscribe people to."
460
- msgstr "Pokud chcete zobrazovat zaškrtávací políčka pro přihlášení k odběru novinek, vyberte alespoň jeden seznam adres a jeden z formulářů níže."
461
-
462
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
463
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
464
- msgid "MailChimp Lists"
465
- msgstr "Seznam adres z MailChimpu"
466
-
467
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
468
- #: mailchimp-for-wordpress/includes/views/form-settings.php:48
469
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
470
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
471
- msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
472
- msgstr "Žádné seznamy odběratelů (listy) nebyly nalezeny. %sOpravdu jste přihlášení k MailChimpu?%s"
473
-
474
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
475
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
476
- msgid ""
477
- "Select the list(s) to which people who check the checkbox should be "
478
- "subscribed."
479
- msgstr "Vyberte jeden či více seznamů adres, do kterých budou zařazeni všichni uživatelé, kteří se přihlásí k odběru novinek."
480
-
481
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
482
- #: mailchimp-for-wordpress/includes/views/form-settings.php:102
483
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
484
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
485
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
486
- msgid "Double opt-in?"
487
- msgstr "Vyžadujete po uživatelích potvrzení e-mailu?"
488
-
489
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
490
- #: mailchimp-for-wordpress/includes/views/form-settings.php:113
491
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
492
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
493
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
494
- msgid ""
495
- "Select \"yes\" if you want people to confirm their email address before "
496
- "being subscribed (recommended)"
497
- msgstr "Pokud chcete, aby uživatelé museli potvrdit zadanou e-mailovou adresu předtím než budou zařazeni na seznam adres, vyberte \"Ano\" (doporučeno!)."
498
-
499
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
500
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
501
- msgid "Checkbox settings"
502
- msgstr "Nastavení zaškrtávacích políček"
503
-
504
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
505
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
506
- msgid "Add the checkbox to these forms"
507
- msgstr "U kterých formulářů chcete nabízet odběr novinek?"
508
-
509
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
510
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
511
- msgid "Selecting a form will automatically add the sign-up checkbox to it."
512
- msgstr "Výběrem konkrétního formuláře automaticky nastavíte, aby se u něj zobrazovalo zaškrtávací políčko pro odběr novinek."
513
-
514
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
515
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
516
- msgid "Checkbox label text"
517
- msgstr "Popisek u zaškrtávacího políčka"
518
-
519
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
520
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
521
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
522
- msgid "HTML tags like %s are allowed in the label text."
523
- msgstr "HTML tagy %s jsou v popisku povoleny."
524
-
525
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
526
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
527
- msgid "Pre-check the checkbox?"
528
- msgstr "Chcete zaškrtávat políčko jako výchozí stav?"
529
-
530
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
531
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
532
- msgid "Load some default CSS?"
533
- msgstr "Chcete načíst výchozí CSS styly?"
534
-
535
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
536
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
537
- msgid "Select \"yes\" if the checkbox appears in a weird place."
538
- msgstr "Pokud se vám zaškrtávací políčko nezobrazuje dobře, vyberte \"Ano\"."
539
-
540
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
541
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
542
- msgid "WooCommerce checkbox position"
543
- msgstr "Umístění zaškrtávacího políčka ve WooCommerce"
544
-
545
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
546
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
547
- msgid "After the billing details"
548
- msgstr "Za detaily o platbě"
549
-
550
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
551
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:126
552
- msgid "After the additional information"
553
- msgstr "Za doplňkovými informacemi"
554
-
555
- #: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
556
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
557
- msgid ""
558
- "Choose the position for the checkbox in your WooCommerce checkout form."
559
- msgstr "Zvolte polohu pro checkbox v platební stránce ve WooVommerce "
560
-
561
- #: mailchimp-for-wordpress/includes/views/form-settings.php:15
562
- msgid ""
563
- "To use the MailChimp sign-up form, configure the form below and then either "
564
- "paste %s in the content of a post or page or use the widget."
565
- msgstr ""
566
-
567
- #: mailchimp-for-wordpress/includes/views/form-settings.php:20
568
- msgid "Required form settings"
569
- msgstr "Povinné nastavení formuláře"
570
-
571
- #: mailchimp-for-wordpress/includes/views/form-settings.php:24
572
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
573
- msgid "Load form styles (CSS)?"
574
- msgstr "Chcete načíst CSS styly k formuláři?"
575
-
576
- #: mailchimp-for-wordpress/includes/views/form-settings.php:28
577
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
578
- msgid "Yes, load basic form styles"
579
- msgstr "Ano, chci načíst výchozí styly"
580
-
581
- #: mailchimp-for-wordpress/includes/views/form-settings.php:29
582
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
583
- msgid "Yes, load my custom form styles"
584
- msgstr "Ano, chci načíst mé upravené styly"
585
-
586
- #: mailchimp-for-wordpress/includes/views/form-settings.php:30
587
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
588
- msgid "Yes, load default form theme"
589
- msgstr "Ano, chci načíst výchozí šablonu"
590
-
591
- #: mailchimp-for-wordpress/includes/views/form-settings.php:31
592
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
593
- msgid "Light Theme"
594
- msgstr "Světlá šablona"
595
-
596
- #: mailchimp-for-wordpress/includes/views/form-settings.php:32
597
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
598
- msgid "Red Theme"
599
- msgstr "Červená šablona"
600
-
601
- #: mailchimp-for-wordpress/includes/views/form-settings.php:33
602
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
603
- msgid "Green Theme"
604
- msgstr "Zelená šablona"
605
-
606
- #: mailchimp-for-wordpress/includes/views/form-settings.php:34
607
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
608
- msgid "Blue Theme"
609
- msgstr "Modrá šablona"
610
-
611
- #: mailchimp-for-wordpress/includes/views/form-settings.php:35
612
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
613
- msgid "Dark Theme"
614
- msgstr "Tmavá šablona"
615
-
616
- #: mailchimp-for-wordpress/includes/views/form-settings.php:36
617
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
618
- msgid "Custom Color Theme"
619
- msgstr "Moje upravená šablona"
620
-
621
- #: mailchimp-for-wordpress/includes/views/form-settings.php:41
622
- msgid ""
623
- "If you want to load some default CSS styles, select \"basic formatting "
624
- "styles\" or choose one of the color themes"
625
- msgstr "Pokud chcete načíst nějaké výchozí CSS styly, vyberte \"Ano, chci načíst výchozí styly\" nebo zvolte jednu z barevných šablon."
626
-
627
- #: mailchimp-for-wordpress/includes/views/form-settings.php:45
628
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
629
- msgid "Lists this form subscribes to"
630
- msgstr "Na který seznam adres chcete uživatele přidávat?"
631
-
632
- #: mailchimp-for-wordpress/includes/views/form-settings.php:63
633
- msgid ""
634
- "Select the list(s) to which people who submit this form should be "
635
- "subscribed."
636
- msgstr "Vyberte jeden či více seznamů adres, do kterých budou zařazeni všichni uživatelé, kteří se přihlásí k odběru novinek."
637
-
638
- #: mailchimp-for-wordpress/includes/views/form-settings.php:69
639
- msgid "Form mark-up"
640
- msgstr "HTML kód formuláře"
641
-
642
- #: mailchimp-for-wordpress/includes/views/form-settings.php:79
643
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
644
- msgid ""
645
- "Use the shortcode %s to display this form inside a post, page or text "
646
- "widget."
647
- msgstr "Pro zobrazení tohoto formuláře v příspěvku, stránce nebo ve textovém widgetu použijte zkratku %s."
648
-
649
- #: mailchimp-for-wordpress/includes/views/form-settings.php:92
650
- #: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
651
- msgid "Your form is missing the following (required) form fields:"
652
- msgstr "Ve vašem formuláři chybí tato (povinná) formulářová políčka:"
653
-
654
- #: mailchimp-for-wordpress/includes/views/form-settings.php:117
655
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
656
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
657
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
658
- msgid "Send Welcome Email?"
659
- msgstr "Chcete posílat uvítací e-mail?"
660
-
661
- #: mailchimp-for-wordpress/includes/views/form-settings.php:128
662
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
663
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
664
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
665
- msgid ""
666
- "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
667
- "succeeds (only when double opt-in is disabled)."
668
- msgstr "Pokud chcete, aby uživateli, který se nově přidá na seznam adres, přišel uvítací e-mail, vyberte \"Ano\". Tato možnost je dostupná pouze v případě, že nevyžadujete ověření e-mailu."
669
-
670
- #: mailchimp-for-wordpress/includes/views/form-settings.php:131
671
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
672
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:67
673
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
674
- msgid "Update existing subscribers?"
675
- msgstr "Chcete upravovat již existující uživatele?"
676
-
677
- #: mailchimp-for-wordpress/includes/views/form-settings.php:138
678
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
679
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
680
- msgid ""
681
- "Select \"yes\" if you want to update existing subscribers (instead of "
682
- "showing the \"already subscribed\" message)."
683
- msgstr "Pokud chcete v případě, že uživatel již je v seznamu adres, upravit informace u tohoto uživatele, vyberte \"Ano\". Pokud vyberete \"Ne\", zobrazí se uživateli informace, že je na seznamu adres už zaregistrován."
684
-
685
- #: mailchimp-for-wordpress/includes/views/form-settings.php:141
686
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
687
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
688
- msgid "Replace interest groups?"
689
- msgstr ""
690
-
691
- #: mailchimp-for-wordpress/includes/views/form-settings.php:152
692
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
693
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
694
- msgid ""
695
- "Select \"yes\" if you want to replace the interest groups with the groups "
696
- "provided instead of adding the provided groups to the member's interest "
697
- "groups (only when updating a subscriber)."
698
- msgstr ""
699
-
700
- #: mailchimp-for-wordpress/includes/views/form-settings.php:156
701
- msgid "Form Settings & Messages"
702
- msgstr "Nastavení formuláře a informačních hlášek"
703
-
704
- #: mailchimp-for-wordpress/includes/views/form-settings.php:160
705
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
706
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
707
- msgid "Enable AJAX form submission?"
708
- msgstr "Chcete povolit odesílání formuláře pomocí AJAXu?"
709
-
710
- #: mailchimp-for-wordpress/includes/views/form-settings.php:171
711
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
712
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
713
- msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
714
- msgstr "Pokud chcete odesílat formuláře pomocí AJAXu (JavaSript), vyberte \"Ano\"."
715
-
716
- #: mailchimp-for-wordpress/includes/views/form-settings.php:174
717
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
718
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
719
- msgid "Hide form after a successful sign-up?"
720
- msgstr "Chcete skrývat formulář po úspěšné registraci?"
721
-
722
- #: mailchimp-for-wordpress/includes/views/form-settings.php:185
723
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
724
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
725
- msgid "Select \"yes\" to hide the form fields after a successful sign-up."
726
- msgstr "Pokud chcete skrýt formulář pro odebírání novinek skrýt po úspěšné registraci na seznam adres, vyberte \"Ano\"."
727
-
728
- #: mailchimp-for-wordpress/includes/views/form-settings.php:188
729
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
730
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
731
- msgid "Redirect to URL after successful sign-ups"
732
- msgstr "Na kterou adresu chcete přesměrovat uživatele po registraci?"
733
-
734
- #: mailchimp-for-wordpress/includes/views/form-settings.php:190
735
- msgid "Example: %s"
736
- msgstr "Příklad: %s"
737
-
738
- #: mailchimp-for-wordpress/includes/views/form-settings.php:191
739
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
740
- msgid ""
741
- "Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
742
- " (absolute) URLs, including <code>http://</code>."
743
- msgstr ""
744
-
745
- #: mailchimp-for-wordpress/includes/views/form-settings.php:195
746
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
747
- msgid "Successfully subscribed"
748
- msgstr ""
749
-
750
- #: mailchimp-for-wordpress/includes/views/form-settings.php:198
751
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
752
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
753
- msgid ""
754
- "The text that shows when an email address is successfully subscribed to the "
755
- "selected list(s)."
756
- msgstr ""
757
-
758
- #: mailchimp-for-wordpress/includes/views/form-settings.php:202
759
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
760
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
761
- msgid "Invalid email address"
762
- msgstr "Neplatná emailová adresa"
763
-
764
- #: mailchimp-for-wordpress/includes/views/form-settings.php:205
765
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
766
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
767
- msgid "The text that shows when an invalid email address is given."
768
- msgstr ""
769
-
770
- #: mailchimp-for-wordpress/includes/views/form-settings.php:209
771
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
772
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
773
- msgid "Required field missing"
774
- msgstr ""
775
-
776
- #: mailchimp-for-wordpress/includes/views/form-settings.php:212
777
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
778
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
779
- msgid ""
780
- "The text that shows when a required field for the selected list(s) is "
781
- "missing."
782
- msgstr ""
783
-
784
- #: mailchimp-for-wordpress/includes/views/form-settings.php:216
785
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
786
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
787
- msgid "Already subscribed"
788
- msgstr ""
789
-
790
- #: mailchimp-for-wordpress/includes/views/form-settings.php:219
791
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
792
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
793
- msgid ""
794
- "The text that shows when the given email is already subscribed to the "
795
- "selected list(s)."
796
- msgstr ""
797
-
798
- #: mailchimp-for-wordpress/includes/views/form-settings.php:224
799
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
800
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
801
- msgid "Invalid CAPTCHA"
802
- msgstr "Špatně zadaný kód CAPTCHA"
803
-
804
- #: mailchimp-for-wordpress/includes/views/form-settings.php:229
805
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
806
- msgid "General error"
807
- msgstr ""
808
-
809
- #: mailchimp-for-wordpress/includes/views/form-settings.php:232
810
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
811
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
812
- msgid "The text that shows when a general error occured."
813
- msgstr ""
814
-
815
- #: mailchimp-for-wordpress/includes/views/form-settings.php:236
816
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
817
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
818
- msgid "Unsubscribed"
819
- msgstr ""
820
-
821
- #: mailchimp-for-wordpress/includes/views/form-settings.php:239
822
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
823
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
824
- msgid ""
825
- "When using the unsubscribe method, this is the text that shows when the "
826
- "given email address is successfully unsubscribed from the selected list(s)."
827
- msgstr ""
828
-
829
- #: mailchimp-for-wordpress/includes/views/form-settings.php:243
830
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
831
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
832
- msgid "Not subscribed"
833
- msgstr ""
834
-
835
- #: mailchimp-for-wordpress/includes/views/form-settings.php:246
836
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
837
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
838
- msgid ""
839
- "When using the unsubscribe method, this is the text that shows when the "
840
- "given email address is not on the selected list(s)."
841
- msgstr ""
842
-
843
- #: mailchimp-for-wordpress/includes/views/form-settings.php:252
844
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
845
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
846
- msgid "HTML tags like %s are allowed in the message fields."
847
- msgstr "HTML tagy %s jsou v zobrazovaných hláškách povoleny."
848
-
849
- #: mailchimp-for-wordpress/includes/views/form-settings.php:266
850
- msgid "Form Styling"
851
- msgstr "Vzhled formuláře"
852
-
853
- #: mailchimp-for-wordpress/includes/views/form-settings.php:267
854
- msgid "Alter the visual appearance of the form by applying CSS rules to %s."
855
- msgstr ""
856
-
857
- #: mailchimp-for-wordpress/includes/views/form-settings.php:268
858
- msgid ""
859
- "You can add the CSS rules to your theme stylesheet using the <a "
860
- "href=\"%s\">Theme Editor</a> or by using a plugin like %s"
861
- msgstr ""
862
-
863
- #: mailchimp-for-wordpress/includes/views/form-settings.php:269
864
- msgid ""
865
- "The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
866
- "selectors you can use to target the different form elements."
867
- msgstr ""
868
-
869
- #: mailchimp-for-wordpress/includes/views/form-settings.php:270
870
- msgid ""
871
- "If you need an easier way to style your forms, consider <a "
872
- "href=\"%s\">upgrading to MailChimp for WordPress Pro</a> which comes with an"
873
- " easy Styles Builder."
874
- msgstr ""
875
-
876
- #: mailchimp-for-wordpress/includes/views/form-settings.php:272
877
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
878
- msgid "Variables"
879
- msgstr ""
880
-
881
- #: mailchimp-for-wordpress/includes/views/form-settings.php:274
882
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
883
- msgid ""
884
- "The following list of variables can be used to <a href=\"%s\">add some "
885
- "dynamic content to your form or success and error messages</a>."
886
- msgstr ""
887
-
888
- #: mailchimp-for-wordpress/includes/views/form-settings.php:274
889
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
890
- msgid "This allows you to personalise your form or response messages."
891
- msgstr ""
892
-
893
- #: mailchimp-for-wordpress/includes/views/form-settings.php:282
894
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
895
- msgid "Replaced with the visitor's email (if set in URL or cookie)."
896
- msgstr ""
897
-
898
- #: mailchimp-for-wordpress/includes/views/form-settings.php:286
899
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
900
- msgid "Replaced with the form response (error or success messages)."
901
- msgstr "Bude nahrazeno potvrzovací, chybovou či jinou hláškou."
902
-
903
- #: mailchimp-for-wordpress/includes/views/form-settings.php:291
904
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
905
- msgid "Replaced with a captcha field."
906
- msgstr "Bude nahrazeno kódem CAPTCHA."
907
-
908
- #: mailchimp-for-wordpress/includes/views/form-settings.php:296
909
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
910
- msgid "Replaced with the number of subscribers on the selected list(s)"
911
- msgstr "Bude nahrazeno počtem odběratelů na vybraném seznamu adres."
912
-
913
- #: mailchimp-for-wordpress/includes/views/form-settings.php:300
914
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
915
- msgid "Replaced with the current site language, eg: %s"
916
- msgstr "Bude nahrazeno aktuálně nastaveným jazykem stránky, např. %s."
917
-
918
- #: mailchimp-for-wordpress/includes/views/form-settings.php:304
919
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
920
- msgid "Replaced with the visitor's IP address"
921
- msgstr "Bude nahrazeno IP adresou uživatele."
922
-
923
- #: mailchimp-for-wordpress/includes/views/form-settings.php:308
924
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
925
- msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
926
- msgstr "Bude nahrazeno aktuálním datem (yyyy/mm/dd, např. %s)."
927
-
928
- #: mailchimp-for-wordpress/includes/views/form-settings.php:312
929
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:46
930
- msgid "Replaced with the current time (hh:mm:ss eg: %s)"
931
- msgstr "Bude nahrazeno aktuálním časem (hh:mm:ss, např. %s)."
932
-
933
- #: mailchimp-for-wordpress/includes/views/form-settings.php:316
934
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:50
935
- msgid ""
936
- "Replaced with the logged in user's email (or nothing, if there is no logged "
937
- "in user)"
938
- msgstr "Bude nahrazeno e-mailem právě přihlášeného uživatele. Pokud nebude uživatel přihlášený, zůstane hodnota prázdná."
939
-
940
- #: mailchimp-for-wordpress/includes/views/form-settings.php:320
941
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:54
942
- msgid "First name of the current user"
943
- msgstr "Křestní jméno právě přihlášeného uživatele."
944
-
945
- #: mailchimp-for-wordpress/includes/views/form-settings.php:324
946
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:58
947
- msgid "Last name of the current user"
948
- msgstr "Příjmení právě přihlášeného uživatele."
949
-
950
- #: mailchimp-for-wordpress/includes/views/form-settings.php:328
951
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
952
- msgid "Current user ID"
953
- msgstr "ID aktuálně přihlášeného uživatele."
954
-
955
- #: mailchimp-for-wordpress/includes/views/form-settings.php:332
956
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
957
- msgid "Current URL"
958
- msgstr "URL stránky, na které se nacházíte."
959
-
960
- #: mailchimp-for-wordpress/includes/views/form-settings.php:336
961
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
962
- msgid "The value of the <strong>FNAME</strong> field, if set."
963
- msgstr ""
964
-
965
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
966
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
967
- msgid "Add a new field"
968
- msgstr "Přidat nové políčko"
969
-
970
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
971
- msgid "Use the tool below to generate the HTML for your form fields."
972
- msgstr "Pro vytvoření políček do formuláře použijte prosím generorátor HTML kódu."
973
-
974
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
975
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
976
- msgid "Select MailChimp field.."
977
- msgstr "Vyberte políčko MailChimpu..."
978
-
979
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
980
- msgid "Submit Button"
981
- msgstr "Odesílací tlačítko"
982
-
983
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
984
- msgid "Subscribe / unsubscribe choice"
985
- msgstr ""
986
-
987
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
988
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
989
- msgid "List choice"
990
- msgstr ""
991
-
992
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
993
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
994
- msgid "Label"
995
- msgstr "Popisek"
996
-
997
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
998
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
999
- msgid "Placeholder"
1000
- msgstr "Zástupný text"
1001
-
1002
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
1003
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
1004
- msgid "Labels"
1005
- msgstr "Popisky"
1006
-
1007
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
1008
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
1009
- msgid "(leave empty to hide)"
1010
- msgstr "(pokud chcete skrýt, ponechte prázdné)"
1011
-
1012
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
1013
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
1014
- msgid "Wrap in paragraph %s tags?"
1015
- msgstr "Obalit do tagů %s pro odstavec?"
1016
-
1017
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
1018
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
1019
- msgid "Required field?"
1020
- msgstr "Povinné políčko?"
1021
-
1022
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
1023
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
1024
- msgid "Add to form"
1025
- msgstr "Přidat do formuláře"
1026
-
1027
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
1028
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
1029
- msgid "Generated HTML"
1030
- msgstr "Vygenerované HTML:"
1031
-
1032
- #: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
1033
- msgid "Select at least one list first."
1034
- msgstr "Nejprve vyberte alespoň jeden seznam odběratelů."
1035
-
1036
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
1037
- msgid ""
1038
- "MailChimp for WordPress is in need of translations. Is the plugin not "
1039
- "translated in your language or do you spot errors with the current "
1040
- "translations? Helping out is easy! Head over to <a href=\"%s\">the "
1041
- "translation project and click \"help translate\"</a>."
1042
- msgstr ""
1043
-
1044
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:14
1045
- msgid ""
1046
- "Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress "
1047
- "Pro</a> for an even better plugin, you will love it."
1048
- msgstr ""
1049
-
1050
- #: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:20
1051
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:13
1052
- msgid ""
1053
- "This plugin is not developed by or affiliated with MailChimp in any way."
1054
- msgstr "Tento plugin není vyvíjen ve spolupráci s MailChimpem."
1055
-
1056
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
1057
- msgid "Looking for help?"
1058
- msgstr ""
1059
-
1060
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:10
1061
- msgid ""
1062
- "Make sure to look at the <a href=\"%s\">MailChimp for WordPress "
1063
- "documentation</a>, the plugin <a href=\"%s\">FAQ</a> or use the <a "
1064
- "href=\"%s\">support forums</a> on WordPress.org."
1065
- msgstr ""
1066
-
1067
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
1068
- msgid "Do you enjoy this plugin?"
1069
- msgstr ""
1070
-
1071
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
1072
- msgid "Leave a %s plugin review on WordPress.org"
1073
- msgstr ""
1074
-
1075
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1076
- msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
1077
- msgstr "Používám Mailchimp for Wordpress od @DannyvanKootena - je to super!"
1078
-
1079
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
1080
- msgid "Tweet about MailChimp for WordPress"
1081
- msgstr "Sdílej MailChimp pro WordPress na Twitteru"
1082
-
1083
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
1084
- msgid ""
1085
- "Review the plugin on your blog and link to <a href=\"%s\">the plugin "
1086
- "page</a>."
1087
- msgstr ""
1088
-
1089
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
1090
- msgid "There is an <a href=\"%s\">affiliate program</a> as well."
1091
- msgstr ""
1092
-
1093
- #: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:20
1094
- msgid "Vote \"works\" on the WordPress.org plugin page"
1095
- msgstr ""
1096
-
1097
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:10
1098
- msgid ""
1099
- "This plugin has an even better premium version, you will absolutely love it."
1100
- msgstr ""
1101
-
1102
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
1103
- msgid "Some differences with this free version of the plugin:"
1104
- msgstr ""
1105
-
1106
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
1107
- msgid "Multiple forms"
1108
- msgstr ""
1109
-
1110
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
1111
- msgid "Each subscribing to one or multiple MailChimp lists."
1112
- msgstr ""
1113
-
1114
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
1115
- msgid "AJAX forms"
1116
- msgstr ""
1117
-
1118
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
1119
- msgid "Forms do not require a full page reload."
1120
- msgstr ""
1121
-
1122
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
1123
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
1124
- msgid "Statistics"
1125
- msgstr "Statistiky"
1126
 
1127
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
1128
- msgid "Every form interaction is logged and visualised in insightful charts."
1129
  msgstr ""
1130
 
1131
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
1132
- msgid "Styles Builder"
1133
- msgstr ""
1134
-
1135
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
1136
- msgid "Create beautiful form themes with ease."
1137
- msgstr ""
1138
-
1139
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
1140
- msgid "Upgrade Now"
1141
- msgstr "Upgradovat"
1142
 
1143
- #: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
1144
- msgid "View Demo"
1145
- msgstr ""
 
1146
 
1147
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:176
1148
  msgid "Documentation"
1149
  msgstr "Dokumentace"
1150
 
1151
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:240
1152
- msgid "Save Form"
1153
- msgstr "Uložit formulář"
1154
-
1155
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:244
1156
- msgid "Update Form"
1157
- msgstr "Upravit formulář"
1158
-
1159
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:295
1160
- msgid "Back to general form settings"
1161
- msgstr "Zpět na obecné nastavení"
1162
-
1163
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:297
1164
- msgid "Form updated."
1165
- msgstr "Formulář byl upravený."
1166
-
1167
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:298
1168
- msgid "Form saved."
1169
- msgstr "Formulář byl uložený."
1170
-
1171
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:365
1172
- msgid "Optional Settings"
1173
- msgstr "Nepovinná nastavení"
1174
-
1175
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:500
1176
- msgid "MailChimp & Plugin License Settings"
1177
- msgstr "Nastavení licence pro MailChimp & pluginu"
1178
-
1179
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:501
1180
- msgid "MailChimp & License"
1181
- msgstr "MailChimp & licence"
1182
-
1183
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:517
1184
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:518
1185
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:10
1186
- msgid "Reports"
1187
- msgstr "Souhrny"
1188
-
1189
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:709
1190
- msgid ""
1191
- "Please make sure the plugin is connected to MailChimp. <a "
1192
- "href=\"%s\">Provide a valid API key.</a>"
1193
- msgstr ""
1194
-
1195
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:824
1196
- msgid ""
1197
- "You disabled logging using the %s filter. Re-enable it to use the Reports "
1198
- "page."
1199
- msgstr ""
1200
-
1201
- #: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:840
1202
- msgid ""
1203
- "<strong>Welcome to MailChimp for WordPress Pro!</strong> We transfered the "
1204
- "settings you set in the Lite version, you can safely <a "
1205
- "href=\"%s\">deactivate it now</a>."
1206
- msgstr ""
1207
-
1208
- #: mailchimp-for-wordpress-pro/includes/admin/class-statistics.php:130
1209
- msgid "End date can't be before the start date"
1210
- msgstr "Datum konce nemůže být před datumem začátku"
1211
-
1212
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:436
1213
- msgid ""
1214
- "Couldn't create the stylesheet. Manually add the generated CSS to your theme"
1215
- " stylesheet or use a plugin like <em>%s</em>."
1216
- msgstr ""
1217
-
1218
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:437
1219
- msgid "%sShow generated CSS%s"
1220
- msgstr "%sZobrazit vygenerované CSS%s"
1221
-
1222
- #: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:447
1223
- msgid "The %sCSS Stylesheet%s has been created."
1224
- msgstr "%CSS soubor\" byl vytvořen."
1225
-
1226
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:263
1227
- msgid "<strong>Error:</strong> Please specify a form ID. Example: %s."
1228
- msgstr "<strong>Chyba:</strong> Definujte prosím ID formuláře. Příklad: %s"
1229
-
1230
- #: mailchimp-for-wordpress-pro/includes/class-form-manager.php:278
1231
- msgid ""
1232
- "<strong>Error:</strong> Sign-up form not found. Please check if you used the"
1233
- " correct form ID."
1234
- msgstr "<strong>Chyba:</strong> Formulář pro odběr nebyl nalezen. Použijte prosím správné ID formuláře."
1235
-
1236
- #: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:140
1237
- msgid "IP Address"
1238
- msgstr "IP adresa"
1239
-
1240
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:199
1241
- msgid "New MailChimp Sign-Up"
1242
- msgstr ""
1243
-
1244
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:207
1245
- msgid "New Sign-Up"
1246
- msgstr "Nový formulář pro odběr uživatelů"
1247
-
1248
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:208
1249
- msgid "<strong>%s</strong> signed-up at %s on %s using the form \"%s\"."
1250
- msgstr ""
1251
-
1252
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:213
1253
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:77
1254
- msgid "List"
1255
- msgstr "Seznam"
1256
-
1257
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:253
1258
- msgid "Other fields"
1259
- msgstr "Ostatní políčka"
1260
-
1261
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:275
1262
- msgid ""
1263
- "Note that you've enabled double opt-in for the \"%s\" form. The user won't "
1264
- "be added to the selected MailChimp lists until they confirm their email "
1265
- "address."
1266
- msgstr "Upozorňujeme, že jste aktivovali potvrzování e-mailu při odběru. Uživatel nebude přidán na vybraný seznam odběratelů dokud nepotvrdí existenci jejich e-mailové adresy."
1267
-
1268
- #: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:277
1269
- msgid "This email was auto-sent by the MailChimp for WordPress plugin."
1270
- msgstr ""
1271
-
1272
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:20
1273
- msgid "MailChimp for WP Form"
1274
- msgstr "MailChimp pro WP Form"
1275
-
1276
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:21
1277
- msgid "Displays one of your MailChimp for WordPress sign-up forms"
1278
- msgstr ""
1279
-
1280
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:43
1281
- msgid ""
1282
- "Please select the sign-up form you'd like to show here in the <a "
1283
- "href=\"%s\">widget settings</a>."
1284
- msgstr ""
1285
-
1286
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:86
1287
- msgid "Form:"
1288
- msgstr "Formulář:"
1289
-
1290
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:88
1291
- msgid "Select the form to show"
1292
- msgstr "Vyberte formulář k zobrazení"
1293
-
1294
- #: mailchimp-for-wordpress-pro/includes/class-widget.php:96
1295
- msgid "You don't have any sign-up forms. <a href=\"%s\">Create one now.</a>"
1296
- msgstr "Nemáte žádné formuláře pro registraci odběratelů. <a href=\"%s\">Vytvořit formulář</a>"
1297
-
1298
- #: mailchimp-for-wordpress-pro/includes/config/default-options.php:34
1299
- msgid ""
1300
- "Thank you, your sign-up request was successful! Please check your email "
1301
- "inbox to confirm."
1302
- msgstr "Děkujeme, vaše registrace byla úspěšná. Prosím, zkontrolujte váš emailový účet a dokončete registraci."
1303
-
1304
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:144
1305
- msgid "I know. Don't bug me."
1306
- msgstr "Jsem si toho vědom. Nezobrazovat toto upozornění."
1307
-
1308
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:163
1309
- msgid ""
1310
- "<b>Warning!</b> You're blocking external requests which means you won't be "
1311
- "able to get %s updates. Please add %s to %s."
1312
- msgstr ""
1313
-
1314
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:205
1315
- msgid "Your %s license has been activated. You have an unlimited license. "
1316
- msgstr "Vaše %s licence byla aktivována. Máte neomezenou licenci."
1317
-
1318
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:207
1319
- msgid "Your %s license has been activated. You have used %d/%d activations. "
1320
- msgstr "Vaše licence byla aktivována. Byla použita %d/%d aktivace."
1321
-
1322
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:212
1323
- msgid "<a href=\"%s\">Did you know you can upgrade your license?</a>"
1324
- msgstr "<a href=\"%s\">Víte, že můžete tuto licenci ještě vylepšit?</a>"
1325
-
1326
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:216
1327
  msgid ""
1328
- "<a href=\"%s\">Your license is expiring in %d days, would you like to extend"
1329
- " it?</a>"
1330
- msgstr "<a href=\"%s\">Vaše licence vyprší za %d dní. Chcete ji prodloužit?</a>"
1331
-
1332
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:225
1333
- msgid ""
1334
- "You've reached your activation limit. You must <a href=\"%s\">reset</a> or "
1335
- "<a href=\"%s\">upgrade your license</a> to use it on this site."
1336
  msgstr ""
1337
 
1338
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:229
1339
  msgid ""
1340
- "Your license has expired. You must <a href=\"%s\">renew your license</a> if "
1341
- "you want to use it again."
1342
- msgstr "Vaše license vypršela. Musíte <a href=\"%s\"> ji obnovit</a>, abyste mohli plugin znovu používat."
1343
-
1344
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:232
1345
- msgid "Failed to activate your license, your license key seems to be invalid."
1346
- msgstr "Při aktivaci vaší licence se vyskytla chyba. Vypadá to, že je licenční klíč neplatný."
1347
-
1348
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:257
1349
- msgid "Your %s license has been deactivated."
1350
- msgstr "Vaše %s licence byla deaktivována."
1351
-
1352
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:262
1353
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:66
1354
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
1355
- msgid ""
1356
- "Your plugin license has expired. You will no longer have access to plugin "
1357
- "updates unless you <a href=\"%s\">renew your license</a>."
1358
  msgstr ""
1359
 
1360
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
1361
- msgid "Failed to deactivate your %s license."
1362
- msgstr "Aktivace vaší %s licence se nepodařila."
1363
-
1364
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
1365
- msgid "Request error: \"%s\""
1366
- msgstr "Chyba požadavku: \"%s\""
1367
-
1368
- #: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:461
1369
- msgid "%s: License Settings"
1370
- msgstr "%s: Nastavení licence"
1371
-
1372
- #: mailchimp-for-wordpress-pro/includes/license/class-plugin-license-manager.php:67
1373
- msgid ""
1374
- "%s is network activated, please contact your site administrator to manage "
1375
- "the license."
1376
- msgstr ""
1377
-
1378
- #: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:64
1379
- msgid ""
1380
- "%s failed to check for updates because of the following error: <em>%s</em>"
1381
- msgstr ""
1382
-
1383
- #: mailchimp-for-wordpress-pro/includes/license/class-update-manager.php:126
1384
- msgid ""
1385
- "This site has not been activated properly on mc4wp.com and thus cannot check"
1386
- " for future updates. Please activate your site with a valid license key."
1387
- msgstr ""
1388
-
1389
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:23
1390
- msgid "License status"
1391
- msgstr "Status licence"
1392
-
1393
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
1394
- msgid "ACTIVE"
1395
- msgstr "AKTIVNÍ"
1396
-
1397
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
1398
- msgid "you are receiving updates"
1399
- msgstr "aktualizace pluginu budou stahovány"
1400
-
1401
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
1402
- msgid "EXPIRED"
1403
- msgstr "VYPRŠENO"
1404
-
1405
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
1406
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
1407
- msgid "you are <strong>not</strong> receiving updates."
1408
- msgstr "aktualizace pluginu <strong>nebudou</strong> stahovány"
1409
-
1410
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
1411
- msgid "INACTIVE"
1412
- msgstr "NEAKTIVNÍ"
1413
-
1414
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:35
1415
- msgid "Toggle license status"
1416
- msgstr "Přepnout status licence"
1417
-
1418
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:39
1419
- msgid "Deactivate License"
1420
- msgstr "Deaktivovat licenci"
1421
-
1422
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:40
1423
- msgid ""
1424
- "(deactivate your license so you can activate it on another WordPress site)"
1425
- msgstr "(pokud deaktivujete licenci na této stránce, budete ji moci použít na jiné WordPress stránce)"
1426
-
1427
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:44
1428
- msgid "Activate License"
1429
- msgstr "Aktivovat licenci"
1430
-
1431
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:46
1432
- msgid "Please enter a license key in the field below first."
1433
- msgstr "Vložte prosím nejdříve licenční klíč."
1434
-
1435
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:54
1436
- msgid "License Key"
1437
- msgstr "Licenční klíč:"
1438
-
1439
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:56
1440
- msgid "Paste your license key here, as found in the email receipt."
1441
- msgstr "Licenční klíč, který jsme vám poslali e-mailem, vložte sem."
1442
-
1443
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:78
1444
- msgid "Your %s license will expire on %s."
1445
- msgstr "Vaše %s licence vyprší %s."
1446
-
1447
- #: mailchimp-for-wordpress-pro/includes/license/views/form.php:82
1448
- msgid "%sRenew your license now%s."
1449
- msgstr "%sObnovit licenci%s."
1450
-
1451
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:49
1452
- msgid "ID"
1453
- msgstr "ID"
1454
 
1455
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:50
1456
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:462
1457
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:498
1458
- msgid "Form"
1459
- msgstr "Formulář"
1460
 
1461
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:51
1462
- msgid "Shortcode"
1463
- msgstr "Zkratka"
1464
 
1465
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:52
1466
- msgid "List(s)"
1467
- msgstr "Seznam(y)"
 
 
1468
 
1469
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:53
1470
- msgid "Last edited"
1471
- msgstr "Naposledy upraveno"
1472
 
1473
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:104
1474
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:108
1475
- msgid "Edit Form"
1476
- msgstr "Upravit formulář"
 
1477
 
1478
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:105
1479
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:290
1480
- msgid "Delete"
1481
- msgstr "Smazat"
1482
 
1483
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
1484
- msgid "No MailChimp list(s) selected yet."
1485
- msgstr "Žádný seznam odběratelů zatím nebyl vybrán."
1486
 
1487
- #: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
1488
- msgid "You have not created any sign-up forms yet. Time to do so!"
1489
- msgstr "Zatím jste nevytvořili žádné formuláře pro registraci odběratelů. Už je nejvyšší čas!"
1490
 
1491
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:46
1492
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
1493
- msgid "Log"
1494
- msgstr "Log"
1495
 
1496
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
1497
- msgid "Log Items"
1498
  msgstr ""
1499
 
1500
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
1501
- msgid "Email"
1502
- msgstr "E-mail"
1503
 
1504
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:78
1505
- msgid "Data"
1506
- msgstr "Data"
 
1507
 
1508
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
1509
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
1510
- msgid "Success"
1511
  msgstr ""
1512
 
1513
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:80
1514
- msgid "Type"
1515
- msgstr "Typ"
1516
 
1517
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:81
1518
- msgid "Source"
1519
- msgstr "Zdroj"
1520
 
1521
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:82
1522
- msgid "Subscribed"
1523
- msgstr ""
1524
 
1525
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:150
1526
- msgid "Log items deleted."
1527
- msgstr "Smazány záznamy v logu."
1528
 
1529
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
1530
- msgid "Registration"
1531
- msgstr "Registrace"
1532
 
1533
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
1534
- msgid "Top Bar"
1535
  msgstr ""
1536
 
1537
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
1538
- msgid "MultiSite registration"
1539
- msgstr "MultiSite registrace"
 
 
 
 
 
1540
 
1541
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
1542
- msgid "Contact Form 7"
1543
- msgstr "Contact Form 7"
1544
 
1545
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
1546
- msgid "bbPress: New Topic"
1547
- msgstr "bbPress: Nové téma"
1548
 
1549
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
1550
- msgid "bbPress: New Reply"
1551
- msgstr "bbPress: Nová odpověď"
1552
 
1553
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
1554
- msgid "Other Form"
1555
- msgstr "Jiný formulář"
1556
 
1557
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
1558
- msgid "No subscribe requests found."
1559
  msgstr ""
1560
 
1561
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
1562
- msgid "All"
1563
- msgstr "Všechny"
1564
 
1565
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
1566
- msgid "Checkbox"
1567
- msgstr "Zaškrtávací políčko"
1568
 
1569
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
1570
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
1571
- msgid "Order"
1572
  msgstr ""
1573
 
1574
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
1575
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
1576
- msgid "Checkout"
1577
- msgstr "Pokladna"
 
 
 
1578
 
1579
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
1580
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
1581
- msgid "Comment"
1582
- msgstr "Komentář"
1583
 
1584
- #: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
1585
- msgid "deleted"
1586
- msgstr "smazáno"
1587
 
1588
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
1589
  msgid ""
1590
- "Any settings you specify here will override the <a href=\"%s\">general form "
1591
- "settings</a>. If no setting is specified, the corresponding general setting "
1592
- "value will be used."
 
 
 
1593
  msgstr ""
1594
 
1595
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
1596
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
1597
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:64
1598
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:83
1599
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
1600
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
1601
- msgid "Inherit"
1602
  msgstr ""
1603
 
1604
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
1605
- msgid "Send an email copy of the form data?"
1606
  msgstr ""
1607
 
1608
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
1609
- msgid ""
1610
- "Tick \"yes\" if you want to receive an email with the form data for every "
1611
- "sign-up request."
 
 
1612
  msgstr ""
1613
 
1614
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:144
1615
- msgid "Send the copy to this email:"
1616
- msgstr "Poslat kopii na tento e-mail:"
1617
 
1618
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
1619
  msgid "Messages"
1620
  msgstr "Hlášky"
1621
 
1622
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:190
1623
- msgid "Other errors"
1624
- msgstr "Jiné chyby"
1625
 
1626
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
1627
- msgid "Submit button"
 
 
 
1628
  msgstr ""
1629
 
1630
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
1631
- msgid "Subscribe / unsubscribe action"
 
 
 
 
1632
  msgstr ""
1633
 
1634
- #: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
1635
- msgid "Form usage"
1636
  msgstr ""
1637
 
1638
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
1639
- msgid ""
1640
- "Select \"yes\" if you want to update existing subscribers with the data that"
1641
- " is sent."
1642
  msgstr ""
1643
 
1644
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:100
1645
- msgid ""
1646
- "Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
1647
- "forms."
1648
  msgstr ""
1649
 
1650
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
1651
- msgid "Custom label texts"
1652
- msgstr "Úprava popisků u zaškrtávacího políčka"
 
1653
 
1654
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
1655
  msgid ""
1656
- "Override the default checkbox label text for any given checkbox using the "
1657
- "fields below."
1658
- msgstr "Pokud chcete, můžete upravit text popisku pro zaškrtávací políčko. Výchozí hodnota pro každý popisek je \"Přihlásit se k odběru novinek\"."
1659
 
1660
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
1661
- msgid "Forms & Settings"
1662
- msgstr "Formuláře & nastavení"
1663
 
1664
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
1665
- msgid "CSS Styles Builder"
1666
- msgstr "Vizuální editor CSS stylů"
1667
 
1668
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
1669
- msgid "License & API Settings"
1670
- msgstr "Licence & nastavení API"
1671
 
1672
- #: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
1673
- msgid "No lists were found in your MailChimp account."
1674
- msgstr "V účtu MailChimpu nebyly nalezeny žádné seznamy odběratelů."
1675
 
1676
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
1677
- msgid ""
1678
- "Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
1679
- "email us directly at <a href=\"%s\">support@mc4wp.com</a>."
1680
  msgstr ""
1681
 
1682
- #: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
1683
  msgid ""
1684
- "Please use the same email address as you used when purchasing the plugin."
 
1685
  msgstr ""
1686
 
1687
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
1688
- msgid "Use the fields below to create custom styling rules for your forms."
1689
- msgstr ""
 
1690
 
1691
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:16
1692
- msgid ""
1693
- "Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
1694
- "href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
1695
- "form</a> in general."
1696
  msgstr ""
1697
 
1698
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
1699
  msgid ""
1700
- "You are not loading your custom stylesheet at this moment. To apply these "
1701
- "styles on your site, select \"load custom form styles\" in the <a "
1702
- "href=\"%s\">MailChimp for WordPress form settings</a>."
1703
  msgstr ""
1704
 
1705
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:30
1706
- msgid "Select form to build styles for:"
1707
  msgstr ""
1708
 
1709
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
1710
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
1711
- msgid "Create at least one form first."
1712
- msgstr "Nejdříve vytvořte alespoň jeden formulář."
1713
-
1714
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
1715
- msgid "You need to have JavaScript enabled to see a preview of your form."
1716
- msgstr "Pokud chcete vidět náhled formuláře, zapněte si prosím JavaScript."
1717
-
1718
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
1719
- msgid "Form container style"
1720
  msgstr ""
1721
 
1722
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
1723
- msgid "Form width"
1724
  msgstr ""
1725
 
1726
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
1727
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
1728
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
1729
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
1730
- msgid "px or %"
1731
  msgstr ""
1732
 
1733
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
1734
- msgid "Text alignment"
1735
- msgstr ""
1736
 
1737
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
1738
- msgid "Choose alignment"
1739
- msgstr ""
1740
 
1741
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
1742
- msgid "Left"
1743
- msgstr ""
1744
 
1745
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
1746
- msgid "Center"
1747
- msgstr ""
1748
 
1749
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
1750
- msgid "Right"
1751
- msgstr ""
1752
 
1753
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
1754
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
1755
- msgid "Background color"
1756
  msgstr ""
1757
 
1758
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
1759
- msgid "Padding"
1760
  msgstr ""
1761
 
1762
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
1763
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
1764
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
1765
- msgid "Border color"
1766
- msgstr ""
1767
 
1768
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
1769
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
1770
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
1771
- msgid "Border width"
1772
  msgstr ""
1773
 
1774
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
1775
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
1776
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
1777
- msgid "Text color"
1778
  msgstr ""
1779
 
1780
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
1781
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
1782
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
1783
- msgid "Text size"
1784
  msgstr ""
1785
 
1786
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
1787
- msgid "Background image"
1788
- msgstr ""
1789
 
1790
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
1791
- msgid "Label styles"
1792
- msgstr ""
 
 
1793
 
1794
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
1795
- msgid "Label width"
1796
  msgstr ""
1797
 
1798
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
1799
- msgid "Text style"
1800
  msgstr ""
1801
 
1802
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
1803
- msgid "Choose text style.."
 
 
1804
  msgstr ""
1805
 
1806
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
1807
- msgid "Normal"
1808
- msgstr ""
1809
 
1810
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
1811
- msgid "Bold"
1812
  msgstr ""
1813
 
1814
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
1815
- msgid "Italic"
1816
  msgstr ""
1817
 
1818
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
1819
- msgid "Bold & Italic"
 
 
1820
  msgstr ""
1821
 
1822
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
1823
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
1824
- msgid "Display"
1825
  msgstr ""
1826
 
1827
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
1828
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
1829
- msgid "Inline"
 
1830
  msgstr ""
1831
 
1832
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
1833
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
1834
- msgid "New line"
1835
  msgstr ""
1836
 
1837
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
1838
- msgid "Field styles"
1839
  msgstr ""
1840
 
1841
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
1842
- msgid "Field width"
1843
  msgstr ""
1844
 
1845
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
1846
- msgid "Field height"
 
 
1847
  msgstr ""
1848
 
1849
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
1850
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
1851
- msgid "Border radius"
1852
  msgstr ""
1853
 
1854
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
1855
- msgid "Focus outline"
 
 
1856
  msgstr ""
1857
 
1858
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
1859
- msgid "Button styles"
1860
- msgstr ""
1861
 
1862
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
1863
- msgid "Button width"
1864
- msgstr ""
1865
 
1866
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
1867
- msgid "Button height"
1868
  msgstr ""
1869
 
1870
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
1871
- msgid "Error and success messages"
1872
- msgstr ""
1873
 
1874
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
1875
- msgid "Success text color"
1876
- msgstr ""
 
1877
 
1878
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
1879
- msgid "Error text color"
1880
- msgstr ""
 
 
1881
 
1882
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
1883
- msgid "Advanced"
1884
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1885
 
1886
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
1887
- msgid "CSS Selector Prefix"
1888
  msgstr ""
1889
 
1890
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
 
 
 
 
 
 
 
 
 
 
 
 
 
1891
  msgid ""
1892
- "Use this to create a more specific (and thus more \"important\") CSS "
1893
- "selector."
1894
  msgstr ""
1895
 
1896
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
1897
- msgid "Manual CSS"
 
1898
  msgstr ""
1899
 
1900
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
 
1901
  msgid ""
1902
- "The CSS rules you enter here will be appended to the custom stylesheet."
 
1903
  msgstr ""
1904
 
1905
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
1906
- msgid "Copy styles from other form"
 
1907
  msgstr ""
1908
 
1909
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
1910
- msgid "Copy Styles"
1911
  msgstr ""
1912
 
1913
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
1914
- msgid ""
1915
- "Are you sure you want to copy form styles from another form? This will "
1916
- "overwrite current styles for this form."
1917
- msgstr ""
 
 
1918
 
1919
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
1920
- msgid "Are you sure you want to delete all custom styles for this form?"
1921
- msgstr "Opravdu chcete smazat všechny upravené styly pro tento formulář?"
1922
 
1923
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
1924
- msgid "Delete Form Styles"
1925
- msgstr "Smazat styly formuláře"
1926
 
1927
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
1928
- msgid "Form preview"
 
 
1929
  msgstr ""
1930
 
1931
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1932
- msgid "Sign-Up Forms"
 
 
 
 
1933
  msgstr ""
1934
 
1935
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
1936
- msgid "Create New Form"
1937
- msgstr "Vytvořit nový formulář"
1938
 
1939
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:16
1940
- msgid "General form settings"
1941
- msgstr "Obecné nastavení formuláře"
1942
 
1943
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:36
1944
  msgid ""
1945
- "If you %screated a custom stylesheet%s and want it to be loaded, select "
1946
- "\"custom form styles\". Otherwise, choose the basic formatting styles or one"
1947
- " of the default themes."
1948
- msgstr "Pokud jste %supravili CSS styly%s a chcete, aby byly načtené do vaší stránky, vyberte \"Mé upravené styly\". Jinak také můžete vybrat výchozí šablonu nebo jednu z barevných šablon."
1949
 
1950
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
1951
- msgid "Select Color"
1952
- msgstr "Vyberte barvu"
1953
 
1954
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
1955
- msgid "Save all changes"
1956
- msgstr "Uložit všechny změny"
 
 
1957
 
1958
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
1959
- msgid "Default MailChimp settings"
1960
- msgstr "Východí nastavení MailChimpu"
1961
 
1962
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:51
1963
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
1964
  msgid ""
1965
- "The following settings apply to <strong>all</strong> forms but can be "
1966
- "overridden on a per-form basis."
1967
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1968
 
1969
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:108
1970
- msgid "Default Form Settings"
1971
- msgstr "Výchozí nastavení formuláře"
 
 
 
 
 
 
 
 
 
 
1972
 
1973
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
1974
  msgid ""
1975
- "Leave empty for no redirect. Otherwise, use complete (absolute) URLs, "
1976
- "including <code>http://</code>."
 
 
1977
  msgstr ""
1978
 
1979
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
1980
- msgid "Default Messages"
1981
- msgstr "Výchozí hlášky"
1982
 
1983
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:15
1984
- msgid "Today"
1985
- msgstr "Dnes"
1986
 
1987
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:16
1988
- msgid "Yesterday"
1989
- msgstr "Včera"
1990
 
1991
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:17
1992
- msgid "Last Week"
1993
- msgstr "Poslední týden"
 
 
1994
 
1995
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:18
1996
- msgid "Last Month"
1997
- msgstr "Poslední měsíc"
1998
 
1999
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:19
2000
- msgid "Last Quarter"
2001
- msgstr "Poslední čtvrtletí"
2002
 
2003
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:20
2004
- msgid "Last Year"
2005
- msgstr "Poslední rok"
2006
 
2007
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:21
2008
- msgid "Custom"
2009
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2010
 
2011
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:25
2012
- msgid "From"
2013
- msgstr "Od"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2014
 
2015
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:32
2016
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:57
2017
- msgid "Jan"
2018
- msgstr "Leden"
2019
 
2020
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:33
2021
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:58
2022
- msgid "Feb"
2023
- msgstr "Únor"
2024
 
2025
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:34
2026
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:59
2027
- msgid "Mar"
2028
- msgstr "Březen"
 
 
2029
 
2030
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:35
2031
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:60
2032
- msgid "Apr"
2033
- msgstr "Duben"
2034
 
2035
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:36
2036
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:61
2037
- msgid "May"
2038
- msgstr "Květen"
2039
 
2040
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:37
2041
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:62
2042
- msgid "Jun"
2043
- msgstr "Červen"
2044
 
2045
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:38
2046
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:63
2047
- msgid "Jul"
2048
- msgstr "Červenec"
2049
 
2050
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:39
2051
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:64
2052
- msgid "Aug"
2053
- msgstr "Srpen"
2054
 
2055
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:40
2056
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:65
2057
- msgid "Sep"
2058
- msgstr "Září"
2059
 
2060
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:41
2061
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:66
2062
- msgid "Oct"
2063
- msgstr "Říjen"
2064
 
2065
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:42
2066
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:67
2067
- msgid "Nov"
2068
- msgstr "Listopad"
2069
 
2070
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:43
2071
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:68
2072
- msgid "Dec"
2073
- msgstr "Prosinec"
 
2074
 
2075
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:50
2076
- msgid "To"
 
 
2077
  msgstr ""
2078
 
2079
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:76
2080
- msgid "Filter"
2081
- msgstr "Filtr"
2082
 
2083
- #: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
2084
- msgid "Show these lines:"
2085
- msgstr "Ukázat tyto řádky:"
2086
 
2087
  #. Plugin URI of the plugin/theme
2088
- msgid "https://mc4wp.com/"
2089
- msgstr "https://mc4wp.com/"
 
 
2090
 
2091
  #. Description of the plugin/theme
2092
- msgid "Adds various sign-up methods to your website."
2093
- msgstr "Přidá na váš web různé registrační metody"
 
 
2094
 
2095
  #. Author of the plugin/theme
2096
- msgid "Danny van Kooten"
2097
- msgstr "Danny van Kooten"
2098
 
2099
  #. Author URI of the plugin/theme
2100
- msgid "http://dannyvankooten.com"
2101
- msgstr "http://dannyvankooten.com"
1
+ # Copyright (C) 2015 MailChimp for WordPress
2
+ # This file is distributed under the same license as the MailChimp for WordPress package.
3
  # Translators:
4
  # Jan Toman <toman.jan@gmail.com>, 2014-2015
5
  # Libor Matějka <libor.matejka@hotmail.cz>, 2015
6
  # Ondra <subrt.ondra@gmail.com>, 2015
7
+ # Roman Klimeš <roman@romanklimes.cz>, 2016
8
  msgid ""
9
  msgstr ""
10
  "Project-Id-Version: MailChimp for WordPress\n"
11
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
12
+ "POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
13
+ "PO-Revision-Date: 2016-05-20 00:31+0000\n"
14
+ "Last-Translator: Roman Klimeš <roman@romanklimes.cz>\n"
15
  "Language-Team: Czech (Czech Republic) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/cs_CZ/)\n"
16
  "MIME-Version: 1.0\n"
17
  "Content-Type: text/plain; charset=UTF-8\n"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Language: cs_CZ\n"
20
  "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
 
22
+ #: config/default-form-content.php:3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  msgid "Email address"
24
  msgstr "E-mailová adresa:"
25
 
26
+ #: config/default-form-content.php:4
 
 
27
  msgid "Your email address"
28
  msgstr "Vaše e-mailová adresa:"
29
 
30
+ #: config/default-form-content.php:5
 
 
31
  msgid "Sign up"
32
  msgstr "Registrovat se"
33
 
34
+ #: config/default-form-messages.php:5
 
 
 
 
 
35
  msgid ""
36
+ "Thank you, your sign-up request was successful! Please check your email "
37
+ "inbox to confirm."
38
+ msgstr "Děkujeme, vaše registrace byla úspěšná. Prosím, zkontrolujte váš emailový účet a dokončete registraci."
39
 
40
+ #: config/default-form-messages.php:9
 
41
  msgid "Oops. Something went wrong. Please try again later."
42
  msgstr "Něco se pokazilo. Vyzkoušejte to prosím znovu."
43
 
44
+ #: config/default-form-messages.php:13
 
45
  msgid "Please provide a valid email address."
46
  msgstr "Vyplňte prosím validní tvar e-mailu."
47
 
48
+ #: config/default-form-messages.php:17
 
49
  msgid "Given email address is already subscribed, thank you!"
50
  msgstr "Zadaná adresa je již na našem seznamu odběratelů. Děkujeme!"
51
 
52
+ #: config/default-form-messages.php:21
 
 
 
 
 
 
53
  msgid "Please fill in the required fields."
54
  msgstr "Vyplňte prosím všechna povinná políčka."
55
 
56
+ #: config/default-form-messages.php:25
 
57
  msgid "You were successfully unsubscribed."
58
+ msgstr "Byli jste úspěšně odhlášení."
59
 
60
+ #: config/default-form-messages.php:29
 
61
  msgid "Given email address is not subscribed."
62
+ msgstr "Zadaná e-mailová adresa není registrována k odběru."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
 
64
+ #: config/default-form-messages.php:33
65
+ msgid "Please select at least one list."
66
  msgstr ""
67
 
68
+ #: config/default-integration-options.php:5
69
+ msgid "Sign me up for the newsletter!"
70
+ msgstr "Přihlásit se k odběru novinek!"
 
 
 
 
 
 
 
 
71
 
72
+ #: includes/admin/class-admin-texts.php:62
73
+ #: includes/forms/views/edit-form.php:6
74
+ msgid "Settings"
75
+ msgstr "Nastavení"
76
 
77
+ #: includes/admin/class-admin-texts.php:80
78
  msgid "Documentation"
79
  msgstr "Dokumentace"
80
 
81
+ #: includes/admin/class-admin.php:167
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  msgid ""
83
+ "Success! The cached configuration for your MailChimp lists has been renewed."
 
 
 
 
 
 
 
84
  msgstr ""
85
 
86
+ #: includes/admin/class-admin.php:257
87
  msgid ""
88
+ "This is a pro-only feature. Please upgrade to the premium version to be able"
89
+ " to use it."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
90
  msgstr ""
91
 
92
+ #: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
93
+ msgid "MailChimp API Settings"
94
+ msgstr "Nastavení API MailChimpu"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
 
96
+ #: includes/admin/class-admin.php:324
97
+ #: integrations/ninja-forms/class-ninja-forms.php:34
98
+ msgid "MailChimp"
99
+ msgstr "MailChimp"
 
100
 
101
+ #: includes/admin/class-ads.php:33
102
+ msgid "Upgrade to MailChimp for WordPress Pro"
103
+ msgstr "Upgrade na Pro verzi pluginu."
104
 
105
+ #: includes/admin/class-ads.php:41
106
+ msgid ""
107
+ "Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
108
+ "features</a> for an even better plugin."
109
+ msgstr ""
110
 
111
+ #: includes/admin/class-ads.php:62
112
+ msgid "More subscribers, better newsletters."
113
+ msgstr "Více registrovaných, přinese úspěšnější newslettery."
114
 
115
+ #: includes/admin/class-ads.php:63
116
+ msgid ""
117
+ "Learn how to best grow your lists & write better emails by subscribing to "
118
+ "our monthly tips."
119
+ msgstr ""
120
 
121
+ #: includes/admin/class-ads.php:66
122
+ msgid "Email Address"
123
+ msgstr "E-mailová adresa:"
 
124
 
125
+ #: includes/admin/class-ads.php:70
126
+ msgid "First Name"
127
+ msgstr "Křestní jméno"
128
 
129
+ #: includes/admin/class-ads.php:77
130
+ msgid "Subscribe"
131
+ msgstr "Přihlásit se k odběru"
132
 
133
+ #: includes/admin/class-usage-tracking.php:57
134
+ msgid "Once a month"
135
+ msgstr "Jednou měsíčně"
 
136
 
137
+ #: includes/admin/migrations/3.0-form-1-post-type.php:35
138
+ msgid "Default sign-up form"
139
  msgstr ""
140
 
141
+ #: includes/class-api.php:83
142
+ msgid "Read more about common connectivity issues."
143
+ msgstr ""
144
 
145
+ #: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
146
+ #: includes/forms/views/edit-form.php:17
147
+ msgid "Forms"
148
+ msgstr "Formuláře"
149
 
150
+ #: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
151
+ msgid "<strong>Success!</strong> Form successfully saved."
 
152
  msgstr ""
153
 
154
+ #: includes/forms/class-admin.php:176
155
+ msgid "Preview form"
156
+ msgstr "Náhledový formulář"
157
 
158
+ #: includes/forms/class-admin.php:279
159
+ msgid "Form not found."
160
+ msgstr "Formulář nenalezen"
161
 
162
+ #: includes/forms/class-admin.php:281
163
+ msgid "Go back"
164
+ msgstr "Zpět"
165
 
166
+ #: includes/forms/class-form-previewer.php:162
167
+ msgid "Form preview"
168
+ msgstr "Náhled formuláře"
169
 
170
+ #: includes/forms/class-form-tags.php:51
171
+ msgid "Replaced with the form response (error or success messages)."
172
+ msgstr "Bude nahrazeno potvrzovací, chybovou či jinou hláškou."
173
 
174
+ #: includes/forms/class-form-tags.php:56
175
+ msgid "Data from the URL or a submitted form."
176
  msgstr ""
177
 
178
+ #: includes/forms/class-form-tags.php:62
179
+ #: includes/integrations/class-integration-tags.php:45
180
+ msgid "Replaced with the number of subscribers on the selected list(s)"
181
+ msgstr "Bude nahrazeno počtem odběratelů na vybraném seznamu adres."
182
+
183
+ #: includes/forms/class-form-tags.php:67
184
+ msgid "The email address of the current visitor (if known)."
185
+ msgstr ""
186
 
187
+ #: includes/forms/class-form-tags.php:72
188
+ msgid "The URL of the page."
189
+ msgstr "URL webové stránky"
190
 
191
+ #: includes/forms/class-form-tags.php:77
192
+ msgid "The path of the page."
193
+ msgstr ""
194
 
195
+ #: includes/forms/class-form-tags.php:82
196
+ msgid "The current date. Example: %s."
197
+ msgstr ""
198
 
199
+ #: includes/forms/class-form-tags.php:87
200
+ msgid "The current time. Example: %s."
201
+ msgstr ""
202
 
203
+ #: includes/forms/class-form-tags.php:92
204
+ msgid "The site's language. Example: %s."
205
  msgstr ""
206
 
207
+ #: includes/forms/class-form-tags.php:97
208
+ msgid "The visitor's IP address. Example: %s."
209
+ msgstr ""
210
 
211
+ #: includes/forms/class-form-tags.php:102
212
+ msgid "The property of the currently logged-in user."
213
+ msgstr ""
214
 
215
+ #: includes/forms/class-form.php:128
216
+ msgid "There is no form with ID %d, perhaps it was deleted?"
 
217
  msgstr ""
218
 
219
+ #: includes/forms/class-widget.php:26
220
+ msgid "Newsletter"
221
+ msgstr "Newsletter"
222
+
223
+ #: includes/forms/class-widget.php:30
224
+ msgid "MailChimp Sign-Up Form"
225
+ msgstr "Registrační formulář MailChimpu"
226
 
227
+ #: includes/forms/class-widget.php:32
228
+ msgid "Displays your MailChimp for WordPress sign-up form"
229
+ msgstr "Zobrazuje váš formulář pro odběratele"
 
230
 
231
+ #: includes/forms/class-widget.php:75
232
+ msgid "Title:"
233
+ msgstr "Titulek:"
234
 
235
+ #: includes/forms/class-widget.php:92
236
  msgid ""
237
+ "You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
238
+ " form settings</a>."
239
+ msgstr "Editovat nastavení přihlašovacích formulářů pluginu \"Mailchimp for Wordpress\" můžete <a href=\"%s\">zde</a>."
240
+
241
+ #: includes/forms/views/add-form.php:10 includes/forms/views/add-form.php:60
242
+ msgid "Add new form"
243
  msgstr ""
244
 
245
+ #: includes/forms/views/add-form.php:27
246
+ msgid "What is the name of this form?"
 
 
 
 
 
247
  msgstr ""
248
 
249
+ #: includes/forms/views/add-form.php:30
250
+ msgid "Enter your form title.."
251
  msgstr ""
252
 
253
+ #: includes/forms/views/add-form.php:37
254
+ msgid "To which MailChimp lists should this form subscribe?"
255
+ msgstr ""
256
+
257
+ #: includes/forms/views/add-form.php:54
258
+ msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
259
  msgstr ""
260
 
261
+ #: includes/forms/views/edit-form.php:4
262
+ msgid "Fields"
263
+ msgstr ""
264
 
265
+ #: includes/forms/views/edit-form.php:5
266
  msgid "Messages"
267
  msgstr "Hlášky"
268
 
269
+ #: includes/forms/views/edit-form.php:7
270
+ msgid "Appearance"
271
+ msgstr ""
272
 
273
+ #: includes/forms/views/edit-form.php:15
274
+ #: includes/integrations/views/integration-settings.php:8
275
+ #: includes/integrations/views/integrations.php:7
276
+ #: includes/views/general-settings.php:7
277
+ msgid "You are here: "
278
  msgstr ""
279
 
280
+ #: includes/forms/views/edit-form.php:27
281
+ msgid "Edit Form"
282
+ msgstr "Upravit formulář"
283
+
284
+ #: includes/forms/views/edit-form.php:45
285
+ msgid "Enter form title here"
286
  msgstr ""
287
 
288
+ #: includes/forms/views/edit-form.php:46
289
+ msgid "Enter the title of your sign-up form"
290
  msgstr ""
291
 
292
+ #: includes/forms/views/edit-form.php:54
293
+ msgid "Get shortcode"
 
 
294
  msgstr ""
295
 
296
+ #: includes/forms/views/edit-form.php:59
297
+ msgid "Preview this form"
 
 
298
  msgstr ""
299
 
300
+ #: includes/forms/views/parts/add-fields-help.php:4
301
+ #: includes/forms/views/tabs/form-fields.php:10
302
+ msgid "Add more fields"
303
+ msgstr ""
304
 
305
+ #: includes/forms/views/parts/add-fields-help.php:9
306
  msgid ""
307
+ "To add more fields to your form, you will need to create those fields in "
308
+ "MailChimp first."
309
+ msgstr ""
310
 
311
+ #: includes/forms/views/parts/add-fields-help.php:12
312
+ msgid "Here's how:"
313
+ msgstr ""
314
 
315
+ #: includes/forms/views/parts/add-fields-help.php:17
316
+ msgid "Log in to your MailChimp account."
317
+ msgstr ""
318
 
319
+ #: includes/forms/views/parts/add-fields-help.php:22
320
+ msgid "Add list fields to any of your selected lists."
321
+ msgstr ""
322
 
323
+ #: includes/forms/views/parts/add-fields-help.php:23
324
+ msgid "Clicking the following links will take you to the right screen."
325
+ msgstr ""
326
 
327
+ #: includes/forms/views/parts/add-fields-help.php:29
328
+ msgid "Edit list fields for"
 
 
329
  msgstr ""
330
 
331
+ #: includes/forms/views/parts/add-fields-help.php:38
332
  msgid ""
333
+ "Click the following button to have MailChimp for WordPress pick up on your "
334
+ "changes."
335
  msgstr ""
336
 
337
+ #: includes/forms/views/parts/add-fields-help.php:43
338
+ #: includes/views/parts/lists-overview.php:8
339
+ msgid "Renew MailChimp lists"
340
+ msgstr "Aktualizovat seznamy adres"
341
 
342
+ #: includes/forms/views/parts/dynamic-content-tags.php:6
343
+ msgid "Add dynamic form variable"
 
 
 
344
  msgstr ""
345
 
346
+ #: includes/forms/views/parts/dynamic-content-tags.php:8
347
  msgid ""
348
+ "The following list of variables can be used to <a href=\"%s\">add some "
349
+ "dynamic content to your form or success and error messages</a>."
 
350
  msgstr ""
351
 
352
+ #: includes/forms/views/parts/dynamic-content-tags.php:8
353
+ msgid "This allows you to personalise your form or response messages."
354
  msgstr ""
355
 
356
+ #: includes/forms/views/tabs/form-appearance.php:5
357
+ msgid "Inherit from %s theme"
 
 
 
 
 
 
 
 
 
358
  msgstr ""
359
 
360
+ #: includes/forms/views/tabs/form-appearance.php:6
361
+ msgid "Basic"
362
  msgstr ""
363
 
364
+ #: includes/forms/views/tabs/form-appearance.php:7
365
+ msgid "Form Themes"
 
 
 
366
  msgstr ""
367
 
368
+ #: includes/forms/views/tabs/form-appearance.php:8
369
+ msgid "Light Theme"
370
+ msgstr "Světlá šablona"
371
 
372
+ #: includes/forms/views/tabs/form-appearance.php:9
373
+ msgid "Dark Theme"
374
+ msgstr "Tmavá šablona"
375
 
376
+ #: includes/forms/views/tabs/form-appearance.php:10
377
+ msgid "Red Theme"
378
+ msgstr "Červená šablona"
379
 
380
+ #: includes/forms/views/tabs/form-appearance.php:11
381
+ msgid "Green Theme"
382
+ msgstr "Zelená šablona"
383
 
384
+ #: includes/forms/views/tabs/form-appearance.php:12
385
+ msgid "Blue Theme"
386
+ msgstr "Modrá šablona"
387
 
388
+ #: includes/forms/views/tabs/form-appearance.php:25
389
+ msgid "Form Appearance"
 
390
  msgstr ""
391
 
392
+ #: includes/forms/views/tabs/form-appearance.php:29
393
+ msgid "Form Style"
394
  msgstr ""
395
 
396
+ #: includes/forms/views/tabs/form-appearance.php:48
397
+ msgid ""
398
+ "If you want to load some default CSS styles, select \"basic formatting "
399
+ "styles\" or choose one of the color themes"
400
+ msgstr "Pokud chcete načíst nějaké výchozí CSS styly, vyberte \"Ano, chci načíst výchozí styly\" nebo zvolte jednu z barevných šablon."
401
 
402
+ #: includes/forms/views/tabs/form-fields.php:6
403
+ msgid "Form variables"
 
 
404
  msgstr ""
405
 
406
+ #: includes/forms/views/tabs/form-fields.php:13
407
+ msgid "Form Fields"
 
 
408
  msgstr ""
409
 
410
+ #: includes/forms/views/tabs/form-fields.php:19
411
+ msgid "Enter the HTML code for your form fields.."
 
 
412
  msgstr ""
413
 
414
+ #: includes/forms/views/tabs/form-fields.php:27
415
+ msgid "Your form is missing the following (required) form fields:"
416
+ msgstr "Ve vašem formuláři chybí tato (povinná) formulářová políčka:"
417
 
418
+ #: includes/forms/views/tabs/form-fields.php:34
419
+ msgid ""
420
+ "Use the shortcode %s to display this form inside a post, page or text "
421
+ "widget."
422
+ msgstr "Pro zobrazení tohoto formuláře v příspěvku, stránce nebo ve textovém widgetu použijte zkratku %s."
423
 
424
+ #: includes/forms/views/tabs/form-messages.php:3
425
+ msgid "Form Messages"
426
  msgstr ""
427
 
428
+ #: includes/forms/views/tabs/form-messages.php:10
429
+ msgid "Successfully subscribed"
430
  msgstr ""
431
 
432
+ #: includes/forms/views/tabs/form-messages.php:13
433
+ msgid ""
434
+ "The text that shows when an email address is successfully subscribed to the "
435
+ "selected list(s)."
436
  msgstr ""
437
 
438
+ #: includes/forms/views/tabs/form-messages.php:17
439
+ msgid "Invalid email address"
440
+ msgstr "Neplatná emailová adresa"
441
 
442
+ #: includes/forms/views/tabs/form-messages.php:20
443
+ msgid "The text that shows when an invalid email address is given."
444
  msgstr ""
445
 
446
+ #: includes/forms/views/tabs/form-messages.php:24
447
+ msgid "Required field missing"
448
  msgstr ""
449
 
450
+ #: includes/forms/views/tabs/form-messages.php:27
451
+ msgid ""
452
+ "The text that shows when a required field for the selected list(s) is "
453
+ "missing."
454
  msgstr ""
455
 
456
+ #: includes/forms/views/tabs/form-messages.php:31
457
+ msgid "Already subscribed"
 
458
  msgstr ""
459
 
460
+ #: includes/forms/views/tabs/form-messages.php:34
461
+ msgid ""
462
+ "The text that shows when the given email is already subscribed to the "
463
+ "selected list(s)."
464
  msgstr ""
465
 
466
+ #: includes/forms/views/tabs/form-messages.php:38
467
+ msgid "General error"
 
468
  msgstr ""
469
 
470
+ #: includes/forms/views/tabs/form-messages.php:41
471
+ msgid "The text that shows when a general error occured."
472
  msgstr ""
473
 
474
+ #: includes/forms/views/tabs/form-messages.php:45
475
+ msgid "Unsubscribed"
476
  msgstr ""
477
 
478
+ #: includes/forms/views/tabs/form-messages.php:48
479
+ msgid ""
480
+ "When using the unsubscribe method, this is the text that shows when the "
481
+ "given email address is successfully unsubscribed from the selected list(s)."
482
  msgstr ""
483
 
484
+ #: includes/forms/views/tabs/form-messages.php:52
485
+ msgid "Not subscribed"
 
486
  msgstr ""
487
 
488
+ #: includes/forms/views/tabs/form-messages.php:55
489
+ msgid ""
490
+ "When using the unsubscribe method, this is the text that shows when the "
491
+ "given email address is not on the selected list(s)."
492
  msgstr ""
493
 
494
+ #: includes/forms/views/tabs/form-messages.php:64
495
+ msgid "HTML tags like %s are allowed in the message fields."
496
+ msgstr "HTML tagy %s jsou v zobrazovaných hláškách povoleny."
497
 
498
+ #: includes/forms/views/tabs/form-settings.php:1
499
+ msgid "Form Settings"
500
+ msgstr "Nastavení formuláře"
501
 
502
+ #: includes/forms/views/tabs/form-settings.php:5
503
+ msgid "MailChimp specific settings"
504
  msgstr ""
505
 
506
+ #: includes/forms/views/tabs/form-settings.php:12
507
+ msgid "Lists this form subscribes to"
508
+ msgstr "Na který seznam adres chcete uživatele přidávat?"
509
 
510
+ #: includes/forms/views/tabs/form-settings.php:15
511
+ #: includes/integrations/views/integration-settings.php:93
512
+ msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
513
+ msgstr "Žádné seznamy odběratelů (listy) nebyly nalezeny. %sOpravdu jste přihlášení k MailChimpu?%s"
514
 
515
+ #: includes/forms/views/tabs/form-settings.php:29
516
+ msgid ""
517
+ "Select the list(s) to which people who submit this form should be "
518
+ "subscribed."
519
+ msgstr "Vyberte jeden či více seznamů adres, do kterých budou zařazeni všichni uživatelé, kteří se přihlásí k odběru novinek."
520
 
521
+ #: includes/forms/views/tabs/form-settings.php:35
522
+ msgid "Use double opt-in?"
523
+ msgstr ""
524
+
525
+ #: includes/forms/views/tabs/form-settings.php:39
526
+ #: includes/forms/views/tabs/form-settings.php:54
527
+ #: includes/forms/views/tabs/form-settings.php:69
528
+ #: includes/forms/views/tabs/form-settings.php:85
529
+ #: includes/forms/views/tabs/form-settings.php:115
530
+ #: includes/integrations/views/integration-settings.php:53
531
+ #: includes/integrations/views/integration-settings.php:66
532
+ #: includes/integrations/views/integration-settings.php:117
533
+ #: includes/integrations/views/integration-settings.php:129
534
+ #: includes/integrations/views/integration-settings.php:142
535
+ #: includes/integrations/views/integration-settings.php:163
536
+ #: includes/integrations/views/integration-settings.php:180
537
+ #: includes/integrations/views/integration-settings.php:199
538
+ #: integrations/contact-form-7/class-contact-form-7.php:69
539
+ msgid "Yes"
540
+ msgstr "Ano"
541
+
542
+ #: includes/forms/views/tabs/form-settings.php:43
543
+ #: includes/forms/views/tabs/form-settings.php:58
544
+ #: includes/forms/views/tabs/form-settings.php:73
545
+ #: includes/forms/views/tabs/form-settings.php:89
546
+ #: includes/forms/views/tabs/form-settings.php:119
547
+ #: includes/integrations/views/integration-settings.php:54
548
+ #: includes/integrations/views/integration-settings.php:67
549
+ #: includes/integrations/views/integration-settings.php:118
550
+ #: includes/integrations/views/integration-settings.php:130
551
+ #: includes/integrations/views/integration-settings.php:146
552
+ #: includes/integrations/views/integration-settings.php:167
553
+ #: includes/integrations/views/integration-settings.php:184
554
+ #: includes/integrations/views/integration-settings.php:203
555
+ #: integrations/contact-form-7/class-contact-form-7.php:69
556
+ msgid "No"
557
+ msgstr "Ne"
558
+
559
+ #: includes/forms/views/tabs/form-settings.php:45
560
+ #: includes/integrations/views/integration-settings.php:149
561
+ msgid ""
562
+ "Select \"yes\" if you want people to confirm their email address before "
563
+ "being subscribed (recommended)"
564
+ msgstr "Pokud chcete, aby uživatelé museli potvrdit zadanou e-mailovou adresu předtím než budou zařazeni na seznam adres, vyberte \"Ano\" (doporučeno!)."
565
 
566
+ #: includes/forms/views/tabs/form-settings.php:50
567
+ msgid "Send final welcome email?"
568
  msgstr ""
569
 
570
+ #: includes/forms/views/tabs/form-settings.php:60
571
+ #: includes/integrations/views/integration-settings.php:169
572
+ msgid ""
573
+ "Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
574
+ "succeeds (only when double opt-in is disabled)."
575
+ msgstr "Pokud chcete, aby uživateli, který se nově přidá na seznam adres, přišel uvítací e-mail, vyberte \"Ano\". Tato možnost je dostupná pouze v případě, že nevyžadujete ověření e-mailu."
576
+
577
+ #: includes/forms/views/tabs/form-settings.php:65
578
+ #: includes/integrations/views/integration-settings.php:176
579
+ msgid "Update existing subscribers?"
580
+ msgstr "Chcete upravovat již existující uživatele?"
581
+
582
+ #: includes/forms/views/tabs/form-settings.php:75
583
+ #: includes/integrations/views/integration-settings.php:186
584
  msgid ""
585
+ "Select \"yes\" if you want to update existing subscribers with the data that"
586
+ " is sent."
587
  msgstr ""
588
 
589
+ #: includes/forms/views/tabs/form-settings.php:81
590
+ #: includes/integrations/views/integration-settings.php:195
591
+ msgid "Replace interest groups?"
592
  msgstr ""
593
 
594
+ #: includes/forms/views/tabs/form-settings.php:92
595
+ #: includes/integrations/views/integration-settings.php:206
596
  msgid ""
597
+ "Select \"no\" if you want to add the selected groupings to any previously "
598
+ "selected groupings when updating a subscriber."
599
  msgstr ""
600
 
601
+ #: includes/forms/views/tabs/form-settings.php:93
602
+ #: includes/integrations/views/integration-settings.php:207
603
+ msgid "What does this do?"
604
  msgstr ""
605
 
606
+ #: includes/forms/views/tabs/form-settings.php:104
607
+ msgid "Form behaviour"
608
  msgstr ""
609
 
610
+ #: includes/forms/views/tabs/form-settings.php:111
611
+ msgid "Hide form after a successful sign-up?"
612
+ msgstr "Chcete skrývat formulář po úspěšné registraci?"
613
+
614
+ #: includes/forms/views/tabs/form-settings.php:122
615
+ msgid "Select \"yes\" to hide the form fields after a successful sign-up."
616
+ msgstr "Pokud chcete skrýt formulář pro odebírání novinek skrýt po úspěšné registraci na seznam adres, vyberte \"Ano\"."
617
 
618
+ #: includes/forms/views/tabs/form-settings.php:127
619
+ msgid "Redirect to URL after successful sign-ups"
620
+ msgstr "Na kterou adresu chcete přesměrovat uživatele po registraci?"
621
 
622
+ #: includes/forms/views/tabs/form-settings.php:129
623
+ msgid "Example: %s"
624
+ msgstr "Příklad: %s"
625
 
626
+ #: includes/forms/views/tabs/form-settings.php:130
627
+ msgid ""
628
+ "Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
629
+ " (absolute) URLs, including <code>http://</code>."
630
  msgstr ""
631
 
632
+ #: includes/integrations/class-admin.php:79
633
+ #: includes/integrations/class-admin.php:80
634
+ #: includes/integrations/views/integration-settings.php:10
635
+ #: includes/integrations/views/integrations.php:9
636
+ #: includes/integrations/views/integrations.php:17
637
+ msgid "Integrations"
638
  msgstr ""
639
 
640
+ #: includes/integrations/views/integration-settings.php:20
641
+ msgid "%s integration"
642
+ msgstr "%s vložení"
643
 
644
+ #: includes/integrations/views/integration-settings.php:51
645
+ msgid "Enabled?"
646
+ msgstr "Povolit?"
647
 
648
+ #: includes/integrations/views/integration-settings.php:55
649
  msgid ""
650
+ "Enable the %s integration? This will add a sign-up checkbox to the form."
651
+ msgstr "Povolit %s vložení? Tímto přidáte do formuláře zaškrtávací pole pro odběr novinek."
 
 
652
 
653
+ #: includes/integrations/views/integration-settings.php:64
654
+ msgid "Implicit?"
655
+ msgstr "Určitě?"
656
 
657
+ #: includes/integrations/views/integration-settings.php:68
658
+ msgid ""
659
+ "Select \"no\" if you want to ask your visitors before they are subscribed "
660
+ "(recommended)."
661
+ msgstr ""
662
 
663
+ #: includes/integrations/views/integration-settings.php:78
664
+ msgid "MailChimp Lists"
665
+ msgstr "Seznam adres z MailChimpu"
666
 
667
+ #: includes/integrations/views/integration-settings.php:89
 
668
  msgid ""
669
+ "Select the list(s) to which people who check the checkbox should be "
670
+ "subscribed."
671
+ msgstr "Vyberte jeden či více seznamů adres, do kterých budou zařazeni všichni uživatelé, kteří se přihlásí k odběru novinek."
672
+
673
+ #: includes/integrations/views/integration-settings.php:102
674
+ msgid "Checkbox label text"
675
+ msgstr "Popisek u zaškrtávacího políčka"
676
+
677
+ #: includes/integrations/views/integration-settings.php:105
678
+ msgid "HTML tags like %s are allowed in the label text."
679
+ msgstr "HTML tagy %s jsou v popisku povoleny."
680
+
681
+ #: includes/integrations/views/integration-settings.php:115
682
+ msgid "Pre-check the checkbox?"
683
+ msgstr "Chcete zaškrtávat políčko jako výchozí stav?"
684
+
685
+ #: includes/integrations/views/integration-settings.php:119
686
+ msgid "Select \"yes\" if the checkbox should be pre-checked."
687
+ msgstr "Zvolte \"ano\" pokud má týt checkbox zaškrtnutý."
688
+
689
+ #: includes/integrations/views/integration-settings.php:127
690
+ msgid "Load some default CSS?"
691
+ msgstr "Chcete načíst výchozí CSS styly?"
692
+
693
+ #: includes/integrations/views/integration-settings.php:131
694
+ msgid "Select \"yes\" if the checkbox appears in a weird place."
695
+ msgstr "Pokud se vám zaškrtávací políčko nezobrazuje dobře, vyberte \"Ano\"."
696
 
697
+ #: includes/integrations/views/integration-settings.php:138
698
+ msgid "Double opt-in?"
699
+ msgstr "Vyžadujete po uživatelích potvrzení e-mailu?"
700
+
701
+ #: includes/integrations/views/integration-settings.php:159
702
+ msgid "Send Welcome Email?"
703
+ msgstr "Chcete posílat uvítací e-mail?"
704
+
705
+ #: includes/integrations/views/integration-settings.php:244
706
+ msgid ""
707
+ "The selected MailChimp lists require non-default fields, which may prevent "
708
+ "this integration from working."
709
+ msgstr ""
710
 
711
+ #: includes/integrations/views/integration-settings.php:245
712
  msgid ""
713
+ "Please ensure you <a href=\"%s\">configure the plugin to send all required "
714
+ "fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
715
+ "sure only the email & name fields are marked as required fields for the "
716
+ "selected list(s)."
717
  msgstr ""
718
 
719
+ #: includes/integrations/views/integrations.php:30
720
+ msgid "Enabled"
721
+ msgstr "Povoleno"
722
 
723
+ #: includes/integrations/views/integrations.php:31
724
+ msgid "Name"
725
+ msgstr "Jméno"
726
 
727
+ #: includes/integrations/views/integrations.php:32
728
+ msgid "Description"
729
+ msgstr "Popis"
730
 
731
+ #: includes/integrations/views/integrations.php:50
732
+ msgid ""
733
+ "This integration is enabled by default as it requires manual actions to "
734
+ "work."
735
+ msgstr "Toto spojení je ve výchozím nastavení povoleno jako vyžadující další uživatelský zásah."
736
 
737
+ #: includes/integrations/views/integrations.php:57
738
+ msgid "Configure this integration"
739
+ msgstr "Nastavit toto spojení"
740
 
741
+ #: includes/views/general-settings.php:18
742
+ msgid "General Settings"
743
+ msgstr "Nastavení"
744
 
745
+ #: includes/views/general-settings.php:35
746
+ msgid "Status"
747
+ msgstr "Stav"
748
 
749
+ #: includes/views/general-settings.php:39
750
+ msgid "CONNECTED"
751
+ msgstr "PŘIPOJENO"
752
+
753
+ #: includes/views/general-settings.php:41
754
+ msgid "NOT CONNECTED"
755
+ msgstr "NEPŘIPOJENO"
756
+
757
+ #: includes/views/general-settings.php:48
758
+ msgid "API Key"
759
+ msgstr "API klíč"
760
+
761
+ #: includes/views/general-settings.php:50
762
+ msgid "Your MailChimp API key"
763
+ msgstr "Váš API klíč z MailChimpu"
764
+
765
+ #: includes/views/general-settings.php:52
766
+ msgid "The API key for connecting with your MailChimp account."
767
+ msgstr "API key pro spojení s MailChimp účtem"
768
 
769
+ #: includes/views/general-settings.php:53
770
+ msgid "Get your API key here."
771
+ msgstr "Vygenerovat API klíč."
772
+
773
+ #: includes/views/general-settings.php:65
774
+ msgid "Usage Tracking"
775
+ msgstr "Sledování využití"
776
+
777
+ #: includes/views/general-settings.php:71
778
+ msgid ""
779
+ "Allow us to anonymously track how this plugin is used to help us make it "
780
+ "better fit your needs."
781
+ msgstr "Umožněte nám anonymně sledovat, jak je tento plugin využíván. Pomůžete nám, abychom jej mohli upravit, tak aby lépe vyhovoval vašim potřebám."
782
+
783
+ #: includes/views/general-settings.php:73
784
+ msgid "This is what we track."
785
+ msgstr "Tohle sledujeme."
786
+
787
+ #: includes/views/parts/admin-footer.php:11
788
+ msgid ""
789
+ "MailChimp for WordPress is in need of translations. Is the plugin not "
790
+ "translated in your language or do you spot errors with the current "
791
+ "translations? Helping out is easy! Head over to <a href=\"%s\">the "
792
+ "translation project and click \"help translate\"</a>."
793
+ msgstr ""
794
 
795
+ #: includes/views/parts/admin-footer.php:31
796
+ msgid ""
797
+ "This plugin is not developed by or affiliated with MailChimp in any way."
798
+ msgstr "Tento plugin není vyvíjen ve spolupráci s MailChimpem."
799
 
800
+ #: includes/views/parts/lists-overview.php:1
801
+ msgid "Your MailChimp Account"
802
+ msgstr "Váš účet u MailChimpu"
 
803
 
804
+ #: includes/views/parts/lists-overview.php:2
805
+ msgid ""
806
+ "The table below shows your MailChimp lists and their details. If you just "
807
+ "applied changes to your MailChimp lists, please use the following button to "
808
+ "renew the cached lists configuration."
809
+ msgstr ""
810
 
811
+ #: includes/views/parts/lists-overview.php:14
812
+ msgid "No lists were found in your MailChimp account"
813
+ msgstr "Ve Vašem účtu v MailChimpu jsme nenašeli žádné seznamy adres."
 
814
 
815
+ #: includes/views/parts/lists-overview.php:16
816
+ msgid "A total of %d lists were found in your MailChimp account."
817
+ msgstr "Ve vašem MailChimp účtu bylo nalezeno celkem %d seznamů odběratelů."
 
818
 
819
+ #: includes/views/parts/lists-overview.php:21
820
+ msgid "List Name"
821
+ msgstr "Název seznamu"
 
822
 
823
+ #: includes/views/parts/lists-overview.php:22
824
+ msgid "ID"
825
+ msgstr "ID"
 
826
 
827
+ #: includes/views/parts/lists-overview.php:23
828
+ msgid "Subscribers"
829
+ msgstr "Registrovaní odběratelé"
 
830
 
831
+ #: includes/views/parts/lists-overview.php:45
832
+ msgid "Edit this list in MailChimp"
833
+ msgstr "Upravit tento seznam odběratelů v MailChimpu"
 
834
 
835
+ #: includes/views/parts/lists-overview.php:59
836
+ msgid "%s (%s) with field type %s."
837
+ msgstr ""
 
838
 
839
+ #: includes/views/parts/lists-overview.php:83
840
+ msgid "%s (ID: %s) with type %s."
841
+ msgstr ""
 
842
 
843
+ #: integrations/contact-form-7/admin-before.php:2
844
+ msgid ""
845
+ "To integrate with Contact Form 7, configure the settings below and then add "
846
+ "%s to your CF7 form mark-up."
847
+ msgstr ""
848
 
849
+ #: integrations/custom/admin-before.php:2
850
+ msgid ""
851
+ "To get a custom integration to work, include the following HTML in the form "
852
+ "you are trying to integrate with."
853
  msgstr ""
854
 
855
+ #: integrations/woocommerce/class-woocommerce.php:102
856
+ msgid "Order #%d"
857
+ msgstr "Objednávka #%d"
858
 
859
+ #. Plugin Name of the plugin/theme
860
+ msgid "MailChimp for WordPress"
861
+ msgstr "MailChimp pro WordPress"
862
 
863
  #. Plugin URI of the plugin/theme
864
+ msgid ""
865
+ "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
866
+ "wp&utm_campaign=plugins-page"
867
+ msgstr "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
868
 
869
  #. Description of the plugin/theme
870
+ msgid ""
871
+ "MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
872
+ "methods to your site."
873
+ msgstr "MailChimp pro WordPress od ibericode. Vložte některou z vysoce efektivních registračních metod přímo do vašich webových stránek."
874
 
875
  #. Author of the plugin/theme
876
+ msgid "ibericode"
877
+ msgstr "ibericode"
878
 
879
  #. Author URI of the plugin/theme
880
+ msgid "https://ibericode.com/"
881
+ msgstr "https://ibericode.com/"
languages/mailchimp-for-wp-de_DE.mo CHANGED
Binary file
languages/mailchimp-for-wp-de_DE.po CHANGED
@@ -7,17 +7,19 @@
7
  # Freakspot, 2014
8
  # Freakspot, 2014
9
  # Jochen Gererstorfer, 2015
 
10
  # S L <gitter.s@gmx.de>, 2015
11
  # Stefan Oderbolz <oderbolz@gmail.com>, 2015
12
  # Sven B. <sven.balje@esb-stade.de>, 2015
 
13
  # Uwe <uwe.keim@gmail.com>, 2015
14
  msgid ""
15
  msgstr ""
16
  "Project-Id-Version: MailChimp for WordPress\n"
17
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
18
  "POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
19
- "PO-Revision-Date: 2015-12-15 21:23+0000\n"
20
- "Last-Translator: Sven B. <sven.balje@esb-stade.de>\n"
21
  "Language-Team: German (Germany) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_DE/)\n"
22
  "MIME-Version: 1.0\n"
23
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -87,7 +89,7 @@ msgstr "Dokumentation"
87
  #: includes/admin/class-admin.php:167
88
  msgid ""
89
  "Success! The cached configuration for your MailChimp lists has been renewed."
90
- msgstr ""
91
 
92
  #: includes/admin/class-admin.php:257
93
  msgid ""
@@ -112,17 +114,17 @@ msgstr "Wechsle zu MailChimp für WordPress Pro"
112
  msgid ""
113
  "Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
114
  "features</a> for an even better plugin."
115
- msgstr ""
116
 
117
  #: includes/admin/class-ads.php:62
118
  msgid "More subscribers, better newsletters."
119
- msgstr ""
120
 
121
  #: includes/admin/class-ads.php:63
122
  msgid ""
123
  "Learn how to best grow your lists & write better emails by subscribing to "
124
  "our monthly tips."
125
- msgstr ""
126
 
127
  #: includes/admin/class-ads.php:66
128
  msgid "Email Address"
@@ -138,15 +140,15 @@ msgstr "abonnieren"
138
 
139
  #: includes/admin/class-usage-tracking.php:57
140
  msgid "Once a month"
141
- msgstr ""
142
 
143
  #: includes/admin/migrations/3.0-form-1-post-type.php:35
144
  msgid "Default sign-up form"
145
- msgstr ""
146
 
147
  #: includes/class-api.php:83
148
  msgid "Read more about common connectivity issues."
149
- msgstr ""
150
 
151
  #: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
152
  #: includes/forms/views/edit-form.php:17
@@ -155,11 +157,11 @@ msgstr "Formulare"
155
 
156
  #: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
157
  msgid "<strong>Success!</strong> Form successfully saved."
158
- msgstr ""
159
 
160
  #: includes/forms/class-admin.php:176
161
  msgid "Preview form"
162
- msgstr "Vorschaufenster"
163
 
164
  #: includes/forms/class-admin.php:279
165
  msgid "Form not found."
@@ -179,7 +181,7 @@ msgstr "Ersetzt mit der Formular-Antwort (Fehler- oder Erfolgsmeldungen)."
179
 
180
  #: includes/forms/class-form-tags.php:56
181
  msgid "Data from the URL or a submitted form."
182
- msgstr ""
183
 
184
  #: includes/forms/class-form-tags.php:62
185
  #: includes/integrations/class-integration-tags.php:45
@@ -188,7 +190,7 @@ msgstr "Ersetzten mit der Nummer von Abonnenten der gewählten Listen"
188
 
189
  #: includes/forms/class-form-tags.php:67
190
  msgid "The email address of the current visitor (if known)."
191
- msgstr ""
192
 
193
  #: includes/forms/class-form-tags.php:72
194
  msgid "The URL of the page."
@@ -216,11 +218,11 @@ msgstr "Die IP-Adresse des Besuchers. Beispiel: %s."
216
 
217
  #: includes/forms/class-form-tags.php:102
218
  msgid "The property of the currently logged-in user."
219
- msgstr ""
220
 
221
  #: includes/forms/class-form.php:128
222
  msgid "There is no form with ID %d, perhaps it was deleted?"
223
- msgstr ""
224
 
225
  #: includes/forms/class-widget.php:26
226
  msgid "Newsletter"
@@ -250,19 +252,19 @@ msgstr "Neues Formular erstellen"
250
 
251
  #: includes/forms/views/add-form.php:27
252
  msgid "What is the name of this form?"
253
- msgstr ""
254
 
255
  #: includes/forms/views/add-form.php:30
256
  msgid "Enter your form title.."
257
- msgstr ""
258
 
259
  #: includes/forms/views/add-form.php:37
260
  msgid "To which MailChimp lists should this form subscribe?"
261
- msgstr ""
262
 
263
  #: includes/forms/views/add-form.php:54
264
  msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
265
- msgstr ""
266
 
267
  #: includes/forms/views/edit-form.php:4
268
  msgid "Fields"
@@ -274,7 +276,7 @@ msgstr "Nachrichten"
274
 
275
  #: includes/forms/views/edit-form.php:7
276
  msgid "Appearance"
277
- msgstr ""
278
 
279
  #: includes/forms/views/edit-form.php:15
280
  #: includes/integrations/views/integration-settings.php:8
@@ -289,15 +291,15 @@ msgstr "Formular editieren"
289
 
290
  #: includes/forms/views/edit-form.php:45
291
  msgid "Enter form title here"
292
- msgstr ""
293
 
294
  #: includes/forms/views/edit-form.php:46
295
  msgid "Enter the title of your sign-up form"
296
- msgstr ""
297
 
298
  #: includes/forms/views/edit-form.php:54
299
  msgid "Get shortcode"
300
- msgstr ""
301
 
302
  #: includes/forms/views/edit-form.php:59
303
  msgid "Preview this form"
@@ -312,15 +314,15 @@ msgstr "Mehr Felder anlegen"
312
  msgid ""
313
  "To add more fields to your form, you will need to create those fields in "
314
  "MailChimp first."
315
- msgstr ""
316
 
317
  #: includes/forms/views/parts/add-fields-help.php:12
318
  msgid "Here's how:"
319
- msgstr ""
320
 
321
  #: includes/forms/views/parts/add-fields-help.php:17
322
  msgid "Log in to your MailChimp account."
323
- msgstr ""
324
 
325
  #: includes/forms/views/parts/add-fields-help.php:22
326
  msgid "Add list fields to any of your selected lists."
@@ -415,7 +417,7 @@ msgstr "Formular Felder"
415
 
416
  #: includes/forms/views/tabs/form-fields.php:19
417
  msgid "Enter the HTML code for your form fields.."
418
- msgstr ""
419
 
420
  #: includes/forms/views/tabs/form-fields.php:27
421
  msgid "Your form is missing the following (required) form fields:"
@@ -507,7 +509,7 @@ msgstr "Formulareinstellungen"
507
 
508
  #: includes/forms/views/tabs/form-settings.php:5
509
  msgid "MailChimp specific settings"
510
- msgstr ""
511
 
512
  #: includes/forms/views/tabs/form-settings.php:12
513
  msgid "Lists this form subscribes to"
@@ -526,7 +528,7 @@ msgstr "Wähle die Liste(n), welche abonniert wird, wenn das Formular abgeschick
526
 
527
  #: includes/forms/views/tabs/form-settings.php:35
528
  msgid "Use double opt-in?"
529
- msgstr ""
530
 
531
  #: includes/forms/views/tabs/form-settings.php:39
532
  #: includes/forms/views/tabs/form-settings.php:54
@@ -571,7 +573,7 @@ msgstr "Wähle \"ja\" wenn du möchtest, dass die E-Mail Adresse bestätigt werd
571
 
572
  #: includes/forms/views/tabs/form-settings.php:50
573
  msgid "Send final welcome email?"
574
- msgstr ""
575
 
576
  #: includes/forms/views/tabs/form-settings.php:60
577
  #: includes/integrations/views/integration-settings.php:169
@@ -611,7 +613,7 @@ msgstr ""
611
 
612
  #: includes/forms/views/tabs/form-settings.php:104
613
  msgid "Form behaviour"
614
- msgstr ""
615
 
616
  #: includes/forms/views/tabs/form-settings.php:111
617
  msgid "Hide form after a successful sign-up?"
@@ -641,11 +643,11 @@ msgstr "Leer lassen oder <code>0</code> eingeben für keine Weiterleitung. Anson
641
  #: includes/integrations/views/integrations.php:9
642
  #: includes/integrations/views/integrations.php:17
643
  msgid "Integrations"
644
- msgstr ""
645
 
646
  #: includes/integrations/views/integration-settings.php:20
647
  msgid "%s integration"
648
- msgstr ""
649
 
650
  #: includes/integrations/views/integration-settings.php:51
651
  msgid "Enabled?"
@@ -654,7 +656,7 @@ msgstr "Aktiviert?"
654
  #: includes/integrations/views/integration-settings.php:55
655
  msgid ""
656
  "Enable the %s integration? This will add a sign-up checkbox to the form."
657
- msgstr ""
658
 
659
  #: includes/integrations/views/integration-settings.php:64
660
  msgid "Implicit?"
@@ -664,7 +666,7 @@ msgstr ""
664
  msgid ""
665
  "Select \"no\" if you want to ask your visitors before they are subscribed "
666
  "(recommended)."
667
- msgstr ""
668
 
669
  #: includes/integrations/views/integration-settings.php:78
670
  msgid "MailChimp Lists"
@@ -690,7 +692,7 @@ msgstr "Die Checkbox vorauswählen?"
690
 
691
  #: includes/integrations/views/integration-settings.php:119
692
  msgid "Select \"yes\" if the checkbox should be pre-checked."
693
- msgstr ""
694
 
695
  #: includes/integrations/views/integration-settings.php:127
696
  msgid "Load some default CSS?"
@@ -738,11 +740,11 @@ msgstr "Beschreibung"
738
  msgid ""
739
  "This integration is enabled by default as it requires manual actions to "
740
  "work."
741
- msgstr ""
742
 
743
  #: includes/integrations/views/integrations.php:57
744
  msgid "Configure this integration"
745
- msgstr ""
746
 
747
  #: includes/views/general-settings.php:18
748
  msgid "General Settings"
@@ -750,7 +752,7 @@ msgstr "Allgemeine Einstellungen"
750
 
751
  #: includes/views/general-settings.php:35
752
  msgid "Status"
753
- msgstr ""
754
 
755
  #: includes/views/general-settings.php:39
756
  msgid "CONNECTED"
@@ -770,7 +772,7 @@ msgstr "Dein MailChimp API Schlüssel"
770
 
771
  #: includes/views/general-settings.php:52
772
  msgid "The API key for connecting with your MailChimp account."
773
- msgstr ""
774
 
775
  #: includes/views/general-settings.php:53
776
  msgid "Get your API key here."
@@ -778,17 +780,17 @@ msgstr "Den API Schlüssel bekommst du hier."
778
 
779
  #: includes/views/general-settings.php:65
780
  msgid "Usage Tracking"
781
- msgstr ""
782
 
783
  #: includes/views/general-settings.php:71
784
  msgid ""
785
  "Allow us to anonymously track how this plugin is used to help us make it "
786
  "better fit your needs."
787
- msgstr ""
788
 
789
  #: includes/views/general-settings.php:73
790
  msgid "This is what we track."
791
- msgstr ""
792
 
793
  #: includes/views/parts/admin-footer.php:11
794
  msgid ""
@@ -824,7 +826,7 @@ msgstr ""
824
 
825
  #: includes/views/parts/lists-overview.php:21
826
  msgid "List Name"
827
- msgstr ""
828
 
829
  #: includes/views/parts/lists-overview.php:22
830
  msgid "ID"
@@ -832,11 +834,11 @@ msgstr "ID"
832
 
833
  #: includes/views/parts/lists-overview.php:23
834
  msgid "Subscribers"
835
- msgstr ""
836
 
837
  #: includes/views/parts/lists-overview.php:45
838
  msgid "Edit this list in MailChimp"
839
- msgstr ""
840
 
841
  #: includes/views/parts/lists-overview.php:59
842
  msgid "%s (%s) with field type %s."
@@ -860,7 +862,7 @@ msgstr ""
860
 
861
  #: integrations/woocommerce/class-woocommerce.php:102
862
  msgid "Order #%d"
863
- msgstr ""
864
 
865
  #. Plugin Name of the plugin/theme
866
  msgid "MailChimp for WordPress"
@@ -876,7 +878,7 @@ msgstr ""
876
  msgid ""
877
  "MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
878
  "methods to your site."
879
- msgstr ""
880
 
881
  #. Author of the plugin/theme
882
  msgid "ibericode"
7
  # Freakspot, 2014
8
  # Freakspot, 2014
9
  # Jochen Gererstorfer, 2015
10
+ # Maik Kuszynski <kuszynski90@gmail.com>, 2016
11
  # S L <gitter.s@gmx.de>, 2015
12
  # Stefan Oderbolz <oderbolz@gmail.com>, 2015
13
  # Sven B. <sven.balje@esb-stade.de>, 2015
14
+ # Tobias Vogler <tobi@tvdesign.ch>, 2016
15
  # Uwe <uwe.keim@gmail.com>, 2015
16
  msgid ""
17
  msgstr ""
18
  "Project-Id-Version: MailChimp for WordPress\n"
19
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
20
  "POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
21
+ "PO-Revision-Date: 2016-05-20 12:49+0000\n"
22
+ "Last-Translator: Maik Kuszynski <kuszynski90@gmail.com>\n"
23
  "Language-Team: German (Germany) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_DE/)\n"
24
  "MIME-Version: 1.0\n"
25
  "Content-Type: text/plain; charset=UTF-8\n"
89
  #: includes/admin/class-admin.php:167
90
  msgid ""
91
  "Success! The cached configuration for your MailChimp lists has been renewed."
92
+ msgstr "Perfekt!Die gecachte Konfiguration deiner MailChimp-Listen wurde erfolgreich aktualisiert."
93
 
94
  #: includes/admin/class-admin.php:257
95
  msgid ""
114
  msgid ""
115
  "Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
116
  "features</a> for an even better plugin."
117
+ msgstr "Gefällt dir dieses Plugin? <a href=\"%s\">Kauf unser Premium-Bundle</a> für ein noch besseres Plugin."
118
 
119
  #: includes/admin/class-ads.php:62
120
  msgid "More subscribers, better newsletters."
121
+ msgstr "Mehr Abonnenten, bessere Newsletter."
122
 
123
  #: includes/admin/class-ads.php:63
124
  msgid ""
125
  "Learn how to best grow your lists & write better emails by subscribing to "
126
  "our monthly tips."
127
+ msgstr "Lerne wie die deine Listen am schnellsten wachsen & schreibe bessere E-Mail indem du unsere monatlichen Tipps abonnierst."
128
 
129
  #: includes/admin/class-ads.php:66
130
  msgid "Email Address"
140
 
141
  #: includes/admin/class-usage-tracking.php:57
142
  msgid "Once a month"
143
+ msgstr "Einmal im Monat."
144
 
145
  #: includes/admin/migrations/3.0-form-1-post-type.php:35
146
  msgid "Default sign-up form"
147
+ msgstr "Standard Anmelde-Formular."
148
 
149
  #: includes/class-api.php:83
150
  msgid "Read more about common connectivity issues."
151
+ msgstr "Erfahre mehr über häufige Verbindungsprobleme."
152
 
153
  #: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
154
  #: includes/forms/views/edit-form.php:17
157
 
158
  #: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
159
  msgid "<strong>Success!</strong> Form successfully saved."
160
+ msgstr "Das Formular wurde erfolgreich gespeichert."
161
 
162
  #: includes/forms/class-admin.php:176
163
  msgid "Preview form"
164
+ msgstr "Vorschau Formular"
165
 
166
  #: includes/forms/class-admin.php:279
167
  msgid "Form not found."
181
 
182
  #: includes/forms/class-form-tags.php:56
183
  msgid "Data from the URL or a submitted form."
184
+ msgstr "URL- oder Formulardaten."
185
 
186
  #: includes/forms/class-form-tags.php:62
187
  #: includes/integrations/class-integration-tags.php:45
190
 
191
  #: includes/forms/class-form-tags.php:67
192
  msgid "The email address of the current visitor (if known)."
193
+ msgstr "Die E-Mail-Adresse des aktuellen Besuchers (wenn bekannt)."
194
 
195
  #: includes/forms/class-form-tags.php:72
196
  msgid "The URL of the page."
218
 
219
  #: includes/forms/class-form-tags.php:102
220
  msgid "The property of the currently logged-in user."
221
+ msgstr "Die Eigenschaften des aktuell eingeloggten Benutzers."
222
 
223
  #: includes/forms/class-form.php:128
224
  msgid "There is no form with ID %d, perhaps it was deleted?"
225
+ msgstr "Das Formular mit ID %d existiert nicht, möglicherweise wurde es gelöscht."
226
 
227
  #: includes/forms/class-widget.php:26
228
  msgid "Newsletter"
252
 
253
  #: includes/forms/views/add-form.php:27
254
  msgid "What is the name of this form?"
255
+ msgstr "Was ist der Name dieses Formulars?"
256
 
257
  #: includes/forms/views/add-form.php:30
258
  msgid "Enter your form title.."
259
+ msgstr "Formular-Titel eingeben."
260
 
261
  #: includes/forms/views/add-form.php:37
262
  msgid "To which MailChimp lists should this form subscribe?"
263
+ msgstr "Welche MailChimp-Listen sollen mit diesem Formular abonniert werden?"
264
 
265
  #: includes/forms/views/add-form.php:54
266
  msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
267
+ msgstr "Keine Listen gefunden. Hast du deinen <a href=\"%s\">MailChimp-Account verbunden</a>?"
268
 
269
  #: includes/forms/views/edit-form.php:4
270
  msgid "Fields"
276
 
277
  #: includes/forms/views/edit-form.php:7
278
  msgid "Appearance"
279
+ msgstr "Aussehen"
280
 
281
  #: includes/forms/views/edit-form.php:15
282
  #: includes/integrations/views/integration-settings.php:8
291
 
292
  #: includes/forms/views/edit-form.php:45
293
  msgid "Enter form title here"
294
+ msgstr "Formular-Titel eingeben."
295
 
296
  #: includes/forms/views/edit-form.php:46
297
  msgid "Enter the title of your sign-up form"
298
+ msgstr "Titel deines Formulars eingeben."
299
 
300
  #: includes/forms/views/edit-form.php:54
301
  msgid "Get shortcode"
302
+ msgstr "Shortcode anzeigen"
303
 
304
  #: includes/forms/views/edit-form.php:59
305
  msgid "Preview this form"
314
  msgid ""
315
  "To add more fields to your form, you will need to create those fields in "
316
  "MailChimp first."
317
+ msgstr "Um zusätzliche Felder zum Formular hinzuzufügen, musst du diese zuerst in MailChimp erstellen."
318
 
319
  #: includes/forms/views/parts/add-fields-help.php:12
320
  msgid "Here's how:"
321
+ msgstr "So gehts:"
322
 
323
  #: includes/forms/views/parts/add-fields-help.php:17
324
  msgid "Log in to your MailChimp account."
325
+ msgstr "Melde dich in deinem MailChimp Konto an."
326
 
327
  #: includes/forms/views/parts/add-fields-help.php:22
328
  msgid "Add list fields to any of your selected lists."
417
 
418
  #: includes/forms/views/tabs/form-fields.php:19
419
  msgid "Enter the HTML code for your form fields.."
420
+ msgstr "HTML-Code für die Formularfelder eingeben."
421
 
422
  #: includes/forms/views/tabs/form-fields.php:27
423
  msgid "Your form is missing the following (required) form fields:"
509
 
510
  #: includes/forms/views/tabs/form-settings.php:5
511
  msgid "MailChimp specific settings"
512
+ msgstr "MailChimp-spezifische Einstellungen."
513
 
514
  #: includes/forms/views/tabs/form-settings.php:12
515
  msgid "Lists this form subscribes to"
528
 
529
  #: includes/forms/views/tabs/form-settings.php:35
530
  msgid "Use double opt-in?"
531
+ msgstr "Double-Opt-In verwenden?"
532
 
533
  #: includes/forms/views/tabs/form-settings.php:39
534
  #: includes/forms/views/tabs/form-settings.php:54
573
 
574
  #: includes/forms/views/tabs/form-settings.php:50
575
  msgid "Send final welcome email?"
576
+ msgstr "Willkommens-Mail senden?"
577
 
578
  #: includes/forms/views/tabs/form-settings.php:60
579
  #: includes/integrations/views/integration-settings.php:169
613
 
614
  #: includes/forms/views/tabs/form-settings.php:104
615
  msgid "Form behaviour"
616
+ msgstr "Formular-Verhalten"
617
 
618
  #: includes/forms/views/tabs/form-settings.php:111
619
  msgid "Hide form after a successful sign-up?"
643
  #: includes/integrations/views/integrations.php:9
644
  #: includes/integrations/views/integrations.php:17
645
  msgid "Integrations"
646
+ msgstr "Integrationen"
647
 
648
  #: includes/integrations/views/integration-settings.php:20
649
  msgid "%s integration"
650
+ msgstr "%s-Integration"
651
 
652
  #: includes/integrations/views/integration-settings.php:51
653
  msgid "Enabled?"
656
  #: includes/integrations/views/integration-settings.php:55
657
  msgid ""
658
  "Enable the %s integration? This will add a sign-up checkbox to the form."
659
+ msgstr "%s-Integration aktivieren? Es wird eine Sign-Up-Checkbox zum Formular hinzugefügt."
660
 
661
  #: includes/integrations/views/integration-settings.php:64
662
  msgid "Implicit?"
666
  msgid ""
667
  "Select \"no\" if you want to ask your visitors before they are subscribed "
668
  "(recommended)."
669
+ msgstr "Wähle \"Nein\" wenn der Benutzer das Abonnement via E-Mail bestätigen soll (empfohlen)."
670
 
671
  #: includes/integrations/views/integration-settings.php:78
672
  msgid "MailChimp Lists"
692
 
693
  #: includes/integrations/views/integration-settings.php:119
694
  msgid "Select \"yes\" if the checkbox should be pre-checked."
695
+ msgstr "Wähle \"Ja\" wenn die Checkbox standardmässig angekreuzt sein soll."
696
 
697
  #: includes/integrations/views/integration-settings.php:127
698
  msgid "Load some default CSS?"
740
  msgid ""
741
  "This integration is enabled by default as it requires manual actions to "
742
  "work."
743
+ msgstr "Diese Integration ist standardmässig aktiviert, da sie manuelle Massnahmen benötigt, um zu funktionieren."
744
 
745
  #: includes/integrations/views/integrations.php:57
746
  msgid "Configure this integration"
747
+ msgstr "Integration konfigurieren"
748
 
749
  #: includes/views/general-settings.php:18
750
  msgid "General Settings"
752
 
753
  #: includes/views/general-settings.php:35
754
  msgid "Status"
755
+ msgstr "Status"
756
 
757
  #: includes/views/general-settings.php:39
758
  msgid "CONNECTED"
772
 
773
  #: includes/views/general-settings.php:52
774
  msgid "The API key for connecting with your MailChimp account."
775
+ msgstr "Der API-Key aus deinem MailChimp-Account."
776
 
777
  #: includes/views/general-settings.php:53
778
  msgid "Get your API key here."
780
 
781
  #: includes/views/general-settings.php:65
782
  msgid "Usage Tracking"
783
+ msgstr "Aufzeichnung des Nutzerverhaltens"
784
 
785
  #: includes/views/general-settings.php:71
786
  msgid ""
787
  "Allow us to anonymously track how this plugin is used to help us make it "
788
  "better fit your needs."
789
+ msgstr "Erlaube uns, die Benutzung des Plugins anonym aufzuzeichnen, um es besser an das Nutzerverhalten anzupassen."
790
 
791
  #: includes/views/general-settings.php:73
792
  msgid "This is what we track."
793
+ msgstr "Was wir aufzeichnen:"
794
 
795
  #: includes/views/parts/admin-footer.php:11
796
  msgid ""
826
 
827
  #: includes/views/parts/lists-overview.php:21
828
  msgid "List Name"
829
+ msgstr "Name der Liste"
830
 
831
  #: includes/views/parts/lists-overview.php:22
832
  msgid "ID"
834
 
835
  #: includes/views/parts/lists-overview.php:23
836
  msgid "Subscribers"
837
+ msgstr "Abonnenten"
838
 
839
  #: includes/views/parts/lists-overview.php:45
840
  msgid "Edit this list in MailChimp"
841
+ msgstr "Liste in MailChimp bearbeiten."
842
 
843
  #: includes/views/parts/lists-overview.php:59
844
  msgid "%s (%s) with field type %s."
862
 
863
  #: integrations/woocommerce/class-woocommerce.php:102
864
  msgid "Order #%d"
865
+ msgstr "Bestellung #%d"
866
 
867
  #. Plugin Name of the plugin/theme
868
  msgid "MailChimp for WordPress"
878
  msgid ""
879
  "MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
880
  "methods to your site."
881
+ msgstr "MailChimp für WordPress von ibericode. Erweitert deine Site mit diversen effektiven Sign-Up-Methoden."
882
 
883
  #. Author of the plugin/theme
884
  msgid "ibericode"
languages/mailchimp-for-wp-es_ES.mo CHANGED
Binary file
languages/mailchimp-for-wp-es_ES.po CHANGED
@@ -4,6 +4,7 @@
4
  # Carlos Faria <carlosgarciafaria@gmail.com>, 2015
5
  # eldietista <info@eldietista.es>, 2014
6
  # eldietista <info@eldietista.es>, 2014
 
7
  # José Manuel Lucas <josemanuel@jmlweb.es>, 2015
8
  # jose Miranda <joseamirandavelez@gmail.com>, 2014
9
  # Judith Hita <jud.sanchez.hita@gmail.com>, 2016
@@ -21,8 +22,8 @@ msgstr ""
21
  "Project-Id-Version: MailChimp for WordPress\n"
22
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
23
  "POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
24
- "PO-Revision-Date: 2016-02-11 12:10+0000\n"
25
- "Last-Translator: Kiyoaki Matsugae\n"
26
  "Language-Team: Spanish (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/es_ES/)\n"
27
  "MIME-Version: 1.0\n"
28
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -74,7 +75,7 @@ msgstr "El correo proporcionado no está suscrito."
74
 
75
  #: config/default-form-messages.php:33
76
  msgid "Please select at least one list."
77
- msgstr "Selecciona al menos una lista."
78
 
79
  #: config/default-integration-options.php:5
80
  msgid "Sign me up for the newsletter!"
@@ -127,7 +128,7 @@ msgstr "Más suscritos, mejores newsletters."
127
  msgid ""
128
  "Learn how to best grow your lists & write better emails by subscribing to "
129
  "our monthly tips."
130
- msgstr ""
131
 
132
  #: includes/admin/class-ads.php:66
133
  msgid "Email Address"
@@ -184,7 +185,7 @@ msgstr "Se reemplaza por la respuesta del formulario (mensajes de error ó éxit
184
 
185
  #: includes/forms/class-form-tags.php:56
186
  msgid "Data from the URL or a submitted form."
187
- msgstr ""
188
 
189
  #: includes/forms/class-form-tags.php:62
190
  #: includes/integrations/class-integration-tags.php:45
@@ -225,7 +226,7 @@ msgstr ""
225
 
226
  #: includes/forms/class-form.php:128
227
  msgid "There is no form with ID %d, perhaps it was deleted?"
228
- msgstr ""
229
 
230
  #: includes/forms/class-widget.php:26
231
  msgid "Newsletter"
@@ -317,19 +318,19 @@ msgstr "Añadir más campos"
317
  msgid ""
318
  "To add more fields to your form, you will need to create those fields in "
319
  "MailChimp first."
320
- msgstr ""
321
 
322
  #: includes/forms/views/parts/add-fields-help.php:12
323
  msgid "Here's how:"
324
- msgstr ""
325
 
326
  #: includes/forms/views/parts/add-fields-help.php:17
327
  msgid "Log in to your MailChimp account."
328
- msgstr ""
329
 
330
  #: includes/forms/views/parts/add-fields-help.php:22
331
  msgid "Add list fields to any of your selected lists."
332
- msgstr ""
333
 
334
  #: includes/forms/views/parts/add-fields-help.php:23
335
  msgid "Clicking the following links will take you to the right screen."
@@ -695,7 +696,7 @@ msgstr "¿Dejamos pre-marcada la casilla de verificación?"
695
 
696
  #: includes/integrations/views/integration-settings.php:119
697
  msgid "Select \"yes\" if the checkbox should be pre-checked."
698
- msgstr ""
699
 
700
  #: includes/integrations/views/integration-settings.php:127
701
  msgid "Load some default CSS?"
@@ -817,7 +818,7 @@ msgid ""
817
  "The table below shows your MailChimp lists and their details. If you just "
818
  "applied changes to your MailChimp lists, please use the following button to "
819
  "renew the cached lists configuration."
820
- msgstr ""
821
 
822
  #: includes/views/parts/lists-overview.php:14
823
  msgid "No lists were found in your MailChimp account"
@@ -825,7 +826,7 @@ msgstr "No se encontró ninguna lista en tu cuenta de MailChimp"
825
 
826
  #: includes/views/parts/lists-overview.php:16
827
  msgid "A total of %d lists were found in your MailChimp account."
828
- msgstr ""
829
 
830
  #: includes/views/parts/lists-overview.php:21
831
  msgid "List Name"
@@ -845,27 +846,27 @@ msgstr "Editar esta lista en MailChimp"
845
 
846
  #: includes/views/parts/lists-overview.php:59
847
  msgid "%s (%s) with field type %s."
848
- msgstr ""
849
 
850
  #: includes/views/parts/lists-overview.php:83
851
  msgid "%s (ID: %s) with type %s."
852
- msgstr ""
853
 
854
  #: integrations/contact-form-7/admin-before.php:2
855
  msgid ""
856
  "To integrate with Contact Form 7, configure the settings below and then add "
857
  "%s to your CF7 form mark-up."
858
- msgstr ""
859
 
860
  #: integrations/custom/admin-before.php:2
861
  msgid ""
862
  "To get a custom integration to work, include the following HTML in the form "
863
  "you are trying to integrate with."
864
- msgstr ""
865
 
866
  #: integrations/woocommerce/class-woocommerce.php:102
867
  msgid "Order #%d"
868
- msgstr ""
869
 
870
  #. Plugin Name of the plugin/theme
871
  msgid "MailChimp for WordPress"
4
  # Carlos Faria <carlosgarciafaria@gmail.com>, 2015
5
  # eldietista <info@eldietista.es>, 2014
6
  # eldietista <info@eldietista.es>, 2014
7
+ # Jaime Mota <mota.jt@gmail.com>, 2016
8
  # José Manuel Lucas <josemanuel@jmlweb.es>, 2015
9
  # jose Miranda <joseamirandavelez@gmail.com>, 2014
10
  # Judith Hita <jud.sanchez.hita@gmail.com>, 2016
22
  "Project-Id-Version: MailChimp for WordPress\n"
23
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
24
  "POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
25
+ "PO-Revision-Date: 2016-05-13 07:43+0000\n"
26
+ "Last-Translator: Jaime Mota <mota.jt@gmail.com>\n"
27
  "Language-Team: Spanish (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/es_ES/)\n"
28
  "MIME-Version: 1.0\n"
29
  "Content-Type: text/plain; charset=UTF-8\n"
75
 
76
  #: config/default-form-messages.php:33
77
  msgid "Please select at least one list."
78
+ msgstr "Por favor seleccione al menos una lista."
79
 
80
  #: config/default-integration-options.php:5
81
  msgid "Sign me up for the newsletter!"
128
  msgid ""
129
  "Learn how to best grow your lists & write better emails by subscribing to "
130
  "our monthly tips."
131
+ msgstr "Aprende como hacer tus listas y redactar mejores emails suscribiéndote a nuestros consejos mensuales. "
132
 
133
  #: includes/admin/class-ads.php:66
134
  msgid "Email Address"
185
 
186
  #: includes/forms/class-form-tags.php:56
187
  msgid "Data from the URL or a submitted form."
188
+ msgstr "Datos desde una URL o un formulario enviado."
189
 
190
  #: includes/forms/class-form-tags.php:62
191
  #: includes/integrations/class-integration-tags.php:45
226
 
227
  #: includes/forms/class-form.php:128
228
  msgid "There is no form with ID %d, perhaps it was deleted?"
229
+ msgstr "No hay un formulario con la ID %d, quizá fue eliminado?"
230
 
231
  #: includes/forms/class-widget.php:26
232
  msgid "Newsletter"
318
  msgid ""
319
  "To add more fields to your form, you will need to create those fields in "
320
  "MailChimp first."
321
+ msgstr "Para añadir más campos a tu formulario, primero necesitas crearlos en MailChimp."
322
 
323
  #: includes/forms/views/parts/add-fields-help.php:12
324
  msgid "Here's how:"
325
+ msgstr "Aquí esta el cómo:"
326
 
327
  #: includes/forms/views/parts/add-fields-help.php:17
328
  msgid "Log in to your MailChimp account."
329
+ msgstr "Entra a tu cuenta de MailChimp"
330
 
331
  #: includes/forms/views/parts/add-fields-help.php:22
332
  msgid "Add list fields to any of your selected lists."
333
+ msgstr "Añade campos de la lista a cualquiera de tus listas seleccionadas."
334
 
335
  #: includes/forms/views/parts/add-fields-help.php:23
336
  msgid "Clicking the following links will take you to the right screen."
696
 
697
  #: includes/integrations/views/integration-settings.php:119
698
  msgid "Select \"yes\" if the checkbox should be pre-checked."
699
+ msgstr "Selecciona \"sí\" si la casilla debe aparecer marcada por defecto."
700
 
701
  #: includes/integrations/views/integration-settings.php:127
702
  msgid "Load some default CSS?"
818
  "The table below shows your MailChimp lists and their details. If you just "
819
  "applied changes to your MailChimp lists, please use the following button to "
820
  "renew the cached lists configuration."
821
+ msgstr "La siguiente tabla muestra los datos de las listas de MailChimp. Si has efectuado cambios en las listas de MailChimp, por favor, utiliza el botón siguiente para renovar la configuración de sus listas guardadas."
822
 
823
  #: includes/views/parts/lists-overview.php:14
824
  msgid "No lists were found in your MailChimp account"
826
 
827
  #: includes/views/parts/lists-overview.php:16
828
  msgid "A total of %d lists were found in your MailChimp account."
829
+ msgstr "Un total de %d listas fueron encontradas en tu cuenta de MailChimp."
830
 
831
  #: includes/views/parts/lists-overview.php:21
832
  msgid "List Name"
846
 
847
  #: includes/views/parts/lists-overview.php:59
848
  msgid "%s (%s) with field type %s."
849
+ msgstr "%s (%s) con tipo de campo %s."
850
 
851
  #: includes/views/parts/lists-overview.php:83
852
  msgid "%s (ID: %s) with type %s."
853
+ msgstr "%s (ID: %s) con tipo %s."
854
 
855
  #: integrations/contact-form-7/admin-before.php:2
856
  msgid ""
857
  "To integrate with Contact Form 7, configure the settings below and then add "
858
  "%s to your CF7 form mark-up."
859
+ msgstr "Para integrar con Contact Form 7, configura los siguientes ajustes y luego añade %s a tu etiqueta del formulario de CF7."
860
 
861
  #: integrations/custom/admin-before.php:2
862
  msgid ""
863
  "To get a custom integration to work, include the following HTML in the form "
864
  "you are trying to integrate with."
865
+ msgstr "Para lograr que funcione una integración personalizada, incluye el siguiente HTML en el formulario que estas intentado integrar."
866
 
867
  #: integrations/woocommerce/class-woocommerce.php:102
868
  msgid "Order #%d"
869
+ msgstr "Orden #%d"
870
 
871
  #. Plugin Name of the plugin/theme
872
  msgid "MailChimp for WordPress"
mailchimp-for-wp.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: MailChimp for WordPress
4
  Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
5
  Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
6
- Version: 3.1.7
7
  Author: ibericode
8
  Author URI: https://ibericode.com/
9
  Text Domain: mailchimp-for-wp
@@ -47,7 +47,7 @@ function __mc4wp_load_plugin() {
47
  }
48
 
49
  // bootstrap the core plugin
50
- define( 'MC4WP_VERSION', '3.1.7' );
51
  define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
52
  define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
53
  define( 'MC4WP_PLUGIN_FILE', __FILE__ );
3
  Plugin Name: MailChimp for WordPress
4
  Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
5
  Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
6
+ Version: 3.1.8
7
  Author: ibericode
8
  Author URI: https://ibericode.com/
9
  Text Domain: mailchimp-for-wp
47
  }
48
 
49
  // bootstrap the core plugin
50
+ define( 'MC4WP_VERSION', '3.1.8' );
51
  define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
52
  define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
53
  define( 'MC4WP_PLUGIN_FILE', __FILE__ );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-f
4
  Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
5
  Requires at least: 3.8
6
  Tested up to: 4.5.2
7
- Stable tag: 3.1.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -184,6 +184,23 @@ MailChimp for WordPress is being developed on GitHub. If you want to collaborate
184
  == Changelog ==
185
 
186
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  #### 3.1.7 - May 9, 2016
188
 
189
  **Fixes**
4
  Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
5
  Requires at least: 3.8
6
  Tested up to: 4.5.2
7
+ Stable tag: 3.1.8
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
184
  == Changelog ==
185
 
186
 
187
+ #### 3.1.8 - May 23, 2016
188
+
189
+ **Fixes**
190
+
191
+ - Form Preview mode replaced all titles on that page with "Form Preview".
192
+ - API class fix for [eCommerce360 functionality](https://mc4wp.com/kb/what-is-ecommerce360/).
193
+
194
+ **Improvements**
195
+
196
+ - Show dismissible notice when API key is not set.
197
+ - Show empty API key errors in plugin log.
198
+ - Friendlier error message for re-subscribe failures.
199
+
200
+ **Additions**
201
+
202
+ - Add `form.reset()` method to JS API.
203
+
204
  #### 3.1.7 - May 9, 2016
205
 
206
  **Fixes**