Version Description
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 4.1.10 |
Comparing to | |
See all releases |
Code changes from version 4.1.9 to 4.1.10
- CHANGELOG.md +12 -0
- assets/js/forms-api.js +3 -5
- assets/js/forms-api.min.js +1 -1
- assets/js/forms-api.min.js.map +1 -1
- includes/forms/class-admin.php +1 -3
- integrations/bootstrap.php +4 -3
- integrations/gravity-forms/admin-before.php +3 -0
- integrations/gravity-forms/bootstrap.php +9 -0
- integrations/gravity-forms/class-field.php +114 -0
- integrations/gravity-forms/class-gravity-forms.php +137 -0
- integrations/ninja-forms/class-action.php +24 -33
- integrations/ninja-forms/class-ninja-forms.php +28 -1
- integrations/wpforms/class-wpforms.php +8 -2
- languages/mailchimp-for-wp-ca_ES.mo +0 -0
- languages/mailchimp-for-wp-ca_ES.po +1 -1
- languages/mailchimp-for-wp-cs_CZ.mo +0 -0
- languages/mailchimp-for-wp-cs_CZ.po +716 -503
- languages/mailchimp-for-wp-da_DK.mo +0 -0
- languages/mailchimp-for-wp-da_DK.po +1 -1
- languages/mailchimp-for-wp-de_CH.mo +0 -0
- languages/mailchimp-for-wp-de_CH.po +716 -503
- languages/mailchimp-for-wp-de_DE.mo +0 -0
- languages/mailchimp-for-wp-de_DE.po +1 -1
- languages/mailchimp-for-wp-el_GR.mo +0 -0
- languages/mailchimp-for-wp-el_GR.po +716 -503
- languages/mailchimp-for-wp-es_ES.mo +0 -0
- languages/mailchimp-for-wp-es_ES.po +1 -1
- languages/mailchimp-for-wp-fa_IR.mo +0 -0
- languages/mailchimp-for-wp-fa_IR.po +57 -56
- languages/mailchimp-for-wp-fi_FI.mo +0 -0
- languages/mailchimp-for-wp-fi_FI.po +717 -504
- languages/mailchimp-for-wp-fr_FR.mo +0 -0
- languages/mailchimp-for-wp-fr_FR.po +2 -2
- languages/mailchimp-for-wp-hu_HU.mo +0 -0
- languages/mailchimp-for-wp-hu_HU.po +731 -517
- languages/mailchimp-for-wp-it_IT.mo +0 -0
- languages/mailchimp-for-wp-it_IT.po +1 -1
- languages/mailchimp-for-wp-ja_JP.mo +0 -0
- languages/mailchimp-for-wp-ja_JP.po +1 -1
- languages/mailchimp-for-wp-nl_NL.mo +0 -0
- languages/mailchimp-for-wp-nl_NL.po +1 -1
- languages/mailchimp-for-wp-pl_PL.mo +0 -0
- languages/mailchimp-for-wp-pl_PL.po +2 -2
- languages/mailchimp-for-wp-pt_BR.mo +0 -0
- languages/mailchimp-for-wp-pt_BR.po +1 -1
- languages/mailchimp-for-wp-ru_RU.mo +0 -0
- languages/mailchimp-for-wp-ru_RU.po +1 -1
- languages/mailchimp-for-wp-sv_SE.mo +0 -0
- languages/mailchimp-for-wp-sv_SE.po +1 -1
- languages/mailchimp-for-wp-tr_TR.mo +0 -0
- languages/mailchimp-for-wp-tr_TR.po +1 -1
- languages/mailchimp-for-wp-vi_VN.mo +0 -0
- languages/mailchimp-for-wp-vi_VN.po +716 -503
- languages/mailchimp-for-wp.pot +47 -47
- mailchimp-for-wp.php +3 -2
- readme.txt +16 -3
- vendor/autoload_52.php +1 -1
- vendor/composer/autoload_classmap.php +2 -0
- vendor/composer/autoload_psr4.php +0 -1
- vendor/composer/autoload_real_52.php +3 -3
- vendor/composer/autoload_static.php +2 -16
CHANGELOG.md
CHANGED
@@ -1,6 +1,18 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
#### 4.1.9 - September 19, 2017
|
5 |
|
6 |
**Improvements**
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
#### 4.1.10 - October 19, 2017
|
5 |
+
|
6 |
+
**Improvements**
|
7 |
+
|
8 |
+
- Remove unused options from Ninja Forms integration.
|
9 |
+
- Now logging all sign-ups from Ninja Forms integrations when using [MailChimp for WordPress Premium](https://mc4wp.com/premium-features/).
|
10 |
+
|
11 |
+
**Additions**
|
12 |
+
|
13 |
+
- Added Gravity Forms integration. You can now integrate with Gravity Forms by adding the "MailChimp" field to your forms.
|
14 |
+
|
15 |
+
|
16 |
#### 4.1.9 - September 19, 2017
|
17 |
|
18 |
**Improvements**
|
assets/js/forms-api.js
CHANGED
@@ -12,9 +12,7 @@ var config = window.mc4wp_forms_config || {};
|
|
12 |
function scrollToForm(form) {
|
13 |
var animate = config.auto_scroll === 'animated';
|
14 |
var args = {
|
15 |
-
behavior: animate ? "smooth" : "instant"
|
16 |
-
block: "center",
|
17 |
-
inline: "center"
|
18 |
};
|
19 |
form.element.scrollIntoView(args);
|
20 |
}
|
@@ -174,11 +172,11 @@ Form.prototype.setData = function (data) {
|
|
174 |
};
|
175 |
|
176 |
Form.prototype.getData = function () {
|
177 |
-
return serialize(this.element, { hash: true });
|
178 |
};
|
179 |
|
180 |
Form.prototype.getSerializedData = function () {
|
181 |
-
return serialize(this.element);
|
182 |
};
|
183 |
|
184 |
Form.prototype.setResponse = function (msg) {
|
12 |
function scrollToForm(form) {
|
13 |
var animate = config.auto_scroll === 'animated';
|
14 |
var args = {
|
15 |
+
behavior: animate ? "smooth" : "instant"
|
|
|
|
|
16 |
};
|
17 |
form.element.scrollIntoView(args);
|
18 |
}
|
172 |
};
|
173 |
|
174 |
Form.prototype.getData = function () {
|
175 |
+
return serialize(this.element, { hash: true, empty: true });
|
176 |
};
|
177 |
|
178 |
Form.prototype.getSerializedData = function () {
|
179 |
+
return serialize(this.element, { hash: false, empty: true });
|
180 |
};
|
181 |
|
182 |
Form.prototype.setResponse = function (msg) {
|
assets/js/forms-api.min.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
!function(){var e=void 0,t=void 0;!function t(n,r,i){function o(c,a){if(!r[c]){if(!n[c]){var u="function"==typeof e&&e;if(!a&&u)return u(c,!0);if(s)return s(c,!0);var f=new Error("Cannot find module '"+c+"'");throw f.code="MODULE_NOT_FOUND",f}var l=r[c]={exports:{}};n[c][0].call(l.exports,function(e){var t=n[c][1][e];return o(t||e)},l,l.exports,t,n,r,i)}return r[c].exports}for(var s="function"==typeof e&&e,c=0;c<i.length;c++)o(i[c]);return o}({1:[function(e,t,n){"use strict";function r(e){var t="animated"===u.auto_scroll,n={behavior:t?"smooth":"instant",block:"center",inline:"center"};e.element.scrollIntoView(n)}function i(e,t,n){return function(){var r=this.value.trim(),i="radio"!==this.getAttribute("type")&&"checked"!==this.getAttribute("type")||this.checked,o=i&&(r===t&&""!==t||""===t&&r.length>0);e.style.display=n?o?"":"none":o?"none":""}}function o(){var e=this,t=e.form.querySelectorAll("[data-show-if], [data-hide-if]"),n=(e.getAttribute("name")||"").toLowerCase();[].forEach.call(t,function(t){var r=!!t.getAttribute("data-show-if"),o=r?t.getAttribute("data-show-if").split(":"):t.getAttribute("data-hide-if").split(":"),s=o[0],c=o[1]||"";if(n===s.toLowerCase()){i(t,c,r).call(e)}})}var s=window.mc4wp||{},c=e("gator"),a=e("./forms/forms.js"),u=window.mc4wp_forms_config||{};if(c(document.body).on("keyup",".mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select",o),c(document.body).on("change",".mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select",o),window.addEventListener("load",function(){[].forEach.call(document.querySelectorAll(".mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select"),function(e){o.call(e)})}),c(document.body).on("submit",".mc4wp-form",function(e){var t=a.getByElement(e.target||e.srcElement);a.trigger("submit",[t,e]),a.trigger(t.id+".submit",[t,e])}),c(document.body).on("focus",".mc4wp-form",function(e){var t=a.getByElement(e.target||e.srcElement);t.started||(a.trigger("started",[t,e]),a.trigger(t.id+".started",[t,e]),t.started=!0)}),c(document.body).on("change",".mc4wp-form",function(e){var t=a.getByElement(e.target||e.srcElement);a.trigger("change",[t,e]),a.trigger(t.id+".change",[t,e])}),s.listeners){for(var f=s.listeners,l=0;l<f.length;l++)a.on(f[l].event,f[l].callback);delete s.listeners}if(s.forms=a,u.submitted_form){var h=u.submitted_form,d=document.getElementById(h.element_id),m=a.getByElement(d);!function(e,t,n,i){var o=document.body.clientHeight,s=Date.now();n&&e.setData(i),u.auto_scroll&&r(e),window.addEventListener("load",function(){var c=Date.now()-s;u.auto_scroll&&c<800&&document.body.clientHeight!==o&&r(e),a.trigger("submitted",[e]),a.trigger(e.id+".submitted",[e]),n?(a.trigger("error",[e,n]),a.trigger(e.id+".error",[e,n])):(a.trigger("success",[e,i]),a.trigger(e.id+".success",[e,i]),a.trigger(t+"d",[e,i]),a.trigger(e.id+"."+t+"d",[e,i]))})}(m,h.action,h.errors,h.data)}window.mc4wp=s},{"./forms/forms.js":3,gator:5}],2:[function(e,t,n){"use strict";var r=e("form-serialize"),i=e("populate.js"),o=function(e,t){this.id=e,this.element=t||document.createElement("form"),this.name=this.element.getAttribute("data-name")||"Form #"+this.id,this.errors=[],this.started=!1};o.prototype.setData=function(e){try{i(this.element,e)}catch(e){console.error(e)}},o.prototype.getData=function(){return r(this.element,{hash:!0})},o.prototype.getSerializedData=function(){return r(this.element)},o.prototype.setResponse=function(e){this.element.querySelector(".mc4wp-response").innerHTML=e},o.prototype.reset=function(){this.setResponse(""),this.element.querySelector(".mc4wp-form-fields").style.display="",this.element.reset()},t.exports=o},{"form-serialize":4,"populate.js":6}],3:[function(e,t,n){"use strict";function r(e){for(var t=0;t<f.length;t++)if(f[t].id==e)return f[t];return o(document.querySelector(".mc4wp-form-"+e),e)}function i(e){for(var t=e.form||e,n=0;n<f.length;n++)if(f[n].element==t)return f[n];return o(t)}function o(e,t){t=t||parseInt(e.getAttribute("data-id"))||0;var n=new a(t,e);return f.push(n),n}function s(){return f}var c=e("wolfy87-eventemitter"),a=e("./form.js"),u=new c,f=[];t.exports={all:s,get:r,getByElement:i,on:u.on.bind(u),trigger:u.trigger.bind(u),off:u.off.bind(u)}},{"./form.js":2,"wolfy87-eventemitter":7}],4:[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:c),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)&&!a.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),void 0==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],c=+s;isNaN(c)?(e=e||{},e[s]=o(e[s],t,n)):(e=e||[],e[c]=o(e[c],t,n))}else e[r]=o(e[r],t,n);return e}function s(e,t,n){if(t.match(f))o(e,i(t),n);else{var r=e[t];r?(Array.isArray(r)||(e[t]=[r]),e[t].push(n)):e[t]=n}return e}function c(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 a=/^(?:submit|button|image|reset|file)$/i,u=/^(?:input|select|textarea|keygen)/i,f=/(\[[^\[\]]*\])/g;t.exports=r},{}],5:[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=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 c(e,t,n){if(d[e][n]){var r,o,s=t.target||t.srcElement,c={},a=0,f=0;l=0;for(r in d[e][n])d[e][n].hasOwnProperty(r)&&(o=i(s,r,m[e].element))&&u.matchesEvent(n,m[e].element,o,"_root"==r,t)&&(l++,d[e][n][r].match=o,c[l]=d[e][n][r]);for(t.stopPropagation=function(){t.cancelBubble=!0},a=0;a<=l;a++)if(c[a])for(f=0;f<c[a].length;f++){if(!1===c[a][f].call(c[a].match,t))return void u.cancel(t);if(t.cancelBubble)return}}}function a(e,t,n,r){if(this.element){e instanceof Array||(e=[e]),n||"function"!=typeof t||(n=t,t="_root");var i,a=this.id;for(i=0;i<e.length;i++)r?s(this,e[i],t,n):(d[a]&&d[a][e[i]]||u.addEvent(this,e[i],function(e){return function(t){c(a,t,e)}}(e[i])),o(this,e[i],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 a.call(this,e,t,n)},u.prototype.off=function(e,t,n){return a.call(this,e,t,n,!0)},u.matchesSelector=function(){},u.cancel=n,u.addEvent=e,u.matchesEvent=function(){return!0},void 0!==t&&t.exports&&(t.exports=u),window.Gator=u}()},{}],6:[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(void 0===s&&(s=""),null===s&&(s=""),void 0!==n&&(o=n+"["+i+"]"),s.constructor===Array)o+="[]";else if("object"==typeof s){r(e,s,o);continue}var c=e.elements.namedItem(o);if(c){var a=c.type||c[0].type;switch(a){default:c.value=s;break;case"radio":case"checkbox":for(var u=0;u<c.length;u++)c[u].checked=s.indexOf(c[u].value)>-1;break;case"select-multiple":for(var f=s.constructor==Array?s:[s],l=0;l<c.options.length;l++)c.options[l].selected|=f.indexOf(c.options[l].value)>-1;break;case"select":case"select-one":c.value=s.toString()||s;break;case"date":c.value=new Date(s).toISOString().split("T")[0]}}}};"function"==typeof t&&"object"==typeof t.amd&&t.amd?t(function(){return r}):void 0!==n&&n.exports?n.exports=r:e.populate=r}(this)},{}],7:[function(e,n,r){!function(e){"use strict";function r(){}function i(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function o(e){return function(){return this[e].apply(this,arguments)}}function s(e){return"function"==typeof e||e instanceof RegExp||!(!e||"object"!=typeof e)&&s(e.listener)}var c=r.prototype,a=e.EventEmitter;c.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},c.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},c.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},c.addListener=function(e,t){if(!s(t))throw new TypeError("listener must be a function");var n,r=this.getListenersAsObject(e),o="object"==typeof t;for(n in r)r.hasOwnProperty(n)&&-1===i(r[n],t)&&r[n].push(o?t:{listener:t,once:!1});return this},c.on=o("addListener"),c.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},c.once=o("addOnceListener"),c.defineEvent=function(e){return this.getListeners(e),this},c.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},c.removeListener=function(e,t){var n,r,o=this.getListenersAsObject(e);for(r in o)o.hasOwnProperty(r)&&-1!==(n=i(o[r],t))&&o[r].splice(n,1);return this},c.off=o("removeListener"),c.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},c.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},c.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},c.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},c.removeAllListeners=o("removeEvent"),c.emitEvent=function(e,t){var n,r,i,o,s=this.getListenersAsObject(e);for(o in s)if(s.hasOwnProperty(o))for(n=s[o].slice(0),i=0;i<n.length;i++)r=n[i],!0===r.once&&this.removeListener(e,r.listener),r.listener.apply(this,t||[])===this._getOnceReturnValue()&&this.removeListener(e,r.listener);return this},c.trigger=o("emitEvent"),c.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},c.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},c._getOnceReturnValue=function(){return!this.hasOwnProperty("_onceReturnValue")||this._onceReturnValue},c._getEvents=function(){return this._events||(this._events={})},r.noConflict=function(){return e.EventEmitter=a,r},"function"==typeof t&&t.amd?t(function(){return r}):"object"==typeof n&&n.exports?n.exports=r:e.EventEmitter=r}(this||{})},{}]},{},[1])}();
|
2 |
//# sourceMappingURL=forms-api.min.js.map
|
1 |
+
!function(){var e=void 0,t=void 0;!function t(n,r,i){function o(a,c){if(!r[a]){if(!n[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:{}};n[a][0].call(l.exports,function(e){var t=n[a][1][e];return o(t||e)},l,l.exports,t,n,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){var t="animated"===u.auto_scroll,n={behavior:t?"smooth":"instant"};e.element.scrollIntoView(n)}function i(e,t,n){return function(){var r=this.value.trim(),i="radio"!==this.getAttribute("type")&&"checked"!==this.getAttribute("type")||this.checked,o=i&&(r===t&&""!==t||""===t&&r.length>0);e.style.display=n?o?"":"none":o?"none":""}}function o(){var e=this,t=e.form.querySelectorAll("[data-show-if], [data-hide-if]"),n=(e.getAttribute("name")||"").toLowerCase();[].forEach.call(t,function(t){var r=!!t.getAttribute("data-show-if"),o=r?t.getAttribute("data-show-if").split(":"):t.getAttribute("data-hide-if").split(":"),s=o[0],a=o[1]||"";if(n===s.toLowerCase()){i(t,a,r).call(e)}})}var s=window.mc4wp||{},a=e("gator"),c=e("./forms/forms.js"),u=window.mc4wp_forms_config||{};if(a(document.body).on("keyup",".mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select",o),a(document.body).on("change",".mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select",o),window.addEventListener("load",function(){[].forEach.call(document.querySelectorAll(".mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select"),function(e){o.call(e)})}),a(document.body).on("submit",".mc4wp-form",function(e){var t=c.getByElement(e.target||e.srcElement);c.trigger("submit",[t,e]),c.trigger(t.id+".submit",[t,e])}),a(document.body).on("focus",".mc4wp-form",function(e){var t=c.getByElement(e.target||e.srcElement);t.started||(c.trigger("started",[t,e]),c.trigger(t.id+".started",[t,e]),t.started=!0)}),a(document.body).on("change",".mc4wp-form",function(e){var t=c.getByElement(e.target||e.srcElement);c.trigger("change",[t,e]),c.trigger(t.id+".change",[t,e])}),s.listeners){for(var f=s.listeners,l=0;l<f.length;l++)c.on(f[l].event,f[l].callback);delete s.listeners}if(s.forms=c,u.submitted_form){var h=u.submitted_form,d=document.getElementById(h.element_id),m=c.getByElement(d);!function(e,t,n,i){var o=document.body.clientHeight,s=Date.now();n&&e.setData(i),u.auto_scroll&&r(e),window.addEventListener("load",function(){var a=Date.now()-s;u.auto_scroll&&a<800&&document.body.clientHeight!==o&&r(e),c.trigger("submitted",[e]),c.trigger(e.id+".submitted",[e]),n?(c.trigger("error",[e,n]),c.trigger(e.id+".error",[e,n])):(c.trigger("success",[e,i]),c.trigger(e.id+".success",[e,i]),c.trigger(t+"d",[e,i]),c.trigger(e.id+"."+t+"d",[e,i]))})}(m,h.action,h.errors,h.data)}window.mc4wp=s},{"./forms/forms.js":3,gator:5}],2:[function(e,t,n){"use strict";var r=e("form-serialize"),i=e("populate.js"),o=function(e,t){this.id=e,this.element=t||document.createElement("form"),this.name=this.element.getAttribute("data-name")||"Form #"+this.id,this.errors=[],this.started=!1};o.prototype.setData=function(e){try{i(this.element,e)}catch(e){console.error(e)}},o.prototype.getData=function(){return r(this.element,{hash:!0,empty:!0})},o.prototype.getSerializedData=function(){return r(this.element,{hash:!1,empty:!0})},o.prototype.setResponse=function(e){this.element.querySelector(".mc4wp-response").innerHTML=e},o.prototype.reset=function(){this.setResponse(""),this.element.querySelector(".mc4wp-form-fields").style.display="",this.element.reset()},t.exports=o},{"form-serialize":4,"populate.js":6}],3:[function(e,t,n){"use strict";function r(e){for(var t=0;t<f.length;t++)if(f[t].id==e)return f[t];return o(document.querySelector(".mc4wp-form-"+e),e)}function i(e){for(var t=e.form||e,n=0;n<f.length;n++)if(f[n].element==t)return f[n];return o(t)}function o(e,t){t=t||parseInt(e.getAttribute("data-id"))||0;var n=new c(t,e);return f.push(n),n}function s(){return f}var a=e("wolfy87-eventemitter"),c=e("./form.js"),u=new a,f=[];t.exports={all:s,get:r,getByElement:i,on:u.on.bind(u),trigger:u.trigger.bind(u),off:u.off.bind(u)}},{"./form.js":2,"wolfy87-eventemitter":7}],4:[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),void 0==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=+s;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){if(t.match(f))o(e,i(t),n);else{var r=e[t];r?(Array.isArray(r)||(e[t]=[r]),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},{}],5:[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=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))&&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;c<=l;c++)if(a[c])for(f=0;f<a[c].length;f++){if(!1===a[c][f].call(a[c].match,t))return void u.cancel(t);if(t.cancelBubble)return}}}function c(e,t,n,r){if(this.element){e instanceof Array||(e=[e]),n||"function"!=typeof t||(n=t,t="_root");var i,c=this.id;for(i=0;i<e.length;i++)r?s(this,e[i],t,n):(d[c]&&d[c][e[i]]||u.addEvent(this,e[i],function(e){return function(t){a(c,t,e)}}(e[i])),o(this,e[i],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},void 0!==t&&t.exports&&(t.exports=u),window.Gator=u}()},{}],6:[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(void 0===s&&(s=""),null===s&&(s=""),void 0!==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;break;case"date":a.value=new Date(s).toISOString().split("T")[0]}}}};"function"==typeof t&&"object"==typeof t.amd&&t.amd?t(function(){return r}):void 0!==n&&n.exports?n.exports=r:e.populate=r}(this)},{}],7:[function(e,n,r){!function(e){"use strict";function r(){}function i(e,t){for(var n=e.length;n--;)if(e[n].listener===t)return n;return-1}function o(e){return function(){return this[e].apply(this,arguments)}}function s(e){return"function"==typeof e||e instanceof RegExp||!(!e||"object"!=typeof e)&&s(e.listener)}var a=r.prototype,c=e.EventEmitter;a.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},a.flattenListeners=function(e){var t,n=[];for(t=0;t<e.length;t+=1)n.push(e[t].listener);return n},a.getListenersAsObject=function(e){var t,n=this.getListeners(e);return n instanceof Array&&(t={},t[e]=n),t||n},a.addListener=function(e,t){if(!s(t))throw new TypeError("listener must be a function");var n,r=this.getListenersAsObject(e),o="object"==typeof t;for(n in r)r.hasOwnProperty(n)&&-1===i(r[n],t)&&r[n].push(o?t:{listener:t,once:!1});return this},a.on=o("addListener"),a.addOnceListener=function(e,t){return this.addListener(e,{listener:t,once:!0})},a.once=o("addOnceListener"),a.defineEvent=function(e){return this.getListeners(e),this},a.defineEvents=function(e){for(var t=0;t<e.length;t+=1)this.defineEvent(e[t]);return this},a.removeListener=function(e,t){var n,r,o=this.getListenersAsObject(e);for(r in o)o.hasOwnProperty(r)&&-1!==(n=i(o[r],t))&&o[r].splice(n,1);return this},a.off=o("removeListener"),a.addListeners=function(e,t){return this.manipulateListeners(!1,e,t)},a.removeListeners=function(e,t){return this.manipulateListeners(!0,e,t)},a.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},a.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},a.removeAllListeners=o("removeEvent"),a.emitEvent=function(e,t){var n,r,i,o,s=this.getListenersAsObject(e);for(o in s)if(s.hasOwnProperty(o))for(n=s[o].slice(0),i=0;i<n.length;i++)r=n[i],!0===r.once&&this.removeListener(e,r.listener),r.listener.apply(this,t||[])===this._getOnceReturnValue()&&this.removeListener(e,r.listener);return this},a.trigger=o("emitEvent"),a.emit=function(e){var t=Array.prototype.slice.call(arguments,1);return this.emitEvent(e,t)},a.setOnceReturnValue=function(e){return this._onceReturnValue=e,this},a._getOnceReturnValue=function(){return!this.hasOwnProperty("_onceReturnValue")||this._onceReturnValue},a._getEvents=function(){return this._events||(this._events={})},r.noConflict=function(){return e.EventEmitter=c,r},"function"==typeof t&&t.amd?t(function(){return r}):"object"==typeof n&&n.exports?n.exports=r:e.EventEmitter=r}(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","scrollToForm","form","animate","config","auto_scroll","args","behavior","block","inline","element","scrollIntoView","toggleElement","el","expectedValue","show","value","this","trim","checked","getAttribute","conditionMet","style","display","toggleConditionalElements","input","elements","querySelectorAll","inputName","toLowerCase","forEach","conditions","split","nameCondition","valueCondition","mc4wp","window","Gator","forms","mc4wp_forms_config","document","body","on","addEventListener","event","getByElement","target","srcElement","trigger","id","started","listeners","callback","submitted_form","formConfig","getElementById","element_id","action","errors","data","pageHeight","clientHeight","timeStart","Date","now","setData","timeElapsed","./forms/forms.js","gator","2","serialize","populate","Form","createElement","name","prototype","console","error","getData","hash","getSerializedData","setResponse","msg","querySelector","innerHTML","reset","form-serialize","populate.js","3","get","formId","createFromElement","formElement","parseInt","push","all","EventEmitter","events","bind","off","./form.js","wolfy87-eventemitter","4","options","result","serializer","hash_serializer","str_serialize","radio_store","Object","create","disabled","k_r_success_contrls","test","nodeName","k_r_submitter","type","key","val","empty","selectOptions","isSelectedOptions","j","option","allowedEmpty","hasValue","selected","slice","parse_keys","string","keys","prefix","children","RegExp","brackets","match","exec","hash_assign","shift","between","Array","isArray","_values","index","isNaN","existing","replace","encodeURIComponent","5","_addEvent","useCapture","_cancel","preventDefault","stopPropagation","_getMatcher","_matcher","matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","matchesSelector","_matchesSelector","selector","boundElement","parentNode","_level","_addHandler","_handlers","_removeHandler","splice","hasOwnProperty","_handleEvent","_gatorInstances","matchesEvent","cancelBubble","cancel","_bind","remove","addEvent","_id","6","root","basename","constructor","namedItem","indexOf","values","k","toString","toISOString","amd","7","indexOfListener","listener","alias","apply","arguments","isValidListener","proto","originalGlobalValue","getListeners","evt","response","_getEvents","flattenListeners","flatListeners","getListenersAsObject","addListener","TypeError","listenerIsWrapped","once","addOnceListener","defineEvent","defineEvents","evts","removeListener","addListeners","manipulateListeners","removeListeners","single","multiple","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\n// deps & vars\n\nvar mc4wp = window.mc4wp || {};\nvar Gator = require('gator');\nvar forms = require('./forms/forms.js');\nvar config = window.mc4wp_forms_config || {};\n\n// funcs\nfunction scrollToForm(form) {\n\tvar animate = config.auto_scroll === 'animated';\n\tvar args = {\n\t\tbehavior: animate ? \"smooth\" : \"instant\",\n\t\tblock: \"center\",\n\t\tinline: \"center\"\n\t};\n\tform.element.scrollIntoView(args);\n}\n\nfunction handleFormRequest(form, action, errors, data) {\n\tvar pageHeight = document.body.clientHeight;\n\tvar timeStart = Date.now();\n\n\t// re-populate form\n\tif (errors) {\n\t\tform.setData(data);\n\t}\n\n\tif (config.auto_scroll) {\n\t\tscrollToForm(form);\n\t}\n\n\t// trigger events on window.load so all other scripts have loaded\n\twindow.addEventListener('load', function () {\n\t\tvar timeElapsed = Date.now() - timeStart;\n\n\t\t// scroll to form again if page height changed since last scroll\n\t\t// (only if load didn't take more than 0.8 seconds to prevent overtaking user scroll)\n\t\tif (config.auto_scroll && timeElapsed < 800 && document.body.clientHeight !== pageHeight) {\n\t\t\tscrollToForm(form);\n\t\t}\n\n\t\t// trigger events\n\t\tforms.trigger('submitted', [form]);\n\t\tforms.trigger(form.id + '.submitted', [form]);\n\n\t\tif (errors) {\n\t\t\tforms.trigger('error', [form, errors]);\n\t\t\tforms.trigger(form.id + '.error', [form, errors]);\n\t\t} else {\n\t\t\t// form was successfully submitted\n\t\t\tforms.trigger('success', [form, data]);\n\t\t\tforms.trigger(form.id + '.success', [form, data]);\n\n\t\t\t// subscribed / unsubscribed\n\t\t\tforms.trigger(action + \"d\", [form, data]);\n\t\t\tforms.trigger(form.id + \".\" + action + \"d\", [form, data]);\n\t\t}\n\t});\n}\n\nfunction toggleElement(el, expectedValue, show) {\n\treturn function () {\n\t\tvar value = this.value.trim();\n\t\tvar checked = this.getAttribute('type') !== 'radio' && this.getAttribute('type') !== 'checked' || this.checked;\n\t\tvar conditionMet = checked && (value === expectedValue && expectedValue !== \"\" || expectedValue === \"\" && value.length > 0);\n\t\tif (show) {\n\t\t\tel.style.display = conditionMet ? '' : 'none';\n\t\t} else {\n\t\t\tel.style.display = conditionMet ? 'none' : '';\n\t\t}\n\t};\n}\n\nfunction toggleConditionalElements() {\n\tvar input = this;\n\tvar elements = input.form.querySelectorAll('[data-show-if], [data-hide-if]');\n\tvar inputName = (input.getAttribute('name') || '').toLowerCase();\n\n\t[].forEach.call(elements, function (el) {\n\t\tvar show = !!el.getAttribute('data-show-if');\n\t\tvar conditions = show ? el.getAttribute('data-show-if').split(':') : el.getAttribute('data-hide-if').split(':');\n\t\tvar nameCondition = conditions[0];\n\t\tvar valueCondition = conditions[1] || \"\";\n\n\t\tif (inputName !== nameCondition.toLowerCase()) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar callback = toggleElement(el, valueCondition, show);\n\t\tcallback.call(input);\n\t});\n}\n\nGator(document.body).on('keyup', '.mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select', toggleConditionalElements);\nGator(document.body).on('change', '.mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select', toggleConditionalElements);\nwindow.addEventListener('load', function () {\n\t[].forEach.call(document.querySelectorAll('.mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select'), function (el) {\n\t\ttoggleConditionalElements.call(el);\n\t});\n});\n\n// Bind browser events to form events (using delegation)\nGator(document.body).on('submit', '.mc4wp-form', function (event) {\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('submit', [form, event]);\n\tforms.trigger(form.id + '.submit', [form, event]);\n});\n\nGator(document.body).on('focus', '.mc4wp-form', function (event) {\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\n\tif (!form.started) {\n\t\tforms.trigger('started', [form, event]);\n\t\tforms.trigger(form.id + '.started', [form, event]);\n\t\tform.started = true;\n\t}\n});\n\nGator(document.body).on('change', '.mc4wp-form', function (event) {\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('change', [form, event]);\n\tforms.trigger(form.id + '.change', [form, event]);\n});\n\n// register early listeners\nif (mc4wp.listeners) {\n\tvar listeners = mc4wp.listeners;\n\tfor (var i = 0; i < listeners.length; i++) {\n\t\tforms.on(listeners[i].event, listeners[i].callback);\n\t}\n\n\t// delete temp listeners array, so we don't bind twice\n\tdelete mc4wp[\"listeners\"];\n}\n\n// expose forms object\nmc4wp.forms = forms;\n\n// handle submitted form\nif (config.submitted_form) {\n\tvar formConfig = config.submitted_form,\n\t element = document.getElementById(formConfig.element_id),\n\t form = forms.getByElement(element);\n\n\thandleFormRequest(form, formConfig.action, formConfig.errors, formConfig.data);\n}\n\n// expose mc4wp object globally\nwindow.mc4wp = mc4wp;\n\n},{\"./forms/forms.js\":3,\"gator\":5}],2:[function(require,module,exports){\n'use strict';\n\nvar serialize = require('form-serialize');\nvar populate = require('populate.js');\n\nvar Form = function Form(id, element) {\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\nForm.prototype.setData = function (data) {\n\ttry {\n\t\tpopulate(this.element, data);\n\t} catch (e) {\n\t\tconsole.error(e);\n\t}\n};\n\nForm.prototype.getData = function () {\n\treturn serialize(this.element, { hash: true });\n};\n\nForm.prototype.getSerializedData = function () {\n\treturn serialize(this.element);\n};\n\nForm.prototype.setResponse = function (msg) {\n\tthis.element.querySelector('.mc4wp-response').innerHTML = msg;\n};\n\n// revert back to original state\nForm.prototype.reset = function () {\n\tthis.setResponse('');\n\tthis.element.querySelector('.mc4wp-form-fields').style.display = '';\n\tthis.element.reset();\n};\n\nmodule.exports = Form;\n\n},{\"form-serialize\":4,\"populate.js\":6}],3:[function(require,module,exports){\n'use strict';\n\n// deps\n\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\nmodule.exports = {\n\t\"all\": all,\n\t\"get\": get,\n\t\"getByElement\": getByElement,\n\t\"on\": events.on.bind(events),\n\t\"trigger\": events.trigger.bind(events),\n\t\"off\": events.off.bind(events)\n};\n\n},{\"./form.js\":2,\"wolfy87-eventemitter\":7}],4:[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 if (typeof options != 'object') {\n options = { hash: !!options };\n }\n else if (options.hash === undefined) {\n options.hash = true;\n }\n\n var result = (options.hash) ? {} : '';\n var serializer = options.serializer || ((options.hash) ? hash_serializer : str_serialize);\n\n var elements = form && form.elements ? form.elements : [];\n\n //Object store each radio and set if it's empty or not\n var radio_store = Object.create(null);\n\n for (var i=0 ; i<elements.length ; ++i) {\n var element = elements[i];\n\n // ingore disabled fields\n if ((!options.disabled && element.disabled) || !element.name) {\n continue;\n }\n // ignore anyhting that is not considered a success field\n if (!k_r_success_contrls.test(element.nodeName) ||\n k_r_submitter.test(element.type)) {\n continue;\n }\n\n var key = element.name;\n var val = element.value;\n\n // we can't just use element.value for checkboxes cause some browsers lie to us\n // they say \"on\" for value when the box isn't checked\n if ((element.type === 'checkbox' || element.type === 'radio') && !element.checked) {\n val = undefined;\n }\n\n // If we want empty elements\n if (options.empty) {\n // for checkbox\n if (element.type === 'checkbox' && !element.checked) {\n val = '';\n }\n\n // for radio\n if (element.type === 'radio') {\n if (!radio_store[element.name] && !element.checked) {\n radio_store[element.name] = false;\n }\n else if (element.checked) {\n radio_store[element.name] = true;\n }\n }\n\n // if options empty is true, continue only if its radio\n if (val == undefined && element.type == 'radio') {\n continue;\n }\n }\n else {\n // value-less fields are ignored unless options.empty is true\n if (!val) {\n continue;\n }\n }\n\n // multi select boxes\n if (element.type === 'select-multiple') {\n val = [];\n\n var selectOptions = element.options;\n var isSelectedOptions = false;\n for (var j=0 ; j<selectOptions.length ; ++j) {\n var option = selectOptions[j];\n var allowedEmpty = options.empty && !option.value;\n var hasValue = (option.value || allowedEmpty);\n if (option.selected && hasValue) {\n isSelectedOptions = true;\n\n // If using a hash serializer be sure to add the\n // correct notation for an array in the multi-select\n // context. Here the name attribute on the select element\n // might be missing the trailing bracket pair. Both names\n // \"foo\" and \"foo[]\" should be arrays.\n if (options.hash && key.slice(key.length - 2) !== '[]') {\n result = serializer(result, key + '[]', option.value);\n }\n else {\n result = serializer(result, key, option.value);\n }\n }\n }\n\n // Serialize if no selected options and options.empty is true\n if (!isSelectedOptions && options.empty) {\n result = serializer(result, key, '');\n }\n\n continue;\n }\n\n result = serializer(result, key, val);\n }\n\n // Check for all empty radio buttons and serialize them with key=\"\"\n if (options.empty) {\n for (var key in radio_store) {\n if (!radio_store[key]) {\n result = serializer(result, key, '');\n }\n }\n }\n\n return result;\n}\n\nfunction parse_keys(string) {\n var keys = [];\n var prefix = /^([^\\[\\]]*)/;\n var children = new RegExp(brackets);\n var match = prefix.exec(string);\n\n if (match[1]) {\n keys.push(match[1]);\n }\n\n while ((match = children.exec(string)) !== null) {\n keys.push(match[1]);\n }\n\n return keys;\n}\n\nfunction hash_assign(result, keys, value) {\n if (keys.length === 0) {\n result = value;\n return result;\n }\n\n var key = keys.shift();\n var between = key.match(/^\\[(.+?)\\]$/);\n\n if (key === '[]') {\n result = result || [];\n\n if (Array.isArray(result)) {\n result.push(hash_assign(null, keys, value));\n }\n else {\n // This might be the result of bad name attributes like \"[][foo]\",\n // in this case the original `result` object will already be\n // assigned to an object literal. Rather than coerce the object to\n // an array, or cause an exception the attribute \"_values\" is\n // assigned as an array.\n result._values = result._values || [];\n result._values.push(hash_assign(null, keys, value));\n }\n\n return result;\n }\n\n // Key is an attribute name and can be assigned directly.\n if (!between) {\n result[key] = hash_assign(result[key], keys, value);\n }\n else {\n var string = between[1];\n // +var converts the variable into a number\n // better than parseInt because it doesn't truncate away trailing\n // letters and actually fails if whole thing is not a number\n var index = +string;\n\n // If the characters between the brackets is not a number it is an\n // attribute name and can be assigned directly.\n if (isNaN(index)) {\n result = result || {};\n result[string] = hash_assign(result[string], keys, value);\n }\n else {\n result = result || [];\n result[index] = hash_assign(result[index], keys, value);\n }\n }\n\n return result;\n}\n\n// Object/hash encoding serializer.\nfunction hash_serializer(result, key, value) {\n var matches = key.match(brackets);\n\n // Has brackets? Use the recursive assignment function to walk the keys,\n // construct any missing objects in the result tree and make the assignment\n // at the end of the chain.\n if (matches) {\n var keys = parse_keys(key);\n hash_assign(result, keys, value);\n }\n else {\n // Non bracket notation can make assignments directly.\n var existing = result[key];\n\n // If the value has been assigned already (for instance when a radio and\n // a checkbox have the same name attribute) convert the previous value\n // into an array before pushing into it.\n //\n // NOTE: If this requirement were removed all hash creation and\n // assignment could go through `hash_assign`.\n if (existing) {\n if (!Array.isArray(existing)) {\n result[key] = [ existing ];\n }\n\n result[key].push(value);\n }\n else {\n result[key] = value;\n }\n }\n\n return result;\n}\n\n// urlform encoding serializer\nfunction str_serialize(result, key, value) {\n // encode newlines as \\r\\n cause the html spec says so\n value = value.replace(/(\\r)?\\n/g, '\\r\\n');\n value = encodeURIComponent(value);\n\n // spaces should be '+' rather than '%20'.\n value = value.replace(/%20/g, '+');\n return result + (result ? '&' : '') + encodeURIComponent(key) + '=' + value;\n}\n\nmodule.exports = serialize;\n\n},{}],5:[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},{}],6:[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 if ('undefined' === typeof value) {\n value = '';\n }\n\n if (null === value) {\n value = '';\n }\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\t\t\t\tcase 'date':\n \t\t\t\telement.value = new Date(value).toISOString().split('T')[0];\t\n\t\t\t\t\tbreak;\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\n},{}],7:[function(require,module,exports){\n/*!\n * EventEmitter v5.2.2 - git.io/ee\n * Unlicense - http://unlicense.org/\n * Oliver Caldwell - http://oli.me.uk/\n * @preserve\n */\n\n;(function (exports) {\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 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 function isValidListener (listener) {\n if (typeof listener === 'function' || listener instanceof RegExp) {\n return true\n } else if (listener && typeof listener === 'object') {\n return isValidListener(listener.listener)\n } else {\n return false\n }\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 if (!isValidListener(listener)) {\n throw new TypeError('listener must be a function');\n }\n\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 first 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 first 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\n for (i = 0; i < listeners.length; 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}(this || {}));\n\n},{}]},{},[1]);\n })();"]}
|
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","scrollToForm","form","animate","config","auto_scroll","args","behavior","element","scrollIntoView","toggleElement","el","expectedValue","show","value","this","trim","checked","getAttribute","conditionMet","style","display","toggleConditionalElements","input","elements","querySelectorAll","inputName","toLowerCase","forEach","conditions","split","nameCondition","valueCondition","mc4wp","window","Gator","forms","mc4wp_forms_config","document","body","on","addEventListener","event","getByElement","target","srcElement","trigger","id","started","listeners","callback","submitted_form","formConfig","getElementById","element_id","action","errors","data","pageHeight","clientHeight","timeStart","Date","now","setData","timeElapsed","./forms/forms.js","gator","2","serialize","populate","Form","createElement","name","prototype","console","error","getData","hash","empty","getSerializedData","setResponse","msg","querySelector","innerHTML","reset","form-serialize","populate.js","3","get","formId","createFromElement","formElement","parseInt","push","all","EventEmitter","events","bind","off","./form.js","wolfy87-eventemitter","4","options","result","serializer","hash_serializer","str_serialize","radio_store","Object","create","disabled","k_r_success_contrls","test","nodeName","k_r_submitter","type","key","val","selectOptions","isSelectedOptions","j","option","allowedEmpty","hasValue","selected","slice","parse_keys","string","keys","prefix","children","RegExp","brackets","match","exec","hash_assign","shift","between","Array","isArray","_values","index","isNaN","existing","replace","encodeURIComponent","5","_addEvent","useCapture","_cancel","preventDefault","stopPropagation","_getMatcher","_matcher","matches","webkitMatchesSelector","mozMatchesSelector","msMatchesSelector","oMatchesSelector","matchesSelector","_matchesSelector","selector","boundElement","parentNode","_level","_addHandler","_handlers","_removeHandler","splice","hasOwnProperty","_handleEvent","_gatorInstances","matchesEvent","cancelBubble","cancel","_bind","remove","addEvent","_id","6","root","basename","constructor","namedItem","indexOf","values","k","toString","toISOString","amd","7","indexOfListener","listener","alias","apply","arguments","isValidListener","proto","originalGlobalValue","getListeners","evt","response","_getEvents","flattenListeners","flatListeners","getListenersAsObject","addListener","TypeError","listenerIsWrapped","once","addOnceListener","defineEvent","defineEvents","evts","removeListener","addListeners","manipulateListeners","removeListeners","single","multiple","removeEvent","_events","removeAllListeners","emitEvent","listenersMap","_getOnceReturnValue","emit","setOnceReturnValue","_onceReturnValue","noConflict"],"mappings":"CAAA,WAAe,GAAIA,OAAUC,GAAeC,MAASD,IAAW,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,GAAIF,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,YAUA,SAASK,GAAaC,GACrB,GAAIC,GAAiC,aAAvBC,EAAOC,YACjBC,GACHC,SAAUJ,EAAU,SAAW,UAEhCD,GAAKM,QAAQC,eAAeH,GA6C7B,QAASI,GAAcC,EAAIC,EAAeC,GACzC,MAAO,YACN,GAAIC,GAAQC,KAAKD,MAAME,OACnBC,EAAwC,UAA9BF,KAAKG,aAAa,SAAqD,YAA9BH,KAAKG,aAAa,SAAyBH,KAAKE,QACnGE,EAAeF,IAAYH,IAAUF,GAAmC,KAAlBA,GAA0C,KAAlBA,GAAwBE,EAAMhB,OAAS,EAExHa,GAAGS,MAAMC,QADNR,EACgBM,EAAe,GAAK,OAEpBA,EAAe,OAAS,IAK9C,QAASG,KACR,GAAIC,GAAQR,KACRS,EAAWD,EAAMrB,KAAKuB,iBAAiB,kCACvCC,GAAaH,EAAML,aAAa,SAAW,IAAIS,iBAEhDC,QAAQ/B,KAAK2B,EAAU,SAAUb,GACnC,GAAIE,KAASF,EAAGO,aAAa,gBACzBW,EAAahB,EAAOF,EAAGO,aAAa,gBAAgBY,MAAM,KAAOnB,EAAGO,aAAa,gBAAgBY,MAAM,KACvGC,EAAgBF,EAAW,GAC3BG,EAAiBH,EAAW,IAAM,EAEtC,IAAIH,IAAcK,EAAcJ,cAAhC,CAIejB,EAAcC,EAAIqB,EAAgBnB,GACxChB,KAAK0B,MArFhB,GAAIU,GAAQC,OAAOD,UACfE,EAAQvD,EAAQ,SAChBwD,EAAQxD,EAAQ,oBAChBwB,EAAS8B,OAAOG,sBAsHpB,IAhCAF,EAAMG,SAASC,MAAMC,GAAG,QAAS,8DAA+DlB,GAChGa,EAAMG,SAASC,MAAMC,GAAG,SAAU,8DAA+DlB,GACjGY,OAAOO,iBAAiB,OAAQ,cAC5Bb,QAAQ/B,KAAKyC,SAASb,iBAAiB,+DAAgE,SAAUd,GACnHW,EAA0BzB,KAAKc,OAKjCwB,EAAMG,SAASC,MAAMC,GAAG,SAAU,cAAe,SAAUE,GAC1D,GAAIxC,GAAOkC,EAAMO,aAAaD,EAAME,QAAUF,EAAMG,WACpDT,GAAMU,QAAQ,UAAW5C,EAAMwC,IAC/BN,EAAMU,QAAQ5C,EAAK6C,GAAK,WAAY7C,EAAMwC,MAG3CP,EAAMG,SAASC,MAAMC,GAAG,QAAS,cAAe,SAAUE,GACzD,GAAIxC,GAAOkC,EAAMO,aAAaD,EAAME,QAAUF,EAAMG,WAE/C3C,GAAK8C,UACTZ,EAAMU,QAAQ,WAAY5C,EAAMwC,IAChCN,EAAMU,QAAQ5C,EAAK6C,GAAK,YAAa7C,EAAMwC,IAC3CxC,EAAK8C,SAAU,KAIjBb,EAAMG,SAASC,MAAMC,GAAG,SAAU,cAAe,SAAUE,GAC1D,GAAIxC,GAAOkC,EAAMO,aAAaD,EAAME,QAAUF,EAAMG,WACpDT,GAAMU,QAAQ,UAAW5C,EAAMwC,IAC/BN,EAAMU,QAAQ5C,EAAK6C,GAAK,WAAY7C,EAAMwC,MAIvCT,EAAMgB,UAAW,CAEpB,IAAK,GADDA,GAAYhB,EAAMgB,UACb1D,EAAI,EAAGA,EAAI0D,EAAUnD,OAAQP,IACrC6C,EAAMI,GAAGS,EAAU1D,GAAGmD,MAAOO,EAAU1D,GAAG2D,gBAIpCjB,GAAiB,UAOzB,GAHAA,EAAMG,MAAQA,EAGVhC,EAAO+C,eAAgB,CAC1B,GAAIC,GAAahD,EAAO+C,eACpB3C,EAAU8B,SAASe,eAAeD,EAAWE,YAC7CpD,EAAOkC,EAAMO,aAAanC,IA5H/B,SAA2BN,EAAMqD,EAAQC,EAAQC,GAChD,GAAIC,GAAapB,SAASC,KAAKoB,aAC3BC,EAAYC,KAAKC,KAGjBN,IACHtD,EAAK6D,QAAQN,GAGVrD,EAAOC,aACVJ,EAAaC,GAIdgC,OAAOO,iBAAiB,OAAQ,WAC/B,GAAIuB,GAAcH,KAAKC,MAAQF,CAI3BxD,GAAOC,aAAe2D,EAAc,KAAO1B,SAASC,KAAKoB,eAAiBD,GAC7EzD,EAAaC,GAIdkC,EAAMU,QAAQ,aAAc5C,IAC5BkC,EAAMU,QAAQ5C,EAAK6C,GAAK,cAAe7C,IAEnCsD,GACHpB,EAAMU,QAAQ,SAAU5C,EAAMsD,IAC9BpB,EAAMU,QAAQ5C,EAAK6C,GAAK,UAAW7C,EAAMsD,MAGzCpB,EAAMU,QAAQ,WAAY5C,EAAMuD,IAChCrB,EAAMU,QAAQ5C,EAAK6C,GAAK,YAAa7C,EAAMuD,IAG3CrB,EAAMU,QAAQS,EAAS,KAAMrD,EAAMuD,IACnCrB,EAAMU,QAAQ5C,EAAK6C,GAAK,IAAMQ,EAAS,KAAMrD,EAAMuD,QAyFnCvD,EAAMkD,EAAWG,OAAQH,EAAWI,OAAQJ,EAAWK,MAI1EvB,OAAOD,MAAQA,IAEZgC,mBAAmB,EAAEC,MAAQ,IAAIC,GAAG,SAASvF,EAAQoB,EAAOJ,GAC/D,YAEA,IAAIwE,GAAYxF,EAAQ,kBACpByF,EAAWzF,EAAQ,eAEnB0F,EAAO,SAAcvB,EAAIvC,GAC5BO,KAAKgC,GAAKA,EACVhC,KAAKP,QAAUA,GAAW8B,SAASiC,cAAc,QACjDxD,KAAKyD,KAAOzD,KAAKP,QAAQU,aAAa,cAAgB,SAAWH,KAAKgC,GACtEhC,KAAKyC,UACLzC,KAAKiC,SAAU,EAGhBsB,GAAKG,UAAUV,QAAU,SAAUN,GAClC,IACCY,EAAStD,KAAKP,QAASiD,GACtB,MAAO1E,GACR2F,QAAQC,MAAM5F,KAIhBuF,EAAKG,UAAUG,QAAU,WACxB,MAAOR,GAAUrD,KAAKP,SAAWqE,MAAM,EAAMC,OAAO,KAGrDR,EAAKG,UAAUM,kBAAoB,WAClC,MAAOX,GAAUrD,KAAKP,SAAWqE,MAAM,EAAOC,OAAO,KAGtDR,EAAKG,UAAUO,YAAc,SAAUC,GACtClE,KAAKP,QAAQ0E,cAAc,mBAAmBC,UAAYF,GAI3DX,EAAKG,UAAUW,MAAQ,WACtBrE,KAAKiE,YAAY,IACjBjE,KAAKP,QAAQ0E,cAAc,sBAAsB9D,MAAMC,QAAU,GACjEN,KAAKP,QAAQ4E,SAGdpF,EAAOJ,QAAU0E,IAEde,iBAAiB,EAAEC,cAAc,IAAIC,GAAG,SAAS3G,EAAQoB,EAAOJ,GACnE,YAaA,SAAS4F,GAAIC,GAGZ,IAAK,GAAIlG,GAAI,EAAGA,EAAI6C,EAAMtC,OAAQP,IACjC,GAAI6C,EAAM7C,GAAGwD,IAAM0C,EAClB,MAAOrD,GAAM7C,EAMf,OAAOmG,GADWpD,SAAS4C,cAAc,eAAiBO,GACpBA,GAIvC,QAAS9C,GAAanC,GAGrB,IAAK,GAFDmF,GAAcnF,EAAQN,MAAQM,EAEzBjB,EAAI,EAAGA,EAAI6C,EAAMtC,OAAQP,IACjC,GAAI6C,EAAM7C,GAAGiB,SAAWmF,EACvB,MAAOvD,GAAM7C,EAIf,OAAOmG,GAAkBC,GAI1B,QAASD,GAAkBC,EAAa5C,GACvCA,EAAKA,GAAM6C,SAASD,EAAYzE,aAAa,aAAe,CAC5D,IAAIhB,GAAO,GAAIoE,GAAKvB,EAAI4C,EAExB,OADAvD,GAAMyD,KAAK3F,GACJA,EAGR,QAAS4F,KACR,MAAO1D,GA7CR,GAAI2D,GAAenH,EAAQ,wBACvB0F,EAAO1F,EAAQ,aAGfoH,EAAS,GAAID,GACb3D,IA2CJpC,GAAOJ,SACNkG,IAAOA,EACPN,IAAOA,EACP7C,aAAgBA,EAChBH,GAAMwD,EAAOxD,GAAGyD,KAAKD,GACrBlD,QAAWkD,EAAOlD,QAAQmD,KAAKD,GAC/BE,IAAOF,EAAOE,IAAID,KAAKD,MAGrBG,YAAY,EAAEC,uBAAuB,IAAIC,GAAG,SAASzH,EAAQoB,EAAOJ,GAyBvE,QAASwE,GAAUlE,EAAMoG,GACC,gBAAXA,GACPA,GAAYzB,OAAQyB,OAEEzH,KAAjByH,EAAQzB,OACbyB,EAAQzB,MAAO,EAWnB,KAAK,GARD0B,GAAUD,EAAY,QAAS,GAC/BE,EAAaF,EAAQE,aAAgBF,EAAY,KAAIG,EAAkBC,GAEvElF,EAAWtB,GAAQA,EAAKsB,SAAWtB,EAAKsB,YAGxCmF,EAAcC,OAAOC,OAAO,MAEvBtH,EAAE,EAAIA,EAAEiC,EAAS1B,SAAWP,EAAG,CACpC,GAAIiB,GAAUgB,EAASjC,EAGvB,KAAM+G,EAAQQ,WAAYtG,EAAQsG,WAActG,EAAQgE,OAInDuC,EAAoBC,KAAKxG,EAAQyG,YAClCC,EAAcF,KAAKxG,EAAQ2G,OAD/B,CAKA,GAAIC,GAAM5G,EAAQgE,KACd6C,EAAM7G,EAAQM,KASlB,IALsB,aAAjBN,EAAQ2G,MAAwC,UAAjB3G,EAAQ2G,MAAsB3G,EAAQS,UACtEoG,MAAMxI,IAINyH,EAAQxB,OAiBR,GAfqB,aAAjBtE,EAAQ2G,MAAwB3G,EAAQS,UACxCoG,EAAM,IAIW,UAAjB7G,EAAQ2G,OACHR,EAAYnG,EAAQgE,OAAUhE,EAAQS,QAGlCT,EAAQS,UACb0F,EAAYnG,EAAQgE,OAAQ,GAH5BmC,EAAYnG,EAAQgE,OAAQ,OAQzB3F,IAAPwI,GAAoC,SAAhB7G,EAAQ2G,KAC5B,aAKJ,KAAKE,EACD,QAKR,IAAqB,oBAAjB7G,EAAQ2G,KAkCZZ,EAASC,EAAWD,EAAQa,EAAKC,OAlCjC,CACIA,IAIA,KAAK,GAFDC,GAAgB9G,EAAQ8F,QACxBiB,GAAoB,EACfC,EAAE,EAAIA,EAAEF,EAAcxH,SAAW0H,EAAG,CACzC,GAAIC,GAASH,EAAcE,GACvBE,EAAepB,EAAQxB,QAAU2C,EAAO3G,MACxC6G,EAAYF,EAAO3G,OAAS4G,CAC5BD,GAAOG,UAAYD,IACnBJ,GAAoB,EAQhBhB,EADAD,EAAQzB,MAAsC,OAA9BuC,EAAIS,MAAMT,EAAItH,OAAS,GAC9B0G,EAAWD,EAAQa,EAAM,KAAMK,EAAO3G,OAGtC0F,EAAWD,EAAQa,EAAKK,EAAO3G,SAM/CyG,GAAqBjB,EAAQxB,QAC9ByB,EAASC,EAAWD,EAAQa,EAAK,OAU7C,GAAId,EAAQxB,MACR,IAAK,GAAIsC,KAAOT,GACPA,EAAYS,KACbb,EAASC,EAAWD,EAAQa,EAAK,IAK7C,OAAOb,GAGX,QAASuB,GAAWC,GAChB,GAAIC,MACAC,EAAS,cACTC,EAAW,GAAIC,QAAOC,GACtBC,EAAQJ,EAAOK,KAAKP,EAMxB,KAJIM,EAAM,IACNL,EAAKnC,KAAKwC,EAAM,IAGuB,QAAnCA,EAAQH,EAASI,KAAKP,KAC1BC,EAAKnC,KAAKwC,EAAM,GAGpB,OAAOL,GAGX,QAASO,GAAYhC,EAAQyB,EAAMlH,GAC/B,GAAoB,IAAhBkH,EAAKlI,OAEL,MADAyG,GAASzF,CAIb,IAAIsG,GAAMY,EAAKQ,QACXC,EAAUrB,EAAIiB,MAAM,cAExB,IAAY,OAARjB,EAgBA,MAfAb,GAASA,MAELmC,MAAMC,QAAQpC,GACdA,EAAOV,KAAK0C,EAAY,KAAMP,EAAMlH,KAQpCyF,EAAOqC,QAAUrC,EAAOqC,YACxBrC,EAAOqC,QAAQ/C,KAAK0C,EAAY,KAAMP,EAAMlH,KAGzCyF,CAIX,IAAKkC,EAGA,CACD,GAAIV,GAASU,EAAQ,GAIjBI,GAASd,CAITe,OAAMD,IACNtC,EAASA,MACTA,EAAOwB,GAAUQ,EAAYhC,EAAOwB,GAASC,EAAMlH,KAGnDyF,EAASA,MACTA,EAAOsC,GAASN,EAAYhC,EAAOsC,GAAQb,EAAMlH,QAjBrDyF,GAAOa,GAAOmB,EAAYhC,EAAOa,GAAMY,EAAMlH,EAqBjD,OAAOyF,GAIX,QAASE,GAAgBF,EAAQa,EAAKtG,GAMlC,GALcsG,EAAIiB,MAAMD,GAOpBG,EAAYhC,EADDuB,EAAWV,GACItG,OAEzB,CAED,GAAIiI,GAAWxC,EAAOa,EAQlB2B,IACKL,MAAMC,QAAQI,KACfxC,EAAOa,IAAS2B,IAGpBxC,EAAOa,GAAKvB,KAAK/E,IAGjByF,EAAOa,GAAOtG,EAItB,MAAOyF,GAIX,QAASG,GAAcH,EAAQa,EAAKtG,GAOhC,MALAA,GAAQA,EAAMkI,QAAQ,WAAY,QAClClI,EAAQmI,mBAAmBnI,GAG3BA,EAAQA,EAAMkI,QAAQ,OAAQ,KACvBzC,GAAUA,EAAS,IAAM,IAAM0C,mBAAmB7B,GAAO,IAAMtG,EA3P1E,GAAIoG,GAAgB,wCAGhBH,EAAsB,qCAGtBqB,EAAW,iBAwPfpI,GAAOJ,QAAUwE,OAEX8E,GAAG,SAAStK,EAAQoB,EAAOJ,IAmCjC,WAOI,QAASuJ,GAAUjF,EAAOiD,EAAMjE,GAI5B,GAAIkG,GAAqB,QAARjC,GAA0B,SAARA,CACnCjD,GAAM1D,QAAQiC,iBAAiB0E,EAAMjE,EAAUkG,GAGnD,QAASC,GAAQtK,GACbA,EAAEuK,iBACFvK,EAAEwK,kBASN,QAASC,GAAYhJ,GACjB,MAAIiJ,KAKAA,EADAjJ,EAAQkJ,QACGlJ,EAAQkJ,QAInBlJ,EAAQmJ,sBACGnJ,EAAQmJ,sBAInBnJ,EAAQoJ,mBACGpJ,EAAQoJ,mBAInBpJ,EAAQqJ,kBACGrJ,EAAQqJ,kBAInBrJ,EAAQsJ,iBACGtJ,EAAQsJ,iBAMZ3H,EAAM4H,iBAYrB,QAASC,GAAiBxJ,EAASyJ,EAAUC,GAGzC,GAAgB,SAAZD,EACA,MAAOC,EAKX,IAAI1J,IAAY0J,EAKhB,MAAIV,GAAYhJ,GAASX,KAAKW,EAASyJ,GAC5BzJ,EAQPA,EAAQ2J,YACRC,IACOJ,EAAiBxJ,EAAQ2J,WAAYF,EAAUC,QAF1D,GAMJ,QAASG,GAAYnG,EAAOxB,EAAOuH,EAAU/G,GACpCoH,EAAUpG,EAAMnB,MACjBuH,EAAUpG,EAAMnB,QAGfuH,EAAUpG,EAAMnB,IAAIL,KACrB4H,EAAUpG,EAAMnB,IAAIL,OAGnB4H,EAAUpG,EAAMnB,IAAIL,GAAOuH,KAC5BK,EAAUpG,EAAMnB,IAAIL,GAAOuH,OAG/BK,EAAUpG,EAAMnB,IAAIL,GAAOuH,GAAUpE,KAAK3C,GAG9C,QAASqH,GAAerG,EAAOxB,EAAOuH,EAAU/G,GAI5C,GAAKoH,EAAUpG,EAAMnB,IAMrB,GAAKL,EAAL,CAWA,IAAKQ,IAAa+G,EAEd,YADAK,EAAUpG,EAAMnB,IAAIL,MAOxB,KAAKQ,EAED,kBADOoH,GAAUpG,EAAMnB,IAAIL,GAAOuH,EAOtC,IAAKK,EAAUpG,EAAMnB,IAAIL,GAAOuH,GAMhC,IAAK,GAAI1K,GAAI,EAAGA,EAAI+K,EAAUpG,EAAMnB,IAAIL,GAAOuH,GAAUnK,OAAQP,IAC7D,GAAI+K,EAAUpG,EAAMnB,IAAIL,GAAOuH,GAAU1K,KAAO2D,EAAU,CACtDoH,EAAUpG,EAAMnB,IAAIL,GAAOuH,GAAUO,OAAOjL,EAAG,EAC/C,YAnCJ,KAAK,GAAI4H,KAAQmD,GAAUpG,EAAMnB,IACzBuH,EAAUpG,EAAMnB,IAAI0H,eAAetD,KACnCmD,EAAUpG,EAAMnB,IAAIoE,OAsCpC,QAASuD,GAAa3H,EAAIhE,EAAGoI,GACzB,GAAKmD,EAAUvH,GAAIoE,GAAnB,CAIA,GACI8C,GACA5B,EAFAzF,EAAS7D,EAAE6D,QAAU7D,EAAE8D,WAGvB6G,KACAnK,EAAI,EACJiI,EAAI,CAGR4C,GAAS,CACT,KAAKH,IAAYK,GAAUvH,GAAIoE,GACvBmD,EAAUvH,GAAIoE,GAAMsD,eAAeR,KACnC5B,EAAQ2B,EAAiBpH,EAAQqH,EAAUU,EAAgB5H,GAAIvC,WAElD2B,EAAMyI,aAAazD,EAAMwD,EAAgB5H,GAAIvC,QAAS6H,EAAmB,SAAZ4B,EAAqBlL,KAC3FqL,IACAE,EAAUvH,GAAIoE,GAAM8C,GAAU5B,MAAQA,EACtCqB,EAAQU,GAAUE,EAAUvH,GAAIoE,GAAM8C,GAWlD,KAJAlL,EAAEwK,gBAAkB,WAChBxK,EAAE8L,cAAe,GAGhBtL,EAAI,EAAGA,GAAK6K,EAAQ7K,IACrB,GAAImK,EAAQnK,GACR,IAAKiI,EAAI,EAAGA,EAAIkC,EAAQnK,GAAGO,OAAQ0H,IAAK,CACpC,IAAgD,IAA5CkC,EAAQnK,GAAGiI,GAAG3H,KAAK6J,EAAQnK,GAAG8I,MAAOtJ,GAErC,WADAoD,GAAM2I,OAAO/L,EAIjB,IAAIA,EAAE8L,aACF,SAgBpB,QAASE,GAAM/E,EAAQiE,EAAU/G,EAAU8H,GAIvC,GAAKjK,KAAKP,QAAV,CAIMwF,YAAkB0C,SACpB1C,GAAUA,IAGT9C,GAAgC,kBAAd,KACnBA,EAAW+G,EACXA,EAAW,QAGf,IACI1K,GADAwD,EAAKhC,KAAKgC,EASd,KAAKxD,EAAI,EAAGA,EAAIyG,EAAOlG,OAAQP,IACvByL,EACAT,EAAexJ,KAAMiF,EAAOzG,GAAI0K,EAAU/G,IAIzCoH,EAAUvH,IAAQuH,EAAUvH,GAAIiD,EAAOzG,KACxC4C,EAAM8I,SAASlK,KAAMiF,EAAOzG,GAbpC,SAA4B4H,GACxB,MAAO,UAASpI,GACZ2L,EAAa3H,EAAIhE,EAAGoI,KAW+BnB,EAAOzG,KAG9D8K,EAAYtJ,KAAMiF,EAAOzG,GAAI0K,EAAU/G,GAG3C,OAAOnC,OAQX,QAASoB,GAAM3B,EAASuC,GAGpB,KAAMhC,eAAgBoB,IAAQ,CAM1B,IAAK,GAAIiF,KAAOuD,GACZ,GAAIA,EAAgBvD,GAAK5G,UAAYA,EACjC,MAAOmK,GAAgBvD,EAO/B,OAHA8D,KACAP,EAAgBO,GAAO,GAAI/I,GAAM3B,EAAS0K,GAEnCP,EAAgBO,GAG3BnK,KAAKP,QAAUA,EACfO,KAAKgC,GAAKA,EAnSd,GAAI0G,GACAW,EAAS,EACTc,EAAM,EACNZ,KACAK,IA0SJxI,GAAMsC,UAAUjC,GAAK,SAASwD,EAAQiE,EAAU/G,GAC5C,MAAO6H,GAAMlL,KAAKkB,KAAMiF,EAAQiE,EAAU/G,IAW9Cf,EAAMsC,UAAUyB,IAAM,SAASF,EAAQiE,EAAU/G,GAC7C,MAAO6H,GAAMlL,KAAKkB,KAAMiF,EAAQiE,EAAU/G,GAAU,IAGxDf,EAAM4H,gBAAkB,aACxB5H,EAAM2I,OAASzB,EACflH,EAAM8I,SAAW9B,EACjBhH,EAAMyI,aAAe,WACjB,OAAO,OAGW,KAAX5K,GAA0BA,EAAOJ,UACxCI,EAAOJ,QAAUuC,GAGrBD,OAAOC,MAAQA,UAGbgJ,GAAG,SAASvM,EAAQoB,EAAOJ,IAE/B,SAASwL,GASV,GAAI/G,GAAW,SAAUnE,EAAMuD,EAAM4H,GAEpC,IAAI,GAAIjE,KAAO3D,GAEd,GAAMA,EAAKgH,eAAgBrD,GAA3B,CAIA,GAAI5C,GAAO4C,EACPtG,EAAQ2C,EAAK2D,EAejB,QAbyB,KAAuBtG,IACvBA,EAAQ,IAGR,OAASA,IACTA,EAAQ,QAIT,KAAf,IACR0D,EAAO6G,EAAW,IAAMjE,EAAM,KAG5BtG,EAAMwK,cAAgB5C,MACxBlE,GAAQ,SACF,IAAmB,gBAAT1D,GAAmB,CACnCuD,EAAUnE,EAAMY,EAAO0D,EACvB,UAID,GAAIhE,GAAUN,EAAKsB,SAAS+J,UAAW/G,EACvC,IAAMhE,EAAN,CAIA,GAAI2G,GAAO3G,EAAQ2G,MAAQ3G,EAAQ,GAAG2G,IAEtC,QAAOA,GACN,QACC3G,EAAQM,MAAQA,CAChB,MAED,KAAK,QACL,IAAK,WACJ,IAAK,GAAI0G,GAAE,EAAGA,EAAIhH,EAAQV,OAAQ0H,IACjChH,EAAQgH,GAAGvG,QAAYH,EAAM0K,QAAQhL,EAAQgH,GAAG1G,QAAU,CAE3D,MAED,KAAK,kBAGJ,IAAI,GAFA2K,GAAS3K,EAAMwK,aAAe5C,MAAQ5H,GAASA,GAE3C4K,EAAI,EAAGA,EAAIlL,EAAQ8F,QAAQxG,OAAQ4L,IAC1ClL,EAAQ8F,QAAQoF,GAAG9D,UAAa6D,EAAOD,QAAQhL,EAAQ8F,QAAQoF,GAAG5K,QAAU,CAE7E,MAED,KAAK,SACL,IAAK,aACJN,EAAQM,MAAQA,EAAM6K,YAAc7K,CACpC,MACD,KAAK,OACKN,EAAQM,MAAQ,GAAI+C,MAAK/C,GAAO8K,cAAc9J,MAAM,KAAK,MAShD,mBAAVhD,IAA6C,gBAAdA,GAAO+M,KAAmB/M,EAAO+M,IAC3E/M,EAAO,WACN,MAAOuF,SAEqB,KAAXrE,GAA0BA,EAAOJ,QACnDI,EAAOJ,QAAUyE,EAEjB+G,EAAK/G,SAAWA,GAGhBtD,WAEI+K,GAAG,SAASlN,EAAQoB,EAAOJ,IAQ/B,SAAUA,GACR,YAQA,SAASmG,MAcT,QAASgG,GAAgB9I,EAAW+I,GAEhC,IADA,GAAIzM,GAAI0D,EAAUnD,OACXP,KACH,GAAI0D,EAAU1D,GAAGyM,WAAaA,EAC1B,MAAOzM,EAIf,QAAQ,EAUZ,QAAS0M,GAAMzH,GACX,MAAO,YACH,MAAOzD,MAAKyD,GAAM0H,MAAMnL,KAAMoL,YAsEtC,QAASC,GAAiBJ,GACtB,MAAwB,kBAAbA,IAA2BA,YAAoB7D,YAE/C6D,GAAgC,gBAAbA,KACnBI,EAAgBJ,EAASA,UAzGxC,GAAIK,GAAQtG,EAAatB,UACrB6H,EAAsB1M,EAAQmG,YA2ClCsG,GAAME,aAAe,SAAsBC,GACvC,GACIC,GACArF,EAFApB,EAASjF,KAAK2L,YAMlB,IAAIF,YAAerE,QAAQ,CACvBsE,IACA,KAAKrF,IAAOpB,GACJA,EAAOyE,eAAerD,IAAQoF,EAAIxF,KAAKI,KACvCqF,EAASrF,GAAOpB,EAAOoB,QAK/BqF,GAAWzG,EAAOwG,KAASxG,EAAOwG,MAGtC,OAAOC,IASXJ,EAAMM,iBAAmB,SAA0B1J,GAC/C,GACI1D,GADAqN,IAGJ,KAAKrN,EAAI,EAAGA,EAAI0D,EAAUnD,OAAQP,GAAK,EACnCqN,EAAc/G,KAAK5C,EAAU1D,GAAGyM,SAGpC,OAAOY,IASXP,EAAMQ,qBAAuB,SAA8BL,GACvD,GACIC,GADAxJ,EAAYlC,KAAKwL,aAAaC,EAQlC,OALIvJ,aAAqByF,SACrB+D,KACAA,EAASD,GAAOvJ,GAGbwJ,GAAYxJ,GAuBvBoJ,EAAMS,YAAc,SAAqBN,EAAKR,GAC1C,IAAKI,EAAgBJ,GACjB,KAAM,IAAIe,WAAU,8BAGxB,IAEI3F,GAFAnE,EAAYlC,KAAK8L,qBAAqBL,GACtCQ,EAAwC,gBAAbhB,EAG/B,KAAK5E,IAAOnE,GACJA,EAAUwH,eAAerD,KAAuD,IAA/C2E,EAAgB9I,EAAUmE,GAAM4E,IACjE/I,EAAUmE,GAAKvB,KAAKmH,EAAoBhB,GACpCA,SAAUA,EACViB,MAAM,GAKlB,OAAOlM,OAMXsL,EAAM7J,GAAKyJ,EAAM,eAUjBI,EAAMa,gBAAkB,SAAyBV,EAAKR,GAClD,MAAOjL,MAAK+L,YAAYN,GACpBR,SAAUA,EACViB,MAAM,KAOdZ,EAAMY,KAAOhB,EAAM,mBASnBI,EAAMc,YAAc,SAAqBX,GAErC,MADAzL,MAAKwL,aAAaC,GACXzL,MASXsL,EAAMe,aAAe,SAAsBC,GACvC,IAAK,GAAI9N,GAAI,EAAGA,EAAI8N,EAAKvN,OAAQP,GAAK,EAClCwB,KAAKoM,YAAYE,EAAK9N,GAE1B,OAAOwB,OAWXsL,EAAMiB,eAAiB,SAAwBd,EAAKR,GAChD,GACInD,GACAzB,EAFAnE,EAAYlC,KAAK8L,qBAAqBL,EAI1C,KAAKpF,IAAOnE,GACJA,EAAUwH,eAAerD,KAGV,KAFfyB,EAAQkD,EAAgB9I,EAAUmE,GAAM4E,KAGpC/I,EAAUmE,GAAKoD,OAAO3B,EAAO,EAKzC,OAAO9H,OAMXsL,EAAMnG,IAAM+F,EAAM,kBAYlBI,EAAMkB,aAAe,SAAsBf,EAAKvJ,GAE5C,MAAOlC,MAAKyM,qBAAoB,EAAOhB,EAAKvJ,IAahDoJ,EAAMoB,gBAAkB,SAAyBjB,EAAKvJ,GAElD,MAAOlC,MAAKyM,qBAAoB,EAAMhB,EAAKvJ,IAe/CoJ,EAAMmB,oBAAsB,SAA6BxC,EAAQwB,EAAKvJ,GAClE,GAAI1D,GACAuB,EACA4M,EAAS1C,EAASjK,KAAKuM,eAAiBvM,KAAK+L,YAC7Ca,EAAW3C,EAASjK,KAAK0M,gBAAkB1M,KAAKwM,YAGpD,IAAmB,gBAARf,IAAsBA,YAAerE,QAmB5C,IADA5I,EAAI0D,EAAUnD,OACPP,KACHmO,EAAO7N,KAAKkB,KAAMyL,EAAKvJ,EAAU1D,QAnBrC,KAAKA,IAAKiN,GACFA,EAAI/B,eAAelL,KAAOuB,EAAQ0L,EAAIjN,MAEjB,kBAAVuB,GACP4M,EAAO7N,KAAKkB,KAAMxB,EAAGuB,GAIrB6M,EAAS9N,KAAKkB,KAAMxB,EAAGuB,GAevC,OAAOC,OAYXsL,EAAMuB,YAAc,SAAqBpB,GACrC,GAEIpF,GAFAD,QAAcqF,GACdxG,EAASjF,KAAK2L,YAIlB,IAAa,WAATvF,QAEOnB,GAAOwG,OAEb,IAAIA,YAAerE,QAEpB,IAAKf,IAAOpB,GACJA,EAAOyE,eAAerD,IAAQoF,EAAIxF,KAAKI,UAChCpB,GAAOoB,cAMfrG,MAAK8M,OAGhB,OAAO9M,OAQXsL,EAAMyB,mBAAqB7B,EAAM,eAcjCI,EAAM0B,UAAY,SAAmBvB,EAAKlM,GACtC,GACI2C,GACA+I,EACAzM,EACA6H,EAJA4G,EAAejN,KAAK8L,qBAAqBL,EAO7C,KAAKpF,IAAO4G,GACR,GAAIA,EAAavD,eAAerD,GAG5B,IAFAnE,EAAY+K,EAAa5G,GAAKS,MAAM,GAE/BtI,EAAI,EAAGA,EAAI0D,EAAUnD,OAAQP,IAG9ByM,EAAW/I,EAAU1D,IAEC,IAAlByM,EAASiB,MACTlM,KAAKuM,eAAed,EAAKR,EAASA,UAG3BA,EAASA,SAASE,MAAMnL,KAAMT,SAExBS,KAAKkN,uBAClBlN,KAAKuM,eAAed,EAAKR,EAASA,SAMlD,OAAOjL,OAMXsL,EAAMvJ,QAAUmJ,EAAM,aAUtBI,EAAM6B,KAAO,SAAc1B,GACvB,GAAIlM,GAAOoI,MAAMjE,UAAUoD,MAAMhI,KAAKsM,UAAW,EACjD,OAAOpL,MAAKgN,UAAUvB,EAAKlM,IAW/B+L,EAAM8B,mBAAqB,SAA4BrN,GAEnD,MADAC,MAAKqN,iBAAmBtN,EACjBC,MAWXsL,EAAM4B,oBAAsB,WACxB,OAAIlN,KAAK0J,eAAe,qBACb1J,KAAKqN,kBAapB/B,EAAMK,WAAa,WACf,MAAO3L,MAAK8M,UAAY9M,KAAK8M,aAQjC9H,EAAasI,WAAa,WAEtB,MADAzO,GAAQmG,aAAeuG,EAChBvG,GAIW,kBAAXjH,IAAyBA,EAAO+M,IACvC/M,EAAO,WACH,MAAOiH,KAGY,gBAAX/F,IAAuBA,EAAOJ,QAC1CI,EAAOJ,QAAUmG,EAGjBnG,EAAQmG,aAAeA,GAE7BhF,oBAES","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\n// deps & vars\n\nvar mc4wp = window.mc4wp || {};\nvar Gator = require('gator');\nvar forms = require('./forms/forms.js');\nvar config = window.mc4wp_forms_config || {};\n\n// funcs\nfunction scrollToForm(form) {\n\tvar animate = config.auto_scroll === 'animated';\n\tvar args = {\n\t\tbehavior: animate ? \"smooth\" : \"instant\"\n\t};\n\tform.element.scrollIntoView(args);\n}\n\nfunction handleFormRequest(form, action, errors, data) {\n\tvar pageHeight = document.body.clientHeight;\n\tvar timeStart = Date.now();\n\n\t// re-populate form\n\tif (errors) {\n\t\tform.setData(data);\n\t}\n\n\tif (config.auto_scroll) {\n\t\tscrollToForm(form);\n\t}\n\n\t// trigger events on window.load so all other scripts have loaded\n\twindow.addEventListener('load', function () {\n\t\tvar timeElapsed = Date.now() - timeStart;\n\n\t\t// scroll to form again if page height changed since last scroll\n\t\t// (only if load didn't take more than 0.8 seconds to prevent overtaking user scroll)\n\t\tif (config.auto_scroll && timeElapsed < 800 && document.body.clientHeight !== pageHeight) {\n\t\t\tscrollToForm(form);\n\t\t}\n\n\t\t// trigger events\n\t\tforms.trigger('submitted', [form]);\n\t\tforms.trigger(form.id + '.submitted', [form]);\n\n\t\tif (errors) {\n\t\t\tforms.trigger('error', [form, errors]);\n\t\t\tforms.trigger(form.id + '.error', [form, errors]);\n\t\t} else {\n\t\t\t// form was successfully submitted\n\t\t\tforms.trigger('success', [form, data]);\n\t\t\tforms.trigger(form.id + '.success', [form, data]);\n\n\t\t\t// subscribed / unsubscribed\n\t\t\tforms.trigger(action + \"d\", [form, data]);\n\t\t\tforms.trigger(form.id + \".\" + action + \"d\", [form, data]);\n\t\t}\n\t});\n}\n\nfunction toggleElement(el, expectedValue, show) {\n\treturn function () {\n\t\tvar value = this.value.trim();\n\t\tvar checked = this.getAttribute('type') !== 'radio' && this.getAttribute('type') !== 'checked' || this.checked;\n\t\tvar conditionMet = checked && (value === expectedValue && expectedValue !== \"\" || expectedValue === \"\" && value.length > 0);\n\t\tif (show) {\n\t\t\tel.style.display = conditionMet ? '' : 'none';\n\t\t} else {\n\t\t\tel.style.display = conditionMet ? 'none' : '';\n\t\t}\n\t};\n}\n\nfunction toggleConditionalElements() {\n\tvar input = this;\n\tvar elements = input.form.querySelectorAll('[data-show-if], [data-hide-if]');\n\tvar inputName = (input.getAttribute('name') || '').toLowerCase();\n\n\t[].forEach.call(elements, function (el) {\n\t\tvar show = !!el.getAttribute('data-show-if');\n\t\tvar conditions = show ? el.getAttribute('data-show-if').split(':') : el.getAttribute('data-hide-if').split(':');\n\t\tvar nameCondition = conditions[0];\n\t\tvar valueCondition = conditions[1] || \"\";\n\n\t\tif (inputName !== nameCondition.toLowerCase()) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar callback = toggleElement(el, valueCondition, show);\n\t\tcallback.call(input);\n\t});\n}\n\nGator(document.body).on('keyup', '.mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select', toggleConditionalElements);\nGator(document.body).on('change', '.mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select', toggleConditionalElements);\nwindow.addEventListener('load', function () {\n\t[].forEach.call(document.querySelectorAll('.mc4wp-form input, .mc4wp-form textarea, .mc4wp-form select'), function (el) {\n\t\ttoggleConditionalElements.call(el);\n\t});\n});\n\n// Bind browser events to form events (using delegation)\nGator(document.body).on('submit', '.mc4wp-form', function (event) {\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('submit', [form, event]);\n\tforms.trigger(form.id + '.submit', [form, event]);\n});\n\nGator(document.body).on('focus', '.mc4wp-form', function (event) {\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\n\tif (!form.started) {\n\t\tforms.trigger('started', [form, event]);\n\t\tforms.trigger(form.id + '.started', [form, event]);\n\t\tform.started = true;\n\t}\n});\n\nGator(document.body).on('change', '.mc4wp-form', function (event) {\n\tvar form = forms.getByElement(event.target || event.srcElement);\n\tforms.trigger('change', [form, event]);\n\tforms.trigger(form.id + '.change', [form, event]);\n});\n\n// register early listeners\nif (mc4wp.listeners) {\n\tvar listeners = mc4wp.listeners;\n\tfor (var i = 0; i < listeners.length; i++) {\n\t\tforms.on(listeners[i].event, listeners[i].callback);\n\t}\n\n\t// delete temp listeners array, so we don't bind twice\n\tdelete mc4wp[\"listeners\"];\n}\n\n// expose forms object\nmc4wp.forms = forms;\n\n// handle submitted form\nif (config.submitted_form) {\n\tvar formConfig = config.submitted_form,\n\t element = document.getElementById(formConfig.element_id),\n\t form = forms.getByElement(element);\n\n\thandleFormRequest(form, formConfig.action, formConfig.errors, formConfig.data);\n}\n\n// expose mc4wp object globally\nwindow.mc4wp = mc4wp;\n\n},{\"./forms/forms.js\":3,\"gator\":5}],2:[function(require,module,exports){\n'use strict';\n\nvar serialize = require('form-serialize');\nvar populate = require('populate.js');\n\nvar Form = function Form(id, element) {\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\nForm.prototype.setData = function (data) {\n\ttry {\n\t\tpopulate(this.element, data);\n\t} catch (e) {\n\t\tconsole.error(e);\n\t}\n};\n\nForm.prototype.getData = function () {\n\treturn serialize(this.element, { hash: true, empty: true });\n};\n\nForm.prototype.getSerializedData = function () {\n\treturn serialize(this.element, { hash: false, empty: true });\n};\n\nForm.prototype.setResponse = function (msg) {\n\tthis.element.querySelector('.mc4wp-response').innerHTML = msg;\n};\n\n// revert back to original state\nForm.prototype.reset = function () {\n\tthis.setResponse('');\n\tthis.element.querySelector('.mc4wp-form-fields').style.display = '';\n\tthis.element.reset();\n};\n\nmodule.exports = Form;\n\n},{\"form-serialize\":4,\"populate.js\":6}],3:[function(require,module,exports){\n'use strict';\n\n// deps\n\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\nmodule.exports = {\n\t\"all\": all,\n\t\"get\": get,\n\t\"getByElement\": getByElement,\n\t\"on\": events.on.bind(events),\n\t\"trigger\": events.trigger.bind(events),\n\t\"off\": events.off.bind(events)\n};\n\n},{\"./form.js\":2,\"wolfy87-eventemitter\":7}],4:[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 if (typeof options != 'object') {\n options = { hash: !!options };\n }\n else if (options.hash === undefined) {\n options.hash = true;\n }\n\n var result = (options.hash) ? {} : '';\n var serializer = options.serializer || ((options.hash) ? hash_serializer : str_serialize);\n\n var elements = form && form.elements ? form.elements : [];\n\n //Object store each radio and set if it's empty or not\n var radio_store = Object.create(null);\n\n for (var i=0 ; i<elements.length ; ++i) {\n var element = elements[i];\n\n // ingore disabled fields\n if ((!options.disabled && element.disabled) || !element.name) {\n continue;\n }\n // ignore anyhting that is not considered a success field\n if (!k_r_success_contrls.test(element.nodeName) ||\n k_r_submitter.test(element.type)) {\n continue;\n }\n\n var key = element.name;\n var val = element.value;\n\n // we can't just use element.value for checkboxes cause some browsers lie to us\n // they say \"on\" for value when the box isn't checked\n if ((element.type === 'checkbox' || element.type === 'radio') && !element.checked) {\n val = undefined;\n }\n\n // If we want empty elements\n if (options.empty) {\n // for checkbox\n if (element.type === 'checkbox' && !element.checked) {\n val = '';\n }\n\n // for radio\n if (element.type === 'radio') {\n if (!radio_store[element.name] && !element.checked) {\n radio_store[element.name] = false;\n }\n else if (element.checked) {\n radio_store[element.name] = true;\n }\n }\n\n // if options empty is true, continue only if its radio\n if (val == undefined && element.type == 'radio') {\n continue;\n }\n }\n else {\n // value-less fields are ignored unless options.empty is true\n if (!val) {\n continue;\n }\n }\n\n // multi select boxes\n if (element.type === 'select-multiple') {\n val = [];\n\n var selectOptions = element.options;\n var isSelectedOptions = false;\n for (var j=0 ; j<selectOptions.length ; ++j) {\n var option = selectOptions[j];\n var allowedEmpty = options.empty && !option.value;\n var hasValue = (option.value || allowedEmpty);\n if (option.selected && hasValue) {\n isSelectedOptions = true;\n\n // If using a hash serializer be sure to add the\n // correct notation for an array in the multi-select\n // context. Here the name attribute on the select element\n // might be missing the trailing bracket pair. Both names\n // \"foo\" and \"foo[]\" should be arrays.\n if (options.hash && key.slice(key.length - 2) !== '[]') {\n result = serializer(result, key + '[]', option.value);\n }\n else {\n result = serializer(result, key, option.value);\n }\n }\n }\n\n // Serialize if no selected options and options.empty is true\n if (!isSelectedOptions && options.empty) {\n result = serializer(result, key, '');\n }\n\n continue;\n }\n\n result = serializer(result, key, val);\n }\n\n // Check for all empty radio buttons and serialize them with key=\"\"\n if (options.empty) {\n for (var key in radio_store) {\n if (!radio_store[key]) {\n result = serializer(result, key, '');\n }\n }\n }\n\n return result;\n}\n\nfunction parse_keys(string) {\n var keys = [];\n var prefix = /^([^\\[\\]]*)/;\n var children = new RegExp(brackets);\n var match = prefix.exec(string);\n\n if (match[1]) {\n keys.push(match[1]);\n }\n\n while ((match = children.exec(string)) !== null) {\n keys.push(match[1]);\n }\n\n return keys;\n}\n\nfunction hash_assign(result, keys, value) {\n if (keys.length === 0) {\n result = value;\n return result;\n }\n\n var key = keys.shift();\n var between = key.match(/^\\[(.+?)\\]$/);\n\n if (key === '[]') {\n result = result || [];\n\n if (Array.isArray(result)) {\n result.push(hash_assign(null, keys, value));\n }\n else {\n // This might be the result of bad name attributes like \"[][foo]\",\n // in this case the original `result` object will already be\n // assigned to an object literal. Rather than coerce the object to\n // an array, or cause an exception the attribute \"_values\" is\n // assigned as an array.\n result._values = result._values || [];\n result._values.push(hash_assign(null, keys, value));\n }\n\n return result;\n }\n\n // Key is an attribute name and can be assigned directly.\n if (!between) {\n result[key] = hash_assign(result[key], keys, value);\n }\n else {\n var string = between[1];\n // +var converts the variable into a number\n // better than parseInt because it doesn't truncate away trailing\n // letters and actually fails if whole thing is not a number\n var index = +string;\n\n // If the characters between the brackets is not a number it is an\n // attribute name and can be assigned directly.\n if (isNaN(index)) {\n result = result || {};\n result[string] = hash_assign(result[string], keys, value);\n }\n else {\n result = result || [];\n result[index] = hash_assign(result[index], keys, value);\n }\n }\n\n return result;\n}\n\n// Object/hash encoding serializer.\nfunction hash_serializer(result, key, value) {\n var matches = key.match(brackets);\n\n // Has brackets? Use the recursive assignment function to walk the keys,\n // construct any missing objects in the result tree and make the assignment\n // at the end of the chain.\n if (matches) {\n var keys = parse_keys(key);\n hash_assign(result, keys, value);\n }\n else {\n // Non bracket notation can make assignments directly.\n var existing = result[key];\n\n // If the value has been assigned already (for instance when a radio and\n // a checkbox have the same name attribute) convert the previous value\n // into an array before pushing into it.\n //\n // NOTE: If this requirement were removed all hash creation and\n // assignment could go through `hash_assign`.\n if (existing) {\n if (!Array.isArray(existing)) {\n result[key] = [ existing ];\n }\n\n result[key].push(value);\n }\n else {\n result[key] = value;\n }\n }\n\n return result;\n}\n\n// urlform encoding serializer\nfunction str_serialize(result, key, value) {\n // encode newlines as \\r\\n cause the html spec says so\n value = value.replace(/(\\r)?\\n/g, '\\r\\n');\n value = encodeURIComponent(value);\n\n // spaces should be '+' rather than '%20'.\n value = value.replace(/%20/g, '+');\n return result + (result ? '&' : '') + encodeURIComponent(key) + '=' + value;\n}\n\nmodule.exports = serialize;\n\n},{}],5:[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},{}],6:[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 if ('undefined' === typeof value) {\n value = '';\n }\n\n if (null === value) {\n value = '';\n }\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\t\t\t\tcase 'date':\n \t\t\t\telement.value = new Date(value).toISOString().split('T')[0];\t\n\t\t\t\t\tbreak;\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\n},{}],7:[function(require,module,exports){\n/*!\n * EventEmitter v5.2.2 - git.io/ee\n * Unlicense - http://unlicense.org/\n * Oliver Caldwell - http://oli.me.uk/\n * @preserve\n */\n\n;(function (exports) {\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 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 function isValidListener (listener) {\n if (typeof listener === 'function' || listener instanceof RegExp) {\n return true\n } else if (listener && typeof listener === 'object') {\n return isValidListener(listener.listener)\n } else {\n return false\n }\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 if (!isValidListener(listener)) {\n throw new TypeError('listener must be a function');\n }\n\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 first 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 first 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\n for (i = 0; i < listeners.length; 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}(this || {}));\n\n},{}]},{},[1]);\n })();"]}
|
includes/forms/class-admin.php
CHANGED
@@ -39,10 +39,8 @@ class MC4WP_Forms_Admin {
|
|
39 |
add_action( 'mc4wp_admin_edit_form', array( $this, 'process_save_form' ) );
|
40 |
add_action( 'mc4wp_admin_add_form', array( $this, 'process_add_form' ) );
|
41 |
add_filter( 'mc4wp_admin_menu_items', array( $this, 'add_menu_item' ), 5 );
|
42 |
-
|
43 |
add_action( 'mc4wp_admin_show_forms_page-edit-form', array( $this, 'show_edit_page' ) );
|
44 |
add_action( 'mc4wp_admin_show_forms_page-add-form', array( $this, 'show_add_page' ) );
|
45 |
-
|
46 |
add_action( 'mc4wp_admin_enqueue_assets', array( $this, 'enqueue_assets' ), 10, 2 );
|
47 |
}
|
48 |
|
@@ -109,7 +107,7 @@ class MC4WP_Forms_Admin {
|
|
109 |
|
110 |
$items['forms'] = array(
|
111 |
'title' => __( 'Forms', 'mailchimp-for-wp' ),
|
112 |
-
'text' => __( '
|
113 |
'slug' => 'forms',
|
114 |
'callback' => array( $this, 'show_forms_page' ),
|
115 |
'load_callback' => array( $this, 'redirect_to_form_action' ),
|
39 |
add_action( 'mc4wp_admin_edit_form', array( $this, 'process_save_form' ) );
|
40 |
add_action( 'mc4wp_admin_add_form', array( $this, 'process_add_form' ) );
|
41 |
add_filter( 'mc4wp_admin_menu_items', array( $this, 'add_menu_item' ), 5 );
|
|
|
42 |
add_action( 'mc4wp_admin_show_forms_page-edit-form', array( $this, 'show_edit_page' ) );
|
43 |
add_action( 'mc4wp_admin_show_forms_page-add-form', array( $this, 'show_add_page' ) );
|
|
|
44 |
add_action( 'mc4wp_admin_enqueue_assets', array( $this, 'enqueue_assets' ), 10, 2 );
|
45 |
}
|
46 |
|
107 |
|
108 |
$items['forms'] = array(
|
109 |
'title' => __( 'Forms', 'mailchimp-for-wp' ),
|
110 |
+
'text' => __( 'Form', 'mailchimp-for-wp' ),
|
111 |
'slug' => 'forms',
|
112 |
'callback' => array( $this, 'show_forms_page' ),
|
113 |
'load_callback' => array( $this, 'redirect_to_form_action' ),
|
integrations/bootstrap.php
CHANGED
@@ -45,7 +45,8 @@ mc4wp_register_integration( 'contact-form-7', 'MC4WP_Contact_Form_7_Integration'
|
|
45 |
mc4wp_register_integration( 'events-manager', 'MC4WP_Events_Manager_Integration' );
|
46 |
mc4wp_register_integration( 'memberpress', 'MC4WP_MemberPress_Integration' );
|
47 |
mc4wp_register_integration( 'custom', 'MC4WP_Custom_Integration', true );
|
48 |
-
|
49 |
-
require
|
50 |
-
|
|
|
51 |
|
45 |
mc4wp_register_integration( 'events-manager', 'MC4WP_Events_Manager_Integration' );
|
46 |
mc4wp_register_integration( 'memberpress', 'MC4WP_MemberPress_Integration' );
|
47 |
mc4wp_register_integration( 'custom', 'MC4WP_Custom_Integration', true );
|
48 |
+
$dir = dirname( __FILE__ );
|
49 |
+
require $dir . '/ninja-forms/bootstrap.php';
|
50 |
+
require $dir . '/wpforms/bootstrap.php';
|
51 |
+
require $dir . '/gravity-forms/bootstrap.php';
|
52 |
|
integrations/gravity-forms/admin-before.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<p>
|
2 |
+
<?php echo sprintf( __( 'To integrate with Gravity Forms, add the "MailChimp" field to <a href="%s">one of your Gravity Forms forms</a>.', 'mailchimp-for-wp' ), admin_url( 'admin.php?page=gf_edit_forms' ) ); ?>
|
3 |
+
</p>
|
integrations/gravity-forms/bootstrap.php
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined( 'ABSPATH' ) or exit;
|
4 |
+
|
5 |
+
mc4wp_register_integration( 'gravity-forms', 'MC4WP_Gravity_Forms_Integration', true );
|
6 |
+
|
7 |
+
if ( class_exists( 'GFForms' ) ) {
|
8 |
+
GF_Fields::register( new MC4WP_Gravity_Forms_Field() );
|
9 |
+
}
|
integrations/gravity-forms/class-field.php
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class MC4WP_Gravity_Forms_Field extends GF_Field {
|
4 |
+
|
5 |
+
public $type = 'mailchimp';
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Returns the field markup; including field label, description, validation, and the form editor admin buttons.
|
9 |
+
*
|
10 |
+
* The {FIELD} placeholder will be replaced in GFFormDisplay::get_field_content with the markup returned by GF_Field::get_field_input().
|
11 |
+
*
|
12 |
+
* @param string|array $value The field value. From default/dynamic population, $_POST, or a resumed incomplete submission.
|
13 |
+
* @param bool $force_frontend_label Should the frontend label be displayed in the admin even if an admin label is configured.
|
14 |
+
* @param array $form The Form Object currently being processed.
|
15 |
+
*
|
16 |
+
* @return string
|
17 |
+
*/
|
18 |
+
public function get_field_content( $value, $force_frontend_label, $form ) {
|
19 |
+
|
20 |
+
$validation_message = ( $this->failed_validation && ! empty( $this->validation_message ) ) ? sprintf( "<div class='gfield_description validation_message'>%s</div>", $this->validation_message ) : '';
|
21 |
+
$is_form_editor = $this->is_form_editor();
|
22 |
+
$is_entry_detail = $this->is_entry_detail();
|
23 |
+
$is_admin = $is_form_editor || $is_entry_detail;
|
24 |
+
|
25 |
+
$admin_buttons = $this->get_admin_buttons();
|
26 |
+
|
27 |
+
$description = $this->get_description( $this->description, 'gfield_description' );
|
28 |
+
if ( $this->is_description_above( $form ) ) {
|
29 |
+
$clear = $is_admin ? "<div class='gf_clear'></div>" : '';
|
30 |
+
$field_content = sprintf( "%s%s{FIELD}%s$clear", $admin_buttons, $description, $validation_message );
|
31 |
+
} else {
|
32 |
+
$field_content = sprintf( "%s{FIELD}%s%s", $admin_buttons, $description, $validation_message );
|
33 |
+
}
|
34 |
+
|
35 |
+
return $field_content;
|
36 |
+
}
|
37 |
+
|
38 |
+
public function get_form_editor_field_title() {
|
39 |
+
return esc_attr__( 'MailChimp', 'mailchimp-for-wp' );
|
40 |
+
}
|
41 |
+
|
42 |
+
public function get_form_editor_field_settings() {
|
43 |
+
return array(
|
44 |
+
'label_setting',
|
45 |
+
'description_setting',
|
46 |
+
'css_class_setting',
|
47 |
+
'mailchimp_list_setting',
|
48 |
+
'mailchimp_double_optin'
|
49 |
+
);
|
50 |
+
}
|
51 |
+
|
52 |
+
public function get_field_input( $form, $value = '', $entry = null ) {
|
53 |
+
|
54 |
+
$form_id = absint( $form['id'] );
|
55 |
+
$is_entry_detail = $this->is_entry_detail();
|
56 |
+
$is_form_editor = $this->is_form_editor();
|
57 |
+
|
58 |
+
$id = $this->id;
|
59 |
+
$field_id = $is_entry_detail || $is_form_editor || $form_id == 0 ? "input_$id" : 'input_' . $form_id . "_$id";
|
60 |
+
$disabled_text = $is_form_editor ? 'disabled="disabled"' : '';
|
61 |
+
|
62 |
+
return sprintf( "<div class='ginput_container ginput_container_checkbox'><ul class='gfield_checkbox' id='%s'>%s</ul></div>", esc_attr( $field_id ), $this->get_checkbox_choices( $value, $disabled_text, $form_id ) );
|
63 |
+
}
|
64 |
+
|
65 |
+
|
66 |
+
public function get_checkbox_choices( $value, $disabled_text, $form_id = 0 ) {
|
67 |
+
$choices = '';
|
68 |
+
$is_entry_detail = $this->is_entry_detail();
|
69 |
+
$is_form_editor = $this->is_form_editor();
|
70 |
+
|
71 |
+
$choice = array(
|
72 |
+
'text' => $this->get_field_label( false, $value ),
|
73 |
+
'value' => "1",
|
74 |
+
'isSelected' => false,
|
75 |
+
);
|
76 |
+
|
77 |
+
$input_id = $this->id;
|
78 |
+
if ( $is_entry_detail || $is_form_editor || $form_id == 0 ){
|
79 |
+
$id = $this->id;
|
80 |
+
} else {
|
81 |
+
$id = $form_id . '_' . $this->id;
|
82 |
+
}
|
83 |
+
|
84 |
+
if ( ! isset( $_GET['gf_token'] ) && empty( $_POST ) && rgar( $choice, 'isSelected' ) ) {
|
85 |
+
$checked = "checked='checked'";
|
86 |
+
} elseif ( is_array( $value ) && RGFormsModel::choice_value_match( $this, $choice, rgget( $input_id, $value ) ) ) {
|
87 |
+
$checked = "checked='checked'";
|
88 |
+
} elseif ( ! is_array( $value ) && RGFormsModel::choice_value_match( $this, $choice, $value ) ) {
|
89 |
+
$checked = "checked='checked'";
|
90 |
+
} else {
|
91 |
+
$checked = '';
|
92 |
+
}
|
93 |
+
|
94 |
+
$logic_event = $this->get_conditional_logic_event( 'click' );
|
95 |
+
|
96 |
+
$tabindex = $this->get_tabindex();
|
97 |
+
$choice_value = $choice['value'];
|
98 |
+
$choice_value = esc_attr( $choice_value );
|
99 |
+
$choice_markup = "<li class='gchoice_{$id}'>
|
100 |
+
<input name='input_{$input_id}' type='checkbox' $logic_event value='{$choice_value}' {$checked} id='choice_{$id}' {$tabindex} {$disabled_text} />
|
101 |
+
<label for='choice_{$id}' id='label_{$id}'>{$choice['text']}</label>
|
102 |
+
</li>";
|
103 |
+
|
104 |
+
$choices .= gf_apply_filters( array(
|
105 |
+
'gform_field_choice_markup_pre_render',
|
106 |
+
$this->formId,
|
107 |
+
$this->id
|
108 |
+
), $choice_markup, $choice, $this, $value );
|
109 |
+
|
110 |
+
return gf_apply_filters( array( 'gform_field_choices', $this->formId, $this->id ), $choices, $this );
|
111 |
+
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
integrations/gravity-forms/class-gravity-forms.php
ADDED
@@ -0,0 +1,137 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
defined( 'ABSPATH' ) or exit;
|
4 |
+
|
5 |
+
/**
|
6 |
+
* Class MC4WP_Ninja_Forms_Integration
|
7 |
+
*
|
8 |
+
* @ignore
|
9 |
+
*/
|
10 |
+
class MC4WP_Gravity_Forms_Integration extends MC4WP_Integration {
|
11 |
+
|
12 |
+
/**
|
13 |
+
* @var string
|
14 |
+
*/
|
15 |
+
public $name = "Gravity Forms";
|
16 |
+
|
17 |
+
/**
|
18 |
+
* @var string
|
19 |
+
*/
|
20 |
+
public $description = "Subscribe visitors from your Gravity Forms forms.";
|
21 |
+
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Add hooks
|
25 |
+
*/
|
26 |
+
public function add_hooks() {
|
27 |
+
add_action( 'gform_field_standard_settings', array( $this, 'settings_fields' ), 10, 2);
|
28 |
+
add_action( 'gform_editor_js', array( $this, 'editor_js' ) );
|
29 |
+
add_action( 'gform_after_submission', array( $this, 'after_submission' ), 10, 2 );
|
30 |
+
}
|
31 |
+
|
32 |
+
public function after_submission( $submission, $form ) {
|
33 |
+
|
34 |
+
$subscribe = false;
|
35 |
+
$email_address = '';
|
36 |
+
$mailchimp_list_id = '';
|
37 |
+
$double_optin = $this->options['double_optin'];
|
38 |
+
|
39 |
+
// find email field & checkbox value
|
40 |
+
foreach( $form['fields'] as $field ) {
|
41 |
+
if( $field->type === 'email' && empty( $email_address ) && ! empty( $submission[ $field->id ] ) ) {
|
42 |
+
$email_address = $submission[ $field->id ];
|
43 |
+
}
|
44 |
+
|
45 |
+
if( $field->type === 'mailchimp' && ! empty( $submission[ $field->id ] ) ) {
|
46 |
+
$subscribe = true;
|
47 |
+
$mailchimp_list_id = $field->mailchimp_list;
|
48 |
+
|
49 |
+
if( isset( $field->mailchimp_double_optin ) ) {
|
50 |
+
$double_optin = $field->mailchimp_double_optin;
|
51 |
+
}
|
52 |
+
}
|
53 |
+
}
|
54 |
+
|
55 |
+
if( ! $subscribe || empty( $email_address ) || empty( $mailchimp_list_id ) ) {
|
56 |
+
return;
|
57 |
+
}
|
58 |
+
|
59 |
+
// override integration settings with field options
|
60 |
+
$orig_options = $this->options;
|
61 |
+
$this->options['lists'] = array( $mailchimp_list_id );
|
62 |
+
$this->options['double_optin'] = $double_optin;
|
63 |
+
|
64 |
+
// perform the sign-up
|
65 |
+
$this->subscribe( array( 'EMAIL' => $email_address ), $submission['form_id'] );
|
66 |
+
|
67 |
+
// revert back to original options in case request lives on
|
68 |
+
$this->options = $orig_options;
|
69 |
+
}
|
70 |
+
|
71 |
+
public function editor_js() {
|
72 |
+
?>
|
73 |
+
<script type="text/javascript">
|
74 |
+
/*
|
75 |
+
* When the field settings are initialized, populate
|
76 |
+
* the custom field setting.
|
77 |
+
*/
|
78 |
+
jQuery(document).on('gform_load_field_settings', function(ev, field) {
|
79 |
+
jQuery('#field_mailchimp_list').val(field.mailchimp_list || '');
|
80 |
+
jQuery('#field_mailchimp_double_optin').val(field.mailchimp_double_optin || "1");
|
81 |
+
});
|
82 |
+
</script>
|
83 |
+
<?php
|
84 |
+
}
|
85 |
+
|
86 |
+
public function settings_fields( $pos, $form_id ) {
|
87 |
+
if( $pos !== 0 ) { return; }
|
88 |
+
$mailchimp = new MC4WP_MailChimp();
|
89 |
+
$lists = $mailchimp->get_cached_lists();
|
90 |
+
?>
|
91 |
+
<li class="mailchimp_list_setting field_setting">
|
92 |
+
<label for="field_mailchimp_list" class="section_label">
|
93 |
+
<?php esc_html_e( 'MailChimp list', 'mailchimp-for-wp' ); ?>
|
94 |
+
</label>
|
95 |
+
<select id="field_mailchimp_list" onchange="SetFieldProperty('mailchimp_list', this.value)">
|
96 |
+
<option value="" disabled><?php _e( 'Select a MailChimp list', 'mailchimp-for-wp' ); ?></option>
|
97 |
+
<?php foreach( $lists as $list ) {
|
98 |
+
echo sprintf( '<option value="%s">%s</option>', $list->id, $list->name );
|
99 |
+
} ?>
|
100 |
+
</select>
|
101 |
+
</li>
|
102 |
+
<li class="mailchimp_double_optin field_setting">
|
103 |
+
<label for="field_mailchimp_double_optin" class="section_label">
|
104 |
+
<?php esc_html_e( 'Double opt-in?', 'mailchimp-for-wp' ); ?>
|
105 |
+
</label>
|
106 |
+
<select id="field_mailchimp_double_optin" onchange="SetFieldProperty('mailchimp_double_optin', this.value)">
|
107 |
+
<option value="1"><?php echo __( 'Yes' ); ?></option>
|
108 |
+
<option value="0"><?php echo __( 'No' ); ?></option>
|
109 |
+
</select>
|
110 |
+
</li>
|
111 |
+
<?php
|
112 |
+
}
|
113 |
+
|
114 |
+
/**
|
115 |
+
* @return bool
|
116 |
+
*/
|
117 |
+
public function is_installed() {
|
118 |
+
return class_exists( 'GF_Field' );
|
119 |
+
}
|
120 |
+
|
121 |
+
/**
|
122 |
+
* @since 3.0
|
123 |
+
* @return array
|
124 |
+
*/
|
125 |
+
public function get_ui_elements() {
|
126 |
+
return array();
|
127 |
+
}
|
128 |
+
|
129 |
+
/**
|
130 |
+
* @param int $form_id
|
131 |
+
* @return string
|
132 |
+
*/
|
133 |
+
public function get_object_link( $form_id ) {
|
134 |
+
return '<a href="'. admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $form_id ) ) . '">Gravity Forms</a>';
|
135 |
+
}
|
136 |
+
|
137 |
+
}
|
integrations/ninja-forms/class-action.php
CHANGED
@@ -18,6 +18,9 @@ final class MC4WP_Ninja_Forms_Action extends NF_Abstracts_ActionNewsletter
|
|
18 |
parent::__construct();
|
19 |
|
20 |
$this->_nicename = __( 'MailChimp', 'mailchimp-for-wp' );
|
|
|
|
|
|
|
21 |
|
22 |
$this->_settings[ 'double_optin' ] = array(
|
23 |
'name' => 'double_optin',
|
@@ -57,24 +60,24 @@ final class MC4WP_Ninja_Forms_Action extends NF_Abstracts_ActionNewsletter
|
|
57 |
),
|
58 |
);
|
59 |
|
60 |
-
$this->_settings[ 'replace_interests' ] = array(
|
61 |
-
'name' => 'replace_interests',
|
62 |
-
'type' => 'select',
|
63 |
-
'label' => __( 'Replace existing interest groups?', 'mailchimp-for-wp'),
|
64 |
-
'width' => 'full',
|
65 |
-
'group' => 'primary',
|
66 |
-
'value' => 0,
|
67 |
-
'options' => array(
|
68 |
-
array(
|
69 |
-
'value' => 1,
|
70 |
-
'label' => 'Yes',
|
71 |
-
),
|
72 |
-
array(
|
73 |
-
'value' => 0,
|
74 |
-
'label' => 'No',
|
75 |
-
),
|
76 |
-
),
|
77 |
-
);
|
78 |
}
|
79 |
|
80 |
/*
|
@@ -111,23 +114,11 @@ final class MC4WP_Ninja_Forms_Action extends NF_Abstracts_ActionNewsletter
|
|
111 |
}
|
112 |
}
|
113 |
|
114 |
-
$
|
115 |
-
'email_address' => $email_address,
|
116 |
-
'merge_fields' => $merge_fields,
|
117 |
-
'status' => $action_settings['double_optin'] == '0' ? 'subscribed' : 'pending',
|
118 |
-
);
|
119 |
-
|
120 |
$update_existing = $action_settings['update_existing'] == '1';
|
121 |
-
$replace_interests = $action_settings['replace_interests'] == '1';
|
122 |
|
123 |
-
|
124 |
-
$subscriber = $mailchimp->list_subscribe( $list_id, $email_address, $args, $update_existing, $replace_interests );
|
125 |
-
|
126 |
-
// log errors
|
127 |
-
if( ! $subscriber && $mailchimp->has_error() ) {
|
128 |
-
$log = mc4wp('log');
|
129 |
-
$log->error( sprintf( 'Ninja Forms > MailChimp API error: %s %s', $mailchimp->get_error_code(), $mailchimp->get_error_message() ) );
|
130 |
-
}
|
131 |
}
|
132 |
|
133 |
protected function get_lists()
|
18 |
parent::__construct();
|
19 |
|
20 |
$this->_nicename = __( 'MailChimp', 'mailchimp-for-wp' );
|
21 |
+
$prefix = $this->get_name();
|
22 |
+
|
23 |
+
unset( $this->_settings[ $prefix . 'newsletter_list_groups' ] );
|
24 |
|
25 |
$this->_settings[ 'double_optin' ] = array(
|
26 |
'name' => 'double_optin',
|
60 |
),
|
61 |
);
|
62 |
|
63 |
+
// $this->_settings[ 'replace_interests' ] = array(
|
64 |
+
// 'name' => 'replace_interests',
|
65 |
+
// 'type' => 'select',
|
66 |
+
// 'label' => __( 'Replace existing interest groups?', 'mailchimp-for-wp'),
|
67 |
+
// 'width' => 'full',
|
68 |
+
// 'group' => 'primary',
|
69 |
+
// 'value' => 0,
|
70 |
+
// 'options' => array(
|
71 |
+
// array(
|
72 |
+
// 'value' => 1,
|
73 |
+
// 'label' => 'Yes',
|
74 |
+
// ),
|
75 |
+
// array(
|
76 |
+
// 'value' => 0,
|
77 |
+
// 'label' => 'No',
|
78 |
+
// ),
|
79 |
+
// ),
|
80 |
+
// );
|
81 |
}
|
82 |
|
83 |
/*
|
114 |
}
|
115 |
}
|
116 |
|
117 |
+
$double_optin = $action_settings['double_optin'] == '0';
|
|
|
|
|
|
|
|
|
|
|
118 |
$update_existing = $action_settings['update_existing'] == '1';
|
119 |
+
$replace_interests = isset( $action_settings['replace_interests'] ) && $action_settings['replace_interests'] == '1';
|
120 |
|
121 |
+
do_action( 'mc4wp_integration_ninja_forms_subscribe', $email_address, $merge_fields, $list_id, $double_optin, $update_existing, $replace_interests, $form_id );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
|
124 |
protected function get_lists()
|
integrations/ninja-forms/class-ninja-forms.php
CHANGED
@@ -23,7 +23,26 @@ class MC4WP_Ninja_Forms_Integration extends MC4WP_Integration {
|
|
23 |
/**
|
24 |
* Add hooks
|
25 |
*/
|
26 |
-
public function add_hooks() {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
/**
|
29 |
* @return bool
|
@@ -40,4 +59,12 @@ class MC4WP_Ninja_Forms_Integration extends MC4WP_Integration {
|
|
40 |
return array();
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
23 |
/**
|
24 |
* Add hooks
|
25 |
*/
|
26 |
+
public function add_hooks() {
|
27 |
+
add_action( 'mc4wp_integration_ninja_forms_subscribe', array( $this, 'subscribe_from_ninja_forms' ), 10, 7 );
|
28 |
+
}
|
29 |
+
|
30 |
+
public function subscribe_from_ninja_forms( $email_address, $merge_fields, $list_id, $double_optin = true, $update_existing = false, $replace_interests = false, $form_id = 0 ) {
|
31 |
+
// set options from parameters (coming from action)
|
32 |
+
$orig_options = $this->options;
|
33 |
+
$this->options['double_optin'] = $double_optin;
|
34 |
+
$this->options['update_existing'] = $update_existing;
|
35 |
+
$this->options['replace_interests'] = $replace_interests;
|
36 |
+
$this->options['lists'] = array( $list_id );
|
37 |
+
|
38 |
+
$data = $merge_fields;
|
39 |
+
$data['EMAIL'] = $email_address;
|
40 |
+
|
41 |
+
$this->subscribe( $data, $form_id );
|
42 |
+
|
43 |
+
// revert to original options
|
44 |
+
$this->options = $orig_options;
|
45 |
+
}
|
46 |
|
47 |
/**
|
48 |
* @return bool
|
59 |
return array();
|
60 |
}
|
61 |
|
62 |
+
/**
|
63 |
+
* @param int $form_id
|
64 |
+
* @return string
|
65 |
+
*/
|
66 |
+
public function get_object_link( $form_id ) {
|
67 |
+
return '<a href="' . admin_url( sprintf( 'admin.php?page=ninja-forms&form_id=%d', $form_id ) ) . '">Ninja Forms</a>';
|
68 |
+
}
|
69 |
+
|
70 |
}
|
integrations/wpforms/class-wpforms.php
CHANGED
@@ -58,8 +58,6 @@ class MC4WP_WPForms_Integration extends MC4WP_Integration {
|
|
58 |
}
|
59 |
}
|
60 |
|
61 |
-
|
62 |
-
|
63 |
$mailchimp_list_id = $form_data['fields'][$checkbox_field_id]['mailchimp_list'];
|
64 |
$this->options['lists'] = array( $mailchimp_list_id );
|
65 |
|
@@ -68,4 +66,12 @@ class MC4WP_WPForms_Integration extends MC4WP_Integration {
|
|
68 |
}
|
69 |
}
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
}
|
58 |
}
|
59 |
}
|
60 |
|
|
|
|
|
61 |
$mailchimp_list_id = $form_data['fields'][$checkbox_field_id]['mailchimp_list'];
|
62 |
$this->options['lists'] = array( $mailchimp_list_id );
|
63 |
|
66 |
}
|
67 |
}
|
68 |
|
69 |
+
/**
|
70 |
+
* @param int $form_id
|
71 |
+
* @return string
|
72 |
+
*/
|
73 |
+
public function get_object_link( $form_id ) {
|
74 |
+
return '<a href="' . admin_url( sprintf( 'admin.php?page=wpforms-builder&view=fields&form_id=%d', $form_id ) ) . '">WPForms</a>';
|
75 |
+
}
|
76 |
+
|
77 |
}
|
languages/mailchimp-for-wp-ca_ES.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-ca_ES.po
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: MailChimp for WordPress\n"
|
9 |
-
"PO-Revision-Date: 2017-
|
10 |
"Last-Translator: Xavier Gimeno Torrent\n"
|
11 |
"Language-Team: Catalan (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ca_ES/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: MailChimp for WordPress\n"
|
9 |
+
"PO-Revision-Date: 2017-09-23 20:54+0000\n"
|
10 |
"Last-Translator: Xavier Gimeno Torrent\n"
|
11 |
"Language-Team: Catalan (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ca_ES/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-cs_CZ.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-cs_CZ.po
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
# Translators:
|
4 |
# Dušan Marcinko <prectusi@gmail.com>, 2016
|
5 |
# Jan Toman <toman.jan@gmail.com>, 2014-2015
|
@@ -9,68 +9,21 @@
|
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"PO-Revision-Date: 2016-11-29 21:44+0000\n"
|
15 |
-
"Last-Translator: Dušan Marcinko <prectusi@gmail.com>\n"
|
16 |
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/cs_CZ/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Language: cs_CZ\n"
|
21 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
-
#:
|
24 |
-
msgid "Email address"
|
25 |
-
msgstr "E-mailová adresa:"
|
26 |
-
|
27 |
-
#: config/default-form-content.php:4
|
28 |
-
msgid "Your email address"
|
29 |
-
msgstr "Vaše e-mailová adresa:"
|
30 |
-
|
31 |
-
#: config/default-form-content.php:5
|
32 |
-
msgid "Sign up"
|
33 |
-
msgstr "Registrovat se"
|
34 |
-
|
35 |
-
#: config/default-form-messages.php:5
|
36 |
-
msgid ""
|
37 |
-
"Thank you, your sign-up request was successful! Please check your email "
|
38 |
-
"inbox to confirm."
|
39 |
-
msgstr "Děkujeme, vaše registrace byla úspěšná. Prosím, zkontrolujte váš emailový účet a dokončete registraci."
|
40 |
-
|
41 |
-
#: config/default-form-messages.php:9
|
42 |
-
msgid "Oops. Something went wrong. Please try again later."
|
43 |
-
msgstr "Něco se pokazilo. Vyzkoušejte to prosím znovu."
|
44 |
-
|
45 |
-
#: config/default-form-messages.php:13
|
46 |
-
msgid "Please provide a valid email address."
|
47 |
-
msgstr "Vyplňte prosím validní tvar e-mailu."
|
48 |
-
|
49 |
-
#: config/default-form-messages.php:17
|
50 |
-
msgid "Given email address is already subscribed, thank you!"
|
51 |
-
msgstr "Zadaná adresa je již na našem seznamu odběratelů. Děkujeme!"
|
52 |
-
|
53 |
-
#: config/default-form-messages.php:21
|
54 |
-
msgid "Please fill in the required fields."
|
55 |
-
msgstr "Vyplňte prosím všechna povinná políčka."
|
56 |
-
|
57 |
-
#: config/default-form-messages.php:25
|
58 |
-
msgid "You were successfully unsubscribed."
|
59 |
-
msgstr "Byli jste úspěšně odhlášení."
|
60 |
-
|
61 |
-
#: config/default-form-messages.php:29
|
62 |
-
msgid "Given email address is not subscribed."
|
63 |
-
msgstr "Zadaná e-mailová adresa není registrována k odběru."
|
64 |
-
|
65 |
-
#: config/default-form-messages.php:33
|
66 |
-
msgid "Please select at least one list."
|
67 |
-
msgstr "Vyberte prosím alespoň jednu položku"
|
68 |
-
|
69 |
-
#: config/default-integration-options.php:5
|
70 |
-
msgid "Sign me up for the newsletter!"
|
71 |
-
msgstr "Přihlásit se k odběru novinek!"
|
72 |
-
|
73 |
-
#: includes/admin/class-admin-texts.php:62
|
74 |
#: includes/forms/views/edit-form.php:6
|
75 |
msgid "Settings"
|
76 |
msgstr "Nastavení"
|
@@ -79,141 +32,388 @@ msgstr "Nastavení"
|
|
79 |
msgid "Documentation"
|
80 |
msgstr "Dokumentace"
|
81 |
|
82 |
-
#: includes/admin/class-admin.php:
|
83 |
msgid ""
|
84 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
85 |
msgstr "Dostu"
|
86 |
|
87 |
-
#: includes/admin/class-admin.php:
|
88 |
msgid ""
|
89 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
90 |
" to use it."
|
91 |
msgstr "Dostupné pouze v PRO verzi. Pro použití musíte přejít na premiovou PRO verzi."
|
92 |
|
93 |
-
#: includes/admin/class-admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
msgid "MailChimp API Settings"
|
95 |
msgstr "Nastavení API MailChimpu"
|
96 |
|
97 |
-
#: includes/admin/class-admin.php:
|
98 |
-
#: integrations/ninja-forms/class-ninja-forms.php:34
|
99 |
msgid "MailChimp"
|
100 |
msgstr "MailChimp"
|
101 |
|
102 |
-
#: includes/admin/class-
|
103 |
-
|
104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
-
#: includes/admin/class-
|
107 |
msgid ""
|
108 |
-
"
|
109 |
-
"
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: includes/admin/class-ads.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
msgid "More subscribers, better newsletters."
|
114 |
msgstr "Více registrovaných, přinese úspěšnější newslettery."
|
115 |
|
116 |
-
#: includes/admin/class-ads.php:
|
117 |
msgid ""
|
118 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
119 |
"our monthly tips."
|
120 |
msgstr "Naučte se jak více rozšířit Váš seznam a jak psát lepší emaily odběrem našich typů každý měsíčních."
|
121 |
|
122 |
-
#: includes/admin/class-ads.php:
|
123 |
msgid "Email Address"
|
124 |
msgstr "E-mailová adresa:"
|
125 |
|
126 |
-
#: includes/admin/class-ads.php:
|
127 |
msgid "First Name"
|
128 |
msgstr "Křestní jméno"
|
129 |
|
130 |
-
#: includes/admin/class-ads.php:
|
131 |
msgid "Subscribe"
|
132 |
msgstr "Přihlásit se k odběru"
|
133 |
|
134 |
-
#: includes/admin/class-
|
135 |
-
msgid "
|
136 |
-
|
|
|
|
|
137 |
|
138 |
-
#: includes/admin/
|
139 |
-
msgid "
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
msgid "Read more about common connectivity issues."
|
144 |
msgstr "Více informací o běžných problémech s připojením."
|
145 |
|
146 |
-
#: includes/forms/class-admin.php:
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "Forms"
|
149 |
msgstr "Formuláře"
|
150 |
|
151 |
-
#: includes/forms/class-admin.
|
152 |
msgid "<strong>Success!</strong> Form successfully saved."
|
153 |
msgstr "<strong>Hotovo!</strong> Formulář úspěšně uložen."
|
154 |
|
155 |
-
#: includes/forms/class-admin.php:
|
156 |
msgid "Preview form"
|
157 |
msgstr "Náhledový formulář"
|
158 |
|
159 |
-
#: includes/forms/class-admin.php:
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: includes/forms/class-admin.php:
|
164 |
-
msgid "
|
165 |
-
msgstr "
|
166 |
|
167 |
-
#: includes/forms/class-form-previewer.php:
|
168 |
msgid "Form preview"
|
169 |
msgstr "Náhled formuláře"
|
170 |
|
171 |
-
#: includes/forms/class-form-tags.php:
|
172 |
msgid "Replaced with the form response (error or success messages)."
|
173 |
msgstr "Bude nahrazeno potvrzovací, chybovou či jinou hláškou."
|
174 |
|
175 |
-
#: includes/forms/class-form-tags.php:
|
176 |
msgid "Data from the URL or a submitted form."
|
177 |
msgstr "Data z URL adresy nebo z potvrzovacího pole."
|
178 |
|
179 |
-
#: includes/forms/class-form-tags.php:
|
|
|
|
|
|
|
|
|
180 |
#: includes/integrations/class-integration-tags.php:45
|
181 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
182 |
msgstr "Bude nahrazeno počtem odběratelů na vybraném seznamu adres."
|
183 |
|
184 |
-
#: includes/forms/class-form-tags.php:
|
185 |
msgid "The email address of the current visitor (if known)."
|
186 |
msgstr "Emailová adresa aktuálního návštěvníka (pokud je známa)."
|
187 |
|
188 |
-
#: includes/forms/class-form-tags.php:
|
189 |
msgid "The URL of the page."
|
190 |
msgstr "URL webové stránky"
|
191 |
|
192 |
-
#: includes/forms/class-form-tags.php:
|
193 |
msgid "The path of the page."
|
194 |
msgstr "Cesta k webové stránce."
|
195 |
|
196 |
-
#: includes/forms/class-form-tags.php:
|
197 |
msgid "The current date. Example: %s."
|
198 |
msgstr "Aktuální datum. Příklad: %s."
|
199 |
|
200 |
-
#: includes/forms/class-form-tags.php:
|
201 |
msgid "The current time. Example: %s."
|
202 |
msgstr "Aktuální čas. Příklad: %s."
|
203 |
|
204 |
-
#: includes/forms/class-form-tags.php:
|
205 |
msgid "The site's language. Example: %s."
|
206 |
msgstr "Jazyk stránek. Příklad: %s."
|
207 |
|
208 |
-
#: includes/forms/class-form-tags.php:
|
209 |
msgid "The visitor's IP address. Example: %s."
|
210 |
msgstr "Návštěvníkova IP adresa. Příklad: %s."
|
211 |
|
212 |
-
#: includes/forms/class-form-tags.php:
|
213 |
msgid "The property of the currently logged-in user."
|
214 |
msgstr "Majetkem aktuálně přihlášeného uživatele."
|
215 |
|
216 |
-
#: includes/forms/class-form.php:
|
|
|
|
|
|
|
|
|
217 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
218 |
msgstr "Žádné pole s ID %d, pravděpodobně bylo smazáno."
|
219 |
|
@@ -221,10 +421,6 @@ msgstr "Žádné pole s ID %d, pravděpodobně bylo smazáno."
|
|
221 |
msgid "Newsletter"
|
222 |
msgstr "Newsletter"
|
223 |
|
224 |
-
#: includes/forms/class-widget.php:30
|
225 |
-
msgid "MailChimp Sign-Up Form"
|
226 |
-
msgstr "Registrační formulář MailChimpu"
|
227 |
-
|
228 |
#: includes/forms/class-widget.php:32
|
229 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
230 |
msgstr "Zobrazuje váš formulář pro odběratele"
|
@@ -239,7 +435,114 @@ msgid ""
|
|
239 |
" form settings</a>."
|
240 |
msgstr "Editovat nastavení přihlašovacích formulářů pluginu \"Mailchimp for Wordpress\" můžete <a href=\"%s\">zde</a>."
|
241 |
|
242 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Add new form"
|
244 |
msgstr "Přidat nový formulář"
|
245 |
|
@@ -267,38 +570,266 @@ msgstr "Pole"
|
|
267 |
msgid "Messages"
|
268 |
msgstr "Hlášky"
|
269 |
|
270 |
-
#: includes/forms/views/edit-form.php:7
|
271 |
-
msgid "Appearance"
|
272 |
-
msgstr "Vzhled"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
#: includes/
|
275 |
-
|
276 |
-
|
277 |
-
#: includes/views/general-settings.php:7
|
278 |
-
msgid "You are here: "
|
279 |
-
msgstr "Tady jsi:"
|
280 |
|
281 |
-
#: includes/
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: includes/
|
286 |
-
msgid "
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: includes/
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: includes/
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: includes/
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: includes/forms/views/parts/add-fields-help.
|
302 |
#: includes/forms/views/tabs/form-fields.php:10
|
303 |
msgid "Add more fields"
|
304 |
msgstr "Přidat další pole"
|
@@ -335,11 +866,6 @@ msgid ""
|
|
335 |
"changes."
|
336 |
msgstr "Klikněte na následující tlačítko aby MailChimp mohl WordPressu odeslat Vaše změny."
|
337 |
|
338 |
-
#: includes/forms/views/parts/add-fields-help.php:43
|
339 |
-
#: includes/views/parts/lists-overview.php:8
|
340 |
-
msgid "Renew MailChimp lists"
|
341 |
-
msgstr "Aktualizovat seznamy adres"
|
342 |
-
|
343 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
344 |
msgid "Add dynamic form variable"
|
345 |
msgstr "Přidat dynamické proměné formuláře"
|
@@ -412,87 +938,101 @@ msgstr "Pole formuláře"
|
|
412 |
msgid "Enter the HTML code for your form fields.."
|
413 |
msgstr "Vložte HTML kód Vašich formulářových polí."
|
414 |
|
415 |
-
#: includes/forms/views/tabs/form-fields.php:
|
416 |
-
msgid "Your form is missing the following (required) form fields:"
|
417 |
-
msgstr "Ve vašem formuláři chybí tato (povinná) formulářová políčka:"
|
418 |
-
|
419 |
-
#: includes/forms/views/tabs/form-fields.php:34
|
420 |
msgid ""
|
421 |
"Use the shortcode %s to display this form inside a post, page or text "
|
422 |
"widget."
|
423 |
msgstr "Pro zobrazení tohoto formuláře v příspěvku, stránce nebo ve textovém widgetu použijte zkratku %s."
|
424 |
|
425 |
-
#: includes/forms/views/tabs/form-messages.php:
|
426 |
msgid "Form Messages"
|
427 |
msgstr "Zprávy formuláře"
|
428 |
|
429 |
-
#: includes/forms/views/tabs/form-messages.php:
|
430 |
msgid "Successfully subscribed"
|
431 |
msgstr "Úspešně přihlášen"
|
432 |
|
433 |
-
#: includes/forms/views/tabs/form-messages.php:
|
434 |
msgid ""
|
435 |
"The text that shows when an email address is successfully subscribed to the "
|
436 |
"selected list(s)."
|
437 |
msgstr "Text zobrazující se po úspěšném odeslaní emailu do vybraného seznamu(ů). "
|
438 |
|
439 |
-
#: includes/forms/views/tabs/form-messages.php:
|
440 |
msgid "Invalid email address"
|
441 |
msgstr "Neplatná emailová adresa"
|
442 |
|
443 |
-
#: includes/forms/views/tabs/form-messages.php:
|
444 |
msgid "The text that shows when an invalid email address is given."
|
445 |
msgstr "Text zobrazovaný při špatném vyplnění emailové adresy."
|
446 |
|
447 |
-
#: includes/forms/views/tabs/form-messages.php:
|
448 |
msgid "Required field missing"
|
449 |
msgstr "Chybí požadované pole"
|
450 |
|
451 |
-
#: includes/forms/views/tabs/form-messages.php:
|
452 |
msgid ""
|
453 |
"The text that shows when a required field for the selected list(s) is "
|
454 |
"missing."
|
455 |
msgstr "Text zobrazený pokud chybí požadované pole vybraného seznamu(ů)."
|
456 |
|
457 |
-
#: includes/forms/views/tabs/form-messages.php:
|
458 |
msgid "Already subscribed"
|
459 |
msgstr "Jste již přihlášen"
|
460 |
|
461 |
-
#: includes/forms/views/tabs/form-messages.php:
|
462 |
msgid ""
|
463 |
"The text that shows when the given email is already subscribed to the "
|
464 |
"selected list(s)."
|
465 |
msgstr "Text zobrazený pokud odeslaný email již je v seznamu(ech)."
|
466 |
|
467 |
-
#: includes/forms/views/tabs/form-messages.php:
|
468 |
msgid "General error"
|
469 |
msgstr "Obecná chyba"
|
470 |
|
471 |
-
#: includes/forms/views/tabs/form-messages.php:
|
472 |
msgid "The text that shows when a general error occured."
|
473 |
msgstr "Text zobrazující se pokud nastane obecná chyba."
|
474 |
|
475 |
-
#: includes/forms/views/tabs/form-messages.php:
|
476 |
msgid "Unsubscribed"
|
477 |
msgstr "Odhlášen z odběru"
|
478 |
|
479 |
-
#: includes/forms/views/tabs/form-messages.php:
|
480 |
msgid ""
|
481 |
"When using the unsubscribe method, this is the text that shows when the "
|
482 |
"given email address is successfully unsubscribed from the selected list(s)."
|
483 |
msgstr "Pokud používáte metodu k odjlášení z odběru, bude tento text zobrazen, když odeslaná emailová adresa bude úspěšně odhlášena z vybraného seznamu(ů)."
|
484 |
|
485 |
-
#: includes/forms/views/tabs/form-messages.php:
|
486 |
msgid "Not subscribed"
|
487 |
msgstr "Nepřihlášen k odběru"
|
488 |
|
489 |
-
#: includes/forms/views/tabs/form-messages.php:
|
490 |
msgid ""
|
491 |
"When using the unsubscribe method, this is the text that shows when the "
|
492 |
"given email address is not on the selected list(s)."
|
493 |
msgstr "Pokud používáte metodu k odhlášení z odběru, bude tento text zobrazen vpřípadě, že odeslaná emailová adresa nebude na vybraném seznamu(ech)."
|
494 |
|
495 |
-
#: includes/forms/views/tabs/form-messages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "HTML tags like %s are allowed in the message fields."
|
497 |
msgstr "HTML tagy %s jsou v zobrazovaných hláškách povoleny."
|
498 |
|
@@ -504,379 +1044,52 @@ msgstr "Nastavení formuláře"
|
|
504 |
msgid "MailChimp specific settings"
|
505 |
msgstr "Specifická nastavení MailChimp"
|
506 |
|
507 |
-
#: includes/forms/views/tabs/form-settings.php:
|
508 |
msgid "Lists this form subscribes to"
|
509 |
msgstr "Na který seznam adres chcete uživatele přidávat?"
|
510 |
|
511 |
-
#: includes/forms/views/tabs/form-settings.php:
|
512 |
-
#: includes/integrations/views/integration-settings.php:93
|
513 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
514 |
-
msgstr "Žádné seznamy odběratelů (listy) nebyly nalezeny. %sOpravdu jste přihlášení k MailChimpu?%s"
|
515 |
-
|
516 |
-
#: includes/forms/views/tabs/form-settings.php:29
|
517 |
msgid ""
|
518 |
"Select the list(s) to which people who submit this form should be "
|
519 |
"subscribed."
|
520 |
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."
|
521 |
|
522 |
-
#: includes/forms/views/tabs/form-settings.php:
|
523 |
msgid "Use double opt-in?"
|
524 |
msgstr "Používat dvojí opt-in?"
|
525 |
|
526 |
-
#: includes/forms/views/tabs/form-settings.php:
|
527 |
-
|
528 |
-
|
529 |
-
#: includes/forms/views/tabs/form-settings.php:85
|
530 |
-
#: includes/forms/views/tabs/form-settings.php:115
|
531 |
-
#: includes/integrations/views/integration-settings.php:53
|
532 |
-
#: includes/integrations/views/integration-settings.php:66
|
533 |
-
#: includes/integrations/views/integration-settings.php:117
|
534 |
-
#: includes/integrations/views/integration-settings.php:129
|
535 |
-
#: includes/integrations/views/integration-settings.php:142
|
536 |
-
#: includes/integrations/views/integration-settings.php:163
|
537 |
-
#: includes/integrations/views/integration-settings.php:180
|
538 |
-
#: includes/integrations/views/integration-settings.php:199
|
539 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
540 |
-
msgid "Yes"
|
541 |
-
msgstr "Ano"
|
542 |
-
|
543 |
-
#: includes/forms/views/tabs/form-settings.php:43
|
544 |
-
#: includes/forms/views/tabs/form-settings.php:58
|
545 |
-
#: includes/forms/views/tabs/form-settings.php:73
|
546 |
-
#: includes/forms/views/tabs/form-settings.php:89
|
547 |
-
#: includes/forms/views/tabs/form-settings.php:119
|
548 |
-
#: includes/integrations/views/integration-settings.php:54
|
549 |
-
#: includes/integrations/views/integration-settings.php:67
|
550 |
-
#: includes/integrations/views/integration-settings.php:118
|
551 |
-
#: includes/integrations/views/integration-settings.php:130
|
552 |
-
#: includes/integrations/views/integration-settings.php:146
|
553 |
-
#: includes/integrations/views/integration-settings.php:167
|
554 |
-
#: includes/integrations/views/integration-settings.php:184
|
555 |
-
#: includes/integrations/views/integration-settings.php:203
|
556 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
557 |
-
msgid "No"
|
558 |
-
msgstr "Ne"
|
559 |
-
|
560 |
-
#: includes/forms/views/tabs/form-settings.php:45
|
561 |
-
#: includes/integrations/views/integration-settings.php:149
|
562 |
-
msgid ""
|
563 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
564 |
-
"being subscribed (recommended)"
|
565 |
-
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!)."
|
566 |
-
|
567 |
-
#: includes/forms/views/tabs/form-settings.php:50
|
568 |
-
msgid "Send final welcome email?"
|
569 |
-
msgstr "Zaslat finální uvítací mail?"
|
570 |
-
|
571 |
-
#: includes/forms/views/tabs/form-settings.php:60
|
572 |
-
#: includes/integrations/views/integration-settings.php:169
|
573 |
-
msgid ""
|
574 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
575 |
-
"succeeds (only when double opt-in is disabled)."
|
576 |
-
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."
|
577 |
-
|
578 |
-
#: includes/forms/views/tabs/form-settings.php:65
|
579 |
-
#: includes/integrations/views/integration-settings.php:176
|
580 |
-
msgid "Update existing subscribers?"
|
581 |
-
msgstr "Chcete upravovat již existující uživatele?"
|
582 |
-
|
583 |
-
#: includes/forms/views/tabs/form-settings.php:75
|
584 |
-
#: includes/integrations/views/integration-settings.php:186
|
585 |
-
msgid ""
|
586 |
-
"Select \"yes\" if you want to update existing subscribers with the data that"
|
587 |
-
" is sent."
|
588 |
-
msgstr "Vyberte \"ano\" pokud chcete aktualizovat stávající odběratele s daty které se posílají."
|
589 |
-
|
590 |
-
#: includes/forms/views/tabs/form-settings.php:81
|
591 |
-
#: includes/integrations/views/integration-settings.php:195
|
592 |
-
msgid "Replace interest groups?"
|
593 |
-
msgstr "Vyměnit zájmové skupiny?"
|
594 |
|
595 |
-
#: includes/forms/views/tabs/form-settings.php:
|
596 |
-
#: includes/integrations/views/integration-settings.php:206
|
597 |
msgid ""
|
598 |
-
"
|
599 |
-
"
|
600 |
-
msgstr "
|
601 |
-
|
602 |
-
#: includes/forms/views/tabs/form-settings.php:93
|
603 |
-
#: includes/integrations/views/integration-settings.php:207
|
604 |
-
msgid "What does this do?"
|
605 |
-
msgstr "K čemu to slouží?"
|
606 |
|
607 |
-
#: includes/forms/views/tabs/form-settings.php:
|
608 |
msgid "Form behaviour"
|
609 |
msgstr "Chování formuláře"
|
610 |
|
611 |
-
#: includes/forms/views/tabs/form-settings.php:
|
612 |
msgid "Hide form after a successful sign-up?"
|
613 |
msgstr "Chcete skrývat formulář po úspěšné registraci?"
|
614 |
|
615 |
-
#: includes/forms/views/tabs/form-settings.php:
|
616 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
617 |
msgstr "Pokud chcete skrýt formulář pro odebírání novinek skrýt po úspěšné registraci na seznam adres, vyberte \"Ano\"."
|
618 |
|
619 |
-
#: includes/forms/views/tabs/form-settings.php:
|
620 |
msgid "Redirect to URL after successful sign-ups"
|
621 |
msgstr "Na kterou adresu chcete přesměrovat uživatele po registraci?"
|
622 |
|
623 |
-
#: includes/forms/views/tabs/form-settings.php:
|
624 |
msgid "Example: %s"
|
625 |
msgstr "Příklad: %s"
|
626 |
|
627 |
-
#: includes/forms/views/tabs/form-settings.php:
|
628 |
msgid ""
|
629 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
630 |
" (absolute) URLs, including <code>http://</code>."
|
631 |
msgstr "Nechte prázdné nebo vložte <code>0</code> pro nepřesměrování. Jinak, použijte plnou (absolutní) URLs, obsahující <code>http://</code>."
|
632 |
-
|
633 |
-
#: includes/integrations/class-admin.php:79
|
634 |
-
#: includes/integrations/class-admin.php:80
|
635 |
-
#: includes/integrations/views/integration-settings.php:10
|
636 |
-
#: includes/integrations/views/integrations.php:9
|
637 |
-
#: includes/integrations/views/integrations.php:17
|
638 |
-
msgid "Integrations"
|
639 |
-
msgstr "Integrace"
|
640 |
-
|
641 |
-
#: includes/integrations/views/integration-settings.php:20
|
642 |
-
msgid "%s integration"
|
643 |
-
msgstr "%s vložení"
|
644 |
-
|
645 |
-
#: includes/integrations/views/integration-settings.php:51
|
646 |
-
msgid "Enabled?"
|
647 |
-
msgstr "Povolit?"
|
648 |
-
|
649 |
-
#: includes/integrations/views/integration-settings.php:55
|
650 |
-
msgid ""
|
651 |
-
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
652 |
-
msgstr "Povolit %s vložení? Tímto přidáte do formuláře zaškrtávací pole pro odběr novinek."
|
653 |
-
|
654 |
-
#: includes/integrations/views/integration-settings.php:64
|
655 |
-
msgid "Implicit?"
|
656 |
-
msgstr "Určitě?"
|
657 |
-
|
658 |
-
#: includes/integrations/views/integration-settings.php:68
|
659 |
-
msgid ""
|
660 |
-
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
661 |
-
"(recommended)."
|
662 |
-
msgstr "Vyberte \"ne\" pokud chcte aby návštěvníci potvrzovali přihlášení k odběru (doporučeno)."
|
663 |
-
|
664 |
-
#: includes/integrations/views/integration-settings.php:78
|
665 |
-
msgid "MailChimp Lists"
|
666 |
-
msgstr "Seznam adres z MailChimpu"
|
667 |
-
|
668 |
-
#: includes/integrations/views/integration-settings.php:89
|
669 |
-
msgid ""
|
670 |
-
"Select the list(s) to which people who check the checkbox should be "
|
671 |
-
"subscribed."
|
672 |
-
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."
|
673 |
-
|
674 |
-
#: includes/integrations/views/integration-settings.php:102
|
675 |
-
msgid "Checkbox label text"
|
676 |
-
msgstr "Popisek u zaškrtávacího políčka"
|
677 |
-
|
678 |
-
#: includes/integrations/views/integration-settings.php:105
|
679 |
-
msgid "HTML tags like %s are allowed in the label text."
|
680 |
-
msgstr "HTML tagy %s jsou v popisku povoleny."
|
681 |
-
|
682 |
-
#: includes/integrations/views/integration-settings.php:115
|
683 |
-
msgid "Pre-check the checkbox?"
|
684 |
-
msgstr "Chcete zaškrtávat políčko jako výchozí stav?"
|
685 |
-
|
686 |
-
#: includes/integrations/views/integration-settings.php:119
|
687 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
688 |
-
msgstr "Zvolte \"ano\" pokud má týt checkbox zaškrtnutý."
|
689 |
-
|
690 |
-
#: includes/integrations/views/integration-settings.php:127
|
691 |
-
msgid "Load some default CSS?"
|
692 |
-
msgstr "Chcete načíst výchozí CSS styly?"
|
693 |
-
|
694 |
-
#: includes/integrations/views/integration-settings.php:131
|
695 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
696 |
-
msgstr "Pokud se vám zaškrtávací políčko nezobrazuje dobře, vyberte \"Ano\"."
|
697 |
-
|
698 |
-
#: includes/integrations/views/integration-settings.php:138
|
699 |
-
msgid "Double opt-in?"
|
700 |
-
msgstr "Vyžadujete po uživatelích potvrzení e-mailu?"
|
701 |
-
|
702 |
-
#: includes/integrations/views/integration-settings.php:159
|
703 |
-
msgid "Send Welcome Email?"
|
704 |
-
msgstr "Chcete posílat uvítací e-mail?"
|
705 |
-
|
706 |
-
#: includes/integrations/views/integration-settings.php:244
|
707 |
-
msgid ""
|
708 |
-
"The selected MailChimp lists require non-default fields, which may prevent "
|
709 |
-
"this integration from working."
|
710 |
-
msgstr "Vybrané MailChimpové seznamy požadují nestandardní pole. To může způsobit nefunkčnost integrace."
|
711 |
-
|
712 |
-
#: includes/integrations/views/integration-settings.php:245
|
713 |
-
msgid ""
|
714 |
-
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
715 |
-
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
716 |
-
"sure only the email & name fields are marked as required fields for the "
|
717 |
-
"selected list(s)."
|
718 |
-
msgstr "Ujistěte se prosím <a href=\"%s\"> že jste nastavili plugin k odeslání všech požadovaných polí </a> nebo <a href=\"%s\"> přihlášte se do svého účtu MailChimp </a> a ujistěte se, že jen pole e-mailová a název jsou označena jako povinná pole pro vybraný seznam(y)."
|
719 |
-
|
720 |
-
#: includes/integrations/views/integrations.php:30
|
721 |
-
msgid "Enabled"
|
722 |
-
msgstr "Povoleno"
|
723 |
-
|
724 |
-
#: includes/integrations/views/integrations.php:31
|
725 |
-
msgid "Name"
|
726 |
-
msgstr "Jméno"
|
727 |
-
|
728 |
-
#: includes/integrations/views/integrations.php:32
|
729 |
-
msgid "Description"
|
730 |
-
msgstr "Popis"
|
731 |
-
|
732 |
-
#: includes/integrations/views/integrations.php:50
|
733 |
-
msgid ""
|
734 |
-
"This integration is enabled by default as it requires manual actions to "
|
735 |
-
"work."
|
736 |
-
msgstr "Toto spojení je ve výchozím nastavení povoleno jako vyžadující další uživatelský zásah."
|
737 |
-
|
738 |
-
#: includes/integrations/views/integrations.php:57
|
739 |
-
msgid "Configure this integration"
|
740 |
-
msgstr "Nastavit toto spojení"
|
741 |
-
|
742 |
-
#: includes/views/general-settings.php:18
|
743 |
-
msgid "General Settings"
|
744 |
-
msgstr "Nastavení"
|
745 |
-
|
746 |
-
#: includes/views/general-settings.php:35
|
747 |
-
msgid "Status"
|
748 |
-
msgstr "Stav"
|
749 |
-
|
750 |
-
#: includes/views/general-settings.php:39
|
751 |
-
msgid "CONNECTED"
|
752 |
-
msgstr "PŘIPOJENO"
|
753 |
-
|
754 |
-
#: includes/views/general-settings.php:41
|
755 |
-
msgid "NOT CONNECTED"
|
756 |
-
msgstr "NEPŘIPOJENO"
|
757 |
-
|
758 |
-
#: includes/views/general-settings.php:48
|
759 |
-
msgid "API Key"
|
760 |
-
msgstr "API klíč"
|
761 |
-
|
762 |
-
#: includes/views/general-settings.php:50
|
763 |
-
msgid "Your MailChimp API key"
|
764 |
-
msgstr "Váš API klíč z MailChimpu"
|
765 |
-
|
766 |
-
#: includes/views/general-settings.php:52
|
767 |
-
msgid "The API key for connecting with your MailChimp account."
|
768 |
-
msgstr "API key pro spojení s MailChimp účtem"
|
769 |
-
|
770 |
-
#: includes/views/general-settings.php:53
|
771 |
-
msgid "Get your API key here."
|
772 |
-
msgstr "Vygenerovat API klíč."
|
773 |
-
|
774 |
-
#: includes/views/general-settings.php:65
|
775 |
-
msgid "Usage Tracking"
|
776 |
-
msgstr "Sledování využití"
|
777 |
-
|
778 |
-
#: includes/views/general-settings.php:71
|
779 |
-
msgid ""
|
780 |
-
"Allow us to anonymously track how this plugin is used to help us make it "
|
781 |
-
"better fit your needs."
|
782 |
-
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."
|
783 |
-
|
784 |
-
#: includes/views/general-settings.php:73
|
785 |
-
msgid "This is what we track."
|
786 |
-
msgstr "Tohle sledujeme."
|
787 |
-
|
788 |
-
#: includes/views/parts/admin-footer.php:11
|
789 |
-
msgid ""
|
790 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
791 |
-
"translated in your language or do you spot errors with the current "
|
792 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
793 |
-
"translation project and click \"help translate\"</a>."
|
794 |
-
msgstr "MailChimp for WordPress potřebuje přeložit. Není dosud přeložen ve Vašem jazyce nebo jste zaznamenali chyby v současném překladu? Pomoc je snadná! Přejděte na <a href=\"%s\">projekt překladu a klikněte na \"pomoc s překladem\"</a>."
|
795 |
-
|
796 |
-
#: includes/views/parts/admin-footer.php:31
|
797 |
-
msgid ""
|
798 |
-
"This plugin is not developed by or affiliated with MailChimp in any way."
|
799 |
-
msgstr "Tento plugin není vyvíjen ve spolupráci s MailChimpem."
|
800 |
-
|
801 |
-
#: includes/views/parts/lists-overview.php:1
|
802 |
-
msgid "Your MailChimp Account"
|
803 |
-
msgstr "Váš účet u MailChimpu"
|
804 |
-
|
805 |
-
#: includes/views/parts/lists-overview.php:2
|
806 |
-
msgid ""
|
807 |
-
"The table below shows your MailChimp lists and their details. If you just "
|
808 |
-
"applied changes to your MailChimp lists, please use the following button to "
|
809 |
-
"renew the cached lists configuration."
|
810 |
-
msgstr "Tabulka níže zobrazuje MailChimp seznam a jeho detaily. Pokud jste právě provedli změny Vašeho MailChimp seznamu, prosím použijte následující tlačítko k přepsání seznamů nastavení uložených v mezipaměti."
|
811 |
-
|
812 |
-
#: includes/views/parts/lists-overview.php:14
|
813 |
-
msgid "No lists were found in your MailChimp account"
|
814 |
-
msgstr "Ve Vašem účtu v MailChimpu jsme nenašeli žádné seznamy adres."
|
815 |
-
|
816 |
-
#: includes/views/parts/lists-overview.php:16
|
817 |
-
msgid "A total of %d lists were found in your MailChimp account."
|
818 |
-
msgstr "Ve vašem MailChimp účtu bylo nalezeno celkem %d seznamů odběratelů."
|
819 |
-
|
820 |
-
#: includes/views/parts/lists-overview.php:21
|
821 |
-
msgid "List Name"
|
822 |
-
msgstr "Název seznamu"
|
823 |
-
|
824 |
-
#: includes/views/parts/lists-overview.php:22
|
825 |
-
msgid "ID"
|
826 |
-
msgstr "ID"
|
827 |
-
|
828 |
-
#: includes/views/parts/lists-overview.php:23
|
829 |
-
msgid "Subscribers"
|
830 |
-
msgstr "Registrovaní odběratelé"
|
831 |
-
|
832 |
-
#: includes/views/parts/lists-overview.php:45
|
833 |
-
msgid "Edit this list in MailChimp"
|
834 |
-
msgstr "Upravit tento seznam odběratelů v MailChimpu"
|
835 |
-
|
836 |
-
#: includes/views/parts/lists-overview.php:59
|
837 |
-
msgid "%s (%s) with field type %s."
|
838 |
-
msgstr "%s (%s) s druhem pole %s."
|
839 |
-
|
840 |
-
#: includes/views/parts/lists-overview.php:83
|
841 |
-
msgid "%s (ID: %s) with type %s."
|
842 |
-
msgstr "%s (ID: %s) s druhem %s."
|
843 |
-
|
844 |
-
#: integrations/contact-form-7/admin-before.php:2
|
845 |
-
msgid ""
|
846 |
-
"To integrate with Contact Form 7, configure the settings below and then add "
|
847 |
-
"%s to your CF7 form mark-up."
|
848 |
-
msgstr "Pro spárování s Contact Form 7, upravte nastavení níže a poté přidejte %s k Vašemu CF7 formuláři."
|
849 |
-
|
850 |
-
#: integrations/custom/admin-before.php:2
|
851 |
-
msgid ""
|
852 |
-
"To get a custom integration to work, include the following HTML in the form "
|
853 |
-
"you are trying to integrate with."
|
854 |
-
msgstr "Pro zprovoznění vlastní integrace, je vyžadována následující HTML ve formuláři, který se pokoušíte integrovat."
|
855 |
-
|
856 |
-
#: integrations/woocommerce/class-woocommerce.php:102
|
857 |
-
msgid "Order #%d"
|
858 |
-
msgstr "Objednávka #%d"
|
859 |
-
|
860 |
-
#. Plugin Name of the plugin/theme
|
861 |
-
msgid "MailChimp for WordPress"
|
862 |
-
msgstr "MailChimp pro WordPress"
|
863 |
-
|
864 |
-
#. Plugin URI of the plugin/theme
|
865 |
-
msgid ""
|
866 |
-
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
867 |
-
"wp&utm_campaign=plugins-page"
|
868 |
-
msgstr "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
869 |
-
|
870 |
-
#. Description of the plugin/theme
|
871 |
-
msgid ""
|
872 |
-
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
873 |
-
"methods to your site."
|
874 |
-
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."
|
875 |
-
|
876 |
-
#. Author of the plugin/theme
|
877 |
-
msgid "ibericode"
|
878 |
-
msgstr "ibericode"
|
879 |
-
|
880 |
-
#. Author URI of the plugin/theme
|
881 |
-
msgid "https://ibericode.com/"
|
882 |
-
msgstr "https://ibericode.com/"
|
1 |
+
# Copyright (C) 2017 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
# Translators:
|
4 |
# Dušan Marcinko <prectusi@gmail.com>, 2016
|
5 |
# Jan Toman <toman.jan@gmail.com>, 2014-2015
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
+
"PO-Revision-Date: 2017-09-23 20:28+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-Poedit-Basepath: ..\n"
|
21 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
25 |
|
26 |
+
#: includes/admin/class-admin-texts.php62,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
#: includes/forms/views/edit-form.php:6
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
32 |
msgid "Documentation"
|
33 |
msgstr "Dokumentace"
|
34 |
|
35 |
+
#: includes/admin/class-admin.php:204
|
36 |
msgid ""
|
37 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
38 |
msgstr "Dostu"
|
39 |
|
40 |
+
#: includes/admin/class-admin.php:304
|
41 |
msgid ""
|
42 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
43 |
" to use it."
|
44 |
msgstr "Dostupné pouze v PRO verzi. Pro použití musíte přejít na premiovou PRO verzi."
|
45 |
|
46 |
+
#: includes/admin/class-admin.php305,
|
47 |
+
#: includes/views/parts/lists-overview.php10,
|
48 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
49 |
+
msgid "Renew MailChimp lists"
|
50 |
+
msgstr "Aktualizovat seznamy adres"
|
51 |
+
|
52 |
+
#: includes/admin/class-admin.php:306
|
53 |
+
msgid "Fetching MailChimp lists"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: includes/admin/class-admin.php:307
|
57 |
+
msgid "Done! MailChimp lists renewed."
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: includes/admin/class-admin.php:308
|
61 |
+
msgid "This can take a while if you have many MailChimp lists."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
65 |
msgid "MailChimp API Settings"
|
66 |
msgstr "Nastavení API MailChimpu"
|
67 |
|
68 |
+
#: includes/admin/class-admin.php:337
|
|
|
69 |
msgid "MailChimp"
|
70 |
msgstr "MailChimp"
|
71 |
|
72 |
+
#: includes/admin/class-admin.php343, includes/views/other-settings.php60,
|
73 |
+
#: includes/views/other-settings.php:70
|
74 |
+
msgid "Other Settings"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/admin/class-admin.php:344
|
78 |
+
msgid "Other"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/admin/class-admin.php:458
|
82 |
+
msgid "Log successfully emptied."
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: includes/admin/class-admin.php:488
|
86 |
msgid ""
|
87 |
+
"To get started with MailChimp for WordPress, please <a href=\"%s\">enter "
|
88 |
+
"your MailChimp API key on the settings page of the plugin</a>."
|
89 |
+
msgstr ""
|
90 |
|
91 |
+
#: includes/admin/class-ads.php:39
|
92 |
+
msgid ""
|
93 |
+
"Want to customize the style of your form? <a href=\"%s\">Try our Styles "
|
94 |
+
"Builder</a> & edit the look of your forms with just a few clicks."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/admin/class-ads.php:54
|
98 |
+
msgid ""
|
99 |
+
"Be notified whenever someone subscribes? <a href=\"%s\">MailChimp for "
|
100 |
+
"WordPress Premium</a> allows you to set up email notifications for your "
|
101 |
+
"forms."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: includes/admin/class-ads.php:56
|
105 |
+
msgid ""
|
106 |
+
"Increased conversions? <a href=\"%s\">MailChimp for WordPress Premium</a> "
|
107 |
+
"submits forms without reloading the entire page, resulting in a much better "
|
108 |
+
"experience for your visitors."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/admin/class-ads.php:70
|
112 |
+
msgid "Upgrade to Premium"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: includes/admin/class-ads.php:83
|
116 |
+
msgid ""
|
117 |
+
"Do you want translated forms for all of your languages? <a href=\"%s\">Try "
|
118 |
+
"MailChimp for WordPress Premium</a>, which does just that plus more."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/admin/class-ads.php:88
|
122 |
+
msgid ""
|
123 |
+
"Do you want to create more than one form? Our Premium add-on does just that!"
|
124 |
+
" <a href=\"%s\">Have a look at all Premium benefits</a>."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/admin/class-ads.php:93
|
128 |
+
msgid ""
|
129 |
+
"Are you enjoying this plugin? The Premium add-on unlocks several powerful "
|
130 |
+
"features. <a href=\"%s\">Find out about all benefits now</a>."
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/admin/class-ads.php:112
|
134 |
msgid "More subscribers, better newsletters."
|
135 |
msgstr "Více registrovaných, přinese úspěšnější newslettery."
|
136 |
|
137 |
+
#: includes/admin/class-ads.php:113
|
138 |
msgid ""
|
139 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
140 |
"our monthly tips."
|
141 |
msgstr "Naučte se jak více rozšířit Váš seznam a jak psát lepší emaily odběrem našich typů každý měsíčních."
|
142 |
|
143 |
+
#: includes/admin/class-ads.php:116
|
144 |
msgid "Email Address"
|
145 |
msgstr "E-mailová adresa:"
|
146 |
|
147 |
+
#: includes/admin/class-ads.php:120
|
148 |
msgid "First Name"
|
149 |
msgstr "Křestní jméno"
|
150 |
|
151 |
+
#: includes/admin/class-ads.php127, includes/forms/class-admin.php:94
|
152 |
msgid "Subscribe"
|
153 |
msgstr "Přihlásit se k odběru"
|
154 |
|
155 |
+
#: includes/admin/class-ads.php:150
|
156 |
+
msgid ""
|
157 |
+
"Do you want to track all WooCommerce orders in MailChimp so you can send "
|
158 |
+
"emails based on the purchase activity of your subscribers?"
|
159 |
+
msgstr ""
|
160 |
|
161 |
+
#: includes/admin/class-ads.php:153
|
162 |
+
msgid ""
|
163 |
+
"<a href=\"%s\">Upgrade to MailChimp for WordPress Premium</a> or <a "
|
164 |
+
"href=\"%s\">read more about MailChimp's E-Commerce features</a>."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/admin/class-review-notice.php:68
|
168 |
+
msgid ""
|
169 |
+
"You've been using MailChimp for WordPress for some time now; we hope you "
|
170 |
+
"love it!"
|
171 |
+
msgstr ""
|
172 |
|
173 |
+
#: includes/admin/class-review-notice.php:69
|
174 |
+
msgid ""
|
175 |
+
"If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
|
176 |
+
"It would be of great help to us."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/admin/class-review-notice.php:71
|
180 |
+
msgid "Dismiss this notice."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/api/class-api.php:84
|
184 |
msgid "Read more about common connectivity issues."
|
185 |
msgstr "Více informací o běžných problémech s připojením."
|
186 |
|
187 |
+
#: includes/forms/class-admin.php:62
|
188 |
+
msgid "Add to form"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/forms/class-admin.php:63
|
192 |
+
msgid "City"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/forms/class-admin.php:64
|
196 |
+
msgid "Checkboxes"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/forms/class-admin.php:65
|
200 |
+
msgid "Choices"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: includes/forms/class-admin.php:66
|
204 |
+
msgid "Choice type"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/forms/class-admin.php:67
|
208 |
+
msgid "Choose a field to add to the form"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: includes/forms/class-admin.php:68
|
212 |
+
msgid "Close"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: includes/forms/class-admin.php:69
|
216 |
+
msgid "Country"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/forms/class-admin.php:70
|
220 |
+
msgid "Dropdown"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/forms/class-admin.php:71
|
224 |
+
msgid "Field type"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/forms/class-admin.php:72
|
228 |
+
msgid "Field label"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/forms/class-admin.php:73
|
232 |
+
msgid "Form action"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/forms/class-admin.php:74
|
236 |
+
msgid ""
|
237 |
+
"This field will allow your visitors to choose whether they would like to "
|
238 |
+
"subscribe or unsubscribe"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/forms/class-admin.php:75
|
242 |
+
msgid "Form fields"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/forms/class-admin.php:76
|
246 |
+
msgid "This field is marked as required in MailChimp."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/forms/class-admin.php:77
|
250 |
+
msgid "Initial value"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/forms/class-admin.php:78
|
254 |
+
msgid "Interest categories"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/forms/class-admin.php:79
|
258 |
+
msgid "Is this field required?"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/forms/class-admin.php:80
|
262 |
+
msgid "List choice"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/forms/class-admin.php:81
|
266 |
+
msgid "This field will allow your visitors to choose a list to subscribe to."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/forms/class-admin.php:82
|
270 |
+
msgid "List fields"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/forms/class-admin.php:83
|
274 |
+
msgid "Min"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: includes/forms/class-admin.php:84
|
278 |
+
msgid "Max"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: includes/forms/class-admin.php:85
|
282 |
+
msgid ""
|
283 |
+
"No available fields. Did you select a MailChimp list in the form settings?"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/forms/class-admin.php:86
|
287 |
+
msgid "Optional"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/forms/class-admin.php:87
|
291 |
+
msgid "Placeholder"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/forms/class-admin.php:88
|
295 |
+
msgid "Text to show when field has no value."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/forms/class-admin.php:89
|
299 |
+
msgid "Preselect"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/forms/class-admin.php:90
|
303 |
+
msgid "Remove"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/forms/class-admin.php:91
|
307 |
+
msgid "Radio buttons"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/forms/class-admin.php:92
|
311 |
+
msgid "Street Address"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/forms/class-admin.php:93
|
315 |
+
msgid "State"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/forms/class-admin.php:95
|
319 |
+
msgid "Submit button"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/forms/class-admin.php:96
|
323 |
+
msgid "Wrap in paragraph tags?"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/forms/class-admin.php:97
|
327 |
+
msgid "Value"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/forms/class-admin.php:98
|
331 |
+
msgid "Text to prefill this field with."
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: includes/forms/class-admin.php:99
|
335 |
+
msgid "ZIP"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
339 |
+
#: includes/forms/views/edit-form.php:24
|
340 |
msgid "Forms"
|
341 |
msgstr "Formuláře"
|
342 |
|
343 |
+
#: includes/forms/class-admin.php152, includes/forms/class-admin.php:276
|
344 |
msgid "<strong>Success!</strong> Form successfully saved."
|
345 |
msgstr "<strong>Hotovo!</strong> Formulář úspěšně uložen."
|
346 |
|
347 |
+
#: includes/forms/class-admin.php:276
|
348 |
msgid "Preview form"
|
349 |
msgstr "Náhledový formulář"
|
350 |
|
351 |
+
#: includes/forms/class-admin.php449, includes/forms/class-widget.php:30
|
352 |
+
msgid "MailChimp Sign-Up Form"
|
353 |
+
msgstr "Registrační formulář MailChimpu"
|
354 |
|
355 |
+
#: includes/forms/class-admin.php:453
|
356 |
+
msgid "Select the form to show"
|
357 |
+
msgstr ""
|
358 |
|
359 |
+
#: includes/forms/class-form-previewer.php:146
|
360 |
msgid "Form preview"
|
361 |
msgstr "Náhled formuláře"
|
362 |
|
363 |
+
#: includes/forms/class-form-tags.php:60
|
364 |
msgid "Replaced with the form response (error or success messages)."
|
365 |
msgstr "Bude nahrazeno potvrzovací, chybovou či jinou hláškou."
|
366 |
|
367 |
+
#: includes/forms/class-form-tags.php:65
|
368 |
msgid "Data from the URL or a submitted form."
|
369 |
msgstr "Data z URL adresy nebo z potvrzovacího pole."
|
370 |
|
371 |
+
#: includes/forms/class-form-tags.php:71
|
372 |
+
msgid "Data from a cookie."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: includes/forms/class-form-tags.php77,
|
376 |
#: includes/integrations/class-integration-tags.php:45
|
377 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
378 |
msgstr "Bude nahrazeno počtem odběratelů na vybraném seznamu adres."
|
379 |
|
380 |
+
#: includes/forms/class-form-tags.php:82
|
381 |
msgid "The email address of the current visitor (if known)."
|
382 |
msgstr "Emailová adresa aktuálního návštěvníka (pokud je známa)."
|
383 |
|
384 |
+
#: includes/forms/class-form-tags.php:87
|
385 |
msgid "The URL of the page."
|
386 |
msgstr "URL webové stránky"
|
387 |
|
388 |
+
#: includes/forms/class-form-tags.php:92
|
389 |
msgid "The path of the page."
|
390 |
msgstr "Cesta k webové stránce."
|
391 |
|
392 |
+
#: includes/forms/class-form-tags.php:97
|
393 |
msgid "The current date. Example: %s."
|
394 |
msgstr "Aktuální datum. Příklad: %s."
|
395 |
|
396 |
+
#: includes/forms/class-form-tags.php:102
|
397 |
msgid "The current time. Example: %s."
|
398 |
msgstr "Aktuální čas. Příklad: %s."
|
399 |
|
400 |
+
#: includes/forms/class-form-tags.php:107
|
401 |
msgid "The site's language. Example: %s."
|
402 |
msgstr "Jazyk stránek. Příklad: %s."
|
403 |
|
404 |
+
#: includes/forms/class-form-tags.php:112
|
405 |
msgid "The visitor's IP address. Example: %s."
|
406 |
msgstr "Návštěvníkova IP adresa. Příklad: %s."
|
407 |
|
408 |
+
#: includes/forms/class-form-tags.php:117
|
409 |
msgid "The property of the currently logged-in user."
|
410 |
msgstr "Majetkem aktuálně přihlášeného uživatele."
|
411 |
|
412 |
+
#: includes/forms/class-form-tags.php:123
|
413 |
+
msgid "Property of the current page or post."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: includes/forms/class-form.php:133
|
417 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
418 |
msgstr "Žádné pole s ID %d, pravděpodobně bylo smazáno."
|
419 |
|
421 |
msgid "Newsletter"
|
422 |
msgstr "Newsletter"
|
423 |
|
|
|
|
|
|
|
|
|
424 |
#: includes/forms/class-widget.php:32
|
425 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
426 |
msgstr "Zobrazuje váš formulář pro odběratele"
|
435 |
" form settings</a>."
|
436 |
msgstr "Editovat nastavení přihlašovacích formulářů pluginu \"Mailchimp for Wordpress\" můžete <a href=\"%s\">zde</a>."
|
437 |
|
438 |
+
#: includes/integrations/class-admin.php79,
|
439 |
+
#: includes/integrations/class-admin.php80,
|
440 |
+
#: includes/integrations/views/integration-settings.php10,
|
441 |
+
#: includes/integrations/views/integrations.php57,
|
442 |
+
#: includes/integrations/views/integrations.php:65
|
443 |
+
msgid "Integrations"
|
444 |
+
msgstr "Integrace"
|
445 |
+
|
446 |
+
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
447 |
+
#: includes/forms/views/edit-form.php22,
|
448 |
+
#: includes/integrations/views/integration-settings.php8,
|
449 |
+
#: includes/integrations/views/integrations.php:55
|
450 |
+
msgid "You are here: "
|
451 |
+
msgstr "Tady jsi:"
|
452 |
+
|
453 |
+
#: includes/views/general-settings.php:18
|
454 |
+
msgid "General Settings"
|
455 |
+
msgstr "Nastavení"
|
456 |
+
|
457 |
+
#: includes/views/general-settings.php:38
|
458 |
+
msgid "Status"
|
459 |
+
msgstr "Stav"
|
460 |
+
|
461 |
+
#: includes/views/general-settings.php:42
|
462 |
+
msgid "CONNECTED"
|
463 |
+
msgstr "PŘIPOJENO"
|
464 |
+
|
465 |
+
#: includes/views/general-settings.php:44
|
466 |
+
msgid "NOT CONNECTED"
|
467 |
+
msgstr "NEPŘIPOJENO"
|
468 |
+
|
469 |
+
#: includes/views/general-settings.php:51
|
470 |
+
msgid "API Key"
|
471 |
+
msgstr "API klíč"
|
472 |
+
|
473 |
+
#: includes/views/general-settings.php:53
|
474 |
+
msgid "Your MailChimp API key"
|
475 |
+
msgstr "Váš API klíč z MailChimpu"
|
476 |
+
|
477 |
+
#: includes/views/general-settings.php:55
|
478 |
+
msgid "The API key for connecting with your MailChimp account."
|
479 |
+
msgstr "API key pro spojení s MailChimp účtem"
|
480 |
+
|
481 |
+
#: includes/views/general-settings.php:56
|
482 |
+
msgid "Get your API key here."
|
483 |
+
msgstr "Vygenerovat API klíč."
|
484 |
+
|
485 |
+
#: includes/views/other-settings.php:14
|
486 |
+
msgid "Miscellaneous settings"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/views/other-settings.php:17
|
490 |
+
msgid "Usage Tracking"
|
491 |
+
msgstr "Sledování využití"
|
492 |
+
|
493 |
+
#: includes/views/other-settings.php:29
|
494 |
+
msgid ""
|
495 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
496 |
+
"better fit your needs."
|
497 |
+
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."
|
498 |
+
|
499 |
+
#: includes/views/other-settings.php:31
|
500 |
+
msgid "This is what we track."
|
501 |
+
msgstr "Tohle sledujeme."
|
502 |
+
|
503 |
+
#: includes/views/other-settings.php:37
|
504 |
+
msgid "Logging"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: includes/views/other-settings.php:44
|
508 |
+
msgid ""
|
509 |
+
"Determines what events should be written to <a href=\"%s\">the debug log</a>"
|
510 |
+
" (see below)."
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/views/other-settings.php:99
|
514 |
+
msgid "Debug Log"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: includes/views/other-settings.php:99
|
518 |
+
msgid "Filter.."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: includes/views/other-settings.php:104
|
522 |
+
msgid "Log file is not writable."
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: includes/views/other-settings.php:105
|
526 |
+
msgid "Please ensure %s has the proper <a href=\"%s\">file permissions</a>."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: includes/views/other-settings.php:123
|
530 |
+
msgid "Nothing here. Which means there are no errors!"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: includes/views/other-settings.php:133
|
534 |
+
msgid "Empty Log"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: includes/views/other-settings.php:141
|
538 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
542 |
+
msgid "Default sign-up form"
|
543 |
+
msgstr "Výchozí pole pro přihlášení"
|
544 |
+
|
545 |
+
#: includes/forms/views/add-form.php10, includes/forms/views/add-form.php:60
|
546 |
msgid "Add new form"
|
547 |
msgstr "Přidat nový formulář"
|
548 |
|
570 |
msgid "Messages"
|
571 |
msgstr "Hlášky"
|
572 |
|
573 |
+
#: includes/forms/views/edit-form.php:7
|
574 |
+
msgid "Appearance"
|
575 |
+
msgstr "Vzhled"
|
576 |
+
|
577 |
+
#: includes/forms/views/edit-form.php:25
|
578 |
+
msgid "Form"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: includes/forms/views/edit-form.php:34
|
582 |
+
msgid "Edit Form"
|
583 |
+
msgstr "Upravit formulář"
|
584 |
+
|
585 |
+
#: includes/forms/views/edit-form.php:58
|
586 |
+
msgid "Enter form title here"
|
587 |
+
msgstr "Zde vyplň název formuláře"
|
588 |
+
|
589 |
+
#: includes/forms/views/edit-form.php:59
|
590 |
+
msgid "Enter the title of your sign-up form"
|
591 |
+
msgstr "Vyplň název tvého přihlašovacího formuláře"
|
592 |
+
|
593 |
+
#: includes/forms/views/edit-form.php:65
|
594 |
+
msgid "Shortcode"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: includes/forms/views/edit-form.php:67
|
598 |
+
msgid "Get shortcode"
|
599 |
+
msgstr "Získat shortcode"
|
600 |
+
|
601 |
+
#: includes/forms/views/edit-form.php:72
|
602 |
+
msgid "Preview this form"
|
603 |
+
msgstr "Náhled formuláře"
|
604 |
+
|
605 |
+
#: includes/integrations/views/integration-settings.php:20
|
606 |
+
msgid "%s integration"
|
607 |
+
msgstr "%s vložení"
|
608 |
+
|
609 |
+
#: includes/integrations/views/integration-settings.php:27
|
610 |
+
msgid ""
|
611 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
612 |
+
"this integration from working."
|
613 |
+
msgstr "Vybrané MailChimpové seznamy požadují nestandardní pole. To může způsobit nefunkčnost integrace."
|
614 |
+
|
615 |
+
#: includes/integrations/views/integration-settings.php:28
|
616 |
+
msgid ""
|
617 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
618 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
619 |
+
"sure only the email & name fields are marked as required fields for the "
|
620 |
+
"selected list(s)."
|
621 |
+
msgstr "Ujistěte se prosím <a href=\"%s\"> že jste nastavili plugin k odeslání všech požadovaných polí </a> nebo <a href=\"%s\"> přihlášte se do svého účtu MailChimp </a> a ujistěte se, že jen pole e-mailová a název jsou označena jako povinná pole pro vybraný seznam(y)."
|
622 |
+
|
623 |
+
#: includes/integrations/views/integration-settings.php:62
|
624 |
+
msgid "Enabled?"
|
625 |
+
msgstr "Povolit?"
|
626 |
+
|
627 |
+
#: includes/integrations/views/integration-settings.php:66
|
628 |
+
msgid ""
|
629 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
630 |
+
msgstr "Povolit %s vložení? Tímto přidáte do formuláře zaškrtávací pole pro odběr novinek."
|
631 |
+
|
632 |
+
#: includes/integrations/views/integration-settings.php:76
|
633 |
+
msgid "Implicit?"
|
634 |
+
msgstr "Určitě?"
|
635 |
+
|
636 |
+
#: includes/integrations/views/integration-settings.php:80
|
637 |
+
msgid ""
|
638 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
639 |
+
"(recommended)."
|
640 |
+
msgstr "Vyberte \"ne\" pokud chcte aby návštěvníci potvrzovali přihlášení k odběru (doporučeno)."
|
641 |
+
|
642 |
+
#: includes/integrations/views/integration-settings.php:90
|
643 |
+
msgid "MailChimp Lists"
|
644 |
+
msgstr "Seznam adres z MailChimpu"
|
645 |
+
|
646 |
+
#: includes/integrations/views/integration-settings.php:103
|
647 |
+
msgid ""
|
648 |
+
"Select the list(s) to which people who check the checkbox should be "
|
649 |
+
"subscribed."
|
650 |
+
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."
|
651 |
+
|
652 |
+
#: includes/integrations/views/integration-settings.php107,
|
653 |
+
#: includes/forms/views/tabs/form-settings.php:18
|
654 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
655 |
+
msgstr "Žádné seznamy odběratelů (listy) nebyly nalezeny. %sOpravdu jste přihlášení k MailChimpu?%s"
|
656 |
+
|
657 |
+
#: includes/integrations/views/integration-settings.php:116
|
658 |
+
msgid "Checkbox label text"
|
659 |
+
msgstr "Popisek u zaškrtávacího políčka"
|
660 |
+
|
661 |
+
#: includes/integrations/views/integration-settings.php:119
|
662 |
+
msgid "HTML tags like %s are allowed in the label text."
|
663 |
+
msgstr "HTML tagy %s jsou v popisku povoleny."
|
664 |
+
|
665 |
+
#: includes/integrations/views/integration-settings.php:129
|
666 |
+
msgid "Pre-check the checkbox?"
|
667 |
+
msgstr "Chcete zaškrtávat políčko jako výchozí stav?"
|
668 |
+
|
669 |
+
#: includes/integrations/views/integration-settings.php:133
|
670 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
671 |
+
msgstr "Zvolte \"ano\" pokud má týt checkbox zaškrtnutý."
|
672 |
+
|
673 |
+
#: includes/integrations/views/integration-settings.php:141
|
674 |
+
msgid "Load some default CSS?"
|
675 |
+
msgstr "Chcete načíst výchozí CSS styly?"
|
676 |
+
|
677 |
+
#: includes/integrations/views/integration-settings.php:145
|
678 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
679 |
+
msgstr "Pokud se vám zaškrtávací políčko nezobrazuje dobře, vyberte \"Ano\"."
|
680 |
+
|
681 |
+
#: includes/integrations/views/integration-settings.php:152
|
682 |
+
msgid "Double opt-in?"
|
683 |
+
msgstr "Vyžadujete po uživatelích potvrzení e-mailu?"
|
684 |
+
|
685 |
+
#: includes/integrations/views/integration-settings.php:163
|
686 |
+
msgid ""
|
687 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
688 |
+
"being subscribed (recommended)"
|
689 |
+
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!)."
|
690 |
+
|
691 |
+
#: includes/integrations/views/integration-settings.php171,
|
692 |
+
#: includes/forms/views/tabs/form-settings.php:52
|
693 |
+
msgid "Update existing subscribers?"
|
694 |
+
msgstr "Chcete upravovat již existující uživatele?"
|
695 |
+
|
696 |
+
#: includes/integrations/views/integration-settings.php181,
|
697 |
+
#: includes/forms/views/tabs/form-settings.php:62
|
698 |
+
msgid ""
|
699 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
700 |
+
" is sent."
|
701 |
+
msgstr "Vyberte \"ano\" pokud chcete aktualizovat stávající odběratele s daty které se posílají."
|
702 |
+
|
703 |
+
#: includes/integrations/views/integration-settings.php190,
|
704 |
+
#: includes/forms/views/tabs/form-settings.php:68
|
705 |
+
msgid "Replace interest groups?"
|
706 |
+
msgstr "Vyměnit zájmové skupiny?"
|
707 |
+
|
708 |
+
#: includes/integrations/views/integration-settings.php201,
|
709 |
+
#: includes/forms/views/tabs/form-settings.php:79
|
710 |
+
msgid ""
|
711 |
+
"Select \"no\" if you want to add the selected interests to any previously "
|
712 |
+
"selected interests when updating a subscriber."
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: includes/integrations/views/integration-settings.php202,
|
716 |
+
#: includes/forms/views/tabs/form-settings.php:80
|
717 |
+
msgid "What does this do?"
|
718 |
+
msgstr "K čemu to slouží?"
|
719 |
+
|
720 |
+
#: includes/integrations/views/integrations.php:17
|
721 |
+
msgid "Name"
|
722 |
+
msgstr "Jméno"
|
723 |
+
|
724 |
+
#: includes/integrations/views/integrations.php:18
|
725 |
+
msgid "Description"
|
726 |
+
msgstr "Popis"
|
727 |
+
|
728 |
+
#: includes/integrations/views/integrations.php:35
|
729 |
+
msgid "Configure this integration"
|
730 |
+
msgstr "Nastavit toto spojení"
|
731 |
+
|
732 |
+
#: includes/integrations/views/integrations.php:71
|
733 |
+
msgid "The table below shows all available integrations."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/integrations/views/integrations.php:72
|
737 |
+
msgid ""
|
738 |
+
"Click on the name of an integration to edit all settings specific to that "
|
739 |
+
"integration."
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: includes/integrations/views/integrations.php:79
|
743 |
+
msgid "Enabled integrations"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: includes/integrations/views/integrations.php:84
|
747 |
+
msgid "Available integrations"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: includes/views/parts/admin-footer.php:15
|
751 |
+
msgid ""
|
752 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
753 |
+
"translated in your language or do you spot errors with the current "
|
754 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
755 |
+
"translation project and click \"help translate\"</a>."
|
756 |
+
msgstr "MailChimp for WordPress potřebuje přeložit. Není dosud přeložen ve Vašem jazyce nebo jste zaznamenali chyby v současném překladu? Pomoc je snadná! Přejděte na <a href=\"%s\">projekt překladu a klikněte na \"pomoc s překladem\"</a>."
|
757 |
+
|
758 |
+
#: includes/views/parts/admin-footer.php:35
|
759 |
+
msgid ""
|
760 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
761 |
+
msgstr "Tento plugin není vyvíjen ve spolupráci s MailChimpem."
|
762 |
+
|
763 |
+
#: includes/views/parts/admin-sidebar.php:11
|
764 |
+
msgid "Looking for help?"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: includes/views/parts/admin-sidebar.php:12
|
768 |
+
msgid "We have some resources available to help you in the right direction."
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: includes/views/parts/admin-sidebar.php:14
|
772 |
+
msgid "Knowledge Base"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: includes/views/parts/admin-sidebar.php:15
|
776 |
+
msgid "Frequently Asked Questions"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: includes/views/parts/admin-sidebar.php:16
|
780 |
+
msgid "Code reference for developers"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: includes/views/parts/admin-sidebar.php:36
|
784 |
+
msgid "Looking to improve your sign-up rates?"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: includes/views/parts/admin-sidebar.php:37
|
788 |
+
msgid ""
|
789 |
+
"Our <a href=\"%s\">Boxzilla plugin</a> allows you to create pop-ups or "
|
790 |
+
"slide-ins with a subscribe form. A sure way to grow your lists faster."
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/views/parts/lists-overview.php:1
|
794 |
+
msgid "Your MailChimp Account"
|
795 |
+
msgstr "Váš účet u MailChimpu"
|
796 |
+
|
797 |
+
#: includes/views/parts/lists-overview.php:2
|
798 |
+
msgid ""
|
799 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
800 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
801 |
+
"renew the cached lists configuration."
|
802 |
+
msgstr "Tabulka níže zobrazuje MailChimp seznam a jeho detaily. Pokud jste právě provedli změny Vašeho MailChimp seznamu, prosím použijte následující tlačítko k přepsání seznamů nastavení uložených v mezipaměti."
|
803 |
+
|
804 |
+
#: includes/views/parts/lists-overview.php:17
|
805 |
+
msgid "No lists were found in your MailChimp account"
|
806 |
+
msgstr "Ve Vašem účtu v MailChimpu jsme nenašeli žádné seznamy adres."
|
807 |
|
808 |
+
#: includes/views/parts/lists-overview.php:19
|
809 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
810 |
+
msgstr "Ve vašem MailChimp účtu bylo nalezeno celkem %d seznamů odběratelů."
|
|
|
|
|
|
|
811 |
|
812 |
+
#: includes/views/parts/lists-overview.php:24
|
813 |
+
msgid "List Name"
|
814 |
+
msgstr "Název seznamu"
|
815 |
|
816 |
+
#: includes/views/parts/lists-overview.php:25
|
817 |
+
msgid "ID"
|
818 |
+
msgstr "ID"
|
819 |
|
820 |
+
#: includes/views/parts/lists-overview.php:26
|
821 |
+
msgid "Subscribers"
|
822 |
+
msgstr "Registrovaní odběratelé"
|
823 |
|
824 |
+
#: includes/views/parts/lists-overview.php:48
|
825 |
+
msgid "Edit this list in MailChimp"
|
826 |
+
msgstr "Upravit tento seznam odběratelů v MailChimpu"
|
827 |
|
828 |
+
#: includes/views/parts/lists-overview.php:62
|
829 |
+
msgid "%s (%s) with field type %s."
|
830 |
+
msgstr "%s (%s) s druhem pole %s."
|
831 |
|
832 |
+
#: includes/forms/views/parts/add-fields-help.php4,
|
833 |
#: includes/forms/views/tabs/form-fields.php:10
|
834 |
msgid "Add more fields"
|
835 |
msgstr "Přidat další pole"
|
866 |
"changes."
|
867 |
msgstr "Klikněte na následující tlačítko aby MailChimp mohl WordPressu odeslat Vaše změny."
|
868 |
|
|
|
|
|
|
|
|
|
|
|
869 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
870 |
msgid "Add dynamic form variable"
|
871 |
msgstr "Přidat dynamické proměné formuláře"
|
938 |
msgid "Enter the HTML code for your form fields.."
|
939 |
msgstr "Vložte HTML kód Vašich formulářových polí."
|
940 |
|
941 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
|
|
|
|
|
|
|
|
942 |
msgid ""
|
943 |
"Use the shortcode %s to display this form inside a post, page or text "
|
944 |
"widget."
|
945 |
msgstr "Pro zobrazení tohoto formuláře v příspěvku, stránce nebo ve textovém widgetu použijte zkratku %s."
|
946 |
|
947 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
948 |
msgid "Form Messages"
|
949 |
msgstr "Zprávy formuláře"
|
950 |
|
951 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
952 |
msgid "Successfully subscribed"
|
953 |
msgstr "Úspešně přihlášen"
|
954 |
|
955 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
956 |
msgid ""
|
957 |
"The text that shows when an email address is successfully subscribed to the "
|
958 |
"selected list(s)."
|
959 |
msgstr "Text zobrazující se po úspěšném odeslaní emailu do vybraného seznamu(ů). "
|
960 |
|
961 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
962 |
msgid "Invalid email address"
|
963 |
msgstr "Neplatná emailová adresa"
|
964 |
|
965 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
966 |
msgid "The text that shows when an invalid email address is given."
|
967 |
msgstr "Text zobrazovaný při špatném vyplnění emailové adresy."
|
968 |
|
969 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
970 |
msgid "Required field missing"
|
971 |
msgstr "Chybí požadované pole"
|
972 |
|
973 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
974 |
msgid ""
|
975 |
"The text that shows when a required field for the selected list(s) is "
|
976 |
"missing."
|
977 |
msgstr "Text zobrazený pokud chybí požadované pole vybraného seznamu(ů)."
|
978 |
|
979 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
980 |
msgid "Already subscribed"
|
981 |
msgstr "Jste již přihlášen"
|
982 |
|
983 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
984 |
msgid ""
|
985 |
"The text that shows when the given email is already subscribed to the "
|
986 |
"selected list(s)."
|
987 |
msgstr "Text zobrazený pokud odeslaný email již je v seznamu(ech)."
|
988 |
|
989 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
990 |
msgid "General error"
|
991 |
msgstr "Obecná chyba"
|
992 |
|
993 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
994 |
msgid "The text that shows when a general error occured."
|
995 |
msgstr "Text zobrazující se pokud nastane obecná chyba."
|
996 |
|
997 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
998 |
msgid "Unsubscribed"
|
999 |
msgstr "Odhlášen z odběru"
|
1000 |
|
1001 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
1002 |
msgid ""
|
1003 |
"When using the unsubscribe method, this is the text that shows when the "
|
1004 |
"given email address is successfully unsubscribed from the selected list(s)."
|
1005 |
msgstr "Pokud používáte metodu k odjlášení z odběru, bude tento text zobrazen, když odeslaná emailová adresa bude úspěšně odhlášena z vybraného seznamu(ů)."
|
1006 |
|
1007 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1008 |
msgid "Not subscribed"
|
1009 |
msgstr "Nepřihlášen k odběru"
|
1010 |
|
1011 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1012 |
msgid ""
|
1013 |
"When using the unsubscribe method, this is the text that shows when the "
|
1014 |
"given email address is not on the selected list(s)."
|
1015 |
msgstr "Pokud používáte metodu k odhlášení z odběru, bude tento text zobrazen vpřípadě, že odeslaná emailová adresa nebude na vybraném seznamu(ech)."
|
1016 |
|
1017 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1018 |
+
msgid "No list selected"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1022 |
+
msgid ""
|
1023 |
+
"When offering a list choice, this is the text that shows when no lists were "
|
1024 |
+
"selected."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/forms/views/tabs/form-messages.php:74
|
1028 |
+
msgid "Updated"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/forms/views/tabs/form-messages.php:77
|
1032 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: includes/forms/views/tabs/form-messages.php:89
|
1036 |
msgid "HTML tags like %s are allowed in the message fields."
|
1037 |
msgstr "HTML tagy %s jsou v zobrazovaných hláškách povoleny."
|
1038 |
|
1044 |
msgid "MailChimp specific settings"
|
1045 |
msgstr "Specifická nastavení MailChimp"
|
1046 |
|
1047 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1048 |
msgid "Lists this form subscribes to"
|
1049 |
msgstr "Na který seznam adres chcete uživatele přidávat?"
|
1050 |
|
1051 |
+
#: includes/forms/views/tabs/form-settings.php:31
|
|
|
|
|
|
|
|
|
|
|
1052 |
msgid ""
|
1053 |
"Select the list(s) to which people who submit this form should be "
|
1054 |
"subscribed."
|
1055 |
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."
|
1056 |
|
1057 |
+
#: includes/forms/views/tabs/form-settings.php:37
|
1058 |
msgid "Use double opt-in?"
|
1059 |
msgstr "Používat dvojí opt-in?"
|
1060 |
|
1061 |
+
#: includes/forms/views/tabs/form-settings.php:44
|
1062 |
+
msgid "Are you sure you want to disable double opt-in?"
|
1063 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1064 |
|
1065 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
|
|
1066 |
msgid ""
|
1067 |
+
"We strongly suggest keeping double opt-in enabled. Disabling double opt-in "
|
1068 |
+
"may result in abuse."
|
1069 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1070 |
|
1071 |
+
#: includes/forms/views/tabs/form-settings.php:94
|
1072 |
msgid "Form behaviour"
|
1073 |
msgstr "Chování formuláře"
|
1074 |
|
1075 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
1076 |
msgid "Hide form after a successful sign-up?"
|
1077 |
msgstr "Chcete skrývat formulář po úspěšné registraci?"
|
1078 |
|
1079 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
1080 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1081 |
msgstr "Pokud chcete skrýt formulář pro odebírání novinek skrýt po úspěšné registraci na seznam adres, vyberte \"Ano\"."
|
1082 |
|
1083 |
+
#: includes/forms/views/tabs/form-settings.php:120
|
1084 |
msgid "Redirect to URL after successful sign-ups"
|
1085 |
msgstr "Na kterou adresu chcete přesměrovat uživatele po registraci?"
|
1086 |
|
1087 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
1088 |
msgid "Example: %s"
|
1089 |
msgstr "Příklad: %s"
|
1090 |
|
1091 |
+
#: includes/forms/views/tabs/form-settings.php:123
|
1092 |
msgid ""
|
1093 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
1094 |
" (absolute) URLs, including <code>http://</code>."
|
1095 |
msgstr "Nechte prázdné nebo vložte <code>0</code> pro nepřesměrování. Jinak, použijte plnou (absolutní) URLs, obsahující <code>http://</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mailchimp-for-wp-da_DK.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-da_DK.po
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: MailChimp for WordPress\n"
|
11 |
-
"PO-Revision-Date: 2017-
|
12 |
"Last-Translator: Jens Bindløv <jens.bindlov@gmail.com>\n"
|
13 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/da_DK/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: MailChimp for WordPress\n"
|
11 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
12 |
"Last-Translator: Jens Bindløv <jens.bindlov@gmail.com>\n"
|
13 |
"Language-Team: Danish (Denmark) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/da_DK/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-de_CH.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-de_CH.po
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
# Translators:
|
4 |
# Christoph Messerli <christoph.messerli@datajam.ch>, 2016
|
5 |
# Freakspot, 2014
|
@@ -8,68 +8,21 @@
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: MailChimp for WordPress\n"
|
11 |
-
"
|
12 |
-
"
|
13 |
-
"PO-Revision-Date: 2016-09-12 13:50+0000\n"
|
14 |
-
"Last-Translator: Christoph Messerli <christoph.messerli@datajam.ch>\n"
|
15 |
"Language-Team: German (Switzerland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_CH/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
"Language: de_CH\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "Email address"
|
24 |
-
msgstr "E-Mail Adresse"
|
25 |
-
|
26 |
-
#: config/default-form-content.php:4
|
27 |
-
msgid "Your email address"
|
28 |
-
msgstr "Deine E-Mail Adresse"
|
29 |
-
|
30 |
-
#: config/default-form-content.php:5
|
31 |
-
msgid "Sign up"
|
32 |
-
msgstr "Registrieren"
|
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 "Danke, deine Anfrage war erfolgreich! Bitte prüfe dein E-Mail Konto für die Bestätigung."
|
39 |
-
|
40 |
-
#: config/default-form-messages.php:9
|
41 |
-
msgid "Oops. Something went wrong. Please try again later."
|
42 |
-
msgstr "Oops. Irgendwas ist schief gelaufen. Bitte versuche es später noch mal."
|
43 |
-
|
44 |
-
#: config/default-form-messages.php:13
|
45 |
-
msgid "Please provide a valid email address."
|
46 |
-
msgstr "Bitte eine gültige E-Mail Adresse angeben."
|
47 |
-
|
48 |
-
#: config/default-form-messages.php:17
|
49 |
-
msgid "Given email address is already subscribed, thank you!"
|
50 |
-
msgstr "Die angegebene E-Mail Adresse befindet sich bereits im Verteiler, danke!"
|
51 |
-
|
52 |
-
#: config/default-form-messages.php:21
|
53 |
-
msgid "Please fill in the required fields."
|
54 |
-
msgstr "Bitte fülle die erforderlichen Felder aus."
|
55 |
-
|
56 |
-
#: config/default-form-messages.php:25
|
57 |
-
msgid "You were successfully unsubscribed."
|
58 |
-
msgstr "Du wurdest erfolgreich abgemeldet."
|
59 |
-
|
60 |
-
#: config/default-form-messages.php:29
|
61 |
-
msgid "Given email address is not subscribed."
|
62 |
-
msgstr "Die angegebene E-Mail Adresse ist nicht abonniert."
|
63 |
-
|
64 |
-
#: config/default-form-messages.php:33
|
65 |
-
msgid "Please select at least one list."
|
66 |
-
msgstr "Bitte mindestens eine Liste auswählen."
|
67 |
-
|
68 |
-
#: config/default-integration-options.php:5
|
69 |
-
msgid "Sign me up for the newsletter!"
|
70 |
-
msgstr "Trage mich in den Newsletter ein!"
|
71 |
-
|
72 |
-
#: includes/admin/class-admin-texts.php:62
|
73 |
#: includes/forms/views/edit-form.php:6
|
74 |
msgid "Settings"
|
75 |
msgstr "Einstellungen"
|
@@ -78,141 +31,388 @@ msgstr "Einstellungen"
|
|
78 |
msgid "Documentation"
|
79 |
msgstr "Dokumentation"
|
80 |
|
81 |
-
#: includes/admin/class-admin.php:
|
82 |
msgid ""
|
83 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
84 |
msgstr "Die zwischengespeicherte Konfiguration für Deine MailChimp-Listen wurde erfolgreich erneuert."
|
85 |
|
86 |
-
#: includes/admin/class-admin.php:
|
87 |
msgid ""
|
88 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
89 |
" to use it."
|
90 |
msgstr "Dieses Feature gibt es nur in der Pro-Version. Du musst auf die Premium-Version upgraden, um diese Funktion zu nutzen. "
|
91 |
|
92 |
-
#: includes/admin/class-admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
msgid "MailChimp API Settings"
|
94 |
msgstr "MailChimp API Einstellungen"
|
95 |
|
96 |
-
#: includes/admin/class-admin.php:
|
97 |
-
#: integrations/ninja-forms/class-ninja-forms.php:34
|
98 |
msgid "MailChimp"
|
99 |
msgstr "MailChimp"
|
100 |
|
101 |
-
#: includes/admin/class-
|
102 |
-
|
103 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
|
105 |
-
#: includes/admin/class-
|
106 |
msgid ""
|
107 |
-
"
|
108 |
-
"
|
109 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
|
111 |
-
#: includes/admin/class-ads.php:
|
112 |
msgid "More subscribers, better newsletters."
|
113 |
msgstr "Mehr Abonnenten, bessere Newsletters. "
|
114 |
|
115 |
-
#: includes/admin/class-ads.php:
|
116 |
msgid ""
|
117 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
118 |
"our monthly tips."
|
119 |
msgstr "Erfahre wie du deine Empfängerliste erweitern und bessere Emails schreiben kannst. Abonniere unsere monatlichen Tipps. "
|
120 |
|
121 |
-
#: includes/admin/class-ads.php:
|
122 |
msgid "Email Address"
|
123 |
msgstr "Email-Adresse"
|
124 |
|
125 |
-
#: includes/admin/class-ads.php:
|
126 |
msgid "First Name"
|
127 |
msgstr "Vorname"
|
128 |
|
129 |
-
#: includes/admin/class-ads.php:
|
130 |
msgid "Subscribe"
|
131 |
msgstr "abonnieren"
|
132 |
|
133 |
-
#: includes/admin/class-
|
134 |
-
msgid "
|
135 |
-
|
|
|
|
|
136 |
|
137 |
-
#: includes/admin/
|
138 |
-
msgid "
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
142 |
msgid "Read more about common connectivity issues."
|
143 |
msgstr "Erfahre mehr über Common Connectivity Themen. "
|
144 |
|
145 |
-
#: includes/forms/class-admin.php:
|
146 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
msgid "Forms"
|
148 |
msgstr "Formulare"
|
149 |
|
150 |
-
#: includes/forms/class-admin.
|
151 |
msgid "<strong>Success!</strong> Form successfully saved."
|
152 |
msgstr "Formular erfolgreich gespeichert. "
|
153 |
|
154 |
-
#: includes/forms/class-admin.php:
|
155 |
msgid "Preview form"
|
156 |
msgstr "Formular-Vorschau"
|
157 |
|
158 |
-
#: includes/forms/class-admin.php:
|
159 |
-
msgid "
|
160 |
-
msgstr "
|
161 |
|
162 |
-
#: includes/forms/class-admin.php:
|
163 |
-
msgid "
|
164 |
-
msgstr "
|
165 |
|
166 |
-
#: includes/forms/class-form-previewer.php:
|
167 |
msgid "Form preview"
|
168 |
msgstr "Formular-Vorschau"
|
169 |
|
170 |
-
#: includes/forms/class-form-tags.php:
|
171 |
msgid "Replaced with the form response (error or success messages)."
|
172 |
msgstr "Ersetzt mit der Formular-Antwort (Fehler- oder Erfolgsmeldungen)."
|
173 |
|
174 |
-
#: includes/forms/class-form-tags.php:
|
175 |
msgid "Data from the URL or a submitted form."
|
176 |
msgstr "Daten von einer URL oder eines abgesendeten Formulars."
|
177 |
|
178 |
-
#: includes/forms/class-form-tags.php:
|
|
|
|
|
|
|
|
|
179 |
#: includes/integrations/class-integration-tags.php:45
|
180 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
181 |
msgstr "Ersetzten mit der Nummer von Abonnenten der gewählten Listen"
|
182 |
|
183 |
-
#: includes/forms/class-form-tags.php:
|
184 |
msgid "The email address of the current visitor (if known)."
|
185 |
msgstr "Die Email-Adresse des aktuellen Besuchers (falls bekannt). "
|
186 |
|
187 |
-
#: includes/forms/class-form-tags.php:
|
188 |
msgid "The URL of the page."
|
189 |
msgstr "Die URL der Seite."
|
190 |
|
191 |
-
#: includes/forms/class-form-tags.php:
|
192 |
msgid "The path of the page."
|
193 |
msgstr "Der Pfad der Seite."
|
194 |
|
195 |
-
#: includes/forms/class-form-tags.php:
|
196 |
msgid "The current date. Example: %s."
|
197 |
msgstr "Das aktuelle Datum. Beispiel: %s."
|
198 |
|
199 |
-
#: includes/forms/class-form-tags.php:
|
200 |
msgid "The current time. Example: %s."
|
201 |
msgstr "Die aktuelle Zeit. Beispiel: %s."
|
202 |
|
203 |
-
#: includes/forms/class-form-tags.php:
|
204 |
msgid "The site's language. Example: %s."
|
205 |
msgstr "Die Seitensprache. Beispiel: %s. "
|
206 |
|
207 |
-
#: includes/forms/class-form-tags.php:
|
208 |
msgid "The visitor's IP address. Example: %s."
|
209 |
msgstr "Die IP-Adresse des Besuchers. Beispiel: %s."
|
210 |
|
211 |
-
#: includes/forms/class-form-tags.php:
|
212 |
msgid "The property of the currently logged-in user."
|
213 |
msgstr "Eigenschaften des aktuell eingeloggten Benutzers."
|
214 |
|
215 |
-
#: includes/forms/class-form.php:
|
|
|
|
|
|
|
|
|
216 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
217 |
msgstr "Kein Formular mit der ID %d vorhanden. Vielleicht wurde es gelöscht. "
|
218 |
|
@@ -220,10 +420,6 @@ msgstr "Kein Formular mit der ID %d vorhanden. Vielleicht wurde es gelöscht. "
|
|
220 |
msgid "Newsletter"
|
221 |
msgstr "Newsletter"
|
222 |
|
223 |
-
#: includes/forms/class-widget.php:30
|
224 |
-
msgid "MailChimp Sign-Up Form"
|
225 |
-
msgstr "MailChimp Registrierungsformular"
|
226 |
-
|
227 |
#: includes/forms/class-widget.php:32
|
228 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
229 |
msgstr "Zeigt dein MailChimp für WordPress Registrierungsformular an"
|
@@ -238,7 +434,114 @@ msgid ""
|
|
238 |
" form settings</a>."
|
239 |
msgstr "Du kannst dein Registrierungsformular in den <a href=\"%s\">MailChimp für WordPress Formulareinstellungen</a> editieren."
|
240 |
|
241 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
msgid "Add new form"
|
243 |
msgstr "Neues Formular hinzufügen"
|
244 |
|
@@ -266,38 +569,266 @@ msgstr "Felder"
|
|
266 |
msgid "Messages"
|
267 |
msgstr "Nachrichten"
|
268 |
|
269 |
-
#: includes/forms/views/edit-form.php:7
|
270 |
-
msgid "Appearance"
|
271 |
-
msgstr "Erscheinungsbild"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
|
273 |
-
#: includes/
|
274 |
-
|
275 |
-
|
276 |
-
#: includes/views/general-settings.php:7
|
277 |
-
msgid "You are here: "
|
278 |
-
msgstr "Du bist hier:"
|
279 |
|
280 |
-
#: includes/
|
281 |
-
msgid "
|
282 |
-
msgstr "
|
283 |
|
284 |
-
#: includes/
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
-
#: includes/
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: includes/
|
293 |
-
msgid "
|
294 |
-
msgstr "
|
295 |
|
296 |
-
#: includes/
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#: includes/forms/views/parts/add-fields-help.
|
301 |
#: includes/forms/views/tabs/form-fields.php:10
|
302 |
msgid "Add more fields"
|
303 |
msgstr "Mehr Felder hinzufügen"
|
@@ -334,11 +865,6 @@ msgid ""
|
|
334 |
"changes."
|
335 |
msgstr "Klick auf den Button damit MailChimp für Wordpress deine Änderungen erfassen kann."
|
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 "MailChimp Listen neu laden"
|
341 |
-
|
342 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
343 |
msgid "Add dynamic form variable"
|
344 |
msgstr "Dynamische Formular-Variable hinzufügen"
|
@@ -411,87 +937,101 @@ msgstr "Formularfelder"
|
|
411 |
msgid "Enter the HTML code for your form fields.."
|
412 |
msgstr "Gib den HTML-Code für deine Formularfelder ein."
|
413 |
|
414 |
-
#: includes/forms/views/tabs/form-fields.php:
|
415 |
-
msgid "Your form is missing the following (required) form fields:"
|
416 |
-
msgstr "In deinem Formular fehlen die folgenden (erforderlichen) Felder:"
|
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 "Benutze diesen Shortcode %s um dieses Formular innerhalb eines Posts, Seite oder Text Widgets zu nutzen."
|
423 |
|
424 |
-
#: includes/forms/views/tabs/form-messages.php:
|
425 |
msgid "Form Messages"
|
426 |
msgstr "Formular-Meldungen"
|
427 |
|
428 |
-
#: includes/forms/views/tabs/form-messages.php:
|
429 |
msgid "Successfully subscribed"
|
430 |
msgstr "Erfolgreich abonniert"
|
431 |
|
432 |
-
#: includes/forms/views/tabs/form-messages.php:
|
433 |
msgid ""
|
434 |
"The text that shows when an email address is successfully subscribed to the "
|
435 |
"selected list(s)."
|
436 |
msgstr "Der Text, der angezeigt wird, wenn eine E-Mail Adresse erfolgreich zur/zu den ausgewählten Liste(n) abonniert wurde."
|
437 |
|
438 |
-
#: includes/forms/views/tabs/form-messages.php:
|
439 |
msgid "Invalid email address"
|
440 |
msgstr "Ungültige E-Mail-Adresse"
|
441 |
|
442 |
-
#: includes/forms/views/tabs/form-messages.php:
|
443 |
msgid "The text that shows when an invalid email address is given."
|
444 |
msgstr "Der Text, der angezeigt wird, wenn eine ungültige E-Mail Adresse angegeben wurde."
|
445 |
|
446 |
-
#: includes/forms/views/tabs/form-messages.php:
|
447 |
msgid "Required field missing"
|
448 |
msgstr "Erforderliches Feld fehlt"
|
449 |
|
450 |
-
#: includes/forms/views/tabs/form-messages.php:
|
451 |
msgid ""
|
452 |
"The text that shows when a required field for the selected list(s) is "
|
453 |
"missing."
|
454 |
msgstr "Der Text, der angezeigt wird, wenn ein erforderliches Feld für die ausgewählte(n) Liste(n) fehlt."
|
455 |
|
456 |
-
#: includes/forms/views/tabs/form-messages.php:
|
457 |
msgid "Already subscribed"
|
458 |
msgstr "Bereits abonniert"
|
459 |
|
460 |
-
#: includes/forms/views/tabs/form-messages.php:
|
461 |
msgid ""
|
462 |
"The text that shows when the given email is already subscribed to the "
|
463 |
"selected list(s)."
|
464 |
msgstr "Der Text, der angezeigt wird, wenn die angegebene E-Mail Adresse bereits für die ausgewählte(n) Liste(n) abonniert ist."
|
465 |
|
466 |
-
#: includes/forms/views/tabs/form-messages.php:
|
467 |
msgid "General error"
|
468 |
msgstr "Allgemeiner Fehler"
|
469 |
|
470 |
-
#: includes/forms/views/tabs/form-messages.php:
|
471 |
msgid "The text that shows when a general error occured."
|
472 |
msgstr "Der Text, der angezeigt wird, wenn ein allgemeiner Fehler aufgetreten ist."
|
473 |
|
474 |
-
#: includes/forms/views/tabs/form-messages.php:
|
475 |
msgid "Unsubscribed"
|
476 |
msgstr "Abgemeldet"
|
477 |
|
478 |
-
#: includes/forms/views/tabs/form-messages.php:
|
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 "Wenn die \"Abmelden\" Funktion verwendet wird, ist dies der Text der angezeigt wird, wenn die angegebene E-Mail Adresse erfolgreich von der/den ausgewählten Liste(n) abgemeldet wurde."
|
483 |
|
484 |
-
#: includes/forms/views/tabs/form-messages.php:
|
485 |
msgid "Not subscribed"
|
486 |
msgstr "Nicht abonniert"
|
487 |
|
488 |
-
#: includes/forms/views/tabs/form-messages.php:
|
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 "Wenn die \"Abmelden\" Funktion verwendet wird, ist dies der Text der angezeigt wird, wenn die angegebene E-Mail Adresse die ausgewählte Liste nicht abonniert hat."
|
493 |
|
494 |
-
#: includes/forms/views/tabs/form-messages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
msgid "HTML tags like %s are allowed in the message fields."
|
496 |
msgstr "HTML Tags wie %s sind in den Nachrichten Feldern erlaubt."
|
497 |
|
@@ -503,379 +1043,52 @@ msgstr "Formulareinstellungen"
|
|
503 |
msgid "MailChimp specific settings"
|
504 |
msgstr "MailChimp-spezifische Einstellungen"
|
505 |
|
506 |
-
#: includes/forms/views/tabs/form-settings.php:
|
507 |
msgid "Lists this form subscribes to"
|
508 |
msgstr "Listen dieses Formulars abonnieren "
|
509 |
|
510 |
-
#: includes/forms/views/tabs/form-settings.php:
|
511 |
-
#: includes/integrations/views/integration-settings.php:93
|
512 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
513 |
-
msgstr "Keine Listen gefunden, <a href=\"%s\">hast du MailChimp bereits angebunden</a>?"
|
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 "Wähle die Liste(n), welche abonniert wird, wenn das Formular abgeschickt wird."
|
520 |
|
521 |
-
#: includes/forms/views/tabs/form-settings.php:
|
522 |
msgid "Use double opt-in?"
|
523 |
msgstr "Double Opt-In benutzen?"
|
524 |
|
525 |
-
#: includes/forms/views/tabs/form-settings.php:
|
526 |
-
|
527 |
-
|
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 "Ja"
|
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 "Nein"
|
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 "Wähle \"ja\" wenn du möchtest, dass die E-Mail Adresse bestätigt werden muss. (empfohlen)"
|
565 |
-
|
566 |
-
#: includes/forms/views/tabs/form-settings.php:50
|
567 |
-
msgid "Send final welcome email?"
|
568 |
-
msgstr "Abschliessendes Willkommens-Email senden?"
|
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 "Wähle \"ja\" wenn du die Listen Willkommens E-Mail versenden möchtest, wenn ein Abonnement erfolgreich war (nur wenn Bouble Opt-in deaktiviert ist)."
|
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 "Aktualisiere vorhandene Abonnenten?"
|
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 "Wähle \"Ja\" wenn du die bisherigen Abonnenten mit den gesendeten Daten aktualisieren willst."
|
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 "Interessengruppen ersetzen?"
|
593 |
|
594 |
-
#: includes/forms/views/tabs/form-settings.php:
|
595 |
-
#: includes/integrations/views/integration-settings.php:206
|
596 |
msgid ""
|
597 |
-
"
|
598 |
-
"
|
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 "Was hat das für eine Auswirkung?"
|
605 |
|
606 |
-
#: includes/forms/views/tabs/form-settings.php:
|
607 |
msgid "Form behaviour"
|
608 |
msgstr "Verhalten des Formulars"
|
609 |
|
610 |
-
#: includes/forms/views/tabs/form-settings.php:
|
611 |
msgid "Hide form after a successful sign-up?"
|
612 |
msgstr "Verberge das Formular nach der Registrierung?"
|
613 |
|
614 |
-
#: includes/forms/views/tabs/form-settings.php:
|
615 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
616 |
msgstr "Wähle \"ja\" wenn du die Formular Felder verstecken möchtest, nach einer erfolgreichen Registrierung."
|
617 |
|
618 |
-
#: includes/forms/views/tabs/form-settings.php:
|
619 |
msgid "Redirect to URL after successful sign-ups"
|
620 |
msgstr "Weiterleitung zu URL nach einer erfolgreichen Registrierung."
|
621 |
|
622 |
-
#: includes/forms/views/tabs/form-settings.php:
|
623 |
msgid "Example: %s"
|
624 |
msgstr "Beispiel: %s"
|
625 |
|
626 |
-
#: includes/forms/views/tabs/form-settings.php:
|
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 "Leer lassen oder <code>0</code> eingeben für keine Weiterleitung. Ansonsten verwende (absolute) URLs, inkl. <code>http://</code>."
|
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 "Integration"
|
639 |
-
|
640 |
-
#: includes/integrations/views/integration-settings.php:20
|
641 |
-
msgid "%s integration"
|
642 |
-
msgstr "%s Integration"
|
643 |
-
|
644 |
-
#: includes/integrations/views/integration-settings.php:51
|
645 |
-
msgid "Enabled?"
|
646 |
-
msgstr "Aktiviert?"
|
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 "%s Integration aktivieren? Dies fügt eine Registrierungs-Checkbox zum Formular hinzu. "
|
652 |
-
|
653 |
-
#: includes/integrations/views/integration-settings.php:64
|
654 |
-
msgid "Implicit?"
|
655 |
-
msgstr "Eingeschlossen?"
|
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 "Wähle \"nein\" wenn du deine Besucher fragen möchtest, bevor sie registriert werden (empfohlen)?"
|
662 |
-
|
663 |
-
#: includes/integrations/views/integration-settings.php:78
|
664 |
-
msgid "MailChimp Lists"
|
665 |
-
msgstr "MailChimp Listen"
|
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 "Wähle die Listen zu welchen, die Abonnenten die die Checkbox ausgewählt haben, eingetragen werden sollen."
|
672 |
-
|
673 |
-
#: includes/integrations/views/integration-settings.php:102
|
674 |
-
msgid "Checkbox label text"
|
675 |
-
msgstr "Checkbox Beschriftung Text"
|
676 |
-
|
677 |
-
#: includes/integrations/views/integration-settings.php:105
|
678 |
-
msgid "HTML tags like %s are allowed in the label text."
|
679 |
-
msgstr "HTML Tags wie %s sind in den Beschriftungen erlaubt."
|
680 |
-
|
681 |
-
#: includes/integrations/views/integration-settings.php:115
|
682 |
-
msgid "Pre-check the checkbox?"
|
683 |
-
msgstr "Die Checkbox vorauswählen?"
|
684 |
-
|
685 |
-
#: includes/integrations/views/integration-settings.php:119
|
686 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
687 |
-
msgstr "Wähle \"ja\" wenn die Checkbox bereits ausgewählt sein soll."
|
688 |
-
|
689 |
-
#: includes/integrations/views/integration-settings.php:127
|
690 |
-
msgid "Load some default CSS?"
|
691 |
-
msgstr "Allgemeines CSS laden?"
|
692 |
-
|
693 |
-
#: includes/integrations/views/integration-settings.php:131
|
694 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
695 |
-
msgstr "Wähle \"ja\", falls die Checkbox an einem ungewünschten Platz angezeigt wird."
|
696 |
-
|
697 |
-
#: includes/integrations/views/integration-settings.php:138
|
698 |
-
msgid "Double opt-in?"
|
699 |
-
msgstr "Double opt-in?"
|
700 |
-
|
701 |
-
#: includes/integrations/views/integration-settings.php:159
|
702 |
-
msgid "Send Welcome Email?"
|
703 |
-
msgstr "Willkommens E-Mail senden?"
|
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 "Die ausgewählten MailChimp-Listen benötigen Nicht-Default-Felder, womit diese Integration eventuell nicht funktionieren wird."
|
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 "Bitte stelle sicher, <a href=\"%s\">dass du das Plugin so konfiguriert hast, dass alle obligatorischen Felder gesendet werden</a> oder <a href=\"%s\">dass du bei MailChimp angemeldet bist</a> um sicherzustellen, dass für die ausgewählten Listen nur das Email- und das Namen-Feld als obligatorische Felder markiert sind. "
|
718 |
-
|
719 |
-
#: includes/integrations/views/integrations.php:30
|
720 |
-
msgid "Enabled"
|
721 |
-
msgstr "Aktiviert"
|
722 |
-
|
723 |
-
#: includes/integrations/views/integrations.php:31
|
724 |
-
msgid "Name"
|
725 |
-
msgstr "Name"
|
726 |
-
|
727 |
-
#: includes/integrations/views/integrations.php:32
|
728 |
-
msgid "Description"
|
729 |
-
msgstr "Beschreibung"
|
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 "Da diese Integration manuelle Massnahmen erfordert, ist sie standardmässig aktiviert. "
|
736 |
-
|
737 |
-
#: includes/integrations/views/integrations.php:57
|
738 |
-
msgid "Configure this integration"
|
739 |
-
msgstr "Integration konfigurieren."
|
740 |
-
|
741 |
-
#: includes/views/general-settings.php:18
|
742 |
-
msgid "General Settings"
|
743 |
-
msgstr "Allgemeine Einstellungen"
|
744 |
-
|
745 |
-
#: includes/views/general-settings.php:35
|
746 |
-
msgid "Status"
|
747 |
-
msgstr "Status"
|
748 |
-
|
749 |
-
#: includes/views/general-settings.php:39
|
750 |
-
msgid "CONNECTED"
|
751 |
-
msgstr "VERBUNDEN"
|
752 |
-
|
753 |
-
#: includes/views/general-settings.php:41
|
754 |
-
msgid "NOT CONNECTED"
|
755 |
-
msgstr "NICHT VERBUNDEN"
|
756 |
-
|
757 |
-
#: includes/views/general-settings.php:48
|
758 |
-
msgid "API Key"
|
759 |
-
msgstr "API Schlüssel"
|
760 |
-
|
761 |
-
#: includes/views/general-settings.php:50
|
762 |
-
msgid "Your MailChimp API key"
|
763 |
-
msgstr "Dein MailChimp API Schlüssel"
|
764 |
-
|
765 |
-
#: includes/views/general-settings.php:52
|
766 |
-
msgid "The API key for connecting with your MailChimp account."
|
767 |
-
msgstr "Der API-Schlüssel für die Verbindung mit deinem MailChimp-Konto. "
|
768 |
-
|
769 |
-
#: includes/views/general-settings.php:53
|
770 |
-
msgid "Get your API key here."
|
771 |
-
msgstr "Den API Schlüssel bekommst du hier."
|
772 |
-
|
773 |
-
#: includes/views/general-settings.php:65
|
774 |
-
msgid "Usage Tracking"
|
775 |
-
msgstr "Benutzungs-Tracking"
|
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 "Erlaube uns die Benutzung dieses Plugins anonym zu beobachten, um es besser an deine Anforderungen anzupassen. "
|
782 |
-
|
783 |
-
#: includes/views/general-settings.php:73
|
784 |
-
msgid "This is what we track."
|
785 |
-
msgstr "Wir beobachten folgendes. "
|
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 "MailChimp für WordPress braucht mehr Übersetzungen. Ist das Plugin in deiner Sprache nicht verfügbar oder hast du einen Fehler in der jetzigen Übersetzung entdeckt? Helfen ist ganz einfach! Gehe zum <a href=\"%s\">Übersetzungsprojekt und klicke auf \"Übersetzen\"</a>."
|
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 "Dieses Plugin ist weder von MailChimp entwickelt noch sonst irgendwie daran angegliedert."
|
799 |
-
|
800 |
-
#: includes/views/parts/lists-overview.php:1
|
801 |
-
msgid "Your MailChimp Account"
|
802 |
-
msgstr "Dein MailChimp-Konto "
|
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 "Untenstehende Tabelle zeigt deine MailChimp-Listen und deren Details. Wenn du an den MailChimp-Listen Änderungen vorgenommen hast, nutze den folgenden Button um die Daten neu zu laden. "
|
810 |
-
|
811 |
-
#: includes/views/parts/lists-overview.php:14
|
812 |
-
msgid "No lists were found in your MailChimp account"
|
813 |
-
msgstr "In Deinem MailChimp Account wurden keine Mailinglisten gefunden"
|
814 |
-
|
815 |
-
#: includes/views/parts/lists-overview.php:16
|
816 |
-
msgid "A total of %d lists were found in your MailChimp account."
|
817 |
-
msgstr "Total %d Listen wurden in deinem MailChimp-Konto gefunden."
|
818 |
-
|
819 |
-
#: includes/views/parts/lists-overview.php:21
|
820 |
-
msgid "List Name"
|
821 |
-
msgstr "Listenname"
|
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 "Abonnenten"
|
830 |
-
|
831 |
-
#: includes/views/parts/lists-overview.php:45
|
832 |
-
msgid "Edit this list in MailChimp"
|
833 |
-
msgstr "Diese Liste in MailChimp bearbeiten"
|
834 |
-
|
835 |
-
#: includes/views/parts/lists-overview.php:59
|
836 |
-
msgid "%s (%s) with field type %s."
|
837 |
-
msgstr "%s (%s) mit Feld-Typ %s."
|
838 |
-
|
839 |
-
#: includes/views/parts/lists-overview.php:83
|
840 |
-
msgid "%s (ID: %s) with type %s."
|
841 |
-
msgstr "%s (ID: %s) mit Typ %s."
|
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 "Integration mit Contact Form 7: konfiguriere folgende Einstellungen und füge %s zu deinem CF7 Formular-Mark-Up hinzu."
|
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 "Um eine benutzerdefinierte Integration verwenden zu können, füge folgenden HTML-Code in das Formular ein, welches du einfügen möchtest. "
|
854 |
-
|
855 |
-
#: integrations/woocommerce/class-woocommerce.php:102
|
856 |
-
msgid "Order #%d"
|
857 |
-
msgstr "Sortierung #%d"
|
858 |
-
|
859 |
-
#. Plugin Name of the plugin/theme
|
860 |
-
msgid "MailChimp for WordPress"
|
861 |
-
msgstr "MailChimp für 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 für WordPress von ibericode. Fügt verschiedene hocheffiziente Anmeldungs-Methoden in deine Seite ein."
|
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/"
|
1 |
+
# Copyright (C) 2017 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
# Translators:
|
4 |
# Christoph Messerli <christoph.messerli@datajam.ch>, 2016
|
5 |
# Freakspot, 2014
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: MailChimp for WordPress\n"
|
11 |
+
"PO-Revision-Date: 2017-09-22 00:32+0000\n"
|
12 |
+
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
|
|
|
|
13 |
"Language-Team: German (Switzerland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_CH/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"Language: de_CH\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Poedit-Basepath: ..\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
+
#: includes/admin/class-admin-texts.php62,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#: includes/forms/views/edit-form.php:6
|
27 |
msgid "Settings"
|
28 |
msgstr "Einstellungen"
|
31 |
msgid "Documentation"
|
32 |
msgstr "Dokumentation"
|
33 |
|
34 |
+
#: includes/admin/class-admin.php:204
|
35 |
msgid ""
|
36 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
37 |
msgstr "Die zwischengespeicherte Konfiguration für Deine MailChimp-Listen wurde erfolgreich erneuert."
|
38 |
|
39 |
+
#: includes/admin/class-admin.php:304
|
40 |
msgid ""
|
41 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
42 |
" to use it."
|
43 |
msgstr "Dieses Feature gibt es nur in der Pro-Version. Du musst auf die Premium-Version upgraden, um diese Funktion zu nutzen. "
|
44 |
|
45 |
+
#: includes/admin/class-admin.php305,
|
46 |
+
#: includes/views/parts/lists-overview.php10,
|
47 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
48 |
+
msgid "Renew MailChimp lists"
|
49 |
+
msgstr "MailChimp Listen neu laden"
|
50 |
+
|
51 |
+
#: includes/admin/class-admin.php:306
|
52 |
+
msgid "Fetching MailChimp lists"
|
53 |
+
msgstr ""
|
54 |
+
|
55 |
+
#: includes/admin/class-admin.php:307
|
56 |
+
msgid "Done! MailChimp lists renewed."
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: includes/admin/class-admin.php:308
|
60 |
+
msgid "This can take a while if you have many MailChimp lists."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
64 |
msgid "MailChimp API Settings"
|
65 |
msgstr "MailChimp API Einstellungen"
|
66 |
|
67 |
+
#: includes/admin/class-admin.php:337
|
|
|
68 |
msgid "MailChimp"
|
69 |
msgstr "MailChimp"
|
70 |
|
71 |
+
#: includes/admin/class-admin.php343, includes/views/other-settings.php60,
|
72 |
+
#: includes/views/other-settings.php:70
|
73 |
+
msgid "Other Settings"
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: includes/admin/class-admin.php:344
|
77 |
+
msgid "Other"
|
78 |
+
msgstr ""
|
79 |
+
|
80 |
+
#: includes/admin/class-admin.php:458
|
81 |
+
msgid "Log successfully emptied."
|
82 |
+
msgstr ""
|
83 |
|
84 |
+
#: includes/admin/class-admin.php:488
|
85 |
msgid ""
|
86 |
+
"To get started with MailChimp for WordPress, please <a href=\"%s\">enter "
|
87 |
+
"your MailChimp API key on the settings page of the plugin</a>."
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/admin/class-ads.php:39
|
91 |
+
msgid ""
|
92 |
+
"Want to customize the style of your form? <a href=\"%s\">Try our Styles "
|
93 |
+
"Builder</a> & edit the look of your forms with just a few clicks."
|
94 |
+
msgstr ""
|
95 |
+
|
96 |
+
#: includes/admin/class-ads.php:54
|
97 |
+
msgid ""
|
98 |
+
"Be notified whenever someone subscribes? <a href=\"%s\">MailChimp for "
|
99 |
+
"WordPress Premium</a> allows you to set up email notifications for your "
|
100 |
+
"forms."
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: includes/admin/class-ads.php:56
|
104 |
+
msgid ""
|
105 |
+
"Increased conversions? <a href=\"%s\">MailChimp for WordPress Premium</a> "
|
106 |
+
"submits forms without reloading the entire page, resulting in a much better "
|
107 |
+
"experience for your visitors."
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/admin/class-ads.php:70
|
111 |
+
msgid "Upgrade to Premium"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/admin/class-ads.php:83
|
115 |
+
msgid ""
|
116 |
+
"Do you want translated forms for all of your languages? <a href=\"%s\">Try "
|
117 |
+
"MailChimp for WordPress Premium</a>, which does just that plus more."
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: includes/admin/class-ads.php:88
|
121 |
+
msgid ""
|
122 |
+
"Do you want to create more than one form? Our Premium add-on does just that!"
|
123 |
+
" <a href=\"%s\">Have a look at all Premium benefits</a>."
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/admin/class-ads.php:93
|
127 |
+
msgid ""
|
128 |
+
"Are you enjoying this plugin? The Premium add-on unlocks several powerful "
|
129 |
+
"features. <a href=\"%s\">Find out about all benefits now</a>."
|
130 |
+
msgstr ""
|
131 |
|
132 |
+
#: includes/admin/class-ads.php:112
|
133 |
msgid "More subscribers, better newsletters."
|
134 |
msgstr "Mehr Abonnenten, bessere Newsletters. "
|
135 |
|
136 |
+
#: includes/admin/class-ads.php:113
|
137 |
msgid ""
|
138 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
139 |
"our monthly tips."
|
140 |
msgstr "Erfahre wie du deine Empfängerliste erweitern und bessere Emails schreiben kannst. Abonniere unsere monatlichen Tipps. "
|
141 |
|
142 |
+
#: includes/admin/class-ads.php:116
|
143 |
msgid "Email Address"
|
144 |
msgstr "Email-Adresse"
|
145 |
|
146 |
+
#: includes/admin/class-ads.php:120
|
147 |
msgid "First Name"
|
148 |
msgstr "Vorname"
|
149 |
|
150 |
+
#: includes/admin/class-ads.php127, includes/forms/class-admin.php:94
|
151 |
msgid "Subscribe"
|
152 |
msgstr "abonnieren"
|
153 |
|
154 |
+
#: includes/admin/class-ads.php:150
|
155 |
+
msgid ""
|
156 |
+
"Do you want to track all WooCommerce orders in MailChimp so you can send "
|
157 |
+
"emails based on the purchase activity of your subscribers?"
|
158 |
+
msgstr ""
|
159 |
|
160 |
+
#: includes/admin/class-ads.php:153
|
161 |
+
msgid ""
|
162 |
+
"<a href=\"%s\">Upgrade to MailChimp for WordPress Premium</a> or <a "
|
163 |
+
"href=\"%s\">read more about MailChimp's E-Commerce features</a>."
|
164 |
+
msgstr ""
|
165 |
+
|
166 |
+
#: includes/admin/class-review-notice.php:68
|
167 |
+
msgid ""
|
168 |
+
"You've been using MailChimp for WordPress for some time now; we hope you "
|
169 |
+
"love it!"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: includes/admin/class-review-notice.php:69
|
173 |
+
msgid ""
|
174 |
+
"If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
|
175 |
+
"It would be of great help to us."
|
176 |
+
msgstr ""
|
177 |
|
178 |
+
#: includes/admin/class-review-notice.php:71
|
179 |
+
msgid "Dismiss this notice."
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: includes/api/class-api.php:84
|
183 |
msgid "Read more about common connectivity issues."
|
184 |
msgstr "Erfahre mehr über Common Connectivity Themen. "
|
185 |
|
186 |
+
#: includes/forms/class-admin.php:62
|
187 |
+
msgid "Add to form"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: includes/forms/class-admin.php:63
|
191 |
+
msgid "City"
|
192 |
+
msgstr ""
|
193 |
+
|
194 |
+
#: includes/forms/class-admin.php:64
|
195 |
+
msgid "Checkboxes"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: includes/forms/class-admin.php:65
|
199 |
+
msgid "Choices"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: includes/forms/class-admin.php:66
|
203 |
+
msgid "Choice type"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: includes/forms/class-admin.php:67
|
207 |
+
msgid "Choose a field to add to the form"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: includes/forms/class-admin.php:68
|
211 |
+
msgid "Close"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: includes/forms/class-admin.php:69
|
215 |
+
msgid "Country"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: includes/forms/class-admin.php:70
|
219 |
+
msgid "Dropdown"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: includes/forms/class-admin.php:71
|
223 |
+
msgid "Field type"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: includes/forms/class-admin.php:72
|
227 |
+
msgid "Field label"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: includes/forms/class-admin.php:73
|
231 |
+
msgid "Form action"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: includes/forms/class-admin.php:74
|
235 |
+
msgid ""
|
236 |
+
"This field will allow your visitors to choose whether they would like to "
|
237 |
+
"subscribe or unsubscribe"
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: includes/forms/class-admin.php:75
|
241 |
+
msgid "Form fields"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: includes/forms/class-admin.php:76
|
245 |
+
msgid "This field is marked as required in MailChimp."
|
246 |
+
msgstr ""
|
247 |
+
|
248 |
+
#: includes/forms/class-admin.php:77
|
249 |
+
msgid "Initial value"
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: includes/forms/class-admin.php:78
|
253 |
+
msgid "Interest categories"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: includes/forms/class-admin.php:79
|
257 |
+
msgid "Is this field required?"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: includes/forms/class-admin.php:80
|
261 |
+
msgid "List choice"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: includes/forms/class-admin.php:81
|
265 |
+
msgid "This field will allow your visitors to choose a list to subscribe to."
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: includes/forms/class-admin.php:82
|
269 |
+
msgid "List fields"
|
270 |
+
msgstr ""
|
271 |
+
|
272 |
+
#: includes/forms/class-admin.php:83
|
273 |
+
msgid "Min"
|
274 |
+
msgstr ""
|
275 |
+
|
276 |
+
#: includes/forms/class-admin.php:84
|
277 |
+
msgid "Max"
|
278 |
+
msgstr ""
|
279 |
+
|
280 |
+
#: includes/forms/class-admin.php:85
|
281 |
+
msgid ""
|
282 |
+
"No available fields. Did you select a MailChimp list in the form settings?"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: includes/forms/class-admin.php:86
|
286 |
+
msgid "Optional"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: includes/forms/class-admin.php:87
|
290 |
+
msgid "Placeholder"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: includes/forms/class-admin.php:88
|
294 |
+
msgid "Text to show when field has no value."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: includes/forms/class-admin.php:89
|
298 |
+
msgid "Preselect"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: includes/forms/class-admin.php:90
|
302 |
+
msgid "Remove"
|
303 |
+
msgstr ""
|
304 |
+
|
305 |
+
#: includes/forms/class-admin.php:91
|
306 |
+
msgid "Radio buttons"
|
307 |
+
msgstr ""
|
308 |
+
|
309 |
+
#: includes/forms/class-admin.php:92
|
310 |
+
msgid "Street Address"
|
311 |
+
msgstr ""
|
312 |
+
|
313 |
+
#: includes/forms/class-admin.php:93
|
314 |
+
msgid "State"
|
315 |
+
msgstr ""
|
316 |
+
|
317 |
+
#: includes/forms/class-admin.php:95
|
318 |
+
msgid "Submit button"
|
319 |
+
msgstr ""
|
320 |
+
|
321 |
+
#: includes/forms/class-admin.php:96
|
322 |
+
msgid "Wrap in paragraph tags?"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: includes/forms/class-admin.php:97
|
326 |
+
msgid "Value"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: includes/forms/class-admin.php:98
|
330 |
+
msgid "Text to prefill this field with."
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: includes/forms/class-admin.php:99
|
334 |
+
msgid "ZIP"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
338 |
+
#: includes/forms/views/edit-form.php:24
|
339 |
msgid "Forms"
|
340 |
msgstr "Formulare"
|
341 |
|
342 |
+
#: includes/forms/class-admin.php152, includes/forms/class-admin.php:276
|
343 |
msgid "<strong>Success!</strong> Form successfully saved."
|
344 |
msgstr "Formular erfolgreich gespeichert. "
|
345 |
|
346 |
+
#: includes/forms/class-admin.php:276
|
347 |
msgid "Preview form"
|
348 |
msgstr "Formular-Vorschau"
|
349 |
|
350 |
+
#: includes/forms/class-admin.php449, includes/forms/class-widget.php:30
|
351 |
+
msgid "MailChimp Sign-Up Form"
|
352 |
+
msgstr "MailChimp Registrierungsformular"
|
353 |
|
354 |
+
#: includes/forms/class-admin.php:453
|
355 |
+
msgid "Select the form to show"
|
356 |
+
msgstr ""
|
357 |
|
358 |
+
#: includes/forms/class-form-previewer.php:146
|
359 |
msgid "Form preview"
|
360 |
msgstr "Formular-Vorschau"
|
361 |
|
362 |
+
#: includes/forms/class-form-tags.php:60
|
363 |
msgid "Replaced with the form response (error or success messages)."
|
364 |
msgstr "Ersetzt mit der Formular-Antwort (Fehler- oder Erfolgsmeldungen)."
|
365 |
|
366 |
+
#: includes/forms/class-form-tags.php:65
|
367 |
msgid "Data from the URL or a submitted form."
|
368 |
msgstr "Daten von einer URL oder eines abgesendeten Formulars."
|
369 |
|
370 |
+
#: includes/forms/class-form-tags.php:71
|
371 |
+
msgid "Data from a cookie."
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: includes/forms/class-form-tags.php77,
|
375 |
#: includes/integrations/class-integration-tags.php:45
|
376 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
377 |
msgstr "Ersetzten mit der Nummer von Abonnenten der gewählten Listen"
|
378 |
|
379 |
+
#: includes/forms/class-form-tags.php:82
|
380 |
msgid "The email address of the current visitor (if known)."
|
381 |
msgstr "Die Email-Adresse des aktuellen Besuchers (falls bekannt). "
|
382 |
|
383 |
+
#: includes/forms/class-form-tags.php:87
|
384 |
msgid "The URL of the page."
|
385 |
msgstr "Die URL der Seite."
|
386 |
|
387 |
+
#: includes/forms/class-form-tags.php:92
|
388 |
msgid "The path of the page."
|
389 |
msgstr "Der Pfad der Seite."
|
390 |
|
391 |
+
#: includes/forms/class-form-tags.php:97
|
392 |
msgid "The current date. Example: %s."
|
393 |
msgstr "Das aktuelle Datum. Beispiel: %s."
|
394 |
|
395 |
+
#: includes/forms/class-form-tags.php:102
|
396 |
msgid "The current time. Example: %s."
|
397 |
msgstr "Die aktuelle Zeit. Beispiel: %s."
|
398 |
|
399 |
+
#: includes/forms/class-form-tags.php:107
|
400 |
msgid "The site's language. Example: %s."
|
401 |
msgstr "Die Seitensprache. Beispiel: %s. "
|
402 |
|
403 |
+
#: includes/forms/class-form-tags.php:112
|
404 |
msgid "The visitor's IP address. Example: %s."
|
405 |
msgstr "Die IP-Adresse des Besuchers. Beispiel: %s."
|
406 |
|
407 |
+
#: includes/forms/class-form-tags.php:117
|
408 |
msgid "The property of the currently logged-in user."
|
409 |
msgstr "Eigenschaften des aktuell eingeloggten Benutzers."
|
410 |
|
411 |
+
#: includes/forms/class-form-tags.php:123
|
412 |
+
msgid "Property of the current page or post."
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: includes/forms/class-form.php:133
|
416 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
417 |
msgstr "Kein Formular mit der ID %d vorhanden. Vielleicht wurde es gelöscht. "
|
418 |
|
420 |
msgid "Newsletter"
|
421 |
msgstr "Newsletter"
|
422 |
|
|
|
|
|
|
|
|
|
423 |
#: includes/forms/class-widget.php:32
|
424 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
425 |
msgstr "Zeigt dein MailChimp für WordPress Registrierungsformular an"
|
434 |
" form settings</a>."
|
435 |
msgstr "Du kannst dein Registrierungsformular in den <a href=\"%s\">MailChimp für WordPress Formulareinstellungen</a> editieren."
|
436 |
|
437 |
+
#: includes/integrations/class-admin.php79,
|
438 |
+
#: includes/integrations/class-admin.php80,
|
439 |
+
#: includes/integrations/views/integration-settings.php10,
|
440 |
+
#: includes/integrations/views/integrations.php57,
|
441 |
+
#: includes/integrations/views/integrations.php:65
|
442 |
+
msgid "Integrations"
|
443 |
+
msgstr "Integration"
|
444 |
+
|
445 |
+
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
446 |
+
#: includes/forms/views/edit-form.php22,
|
447 |
+
#: includes/integrations/views/integration-settings.php8,
|
448 |
+
#: includes/integrations/views/integrations.php:55
|
449 |
+
msgid "You are here: "
|
450 |
+
msgstr "Du bist hier:"
|
451 |
+
|
452 |
+
#: includes/views/general-settings.php:18
|
453 |
+
msgid "General Settings"
|
454 |
+
msgstr "Allgemeine Einstellungen"
|
455 |
+
|
456 |
+
#: includes/views/general-settings.php:38
|
457 |
+
msgid "Status"
|
458 |
+
msgstr "Status"
|
459 |
+
|
460 |
+
#: includes/views/general-settings.php:42
|
461 |
+
msgid "CONNECTED"
|
462 |
+
msgstr "VERBUNDEN"
|
463 |
+
|
464 |
+
#: includes/views/general-settings.php:44
|
465 |
+
msgid "NOT CONNECTED"
|
466 |
+
msgstr "NICHT VERBUNDEN"
|
467 |
+
|
468 |
+
#: includes/views/general-settings.php:51
|
469 |
+
msgid "API Key"
|
470 |
+
msgstr "API Schlüssel"
|
471 |
+
|
472 |
+
#: includes/views/general-settings.php:53
|
473 |
+
msgid "Your MailChimp API key"
|
474 |
+
msgstr "Dein MailChimp API Schlüssel"
|
475 |
+
|
476 |
+
#: includes/views/general-settings.php:55
|
477 |
+
msgid "The API key for connecting with your MailChimp account."
|
478 |
+
msgstr "Der API-Schlüssel für die Verbindung mit deinem MailChimp-Konto. "
|
479 |
+
|
480 |
+
#: includes/views/general-settings.php:56
|
481 |
+
msgid "Get your API key here."
|
482 |
+
msgstr "Den API Schlüssel bekommst du hier."
|
483 |
+
|
484 |
+
#: includes/views/other-settings.php:14
|
485 |
+
msgid "Miscellaneous settings"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/views/other-settings.php:17
|
489 |
+
msgid "Usage Tracking"
|
490 |
+
msgstr "Benutzungs-Tracking"
|
491 |
+
|
492 |
+
#: includes/views/other-settings.php:29
|
493 |
+
msgid ""
|
494 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
495 |
+
"better fit your needs."
|
496 |
+
msgstr "Erlaube uns die Benutzung dieses Plugins anonym zu beobachten, um es besser an deine Anforderungen anzupassen. "
|
497 |
+
|
498 |
+
#: includes/views/other-settings.php:31
|
499 |
+
msgid "This is what we track."
|
500 |
+
msgstr "Wir beobachten folgendes. "
|
501 |
+
|
502 |
+
#: includes/views/other-settings.php:37
|
503 |
+
msgid "Logging"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/views/other-settings.php:44
|
507 |
+
msgid ""
|
508 |
+
"Determines what events should be written to <a href=\"%s\">the debug log</a>"
|
509 |
+
" (see below)."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: includes/views/other-settings.php:99
|
513 |
+
msgid "Debug Log"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: includes/views/other-settings.php:99
|
517 |
+
msgid "Filter.."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: includes/views/other-settings.php:104
|
521 |
+
msgid "Log file is not writable."
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: includes/views/other-settings.php:105
|
525 |
+
msgid "Please ensure %s has the proper <a href=\"%s\">file permissions</a>."
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/views/other-settings.php:123
|
529 |
+
msgid "Nothing here. Which means there are no errors!"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: includes/views/other-settings.php:133
|
533 |
+
msgid "Empty Log"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: includes/views/other-settings.php:141
|
537 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
541 |
+
msgid "Default sign-up form"
|
542 |
+
msgstr "Standard-Anmeldeformular"
|
543 |
+
|
544 |
+
#: includes/forms/views/add-form.php10, includes/forms/views/add-form.php:60
|
545 |
msgid "Add new form"
|
546 |
msgstr "Neues Formular hinzufügen"
|
547 |
|
569 |
msgid "Messages"
|
570 |
msgstr "Nachrichten"
|
571 |
|
572 |
+
#: includes/forms/views/edit-form.php:7
|
573 |
+
msgid "Appearance"
|
574 |
+
msgstr "Erscheinungsbild"
|
575 |
+
|
576 |
+
#: includes/forms/views/edit-form.php:25
|
577 |
+
msgid "Form"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/forms/views/edit-form.php:34
|
581 |
+
msgid "Edit Form"
|
582 |
+
msgstr "Formular editieren"
|
583 |
+
|
584 |
+
#: includes/forms/views/edit-form.php:58
|
585 |
+
msgid "Enter form title here"
|
586 |
+
msgstr "Formulartitel hier eingeben"
|
587 |
+
|
588 |
+
#: includes/forms/views/edit-form.php:59
|
589 |
+
msgid "Enter the title of your sign-up form"
|
590 |
+
msgstr "Gib den Titel für dein Anmeldeformular ein"
|
591 |
+
|
592 |
+
#: includes/forms/views/edit-form.php:65
|
593 |
+
msgid "Shortcode"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/forms/views/edit-form.php:67
|
597 |
+
msgid "Get shortcode"
|
598 |
+
msgstr "Shortcode anfordern"
|
599 |
+
|
600 |
+
#: includes/forms/views/edit-form.php:72
|
601 |
+
msgid "Preview this form"
|
602 |
+
msgstr "Vorschau des Formulars"
|
603 |
+
|
604 |
+
#: includes/integrations/views/integration-settings.php:20
|
605 |
+
msgid "%s integration"
|
606 |
+
msgstr "%s Integration"
|
607 |
+
|
608 |
+
#: includes/integrations/views/integration-settings.php:27
|
609 |
+
msgid ""
|
610 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
611 |
+
"this integration from working."
|
612 |
+
msgstr "Die ausgewählten MailChimp-Listen benötigen Nicht-Default-Felder, womit diese Integration eventuell nicht funktionieren wird."
|
613 |
+
|
614 |
+
#: includes/integrations/views/integration-settings.php:28
|
615 |
+
msgid ""
|
616 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
617 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
618 |
+
"sure only the email & name fields are marked as required fields for the "
|
619 |
+
"selected list(s)."
|
620 |
+
msgstr "Bitte stelle sicher, <a href=\"%s\">dass du das Plugin so konfiguriert hast, dass alle obligatorischen Felder gesendet werden</a> oder <a href=\"%s\">dass du bei MailChimp angemeldet bist</a> um sicherzustellen, dass für die ausgewählten Listen nur das Email- und das Namen-Feld als obligatorische Felder markiert sind. "
|
621 |
+
|
622 |
+
#: includes/integrations/views/integration-settings.php:62
|
623 |
+
msgid "Enabled?"
|
624 |
+
msgstr "Aktiviert?"
|
625 |
+
|
626 |
+
#: includes/integrations/views/integration-settings.php:66
|
627 |
+
msgid ""
|
628 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
629 |
+
msgstr "%s Integration aktivieren? Dies fügt eine Registrierungs-Checkbox zum Formular hinzu. "
|
630 |
+
|
631 |
+
#: includes/integrations/views/integration-settings.php:76
|
632 |
+
msgid "Implicit?"
|
633 |
+
msgstr "Eingeschlossen?"
|
634 |
+
|
635 |
+
#: includes/integrations/views/integration-settings.php:80
|
636 |
+
msgid ""
|
637 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
638 |
+
"(recommended)."
|
639 |
+
msgstr "Wähle \"nein\" wenn du deine Besucher fragen möchtest, bevor sie registriert werden (empfohlen)?"
|
640 |
+
|
641 |
+
#: includes/integrations/views/integration-settings.php:90
|
642 |
+
msgid "MailChimp Lists"
|
643 |
+
msgstr "MailChimp Listen"
|
644 |
+
|
645 |
+
#: includes/integrations/views/integration-settings.php:103
|
646 |
+
msgid ""
|
647 |
+
"Select the list(s) to which people who check the checkbox should be "
|
648 |
+
"subscribed."
|
649 |
+
msgstr "Wähle die Listen zu welchen, die Abonnenten die die Checkbox ausgewählt haben, eingetragen werden sollen."
|
650 |
+
|
651 |
+
#: includes/integrations/views/integration-settings.php107,
|
652 |
+
#: includes/forms/views/tabs/form-settings.php:18
|
653 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
654 |
+
msgstr "Keine Listen gefunden, <a href=\"%s\">hast du MailChimp bereits angebunden</a>?"
|
655 |
+
|
656 |
+
#: includes/integrations/views/integration-settings.php:116
|
657 |
+
msgid "Checkbox label text"
|
658 |
+
msgstr "Checkbox Beschriftung Text"
|
659 |
+
|
660 |
+
#: includes/integrations/views/integration-settings.php:119
|
661 |
+
msgid "HTML tags like %s are allowed in the label text."
|
662 |
+
msgstr "HTML Tags wie %s sind in den Beschriftungen erlaubt."
|
663 |
+
|
664 |
+
#: includes/integrations/views/integration-settings.php:129
|
665 |
+
msgid "Pre-check the checkbox?"
|
666 |
+
msgstr "Die Checkbox vorauswählen?"
|
667 |
+
|
668 |
+
#: includes/integrations/views/integration-settings.php:133
|
669 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
670 |
+
msgstr "Wähle \"ja\" wenn die Checkbox bereits ausgewählt sein soll."
|
671 |
+
|
672 |
+
#: includes/integrations/views/integration-settings.php:141
|
673 |
+
msgid "Load some default CSS?"
|
674 |
+
msgstr "Allgemeines CSS laden?"
|
675 |
+
|
676 |
+
#: includes/integrations/views/integration-settings.php:145
|
677 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
678 |
+
msgstr "Wähle \"ja\", falls die Checkbox an einem ungewünschten Platz angezeigt wird."
|
679 |
+
|
680 |
+
#: includes/integrations/views/integration-settings.php:152
|
681 |
+
msgid "Double opt-in?"
|
682 |
+
msgstr "Double opt-in?"
|
683 |
+
|
684 |
+
#: includes/integrations/views/integration-settings.php:163
|
685 |
+
msgid ""
|
686 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
687 |
+
"being subscribed (recommended)"
|
688 |
+
msgstr "Wähle \"ja\" wenn du möchtest, dass die E-Mail Adresse bestätigt werden muss. (empfohlen)"
|
689 |
+
|
690 |
+
#: includes/integrations/views/integration-settings.php171,
|
691 |
+
#: includes/forms/views/tabs/form-settings.php:52
|
692 |
+
msgid "Update existing subscribers?"
|
693 |
+
msgstr "Aktualisiere vorhandene Abonnenten?"
|
694 |
+
|
695 |
+
#: includes/integrations/views/integration-settings.php181,
|
696 |
+
#: includes/forms/views/tabs/form-settings.php:62
|
697 |
+
msgid ""
|
698 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
699 |
+
" is sent."
|
700 |
+
msgstr "Wähle \"Ja\" wenn du die bisherigen Abonnenten mit den gesendeten Daten aktualisieren willst."
|
701 |
+
|
702 |
+
#: includes/integrations/views/integration-settings.php190,
|
703 |
+
#: includes/forms/views/tabs/form-settings.php:68
|
704 |
+
msgid "Replace interest groups?"
|
705 |
+
msgstr "Interessengruppen ersetzen?"
|
706 |
+
|
707 |
+
#: includes/integrations/views/integration-settings.php201,
|
708 |
+
#: includes/forms/views/tabs/form-settings.php:79
|
709 |
+
msgid ""
|
710 |
+
"Select \"no\" if you want to add the selected interests to any previously "
|
711 |
+
"selected interests when updating a subscriber."
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: includes/integrations/views/integration-settings.php202,
|
715 |
+
#: includes/forms/views/tabs/form-settings.php:80
|
716 |
+
msgid "What does this do?"
|
717 |
+
msgstr "Was hat das für eine Auswirkung?"
|
718 |
+
|
719 |
+
#: includes/integrations/views/integrations.php:17
|
720 |
+
msgid "Name"
|
721 |
+
msgstr "Name"
|
722 |
+
|
723 |
+
#: includes/integrations/views/integrations.php:18
|
724 |
+
msgid "Description"
|
725 |
+
msgstr "Beschreibung"
|
726 |
+
|
727 |
+
#: includes/integrations/views/integrations.php:35
|
728 |
+
msgid "Configure this integration"
|
729 |
+
msgstr "Integration konfigurieren."
|
730 |
+
|
731 |
+
#: includes/integrations/views/integrations.php:71
|
732 |
+
msgid "The table below shows all available integrations."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: includes/integrations/views/integrations.php:72
|
736 |
+
msgid ""
|
737 |
+
"Click on the name of an integration to edit all settings specific to that "
|
738 |
+
"integration."
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: includes/integrations/views/integrations.php:79
|
742 |
+
msgid "Enabled integrations"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/integrations/views/integrations.php:84
|
746 |
+
msgid "Available integrations"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/views/parts/admin-footer.php:15
|
750 |
+
msgid ""
|
751 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
752 |
+
"translated in your language or do you spot errors with the current "
|
753 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
754 |
+
"translation project and click \"help translate\"</a>."
|
755 |
+
msgstr "MailChimp für WordPress braucht mehr Übersetzungen. Ist das Plugin in deiner Sprache nicht verfügbar oder hast du einen Fehler in der jetzigen Übersetzung entdeckt? Helfen ist ganz einfach! Gehe zum <a href=\"%s\">Übersetzungsprojekt und klicke auf \"Übersetzen\"</a>."
|
756 |
+
|
757 |
+
#: includes/views/parts/admin-footer.php:35
|
758 |
+
msgid ""
|
759 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
760 |
+
msgstr "Dieses Plugin ist weder von MailChimp entwickelt noch sonst irgendwie daran angegliedert."
|
761 |
+
|
762 |
+
#: includes/views/parts/admin-sidebar.php:11
|
763 |
+
msgid "Looking for help?"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: includes/views/parts/admin-sidebar.php:12
|
767 |
+
msgid "We have some resources available to help you in the right direction."
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: includes/views/parts/admin-sidebar.php:14
|
771 |
+
msgid "Knowledge Base"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: includes/views/parts/admin-sidebar.php:15
|
775 |
+
msgid "Frequently Asked Questions"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: includes/views/parts/admin-sidebar.php:16
|
779 |
+
msgid "Code reference for developers"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: includes/views/parts/admin-sidebar.php:36
|
783 |
+
msgid "Looking to improve your sign-up rates?"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: includes/views/parts/admin-sidebar.php:37
|
787 |
+
msgid ""
|
788 |
+
"Our <a href=\"%s\">Boxzilla plugin</a> allows you to create pop-ups or "
|
789 |
+
"slide-ins with a subscribe form. A sure way to grow your lists faster."
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: includes/views/parts/lists-overview.php:1
|
793 |
+
msgid "Your MailChimp Account"
|
794 |
+
msgstr "Dein MailChimp-Konto "
|
795 |
+
|
796 |
+
#: includes/views/parts/lists-overview.php:2
|
797 |
+
msgid ""
|
798 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
799 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
800 |
+
"renew the cached lists configuration."
|
801 |
+
msgstr "Untenstehende Tabelle zeigt deine MailChimp-Listen und deren Details. Wenn du an den MailChimp-Listen Änderungen vorgenommen hast, nutze den folgenden Button um die Daten neu zu laden. "
|
802 |
+
|
803 |
+
#: includes/views/parts/lists-overview.php:17
|
804 |
+
msgid "No lists were found in your MailChimp account"
|
805 |
+
msgstr "In Deinem MailChimp Account wurden keine Mailinglisten gefunden"
|
806 |
|
807 |
+
#: includes/views/parts/lists-overview.php:19
|
808 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
809 |
+
msgstr "Total %d Listen wurden in deinem MailChimp-Konto gefunden."
|
|
|
|
|
|
|
810 |
|
811 |
+
#: includes/views/parts/lists-overview.php:24
|
812 |
+
msgid "List Name"
|
813 |
+
msgstr "Listenname"
|
814 |
|
815 |
+
#: includes/views/parts/lists-overview.php:25
|
816 |
+
msgid "ID"
|
817 |
+
msgstr "ID"
|
818 |
|
819 |
+
#: includes/views/parts/lists-overview.php:26
|
820 |
+
msgid "Subscribers"
|
821 |
+
msgstr "Abonnenten"
|
822 |
|
823 |
+
#: includes/views/parts/lists-overview.php:48
|
824 |
+
msgid "Edit this list in MailChimp"
|
825 |
+
msgstr "Diese Liste in MailChimp bearbeiten"
|
826 |
|
827 |
+
#: includes/views/parts/lists-overview.php:62
|
828 |
+
msgid "%s (%s) with field type %s."
|
829 |
+
msgstr "%s (%s) mit Feld-Typ %s."
|
830 |
|
831 |
+
#: includes/forms/views/parts/add-fields-help.php4,
|
832 |
#: includes/forms/views/tabs/form-fields.php:10
|
833 |
msgid "Add more fields"
|
834 |
msgstr "Mehr Felder hinzufügen"
|
865 |
"changes."
|
866 |
msgstr "Klick auf den Button damit MailChimp für Wordpress deine Änderungen erfassen kann."
|
867 |
|
|
|
|
|
|
|
|
|
|
|
868 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
869 |
msgid "Add dynamic form variable"
|
870 |
msgstr "Dynamische Formular-Variable hinzufügen"
|
937 |
msgid "Enter the HTML code for your form fields.."
|
938 |
msgstr "Gib den HTML-Code für deine Formularfelder ein."
|
939 |
|
940 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
|
|
|
|
|
|
|
|
941 |
msgid ""
|
942 |
"Use the shortcode %s to display this form inside a post, page or text "
|
943 |
"widget."
|
944 |
msgstr "Benutze diesen Shortcode %s um dieses Formular innerhalb eines Posts, Seite oder Text Widgets zu nutzen."
|
945 |
|
946 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
947 |
msgid "Form Messages"
|
948 |
msgstr "Formular-Meldungen"
|
949 |
|
950 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
951 |
msgid "Successfully subscribed"
|
952 |
msgstr "Erfolgreich abonniert"
|
953 |
|
954 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
955 |
msgid ""
|
956 |
"The text that shows when an email address is successfully subscribed to the "
|
957 |
"selected list(s)."
|
958 |
msgstr "Der Text, der angezeigt wird, wenn eine E-Mail Adresse erfolgreich zur/zu den ausgewählten Liste(n) abonniert wurde."
|
959 |
|
960 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
961 |
msgid "Invalid email address"
|
962 |
msgstr "Ungültige E-Mail-Adresse"
|
963 |
|
964 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
965 |
msgid "The text that shows when an invalid email address is given."
|
966 |
msgstr "Der Text, der angezeigt wird, wenn eine ungültige E-Mail Adresse angegeben wurde."
|
967 |
|
968 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
969 |
msgid "Required field missing"
|
970 |
msgstr "Erforderliches Feld fehlt"
|
971 |
|
972 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
973 |
msgid ""
|
974 |
"The text that shows when a required field for the selected list(s) is "
|
975 |
"missing."
|
976 |
msgstr "Der Text, der angezeigt wird, wenn ein erforderliches Feld für die ausgewählte(n) Liste(n) fehlt."
|
977 |
|
978 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
979 |
msgid "Already subscribed"
|
980 |
msgstr "Bereits abonniert"
|
981 |
|
982 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
983 |
msgid ""
|
984 |
"The text that shows when the given email is already subscribed to the "
|
985 |
"selected list(s)."
|
986 |
msgstr "Der Text, der angezeigt wird, wenn die angegebene E-Mail Adresse bereits für die ausgewählte(n) Liste(n) abonniert ist."
|
987 |
|
988 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
989 |
msgid "General error"
|
990 |
msgstr "Allgemeiner Fehler"
|
991 |
|
992 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
993 |
msgid "The text that shows when a general error occured."
|
994 |
msgstr "Der Text, der angezeigt wird, wenn ein allgemeiner Fehler aufgetreten ist."
|
995 |
|
996 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
997 |
msgid "Unsubscribed"
|
998 |
msgstr "Abgemeldet"
|
999 |
|
1000 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
1001 |
msgid ""
|
1002 |
"When using the unsubscribe method, this is the text that shows when the "
|
1003 |
"given email address is successfully unsubscribed from the selected list(s)."
|
1004 |
msgstr "Wenn die \"Abmelden\" Funktion verwendet wird, ist dies der Text der angezeigt wird, wenn die angegebene E-Mail Adresse erfolgreich von der/den ausgewählten Liste(n) abgemeldet wurde."
|
1005 |
|
1006 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1007 |
msgid "Not subscribed"
|
1008 |
msgstr "Nicht abonniert"
|
1009 |
|
1010 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1011 |
msgid ""
|
1012 |
"When using the unsubscribe method, this is the text that shows when the "
|
1013 |
"given email address is not on the selected list(s)."
|
1014 |
msgstr "Wenn die \"Abmelden\" Funktion verwendet wird, ist dies der Text der angezeigt wird, wenn die angegebene E-Mail Adresse die ausgewählte Liste nicht abonniert hat."
|
1015 |
|
1016 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1017 |
+
msgid "No list selected"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1021 |
+
msgid ""
|
1022 |
+
"When offering a list choice, this is the text that shows when no lists were "
|
1023 |
+
"selected."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/forms/views/tabs/form-messages.php:74
|
1027 |
+
msgid "Updated"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/forms/views/tabs/form-messages.php:77
|
1031 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/forms/views/tabs/form-messages.php:89
|
1035 |
msgid "HTML tags like %s are allowed in the message fields."
|
1036 |
msgstr "HTML Tags wie %s sind in den Nachrichten Feldern erlaubt."
|
1037 |
|
1043 |
msgid "MailChimp specific settings"
|
1044 |
msgstr "MailChimp-spezifische Einstellungen"
|
1045 |
|
1046 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1047 |
msgid "Lists this form subscribes to"
|
1048 |
msgstr "Listen dieses Formulars abonnieren "
|
1049 |
|
1050 |
+
#: includes/forms/views/tabs/form-settings.php:31
|
|
|
|
|
|
|
|
|
|
|
1051 |
msgid ""
|
1052 |
"Select the list(s) to which people who submit this form should be "
|
1053 |
"subscribed."
|
1054 |
msgstr "Wähle die Liste(n), welche abonniert wird, wenn das Formular abgeschickt wird."
|
1055 |
|
1056 |
+
#: includes/forms/views/tabs/form-settings.php:37
|
1057 |
msgid "Use double opt-in?"
|
1058 |
msgstr "Double Opt-In benutzen?"
|
1059 |
|
1060 |
+
#: includes/forms/views/tabs/form-settings.php:44
|
1061 |
+
msgid "Are you sure you want to disable double opt-in?"
|
1062 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1063 |
|
1064 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
|
|
1065 |
msgid ""
|
1066 |
+
"We strongly suggest keeping double opt-in enabled. Disabling double opt-in "
|
1067 |
+
"may result in abuse."
|
1068 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1069 |
|
1070 |
+
#: includes/forms/views/tabs/form-settings.php:94
|
1071 |
msgid "Form behaviour"
|
1072 |
msgstr "Verhalten des Formulars"
|
1073 |
|
1074 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
1075 |
msgid "Hide form after a successful sign-up?"
|
1076 |
msgstr "Verberge das Formular nach der Registrierung?"
|
1077 |
|
1078 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
1079 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1080 |
msgstr "Wähle \"ja\" wenn du die Formular Felder verstecken möchtest, nach einer erfolgreichen Registrierung."
|
1081 |
|
1082 |
+
#: includes/forms/views/tabs/form-settings.php:120
|
1083 |
msgid "Redirect to URL after successful sign-ups"
|
1084 |
msgstr "Weiterleitung zu URL nach einer erfolgreichen Registrierung."
|
1085 |
|
1086 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
1087 |
msgid "Example: %s"
|
1088 |
msgstr "Beispiel: %s"
|
1089 |
|
1090 |
+
#: includes/forms/views/tabs/form-settings.php:123
|
1091 |
msgid ""
|
1092 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
1093 |
" (absolute) URLs, including <code>http://</code>."
|
1094 |
msgstr "Leer lassen oder <code>0</code> eingeben für keine Weiterleitung. Ansonsten verwende (absolute) URLs, inkl. <code>http://</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mailchimp-for-wp-de_DE.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-de_DE.po
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
msgid ""
|
21 |
msgstr ""
|
22 |
"Project-Id-Version: MailChimp for WordPress\n"
|
23 |
-
"PO-Revision-Date: 2017-
|
24 |
"Last-Translator: Mike Borgers <borgersmike@googlemail.com>\n"
|
25 |
"Language-Team: German (Germany) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_DE/)\n"
|
26 |
"MIME-Version: 1.0\n"
|
20 |
msgid ""
|
21 |
msgstr ""
|
22 |
"Project-Id-Version: MailChimp for WordPress\n"
|
23 |
+
"PO-Revision-Date: 2017-09-20 15:49+0000\n"
|
24 |
"Last-Translator: Mike Borgers <borgersmike@googlemail.com>\n"
|
25 |
"Language-Team: German (Germany) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/de_DE/)\n"
|
26 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-el_GR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-el_GR.po
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
# Translators:
|
4 |
# Dimitris Lioris <lioris.dim@gmail.com>, 2015
|
5 |
# Ilias Pesmatzoglou <ipesmatzoglou@theknittingclub.gr>, 2016
|
@@ -9,68 +9,21 @@
|
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"PO-Revision-Date: 2016-07-19 22:38+0000\n"
|
15 |
-
"Last-Translator: Ilias Pesmatzoglou <ipesmatzoglou@theknittingclub.gr>\n"
|
16 |
"Language-Team: Greek (Greece) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/el_GR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Language: el_GR\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
-
#:
|
24 |
-
msgid "Email address"
|
25 |
-
msgstr "Διεύθυνση email"
|
26 |
-
|
27 |
-
#: config/default-form-content.php:4
|
28 |
-
msgid "Your email address"
|
29 |
-
msgstr "Η ηλεκτρονική σας διεύθυνση"
|
30 |
-
|
31 |
-
#: config/default-form-content.php:5
|
32 |
-
msgid "Sign up"
|
33 |
-
msgstr "Εγγραφή"
|
34 |
-
|
35 |
-
#: config/default-form-messages.php:5
|
36 |
-
msgid ""
|
37 |
-
"Thank you, your sign-up request was successful! Please check your email "
|
38 |
-
"inbox to confirm."
|
39 |
-
msgstr "Σας ευχαριστούμε, το αίτημά σας για εγγραφή ήταν επιτυχές! Παρακαλούμε ελέγξτε τα εισερχόμενα του email σας για την επιβεβαίωση."
|
40 |
-
|
41 |
-
#: config/default-form-messages.php:9
|
42 |
-
msgid "Oops. Something went wrong. Please try again later."
|
43 |
-
msgstr "Ωχ. Κάτι πήγε λάθος. Παρακαλώ δοκιμάστε αργότερα."
|
44 |
-
|
45 |
-
#: config/default-form-messages.php:13
|
46 |
-
msgid "Please provide a valid email address."
|
47 |
-
msgstr "Παρακαλώ δώστε μας μία έγκυρη ηλεκτρονική διεύθυνση."
|
48 |
-
|
49 |
-
#: config/default-form-messages.php:17
|
50 |
-
msgid "Given email address is already subscribed, thank you!"
|
51 |
-
msgstr "Η διεύθυνση email που δώσατε έχει ήδη εγγραφεί, σας ευχαριστούμε!"
|
52 |
-
|
53 |
-
#: config/default-form-messages.php:21
|
54 |
-
msgid "Please fill in the required fields."
|
55 |
-
msgstr "Παρακαλώ συμπληρώστε τα απαιτούμενα πεδία."
|
56 |
-
|
57 |
-
#: config/default-form-messages.php:25
|
58 |
-
msgid "You were successfully unsubscribed."
|
59 |
-
msgstr "Απεγγραφήκατε επιτυχώς."
|
60 |
-
|
61 |
-
#: config/default-form-messages.php:29
|
62 |
-
msgid "Given email address is not subscribed."
|
63 |
-
msgstr "Η διεύθυνση email που δώσατε δεν έχει εγγραφεί."
|
64 |
-
|
65 |
-
#: config/default-form-messages.php:33
|
66 |
-
msgid "Please select at least one list."
|
67 |
-
msgstr "Παρακαλώ επιλέξτε τουλάχιστον μία λίστα."
|
68 |
-
|
69 |
-
#: config/default-integration-options.php:5
|
70 |
-
msgid "Sign me up for the newsletter!"
|
71 |
-
msgstr "Να εγγραφώ στο newsletter!"
|
72 |
-
|
73 |
-
#: includes/admin/class-admin-texts.php:62
|
74 |
#: includes/forms/views/edit-form.php:6
|
75 |
msgid "Settings"
|
76 |
msgstr "Ρυθμίσεις"
|
@@ -79,141 +32,388 @@ msgstr "Ρυθμίσεις"
|
|
79 |
msgid "Documentation"
|
80 |
msgstr "Τεκμηρίωση"
|
81 |
|
82 |
-
#: includes/admin/class-admin.php:
|
83 |
msgid ""
|
84 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
85 |
msgstr "Επιτυχία! Η αποθηκευμένη διαμόρφωση για τις MailChimp λίστες σας έχει ανανεωθεί."
|
86 |
|
87 |
-
#: includes/admin/class-admin.php:
|
88 |
msgid ""
|
89 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
90 |
" to use it."
|
91 |
msgstr "Αυτή είναι μία αναβαθμισμένη λειτουργία. Παρακαλούμε αναβαθμίστε στην premium έκδοση για να μπορείτε να την χρησιμοποιείτε."
|
92 |
|
93 |
-
#: includes/admin/class-admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
msgid "MailChimp API Settings"
|
95 |
msgstr "Ρυθμίσεις MailChimp API"
|
96 |
|
97 |
-
#: includes/admin/class-admin.php:
|
98 |
-
#: integrations/ninja-forms/class-ninja-forms.php:34
|
99 |
msgid "MailChimp"
|
100 |
msgstr "MailChimp"
|
101 |
|
102 |
-
#: includes/admin/class-
|
103 |
-
|
104 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
|
106 |
-
#: includes/admin/class-
|
107 |
msgid ""
|
108 |
-
"
|
109 |
-
"
|
110 |
-
msgstr "
|
111 |
|
112 |
-
#: includes/admin/class-ads.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
msgid "More subscribers, better newsletters."
|
114 |
msgstr "Περισσότεροι συνδρομητές, καλύτερα ενημερωτικά δελτία."
|
115 |
|
116 |
-
#: includes/admin/class-ads.php:
|
117 |
msgid ""
|
118 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
119 |
"our monthly tips."
|
120 |
msgstr "Εγγραφείτε στις μηνιαίες συμβουλές μας και μάθετε τον καλύτερο τρόπο να μεγαλώσετε τις λίστες σας καθώς και πως να γράφετε καλύτερα emails."
|
121 |
|
122 |
-
#: includes/admin/class-ads.php:
|
123 |
msgid "Email Address"
|
124 |
msgstr "Διεύθυνση Email"
|
125 |
|
126 |
-
#: includes/admin/class-ads.php:
|
127 |
msgid "First Name"
|
128 |
msgstr "Όνομα"
|
129 |
|
130 |
-
#: includes/admin/class-ads.php:
|
131 |
msgid "Subscribe"
|
132 |
msgstr "Εγγραφή"
|
133 |
|
134 |
-
#: includes/admin/class-
|
135 |
-
msgid "
|
136 |
-
|
|
|
|
|
137 |
|
138 |
-
#: includes/admin/
|
139 |
-
msgid "
|
140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
msgid "Read more about common connectivity issues."
|
144 |
msgstr "Διαβάστε περισσότερα για τα συνήθη προβλήματα συνδεσιμότητας."
|
145 |
|
146 |
-
#: includes/forms/class-admin.php:
|
147 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
msgid "Forms"
|
149 |
msgstr "Φόρμες"
|
150 |
|
151 |
-
#: includes/forms/class-admin.
|
152 |
msgid "<strong>Success!</strong> Form successfully saved."
|
153 |
msgstr "<strong>Επιτυχία!</strong> Η φόρμα αποθηκεύτηκε επιτυχώς."
|
154 |
|
155 |
-
#: includes/forms/class-admin.php:
|
156 |
msgid "Preview form"
|
157 |
msgstr "Προβολή φόρμας"
|
158 |
|
159 |
-
#: includes/forms/class-admin.php:
|
160 |
-
msgid "
|
161 |
-
msgstr "
|
162 |
|
163 |
-
#: includes/forms/class-admin.php:
|
164 |
-
msgid "
|
165 |
-
msgstr "
|
166 |
|
167 |
-
#: includes/forms/class-form-previewer.php:
|
168 |
msgid "Form preview"
|
169 |
msgstr "Προβολή φόρμας"
|
170 |
|
171 |
-
#: includes/forms/class-form-tags.php:
|
172 |
msgid "Replaced with the form response (error or success messages)."
|
173 |
msgstr "Αντικαθίσταται με τη φόρμα απάντησης (μηνύματα επιτυχίας ή σφάλματος)."
|
174 |
|
175 |
-
#: includes/forms/class-form-tags.php:
|
176 |
msgid "Data from the URL or a submitted form."
|
177 |
msgstr "Δεδομένα από το URL ή από μία υποβληθείσα φόρμα."
|
178 |
|
179 |
-
#: includes/forms/class-form-tags.php:
|
|
|
|
|
|
|
|
|
180 |
#: includes/integrations/class-integration-tags.php:45
|
181 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
182 |
msgstr "Αντικαθίσταται με τον αριθμό συνδρομητών στην επιλεγμένη λίστα(ες)"
|
183 |
|
184 |
-
#: includes/forms/class-form-tags.php:
|
185 |
msgid "The email address of the current visitor (if known)."
|
186 |
msgstr "Η διεύθυνση email του τρέχοντα επισκέπτη (εάν είναι γωνστή)."
|
187 |
|
188 |
-
#: includes/forms/class-form-tags.php:
|
189 |
msgid "The URL of the page."
|
190 |
msgstr "Το URL της σελίδας."
|
191 |
|
192 |
-
#: includes/forms/class-form-tags.php:
|
193 |
msgid "The path of the page."
|
194 |
msgstr "Η διαδρομή της σελίδας."
|
195 |
|
196 |
-
#: includes/forms/class-form-tags.php:
|
197 |
msgid "The current date. Example: %s."
|
198 |
msgstr "Η τρέχουσα ημερομηνία. Παράδειγμα: %s."
|
199 |
|
200 |
-
#: includes/forms/class-form-tags.php:
|
201 |
msgid "The current time. Example: %s."
|
202 |
msgstr "Η τρέχουσα ώρα. Παράδειγμα: %s."
|
203 |
|
204 |
-
#: includes/forms/class-form-tags.php:
|
205 |
msgid "The site's language. Example: %s."
|
206 |
msgstr "Η γλώσσα της ιστοσελίδας. Παράδειγμα: %s."
|
207 |
|
208 |
-
#: includes/forms/class-form-tags.php:
|
209 |
msgid "The visitor's IP address. Example: %s."
|
210 |
msgstr "Η διεύθυνση IP του επισκέπτη. Παράδειγμα: %s."
|
211 |
|
212 |
-
#: includes/forms/class-form-tags.php:
|
213 |
msgid "The property of the currently logged-in user."
|
214 |
msgstr "Η ιδιότητα του τρέχοντος συνδεδεμένου χρήστη."
|
215 |
|
216 |
-
#: includes/forms/class-form.php:
|
|
|
|
|
|
|
|
|
217 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
218 |
msgstr "Η φόρμα με ID %d δεν υπάρχει, μήπως έχει διαγραφεί;"
|
219 |
|
@@ -221,10 +421,6 @@ msgstr "Η φόρμα με ID %d δεν υπάρχει, μήπως έχει δι
|
|
221 |
msgid "Newsletter"
|
222 |
msgstr "Newsletter"
|
223 |
|
224 |
-
#: includes/forms/class-widget.php:30
|
225 |
-
msgid "MailChimp Sign-Up Form"
|
226 |
-
msgstr "Φόρμα Εγγραφής MailChimp"
|
227 |
-
|
228 |
#: includes/forms/class-widget.php:32
|
229 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
230 |
msgstr "Εμφανίζει την φόρμα εγγραφής του MailChimp για WordPress"
|
@@ -239,7 +435,114 @@ msgid ""
|
|
239 |
" form settings</a>."
|
240 |
msgstr "Μπορείτε να τροποποιήσετε την φόρμα εγγραφής σας στις <a href=\"%s\">Ρυθμίσεις φόρμας του MailChimp για Wordpress</a>."
|
241 |
|
242 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Add new form"
|
244 |
msgstr "Προσθήκη νέας φόρμας"
|
245 |
|
@@ -267,38 +570,266 @@ msgstr "Πεδία"
|
|
267 |
msgid "Messages"
|
268 |
msgstr "Μηνύματα"
|
269 |
|
270 |
-
#: includes/forms/views/edit-form.php:7
|
271 |
-
msgid "Appearance"
|
272 |
-
msgstr "Εμφάνιση:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
#: includes/
|
275 |
-
|
276 |
-
|
277 |
-
#: includes/views/general-settings.php:7
|
278 |
-
msgid "You are here: "
|
279 |
-
msgstr "Είστε εδώ:"
|
280 |
|
281 |
-
#: includes/
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: includes/
|
286 |
-
msgid "
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: includes/
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: includes/
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: includes/
|
298 |
-
msgid "
|
299 |
-
msgstr "
|
300 |
|
301 |
-
#: includes/forms/views/parts/add-fields-help.
|
302 |
#: includes/forms/views/tabs/form-fields.php:10
|
303 |
msgid "Add more fields"
|
304 |
msgstr "Προσθήκη περισσότερων πεδίων"
|
@@ -335,11 +866,6 @@ msgid ""
|
|
335 |
"changes."
|
336 |
msgstr "Πατήστε το παρακάτω για να επιτρέψετε στο MailChimp για WordPress να εφαρμόσει τις αλλαγές σας."
|
337 |
|
338 |
-
#: includes/forms/views/parts/add-fields-help.php:43
|
339 |
-
#: includes/views/parts/lists-overview.php:8
|
340 |
-
msgid "Renew MailChimp lists"
|
341 |
-
msgstr "Ανανέωση λιστών MailChimp"
|
342 |
-
|
343 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
344 |
msgid "Add dynamic form variable"
|
345 |
msgstr "Προσθέστε δυναμική μεταβλητή φόρμας"
|
@@ -412,87 +938,101 @@ msgstr "Πεδία Φόρμας"
|
|
412 |
msgid "Enter the HTML code for your form fields.."
|
413 |
msgstr "Εισάγετε τον HTML κώδικα για τα πεδία της φόρμας σας."
|
414 |
|
415 |
-
#: includes/forms/views/tabs/form-fields.php:
|
416 |
-
msgid "Your form is missing the following (required) form fields:"
|
417 |
-
msgstr "Από την φόρμα σας απουσιάζουν τα παρακάτω (απαιτούμενα) πεδία:"
|
418 |
-
|
419 |
-
#: includes/forms/views/tabs/form-fields.php:34
|
420 |
msgid ""
|
421 |
"Use the shortcode %s to display this form inside a post, page or text "
|
422 |
"widget."
|
423 |
msgstr "Χρησιμοποιήστε το shortcode %s για να εμφανίσετε αυτή τη φόρμα μέσα σε ένα άρθρο, μία σελίδα ή μία μονάδα κειμένου."
|
424 |
|
425 |
-
#: includes/forms/views/tabs/form-messages.php:
|
426 |
msgid "Form Messages"
|
427 |
msgstr "Μηνύματα Φόρμας"
|
428 |
|
429 |
-
#: includes/forms/views/tabs/form-messages.php:
|
430 |
msgid "Successfully subscribed"
|
431 |
msgstr "Εγγραφήκατε επιτυχώς"
|
432 |
|
433 |
-
#: includes/forms/views/tabs/form-messages.php:
|
434 |
msgid ""
|
435 |
"The text that shows when an email address is successfully subscribed to the "
|
436 |
"selected list(s)."
|
437 |
msgstr "Το κείμενο που εμφανίζεται όταν μια διεύθυνση ηλ. ταχυδρομείου εγγράφεται επιτυχώς στην επιλεγμένη λίστα (ή λίστες)."
|
438 |
|
439 |
-
#: includes/forms/views/tabs/form-messages.php:
|
440 |
msgid "Invalid email address"
|
441 |
msgstr "Η διεύθυνση e-mail δεν είναι έγκυρη"
|
442 |
|
443 |
-
#: includes/forms/views/tabs/form-messages.php:
|
444 |
msgid "The text that shows when an invalid email address is given."
|
445 |
msgstr "Το κείμενο που εμφανίζεται όταν μια διεύθυνση ηλ. ταχυδρομείου που επιχειρεί εγγραφή δεν είναι έγκυρη."
|
446 |
|
447 |
-
#: includes/forms/views/tabs/form-messages.php:
|
448 |
msgid "Required field missing"
|
449 |
msgstr "Δεν έχει συμπληρωθεί κάποιο απαραίτητο πεδίο"
|
450 |
|
451 |
-
#: includes/forms/views/tabs/form-messages.php:
|
452 |
msgid ""
|
453 |
"The text that shows when a required field for the selected list(s) is "
|
454 |
"missing."
|
455 |
msgstr "Το κείμενο που εμφανίζεται όταν ένα υποχρεωτικό πεδίο για την επιλεγμένη λίστα (ή λίστες) δεν έχει συμπληρωθεί."
|
456 |
|
457 |
-
#: includes/forms/views/tabs/form-messages.php:
|
458 |
msgid "Already subscribed"
|
459 |
msgstr "Έχετε ήδη εγγραφεί"
|
460 |
|
461 |
-
#: includes/forms/views/tabs/form-messages.php:
|
462 |
msgid ""
|
463 |
"The text that shows when the given email is already subscribed to the "
|
464 |
"selected list(s)."
|
465 |
msgstr "Το κείμενο που εμφανίζεται όταν η διεύθυνση ηλ. ταχυδρομείου που επιχειρεί εγγραφή είναι εγγεγραμμένη στην επιλεγμένη λίστα (ή λίστες)."
|
466 |
|
467 |
-
#: includes/forms/views/tabs/form-messages.php:
|
468 |
msgid "General error"
|
469 |
msgstr "Γενικό σφάλμα"
|
470 |
|
471 |
-
#: includes/forms/views/tabs/form-messages.php:
|
472 |
msgid "The text that shows when a general error occured."
|
473 |
msgstr "Το κείμενο που εμφανίζεται όταν προκύπτει κάποιο γενικό σφάλμα."
|
474 |
|
475 |
-
#: includes/forms/views/tabs/form-messages.php:
|
476 |
msgid "Unsubscribed"
|
477 |
msgstr "Απεγγραφή"
|
478 |
|
479 |
-
#: includes/forms/views/tabs/form-messages.php:
|
480 |
msgid ""
|
481 |
"When using the unsubscribe method, this is the text that shows when the "
|
482 |
"given email address is successfully unsubscribed from the selected list(s)."
|
483 |
msgstr "Όταν γίνεται χρήση της μεθόδου κατάργησης εγγραφής, αυτό είναι το κείμενο που εμφανίζεται όταν η συγκεκριμένη διεύθυνση e-mail έχει απεγγραφεί επιτυχώς από την επιλεγμένη λίστα (ή λίστες)."
|
484 |
|
485 |
-
#: includes/forms/views/tabs/form-messages.php:
|
486 |
msgid "Not subscribed"
|
487 |
msgstr "Μη εγγεγραμμένη"
|
488 |
|
489 |
-
#: includes/forms/views/tabs/form-messages.php:
|
490 |
msgid ""
|
491 |
"When using the unsubscribe method, this is the text that shows when the "
|
492 |
"given email address is not on the selected list(s)."
|
493 |
msgstr "Όταν γίνεται χρήση της μεθόδου κατάργησης εγγραφής, αυτό είναι το κείμενο που εμφανίζεται όταν η συγκεκριμένη διεύθυνση e-mail δεν υπάρχει στην επιλεγμένη λίστα (ή λίστες)."
|
494 |
|
495 |
-
#: includes/forms/views/tabs/form-messages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
496 |
msgid "HTML tags like %s are allowed in the message fields."
|
497 |
msgstr "Οι ετικέτες HTML όπως %s επιτρέπονται στα πεδία του μηνύματος."
|
498 |
|
@@ -504,379 +1044,52 @@ msgstr "Ρυθμίσεις φόρμας"
|
|
504 |
msgid "MailChimp specific settings"
|
505 |
msgstr "Ρυθμίσεις MailChimp"
|
506 |
|
507 |
-
#: includes/forms/views/tabs/form-settings.php:
|
508 |
msgid "Lists this form subscribes to"
|
509 |
msgstr "Λίστες στις οποίες γίνεται εγγραφή από αυτή τη φόρμα"
|
510 |
|
511 |
-
#: includes/forms/views/tabs/form-settings.php:
|
512 |
-
#: includes/integrations/views/integration-settings.php:93
|
513 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
514 |
-
msgstr "Δεν βρέθηκαν λίστες, <a href=\"%s\">είστε συνδεδεμένοι στο MailChimp</a>;"
|
515 |
-
|
516 |
-
#: includes/forms/views/tabs/form-settings.php:29
|
517 |
msgid ""
|
518 |
"Select the list(s) to which people who submit this form should be "
|
519 |
"subscribed."
|
520 |
msgstr "Επιλέξτε τη λίστα(ες) στην οποία θα εγγράφονται όσοι υποβάλλουν αυτή τη φόρμα."
|
521 |
|
522 |
-
#: includes/forms/views/tabs/form-settings.php:
|
523 |
msgid "Use double opt-in?"
|
524 |
msgstr "Χρήση διπλής επιβεβαίωσης (double opt-in);"
|
525 |
|
526 |
-
#: includes/forms/views/tabs/form-settings.php:
|
527 |
-
|
528 |
-
|
529 |
-
#: includes/forms/views/tabs/form-settings.php:85
|
530 |
-
#: includes/forms/views/tabs/form-settings.php:115
|
531 |
-
#: includes/integrations/views/integration-settings.php:53
|
532 |
-
#: includes/integrations/views/integration-settings.php:66
|
533 |
-
#: includes/integrations/views/integration-settings.php:117
|
534 |
-
#: includes/integrations/views/integration-settings.php:129
|
535 |
-
#: includes/integrations/views/integration-settings.php:142
|
536 |
-
#: includes/integrations/views/integration-settings.php:163
|
537 |
-
#: includes/integrations/views/integration-settings.php:180
|
538 |
-
#: includes/integrations/views/integration-settings.php:199
|
539 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
540 |
-
msgid "Yes"
|
541 |
-
msgstr "Ναι"
|
542 |
-
|
543 |
-
#: includes/forms/views/tabs/form-settings.php:43
|
544 |
-
#: includes/forms/views/tabs/form-settings.php:58
|
545 |
-
#: includes/forms/views/tabs/form-settings.php:73
|
546 |
-
#: includes/forms/views/tabs/form-settings.php:89
|
547 |
-
#: includes/forms/views/tabs/form-settings.php:119
|
548 |
-
#: includes/integrations/views/integration-settings.php:54
|
549 |
-
#: includes/integrations/views/integration-settings.php:67
|
550 |
-
#: includes/integrations/views/integration-settings.php:118
|
551 |
-
#: includes/integrations/views/integration-settings.php:130
|
552 |
-
#: includes/integrations/views/integration-settings.php:146
|
553 |
-
#: includes/integrations/views/integration-settings.php:167
|
554 |
-
#: includes/integrations/views/integration-settings.php:184
|
555 |
-
#: includes/integrations/views/integration-settings.php:203
|
556 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
557 |
-
msgid "No"
|
558 |
-
msgstr "Όχι"
|
559 |
-
|
560 |
-
#: includes/forms/views/tabs/form-settings.php:45
|
561 |
-
#: includes/integrations/views/integration-settings.php:149
|
562 |
-
msgid ""
|
563 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
564 |
-
"being subscribed (recommended)"
|
565 |
-
msgstr "Επιλέξτε \"ναι\" εάν θέλετε οι χρήστες να επιβεβαιώνουν την ηλεκτρονική τους διεύθυνση προτού εγγραφούν (προτείνεται)"
|
566 |
-
|
567 |
-
#: includes/forms/views/tabs/form-settings.php:50
|
568 |
-
msgid "Send final welcome email?"
|
569 |
-
msgstr "Αποστολή τελικού email καλωσορίσματος;"
|
570 |
-
|
571 |
-
#: includes/forms/views/tabs/form-settings.php:60
|
572 |
-
#: includes/integrations/views/integration-settings.php:169
|
573 |
-
msgid ""
|
574 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
575 |
-
"succeeds (only when double opt-in is disabled)."
|
576 |
-
msgstr "Επιλέξτε \"ναι\" εάν θέλετε να στείλετε email καλωσορίσματος στις λίστες σας όταν μία εγγραφή είναι επιτυχής (μόνο όταν η διπλή επιβεβαίωση είναι απενεργοποιημένη)."
|
577 |
-
|
578 |
-
#: includes/forms/views/tabs/form-settings.php:65
|
579 |
-
#: includes/integrations/views/integration-settings.php:176
|
580 |
-
msgid "Update existing subscribers?"
|
581 |
-
msgstr "Να ενημερωθούν τα στοιχεία των ήδη εγγεγραμμένων;"
|
582 |
-
|
583 |
-
#: includes/forms/views/tabs/form-settings.php:75
|
584 |
-
#: includes/integrations/views/integration-settings.php:186
|
585 |
-
msgid ""
|
586 |
-
"Select \"yes\" if you want to update existing subscribers with the data that"
|
587 |
-
" is sent."
|
588 |
-
msgstr "Επιλέξτε \"ναι\" αν θέλετε να ενημερώσετε τους υπάρχοντες συνδρομητές με τα δεδομένα που στάλθηκαν."
|
589 |
-
|
590 |
-
#: includes/forms/views/tabs/form-settings.php:81
|
591 |
-
#: includes/integrations/views/integration-settings.php:195
|
592 |
-
msgid "Replace interest groups?"
|
593 |
-
msgstr "Να αντικατασταθούν οι ομάδες ενδιαφερόντων;"
|
594 |
|
595 |
-
#: includes/forms/views/tabs/form-settings.php:
|
596 |
-
#: includes/integrations/views/integration-settings.php:206
|
597 |
msgid ""
|
598 |
-
"
|
599 |
-
"
|
600 |
-
msgstr "
|
601 |
-
|
602 |
-
#: includes/forms/views/tabs/form-settings.php:93
|
603 |
-
#: includes/integrations/views/integration-settings.php:207
|
604 |
-
msgid "What does this do?"
|
605 |
-
msgstr "Τι κάνει αυτό;"
|
606 |
|
607 |
-
#: includes/forms/views/tabs/form-settings.php:
|
608 |
msgid "Form behaviour"
|
609 |
msgstr "Συμπεριφορά φόρμας"
|
610 |
|
611 |
-
#: includes/forms/views/tabs/form-settings.php:
|
612 |
msgid "Hide form after a successful sign-up?"
|
613 |
msgstr "Να κρύβεται η φόρμα έπειτα από μία επιτυχημένη εγγραφή;"
|
614 |
|
615 |
-
#: includes/forms/views/tabs/form-settings.php:
|
616 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
617 |
msgstr "Επιλέξτε \"ναι\" ώστε να κρύβεται η φόρμα έπειτα από μία επιτυχημένη εγγραφή."
|
618 |
|
619 |
-
#: includes/forms/views/tabs/form-settings.php:
|
620 |
msgid "Redirect to URL after successful sign-ups"
|
621 |
msgstr "Ανακατεύθυνση σε URL έπειτα από επιτυχημένες εγγραφές"
|
622 |
|
623 |
-
#: includes/forms/views/tabs/form-settings.php:
|
624 |
msgid "Example: %s"
|
625 |
msgstr "Παράδειγμα: %s"
|
626 |
|
627 |
-
#: includes/forms/views/tabs/form-settings.php:
|
628 |
msgid ""
|
629 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
630 |
" (absolute) URLs, including <code>http://</code>."
|
631 |
msgstr "Αφήστε το κενό ή εισάγετε <code>0</code> εάν δεν θέλετε να γίνεται ανακατεύθυνση. Διαφορετικά, χρησιμοποιήστε πλήρη (απόλυτα) URL, συμπεριλαμβανομένου του <code>http://</code>."
|
632 |
-
|
633 |
-
#: includes/integrations/class-admin.php:79
|
634 |
-
#: includes/integrations/class-admin.php:80
|
635 |
-
#: includes/integrations/views/integration-settings.php:10
|
636 |
-
#: includes/integrations/views/integrations.php:9
|
637 |
-
#: includes/integrations/views/integrations.php:17
|
638 |
-
msgid "Integrations"
|
639 |
-
msgstr "Ενσωματώσεις"
|
640 |
-
|
641 |
-
#: includes/integrations/views/integration-settings.php:20
|
642 |
-
msgid "%s integration"
|
643 |
-
msgstr "%s ενσωμάτωση"
|
644 |
-
|
645 |
-
#: includes/integrations/views/integration-settings.php:51
|
646 |
-
msgid "Enabled?"
|
647 |
-
msgstr "Ενεργοποιημένο;"
|
648 |
-
|
649 |
-
#: includes/integrations/views/integration-settings.php:55
|
650 |
-
msgid ""
|
651 |
-
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
652 |
-
msgstr "Ενεργοποίηση της ενσωμάτωσης %s; Αυτό θα προσθέσει ένα πεδίο εγγραφής στη φόρμα."
|
653 |
-
|
654 |
-
#: includes/integrations/views/integration-settings.php:64
|
655 |
-
msgid "Implicit?"
|
656 |
-
msgstr "Σιωπηρά;"
|
657 |
-
|
658 |
-
#: includes/integrations/views/integration-settings.php:68
|
659 |
-
msgid ""
|
660 |
-
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
661 |
-
"(recommended)."
|
662 |
-
msgstr "Επιλέξτε \"όχι\" εάν θέλετε να ερωτώνται οι επισκέπτες σας πριν να εγγραφούν (συνίσταται)."
|
663 |
-
|
664 |
-
#: includes/integrations/views/integration-settings.php:78
|
665 |
-
msgid "MailChimp Lists"
|
666 |
-
msgstr "Λίστες MailChimp"
|
667 |
-
|
668 |
-
#: includes/integrations/views/integration-settings.php:89
|
669 |
-
msgid ""
|
670 |
-
"Select the list(s) to which people who check the checkbox should be "
|
671 |
-
"subscribed."
|
672 |
-
msgstr "Επιλέξτε τη λίστα(ες) στην οποία θα εγγράφονται όσοι επιλέγουν το checkbox."
|
673 |
-
|
674 |
-
#: includes/integrations/views/integration-settings.php:102
|
675 |
-
msgid "Checkbox label text"
|
676 |
-
msgstr "Κείμενο ετικέτας checkbox"
|
677 |
-
|
678 |
-
#: includes/integrations/views/integration-settings.php:105
|
679 |
-
msgid "HTML tags like %s are allowed in the label text."
|
680 |
-
msgstr "Οι ετικέτες HTML όπως %s επιτρέπονται στο κείμενο της ετικέτας."
|
681 |
-
|
682 |
-
#: includes/integrations/views/integration-settings.php:115
|
683 |
-
msgid "Pre-check the checkbox?"
|
684 |
-
msgstr "Να είναι το checkbox προεπιλεγμένο;"
|
685 |
-
|
686 |
-
#: includes/integrations/views/integration-settings.php:119
|
687 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
688 |
-
msgstr "Επιλέξτε \"ναι\" εάν θέλετε να έρχεται προεπιλεγμένο το πεδίο."
|
689 |
-
|
690 |
-
#: includes/integrations/views/integration-settings.php:127
|
691 |
-
msgid "Load some default CSS?"
|
692 |
-
msgstr "Να φορτωθεί κάποιο προεπιλεγμένο CSS;"
|
693 |
-
|
694 |
-
#: includes/integrations/views/integration-settings.php:131
|
695 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
696 |
-
msgstr "Επιλέξτε \"ναι\" αν το checkbox εμφανίζεται σε ένα περίεργο σημείο."
|
697 |
-
|
698 |
-
#: includes/integrations/views/integration-settings.php:138
|
699 |
-
msgid "Double opt-in?"
|
700 |
-
msgstr "Διπλή επιβεβαίωση (double opt-in);"
|
701 |
-
|
702 |
-
#: includes/integrations/views/integration-settings.php:159
|
703 |
-
msgid "Send Welcome Email?"
|
704 |
-
msgstr "Να αποσταλεί email καλωσορίσματος;"
|
705 |
-
|
706 |
-
#: includes/integrations/views/integration-settings.php:244
|
707 |
-
msgid ""
|
708 |
-
"The selected MailChimp lists require non-default fields, which may prevent "
|
709 |
-
"this integration from working."
|
710 |
-
msgstr "Οι επιλεγμένες MailChimp λίστες απαιτούν μη προκαθορισμένα πεδία, τα οποία μπορεί να προκαλέσουν την μη λειτουργία της ενσωμάτωσης."
|
711 |
-
|
712 |
-
#: includes/integrations/views/integration-settings.php:245
|
713 |
-
msgid ""
|
714 |
-
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
715 |
-
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
716 |
-
"sure only the email & name fields are marked as required fields for the "
|
717 |
-
"selected list(s)."
|
718 |
-
msgstr "Παρακαλώ διασφαλίστε ότι εσείς <a href=\"%s\">θα διαμορφώσετε το πρόσθετο να στέλνει όλα τα υποχρεωτικά πεδία</a> ή <a href=\"%s\">το αρχείο καταγραφής στον MailChimp λογαριασμό σας</a> και βεβαιωθείτε ότι μόνο τα πεδία email & όνομα είναι χαρακτηρισμένα ως υποχρεωτικά για την επιλεγμένη λίστα(ες)."
|
719 |
-
|
720 |
-
#: includes/integrations/views/integrations.php:30
|
721 |
-
msgid "Enabled"
|
722 |
-
msgstr "Ενεργοποιημένο"
|
723 |
-
|
724 |
-
#: includes/integrations/views/integrations.php:31
|
725 |
-
msgid "Name"
|
726 |
-
msgstr "Όνομα"
|
727 |
-
|
728 |
-
#: includes/integrations/views/integrations.php:32
|
729 |
-
msgid "Description"
|
730 |
-
msgstr "Περιγραφή"
|
731 |
-
|
732 |
-
#: includes/integrations/views/integrations.php:50
|
733 |
-
msgid ""
|
734 |
-
"This integration is enabled by default as it requires manual actions to "
|
735 |
-
"work."
|
736 |
-
msgstr "Αυτή η ενσωμάτωση είναι ενεργοποιημένη από προεπιλογή, καθώς απαιτούνται χειροκίνητες ενέργειες για την λειτουργία της."
|
737 |
-
|
738 |
-
#: includes/integrations/views/integrations.php:57
|
739 |
-
msgid "Configure this integration"
|
740 |
-
msgstr "Διαμόρφωση αυτής της ενσωμάτωσης"
|
741 |
-
|
742 |
-
#: includes/views/general-settings.php:18
|
743 |
-
msgid "General Settings"
|
744 |
-
msgstr "Γενικές Ρυθμίσεις"
|
745 |
-
|
746 |
-
#: includes/views/general-settings.php:35
|
747 |
-
msgid "Status"
|
748 |
-
msgstr "Κατάσταση"
|
749 |
-
|
750 |
-
#: includes/views/general-settings.php:39
|
751 |
-
msgid "CONNECTED"
|
752 |
-
msgstr "ΣΥΝΔΕΔΕΜΕΝΟ"
|
753 |
-
|
754 |
-
#: includes/views/general-settings.php:41
|
755 |
-
msgid "NOT CONNECTED"
|
756 |
-
msgstr "ΜΗ ΣΥΝΔΕΔΕΜΕΝΟ"
|
757 |
-
|
758 |
-
#: includes/views/general-settings.php:48
|
759 |
-
msgid "API Key"
|
760 |
-
msgstr "Κλειδί API"
|
761 |
-
|
762 |
-
#: includes/views/general-settings.php:50
|
763 |
-
msgid "Your MailChimp API key"
|
764 |
-
msgstr "Το κλειδί API του MailChimp"
|
765 |
-
|
766 |
-
#: includes/views/general-settings.php:52
|
767 |
-
msgid "The API key for connecting with your MailChimp account."
|
768 |
-
msgstr "Το κλειδί API για την σύνδεση με τον MailChimp λογαριασμό σας."
|
769 |
-
|
770 |
-
#: includes/views/general-settings.php:53
|
771 |
-
msgid "Get your API key here."
|
772 |
-
msgstr "Πάρτε το κλειδί API εδώ."
|
773 |
-
|
774 |
-
#: includes/views/general-settings.php:65
|
775 |
-
msgid "Usage Tracking"
|
776 |
-
msgstr "Εντοπισμός Χρήσης"
|
777 |
-
|
778 |
-
#: includes/views/general-settings.php:71
|
779 |
-
msgid ""
|
780 |
-
"Allow us to anonymously track how this plugin is used to help us make it "
|
781 |
-
"better fit your needs."
|
782 |
-
msgstr "Επιτρέψτε μας να εντοπίζουμε ανώνυμα, την χρήση αυτού του πρόσθετου, ώστε να μπορέσουμε να το προσαρμόσουμε καλύτερα στις ανάγκες σας."
|
783 |
-
|
784 |
-
#: includes/views/general-settings.php:73
|
785 |
-
msgid "This is what we track."
|
786 |
-
msgstr "Αυτό είναι που εντοπίζουμε."
|
787 |
-
|
788 |
-
#: includes/views/parts/admin-footer.php:11
|
789 |
-
msgid ""
|
790 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
791 |
-
"translated in your language or do you spot errors with the current "
|
792 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
793 |
-
"translation project and click \"help translate\"</a>."
|
794 |
-
msgstr "Το MailChimp για WordPress έχει ανάγκη από μεταφραστές. Δεν έχει μεταφραστεί το πρόσθετο στη γλώσσα σας ή βλέπετε σφάλματα στην υπάρχουσα μετάφραση; Είναι εύκολο να βοηθήσετε! Πηγαίνετε στο <a href=\"%s\">project της μετάφρασης και κλικάρετε \"help translate\"</a>."
|
795 |
-
|
796 |
-
#: includes/views/parts/admin-footer.php:31
|
797 |
-
msgid ""
|
798 |
-
"This plugin is not developed by or affiliated with MailChimp in any way."
|
799 |
-
msgstr "Αυτό το πρόσθετο δεν έχει αναπτυχθεί ή δεν είναι με κανένα τρόπο συνδεδεμένο με το MailChimp."
|
800 |
-
|
801 |
-
#: includes/views/parts/lists-overview.php:1
|
802 |
-
msgid "Your MailChimp Account"
|
803 |
-
msgstr "Ο MailChimp Λογαριασμός σας"
|
804 |
-
|
805 |
-
#: includes/views/parts/lists-overview.php:2
|
806 |
-
msgid ""
|
807 |
-
"The table below shows your MailChimp lists and their details. If you just "
|
808 |
-
"applied changes to your MailChimp lists, please use the following button to "
|
809 |
-
"renew the cached lists configuration."
|
810 |
-
msgstr "Ο παρακάτω πίνακας παρουσιάζει τα δεδομένα των λιστών σας στο MailChimp και τις λεπτομέρειές τους. Αν μόλις πραγματοποιήσατε αλλαγές στις λίστες σας στο MailChimp, παρακαλώ χρησιμοποιήστε το παρακάτω κουμπί για να ανανεώσετε τα δεδομένα προσωρινής μνήμης."
|
811 |
-
|
812 |
-
#: includes/views/parts/lists-overview.php:14
|
813 |
-
msgid "No lists were found in your MailChimp account"
|
814 |
-
msgstr "Δεν βρέθηκαν λίστες στον λογαριασμό σας στο MailChimp."
|
815 |
-
|
816 |
-
#: includes/views/parts/lists-overview.php:16
|
817 |
-
msgid "A total of %d lists were found in your MailChimp account."
|
818 |
-
msgstr "Συνολικά %d λίστες βρέθηκαν στον MailChimp λογαριασμό σας"
|
819 |
-
|
820 |
-
#: includes/views/parts/lists-overview.php:21
|
821 |
-
msgid "List Name"
|
822 |
-
msgstr "Όνομα Λίστας"
|
823 |
-
|
824 |
-
#: includes/views/parts/lists-overview.php:22
|
825 |
-
msgid "ID"
|
826 |
-
msgstr "ID"
|
827 |
-
|
828 |
-
#: includes/views/parts/lists-overview.php:23
|
829 |
-
msgid "Subscribers"
|
830 |
-
msgstr "Συνδρομητές"
|
831 |
-
|
832 |
-
#: includes/views/parts/lists-overview.php:45
|
833 |
-
msgid "Edit this list in MailChimp"
|
834 |
-
msgstr "Μεταβολή αυτής της λίστας στο MailChimp"
|
835 |
-
|
836 |
-
#: includes/views/parts/lists-overview.php:59
|
837 |
-
msgid "%s (%s) with field type %s."
|
838 |
-
msgstr "%s (%s) με τύπο πεδίου %s."
|
839 |
-
|
840 |
-
#: includes/views/parts/lists-overview.php:83
|
841 |
-
msgid "%s (ID: %s) with type %s."
|
842 |
-
msgstr "%s (ID: %s) με τύπο %s."
|
843 |
-
|
844 |
-
#: integrations/contact-form-7/admin-before.php:2
|
845 |
-
msgid ""
|
846 |
-
"To integrate with Contact Form 7, configure the settings below and then add "
|
847 |
-
"%s to your CF7 form mark-up."
|
848 |
-
msgstr "Για ενσωμάτωση με Contact Form 7, διαμορφώστε τις παρακάτω ρυθμίσεις και μετά προσθέστε το %s στο CF7 mark-up της φόρμας."
|
849 |
-
|
850 |
-
#: integrations/custom/admin-before.php:2
|
851 |
-
msgid ""
|
852 |
-
"To get a custom integration to work, include the following HTML in the form "
|
853 |
-
"you are trying to integrate with."
|
854 |
-
msgstr "Για να κάνετε μία προσαρμοσμένη ενσωμάτωση να λειτουργήσει, συμπεριλάβετε τον ακόλουθο HTML κώδικα στην φόρμα την οποία προσπαθείτε να ενσωματώσετε."
|
855 |
-
|
856 |
-
#: integrations/woocommerce/class-woocommerce.php:102
|
857 |
-
msgid "Order #%d"
|
858 |
-
msgstr "Παραγγελία #%d"
|
859 |
-
|
860 |
-
#. Plugin Name of the plugin/theme
|
861 |
-
msgid "MailChimp for WordPress"
|
862 |
-
msgstr "MailChimp για το WordPress"
|
863 |
-
|
864 |
-
#. Plugin URI of the plugin/theme
|
865 |
-
msgid ""
|
866 |
-
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
867 |
-
"wp&utm_campaign=plugins-page"
|
868 |
-
msgstr "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
869 |
-
|
870 |
-
#. Description of the plugin/theme
|
871 |
-
msgid ""
|
872 |
-
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
873 |
-
"methods to your site."
|
874 |
-
msgstr "MailChimp για WordPress από την ibericode. Προσθέτει ποικίλες και υψηλής απόδοσης μεθόδους εγγραφής στον ιστότοπό σας."
|
875 |
-
|
876 |
-
#. Author of the plugin/theme
|
877 |
-
msgid "ibericode"
|
878 |
-
msgstr "ibericode"
|
879 |
-
|
880 |
-
#. Author URI of the plugin/theme
|
881 |
-
msgid "https://ibericode.com/"
|
882 |
-
msgstr "https://ibericode.com/"
|
1 |
+
# Copyright (C) 2017 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
# Translators:
|
4 |
# Dimitris Lioris <lioris.dim@gmail.com>, 2015
|
5 |
# Ilias Pesmatzoglou <ipesmatzoglou@theknittingclub.gr>, 2016
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
13 |
+
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
|
|
|
|
14 |
"Language-Team: Greek (Greece) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/el_GR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Language: el_GR\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
+
"X-Poedit-Basepath: ..\n"
|
21 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
22 |
+
"X-Poedit-SearchPath-0: .\n"
|
23 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
24 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
25 |
|
26 |
+
#: includes/admin/class-admin-texts.php62,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
#: includes/forms/views/edit-form.php:6
|
28 |
msgid "Settings"
|
29 |
msgstr "Ρυθμίσεις"
|
32 |
msgid "Documentation"
|
33 |
msgstr "Τεκμηρίωση"
|
34 |
|
35 |
+
#: includes/admin/class-admin.php:204
|
36 |
msgid ""
|
37 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
38 |
msgstr "Επιτυχία! Η αποθηκευμένη διαμόρφωση για τις MailChimp λίστες σας έχει ανανεωθεί."
|
39 |
|
40 |
+
#: includes/admin/class-admin.php:304
|
41 |
msgid ""
|
42 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
43 |
" to use it."
|
44 |
msgstr "Αυτή είναι μία αναβαθμισμένη λειτουργία. Παρακαλούμε αναβαθμίστε στην premium έκδοση για να μπορείτε να την χρησιμοποιείτε."
|
45 |
|
46 |
+
#: includes/admin/class-admin.php305,
|
47 |
+
#: includes/views/parts/lists-overview.php10,
|
48 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
49 |
+
msgid "Renew MailChimp lists"
|
50 |
+
msgstr "Ανανέωση λιστών MailChimp"
|
51 |
+
|
52 |
+
#: includes/admin/class-admin.php:306
|
53 |
+
msgid "Fetching MailChimp lists"
|
54 |
+
msgstr ""
|
55 |
+
|
56 |
+
#: includes/admin/class-admin.php:307
|
57 |
+
msgid "Done! MailChimp lists renewed."
|
58 |
+
msgstr ""
|
59 |
+
|
60 |
+
#: includes/admin/class-admin.php:308
|
61 |
+
msgid "This can take a while if you have many MailChimp lists."
|
62 |
+
msgstr ""
|
63 |
+
|
64 |
+
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
65 |
msgid "MailChimp API Settings"
|
66 |
msgstr "Ρυθμίσεις MailChimp API"
|
67 |
|
68 |
+
#: includes/admin/class-admin.php:337
|
|
|
69 |
msgid "MailChimp"
|
70 |
msgstr "MailChimp"
|
71 |
|
72 |
+
#: includes/admin/class-admin.php343, includes/views/other-settings.php60,
|
73 |
+
#: includes/views/other-settings.php:70
|
74 |
+
msgid "Other Settings"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: includes/admin/class-admin.php:344
|
78 |
+
msgid "Other"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: includes/admin/class-admin.php:458
|
82 |
+
msgid "Log successfully emptied."
|
83 |
+
msgstr ""
|
84 |
|
85 |
+
#: includes/admin/class-admin.php:488
|
86 |
msgid ""
|
87 |
+
"To get started with MailChimp for WordPress, please <a href=\"%s\">enter "
|
88 |
+
"your MailChimp API key on the settings page of the plugin</a>."
|
89 |
+
msgstr ""
|
90 |
|
91 |
+
#: includes/admin/class-ads.php:39
|
92 |
+
msgid ""
|
93 |
+
"Want to customize the style of your form? <a href=\"%s\">Try our Styles "
|
94 |
+
"Builder</a> & edit the look of your forms with just a few clicks."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/admin/class-ads.php:54
|
98 |
+
msgid ""
|
99 |
+
"Be notified whenever someone subscribes? <a href=\"%s\">MailChimp for "
|
100 |
+
"WordPress Premium</a> allows you to set up email notifications for your "
|
101 |
+
"forms."
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: includes/admin/class-ads.php:56
|
105 |
+
msgid ""
|
106 |
+
"Increased conversions? <a href=\"%s\">MailChimp for WordPress Premium</a> "
|
107 |
+
"submits forms without reloading the entire page, resulting in a much better "
|
108 |
+
"experience for your visitors."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: includes/admin/class-ads.php:70
|
112 |
+
msgid "Upgrade to Premium"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: includes/admin/class-ads.php:83
|
116 |
+
msgid ""
|
117 |
+
"Do you want translated forms for all of your languages? <a href=\"%s\">Try "
|
118 |
+
"MailChimp for WordPress Premium</a>, which does just that plus more."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: includes/admin/class-ads.php:88
|
122 |
+
msgid ""
|
123 |
+
"Do you want to create more than one form? Our Premium add-on does just that!"
|
124 |
+
" <a href=\"%s\">Have a look at all Premium benefits</a>."
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/admin/class-ads.php:93
|
128 |
+
msgid ""
|
129 |
+
"Are you enjoying this plugin? The Premium add-on unlocks several powerful "
|
130 |
+
"features. <a href=\"%s\">Find out about all benefits now</a>."
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/admin/class-ads.php:112
|
134 |
msgid "More subscribers, better newsletters."
|
135 |
msgstr "Περισσότεροι συνδρομητές, καλύτερα ενημερωτικά δελτία."
|
136 |
|
137 |
+
#: includes/admin/class-ads.php:113
|
138 |
msgid ""
|
139 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
140 |
"our monthly tips."
|
141 |
msgstr "Εγγραφείτε στις μηνιαίες συμβουλές μας και μάθετε τον καλύτερο τρόπο να μεγαλώσετε τις λίστες σας καθώς και πως να γράφετε καλύτερα emails."
|
142 |
|
143 |
+
#: includes/admin/class-ads.php:116
|
144 |
msgid "Email Address"
|
145 |
msgstr "Διεύθυνση Email"
|
146 |
|
147 |
+
#: includes/admin/class-ads.php:120
|
148 |
msgid "First Name"
|
149 |
msgstr "Όνομα"
|
150 |
|
151 |
+
#: includes/admin/class-ads.php127, includes/forms/class-admin.php:94
|
152 |
msgid "Subscribe"
|
153 |
msgstr "Εγγραφή"
|
154 |
|
155 |
+
#: includes/admin/class-ads.php:150
|
156 |
+
msgid ""
|
157 |
+
"Do you want to track all WooCommerce orders in MailChimp so you can send "
|
158 |
+
"emails based on the purchase activity of your subscribers?"
|
159 |
+
msgstr ""
|
160 |
|
161 |
+
#: includes/admin/class-ads.php:153
|
162 |
+
msgid ""
|
163 |
+
"<a href=\"%s\">Upgrade to MailChimp for WordPress Premium</a> or <a "
|
164 |
+
"href=\"%s\">read more about MailChimp's E-Commerce features</a>."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: includes/admin/class-review-notice.php:68
|
168 |
+
msgid ""
|
169 |
+
"You've been using MailChimp for WordPress for some time now; we hope you "
|
170 |
+
"love it!"
|
171 |
+
msgstr ""
|
172 |
|
173 |
+
#: includes/admin/class-review-notice.php:69
|
174 |
+
msgid ""
|
175 |
+
"If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
|
176 |
+
"It would be of great help to us."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/admin/class-review-notice.php:71
|
180 |
+
msgid "Dismiss this notice."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/api/class-api.php:84
|
184 |
msgid "Read more about common connectivity issues."
|
185 |
msgstr "Διαβάστε περισσότερα για τα συνήθη προβλήματα συνδεσιμότητας."
|
186 |
|
187 |
+
#: includes/forms/class-admin.php:62
|
188 |
+
msgid "Add to form"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: includes/forms/class-admin.php:63
|
192 |
+
msgid "City"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: includes/forms/class-admin.php:64
|
196 |
+
msgid "Checkboxes"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: includes/forms/class-admin.php:65
|
200 |
+
msgid "Choices"
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: includes/forms/class-admin.php:66
|
204 |
+
msgid "Choice type"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: includes/forms/class-admin.php:67
|
208 |
+
msgid "Choose a field to add to the form"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: includes/forms/class-admin.php:68
|
212 |
+
msgid "Close"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: includes/forms/class-admin.php:69
|
216 |
+
msgid "Country"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: includes/forms/class-admin.php:70
|
220 |
+
msgid "Dropdown"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: includes/forms/class-admin.php:71
|
224 |
+
msgid "Field type"
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: includes/forms/class-admin.php:72
|
228 |
+
msgid "Field label"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: includes/forms/class-admin.php:73
|
232 |
+
msgid "Form action"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: includes/forms/class-admin.php:74
|
236 |
+
msgid ""
|
237 |
+
"This field will allow your visitors to choose whether they would like to "
|
238 |
+
"subscribe or unsubscribe"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/forms/class-admin.php:75
|
242 |
+
msgid "Form fields"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/forms/class-admin.php:76
|
246 |
+
msgid "This field is marked as required in MailChimp."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/forms/class-admin.php:77
|
250 |
+
msgid "Initial value"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/forms/class-admin.php:78
|
254 |
+
msgid "Interest categories"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/forms/class-admin.php:79
|
258 |
+
msgid "Is this field required?"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/forms/class-admin.php:80
|
262 |
+
msgid "List choice"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/forms/class-admin.php:81
|
266 |
+
msgid "This field will allow your visitors to choose a list to subscribe to."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/forms/class-admin.php:82
|
270 |
+
msgid "List fields"
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/forms/class-admin.php:83
|
274 |
+
msgid "Min"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: includes/forms/class-admin.php:84
|
278 |
+
msgid "Max"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: includes/forms/class-admin.php:85
|
282 |
+
msgid ""
|
283 |
+
"No available fields. Did you select a MailChimp list in the form settings?"
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: includes/forms/class-admin.php:86
|
287 |
+
msgid "Optional"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: includes/forms/class-admin.php:87
|
291 |
+
msgid "Placeholder"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: includes/forms/class-admin.php:88
|
295 |
+
msgid "Text to show when field has no value."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: includes/forms/class-admin.php:89
|
299 |
+
msgid "Preselect"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/forms/class-admin.php:90
|
303 |
+
msgid "Remove"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/forms/class-admin.php:91
|
307 |
+
msgid "Radio buttons"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/forms/class-admin.php:92
|
311 |
+
msgid "Street Address"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/forms/class-admin.php:93
|
315 |
+
msgid "State"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/forms/class-admin.php:95
|
319 |
+
msgid "Submit button"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/forms/class-admin.php:96
|
323 |
+
msgid "Wrap in paragraph tags?"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/forms/class-admin.php:97
|
327 |
+
msgid "Value"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/forms/class-admin.php:98
|
331 |
+
msgid "Text to prefill this field with."
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: includes/forms/class-admin.php:99
|
335 |
+
msgid "ZIP"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
339 |
+
#: includes/forms/views/edit-form.php:24
|
340 |
msgid "Forms"
|
341 |
msgstr "Φόρμες"
|
342 |
|
343 |
+
#: includes/forms/class-admin.php152, includes/forms/class-admin.php:276
|
344 |
msgid "<strong>Success!</strong> Form successfully saved."
|
345 |
msgstr "<strong>Επιτυχία!</strong> Η φόρμα αποθηκεύτηκε επιτυχώς."
|
346 |
|
347 |
+
#: includes/forms/class-admin.php:276
|
348 |
msgid "Preview form"
|
349 |
msgstr "Προβολή φόρμας"
|
350 |
|
351 |
+
#: includes/forms/class-admin.php449, includes/forms/class-widget.php:30
|
352 |
+
msgid "MailChimp Sign-Up Form"
|
353 |
+
msgstr "Φόρμα Εγγραφής MailChimp"
|
354 |
|
355 |
+
#: includes/forms/class-admin.php:453
|
356 |
+
msgid "Select the form to show"
|
357 |
+
msgstr ""
|
358 |
|
359 |
+
#: includes/forms/class-form-previewer.php:146
|
360 |
msgid "Form preview"
|
361 |
msgstr "Προβολή φόρμας"
|
362 |
|
363 |
+
#: includes/forms/class-form-tags.php:60
|
364 |
msgid "Replaced with the form response (error or success messages)."
|
365 |
msgstr "Αντικαθίσταται με τη φόρμα απάντησης (μηνύματα επιτυχίας ή σφάλματος)."
|
366 |
|
367 |
+
#: includes/forms/class-form-tags.php:65
|
368 |
msgid "Data from the URL or a submitted form."
|
369 |
msgstr "Δεδομένα από το URL ή από μία υποβληθείσα φόρμα."
|
370 |
|
371 |
+
#: includes/forms/class-form-tags.php:71
|
372 |
+
msgid "Data from a cookie."
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: includes/forms/class-form-tags.php77,
|
376 |
#: includes/integrations/class-integration-tags.php:45
|
377 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
378 |
msgstr "Αντικαθίσταται με τον αριθμό συνδρομητών στην επιλεγμένη λίστα(ες)"
|
379 |
|
380 |
+
#: includes/forms/class-form-tags.php:82
|
381 |
msgid "The email address of the current visitor (if known)."
|
382 |
msgstr "Η διεύθυνση email του τρέχοντα επισκέπτη (εάν είναι γωνστή)."
|
383 |
|
384 |
+
#: includes/forms/class-form-tags.php:87
|
385 |
msgid "The URL of the page."
|
386 |
msgstr "Το URL της σελίδας."
|
387 |
|
388 |
+
#: includes/forms/class-form-tags.php:92
|
389 |
msgid "The path of the page."
|
390 |
msgstr "Η διαδρομή της σελίδας."
|
391 |
|
392 |
+
#: includes/forms/class-form-tags.php:97
|
393 |
msgid "The current date. Example: %s."
|
394 |
msgstr "Η τρέχουσα ημερομηνία. Παράδειγμα: %s."
|
395 |
|
396 |
+
#: includes/forms/class-form-tags.php:102
|
397 |
msgid "The current time. Example: %s."
|
398 |
msgstr "Η τρέχουσα ώρα. Παράδειγμα: %s."
|
399 |
|
400 |
+
#: includes/forms/class-form-tags.php:107
|
401 |
msgid "The site's language. Example: %s."
|
402 |
msgstr "Η γλώσσα της ιστοσελίδας. Παράδειγμα: %s."
|
403 |
|
404 |
+
#: includes/forms/class-form-tags.php:112
|
405 |
msgid "The visitor's IP address. Example: %s."
|
406 |
msgstr "Η διεύθυνση IP του επισκέπτη. Παράδειγμα: %s."
|
407 |
|
408 |
+
#: includes/forms/class-form-tags.php:117
|
409 |
msgid "The property of the currently logged-in user."
|
410 |
msgstr "Η ιδιότητα του τρέχοντος συνδεδεμένου χρήστη."
|
411 |
|
412 |
+
#: includes/forms/class-form-tags.php:123
|
413 |
+
msgid "Property of the current page or post."
|
414 |
+
msgstr ""
|
415 |
+
|
416 |
+
#: includes/forms/class-form.php:133
|
417 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
418 |
msgstr "Η φόρμα με ID %d δεν υπάρχει, μήπως έχει διαγραφεί;"
|
419 |
|
421 |
msgid "Newsletter"
|
422 |
msgstr "Newsletter"
|
423 |
|
|
|
|
|
|
|
|
|
424 |
#: includes/forms/class-widget.php:32
|
425 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
426 |
msgstr "Εμφανίζει την φόρμα εγγραφής του MailChimp για WordPress"
|
435 |
" form settings</a>."
|
436 |
msgstr "Μπορείτε να τροποποιήσετε την φόρμα εγγραφής σας στις <a href=\"%s\">Ρυθμίσεις φόρμας του MailChimp για Wordpress</a>."
|
437 |
|
438 |
+
#: includes/integrations/class-admin.php79,
|
439 |
+
#: includes/integrations/class-admin.php80,
|
440 |
+
#: includes/integrations/views/integration-settings.php10,
|
441 |
+
#: includes/integrations/views/integrations.php57,
|
442 |
+
#: includes/integrations/views/integrations.php:65
|
443 |
+
msgid "Integrations"
|
444 |
+
msgstr "Ενσωματώσεις"
|
445 |
+
|
446 |
+
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
447 |
+
#: includes/forms/views/edit-form.php22,
|
448 |
+
#: includes/integrations/views/integration-settings.php8,
|
449 |
+
#: includes/integrations/views/integrations.php:55
|
450 |
+
msgid "You are here: "
|
451 |
+
msgstr "Είστε εδώ:"
|
452 |
+
|
453 |
+
#: includes/views/general-settings.php:18
|
454 |
+
msgid "General Settings"
|
455 |
+
msgstr "Γενικές Ρυθμίσεις"
|
456 |
+
|
457 |
+
#: includes/views/general-settings.php:38
|
458 |
+
msgid "Status"
|
459 |
+
msgstr "Κατάσταση"
|
460 |
+
|
461 |
+
#: includes/views/general-settings.php:42
|
462 |
+
msgid "CONNECTED"
|
463 |
+
msgstr "ΣΥΝΔΕΔΕΜΕΝΟ"
|
464 |
+
|
465 |
+
#: includes/views/general-settings.php:44
|
466 |
+
msgid "NOT CONNECTED"
|
467 |
+
msgstr "ΜΗ ΣΥΝΔΕΔΕΜΕΝΟ"
|
468 |
+
|
469 |
+
#: includes/views/general-settings.php:51
|
470 |
+
msgid "API Key"
|
471 |
+
msgstr "Κλειδί API"
|
472 |
+
|
473 |
+
#: includes/views/general-settings.php:53
|
474 |
+
msgid "Your MailChimp API key"
|
475 |
+
msgstr "Το κλειδί API του MailChimp"
|
476 |
+
|
477 |
+
#: includes/views/general-settings.php:55
|
478 |
+
msgid "The API key for connecting with your MailChimp account."
|
479 |
+
msgstr "Το κλειδί API για την σύνδεση με τον MailChimp λογαριασμό σας."
|
480 |
+
|
481 |
+
#: includes/views/general-settings.php:56
|
482 |
+
msgid "Get your API key here."
|
483 |
+
msgstr "Πάρτε το κλειδί API εδώ."
|
484 |
+
|
485 |
+
#: includes/views/other-settings.php:14
|
486 |
+
msgid "Miscellaneous settings"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/views/other-settings.php:17
|
490 |
+
msgid "Usage Tracking"
|
491 |
+
msgstr "Εντοπισμός Χρήσης"
|
492 |
+
|
493 |
+
#: includes/views/other-settings.php:29
|
494 |
+
msgid ""
|
495 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
496 |
+
"better fit your needs."
|
497 |
+
msgstr "Επιτρέψτε μας να εντοπίζουμε ανώνυμα, την χρήση αυτού του πρόσθετου, ώστε να μπορέσουμε να το προσαρμόσουμε καλύτερα στις ανάγκες σας."
|
498 |
+
|
499 |
+
#: includes/views/other-settings.php:31
|
500 |
+
msgid "This is what we track."
|
501 |
+
msgstr "Αυτό είναι που εντοπίζουμε."
|
502 |
+
|
503 |
+
#: includes/views/other-settings.php:37
|
504 |
+
msgid "Logging"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: includes/views/other-settings.php:44
|
508 |
+
msgid ""
|
509 |
+
"Determines what events should be written to <a href=\"%s\">the debug log</a>"
|
510 |
+
" (see below)."
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: includes/views/other-settings.php:99
|
514 |
+
msgid "Debug Log"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: includes/views/other-settings.php:99
|
518 |
+
msgid "Filter.."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: includes/views/other-settings.php:104
|
522 |
+
msgid "Log file is not writable."
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: includes/views/other-settings.php:105
|
526 |
+
msgid "Please ensure %s has the proper <a href=\"%s\">file permissions</a>."
|
527 |
+
msgstr ""
|
528 |
+
|
529 |
+
#: includes/views/other-settings.php:123
|
530 |
+
msgid "Nothing here. Which means there are no errors!"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: includes/views/other-settings.php:133
|
534 |
+
msgid "Empty Log"
|
535 |
+
msgstr ""
|
536 |
+
|
537 |
+
#: includes/views/other-settings.php:141
|
538 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
539 |
+
msgstr ""
|
540 |
+
|
541 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
542 |
+
msgid "Default sign-up form"
|
543 |
+
msgstr "Προεπιλεγμένη φόρμα εγγραφής"
|
544 |
+
|
545 |
+
#: includes/forms/views/add-form.php10, includes/forms/views/add-form.php:60
|
546 |
msgid "Add new form"
|
547 |
msgstr "Προσθήκη νέας φόρμας"
|
548 |
|
570 |
msgid "Messages"
|
571 |
msgstr "Μηνύματα"
|
572 |
|
573 |
+
#: includes/forms/views/edit-form.php:7
|
574 |
+
msgid "Appearance"
|
575 |
+
msgstr "Εμφάνιση:"
|
576 |
+
|
577 |
+
#: includes/forms/views/edit-form.php:25
|
578 |
+
msgid "Form"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: includes/forms/views/edit-form.php:34
|
582 |
+
msgid "Edit Form"
|
583 |
+
msgstr "Αλλαγή Φόρμας"
|
584 |
+
|
585 |
+
#: includes/forms/views/edit-form.php:58
|
586 |
+
msgid "Enter form title here"
|
587 |
+
msgstr "Εισάγετε εδώ τον τίτλο της φόρμας"
|
588 |
+
|
589 |
+
#: includes/forms/views/edit-form.php:59
|
590 |
+
msgid "Enter the title of your sign-up form"
|
591 |
+
msgstr "Εισάγετε τον τίτλο της φόρμας εγγραφής σας"
|
592 |
+
|
593 |
+
#: includes/forms/views/edit-form.php:65
|
594 |
+
msgid "Shortcode"
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: includes/forms/views/edit-form.php:67
|
598 |
+
msgid "Get shortcode"
|
599 |
+
msgstr "Πάρτε τον σύντομο κωδικό shortcode"
|
600 |
+
|
601 |
+
#: includes/forms/views/edit-form.php:72
|
602 |
+
msgid "Preview this form"
|
603 |
+
msgstr "Προβολή αυτής της φόρμας"
|
604 |
+
|
605 |
+
#: includes/integrations/views/integration-settings.php:20
|
606 |
+
msgid "%s integration"
|
607 |
+
msgstr "%s ενσωμάτωση"
|
608 |
+
|
609 |
+
#: includes/integrations/views/integration-settings.php:27
|
610 |
+
msgid ""
|
611 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
612 |
+
"this integration from working."
|
613 |
+
msgstr "Οι επιλεγμένες MailChimp λίστες απαιτούν μη προκαθορισμένα πεδία, τα οποία μπορεί να προκαλέσουν την μη λειτουργία της ενσωμάτωσης."
|
614 |
+
|
615 |
+
#: includes/integrations/views/integration-settings.php:28
|
616 |
+
msgid ""
|
617 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
618 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
619 |
+
"sure only the email & name fields are marked as required fields for the "
|
620 |
+
"selected list(s)."
|
621 |
+
msgstr "Παρακαλώ διασφαλίστε ότι εσείς <a href=\"%s\">θα διαμορφώσετε το πρόσθετο να στέλνει όλα τα υποχρεωτικά πεδία</a> ή <a href=\"%s\">το αρχείο καταγραφής στον MailChimp λογαριασμό σας</a> και βεβαιωθείτε ότι μόνο τα πεδία email & όνομα είναι χαρακτηρισμένα ως υποχρεωτικά για την επιλεγμένη λίστα(ες)."
|
622 |
+
|
623 |
+
#: includes/integrations/views/integration-settings.php:62
|
624 |
+
msgid "Enabled?"
|
625 |
+
msgstr "Ενεργοποιημένο;"
|
626 |
+
|
627 |
+
#: includes/integrations/views/integration-settings.php:66
|
628 |
+
msgid ""
|
629 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
630 |
+
msgstr "Ενεργοποίηση της ενσωμάτωσης %s; Αυτό θα προσθέσει ένα πεδίο εγγραφής στη φόρμα."
|
631 |
+
|
632 |
+
#: includes/integrations/views/integration-settings.php:76
|
633 |
+
msgid "Implicit?"
|
634 |
+
msgstr "Σιωπηρά;"
|
635 |
+
|
636 |
+
#: includes/integrations/views/integration-settings.php:80
|
637 |
+
msgid ""
|
638 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
639 |
+
"(recommended)."
|
640 |
+
msgstr "Επιλέξτε \"όχι\" εάν θέλετε να ερωτώνται οι επισκέπτες σας πριν να εγγραφούν (συνίσταται)."
|
641 |
+
|
642 |
+
#: includes/integrations/views/integration-settings.php:90
|
643 |
+
msgid "MailChimp Lists"
|
644 |
+
msgstr "Λίστες MailChimp"
|
645 |
+
|
646 |
+
#: includes/integrations/views/integration-settings.php:103
|
647 |
+
msgid ""
|
648 |
+
"Select the list(s) to which people who check the checkbox should be "
|
649 |
+
"subscribed."
|
650 |
+
msgstr "Επιλέξτε τη λίστα(ες) στην οποία θα εγγράφονται όσοι επιλέγουν το checkbox."
|
651 |
+
|
652 |
+
#: includes/integrations/views/integration-settings.php107,
|
653 |
+
#: includes/forms/views/tabs/form-settings.php:18
|
654 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
655 |
+
msgstr "Δεν βρέθηκαν λίστες, <a href=\"%s\">είστε συνδεδεμένοι στο MailChimp</a>;"
|
656 |
+
|
657 |
+
#: includes/integrations/views/integration-settings.php:116
|
658 |
+
msgid "Checkbox label text"
|
659 |
+
msgstr "Κείμενο ετικέτας checkbox"
|
660 |
+
|
661 |
+
#: includes/integrations/views/integration-settings.php:119
|
662 |
+
msgid "HTML tags like %s are allowed in the label text."
|
663 |
+
msgstr "Οι ετικέτες HTML όπως %s επιτρέπονται στο κείμενο της ετικέτας."
|
664 |
+
|
665 |
+
#: includes/integrations/views/integration-settings.php:129
|
666 |
+
msgid "Pre-check the checkbox?"
|
667 |
+
msgstr "Να είναι το checkbox προεπιλεγμένο;"
|
668 |
+
|
669 |
+
#: includes/integrations/views/integration-settings.php:133
|
670 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
671 |
+
msgstr "Επιλέξτε \"ναι\" εάν θέλετε να έρχεται προεπιλεγμένο το πεδίο."
|
672 |
+
|
673 |
+
#: includes/integrations/views/integration-settings.php:141
|
674 |
+
msgid "Load some default CSS?"
|
675 |
+
msgstr "Να φορτωθεί κάποιο προεπιλεγμένο CSS;"
|
676 |
+
|
677 |
+
#: includes/integrations/views/integration-settings.php:145
|
678 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
679 |
+
msgstr "Επιλέξτε \"ναι\" αν το checkbox εμφανίζεται σε ένα περίεργο σημείο."
|
680 |
+
|
681 |
+
#: includes/integrations/views/integration-settings.php:152
|
682 |
+
msgid "Double opt-in?"
|
683 |
+
msgstr "Διπλή επιβεβαίωση (double opt-in);"
|
684 |
+
|
685 |
+
#: includes/integrations/views/integration-settings.php:163
|
686 |
+
msgid ""
|
687 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
688 |
+
"being subscribed (recommended)"
|
689 |
+
msgstr "Επιλέξτε \"ναι\" εάν θέλετε οι χρήστες να επιβεβαιώνουν την ηλεκτρονική τους διεύθυνση προτού εγγραφούν (προτείνεται)"
|
690 |
+
|
691 |
+
#: includes/integrations/views/integration-settings.php171,
|
692 |
+
#: includes/forms/views/tabs/form-settings.php:52
|
693 |
+
msgid "Update existing subscribers?"
|
694 |
+
msgstr "Να ενημερωθούν τα στοιχεία των ήδη εγγεγραμμένων;"
|
695 |
+
|
696 |
+
#: includes/integrations/views/integration-settings.php181,
|
697 |
+
#: includes/forms/views/tabs/form-settings.php:62
|
698 |
+
msgid ""
|
699 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
700 |
+
" is sent."
|
701 |
+
msgstr "Επιλέξτε \"ναι\" αν θέλετε να ενημερώσετε τους υπάρχοντες συνδρομητές με τα δεδομένα που στάλθηκαν."
|
702 |
+
|
703 |
+
#: includes/integrations/views/integration-settings.php190,
|
704 |
+
#: includes/forms/views/tabs/form-settings.php:68
|
705 |
+
msgid "Replace interest groups?"
|
706 |
+
msgstr "Να αντικατασταθούν οι ομάδες ενδιαφερόντων;"
|
707 |
+
|
708 |
+
#: includes/integrations/views/integration-settings.php201,
|
709 |
+
#: includes/forms/views/tabs/form-settings.php:79
|
710 |
+
msgid ""
|
711 |
+
"Select \"no\" if you want to add the selected interests to any previously "
|
712 |
+
"selected interests when updating a subscriber."
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: includes/integrations/views/integration-settings.php202,
|
716 |
+
#: includes/forms/views/tabs/form-settings.php:80
|
717 |
+
msgid "What does this do?"
|
718 |
+
msgstr "Τι κάνει αυτό;"
|
719 |
+
|
720 |
+
#: includes/integrations/views/integrations.php:17
|
721 |
+
msgid "Name"
|
722 |
+
msgstr "Όνομα"
|
723 |
+
|
724 |
+
#: includes/integrations/views/integrations.php:18
|
725 |
+
msgid "Description"
|
726 |
+
msgstr "Περιγραφή"
|
727 |
+
|
728 |
+
#: includes/integrations/views/integrations.php:35
|
729 |
+
msgid "Configure this integration"
|
730 |
+
msgstr "Διαμόρφωση αυτής της ενσωμάτωσης"
|
731 |
+
|
732 |
+
#: includes/integrations/views/integrations.php:71
|
733 |
+
msgid "The table below shows all available integrations."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/integrations/views/integrations.php:72
|
737 |
+
msgid ""
|
738 |
+
"Click on the name of an integration to edit all settings specific to that "
|
739 |
+
"integration."
|
740 |
+
msgstr ""
|
741 |
+
|
742 |
+
#: includes/integrations/views/integrations.php:79
|
743 |
+
msgid "Enabled integrations"
|
744 |
+
msgstr ""
|
745 |
+
|
746 |
+
#: includes/integrations/views/integrations.php:84
|
747 |
+
msgid "Available integrations"
|
748 |
+
msgstr ""
|
749 |
+
|
750 |
+
#: includes/views/parts/admin-footer.php:15
|
751 |
+
msgid ""
|
752 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
753 |
+
"translated in your language or do you spot errors with the current "
|
754 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
755 |
+
"translation project and click \"help translate\"</a>."
|
756 |
+
msgstr "Το MailChimp για WordPress έχει ανάγκη από μεταφραστές. Δεν έχει μεταφραστεί το πρόσθετο στη γλώσσα σας ή βλέπετε σφάλματα στην υπάρχουσα μετάφραση; Είναι εύκολο να βοηθήσετε! Πηγαίνετε στο <a href=\"%s\">project της μετάφρασης και κλικάρετε \"help translate\"</a>."
|
757 |
+
|
758 |
+
#: includes/views/parts/admin-footer.php:35
|
759 |
+
msgid ""
|
760 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
761 |
+
msgstr "Αυτό το πρόσθετο δεν έχει αναπτυχθεί ή δεν είναι με κανένα τρόπο συνδεδεμένο με το MailChimp."
|
762 |
+
|
763 |
+
#: includes/views/parts/admin-sidebar.php:11
|
764 |
+
msgid "Looking for help?"
|
765 |
+
msgstr ""
|
766 |
+
|
767 |
+
#: includes/views/parts/admin-sidebar.php:12
|
768 |
+
msgid "We have some resources available to help you in the right direction."
|
769 |
+
msgstr ""
|
770 |
+
|
771 |
+
#: includes/views/parts/admin-sidebar.php:14
|
772 |
+
msgid "Knowledge Base"
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: includes/views/parts/admin-sidebar.php:15
|
776 |
+
msgid "Frequently Asked Questions"
|
777 |
+
msgstr ""
|
778 |
+
|
779 |
+
#: includes/views/parts/admin-sidebar.php:16
|
780 |
+
msgid "Code reference for developers"
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: includes/views/parts/admin-sidebar.php:36
|
784 |
+
msgid "Looking to improve your sign-up rates?"
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: includes/views/parts/admin-sidebar.php:37
|
788 |
+
msgid ""
|
789 |
+
"Our <a href=\"%s\">Boxzilla plugin</a> allows you to create pop-ups or "
|
790 |
+
"slide-ins with a subscribe form. A sure way to grow your lists faster."
|
791 |
+
msgstr ""
|
792 |
+
|
793 |
+
#: includes/views/parts/lists-overview.php:1
|
794 |
+
msgid "Your MailChimp Account"
|
795 |
+
msgstr "Ο MailChimp Λογαριασμός σας"
|
796 |
+
|
797 |
+
#: includes/views/parts/lists-overview.php:2
|
798 |
+
msgid ""
|
799 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
800 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
801 |
+
"renew the cached lists configuration."
|
802 |
+
msgstr "Ο παρακάτω πίνακας παρουσιάζει τα δεδομένα των λιστών σας στο MailChimp και τις λεπτομέρειές τους. Αν μόλις πραγματοποιήσατε αλλαγές στις λίστες σας στο MailChimp, παρακαλώ χρησιμοποιήστε το παρακάτω κουμπί για να ανανεώσετε τα δεδομένα προσωρινής μνήμης."
|
803 |
+
|
804 |
+
#: includes/views/parts/lists-overview.php:17
|
805 |
+
msgid "No lists were found in your MailChimp account"
|
806 |
+
msgstr "Δεν βρέθηκαν λίστες στον λογαριασμό σας στο MailChimp."
|
807 |
|
808 |
+
#: includes/views/parts/lists-overview.php:19
|
809 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
810 |
+
msgstr "Συνολικά %d λίστες βρέθηκαν στον MailChimp λογαριασμό σας"
|
|
|
|
|
|
|
811 |
|
812 |
+
#: includes/views/parts/lists-overview.php:24
|
813 |
+
msgid "List Name"
|
814 |
+
msgstr "Όνομα Λίστας"
|
815 |
|
816 |
+
#: includes/views/parts/lists-overview.php:25
|
817 |
+
msgid "ID"
|
818 |
+
msgstr "ID"
|
819 |
|
820 |
+
#: includes/views/parts/lists-overview.php:26
|
821 |
+
msgid "Subscribers"
|
822 |
+
msgstr "Συνδρομητές"
|
823 |
|
824 |
+
#: includes/views/parts/lists-overview.php:48
|
825 |
+
msgid "Edit this list in MailChimp"
|
826 |
+
msgstr "Μεταβολή αυτής της λίστας στο MailChimp"
|
827 |
|
828 |
+
#: includes/views/parts/lists-overview.php:62
|
829 |
+
msgid "%s (%s) with field type %s."
|
830 |
+
msgstr "%s (%s) με τύπο πεδίου %s."
|
831 |
|
832 |
+
#: includes/forms/views/parts/add-fields-help.php4,
|
833 |
#: includes/forms/views/tabs/form-fields.php:10
|
834 |
msgid "Add more fields"
|
835 |
msgstr "Προσθήκη περισσότερων πεδίων"
|
866 |
"changes."
|
867 |
msgstr "Πατήστε το παρακάτω για να επιτρέψετε στο MailChimp για WordPress να εφαρμόσει τις αλλαγές σας."
|
868 |
|
|
|
|
|
|
|
|
|
|
|
869 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
870 |
msgid "Add dynamic form variable"
|
871 |
msgstr "Προσθέστε δυναμική μεταβλητή φόρμας"
|
938 |
msgid "Enter the HTML code for your form fields.."
|
939 |
msgstr "Εισάγετε τον HTML κώδικα για τα πεδία της φόρμας σας."
|
940 |
|
941 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
|
|
|
|
|
|
|
|
942 |
msgid ""
|
943 |
"Use the shortcode %s to display this form inside a post, page or text "
|
944 |
"widget."
|
945 |
msgstr "Χρησιμοποιήστε το shortcode %s για να εμφανίσετε αυτή τη φόρμα μέσα σε ένα άρθρο, μία σελίδα ή μία μονάδα κειμένου."
|
946 |
|
947 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
948 |
msgid "Form Messages"
|
949 |
msgstr "Μηνύματα Φόρμας"
|
950 |
|
951 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
952 |
msgid "Successfully subscribed"
|
953 |
msgstr "Εγγραφήκατε επιτυχώς"
|
954 |
|
955 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
956 |
msgid ""
|
957 |
"The text that shows when an email address is successfully subscribed to the "
|
958 |
"selected list(s)."
|
959 |
msgstr "Το κείμενο που εμφανίζεται όταν μια διεύθυνση ηλ. ταχυδρομείου εγγράφεται επιτυχώς στην επιλεγμένη λίστα (ή λίστες)."
|
960 |
|
961 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
962 |
msgid "Invalid email address"
|
963 |
msgstr "Η διεύθυνση e-mail δεν είναι έγκυρη"
|
964 |
|
965 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
966 |
msgid "The text that shows when an invalid email address is given."
|
967 |
msgstr "Το κείμενο που εμφανίζεται όταν μια διεύθυνση ηλ. ταχυδρομείου που επιχειρεί εγγραφή δεν είναι έγκυρη."
|
968 |
|
969 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
970 |
msgid "Required field missing"
|
971 |
msgstr "Δεν έχει συμπληρωθεί κάποιο απαραίτητο πεδίο"
|
972 |
|
973 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
974 |
msgid ""
|
975 |
"The text that shows when a required field for the selected list(s) is "
|
976 |
"missing."
|
977 |
msgstr "Το κείμενο που εμφανίζεται όταν ένα υποχρεωτικό πεδίο για την επιλεγμένη λίστα (ή λίστες) δεν έχει συμπληρωθεί."
|
978 |
|
979 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
980 |
msgid "Already subscribed"
|
981 |
msgstr "Έχετε ήδη εγγραφεί"
|
982 |
|
983 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
984 |
msgid ""
|
985 |
"The text that shows when the given email is already subscribed to the "
|
986 |
"selected list(s)."
|
987 |
msgstr "Το κείμενο που εμφανίζεται όταν η διεύθυνση ηλ. ταχυδρομείου που επιχειρεί εγγραφή είναι εγγεγραμμένη στην επιλεγμένη λίστα (ή λίστες)."
|
988 |
|
989 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
990 |
msgid "General error"
|
991 |
msgstr "Γενικό σφάλμα"
|
992 |
|
993 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
994 |
msgid "The text that shows when a general error occured."
|
995 |
msgstr "Το κείμενο που εμφανίζεται όταν προκύπτει κάποιο γενικό σφάλμα."
|
996 |
|
997 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
998 |
msgid "Unsubscribed"
|
999 |
msgstr "Απεγγραφή"
|
1000 |
|
1001 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
1002 |
msgid ""
|
1003 |
"When using the unsubscribe method, this is the text that shows when the "
|
1004 |
"given email address is successfully unsubscribed from the selected list(s)."
|
1005 |
msgstr "Όταν γίνεται χρήση της μεθόδου κατάργησης εγγραφής, αυτό είναι το κείμενο που εμφανίζεται όταν η συγκεκριμένη διεύθυνση e-mail έχει απεγγραφεί επιτυχώς από την επιλεγμένη λίστα (ή λίστες)."
|
1006 |
|
1007 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1008 |
msgid "Not subscribed"
|
1009 |
msgstr "Μη εγγεγραμμένη"
|
1010 |
|
1011 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1012 |
msgid ""
|
1013 |
"When using the unsubscribe method, this is the text that shows when the "
|
1014 |
"given email address is not on the selected list(s)."
|
1015 |
msgstr "Όταν γίνεται χρήση της μεθόδου κατάργησης εγγραφής, αυτό είναι το κείμενο που εμφανίζεται όταν η συγκεκριμένη διεύθυνση e-mail δεν υπάρχει στην επιλεγμένη λίστα (ή λίστες)."
|
1016 |
|
1017 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1018 |
+
msgid "No list selected"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1022 |
+
msgid ""
|
1023 |
+
"When offering a list choice, this is the text that shows when no lists were "
|
1024 |
+
"selected."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/forms/views/tabs/form-messages.php:74
|
1028 |
+
msgid "Updated"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/forms/views/tabs/form-messages.php:77
|
1032 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: includes/forms/views/tabs/form-messages.php:89
|
1036 |
msgid "HTML tags like %s are allowed in the message fields."
|
1037 |
msgstr "Οι ετικέτες HTML όπως %s επιτρέπονται στα πεδία του μηνύματος."
|
1038 |
|
1044 |
msgid "MailChimp specific settings"
|
1045 |
msgstr "Ρυθμίσεις MailChimp"
|
1046 |
|
1047 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1048 |
msgid "Lists this form subscribes to"
|
1049 |
msgstr "Λίστες στις οποίες γίνεται εγγραφή από αυτή τη φόρμα"
|
1050 |
|
1051 |
+
#: includes/forms/views/tabs/form-settings.php:31
|
|
|
|
|
|
|
|
|
|
|
1052 |
msgid ""
|
1053 |
"Select the list(s) to which people who submit this form should be "
|
1054 |
"subscribed."
|
1055 |
msgstr "Επιλέξτε τη λίστα(ες) στην οποία θα εγγράφονται όσοι υποβάλλουν αυτή τη φόρμα."
|
1056 |
|
1057 |
+
#: includes/forms/views/tabs/form-settings.php:37
|
1058 |
msgid "Use double opt-in?"
|
1059 |
msgstr "Χρήση διπλής επιβεβαίωσης (double opt-in);"
|
1060 |
|
1061 |
+
#: includes/forms/views/tabs/form-settings.php:44
|
1062 |
+
msgid "Are you sure you want to disable double opt-in?"
|
1063 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1064 |
|
1065 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
|
|
1066 |
msgid ""
|
1067 |
+
"We strongly suggest keeping double opt-in enabled. Disabling double opt-in "
|
1068 |
+
"may result in abuse."
|
1069 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1070 |
|
1071 |
+
#: includes/forms/views/tabs/form-settings.php:94
|
1072 |
msgid "Form behaviour"
|
1073 |
msgstr "Συμπεριφορά φόρμας"
|
1074 |
|
1075 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
1076 |
msgid "Hide form after a successful sign-up?"
|
1077 |
msgstr "Να κρύβεται η φόρμα έπειτα από μία επιτυχημένη εγγραφή;"
|
1078 |
|
1079 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
1080 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1081 |
msgstr "Επιλέξτε \"ναι\" ώστε να κρύβεται η φόρμα έπειτα από μία επιτυχημένη εγγραφή."
|
1082 |
|
1083 |
+
#: includes/forms/views/tabs/form-settings.php:120
|
1084 |
msgid "Redirect to URL after successful sign-ups"
|
1085 |
msgstr "Ανακατεύθυνση σε URL έπειτα από επιτυχημένες εγγραφές"
|
1086 |
|
1087 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
1088 |
msgid "Example: %s"
|
1089 |
msgstr "Παράδειγμα: %s"
|
1090 |
|
1091 |
+
#: includes/forms/views/tabs/form-settings.php:123
|
1092 |
msgid ""
|
1093 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
1094 |
" (absolute) URLs, including <code>http://</code>."
|
1095 |
msgstr "Αφήστε το κενό ή εισάγετε <code>0</code> εάν δεν θέλετε να γίνεται ανακατεύθυνση. Διαφορετικά, χρησιμοποιήστε πλήρη (απόλυτα) URL, συμπεριλαμβανομένου του <code>http://</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mailchimp-for-wp-es_ES.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-es_ES.po
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
msgid ""
|
21 |
msgstr ""
|
22 |
"Project-Id-Version: MailChimp for WordPress\n"
|
23 |
-
"PO-Revision-Date: 2017-
|
24 |
"Last-Translator: Xavier Gimeno Torrent\n"
|
25 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/es_ES/)\n"
|
26 |
"MIME-Version: 1.0\n"
|
20 |
msgid ""
|
21 |
msgstr ""
|
22 |
"Project-Id-Version: MailChimp for WordPress\n"
|
23 |
+
"PO-Revision-Date: 2017-09-23 20:18+0000\n"
|
24 |
"Last-Translator: Xavier Gimeno Torrent\n"
|
25 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/es_ES/)\n"
|
26 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-fa_IR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fa_IR.po
CHANGED
@@ -4,13 +4,14 @@
|
|
4 |
# A.Mehraban <Mehr.Ban@chmail.ir>, 2015
|
5 |
# Ardavan Afrasiyabi <abox@usa.com>, 2015
|
6 |
# mahnaz vahedi <mahnazvn@yahoo.com>, 2016
|
|
|
7 |
# Salar Gholizadeh <salar.g@gmail.com>, 2017
|
8 |
# zeinab bakhtiari <carolinazb9@gmail.com>, 2017
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
-
"PO-Revision-Date: 2017-
|
13 |
-
"Last-Translator:
|
14 |
"Language-Team: Persian (Iran) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fa_IR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -47,11 +48,11 @@ msgstr "این ویژگی تنها در نسخه پیشرفته این افزو
|
|
47 |
#: includes/views/parts/lists-overview.php10,
|
48 |
#: includes/forms/views/parts/add-fields-help.php:43
|
49 |
msgid "Renew MailChimp lists"
|
50 |
-
msgstr "تازه سازی
|
51 |
|
52 |
#: includes/admin/class-admin.php:306
|
53 |
msgid "Fetching MailChimp lists"
|
54 |
-
msgstr "در حال تازه سازی
|
55 |
|
56 |
#: includes/admin/class-admin.php:307
|
57 |
msgid "Done! MailChimp lists renewed."
|
@@ -59,7 +60,7 @@ msgstr "لیست های MailChimp تازه سازی شدند."
|
|
59 |
|
60 |
#: includes/admin/class-admin.php:308
|
61 |
msgid "This can take a while if you have many MailChimp lists."
|
62 |
-
msgstr ""
|
63 |
|
64 |
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
65 |
msgid "MailChimp API Settings"
|
@@ -110,7 +111,7 @@ msgstr ""
|
|
110 |
|
111 |
#: includes/admin/class-ads.php:70
|
112 |
msgid "Upgrade to Premium"
|
113 |
-
msgstr "بروز رسانی به نسخه
|
114 |
|
115 |
#: includes/admin/class-ads.php:83
|
116 |
msgid ""
|
@@ -132,7 +133,7 @@ msgstr ""
|
|
132 |
|
133 |
#: includes/admin/class-ads.php:112
|
134 |
msgid "More subscribers, better newsletters."
|
135 |
-
msgstr "داشتن مشترکین بیشتر منجر به داشتن خبرنامه بهتر
|
136 |
|
137 |
#: includes/admin/class-ads.php:113
|
138 |
msgid ""
|
@@ -178,7 +179,7 @@ msgstr ""
|
|
178 |
|
179 |
#: includes/admin/class-review-notice.php:71
|
180 |
msgid "Dismiss this notice."
|
181 |
-
msgstr ""
|
182 |
|
183 |
#: includes/api/class-api.php:84
|
184 |
msgid "Read more about common connectivity issues."
|
@@ -198,15 +199,15 @@ msgstr "چک باکس"
|
|
198 |
|
199 |
#: includes/forms/class-admin.php:65
|
200 |
msgid "Choices"
|
201 |
-
msgstr "
|
202 |
|
203 |
#: includes/forms/class-admin.php:66
|
204 |
msgid "Choice type"
|
205 |
-
msgstr ""
|
206 |
|
207 |
#: includes/forms/class-admin.php:67
|
208 |
msgid "Choose a field to add to the form"
|
209 |
-
msgstr ""
|
210 |
|
211 |
#: includes/forms/class-admin.php:68
|
212 |
msgid "Close"
|
@@ -218,15 +219,15 @@ msgstr "کشور"
|
|
218 |
|
219 |
#: includes/forms/class-admin.php:70
|
220 |
msgid "Dropdown"
|
221 |
-
msgstr ""
|
222 |
|
223 |
#: includes/forms/class-admin.php:71
|
224 |
msgid "Field type"
|
225 |
-
msgstr ""
|
226 |
|
227 |
#: includes/forms/class-admin.php:72
|
228 |
msgid "Field label"
|
229 |
-
msgstr ""
|
230 |
|
231 |
#: includes/forms/class-admin.php:73
|
232 |
msgid "Form action"
|
@@ -236,88 +237,88 @@ msgstr ""
|
|
236 |
msgid ""
|
237 |
"This field will allow your visitors to choose whether they would like to "
|
238 |
"subscribe or unsubscribe"
|
239 |
-
msgstr ""
|
240 |
|
241 |
#: includes/forms/class-admin.php:75
|
242 |
msgid "Form fields"
|
243 |
-
msgstr ""
|
244 |
|
245 |
#: includes/forms/class-admin.php:76
|
246 |
msgid "This field is marked as required in MailChimp."
|
247 |
-
msgstr ""
|
248 |
|
249 |
#: includes/forms/class-admin.php:77
|
250 |
msgid "Initial value"
|
251 |
-
msgstr ""
|
252 |
|
253 |
#: includes/forms/class-admin.php:78
|
254 |
msgid "Interest categories"
|
255 |
-
msgstr ""
|
256 |
|
257 |
#: includes/forms/class-admin.php:79
|
258 |
msgid "Is this field required?"
|
259 |
-
msgstr ""
|
260 |
|
261 |
#: includes/forms/class-admin.php:80
|
262 |
msgid "List choice"
|
263 |
-
msgstr ""
|
264 |
|
265 |
#: includes/forms/class-admin.php:81
|
266 |
msgid "This field will allow your visitors to choose a list to subscribe to."
|
267 |
-
msgstr ""
|
268 |
|
269 |
#: includes/forms/class-admin.php:82
|
270 |
msgid "List fields"
|
271 |
-
msgstr ""
|
272 |
|
273 |
#: includes/forms/class-admin.php:83
|
274 |
msgid "Min"
|
275 |
-
msgstr ""
|
276 |
|
277 |
#: includes/forms/class-admin.php:84
|
278 |
msgid "Max"
|
279 |
-
msgstr ""
|
280 |
|
281 |
#: includes/forms/class-admin.php:85
|
282 |
msgid ""
|
283 |
"No available fields. Did you select a MailChimp list in the form settings?"
|
284 |
-
msgstr ""
|
285 |
|
286 |
#: includes/forms/class-admin.php:86
|
287 |
msgid "Optional"
|
288 |
-
msgstr ""
|
289 |
|
290 |
#: includes/forms/class-admin.php:87
|
291 |
msgid "Placeholder"
|
292 |
-
msgstr ""
|
293 |
|
294 |
#: includes/forms/class-admin.php:88
|
295 |
msgid "Text to show when field has no value."
|
296 |
-
msgstr ""
|
297 |
|
298 |
#: includes/forms/class-admin.php:89
|
299 |
msgid "Preselect"
|
300 |
-
msgstr ""
|
301 |
|
302 |
#: includes/forms/class-admin.php:90
|
303 |
msgid "Remove"
|
304 |
-
msgstr ""
|
305 |
|
306 |
#: includes/forms/class-admin.php:91
|
307 |
msgid "Radio buttons"
|
308 |
-
msgstr ""
|
309 |
|
310 |
#: includes/forms/class-admin.php:92
|
311 |
msgid "Street Address"
|
312 |
-
msgstr ""
|
313 |
|
314 |
#: includes/forms/class-admin.php:93
|
315 |
msgid "State"
|
316 |
-
msgstr ""
|
317 |
|
318 |
#: includes/forms/class-admin.php:95
|
319 |
msgid "Submit button"
|
320 |
-
msgstr ""
|
321 |
|
322 |
#: includes/forms/class-admin.php:96
|
323 |
msgid "Wrap in paragraph tags?"
|
@@ -325,7 +326,7 @@ msgstr ""
|
|
325 |
|
326 |
#: includes/forms/class-admin.php:97
|
327 |
msgid "Value"
|
328 |
-
msgstr ""
|
329 |
|
330 |
#: includes/forms/class-admin.php:98
|
331 |
msgid "Text to prefill this field with."
|
@@ -333,7 +334,7 @@ msgstr ""
|
|
333 |
|
334 |
#: includes/forms/class-admin.php:99
|
335 |
msgid "ZIP"
|
336 |
-
msgstr ""
|
337 |
|
338 |
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
339 |
#: includes/forms/views/edit-form.php:24
|
@@ -407,11 +408,11 @@ msgstr "آدرس آی پی کاربر. مثال : %s."
|
|
407 |
|
408 |
#: includes/forms/class-form-tags.php:117
|
409 |
msgid "The property of the currently logged-in user."
|
410 |
-
msgstr "
|
411 |
|
412 |
#: includes/forms/class-form-tags.php:123
|
413 |
msgid "Property of the current page or post."
|
414 |
-
msgstr ""
|
415 |
|
416 |
#: includes/forms/class-form.php:133
|
417 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
@@ -441,7 +442,7 @@ msgstr "شما می توانید فرم ثبت نام خود را از<a href=\"
|
|
441 |
#: includes/integrations/views/integrations.php57,
|
442 |
#: includes/integrations/views/integrations.php:65
|
443 |
msgid "Integrations"
|
444 |
-
msgstr "
|
445 |
|
446 |
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
447 |
#: includes/forms/views/edit-form.php22,
|
@@ -502,7 +503,7 @@ msgstr "این مواردی است که ما بررسی می کنیم."
|
|
502 |
|
503 |
#: includes/views/other-settings.php:37
|
504 |
msgid "Logging"
|
505 |
-
msgstr ""
|
506 |
|
507 |
#: includes/views/other-settings.php:44
|
508 |
msgid ""
|
@@ -516,7 +517,7 @@ msgstr ""
|
|
516 |
|
517 |
#: includes/views/other-settings.php:99
|
518 |
msgid "Filter.."
|
519 |
-
msgstr ""
|
520 |
|
521 |
#: includes/views/other-settings.php:104
|
522 |
msgid "Log file is not writable."
|
@@ -576,7 +577,7 @@ msgstr "ظاهر"
|
|
576 |
|
577 |
#: includes/forms/views/edit-form.php:25
|
578 |
msgid "Form"
|
579 |
-
msgstr ""
|
580 |
|
581 |
#: includes/forms/views/edit-form.php:34
|
582 |
msgid "Edit Form"
|
@@ -592,7 +593,7 @@ msgstr "عنوان فرم اشتراک خود را در این قسمت وارد
|
|
592 |
|
593 |
#: includes/forms/views/edit-form.php:65
|
594 |
msgid "Shortcode"
|
595 |
-
msgstr ""
|
596 |
|
597 |
#: includes/forms/views/edit-form.php:67
|
598 |
msgid "Get shortcode"
|
@@ -703,7 +704,7 @@ msgstr "اگر می خواهید به روزرسانی مشترکین موجود
|
|
703 |
#: includes/integrations/views/integration-settings.php190,
|
704 |
#: includes/forms/views/tabs/form-settings.php:68
|
705 |
msgid "Replace interest groups?"
|
706 |
-
msgstr "جایگزین
|
707 |
|
708 |
#: includes/integrations/views/integration-settings.php201,
|
709 |
#: includes/forms/views/tabs/form-settings.php:79
|
@@ -753,7 +754,7 @@ msgid ""
|
|
753 |
"translated in your language or do you spot errors with the current "
|
754 |
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
755 |
"translation project and click \"help translate\"</a>."
|
756 |
-
msgstr "این افزونه
|
757 |
|
758 |
#: includes/views/parts/admin-footer.php:35
|
759 |
msgid ""
|
@@ -762,7 +763,7 @@ msgstr "این افزونه به هیچ عنوان وابسته و یا توسط
|
|
762 |
|
763 |
#: includes/views/parts/admin-sidebar.php:11
|
764 |
msgid "Looking for help?"
|
765 |
-
msgstr ""
|
766 |
|
767 |
#: includes/views/parts/admin-sidebar.php:12
|
768 |
msgid "We have some resources available to help you in the right direction."
|
@@ -770,15 +771,15 @@ msgstr ""
|
|
770 |
|
771 |
#: includes/views/parts/admin-sidebar.php:14
|
772 |
msgid "Knowledge Base"
|
773 |
-
msgstr ""
|
774 |
|
775 |
#: includes/views/parts/admin-sidebar.php:15
|
776 |
msgid "Frequently Asked Questions"
|
777 |
-
msgstr ""
|
778 |
|
779 |
#: includes/views/parts/admin-sidebar.php:16
|
780 |
msgid "Code reference for developers"
|
781 |
-
msgstr ""
|
782 |
|
783 |
#: includes/views/parts/admin-sidebar.php:36
|
784 |
msgid "Looking to improve your sign-up rates?"
|
@@ -890,7 +891,7 @@ msgstr "اولیه"
|
|
890 |
|
891 |
#: includes/forms/views/tabs/form-appearance.php:7
|
892 |
msgid "Form Themes"
|
893 |
-
msgstr "
|
894 |
|
895 |
#: includes/forms/views/tabs/form-appearance.php:8
|
896 |
msgid "Light Theme"
|
@@ -1012,25 +1013,25 @@ msgstr "مشترک نشده"
|
|
1012 |
msgid ""
|
1013 |
"When using the unsubscribe method, this is the text that shows when the "
|
1014 |
"given email address is not on the selected list(s)."
|
1015 |
-
msgstr "وقتی که از متد لغو اشتراک استفاده
|
1016 |
|
1017 |
#: includes/forms/views/tabs/form-messages.php:65
|
1018 |
msgid "No list selected"
|
1019 |
-
msgstr "لیستی انتخاب نشده"
|
1020 |
|
1021 |
#: includes/forms/views/tabs/form-messages.php:68
|
1022 |
msgid ""
|
1023 |
"When offering a list choice, this is the text that shows when no lists were "
|
1024 |
"selected."
|
1025 |
-
msgstr ""
|
1026 |
|
1027 |
#: includes/forms/views/tabs/form-messages.php:74
|
1028 |
msgid "Updated"
|
1029 |
-
msgstr ""
|
1030 |
|
1031 |
#: includes/forms/views/tabs/form-messages.php:77
|
1032 |
msgid "The text that shows when an existing subscriber is updated."
|
1033 |
-
msgstr ""
|
1034 |
|
1035 |
#: includes/forms/views/tabs/form-messages.php:89
|
1036 |
msgid "HTML tags like %s are allowed in the message fields."
|
4 |
# A.Mehraban <Mehr.Ban@chmail.ir>, 2015
|
5 |
# Ardavan Afrasiyabi <abox@usa.com>, 2015
|
6 |
# mahnaz vahedi <mahnazvn@yahoo.com>, 2016
|
7 |
+
# rokhiran <rokhiran@gmail.com>, 2017
|
8 |
# Salar Gholizadeh <salar.g@gmail.com>, 2017
|
9 |
# zeinab bakhtiari <carolinazb9@gmail.com>, 2017
|
10 |
msgid ""
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: MailChimp for WordPress\n"
|
13 |
+
"PO-Revision-Date: 2017-10-16 19:17+0000\n"
|
14 |
+
"Last-Translator: rokhiran <rokhiran@gmail.com>\n"
|
15 |
"Language-Team: Persian (Iran) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fa_IR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
48 |
#: includes/views/parts/lists-overview.php10,
|
49 |
#: includes/forms/views/parts/add-fields-help.php:43
|
50 |
msgid "Renew MailChimp lists"
|
51 |
+
msgstr "تازه سازی لیستهای MailChimp"
|
52 |
|
53 |
#: includes/admin/class-admin.php:306
|
54 |
msgid "Fetching MailChimp lists"
|
55 |
+
msgstr "در حال تازه سازی لیستهای MailChimp"
|
56 |
|
57 |
#: includes/admin/class-admin.php:307
|
58 |
msgid "Done! MailChimp lists renewed."
|
60 |
|
61 |
#: includes/admin/class-admin.php:308
|
62 |
msgid "This can take a while if you have many MailChimp lists."
|
63 |
+
msgstr "این میتواند مدتی طول بکشد اگر تعداد زیادی لیست MailChimp داشته باشید."
|
64 |
|
65 |
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
66 |
msgid "MailChimp API Settings"
|
111 |
|
112 |
#: includes/admin/class-ads.php:70
|
113 |
msgid "Upgrade to Premium"
|
114 |
+
msgstr "بروز رسانی به نسخه حرفهای"
|
115 |
|
116 |
#: includes/admin/class-ads.php:83
|
117 |
msgid ""
|
133 |
|
134 |
#: includes/admin/class-ads.php:112
|
135 |
msgid "More subscribers, better newsletters."
|
136 |
+
msgstr "داشتن مشترکین بیشتر منجر به داشتن خبرنامه بهتر میشود."
|
137 |
|
138 |
#: includes/admin/class-ads.php:113
|
139 |
msgid ""
|
179 |
|
180 |
#: includes/admin/class-review-notice.php:71
|
181 |
msgid "Dismiss this notice."
|
182 |
+
msgstr "این اطلاعیه را پنهان کنید."
|
183 |
|
184 |
#: includes/api/class-api.php:84
|
185 |
msgid "Read more about common connectivity issues."
|
199 |
|
200 |
#: includes/forms/class-admin.php:65
|
201 |
msgid "Choices"
|
202 |
+
msgstr "انتخابها"
|
203 |
|
204 |
#: includes/forms/class-admin.php:66
|
205 |
msgid "Choice type"
|
206 |
+
msgstr "نوع انتخاب"
|
207 |
|
208 |
#: includes/forms/class-admin.php:67
|
209 |
msgid "Choose a field to add to the form"
|
210 |
+
msgstr "یک فیلد را انتخاب نمائید تا به فرم اضافه شود."
|
211 |
|
212 |
#: includes/forms/class-admin.php:68
|
213 |
msgid "Close"
|
219 |
|
220 |
#: includes/forms/class-admin.php:70
|
221 |
msgid "Dropdown"
|
222 |
+
msgstr "کرکرهای"
|
223 |
|
224 |
#: includes/forms/class-admin.php:71
|
225 |
msgid "Field type"
|
226 |
+
msgstr "نوع فیلد"
|
227 |
|
228 |
#: includes/forms/class-admin.php:72
|
229 |
msgid "Field label"
|
230 |
+
msgstr "برچسب فیلد"
|
231 |
|
232 |
#: includes/forms/class-admin.php:73
|
233 |
msgid "Form action"
|
237 |
msgid ""
|
238 |
"This field will allow your visitors to choose whether they would like to "
|
239 |
"subscribe or unsubscribe"
|
240 |
+
msgstr "این قسمت حق انتخاب را به بازدید کنندگان میدهد تا مواردی که میخواهند در آنها اشتراک و یا لغو اشتراک بنمایند را انتخاب کنند."
|
241 |
|
242 |
#: includes/forms/class-admin.php:75
|
243 |
msgid "Form fields"
|
244 |
+
msgstr "فیلدهای فرم"
|
245 |
|
246 |
#: includes/forms/class-admin.php:76
|
247 |
msgid "This field is marked as required in MailChimp."
|
248 |
+
msgstr "این فیلد در میل چیمپ ( MailChimp ) به عنوان مورد نیاز مشخص شده است."
|
249 |
|
250 |
#: includes/forms/class-admin.php:77
|
251 |
msgid "Initial value"
|
252 |
+
msgstr "مقدار پیشفرض"
|
253 |
|
254 |
#: includes/forms/class-admin.php:78
|
255 |
msgid "Interest categories"
|
256 |
+
msgstr "دستهبندیهای مورد علاقه"
|
257 |
|
258 |
#: includes/forms/class-admin.php:79
|
259 |
msgid "Is this field required?"
|
260 |
+
msgstr "آیا این فیلد مورد نیاز است ؟"
|
261 |
|
262 |
#: includes/forms/class-admin.php:80
|
263 |
msgid "List choice"
|
264 |
+
msgstr "انتخاب لیست"
|
265 |
|
266 |
#: includes/forms/class-admin.php:81
|
267 |
msgid "This field will allow your visitors to choose a list to subscribe to."
|
268 |
+
msgstr "این قسمت به بازدید کنندگان شما اجازه انتخاب یک لیست برای اشتراک را میدهد."
|
269 |
|
270 |
#: includes/forms/class-admin.php:82
|
271 |
msgid "List fields"
|
272 |
+
msgstr "فیلدهای لیست"
|
273 |
|
274 |
#: includes/forms/class-admin.php:83
|
275 |
msgid "Min"
|
276 |
+
msgstr "حداقل"
|
277 |
|
278 |
#: includes/forms/class-admin.php:84
|
279 |
msgid "Max"
|
280 |
+
msgstr "حداکثر"
|
281 |
|
282 |
#: includes/forms/class-admin.php:85
|
283 |
msgid ""
|
284 |
"No available fields. Did you select a MailChimp list in the form settings?"
|
285 |
+
msgstr "هیچ فیلدی در دسترس نیست. آیا یک لیست MailChimp را در تنظیمات فرم انتخاب کردید؟"
|
286 |
|
287 |
#: includes/forms/class-admin.php:86
|
288 |
msgid "Optional"
|
289 |
+
msgstr "اختیاری"
|
290 |
|
291 |
#: includes/forms/class-admin.php:87
|
292 |
msgid "Placeholder"
|
293 |
+
msgstr "محل نگهداری"
|
294 |
|
295 |
#: includes/forms/class-admin.php:88
|
296 |
msgid "Text to show when field has no value."
|
297 |
+
msgstr "متن برای نمایش دادن، هنگامی که فیلد هیچ مقداری ندارد."
|
298 |
|
299 |
#: includes/forms/class-admin.php:89
|
300 |
msgid "Preselect"
|
301 |
+
msgstr "پیشگزینش"
|
302 |
|
303 |
#: includes/forms/class-admin.php:90
|
304 |
msgid "Remove"
|
305 |
+
msgstr "حذف"
|
306 |
|
307 |
#: includes/forms/class-admin.php:91
|
308 |
msgid "Radio buttons"
|
309 |
+
msgstr "دکمههای رادیویی"
|
310 |
|
311 |
#: includes/forms/class-admin.php:92
|
312 |
msgid "Street Address"
|
313 |
+
msgstr "آدرس خیابان"
|
314 |
|
315 |
#: includes/forms/class-admin.php:93
|
316 |
msgid "State"
|
317 |
+
msgstr "وضعیت"
|
318 |
|
319 |
#: includes/forms/class-admin.php:95
|
320 |
msgid "Submit button"
|
321 |
+
msgstr "دکمه ارسال"
|
322 |
|
323 |
#: includes/forms/class-admin.php:96
|
324 |
msgid "Wrap in paragraph tags?"
|
326 |
|
327 |
#: includes/forms/class-admin.php:97
|
328 |
msgid "Value"
|
329 |
+
msgstr "مقدار"
|
330 |
|
331 |
#: includes/forms/class-admin.php:98
|
332 |
msgid "Text to prefill this field with."
|
334 |
|
335 |
#: includes/forms/class-admin.php:99
|
336 |
msgid "ZIP"
|
337 |
+
msgstr "کدپستی"
|
338 |
|
339 |
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
340 |
#: includes/forms/views/edit-form.php:24
|
408 |
|
409 |
#: includes/forms/class-form-tags.php:117
|
410 |
msgid "The property of the currently logged-in user."
|
411 |
+
msgstr "مشخصههای کاربر حاضر در سایت"
|
412 |
|
413 |
#: includes/forms/class-form-tags.php:123
|
414 |
msgid "Property of the current page or post."
|
415 |
+
msgstr "مشخصههای صفحه با مطلب جاری."
|
416 |
|
417 |
#: includes/forms/class-form.php:133
|
418 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
442 |
#: includes/integrations/views/integrations.php57,
|
443 |
#: includes/integrations/views/integrations.php:65
|
444 |
msgid "Integrations"
|
445 |
+
msgstr "انضمامها "
|
446 |
|
447 |
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
448 |
#: includes/forms/views/edit-form.php22,
|
503 |
|
504 |
#: includes/views/other-settings.php:37
|
505 |
msgid "Logging"
|
506 |
+
msgstr "ثبت وقایع"
|
507 |
|
508 |
#: includes/views/other-settings.php:44
|
509 |
msgid ""
|
517 |
|
518 |
#: includes/views/other-settings.php:99
|
519 |
msgid "Filter.."
|
520 |
+
msgstr "صاقی.."
|
521 |
|
522 |
#: includes/views/other-settings.php:104
|
523 |
msgid "Log file is not writable."
|
577 |
|
578 |
#: includes/forms/views/edit-form.php:25
|
579 |
msgid "Form"
|
580 |
+
msgstr "فرم"
|
581 |
|
582 |
#: includes/forms/views/edit-form.php:34
|
583 |
msgid "Edit Form"
|
593 |
|
594 |
#: includes/forms/views/edit-form.php:65
|
595 |
msgid "Shortcode"
|
596 |
+
msgstr "کد کوتاه"
|
597 |
|
598 |
#: includes/forms/views/edit-form.php:67
|
599 |
msgid "Get shortcode"
|
704 |
#: includes/integrations/views/integration-settings.php190,
|
705 |
#: includes/forms/views/tabs/form-settings.php:68
|
706 |
msgid "Replace interest groups?"
|
707 |
+
msgstr "جایگزین گروههای مورد علاقه بشود؟"
|
708 |
|
709 |
#: includes/integrations/views/integration-settings.php201,
|
710 |
#: includes/forms/views/tabs/form-settings.php:79
|
754 |
"translated in your language or do you spot errors with the current "
|
755 |
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
756 |
"translation project and click \"help translate\"</a>."
|
757 |
+
msgstr "این افزونه توسط <a href=\"https://www.MahinNews.ir\"> پرتال خبری تحلیلی ماهیننیوز </a> به زبان فارسی ترجمه شده است و با ارایه هر بروزرسانی افزونه بهینهتر خواهد شد. اگر مایل هستید که ترجمههای دیگری را از این افزونه ارایه دهید و به بهبود آن کمک کنید از بخش <a href=\"%s\"> پروژه ترجمه بازدید کنید</a>."
|
758 |
|
759 |
#: includes/views/parts/admin-footer.php:35
|
760 |
msgid ""
|
763 |
|
764 |
#: includes/views/parts/admin-sidebar.php:11
|
765 |
msgid "Looking for help?"
|
766 |
+
msgstr "به دنبال کمک هستید؟"
|
767 |
|
768 |
#: includes/views/parts/admin-sidebar.php:12
|
769 |
msgid "We have some resources available to help you in the right direction."
|
771 |
|
772 |
#: includes/views/parts/admin-sidebar.php:14
|
773 |
msgid "Knowledge Base"
|
774 |
+
msgstr "پایگاه دانش"
|
775 |
|
776 |
#: includes/views/parts/admin-sidebar.php:15
|
777 |
msgid "Frequently Asked Questions"
|
778 |
+
msgstr "سوالات متداول"
|
779 |
|
780 |
#: includes/views/parts/admin-sidebar.php:16
|
781 |
msgid "Code reference for developers"
|
782 |
+
msgstr "مرجع کد برای توسعه دهندهها"
|
783 |
|
784 |
#: includes/views/parts/admin-sidebar.php:36
|
785 |
msgid "Looking to improve your sign-up rates?"
|
891 |
|
892 |
#: includes/forms/views/tabs/form-appearance.php:7
|
893 |
msgid "Form Themes"
|
894 |
+
msgstr "تمهای فرم"
|
895 |
|
896 |
#: includes/forms/views/tabs/form-appearance.php:8
|
897 |
msgid "Light Theme"
|
1013 |
msgid ""
|
1014 |
"When using the unsubscribe method, this is the text that shows when the "
|
1015 |
"given email address is not on the selected list(s)."
|
1016 |
+
msgstr "وقتی که از متد لغو اشتراک استفاده شود، این نوشته برای ایمیلهایی که جزو مشترکین نبودهاند نمایش داده میشود."
|
1017 |
|
1018 |
#: includes/forms/views/tabs/form-messages.php:65
|
1019 |
msgid "No list selected"
|
1020 |
+
msgstr "هیچ لیستی انتخاب نشده"
|
1021 |
|
1022 |
#: includes/forms/views/tabs/form-messages.php:68
|
1023 |
msgid ""
|
1024 |
"When offering a list choice, this is the text that shows when no lists were "
|
1025 |
"selected."
|
1026 |
+
msgstr "زمان ارائه یک انتخاب لیست، این متن موقعی نمایش داده میشود که هیچ لیستی انتخاب نشده باشد."
|
1027 |
|
1028 |
#: includes/forms/views/tabs/form-messages.php:74
|
1029 |
msgid "Updated"
|
1030 |
+
msgstr "بروز رسانی شده است"
|
1031 |
|
1032 |
#: includes/forms/views/tabs/form-messages.php:77
|
1033 |
msgid "The text that shows when an existing subscriber is updated."
|
1034 |
+
msgstr "این متن موقعی نمایش داده میشود که یک اشتراک موجود به روز رسانی شده است."
|
1035 |
|
1036 |
#: includes/forms/views/tabs/form-messages.php:89
|
1037 |
msgid "HTML tags like %s are allowed in the message fields."
|
languages/mailchimp-for-wp-fi_FI.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fi_FI.po
CHANGED
@@ -1,74 +1,27 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
# Translators:
|
4 |
# Juha Vihervaara <juha.vihervaara@nemoy.fi>, 2015
|
5 |
-
# Simo Hakala
|
6 |
# Ville Ristimäki <villeristimaki@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: MailChimp for WordPress\n"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"PO-Revision-Date: 2015-12-13 23:14+0000\n"
|
13 |
-
"Last-Translator: Enn Kallas <stefistudio@msn.com>\n"
|
14 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fi_FI/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Language: fi_FI\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
#:
|
22 |
-
msgid "Email address"
|
23 |
-
msgstr "Sähköpostiosoite"
|
24 |
-
|
25 |
-
#: config/default-form-content.php:4
|
26 |
-
msgid "Your email address"
|
27 |
-
msgstr "Sähköpostiosoitteesi"
|
28 |
-
|
29 |
-
#: config/default-form-content.php:5
|
30 |
-
msgid "Sign up"
|
31 |
-
msgstr "Tilaa"
|
32 |
-
|
33 |
-
#: config/default-form-messages.php:5
|
34 |
-
msgid ""
|
35 |
-
"Thank you, your sign-up request was successful! Please check your email "
|
36 |
-
"inbox to confirm."
|
37 |
-
msgstr "Kiitos, liittymispyyntösi onnistui! Ole hyvä ja tarkista sähköpostilaatikkosi varmistaaksesi liittymisesi."
|
38 |
-
|
39 |
-
#: config/default-form-messages.php:9
|
40 |
-
msgid "Oops. Something went wrong. Please try again later."
|
41 |
-
msgstr "Hups. Jokin meni pieleen. Yritä myöhemmin uudestaan."
|
42 |
-
|
43 |
-
#: config/default-form-messages.php:13
|
44 |
-
msgid "Please provide a valid email address."
|
45 |
-
msgstr "Anna toimiva sähköpostiosoite, kiitos."
|
46 |
-
|
47 |
-
#: config/default-form-messages.php:17
|
48 |
-
msgid "Given email address is already subscribed, thank you!"
|
49 |
-
msgstr "Annettuun osoitteeseen on jo tehty tilaus, kiitos!"
|
50 |
-
|
51 |
-
#: config/default-form-messages.php:21
|
52 |
-
msgid "Please fill in the required fields."
|
53 |
-
msgstr "Täytä pakolliset kentät, kiitos."
|
54 |
-
|
55 |
-
#: config/default-form-messages.php:25
|
56 |
-
msgid "You were successfully unsubscribed."
|
57 |
-
msgstr "Tilauksesi peruutettiin onnistuneesti."
|
58 |
-
|
59 |
-
#: config/default-form-messages.php:29
|
60 |
-
msgid "Given email address is not subscribed."
|
61 |
-
msgstr "Annettuun osoitteeseen ei ole tehty tilausta."
|
62 |
-
|
63 |
-
#: config/default-form-messages.php:33
|
64 |
-
msgid "Please select at least one list."
|
65 |
-
msgstr "Valitse vähintään yksi lista."
|
66 |
-
|
67 |
-
#: config/default-integration-options.php:5
|
68 |
-
msgid "Sign me up for the newsletter!"
|
69 |
-
msgstr "Tilaa uutiskirje!"
|
70 |
-
|
71 |
-
#: includes/admin/class-admin-texts.php:62
|
72 |
#: includes/forms/views/edit-form.php:6
|
73 |
msgid "Settings"
|
74 |
msgstr "Asetukset"
|
@@ -77,141 +30,388 @@ msgstr "Asetukset"
|
|
77 |
msgid "Documentation"
|
78 |
msgstr "Dokumentaatio"
|
79 |
|
80 |
-
#: includes/admin/class-admin.php:
|
81 |
msgid ""
|
82 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
83 |
msgstr "Onnistui! MailChimp listojen rakenne välimuistissa on uusittu."
|
84 |
|
85 |
-
#: includes/admin/class-admin.php:
|
86 |
msgid ""
|
87 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
88 |
" to use it."
|
89 |
msgstr "Tämä on pro-version ominaisuus. Päivitä maksulliseen versioon jotta pääset käyttämään sitä."
|
90 |
|
91 |
-
#: includes/admin/class-admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
msgid "MailChimp API Settings"
|
93 |
msgstr "MailChimp API-asetukset"
|
94 |
|
95 |
-
#: includes/admin/class-admin.php:
|
96 |
-
#: integrations/ninja-forms/class-ninja-forms.php:34
|
97 |
msgid "MailChimp"
|
98 |
msgstr "MailChimp"
|
99 |
|
100 |
-
#: includes/admin/class-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
-
#: includes/admin/class-
|
|
|
|
|
|
|
|
|
105 |
msgid ""
|
106 |
-
"
|
107 |
-
"
|
108 |
-
msgstr "
|
109 |
|
110 |
-
#: includes/admin/class-ads.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgid "More subscribers, better newsletters."
|
112 |
msgstr "Enemmän tilaajia, parempia uutiskirjeitä."
|
113 |
|
114 |
-
#: includes/admin/class-ads.php:
|
115 |
msgid ""
|
116 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
117 |
"our monthly tips."
|
118 |
msgstr "Opi parhaiten kasvattamaan listojasi ja kirjoittamaan parempia sähköposteja tilaamalla kuukausittain meidän vinkkejä."
|
119 |
|
120 |
-
#: includes/admin/class-ads.php:
|
121 |
msgid "Email Address"
|
122 |
msgstr "Sähköpostiosoite"
|
123 |
|
124 |
-
#: includes/admin/class-ads.php:
|
125 |
msgid "First Name"
|
126 |
msgstr "Etunimi"
|
127 |
|
128 |
-
#: includes/admin/class-ads.php:
|
129 |
msgid "Subscribe"
|
130 |
msgstr "Tilaa"
|
131 |
|
132 |
-
#: includes/admin/class-
|
133 |
-
msgid "
|
134 |
-
|
|
|
|
|
135 |
|
136 |
-
#: includes/admin/
|
137 |
-
msgid "
|
138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
|
140 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
msgid "Read more about common connectivity issues."
|
142 |
msgstr "Lisätietoja yleisistä yhdistämiseen liittyvistä asioista."
|
143 |
|
144 |
-
#: includes/forms/class-admin.php:
|
145 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
msgid "Forms"
|
147 |
msgstr "Lomakkeet"
|
148 |
|
149 |
-
#: includes/forms/class-admin.
|
150 |
msgid "<strong>Success!</strong> Form successfully saved."
|
151 |
msgstr "<strong>Onnistui!</strong> Lomake tallennettu."
|
152 |
|
153 |
-
#: includes/forms/class-admin.php:
|
154 |
msgid "Preview form"
|
155 |
msgstr "Esikatsele lomaketta"
|
156 |
|
157 |
-
#: includes/forms/class-admin.php:
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#: includes/forms/class-admin.php:
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#: includes/forms/class-form-previewer.php:
|
166 |
msgid "Form preview"
|
167 |
msgstr "Lomakkeen esikatselu"
|
168 |
|
169 |
-
#: includes/forms/class-form-tags.php:
|
170 |
msgid "Replaced with the form response (error or success messages)."
|
171 |
msgstr "Korvataan lomakkeen vastauksella (virhe- tai onnistuminen viestit)."
|
172 |
|
173 |
-
#: includes/forms/class-form-tags.php:
|
174 |
msgid "Data from the URL or a submitted form."
|
175 |
msgstr "Tiedot URL-osoitteesta tai lähetetystä lomakkeesta."
|
176 |
|
177 |
-
#: includes/forms/class-form-tags.php:
|
|
|
|
|
|
|
|
|
178 |
#: includes/integrations/class-integration-tags.php:45
|
179 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
180 |
msgstr "Korvattu tilaajien lukumäärällä valitu(i)ssa listassa / listoissa."
|
181 |
|
182 |
-
#: includes/forms/class-form-tags.php:
|
183 |
msgid "The email address of the current visitor (if known)."
|
184 |
msgstr "Nykyisen vierailijan sähköpostiosoite (jos tiedossa)."
|
185 |
|
186 |
-
#: includes/forms/class-form-tags.php:
|
187 |
msgid "The URL of the page."
|
188 |
msgstr "Sivun URL-osoite."
|
189 |
|
190 |
-
#: includes/forms/class-form-tags.php:
|
191 |
msgid "The path of the page."
|
192 |
msgstr "Sivun polku."
|
193 |
|
194 |
-
#: includes/forms/class-form-tags.php:
|
195 |
msgid "The current date. Example: %s."
|
196 |
msgstr "Nykyinen päivämäärä. Esimerkki: %s."
|
197 |
|
198 |
-
#: includes/forms/class-form-tags.php:
|
199 |
msgid "The current time. Example: %s."
|
200 |
msgstr "Nykyinen aika. Esimerkki: %s."
|
201 |
|
202 |
-
#: includes/forms/class-form-tags.php:
|
203 |
msgid "The site's language. Example: %s."
|
204 |
msgstr "Sivuston kieli. Esimerkki: %s."
|
205 |
|
206 |
-
#: includes/forms/class-form-tags.php:
|
207 |
msgid "The visitor's IP address. Example: %s."
|
208 |
msgstr "Vierailijan IP-osoite. Esimerkki: %s."
|
209 |
|
210 |
-
#: includes/forms/class-form-tags.php:
|
211 |
msgid "The property of the currently logged-in user."
|
212 |
msgstr "Kirjautuneen käyttäjän tieto (omaisuus)."
|
213 |
|
214 |
-
#: includes/forms/class-form.php:
|
|
|
|
|
|
|
|
|
215 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
216 |
msgstr "%d ID-tunnuksella lomaketta ei löydetty. Ehkä se on poistettu?"
|
217 |
|
@@ -219,10 +419,6 @@ msgstr "%d ID-tunnuksella lomaketta ei löydetty. Ehkä se on poistettu?"
|
|
219 |
msgid "Newsletter"
|
220 |
msgstr "Uutiskirje"
|
221 |
|
222 |
-
#: includes/forms/class-widget.php:30
|
223 |
-
msgid "MailChimp Sign-Up Form"
|
224 |
-
msgstr "MailChimp-rekisteröintikaavake"
|
225 |
-
|
226 |
#: includes/forms/class-widget.php:32
|
227 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
228 |
msgstr "Näyttää MailChimp for WordPress rekisteröitymiskaavakkeesi"
|
@@ -237,7 +433,114 @@ msgid ""
|
|
237 |
" form settings</a>."
|
238 |
msgstr "Voit muokata kirjautumislomakettasi <a href=\"%s\">MailChimp for WordPress lomakkeen asetuksista</a>."
|
239 |
|
240 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Add new form"
|
242 |
msgstr "Lisää uusi lomake"
|
243 |
|
@@ -265,38 +568,266 @@ msgstr "Kentät"
|
|
265 |
msgid "Messages"
|
266 |
msgstr "Viestit"
|
267 |
|
268 |
-
#: includes/forms/views/edit-form.php:7
|
269 |
-
msgid "Appearance"
|
270 |
-
msgstr "Ulkoasu"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
|
272 |
-
#: includes/
|
273 |
-
|
274 |
-
|
275 |
-
#: includes/views/general-settings.php:7
|
276 |
-
msgid "You are here: "
|
277 |
-
msgstr "Olet tässä:"
|
278 |
|
279 |
-
#: includes/
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#: includes/
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
286 |
|
287 |
-
#: includes/
|
288 |
-
msgid "
|
289 |
-
msgstr "
|
290 |
|
291 |
-
#: includes/
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
294 |
|
295 |
-
#: includes/
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: includes/forms/views/parts/add-fields-help.
|
300 |
#: includes/forms/views/tabs/form-fields.php:10
|
301 |
msgid "Add more fields"
|
302 |
msgstr "Lisää kenttiä"
|
@@ -333,11 +864,6 @@ msgid ""
|
|
333 |
"changes."
|
334 |
msgstr "Paina seuraavaa painiketta ja MailChimp WordPress:ille lisäosa hakee tekemäsi muutokset."
|
335 |
|
336 |
-
#: includes/forms/views/parts/add-fields-help.php:43
|
337 |
-
#: includes/views/parts/lists-overview.php:8
|
338 |
-
msgid "Renew MailChimp lists"
|
339 |
-
msgstr "Uusitaan MailChimp listat"
|
340 |
-
|
341 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
342 |
msgid "Add dynamic form variable"
|
343 |
msgstr "Lisää dynaaminen lomakkeen muuttuja"
|
@@ -410,87 +936,101 @@ msgstr "Lomakkeen kentät"
|
|
410 |
msgid "Enter the HTML code for your form fields.."
|
411 |
msgstr "Kirjoita HTML-koodi lomakkeen kenttiin."
|
412 |
|
413 |
-
#: includes/forms/views/tabs/form-fields.php:
|
414 |
-
msgid "Your form is missing the following (required) form fields:"
|
415 |
-
msgstr "Lomakkeestasi puuttuu seuraavat (vaadittavat) kentät:"
|
416 |
-
|
417 |
-
#: includes/forms/views/tabs/form-fields.php:34
|
418 |
msgid ""
|
419 |
"Use the shortcode %s to display this form inside a post, page or text "
|
420 |
"widget."
|
421 |
msgstr "Käytä lyhytkoodia %s ja tämä lomake tulee näkyviin postituksen, sivun tai teksti-vimpaimen sisällä."
|
422 |
|
423 |
-
#: includes/forms/views/tabs/form-messages.php:
|
424 |
msgid "Form Messages"
|
425 |
msgstr "Lomakkeen viestit"
|
426 |
|
427 |
-
#: includes/forms/views/tabs/form-messages.php:
|
428 |
msgid "Successfully subscribed"
|
429 |
msgstr "Tilaus onnistui"
|
430 |
|
431 |
-
#: includes/forms/views/tabs/form-messages.php:
|
432 |
msgid ""
|
433 |
"The text that shows when an email address is successfully subscribed to the "
|
434 |
"selected list(s)."
|
435 |
msgstr "Teksti joka näytetään kun sähköpostiosoite lisättiin onnistuneesti valittuun listaan/listoihin."
|
436 |
|
437 |
-
#: includes/forms/views/tabs/form-messages.php:
|
438 |
msgid "Invalid email address"
|
439 |
msgstr "Puutteellinen sähköpostiosoite"
|
440 |
|
441 |
-
#: includes/forms/views/tabs/form-messages.php:
|
442 |
msgid "The text that shows when an invalid email address is given."
|
443 |
msgstr "Näytettävä teksti, kun käyttäjä antaa puutteellisen sähköpostiosoitteen."
|
444 |
|
445 |
-
#: includes/forms/views/tabs/form-messages.php:
|
446 |
msgid "Required field missing"
|
447 |
msgstr "Vaadittu kenttä puuttuu"
|
448 |
|
449 |
-
#: includes/forms/views/tabs/form-messages.php:
|
450 |
msgid ""
|
451 |
"The text that shows when a required field for the selected list(s) is "
|
452 |
"missing."
|
453 |
msgstr "Teksti joka näytetään kun valitussa listassa/listoissa vaadittava kenttä puuttuu."
|
454 |
|
455 |
-
#: includes/forms/views/tabs/form-messages.php:
|
456 |
msgid "Already subscribed"
|
457 |
msgstr "Jo tilattu"
|
458 |
|
459 |
-
#: includes/forms/views/tabs/form-messages.php:
|
460 |
msgid ""
|
461 |
"The text that shows when the given email is already subscribed to the "
|
462 |
"selected list(s)."
|
463 |
msgstr "Teksti joka näytetään kun annettu sähköpostiosoite on jo tilaajana listassa/listoissa."
|
464 |
|
465 |
-
#: includes/forms/views/tabs/form-messages.php:
|
466 |
msgid "General error"
|
467 |
msgstr "Yleinen virhe"
|
468 |
|
469 |
-
#: includes/forms/views/tabs/form-messages.php:
|
470 |
msgid "The text that shows when a general error occured."
|
471 |
msgstr "Teksti joka näytetään yleisen virheen tapahtuessa."
|
472 |
|
473 |
-
#: includes/forms/views/tabs/form-messages.php:
|
474 |
msgid "Unsubscribed"
|
475 |
msgstr "Tilaus on peruttu"
|
476 |
|
477 |
-
#: includes/forms/views/tabs/form-messages.php:
|
478 |
msgid ""
|
479 |
"When using the unsubscribe method, this is the text that shows when the "
|
480 |
"given email address is successfully unsubscribed from the selected list(s)."
|
481 |
msgstr "Kun tilauksen perumisen menetelmä on käytössä, tämä teksti näytetään kun annettu sähköpostiosoite on onnistuneesti poistettu valitun listan/listojen tilaajien joukosta."
|
482 |
|
483 |
-
#: includes/forms/views/tabs/form-messages.php:
|
484 |
msgid "Not subscribed"
|
485 |
msgstr "Ei tilattu"
|
486 |
|
487 |
-
#: includes/forms/views/tabs/form-messages.php:
|
488 |
msgid ""
|
489 |
"When using the unsubscribe method, this is the text that shows when the "
|
490 |
"given email address is not on the selected list(s)."
|
491 |
msgstr "Kun tilauksen perumisen menetelmä on käytössä, tämä teksti näytetään kun annettu sähköpostiosoite ei ole valitun listan/listojen tilaajien joukossa."
|
492 |
|
493 |
-
#: includes/forms/views/tabs/form-messages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
msgid "HTML tags like %s are allowed in the message fields."
|
495 |
msgstr "HTML tägit kuten %s ovat sallittuja viestikentissä."
|
496 |
|
@@ -502,379 +1042,52 @@ msgstr "Lomakeasetukset"
|
|
502 |
msgid "MailChimp specific settings"
|
503 |
msgstr "MailChimp käyttäjäkohtaiset asetukset"
|
504 |
|
505 |
-
#: includes/forms/views/tabs/form-settings.php:
|
506 |
msgid "Lists this form subscribes to"
|
507 |
msgstr "Listat, jotka tämä lomake tilaa"
|
508 |
|
509 |
-
#: includes/forms/views/tabs/form-settings.php:
|
510 |
-
#: includes/integrations/views/integration-settings.php:93
|
511 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
512 |
-
msgstr "Listoja ei löydy, <a href=\"%s\">oletko yhteydessä MailChimpiin</a>?"
|
513 |
-
|
514 |
-
#: includes/forms/views/tabs/form-settings.php:29
|
515 |
msgid ""
|
516 |
"Select the list(s) to which people who submit this form should be "
|
517 |
"subscribed."
|
518 |
msgstr "Valitse lista(t) jotka tilataan tällä lomakkeella."
|
519 |
|
520 |
-
#: includes/forms/views/tabs/form-settings.php:
|
521 |
msgid "Use double opt-in?"
|
522 |
msgstr "Käytä varmennettua liittymistä?"
|
523 |
|
524 |
-
#: includes/forms/views/tabs/form-settings.php:
|
525 |
-
|
526 |
-
|
527 |
-
#: includes/forms/views/tabs/form-settings.php:85
|
528 |
-
#: includes/forms/views/tabs/form-settings.php:115
|
529 |
-
#: includes/integrations/views/integration-settings.php:53
|
530 |
-
#: includes/integrations/views/integration-settings.php:66
|
531 |
-
#: includes/integrations/views/integration-settings.php:117
|
532 |
-
#: includes/integrations/views/integration-settings.php:129
|
533 |
-
#: includes/integrations/views/integration-settings.php:142
|
534 |
-
#: includes/integrations/views/integration-settings.php:163
|
535 |
-
#: includes/integrations/views/integration-settings.php:180
|
536 |
-
#: includes/integrations/views/integration-settings.php:199
|
537 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
538 |
-
msgid "Yes"
|
539 |
-
msgstr "Kyllä"
|
540 |
-
|
541 |
-
#: includes/forms/views/tabs/form-settings.php:43
|
542 |
-
#: includes/forms/views/tabs/form-settings.php:58
|
543 |
-
#: includes/forms/views/tabs/form-settings.php:73
|
544 |
-
#: includes/forms/views/tabs/form-settings.php:89
|
545 |
-
#: includes/forms/views/tabs/form-settings.php:119
|
546 |
-
#: includes/integrations/views/integration-settings.php:54
|
547 |
-
#: includes/integrations/views/integration-settings.php:67
|
548 |
-
#: includes/integrations/views/integration-settings.php:118
|
549 |
-
#: includes/integrations/views/integration-settings.php:130
|
550 |
-
#: includes/integrations/views/integration-settings.php:146
|
551 |
-
#: includes/integrations/views/integration-settings.php:167
|
552 |
-
#: includes/integrations/views/integration-settings.php:184
|
553 |
-
#: includes/integrations/views/integration-settings.php:203
|
554 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
555 |
-
msgid "No"
|
556 |
-
msgstr "Ei"
|
557 |
-
|
558 |
-
#: includes/forms/views/tabs/form-settings.php:45
|
559 |
-
#: includes/integrations/views/integration-settings.php:149
|
560 |
-
msgid ""
|
561 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
562 |
-
"being subscribed (recommended)"
|
563 |
-
msgstr "Valitse \"Kyllä\" jos haluat tilaajien varmistavan sähköpostiosoitteensa ennen tilausta (suositeltavaa)"
|
564 |
-
|
565 |
-
#: includes/forms/views/tabs/form-settings.php:50
|
566 |
-
msgid "Send final welcome email?"
|
567 |
-
msgstr "Send lopullinen tervetuloa sähköposti?"
|
568 |
-
|
569 |
-
#: includes/forms/views/tabs/form-settings.php:60
|
570 |
-
#: includes/integrations/views/integration-settings.php:169
|
571 |
-
msgid ""
|
572 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
573 |
-
"succeeds (only when double opt-in is disabled)."
|
574 |
-
msgstr "Valitse \"kyllä\", jos haluat lähettää listasi Tervetuloa viestin kun tilaaminen onnistuu (vain kun varmennettu liittyminen ei ole käytössä)."
|
575 |
-
|
576 |
-
#: includes/forms/views/tabs/form-settings.php:65
|
577 |
-
#: includes/integrations/views/integration-settings.php:176
|
578 |
-
msgid "Update existing subscribers?"
|
579 |
-
msgstr "Päivitä nykyiset tilaajat?"
|
580 |
-
|
581 |
-
#: includes/forms/views/tabs/form-settings.php:75
|
582 |
-
#: includes/integrations/views/integration-settings.php:186
|
583 |
-
msgid ""
|
584 |
-
"Select \"yes\" if you want to update existing subscribers with the data that"
|
585 |
-
" is sent."
|
586 |
-
msgstr "Valitse \"Kyllä\" jos haluat päivittää olemassa olevat tilaajat lähetettävällä datalla."
|
587 |
-
|
588 |
-
#: includes/forms/views/tabs/form-settings.php:81
|
589 |
-
#: includes/integrations/views/integration-settings.php:195
|
590 |
-
msgid "Replace interest groups?"
|
591 |
-
msgstr "Korvataanko kiinnostusryhmät?"
|
592 |
|
593 |
-
#: includes/forms/views/tabs/form-settings.php:
|
594 |
-
#: includes/integrations/views/integration-settings.php:206
|
595 |
msgid ""
|
596 |
-
"
|
597 |
-
"
|
598 |
-
msgstr "
|
599 |
-
|
600 |
-
#: includes/forms/views/tabs/form-settings.php:93
|
601 |
-
#: includes/integrations/views/integration-settings.php:207
|
602 |
-
msgid "What does this do?"
|
603 |
-
msgstr "Mitä tämä tekee?"
|
604 |
|
605 |
-
#: includes/forms/views/tabs/form-settings.php:
|
606 |
msgid "Form behaviour"
|
607 |
msgstr "Lomakkeen käyttäytyminen"
|
608 |
|
609 |
-
#: includes/forms/views/tabs/form-settings.php:
|
610 |
msgid "Hide form after a successful sign-up?"
|
611 |
msgstr "Kätketäänkö lomake onnistuneen kirjautumisen jälkeen?"
|
612 |
|
613 |
-
#: includes/forms/views/tabs/form-settings.php:
|
614 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
615 |
msgstr "Valitse \"kyllä\", jos haluat kätkeä lomakkeen kentät onnistuneen kirjautumisen jälkeen."
|
616 |
|
617 |
-
#: includes/forms/views/tabs/form-settings.php:
|
618 |
msgid "Redirect to URL after successful sign-ups"
|
619 |
msgstr "Onnistuneen kirjautumisen jälkeen ohjaus URLiin"
|
620 |
|
621 |
-
#: includes/forms/views/tabs/form-settings.php:
|
622 |
msgid "Example: %s"
|
623 |
msgstr "Esimerkki: %s"
|
624 |
|
625 |
-
#: includes/forms/views/tabs/form-settings.php:
|
626 |
msgid ""
|
627 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
628 |
" (absolute) URLs, including <code>http://</code>."
|
629 |
msgstr "Kun haluat että uudelleenohjausta ei tehdä, jätä tyhjäksi tai kirjoita <code>0</code>. Muussa tapauksessa, käytä täydellistä (absoluuttista) URL-osoitetta, mukaan lukien <code>http://</code>."
|
630 |
-
|
631 |
-
#: includes/integrations/class-admin.php:79
|
632 |
-
#: includes/integrations/class-admin.php:80
|
633 |
-
#: includes/integrations/views/integration-settings.php:10
|
634 |
-
#: includes/integrations/views/integrations.php:9
|
635 |
-
#: includes/integrations/views/integrations.php:17
|
636 |
-
msgid "Integrations"
|
637 |
-
msgstr "Integraatiot"
|
638 |
-
|
639 |
-
#: includes/integrations/views/integration-settings.php:20
|
640 |
-
msgid "%s integration"
|
641 |
-
msgstr "%s integraatio"
|
642 |
-
|
643 |
-
#: includes/integrations/views/integration-settings.php:51
|
644 |
-
msgid "Enabled?"
|
645 |
-
msgstr "Käytössä?"
|
646 |
-
|
647 |
-
#: includes/integrations/views/integration-settings.php:55
|
648 |
-
msgid ""
|
649 |
-
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
650 |
-
msgstr "Ota käyttöön %s integraatio? Tämä lisää liittymisen valintaruudun lomakkeeseen."
|
651 |
-
|
652 |
-
#: includes/integrations/views/integration-settings.php:64
|
653 |
-
msgid "Implicit?"
|
654 |
-
msgstr "Epäsuora?"
|
655 |
-
|
656 |
-
#: includes/integrations/views/integration-settings.php:68
|
657 |
-
msgid ""
|
658 |
-
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
659 |
-
"(recommended)."
|
660 |
-
msgstr "Valitse \"ei\" jos haluat kysyä vierailijoita ennen kuin heidät liitetään tilaajiksi (suositus)."
|
661 |
-
|
662 |
-
#: includes/integrations/views/integration-settings.php:78
|
663 |
-
msgid "MailChimp Lists"
|
664 |
-
msgstr "MailChimp listat"
|
665 |
-
|
666 |
-
#: includes/integrations/views/integration-settings.php:89
|
667 |
-
msgid ""
|
668 |
-
"Select the list(s) to which people who check the checkbox should be "
|
669 |
-
"subscribed."
|
670 |
-
msgstr "Valitse lista(t), mihin valintaruutua käyttäneet kirjataan."
|
671 |
-
|
672 |
-
#: includes/integrations/views/integration-settings.php:102
|
673 |
-
msgid "Checkbox label text"
|
674 |
-
msgstr "Valintaruudun nimiön teksti"
|
675 |
-
|
676 |
-
#: includes/integrations/views/integration-settings.php:105
|
677 |
-
msgid "HTML tags like %s are allowed in the label text."
|
678 |
-
msgstr "HTML tagit kuten %s ovat sallittuja nimiöteksteissä."
|
679 |
-
|
680 |
-
#: includes/integrations/views/integration-settings.php:115
|
681 |
-
msgid "Pre-check the checkbox?"
|
682 |
-
msgstr "Esitäytetäänkö valintaruutu?"
|
683 |
-
|
684 |
-
#: includes/integrations/views/integration-settings.php:119
|
685 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
686 |
-
msgstr "Valitse \"kyllä\", jos valintaruutu pitäisi olla valmiiksi valittuja."
|
687 |
-
|
688 |
-
#: includes/integrations/views/integration-settings.php:127
|
689 |
-
msgid "Load some default CSS?"
|
690 |
-
msgstr "Ladataanko joku oletus-CSS?"
|
691 |
-
|
692 |
-
#: includes/integrations/views/integration-settings.php:131
|
693 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
694 |
-
msgstr "Valitse \"Kyllä\", jos valintaruutu ilmestyy omituiseen paikkaan."
|
695 |
-
|
696 |
-
#: includes/integrations/views/integration-settings.php:138
|
697 |
-
msgid "Double opt-in?"
|
698 |
-
msgstr "Tuplavahvistus?"
|
699 |
-
|
700 |
-
#: includes/integrations/views/integration-settings.php:159
|
701 |
-
msgid "Send Welcome Email?"
|
702 |
-
msgstr "Lähetä \"Tervetuloa-viesti\"?"
|
703 |
-
|
704 |
-
#: includes/integrations/views/integration-settings.php:244
|
705 |
-
msgid ""
|
706 |
-
"The selected MailChimp lists require non-default fields, which may prevent "
|
707 |
-
"this integration from working."
|
708 |
-
msgstr "Valitut MailChimp-listat edellyttävät mukautettuja (ei oletus-) , jotka voivat estää tämän integraation toimimasta."
|
709 |
-
|
710 |
-
#: includes/integrations/views/integration-settings.php:245
|
711 |
-
msgid ""
|
712 |
-
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
713 |
-
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
714 |
-
"sure only the email & name fields are marked as required fields for the "
|
715 |
-
"selected list(s)."
|
716 |
-
msgstr "Varmista, että<a href=\"%s\">olet määrittänyt lisäosan lähettämään kaikki vaaditut kentät</a> tai <a href=\"%s\">kirjaudu MailChimp.com-palvelun tilille</a> ja varmista, että sähköpostiosoite- ja nimi kentät on meskitut vaadituiksi kentiksi valitulle listalle/listoille."
|
717 |
-
|
718 |
-
#: includes/integrations/views/integrations.php:30
|
719 |
-
msgid "Enabled"
|
720 |
-
msgstr "Käytössä"
|
721 |
-
|
722 |
-
#: includes/integrations/views/integrations.php:31
|
723 |
-
msgid "Name"
|
724 |
-
msgstr "Nimi"
|
725 |
-
|
726 |
-
#: includes/integrations/views/integrations.php:32
|
727 |
-
msgid "Description"
|
728 |
-
msgstr "Kuvaus"
|
729 |
-
|
730 |
-
#: includes/integrations/views/integrations.php:50
|
731 |
-
msgid ""
|
732 |
-
"This integration is enabled by default as it requires manual actions to "
|
733 |
-
"work."
|
734 |
-
msgstr "Tämä integraation on käytössä oletuksena, koska se edellyttää manuaalisia toimenpiteitä jotta se toimisi."
|
735 |
-
|
736 |
-
#: includes/integrations/views/integrations.php:57
|
737 |
-
msgid "Configure this integration"
|
738 |
-
msgstr "Määritä tämä integrointi"
|
739 |
-
|
740 |
-
#: includes/views/general-settings.php:18
|
741 |
-
msgid "General Settings"
|
742 |
-
msgstr "Yleisasetukset"
|
743 |
-
|
744 |
-
#: includes/views/general-settings.php:35
|
745 |
-
msgid "Status"
|
746 |
-
msgstr "Tila"
|
747 |
-
|
748 |
-
#: includes/views/general-settings.php:39
|
749 |
-
msgid "CONNECTED"
|
750 |
-
msgstr "YHDISTETTY"
|
751 |
-
|
752 |
-
#: includes/views/general-settings.php:41
|
753 |
-
msgid "NOT CONNECTED"
|
754 |
-
msgstr "EI YHDISTETTY"
|
755 |
-
|
756 |
-
#: includes/views/general-settings.php:48
|
757 |
-
msgid "API Key"
|
758 |
-
msgstr "API avain"
|
759 |
-
|
760 |
-
#: includes/views/general-settings.php:50
|
761 |
-
msgid "Your MailChimp API key"
|
762 |
-
msgstr "MailChimp API avaimesi"
|
763 |
-
|
764 |
-
#: includes/views/general-settings.php:52
|
765 |
-
msgid "The API key for connecting with your MailChimp account."
|
766 |
-
msgstr "API-avain jolla yhdistetään MailChimp-palvelun tiliin."
|
767 |
-
|
768 |
-
#: includes/views/general-settings.php:53
|
769 |
-
msgid "Get your API key here."
|
770 |
-
msgstr "Hae API avaimesi täältä."
|
771 |
-
|
772 |
-
#: includes/views/general-settings.php:65
|
773 |
-
msgid "Usage Tracking"
|
774 |
-
msgstr "Käytön seuranta"
|
775 |
-
|
776 |
-
#: includes/views/general-settings.php:71
|
777 |
-
msgid ""
|
778 |
-
"Allow us to anonymously track how this plugin is used to help us make it "
|
779 |
-
"better fit your needs."
|
780 |
-
msgstr "Anna meille lupa nimettömästi seurata kuinka tätä lisäosaa käytetään. Näin voimme kehittää sitä paremmin palvelemaan tarpeitasi. "
|
781 |
-
|
782 |
-
#: includes/views/general-settings.php:73
|
783 |
-
msgid "This is what we track."
|
784 |
-
msgstr "Tämä on, mitä me seurataan."
|
785 |
-
|
786 |
-
#: includes/views/parts/admin-footer.php:11
|
787 |
-
msgid ""
|
788 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
789 |
-
"translated in your language or do you spot errors with the current "
|
790 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
791 |
-
"translation project and click \"help translate\"</a>."
|
792 |
-
msgstr "MailChimp for WordPress tarvitsee käännöksiä. Eikö liitännäistä ole vielä käännettynä omalle kielellesi tai löydätkö virheitä nykyisestä käännöksestä? Auttaminen on helppoa! Suuntaa kohti <a href=\"%s\">käännösprojektia ja klikkaa \"help translate\"</a>"
|
793 |
-
|
794 |
-
#: includes/views/parts/admin-footer.php:31
|
795 |
-
msgid ""
|
796 |
-
"This plugin is not developed by or affiliated with MailChimp in any way."
|
797 |
-
msgstr "Tämä liitännäinen ei ole MailChimpin kehittämä, eikä se ole siihen millään tavoin sidoksissa."
|
798 |
-
|
799 |
-
#: includes/views/parts/lists-overview.php:1
|
800 |
-
msgid "Your MailChimp Account"
|
801 |
-
msgstr "Sinun MailChimp tili"
|
802 |
-
|
803 |
-
#: includes/views/parts/lists-overview.php:2
|
804 |
-
msgid ""
|
805 |
-
"The table below shows your MailChimp lists and their details. If you just "
|
806 |
-
"applied changes to your MailChimp lists, please use the following button to "
|
807 |
-
"renew the cached lists configuration."
|
808 |
-
msgstr "Alla olevassa taulukossa on MailChimp-listat ja listojen tiedot. Jos äskettäin teit muutoksia MailChimp-palvelun listoihin, paina alla olevaa painiketta jolloin listojen rakenne välimuistissa uusitaan."
|
809 |
-
|
810 |
-
#: includes/views/parts/lists-overview.php:14
|
811 |
-
msgid "No lists were found in your MailChimp account"
|
812 |
-
msgstr "MailChimp-tililtäsi ei löytynyt listoja"
|
813 |
-
|
814 |
-
#: includes/views/parts/lists-overview.php:16
|
815 |
-
msgid "A total of %d lists were found in your MailChimp account."
|
816 |
-
msgstr "MailChimp-palvelutililtä löytyi kaikkiaan %d listaa."
|
817 |
-
|
818 |
-
#: includes/views/parts/lists-overview.php:21
|
819 |
-
msgid "List Name"
|
820 |
-
msgstr "Listan nimi"
|
821 |
-
|
822 |
-
#: includes/views/parts/lists-overview.php:22
|
823 |
-
msgid "ID"
|
824 |
-
msgstr "Tunniste"
|
825 |
-
|
826 |
-
#: includes/views/parts/lists-overview.php:23
|
827 |
-
msgid "Subscribers"
|
828 |
-
msgstr "Tilaajat"
|
829 |
-
|
830 |
-
#: includes/views/parts/lists-overview.php:45
|
831 |
-
msgid "Edit this list in MailChimp"
|
832 |
-
msgstr "Muokkaa tätä listaa MailChimp-palvelussa"
|
833 |
-
|
834 |
-
#: includes/views/parts/lists-overview.php:59
|
835 |
-
msgid "%s (%s) with field type %s."
|
836 |
-
msgstr "%s (%s) kenttätyypin kanssa %s."
|
837 |
-
|
838 |
-
#: includes/views/parts/lists-overview.php:83
|
839 |
-
msgid "%s (ID: %s) with type %s."
|
840 |
-
msgstr "%s (ID: %s) tyypin kanssa %s."
|
841 |
-
|
842 |
-
#: integrations/contact-form-7/admin-before.php:2
|
843 |
-
msgid ""
|
844 |
-
"To integrate with Contact Form 7, configure the settings below and then add "
|
845 |
-
"%s to your CF7 form mark-up."
|
846 |
-
msgstr "Kun haluat integroida Contact Form 7 -lisäosaan, tee alla olevat määritykset ja lisää sitten %s CF7 lomakkeeseen."
|
847 |
-
|
848 |
-
#: integrations/custom/admin-before.php:2
|
849 |
-
msgid ""
|
850 |
-
"To get a custom integration to work, include the following HTML in the form "
|
851 |
-
"you are trying to integrate with."
|
852 |
-
msgstr "Lisää seuraava HTML lomakkeeseen johon yrität luoda integrointia. Näin saat oman/mukautetun integraation toimimaan."
|
853 |
-
|
854 |
-
#: integrations/woocommerce/class-woocommerce.php:102
|
855 |
-
msgid "Order #%d"
|
856 |
-
msgstr "Järjestä #%d"
|
857 |
-
|
858 |
-
#. Plugin Name of the plugin/theme
|
859 |
-
msgid "MailChimp for WordPress"
|
860 |
-
msgstr "MailChimp for WordPress"
|
861 |
-
|
862 |
-
#. Plugin URI of the plugin/theme
|
863 |
-
msgid ""
|
864 |
-
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
865 |
-
"wp&utm_campaign=plugins-page"
|
866 |
-
msgstr "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
867 |
-
|
868 |
-
#. Description of the plugin/theme
|
869 |
-
msgid ""
|
870 |
-
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
871 |
-
"methods to your site."
|
872 |
-
msgstr "MailChimp WordPress Lite-versio. Lisää erilaisia rekisteröitymisen menetelmiä sivustoosi."
|
873 |
-
|
874 |
-
#. Author of the plugin/theme
|
875 |
-
msgid "ibericode"
|
876 |
-
msgstr "ibericode"
|
877 |
-
|
878 |
-
#. Author URI of the plugin/theme
|
879 |
-
msgid "https://ibericode.com/"
|
880 |
-
msgstr "https://ibericode.com/"
|
1 |
+
# Copyright (C) 2017 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
# Translators:
|
4 |
# Juha Vihervaara <juha.vihervaara@nemoy.fi>, 2015
|
5 |
+
# Simo Hakala, 2015
|
6 |
# Ville Ristimäki <villeristimaki@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: MailChimp for WordPress\n"
|
10 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
11 |
+
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
|
|
|
|
12 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fi_FI/)\n"
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Language: fi_FI\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Poedit-Basepath: ..\n"
|
19 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
22 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
23 |
|
24 |
+
#: includes/admin/class-admin-texts.php62,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
#: includes/forms/views/edit-form.php:6
|
26 |
msgid "Settings"
|
27 |
msgstr "Asetukset"
|
30 |
msgid "Documentation"
|
31 |
msgstr "Dokumentaatio"
|
32 |
|
33 |
+
#: includes/admin/class-admin.php:204
|
34 |
msgid ""
|
35 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
36 |
msgstr "Onnistui! MailChimp listojen rakenne välimuistissa on uusittu."
|
37 |
|
38 |
+
#: includes/admin/class-admin.php:304
|
39 |
msgid ""
|
40 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
41 |
" to use it."
|
42 |
msgstr "Tämä on pro-version ominaisuus. Päivitä maksulliseen versioon jotta pääset käyttämään sitä."
|
43 |
|
44 |
+
#: includes/admin/class-admin.php305,
|
45 |
+
#: includes/views/parts/lists-overview.php10,
|
46 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
47 |
+
msgid "Renew MailChimp lists"
|
48 |
+
msgstr "Uusitaan MailChimp listat"
|
49 |
+
|
50 |
+
#: includes/admin/class-admin.php:306
|
51 |
+
msgid "Fetching MailChimp lists"
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: includes/admin/class-admin.php:307
|
55 |
+
msgid "Done! MailChimp lists renewed."
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: includes/admin/class-admin.php:308
|
59 |
+
msgid "This can take a while if you have many MailChimp lists."
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
63 |
msgid "MailChimp API Settings"
|
64 |
msgstr "MailChimp API-asetukset"
|
65 |
|
66 |
+
#: includes/admin/class-admin.php:337
|
|
|
67 |
msgid "MailChimp"
|
68 |
msgstr "MailChimp"
|
69 |
|
70 |
+
#: includes/admin/class-admin.php343, includes/views/other-settings.php60,
|
71 |
+
#: includes/views/other-settings.php:70
|
72 |
+
msgid "Other Settings"
|
73 |
+
msgstr ""
|
74 |
+
|
75 |
+
#: includes/admin/class-admin.php:344
|
76 |
+
msgid "Other"
|
77 |
+
msgstr ""
|
78 |
|
79 |
+
#: includes/admin/class-admin.php:458
|
80 |
+
msgid "Log successfully emptied."
|
81 |
+
msgstr ""
|
82 |
+
|
83 |
+
#: includes/admin/class-admin.php:488
|
84 |
msgid ""
|
85 |
+
"To get started with MailChimp for WordPress, please <a href=\"%s\">enter "
|
86 |
+
"your MailChimp API key on the settings page of the plugin</a>."
|
87 |
+
msgstr ""
|
88 |
|
89 |
+
#: includes/admin/class-ads.php:39
|
90 |
+
msgid ""
|
91 |
+
"Want to customize the style of your form? <a href=\"%s\">Try our Styles "
|
92 |
+
"Builder</a> & edit the look of your forms with just a few clicks."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: includes/admin/class-ads.php:54
|
96 |
+
msgid ""
|
97 |
+
"Be notified whenever someone subscribes? <a href=\"%s\">MailChimp for "
|
98 |
+
"WordPress Premium</a> allows you to set up email notifications for your "
|
99 |
+
"forms."
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/admin/class-ads.php:56
|
103 |
+
msgid ""
|
104 |
+
"Increased conversions? <a href=\"%s\">MailChimp for WordPress Premium</a> "
|
105 |
+
"submits forms without reloading the entire page, resulting in a much better "
|
106 |
+
"experience for your visitors."
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: includes/admin/class-ads.php:70
|
110 |
+
msgid "Upgrade to Premium"
|
111 |
+
msgstr ""
|
112 |
+
|
113 |
+
#: includes/admin/class-ads.php:83
|
114 |
+
msgid ""
|
115 |
+
"Do you want translated forms for all of your languages? <a href=\"%s\">Try "
|
116 |
+
"MailChimp for WordPress Premium</a>, which does just that plus more."
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/admin/class-ads.php:88
|
120 |
+
msgid ""
|
121 |
+
"Do you want to create more than one form? Our Premium add-on does just that!"
|
122 |
+
" <a href=\"%s\">Have a look at all Premium benefits</a>."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/admin/class-ads.php:93
|
126 |
+
msgid ""
|
127 |
+
"Are you enjoying this plugin? The Premium add-on unlocks several powerful "
|
128 |
+
"features. <a href=\"%s\">Find out about all benefits now</a>."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: includes/admin/class-ads.php:112
|
132 |
msgid "More subscribers, better newsletters."
|
133 |
msgstr "Enemmän tilaajia, parempia uutiskirjeitä."
|
134 |
|
135 |
+
#: includes/admin/class-ads.php:113
|
136 |
msgid ""
|
137 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
138 |
"our monthly tips."
|
139 |
msgstr "Opi parhaiten kasvattamaan listojasi ja kirjoittamaan parempia sähköposteja tilaamalla kuukausittain meidän vinkkejä."
|
140 |
|
141 |
+
#: includes/admin/class-ads.php:116
|
142 |
msgid "Email Address"
|
143 |
msgstr "Sähköpostiosoite"
|
144 |
|
145 |
+
#: includes/admin/class-ads.php:120
|
146 |
msgid "First Name"
|
147 |
msgstr "Etunimi"
|
148 |
|
149 |
+
#: includes/admin/class-ads.php127, includes/forms/class-admin.php:94
|
150 |
msgid "Subscribe"
|
151 |
msgstr "Tilaa"
|
152 |
|
153 |
+
#: includes/admin/class-ads.php:150
|
154 |
+
msgid ""
|
155 |
+
"Do you want to track all WooCommerce orders in MailChimp so you can send "
|
156 |
+
"emails based on the purchase activity of your subscribers?"
|
157 |
+
msgstr ""
|
158 |
|
159 |
+
#: includes/admin/class-ads.php:153
|
160 |
+
msgid ""
|
161 |
+
"<a href=\"%s\">Upgrade to MailChimp for WordPress Premium</a> or <a "
|
162 |
+
"href=\"%s\">read more about MailChimp's E-Commerce features</a>."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: includes/admin/class-review-notice.php:68
|
166 |
+
msgid ""
|
167 |
+
"You've been using MailChimp for WordPress for some time now; we hope you "
|
168 |
+
"love it!"
|
169 |
+
msgstr ""
|
170 |
|
171 |
+
#: includes/admin/class-review-notice.php:69
|
172 |
+
msgid ""
|
173 |
+
"If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
|
174 |
+
"It would be of great help to us."
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: includes/admin/class-review-notice.php:71
|
178 |
+
msgid "Dismiss this notice."
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: includes/api/class-api.php:84
|
182 |
msgid "Read more about common connectivity issues."
|
183 |
msgstr "Lisätietoja yleisistä yhdistämiseen liittyvistä asioista."
|
184 |
|
185 |
+
#: includes/forms/class-admin.php:62
|
186 |
+
msgid "Add to form"
|
187 |
+
msgstr ""
|
188 |
+
|
189 |
+
#: includes/forms/class-admin.php:63
|
190 |
+
msgid "City"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/forms/class-admin.php:64
|
194 |
+
msgid "Checkboxes"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/forms/class-admin.php:65
|
198 |
+
msgid "Choices"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/forms/class-admin.php:66
|
202 |
+
msgid "Choice type"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/forms/class-admin.php:67
|
206 |
+
msgid "Choose a field to add to the form"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/forms/class-admin.php:68
|
210 |
+
msgid "Close"
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/forms/class-admin.php:69
|
214 |
+
msgid "Country"
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/forms/class-admin.php:70
|
218 |
+
msgid "Dropdown"
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/forms/class-admin.php:71
|
222 |
+
msgid "Field type"
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/forms/class-admin.php:72
|
226 |
+
msgid "Field label"
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/forms/class-admin.php:73
|
230 |
+
msgid "Form action"
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: includes/forms/class-admin.php:74
|
234 |
+
msgid ""
|
235 |
+
"This field will allow your visitors to choose whether they would like to "
|
236 |
+
"subscribe or unsubscribe"
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: includes/forms/class-admin.php:75
|
240 |
+
msgid "Form fields"
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: includes/forms/class-admin.php:76
|
244 |
+
msgid "This field is marked as required in MailChimp."
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: includes/forms/class-admin.php:77
|
248 |
+
msgid "Initial value"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: includes/forms/class-admin.php:78
|
252 |
+
msgid "Interest categories"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: includes/forms/class-admin.php:79
|
256 |
+
msgid "Is this field required?"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: includes/forms/class-admin.php:80
|
260 |
+
msgid "List choice"
|
261 |
+
msgstr ""
|
262 |
+
|
263 |
+
#: includes/forms/class-admin.php:81
|
264 |
+
msgid "This field will allow your visitors to choose a list to subscribe to."
|
265 |
+
msgstr ""
|
266 |
+
|
267 |
+
#: includes/forms/class-admin.php:82
|
268 |
+
msgid "List fields"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: includes/forms/class-admin.php:83
|
272 |
+
msgid "Min"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: includes/forms/class-admin.php:84
|
276 |
+
msgid "Max"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: includes/forms/class-admin.php:85
|
280 |
+
msgid ""
|
281 |
+
"No available fields. Did you select a MailChimp list in the form settings?"
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: includes/forms/class-admin.php:86
|
285 |
+
msgid "Optional"
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: includes/forms/class-admin.php:87
|
289 |
+
msgid "Placeholder"
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: includes/forms/class-admin.php:88
|
293 |
+
msgid "Text to show when field has no value."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: includes/forms/class-admin.php:89
|
297 |
+
msgid "Preselect"
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: includes/forms/class-admin.php:90
|
301 |
+
msgid "Remove"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: includes/forms/class-admin.php:91
|
305 |
+
msgid "Radio buttons"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: includes/forms/class-admin.php:92
|
309 |
+
msgid "Street Address"
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: includes/forms/class-admin.php:93
|
313 |
+
msgid "State"
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: includes/forms/class-admin.php:95
|
317 |
+
msgid "Submit button"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/forms/class-admin.php:96
|
321 |
+
msgid "Wrap in paragraph tags?"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
+
#: includes/forms/class-admin.php:97
|
325 |
+
msgid "Value"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: includes/forms/class-admin.php:98
|
329 |
+
msgid "Text to prefill this field with."
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: includes/forms/class-admin.php:99
|
333 |
+
msgid "ZIP"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
337 |
+
#: includes/forms/views/edit-form.php:24
|
338 |
msgid "Forms"
|
339 |
msgstr "Lomakkeet"
|
340 |
|
341 |
+
#: includes/forms/class-admin.php152, includes/forms/class-admin.php:276
|
342 |
msgid "<strong>Success!</strong> Form successfully saved."
|
343 |
msgstr "<strong>Onnistui!</strong> Lomake tallennettu."
|
344 |
|
345 |
+
#: includes/forms/class-admin.php:276
|
346 |
msgid "Preview form"
|
347 |
msgstr "Esikatsele lomaketta"
|
348 |
|
349 |
+
#: includes/forms/class-admin.php449, includes/forms/class-widget.php:30
|
350 |
+
msgid "MailChimp Sign-Up Form"
|
351 |
+
msgstr "MailChimp-rekisteröintikaavake"
|
352 |
|
353 |
+
#: includes/forms/class-admin.php:453
|
354 |
+
msgid "Select the form to show"
|
355 |
+
msgstr ""
|
356 |
|
357 |
+
#: includes/forms/class-form-previewer.php:146
|
358 |
msgid "Form preview"
|
359 |
msgstr "Lomakkeen esikatselu"
|
360 |
|
361 |
+
#: includes/forms/class-form-tags.php:60
|
362 |
msgid "Replaced with the form response (error or success messages)."
|
363 |
msgstr "Korvataan lomakkeen vastauksella (virhe- tai onnistuminen viestit)."
|
364 |
|
365 |
+
#: includes/forms/class-form-tags.php:65
|
366 |
msgid "Data from the URL or a submitted form."
|
367 |
msgstr "Tiedot URL-osoitteesta tai lähetetystä lomakkeesta."
|
368 |
|
369 |
+
#: includes/forms/class-form-tags.php:71
|
370 |
+
msgid "Data from a cookie."
|
371 |
+
msgstr ""
|
372 |
+
|
373 |
+
#: includes/forms/class-form-tags.php77,
|
374 |
#: includes/integrations/class-integration-tags.php:45
|
375 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
376 |
msgstr "Korvattu tilaajien lukumäärällä valitu(i)ssa listassa / listoissa."
|
377 |
|
378 |
+
#: includes/forms/class-form-tags.php:82
|
379 |
msgid "The email address of the current visitor (if known)."
|
380 |
msgstr "Nykyisen vierailijan sähköpostiosoite (jos tiedossa)."
|
381 |
|
382 |
+
#: includes/forms/class-form-tags.php:87
|
383 |
msgid "The URL of the page."
|
384 |
msgstr "Sivun URL-osoite."
|
385 |
|
386 |
+
#: includes/forms/class-form-tags.php:92
|
387 |
msgid "The path of the page."
|
388 |
msgstr "Sivun polku."
|
389 |
|
390 |
+
#: includes/forms/class-form-tags.php:97
|
391 |
msgid "The current date. Example: %s."
|
392 |
msgstr "Nykyinen päivämäärä. Esimerkki: %s."
|
393 |
|
394 |
+
#: includes/forms/class-form-tags.php:102
|
395 |
msgid "The current time. Example: %s."
|
396 |
msgstr "Nykyinen aika. Esimerkki: %s."
|
397 |
|
398 |
+
#: includes/forms/class-form-tags.php:107
|
399 |
msgid "The site's language. Example: %s."
|
400 |
msgstr "Sivuston kieli. Esimerkki: %s."
|
401 |
|
402 |
+
#: includes/forms/class-form-tags.php:112
|
403 |
msgid "The visitor's IP address. Example: %s."
|
404 |
msgstr "Vierailijan IP-osoite. Esimerkki: %s."
|
405 |
|
406 |
+
#: includes/forms/class-form-tags.php:117
|
407 |
msgid "The property of the currently logged-in user."
|
408 |
msgstr "Kirjautuneen käyttäjän tieto (omaisuus)."
|
409 |
|
410 |
+
#: includes/forms/class-form-tags.php:123
|
411 |
+
msgid "Property of the current page or post."
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: includes/forms/class-form.php:133
|
415 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
416 |
msgstr "%d ID-tunnuksella lomaketta ei löydetty. Ehkä se on poistettu?"
|
417 |
|
419 |
msgid "Newsletter"
|
420 |
msgstr "Uutiskirje"
|
421 |
|
|
|
|
|
|
|
|
|
422 |
#: includes/forms/class-widget.php:32
|
423 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
424 |
msgstr "Näyttää MailChimp for WordPress rekisteröitymiskaavakkeesi"
|
433 |
" form settings</a>."
|
434 |
msgstr "Voit muokata kirjautumislomakettasi <a href=\"%s\">MailChimp for WordPress lomakkeen asetuksista</a>."
|
435 |
|
436 |
+
#: includes/integrations/class-admin.php79,
|
437 |
+
#: includes/integrations/class-admin.php80,
|
438 |
+
#: includes/integrations/views/integration-settings.php10,
|
439 |
+
#: includes/integrations/views/integrations.php57,
|
440 |
+
#: includes/integrations/views/integrations.php:65
|
441 |
+
msgid "Integrations"
|
442 |
+
msgstr "Integraatiot"
|
443 |
+
|
444 |
+
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
445 |
+
#: includes/forms/views/edit-form.php22,
|
446 |
+
#: includes/integrations/views/integration-settings.php8,
|
447 |
+
#: includes/integrations/views/integrations.php:55
|
448 |
+
msgid "You are here: "
|
449 |
+
msgstr "Olet tässä:"
|
450 |
+
|
451 |
+
#: includes/views/general-settings.php:18
|
452 |
+
msgid "General Settings"
|
453 |
+
msgstr "Yleisasetukset"
|
454 |
+
|
455 |
+
#: includes/views/general-settings.php:38
|
456 |
+
msgid "Status"
|
457 |
+
msgstr "Tila"
|
458 |
+
|
459 |
+
#: includes/views/general-settings.php:42
|
460 |
+
msgid "CONNECTED"
|
461 |
+
msgstr "YHDISTETTY"
|
462 |
+
|
463 |
+
#: includes/views/general-settings.php:44
|
464 |
+
msgid "NOT CONNECTED"
|
465 |
+
msgstr "EI YHDISTETTY"
|
466 |
+
|
467 |
+
#: includes/views/general-settings.php:51
|
468 |
+
msgid "API Key"
|
469 |
+
msgstr "API avain"
|
470 |
+
|
471 |
+
#: includes/views/general-settings.php:53
|
472 |
+
msgid "Your MailChimp API key"
|
473 |
+
msgstr "MailChimp API avaimesi"
|
474 |
+
|
475 |
+
#: includes/views/general-settings.php:55
|
476 |
+
msgid "The API key for connecting with your MailChimp account."
|
477 |
+
msgstr "API-avain jolla yhdistetään MailChimp-palvelun tiliin."
|
478 |
+
|
479 |
+
#: includes/views/general-settings.php:56
|
480 |
+
msgid "Get your API key here."
|
481 |
+
msgstr "Hae API avaimesi täältä."
|
482 |
+
|
483 |
+
#: includes/views/other-settings.php:14
|
484 |
+
msgid "Miscellaneous settings"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: includes/views/other-settings.php:17
|
488 |
+
msgid "Usage Tracking"
|
489 |
+
msgstr "Käytön seuranta"
|
490 |
+
|
491 |
+
#: includes/views/other-settings.php:29
|
492 |
+
msgid ""
|
493 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
494 |
+
"better fit your needs."
|
495 |
+
msgstr "Anna meille lupa nimettömästi seurata kuinka tätä lisäosaa käytetään. Näin voimme kehittää sitä paremmin palvelemaan tarpeitasi. "
|
496 |
+
|
497 |
+
#: includes/views/other-settings.php:31
|
498 |
+
msgid "This is what we track."
|
499 |
+
msgstr "Tämä on, mitä me seurataan."
|
500 |
+
|
501 |
+
#: includes/views/other-settings.php:37
|
502 |
+
msgid "Logging"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/views/other-settings.php:44
|
506 |
+
msgid ""
|
507 |
+
"Determines what events should be written to <a href=\"%s\">the debug log</a>"
|
508 |
+
" (see below)."
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: includes/views/other-settings.php:99
|
512 |
+
msgid "Debug Log"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: includes/views/other-settings.php:99
|
516 |
+
msgid "Filter.."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: includes/views/other-settings.php:104
|
520 |
+
msgid "Log file is not writable."
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/views/other-settings.php:105
|
524 |
+
msgid "Please ensure %s has the proper <a href=\"%s\">file permissions</a>."
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: includes/views/other-settings.php:123
|
528 |
+
msgid "Nothing here. Which means there are no errors!"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/views/other-settings.php:133
|
532 |
+
msgid "Empty Log"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: includes/views/other-settings.php:141
|
536 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
540 |
+
msgid "Default sign-up form"
|
541 |
+
msgstr "Oletus liittymislomake"
|
542 |
+
|
543 |
+
#: includes/forms/views/add-form.php10, includes/forms/views/add-form.php:60
|
544 |
msgid "Add new form"
|
545 |
msgstr "Lisää uusi lomake"
|
546 |
|
568 |
msgid "Messages"
|
569 |
msgstr "Viestit"
|
570 |
|
571 |
+
#: includes/forms/views/edit-form.php:7
|
572 |
+
msgid "Appearance"
|
573 |
+
msgstr "Ulkoasu"
|
574 |
+
|
575 |
+
#: includes/forms/views/edit-form.php:25
|
576 |
+
msgid "Form"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: includes/forms/views/edit-form.php:34
|
580 |
+
msgid "Edit Form"
|
581 |
+
msgstr "Muokkaa lomaketta"
|
582 |
+
|
583 |
+
#: includes/forms/views/edit-form.php:58
|
584 |
+
msgid "Enter form title here"
|
585 |
+
msgstr "Kirjoita lomakkeen otsikko tähän"
|
586 |
+
|
587 |
+
#: includes/forms/views/edit-form.php:59
|
588 |
+
msgid "Enter the title of your sign-up form"
|
589 |
+
msgstr "Kirjoita liittymislomakkeen otsikko"
|
590 |
+
|
591 |
+
#: includes/forms/views/edit-form.php:65
|
592 |
+
msgid "Shortcode"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: includes/forms/views/edit-form.php:67
|
596 |
+
msgid "Get shortcode"
|
597 |
+
msgstr "Tee lyhytkoodi"
|
598 |
+
|
599 |
+
#: includes/forms/views/edit-form.php:72
|
600 |
+
msgid "Preview this form"
|
601 |
+
msgstr "Esikatsele tätä lomaketta"
|
602 |
+
|
603 |
+
#: includes/integrations/views/integration-settings.php:20
|
604 |
+
msgid "%s integration"
|
605 |
+
msgstr "%s integraatio"
|
606 |
+
|
607 |
+
#: includes/integrations/views/integration-settings.php:27
|
608 |
+
msgid ""
|
609 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
610 |
+
"this integration from working."
|
611 |
+
msgstr "Valitut MailChimp-listat edellyttävät mukautettuja (ei oletus-) , jotka voivat estää tämän integraation toimimasta."
|
612 |
+
|
613 |
+
#: includes/integrations/views/integration-settings.php:28
|
614 |
+
msgid ""
|
615 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
616 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
617 |
+
"sure only the email & name fields are marked as required fields for the "
|
618 |
+
"selected list(s)."
|
619 |
+
msgstr "Varmista, että<a href=\"%s\">olet määrittänyt lisäosan lähettämään kaikki vaaditut kentät</a> tai <a href=\"%s\">kirjaudu MailChimp.com-palvelun tilille</a> ja varmista, että sähköpostiosoite- ja nimi kentät on meskitut vaadituiksi kentiksi valitulle listalle/listoille."
|
620 |
+
|
621 |
+
#: includes/integrations/views/integration-settings.php:62
|
622 |
+
msgid "Enabled?"
|
623 |
+
msgstr "Käytössä?"
|
624 |
+
|
625 |
+
#: includes/integrations/views/integration-settings.php:66
|
626 |
+
msgid ""
|
627 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
628 |
+
msgstr "Ota käyttöön %s integraatio? Tämä lisää liittymisen valintaruudun lomakkeeseen."
|
629 |
+
|
630 |
+
#: includes/integrations/views/integration-settings.php:76
|
631 |
+
msgid "Implicit?"
|
632 |
+
msgstr "Epäsuora?"
|
633 |
+
|
634 |
+
#: includes/integrations/views/integration-settings.php:80
|
635 |
+
msgid ""
|
636 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
637 |
+
"(recommended)."
|
638 |
+
msgstr "Valitse \"ei\" jos haluat kysyä vierailijoita ennen kuin heidät liitetään tilaajiksi (suositus)."
|
639 |
+
|
640 |
+
#: includes/integrations/views/integration-settings.php:90
|
641 |
+
msgid "MailChimp Lists"
|
642 |
+
msgstr "MailChimp listat"
|
643 |
+
|
644 |
+
#: includes/integrations/views/integration-settings.php:103
|
645 |
+
msgid ""
|
646 |
+
"Select the list(s) to which people who check the checkbox should be "
|
647 |
+
"subscribed."
|
648 |
+
msgstr "Valitse lista(t), mihin valintaruutua käyttäneet kirjataan."
|
649 |
+
|
650 |
+
#: includes/integrations/views/integration-settings.php107,
|
651 |
+
#: includes/forms/views/tabs/form-settings.php:18
|
652 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
653 |
+
msgstr "Listoja ei löydy, <a href=\"%s\">oletko yhteydessä MailChimpiin</a>?"
|
654 |
+
|
655 |
+
#: includes/integrations/views/integration-settings.php:116
|
656 |
+
msgid "Checkbox label text"
|
657 |
+
msgstr "Valintaruudun nimiön teksti"
|
658 |
+
|
659 |
+
#: includes/integrations/views/integration-settings.php:119
|
660 |
+
msgid "HTML tags like %s are allowed in the label text."
|
661 |
+
msgstr "HTML tagit kuten %s ovat sallittuja nimiöteksteissä."
|
662 |
+
|
663 |
+
#: includes/integrations/views/integration-settings.php:129
|
664 |
+
msgid "Pre-check the checkbox?"
|
665 |
+
msgstr "Esitäytetäänkö valintaruutu?"
|
666 |
+
|
667 |
+
#: includes/integrations/views/integration-settings.php:133
|
668 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
669 |
+
msgstr "Valitse \"kyllä\", jos valintaruutu pitäisi olla valmiiksi valittuja."
|
670 |
+
|
671 |
+
#: includes/integrations/views/integration-settings.php:141
|
672 |
+
msgid "Load some default CSS?"
|
673 |
+
msgstr "Ladataanko joku oletus-CSS?"
|
674 |
+
|
675 |
+
#: includes/integrations/views/integration-settings.php:145
|
676 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
677 |
+
msgstr "Valitse \"Kyllä\", jos valintaruutu ilmestyy omituiseen paikkaan."
|
678 |
+
|
679 |
+
#: includes/integrations/views/integration-settings.php:152
|
680 |
+
msgid "Double opt-in?"
|
681 |
+
msgstr "Tuplavahvistus?"
|
682 |
+
|
683 |
+
#: includes/integrations/views/integration-settings.php:163
|
684 |
+
msgid ""
|
685 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
686 |
+
"being subscribed (recommended)"
|
687 |
+
msgstr "Valitse \"Kyllä\" jos haluat tilaajien varmistavan sähköpostiosoitteensa ennen tilausta (suositeltavaa)"
|
688 |
+
|
689 |
+
#: includes/integrations/views/integration-settings.php171,
|
690 |
+
#: includes/forms/views/tabs/form-settings.php:52
|
691 |
+
msgid "Update existing subscribers?"
|
692 |
+
msgstr "Päivitä nykyiset tilaajat?"
|
693 |
+
|
694 |
+
#: includes/integrations/views/integration-settings.php181,
|
695 |
+
#: includes/forms/views/tabs/form-settings.php:62
|
696 |
+
msgid ""
|
697 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
698 |
+
" is sent."
|
699 |
+
msgstr "Valitse \"Kyllä\" jos haluat päivittää olemassa olevat tilaajat lähetettävällä datalla."
|
700 |
+
|
701 |
+
#: includes/integrations/views/integration-settings.php190,
|
702 |
+
#: includes/forms/views/tabs/form-settings.php:68
|
703 |
+
msgid "Replace interest groups?"
|
704 |
+
msgstr "Korvataanko kiinnostusryhmät?"
|
705 |
+
|
706 |
+
#: includes/integrations/views/integration-settings.php201,
|
707 |
+
#: includes/forms/views/tabs/form-settings.php:79
|
708 |
+
msgid ""
|
709 |
+
"Select \"no\" if you want to add the selected interests to any previously "
|
710 |
+
"selected interests when updating a subscriber."
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: includes/integrations/views/integration-settings.php202,
|
714 |
+
#: includes/forms/views/tabs/form-settings.php:80
|
715 |
+
msgid "What does this do?"
|
716 |
+
msgstr "Mitä tämä tekee?"
|
717 |
+
|
718 |
+
#: includes/integrations/views/integrations.php:17
|
719 |
+
msgid "Name"
|
720 |
+
msgstr "Nimi"
|
721 |
+
|
722 |
+
#: includes/integrations/views/integrations.php:18
|
723 |
+
msgid "Description"
|
724 |
+
msgstr "Kuvaus"
|
725 |
+
|
726 |
+
#: includes/integrations/views/integrations.php:35
|
727 |
+
msgid "Configure this integration"
|
728 |
+
msgstr "Määritä tämä integrointi"
|
729 |
+
|
730 |
+
#: includes/integrations/views/integrations.php:71
|
731 |
+
msgid "The table below shows all available integrations."
|
732 |
+
msgstr ""
|
733 |
+
|
734 |
+
#: includes/integrations/views/integrations.php:72
|
735 |
+
msgid ""
|
736 |
+
"Click on the name of an integration to edit all settings specific to that "
|
737 |
+
"integration."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/integrations/views/integrations.php:79
|
741 |
+
msgid "Enabled integrations"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/integrations/views/integrations.php:84
|
745 |
+
msgid "Available integrations"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: includes/views/parts/admin-footer.php:15
|
749 |
+
msgid ""
|
750 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
751 |
+
"translated in your language or do you spot errors with the current "
|
752 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
753 |
+
"translation project and click \"help translate\"</a>."
|
754 |
+
msgstr "MailChimp for WordPress tarvitsee käännöksiä. Eikö liitännäistä ole vielä käännettynä omalle kielellesi tai löydätkö virheitä nykyisestä käännöksestä? Auttaminen on helppoa! Suuntaa kohti <a href=\"%s\">käännösprojektia ja klikkaa \"help translate\"</a>"
|
755 |
+
|
756 |
+
#: includes/views/parts/admin-footer.php:35
|
757 |
+
msgid ""
|
758 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
759 |
+
msgstr "Tämä liitännäinen ei ole MailChimpin kehittämä, eikä se ole siihen millään tavoin sidoksissa."
|
760 |
+
|
761 |
+
#: includes/views/parts/admin-sidebar.php:11
|
762 |
+
msgid "Looking for help?"
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: includes/views/parts/admin-sidebar.php:12
|
766 |
+
msgid "We have some resources available to help you in the right direction."
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: includes/views/parts/admin-sidebar.php:14
|
770 |
+
msgid "Knowledge Base"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: includes/views/parts/admin-sidebar.php:15
|
774 |
+
msgid "Frequently Asked Questions"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: includes/views/parts/admin-sidebar.php:16
|
778 |
+
msgid "Code reference for developers"
|
779 |
+
msgstr ""
|
780 |
+
|
781 |
+
#: includes/views/parts/admin-sidebar.php:36
|
782 |
+
msgid "Looking to improve your sign-up rates?"
|
783 |
+
msgstr ""
|
784 |
+
|
785 |
+
#: includes/views/parts/admin-sidebar.php:37
|
786 |
+
msgid ""
|
787 |
+
"Our <a href=\"%s\">Boxzilla plugin</a> allows you to create pop-ups or "
|
788 |
+
"slide-ins with a subscribe form. A sure way to grow your lists faster."
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: includes/views/parts/lists-overview.php:1
|
792 |
+
msgid "Your MailChimp Account"
|
793 |
+
msgstr "Sinun MailChimp tili"
|
794 |
+
|
795 |
+
#: includes/views/parts/lists-overview.php:2
|
796 |
+
msgid ""
|
797 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
798 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
799 |
+
"renew the cached lists configuration."
|
800 |
+
msgstr "Alla olevassa taulukossa on MailChimp-listat ja listojen tiedot. Jos äskettäin teit muutoksia MailChimp-palvelun listoihin, paina alla olevaa painiketta jolloin listojen rakenne välimuistissa uusitaan."
|
801 |
+
|
802 |
+
#: includes/views/parts/lists-overview.php:17
|
803 |
+
msgid "No lists were found in your MailChimp account"
|
804 |
+
msgstr "MailChimp-tililtäsi ei löytynyt listoja"
|
805 |
|
806 |
+
#: includes/views/parts/lists-overview.php:19
|
807 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
808 |
+
msgstr "MailChimp-palvelutililtä löytyi kaikkiaan %d listaa."
|
|
|
|
|
|
|
809 |
|
810 |
+
#: includes/views/parts/lists-overview.php:24
|
811 |
+
msgid "List Name"
|
812 |
+
msgstr "Listan nimi"
|
813 |
|
814 |
+
#: includes/views/parts/lists-overview.php:25
|
815 |
+
msgid "ID"
|
816 |
+
msgstr "Tunniste"
|
817 |
|
818 |
+
#: includes/views/parts/lists-overview.php:26
|
819 |
+
msgid "Subscribers"
|
820 |
+
msgstr "Tilaajat"
|
821 |
|
822 |
+
#: includes/views/parts/lists-overview.php:48
|
823 |
+
msgid "Edit this list in MailChimp"
|
824 |
+
msgstr "Muokkaa tätä listaa MailChimp-palvelussa"
|
825 |
|
826 |
+
#: includes/views/parts/lists-overview.php:62
|
827 |
+
msgid "%s (%s) with field type %s."
|
828 |
+
msgstr "%s (%s) kenttätyypin kanssa %s."
|
829 |
|
830 |
+
#: includes/forms/views/parts/add-fields-help.php4,
|
831 |
#: includes/forms/views/tabs/form-fields.php:10
|
832 |
msgid "Add more fields"
|
833 |
msgstr "Lisää kenttiä"
|
864 |
"changes."
|
865 |
msgstr "Paina seuraavaa painiketta ja MailChimp WordPress:ille lisäosa hakee tekemäsi muutokset."
|
866 |
|
|
|
|
|
|
|
|
|
|
|
867 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
868 |
msgid "Add dynamic form variable"
|
869 |
msgstr "Lisää dynaaminen lomakkeen muuttuja"
|
936 |
msgid "Enter the HTML code for your form fields.."
|
937 |
msgstr "Kirjoita HTML-koodi lomakkeen kenttiin."
|
938 |
|
939 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
|
|
|
|
|
|
|
|
940 |
msgid ""
|
941 |
"Use the shortcode %s to display this form inside a post, page or text "
|
942 |
"widget."
|
943 |
msgstr "Käytä lyhytkoodia %s ja tämä lomake tulee näkyviin postituksen, sivun tai teksti-vimpaimen sisällä."
|
944 |
|
945 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
946 |
msgid "Form Messages"
|
947 |
msgstr "Lomakkeen viestit"
|
948 |
|
949 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
950 |
msgid "Successfully subscribed"
|
951 |
msgstr "Tilaus onnistui"
|
952 |
|
953 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
954 |
msgid ""
|
955 |
"The text that shows when an email address is successfully subscribed to the "
|
956 |
"selected list(s)."
|
957 |
msgstr "Teksti joka näytetään kun sähköpostiosoite lisättiin onnistuneesti valittuun listaan/listoihin."
|
958 |
|
959 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
960 |
msgid "Invalid email address"
|
961 |
msgstr "Puutteellinen sähköpostiosoite"
|
962 |
|
963 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
964 |
msgid "The text that shows when an invalid email address is given."
|
965 |
msgstr "Näytettävä teksti, kun käyttäjä antaa puutteellisen sähköpostiosoitteen."
|
966 |
|
967 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
968 |
msgid "Required field missing"
|
969 |
msgstr "Vaadittu kenttä puuttuu"
|
970 |
|
971 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
972 |
msgid ""
|
973 |
"The text that shows when a required field for the selected list(s) is "
|
974 |
"missing."
|
975 |
msgstr "Teksti joka näytetään kun valitussa listassa/listoissa vaadittava kenttä puuttuu."
|
976 |
|
977 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
978 |
msgid "Already subscribed"
|
979 |
msgstr "Jo tilattu"
|
980 |
|
981 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
982 |
msgid ""
|
983 |
"The text that shows when the given email is already subscribed to the "
|
984 |
"selected list(s)."
|
985 |
msgstr "Teksti joka näytetään kun annettu sähköpostiosoite on jo tilaajana listassa/listoissa."
|
986 |
|
987 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
988 |
msgid "General error"
|
989 |
msgstr "Yleinen virhe"
|
990 |
|
991 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
992 |
msgid "The text that shows when a general error occured."
|
993 |
msgstr "Teksti joka näytetään yleisen virheen tapahtuessa."
|
994 |
|
995 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
996 |
msgid "Unsubscribed"
|
997 |
msgstr "Tilaus on peruttu"
|
998 |
|
999 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
1000 |
msgid ""
|
1001 |
"When using the unsubscribe method, this is the text that shows when the "
|
1002 |
"given email address is successfully unsubscribed from the selected list(s)."
|
1003 |
msgstr "Kun tilauksen perumisen menetelmä on käytössä, tämä teksti näytetään kun annettu sähköpostiosoite on onnistuneesti poistettu valitun listan/listojen tilaajien joukosta."
|
1004 |
|
1005 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1006 |
msgid "Not subscribed"
|
1007 |
msgstr "Ei tilattu"
|
1008 |
|
1009 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1010 |
msgid ""
|
1011 |
"When using the unsubscribe method, this is the text that shows when the "
|
1012 |
"given email address is not on the selected list(s)."
|
1013 |
msgstr "Kun tilauksen perumisen menetelmä on käytössä, tämä teksti näytetään kun annettu sähköpostiosoite ei ole valitun listan/listojen tilaajien joukossa."
|
1014 |
|
1015 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1016 |
+
msgid "No list selected"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1020 |
+
msgid ""
|
1021 |
+
"When offering a list choice, this is the text that shows when no lists were "
|
1022 |
+
"selected."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/forms/views/tabs/form-messages.php:74
|
1026 |
+
msgid "Updated"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: includes/forms/views/tabs/form-messages.php:77
|
1030 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: includes/forms/views/tabs/form-messages.php:89
|
1034 |
msgid "HTML tags like %s are allowed in the message fields."
|
1035 |
msgstr "HTML tägit kuten %s ovat sallittuja viestikentissä."
|
1036 |
|
1042 |
msgid "MailChimp specific settings"
|
1043 |
msgstr "MailChimp käyttäjäkohtaiset asetukset"
|
1044 |
|
1045 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1046 |
msgid "Lists this form subscribes to"
|
1047 |
msgstr "Listat, jotka tämä lomake tilaa"
|
1048 |
|
1049 |
+
#: includes/forms/views/tabs/form-settings.php:31
|
|
|
|
|
|
|
|
|
|
|
1050 |
msgid ""
|
1051 |
"Select the list(s) to which people who submit this form should be "
|
1052 |
"subscribed."
|
1053 |
msgstr "Valitse lista(t) jotka tilataan tällä lomakkeella."
|
1054 |
|
1055 |
+
#: includes/forms/views/tabs/form-settings.php:37
|
1056 |
msgid "Use double opt-in?"
|
1057 |
msgstr "Käytä varmennettua liittymistä?"
|
1058 |
|
1059 |
+
#: includes/forms/views/tabs/form-settings.php:44
|
1060 |
+
msgid "Are you sure you want to disable double opt-in?"
|
1061 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
|
1063 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
|
|
1064 |
msgid ""
|
1065 |
+
"We strongly suggest keeping double opt-in enabled. Disabling double opt-in "
|
1066 |
+
"may result in abuse."
|
1067 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1068 |
|
1069 |
+
#: includes/forms/views/tabs/form-settings.php:94
|
1070 |
msgid "Form behaviour"
|
1071 |
msgstr "Lomakkeen käyttäytyminen"
|
1072 |
|
1073 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
1074 |
msgid "Hide form after a successful sign-up?"
|
1075 |
msgstr "Kätketäänkö lomake onnistuneen kirjautumisen jälkeen?"
|
1076 |
|
1077 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
1078 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1079 |
msgstr "Valitse \"kyllä\", jos haluat kätkeä lomakkeen kentät onnistuneen kirjautumisen jälkeen."
|
1080 |
|
1081 |
+
#: includes/forms/views/tabs/form-settings.php:120
|
1082 |
msgid "Redirect to URL after successful sign-ups"
|
1083 |
msgstr "Onnistuneen kirjautumisen jälkeen ohjaus URLiin"
|
1084 |
|
1085 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
1086 |
msgid "Example: %s"
|
1087 |
msgstr "Esimerkki: %s"
|
1088 |
|
1089 |
+
#: includes/forms/views/tabs/form-settings.php:123
|
1090 |
msgid ""
|
1091 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
1092 |
" (absolute) URLs, including <code>http://</code>."
|
1093 |
msgstr "Kun haluat että uudelleenohjausta ei tehdä, jätä tyhjäksi tai kirjoita <code>0</code>. Muussa tapauksessa, käytä täydellistä (absoluuttista) URL-osoitetta, mukaan lukien <code>http://</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mailchimp-for-wp-fr_FR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fr_FR.po
CHANGED
@@ -28,7 +28,7 @@
|
|
28 |
msgid ""
|
29 |
msgstr ""
|
30 |
"Project-Id-Version: MailChimp for WordPress\n"
|
31 |
-
"PO-Revision-Date: 2017-
|
32 |
"Last-Translator: jb78180 <jblum66@gmail.com>\n"
|
33 |
"Language-Team: French (France) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fr_FR/)\n"
|
34 |
"MIME-Version: 1.0\n"
|
@@ -1065,7 +1065,7 @@ msgstr "Paramètres spécifiques de MailChimp"
|
|
1065 |
|
1066 |
#: includes/forms/views/tabs/form-settings.php:15
|
1067 |
msgid "Lists this form subscribes to"
|
1068 |
-
msgstr "
|
1069 |
|
1070 |
#: includes/forms/views/tabs/form-settings.php:31
|
1071 |
msgid ""
|
28 |
msgid ""
|
29 |
msgstr ""
|
30 |
"Project-Id-Version: MailChimp for WordPress\n"
|
31 |
+
"PO-Revision-Date: 2017-09-23 20:18+0000\n"
|
32 |
"Last-Translator: jb78180 <jblum66@gmail.com>\n"
|
33 |
"Language-Team: French (France) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fr_FR/)\n"
|
34 |
"MIME-Version: 1.0\n"
|
1065 |
|
1066 |
#: includes/forms/views/tabs/form-settings.php:15
|
1067 |
msgid "Lists this form subscribes to"
|
1068 |
+
msgstr ""
|
1069 |
|
1070 |
#: includes/forms/views/tabs/form-settings.php:31
|
1071 |
msgid ""
|
languages/mailchimp-for-wp-hu_HU.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-hu_HU.po
CHANGED
@@ -1,217 +1,418 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
# Translators:
|
4 |
# Erik Wolf <increst@gmail.com>, 2015
|
|
|
5 |
# Németh Balázs <nb0000@gmail.com>, 2014-2015
|
6 |
# Reka Szendrei <szendreka@gmail.com>, 2017
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: MailChimp for WordPress\n"
|
10 |
-
"
|
11 |
-
"
|
12 |
-
"PO-Revision-Date: 2017-02-13 11:18+0000\n"
|
13 |
-
"Last-Translator: Reka Szendrei <szendreka@gmail.com>\n"
|
14 |
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/hu_HU/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Language: hu_HU\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
-
#:
|
22 |
-
|
23 |
-
|
|
|
24 |
|
25 |
-
#:
|
26 |
-
msgid "
|
27 |
-
msgstr "
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
|
|
|
32 |
|
33 |
-
#:
|
34 |
msgid ""
|
35 |
-
"
|
36 |
-
"
|
37 |
-
msgstr "
|
38 |
|
39 |
-
#:
|
40 |
-
|
41 |
-
|
|
|
|
|
42 |
|
43 |
-
#:
|
44 |
-
msgid "
|
45 |
-
msgstr "
|
46 |
|
47 |
-
#:
|
48 |
-
msgid "
|
49 |
-
msgstr "
|
50 |
|
51 |
-
#:
|
52 |
-
msgid "
|
53 |
-
msgstr "
|
54 |
|
55 |
-
#:
|
56 |
-
msgid "
|
57 |
-
msgstr "
|
58 |
|
59 |
-
#:
|
60 |
-
msgid "
|
61 |
-
msgstr "
|
62 |
|
63 |
-
#:
|
64 |
-
|
65 |
-
|
|
|
66 |
|
67 |
-
#:
|
68 |
-
msgid "
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: includes/admin/class-admin
|
72 |
-
|
73 |
-
|
74 |
-
msgstr "Beállítások"
|
75 |
|
76 |
-
#: includes/admin/class-admin
|
77 |
-
msgid "
|
78 |
-
|
|
|
|
|
79 |
|
80 |
-
#: includes/admin/class-
|
81 |
msgid ""
|
82 |
-
"
|
|
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/admin/class-
|
86 |
msgid ""
|
87 |
-
"
|
88 |
-
" to
|
|
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/admin/class-
|
92 |
-
msgid "
|
93 |
-
|
|
|
|
|
|
|
94 |
|
95 |
-
#: includes/admin/class-
|
96 |
-
|
97 |
-
|
98 |
-
msgstr "MailChimp"
|
99 |
|
100 |
-
#: includes/admin/class-ads.php:
|
101 |
-
msgid "
|
102 |
-
|
|
|
|
|
103 |
|
104 |
-
#: includes/admin/class-ads.php:
|
105 |
msgid ""
|
106 |
-
"
|
107 |
-
"
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/admin/class-ads.php:
|
111 |
-
msgid "
|
|
|
|
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/admin/class-ads.php:
|
|
|
|
|
|
|
|
|
115 |
msgid ""
|
116 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
117 |
"our monthly tips."
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/admin/class-ads.php:
|
121 |
msgid "Email Address"
|
122 |
msgstr "Email cím"
|
123 |
|
124 |
-
#: includes/admin/class-ads.php:
|
125 |
msgid "First Name"
|
126 |
msgstr "Keresztnév"
|
127 |
|
128 |
-
#: includes/admin/class-ads.php:
|
129 |
msgid "Subscribe"
|
130 |
msgstr "Feliratkozás"
|
131 |
|
132 |
-
#: includes/admin/class-
|
133 |
-
msgid "
|
|
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/admin/
|
137 |
-
msgid "
|
|
|
|
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-
|
141 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: includes/
|
145 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
msgid "Forms"
|
147 |
msgstr "Űrlapok"
|
148 |
|
149 |
-
#: includes/forms/class-admin.
|
150 |
msgid "<strong>Success!</strong> Form successfully saved."
|
151 |
-
msgstr ""
|
152 |
|
153 |
-
#: includes/forms/class-admin.php:
|
154 |
msgid "Preview form"
|
155 |
-
msgstr ""
|
156 |
|
157 |
-
#: includes/forms/class-admin.php:
|
158 |
-
msgid "
|
159 |
-
msgstr ""
|
160 |
|
161 |
-
#: includes/forms/class-admin.php:
|
162 |
-
msgid "
|
163 |
-
msgstr ""
|
164 |
|
165 |
-
#: includes/forms/class-form-previewer.php:
|
166 |
msgid "Form preview"
|
167 |
msgstr "Űrlap előnézet"
|
168 |
|
169 |
-
#: includes/forms/class-form-tags.php:
|
170 |
msgid "Replaced with the form response (error or success messages)."
|
171 |
msgstr "Lecserélve az űrlap válasz üzenetére (hiba vagy siker üzenet)."
|
172 |
|
173 |
-
#: includes/forms/class-form-tags.php:
|
174 |
msgid "Data from the URL or a submitted form."
|
175 |
-
msgstr ""
|
176 |
|
177 |
-
#: includes/forms/class-form-tags.php:
|
|
|
|
|
|
|
|
|
178 |
#: includes/integrations/class-integration-tags.php:45
|
179 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
180 |
msgstr "Lecserélve a feliratkozók számára a kijelölt listá(k)ban."
|
181 |
|
182 |
-
#: includes/forms/class-form-tags.php:
|
183 |
msgid "The email address of the current visitor (if known)."
|
184 |
-
msgstr ""
|
185 |
|
186 |
-
#: includes/forms/class-form-tags.php:
|
187 |
msgid "The URL of the page."
|
188 |
-
msgstr ""
|
189 |
|
190 |
-
#: includes/forms/class-form-tags.php:
|
191 |
msgid "The path of the page."
|
192 |
-
msgstr ""
|
193 |
|
194 |
-
#: includes/forms/class-form-tags.php:
|
195 |
msgid "The current date. Example: %s."
|
196 |
-
msgstr ""
|
197 |
|
198 |
-
#: includes/forms/class-form-tags.php:
|
199 |
msgid "The current time. Example: %s."
|
200 |
-
msgstr ""
|
201 |
|
202 |
-
#: includes/forms/class-form-tags.php:
|
203 |
msgid "The site's language. Example: %s."
|
204 |
-
msgstr ""
|
205 |
|
206 |
-
#: includes/forms/class-form-tags.php:
|
207 |
msgid "The visitor's IP address. Example: %s."
|
208 |
-
msgstr ""
|
209 |
|
210 |
-
#: includes/forms/class-form-tags.php:
|
211 |
msgid "The property of the currently logged-in user."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/forms/class-form.php:
|
|
|
|
|
|
|
|
|
215 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
216 |
msgstr ""
|
217 |
|
@@ -219,10 +420,6 @@ msgstr ""
|
|
219 |
msgid "Newsletter"
|
220 |
msgstr "Hírlevél"
|
221 |
|
222 |
-
#: includes/forms/class-widget.php:30
|
223 |
-
msgid "MailChimp Sign-Up Form"
|
224 |
-
msgstr "MailChimp feliratkozás űrlap"
|
225 |
-
|
226 |
#: includes/forms/class-widget.php:32
|
227 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
228 |
msgstr "Megjeleníti a MailChimp for WordPress feliratkozás űrlapját"
|
@@ -237,7 +434,114 @@ msgid ""
|
|
237 |
" form settings</a>."
|
238 |
msgstr "A feliratkozás űrlapot a <a href=\"%s\">MailChimp for WordPress űrlap beállítások</a>nál lehet szerkeszteni."
|
239 |
|
240 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Add new form"
|
242 |
msgstr "Új űrlap hozzáadása"
|
243 |
|
@@ -269,34 +573,262 @@ msgstr "Üzenetek"
|
|
269 |
msgid "Appearance"
|
270 |
msgstr "Megjelenés"
|
271 |
|
272 |
-
#: includes/forms/views/edit-form.php:
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
|
279 |
-
#: includes/
|
280 |
-
msgid "
|
281 |
-
msgstr "
|
282 |
|
283 |
-
#: includes/
|
284 |
-
msgid "
|
285 |
-
msgstr "
|
286 |
|
287 |
-
#: includes/
|
288 |
-
msgid "
|
289 |
-
msgstr "
|
290 |
|
291 |
-
#: includes/
|
292 |
-
msgid "
|
293 |
-
msgstr "
|
294 |
|
295 |
-
#: includes/
|
296 |
-
msgid "
|
297 |
-
msgstr "
|
298 |
|
299 |
-
#: includes/forms/views/parts/add-fields-help.
|
300 |
#: includes/forms/views/tabs/form-fields.php:10
|
301 |
msgid "Add more fields"
|
302 |
msgstr "Mezők hozzáadása"
|
@@ -333,14 +865,9 @@ msgid ""
|
|
333 |
"changes."
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/forms/views/parts/add-fields-help.php:43
|
337 |
-
#: includes/views/parts/lists-overview.php:8
|
338 |
-
msgid "Renew MailChimp lists"
|
339 |
-
msgstr "MailChimp listák frissítése"
|
340 |
-
|
341 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
342 |
msgid "Add dynamic form variable"
|
343 |
-
msgstr ""
|
344 |
|
345 |
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
346 |
msgid ""
|
@@ -354,15 +881,15 @@ msgstr "Ezzel testre szabhatja az űrlapokat vagy a válasz üzeneteket."
|
|
354 |
|
355 |
#: includes/forms/views/tabs/form-appearance.php:5
|
356 |
msgid "Inherit from %s theme"
|
357 |
-
msgstr ""
|
358 |
|
359 |
#: includes/forms/views/tabs/form-appearance.php:6
|
360 |
msgid "Basic"
|
361 |
-
msgstr ""
|
362 |
|
363 |
#: includes/forms/views/tabs/form-appearance.php:7
|
364 |
msgid "Form Themes"
|
365 |
-
msgstr ""
|
366 |
|
367 |
#: includes/forms/views/tabs/form-appearance.php:8
|
368 |
msgid "Light Theme"
|
@@ -386,11 +913,11 @@ msgstr "Kék sablon"
|
|
386 |
|
387 |
#: includes/forms/views/tabs/form-appearance.php:25
|
388 |
msgid "Form Appearance"
|
389 |
-
msgstr ""
|
390 |
|
391 |
#: includes/forms/views/tabs/form-appearance.php:29
|
392 |
msgid "Form Style"
|
393 |
-
msgstr ""
|
394 |
|
395 |
#: includes/forms/views/tabs/form-appearance.php:48
|
396 |
msgid ""
|
@@ -400,97 +927,111 @@ msgstr "Ha be akar tölteni néhány alap CSS stílust, akkor válassza az„ala
|
|
400 |
|
401 |
#: includes/forms/views/tabs/form-fields.php:6
|
402 |
msgid "Form variables"
|
403 |
-
msgstr ""
|
404 |
|
405 |
#: includes/forms/views/tabs/form-fields.php:13
|
406 |
msgid "Form Fields"
|
407 |
-
msgstr ""
|
408 |
|
409 |
#: includes/forms/views/tabs/form-fields.php:19
|
410 |
msgid "Enter the HTML code for your form fields.."
|
411 |
-
msgstr ""
|
412 |
-
|
413 |
-
#: includes/forms/views/tabs/form-fields.php:27
|
414 |
-
msgid "Your form is missing the following (required) form fields:"
|
415 |
-
msgstr "Hiányoznak az űrlapról a következő (kötelező) mezők:"
|
416 |
|
417 |
-
#: includes/forms/views/tabs/form-fields.php:
|
418 |
msgid ""
|
419 |
"Use the shortcode %s to display this form inside a post, page or text "
|
420 |
"widget."
|
421 |
msgstr "Használja a %s gyorskódot az űrlap megjelenítéséhez bejegyzésben, oldalon vagy widgetben."
|
422 |
|
423 |
-
#: includes/forms/views/tabs/form-messages.php:
|
424 |
msgid "Form Messages"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/forms/views/tabs/form-messages.php:
|
428 |
msgid "Successfully subscribed"
|
429 |
msgstr "Sikeresen feliratkoztatva."
|
430 |
|
431 |
-
#: includes/forms/views/tabs/form-messages.php:
|
432 |
msgid ""
|
433 |
"The text that shows when an email address is successfully subscribed to the "
|
434 |
"selected list(s)."
|
435 |
msgstr "A szöveg, ami megjelenik, ha egy emailcímet sikeresen feliratkoztattunk a kiválasztott listá(k)ra."
|
436 |
|
437 |
-
#: includes/forms/views/tabs/form-messages.php:
|
438 |
msgid "Invalid email address"
|
439 |
msgstr "Érvénytelen emailcím"
|
440 |
|
441 |
-
#: includes/forms/views/tabs/form-messages.php:
|
442 |
msgid "The text that shows when an invalid email address is given."
|
443 |
msgstr "A szöveg, ami megjelenik, ha egy érvénytelen emailcímet adnak meg."
|
444 |
|
445 |
-
#: includes/forms/views/tabs/form-messages.php:
|
446 |
msgid "Required field missing"
|
447 |
msgstr "Kötelező mező nincs kitöltve"
|
448 |
|
449 |
-
#: includes/forms/views/tabs/form-messages.php:
|
450 |
msgid ""
|
451 |
"The text that shows when a required field for the selected list(s) is "
|
452 |
"missing."
|
453 |
msgstr "A szöveg, ami megjelenik, ha egy, a listá(k)hoz szükséges mező nincs kitöltve."
|
454 |
|
455 |
-
#: includes/forms/views/tabs/form-messages.php:
|
456 |
msgid "Already subscribed"
|
457 |
msgstr "Már feliratkozott"
|
458 |
|
459 |
-
#: includes/forms/views/tabs/form-messages.php:
|
460 |
msgid ""
|
461 |
"The text that shows when the given email is already subscribed to the "
|
462 |
"selected list(s)."
|
463 |
msgstr "A szöveg, ami megjelenik, ha a megadott emailcím már fel van iratkozva a kiválasztott listá(k)ra."
|
464 |
|
465 |
-
#: includes/forms/views/tabs/form-messages.php:
|
466 |
msgid "General error"
|
467 |
msgstr "Általános hiba"
|
468 |
|
469 |
-
#: includes/forms/views/tabs/form-messages.php:
|
470 |
msgid "The text that shows when a general error occured."
|
471 |
msgstr "A szöveg, ami megjelenik, ha általános hiba történt."
|
472 |
|
473 |
-
#: includes/forms/views/tabs/form-messages.php:
|
474 |
msgid "Unsubscribed"
|
475 |
msgstr "Leiratkoztatva"
|
476 |
|
477 |
-
#: includes/forms/views/tabs/form-messages.php:
|
478 |
msgid ""
|
479 |
"When using the unsubscribe method, this is the text that shows when the "
|
480 |
"given email address is successfully unsubscribed from the selected list(s)."
|
481 |
msgstr "A leiratkozás használatakor ez a szöveg jelenik meg egy adott emailcím sikeres leiratkoztatásakor a kijelölt listá(k)ról."
|
482 |
|
483 |
-
#: includes/forms/views/tabs/form-messages.php:
|
484 |
msgid "Not subscribed"
|
485 |
msgstr "Nem feliratkoztatva"
|
486 |
|
487 |
-
#: includes/forms/views/tabs/form-messages.php:
|
488 |
msgid ""
|
489 |
"When using the unsubscribe method, this is the text that shows when the "
|
490 |
"given email address is not on the selected list(s)."
|
491 |
msgstr "A leiratkozás használatakor ez a szöveg jelenik meg egy adott emailcím nincs a kijelölt listá(ko)n."
|
492 |
|
493 |
-
#: includes/forms/views/tabs/form-messages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
494 |
msgid "HTML tags like %s are allowed in the message fields."
|
495 |
msgstr "HTML elemek (például: %s) lehetnek az üzenet mezőkben."
|
496 |
|
@@ -502,379 +1043,52 @@ msgstr "Űrlap beállítások"
|
|
502 |
msgid "MailChimp specific settings"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/forms/views/tabs/form-settings.php:
|
506 |
msgid "Lists this form subscribes to"
|
507 |
msgstr "Ez az űrlap ezekre a listákra iratkoztat fel"
|
508 |
|
509 |
-
#: includes/forms/views/tabs/form-settings.php:
|
510 |
-
#: includes/integrations/views/integration-settings.php:93
|
511 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
512 |
-
msgstr "Nem találtam listákat, <a href=\"%s\">össze van kötve a MailChimppel</a>?"
|
513 |
-
|
514 |
-
#: includes/forms/views/tabs/form-settings.php:29
|
515 |
msgid ""
|
516 |
"Select the list(s) to which people who submit this form should be "
|
517 |
"subscribed."
|
518 |
msgstr "Adja meg a listá(ka)t, amire az űrlapot beküldők fel lesznek iratkozva."
|
519 |
|
520 |
-
#: includes/forms/views/tabs/form-settings.php:
|
521 |
msgid "Use double opt-in?"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: includes/forms/views/tabs/form-settings.php:
|
525 |
-
|
526 |
-
#: includes/forms/views/tabs/form-settings.php:69
|
527 |
-
#: includes/forms/views/tabs/form-settings.php:85
|
528 |
-
#: includes/forms/views/tabs/form-settings.php:115
|
529 |
-
#: includes/integrations/views/integration-settings.php:53
|
530 |
-
#: includes/integrations/views/integration-settings.php:66
|
531 |
-
#: includes/integrations/views/integration-settings.php:117
|
532 |
-
#: includes/integrations/views/integration-settings.php:129
|
533 |
-
#: includes/integrations/views/integration-settings.php:142
|
534 |
-
#: includes/integrations/views/integration-settings.php:163
|
535 |
-
#: includes/integrations/views/integration-settings.php:180
|
536 |
-
#: includes/integrations/views/integration-settings.php:199
|
537 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
538 |
-
msgid "Yes"
|
539 |
-
msgstr "Igen"
|
540 |
-
|
541 |
-
#: includes/forms/views/tabs/form-settings.php:43
|
542 |
-
#: includes/forms/views/tabs/form-settings.php:58
|
543 |
-
#: includes/forms/views/tabs/form-settings.php:73
|
544 |
-
#: includes/forms/views/tabs/form-settings.php:89
|
545 |
-
#: includes/forms/views/tabs/form-settings.php:119
|
546 |
-
#: includes/integrations/views/integration-settings.php:54
|
547 |
-
#: includes/integrations/views/integration-settings.php:67
|
548 |
-
#: includes/integrations/views/integration-settings.php:118
|
549 |
-
#: includes/integrations/views/integration-settings.php:130
|
550 |
-
#: includes/integrations/views/integration-settings.php:146
|
551 |
-
#: includes/integrations/views/integration-settings.php:167
|
552 |
-
#: includes/integrations/views/integration-settings.php:184
|
553 |
-
#: includes/integrations/views/integration-settings.php:203
|
554 |
-
#: integrations/contact-form-7/class-contact-form-7.php:69
|
555 |
-
msgid "No"
|
556 |
-
msgstr "Nem"
|
557 |
-
|
558 |
-
#: includes/forms/views/tabs/form-settings.php:45
|
559 |
-
#: includes/integrations/views/integration-settings.php:149
|
560 |
-
msgid ""
|
561 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
562 |
-
"being subscribed (recommended)"
|
563 |
-
msgstr "Válassza az „Igen”-t, ha a feliratkozóknak meg kell erősíteniük az emailcímüket (ajánlott)"
|
564 |
-
|
565 |
-
#: includes/forms/views/tabs/form-settings.php:50
|
566 |
-
msgid "Send final welcome email?"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/forms/views/tabs/form-settings.php:
|
570 |
-
#: includes/integrations/views/integration-settings.php:169
|
571 |
-
msgid ""
|
572 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
573 |
-
"succeeds (only when double opt-in is disabled)."
|
574 |
-
msgstr "Ha „Igen”-t választ, akkor a feliratkozók kapnak egy üdvözlő email (csak ha nincs dupla megerősítés)."
|
575 |
-
|
576 |
-
#: includes/forms/views/tabs/form-settings.php:65
|
577 |
-
#: includes/integrations/views/integration-settings.php:176
|
578 |
-
msgid "Update existing subscribers?"
|
579 |
-
msgstr "Meglévő feliratkozók frissítése?"
|
580 |
-
|
581 |
-
#: includes/forms/views/tabs/form-settings.php:75
|
582 |
-
#: includes/integrations/views/integration-settings.php:186
|
583 |
-
msgid ""
|
584 |
-
"Select \"yes\" if you want to update existing subscribers with the data that"
|
585 |
-
" is sent."
|
586 |
-
msgstr "Válassza az „igen”-t, ha a meglévő feliratkozók adatait szeretné frissíteni a most küldött adatokkal."
|
587 |
-
|
588 |
-
#: includes/forms/views/tabs/form-settings.php:81
|
589 |
-
#: includes/integrations/views/integration-settings.php:195
|
590 |
-
msgid "Replace interest groups?"
|
591 |
-
msgstr "Érdeklődési körök cseréje?"
|
592 |
-
|
593 |
-
#: includes/forms/views/tabs/form-settings.php:92
|
594 |
-
#: includes/integrations/views/integration-settings.php:206
|
595 |
msgid ""
|
596 |
-
"
|
597 |
-
"
|
598 |
-
msgstr ""
|
599 |
-
|
600 |
-
#: includes/forms/views/tabs/form-settings.php:93
|
601 |
-
#: includes/integrations/views/integration-settings.php:207
|
602 |
-
msgid "What does this do?"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: includes/forms/views/tabs/form-settings.php:
|
606 |
msgid "Form behaviour"
|
607 |
-
msgstr ""
|
608 |
|
609 |
-
#: includes/forms/views/tabs/form-settings.php:
|
610 |
msgid "Hide form after a successful sign-up?"
|
611 |
msgstr "Űrlap elrejtése a sikeres feliratkozás után?"
|
612 |
|
613 |
-
#: includes/forms/views/tabs/form-settings.php:
|
614 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
615 |
msgstr "Ha „Igen”, akkor sikeres feliratkozás után el lesznek rejtve az űrlap mezői."
|
616 |
|
617 |
-
#: includes/forms/views/tabs/form-settings.php:
|
618 |
msgid "Redirect to URL after successful sign-ups"
|
619 |
msgstr "Átirányítás az URL-re sikeres feliratkozás után"
|
620 |
|
621 |
-
#: includes/forms/views/tabs/form-settings.php:
|
622 |
msgid "Example: %s"
|
623 |
msgstr "Példa: %s"
|
624 |
|
625 |
-
#: includes/forms/views/tabs/form-settings.php:
|
626 |
msgid ""
|
627 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
628 |
" (absolute) URLs, including <code>http://</code>."
|
629 |
msgstr "Hagyja üresen, vagy írjon be <code>0</code>-t, hogy ne legyen átirányítás. Egyébként használjon teljes (abszolút) URLeket, amiben van <code>http://</code>."
|
630 |
-
|
631 |
-
#: includes/integrations/class-admin.php:79
|
632 |
-
#: includes/integrations/class-admin.php:80
|
633 |
-
#: includes/integrations/views/integration-settings.php:10
|
634 |
-
#: includes/integrations/views/integrations.php:9
|
635 |
-
#: includes/integrations/views/integrations.php:17
|
636 |
-
msgid "Integrations"
|
637 |
-
msgstr "Integrációk"
|
638 |
-
|
639 |
-
#: includes/integrations/views/integration-settings.php:20
|
640 |
-
msgid "%s integration"
|
641 |
-
msgstr ""
|
642 |
-
|
643 |
-
#: includes/integrations/views/integration-settings.php:51
|
644 |
-
msgid "Enabled?"
|
645 |
-
msgstr "Engedélyezett?"
|
646 |
-
|
647 |
-
#: includes/integrations/views/integration-settings.php:55
|
648 |
-
msgid ""
|
649 |
-
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: includes/integrations/views/integration-settings.php:64
|
653 |
-
msgid "Implicit?"
|
654 |
-
msgstr ""
|
655 |
-
|
656 |
-
#: includes/integrations/views/integration-settings.php:68
|
657 |
-
msgid ""
|
658 |
-
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
659 |
-
"(recommended)."
|
660 |
-
msgstr ""
|
661 |
-
|
662 |
-
#: includes/integrations/views/integration-settings.php:78
|
663 |
-
msgid "MailChimp Lists"
|
664 |
-
msgstr "MailChimp listák"
|
665 |
-
|
666 |
-
#: includes/integrations/views/integration-settings.php:89
|
667 |
-
msgid ""
|
668 |
-
"Select the list(s) to which people who check the checkbox should be "
|
669 |
-
"subscribed."
|
670 |
-
msgstr "Válassza ki a listá(ka)t, amelyre az űrlapot kitöltők fel lesznek iratva."
|
671 |
-
|
672 |
-
#: includes/integrations/views/integration-settings.php:102
|
673 |
-
msgid "Checkbox label text"
|
674 |
-
msgstr "Jelölőnégyzethez tartozó felirat."
|
675 |
-
|
676 |
-
#: includes/integrations/views/integration-settings.php:105
|
677 |
-
msgid "HTML tags like %s are allowed in the label text."
|
678 |
-
msgstr "HTML elemek (például %s) lehetnek a címkék szövegeiben."
|
679 |
-
|
680 |
-
#: includes/integrations/views/integration-settings.php:115
|
681 |
-
msgid "Pre-check the checkbox?"
|
682 |
-
msgstr "Jelölőnégyzet bejelölése előre?"
|
683 |
-
|
684 |
-
#: includes/integrations/views/integration-settings.php:119
|
685 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: includes/integrations/views/integration-settings.php:127
|
689 |
-
msgid "Load some default CSS?"
|
690 |
-
msgstr "Kell némi alap CSS?"
|
691 |
-
|
692 |
-
#: includes/integrations/views/integration-settings.php:131
|
693 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
694 |
-
msgstr "Válassza az „Igen”-t, ha a jelölő négyzet fura helyen jelenik meg."
|
695 |
-
|
696 |
-
#: includes/integrations/views/integration-settings.php:138
|
697 |
-
msgid "Double opt-in?"
|
698 |
-
msgstr "Dupla megerősítés?"
|
699 |
-
|
700 |
-
#: includes/integrations/views/integration-settings.php:159
|
701 |
-
msgid "Send Welcome Email?"
|
702 |
-
msgstr "Üdvözlő email küldése?"
|
703 |
-
|
704 |
-
#: includes/integrations/views/integration-settings.php:244
|
705 |
-
msgid ""
|
706 |
-
"The selected MailChimp lists require non-default fields, which may prevent "
|
707 |
-
"this integration from working."
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: includes/integrations/views/integration-settings.php:245
|
711 |
-
msgid ""
|
712 |
-
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
713 |
-
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
714 |
-
"sure only the email & name fields are marked as required fields for the "
|
715 |
-
"selected list(s)."
|
716 |
-
msgstr ""
|
717 |
-
|
718 |
-
#: includes/integrations/views/integrations.php:30
|
719 |
-
msgid "Enabled"
|
720 |
-
msgstr "Engedélyezett"
|
721 |
-
|
722 |
-
#: includes/integrations/views/integrations.php:31
|
723 |
-
msgid "Name"
|
724 |
-
msgstr "Név"
|
725 |
-
|
726 |
-
#: includes/integrations/views/integrations.php:32
|
727 |
-
msgid "Description"
|
728 |
-
msgstr "Leírás"
|
729 |
-
|
730 |
-
#: includes/integrations/views/integrations.php:50
|
731 |
-
msgid ""
|
732 |
-
"This integration is enabled by default as it requires manual actions to "
|
733 |
-
"work."
|
734 |
-
msgstr ""
|
735 |
-
|
736 |
-
#: includes/integrations/views/integrations.php:57
|
737 |
-
msgid "Configure this integration"
|
738 |
-
msgstr "Integráció konfigurálása"
|
739 |
-
|
740 |
-
#: includes/views/general-settings.php:18
|
741 |
-
msgid "General Settings"
|
742 |
-
msgstr "Általános beállítások"
|
743 |
-
|
744 |
-
#: includes/views/general-settings.php:35
|
745 |
-
msgid "Status"
|
746 |
-
msgstr "Állapot"
|
747 |
-
|
748 |
-
#: includes/views/general-settings.php:39
|
749 |
-
msgid "CONNECTED"
|
750 |
-
msgstr "ÖSSZEKÖTVE"
|
751 |
-
|
752 |
-
#: includes/views/general-settings.php:41
|
753 |
-
msgid "NOT CONNECTED"
|
754 |
-
msgstr "NINCS ÖSSZEKÖTVE"
|
755 |
-
|
756 |
-
#: includes/views/general-settings.php:48
|
757 |
-
msgid "API Key"
|
758 |
-
msgstr "API kulcs"
|
759 |
-
|
760 |
-
#: includes/views/general-settings.php:50
|
761 |
-
msgid "Your MailChimp API key"
|
762 |
-
msgstr "A MailChimp API kulcs"
|
763 |
-
|
764 |
-
#: includes/views/general-settings.php:52
|
765 |
-
msgid "The API key for connecting with your MailChimp account."
|
766 |
-
msgstr "API kulcs a MailChimp fiókoddal való összekapcsoláshoz."
|
767 |
-
|
768 |
-
#: includes/views/general-settings.php:53
|
769 |
-
msgid "Get your API key here."
|
770 |
-
msgstr "API kulcsot itt szerezhet."
|
771 |
-
|
772 |
-
#: includes/views/general-settings.php:65
|
773 |
-
msgid "Usage Tracking"
|
774 |
-
msgstr "Használat követése"
|
775 |
-
|
776 |
-
#: includes/views/general-settings.php:71
|
777 |
-
msgid ""
|
778 |
-
"Allow us to anonymously track how this plugin is used to help us make it "
|
779 |
-
"better fit your needs."
|
780 |
-
msgstr "Engedélyezd számunkra, hogy anonim módon kövessük ennek a bővítménynek a működését, hogy jobbá tegyük, és még inkább az igényeidhez illeszkedjen."
|
781 |
-
|
782 |
-
#: includes/views/general-settings.php:73
|
783 |
-
msgid "This is what we track."
|
784 |
-
msgstr "Ez az, amit követünk."
|
785 |
-
|
786 |
-
#: includes/views/parts/admin-footer.php:11
|
787 |
-
msgid ""
|
788 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
789 |
-
"translated in your language or do you spot errors with the current "
|
790 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
791 |
-
"translation project and click \"help translate\"</a>."
|
792 |
-
msgstr "A MailChimp for WordPress fordításokra vár. Nincs lefordítva a bővítmény az Ön nyelvére, vagy hibákat talált az aktuális fordításban? Könnyen segíthet nekünk. Menjen át a <a href=\"%s\">fordításokhoz és kattintson „help translate” linkre</a>!"
|
793 |
-
|
794 |
-
#: includes/views/parts/admin-footer.php:31
|
795 |
-
msgid ""
|
796 |
-
"This plugin is not developed by or affiliated with MailChimp in any way."
|
797 |
-
msgstr "Ezt a bővítményt nem a MailChimp fejleszti, és nem áll vele közvetlen kapcsolatban."
|
798 |
-
|
799 |
-
#: includes/views/parts/lists-overview.php:1
|
800 |
-
msgid "Your MailChimp Account"
|
801 |
-
msgstr "MailChimp fiókod"
|
802 |
-
|
803 |
-
#: includes/views/parts/lists-overview.php:2
|
804 |
-
msgid ""
|
805 |
-
"The table below shows your MailChimp lists and their details. If you just "
|
806 |
-
"applied changes to your MailChimp lists, please use the following button to "
|
807 |
-
"renew the cached lists configuration."
|
808 |
-
msgstr "A táblázat a MailChimp listáidat és azok részleteit mutatja. Amennyiben változtatsz a MailChimp listáidon, az alábbi gomb segítségével frissítsd a tárolt konfigurációkat."
|
809 |
-
|
810 |
-
#: includes/views/parts/lists-overview.php:14
|
811 |
-
msgid "No lists were found in your MailChimp account"
|
812 |
-
msgstr "Nem találhatók listák a MailChimp fiókjában."
|
813 |
-
|
814 |
-
#: includes/views/parts/lists-overview.php:16
|
815 |
-
msgid "A total of %d lists were found in your MailChimp account."
|
816 |
-
msgstr "%d lista található a MailChimp fiókodban."
|
817 |
-
|
818 |
-
#: includes/views/parts/lists-overview.php:21
|
819 |
-
msgid "List Name"
|
820 |
-
msgstr "Lista neve"
|
821 |
-
|
822 |
-
#: includes/views/parts/lists-overview.php:22
|
823 |
-
msgid "ID"
|
824 |
-
msgstr "azonosító"
|
825 |
-
|
826 |
-
#: includes/views/parts/lists-overview.php:23
|
827 |
-
msgid "Subscribers"
|
828 |
-
msgstr "Feliratkozók"
|
829 |
-
|
830 |
-
#: includes/views/parts/lists-overview.php:45
|
831 |
-
msgid "Edit this list in MailChimp"
|
832 |
-
msgstr "Lista szerkesztése MailChimp-ben"
|
833 |
-
|
834 |
-
#: includes/views/parts/lists-overview.php:59
|
835 |
-
msgid "%s (%s) with field type %s."
|
836 |
-
msgstr ""
|
837 |
-
|
838 |
-
#: includes/views/parts/lists-overview.php:83
|
839 |
-
msgid "%s (ID: %s) with type %s."
|
840 |
-
msgstr ""
|
841 |
-
|
842 |
-
#: integrations/contact-form-7/admin-before.php:2
|
843 |
-
msgid ""
|
844 |
-
"To integrate with Contact Form 7, configure the settings below and then add "
|
845 |
-
"%s to your CF7 form mark-up."
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: integrations/custom/admin-before.php:2
|
849 |
-
msgid ""
|
850 |
-
"To get a custom integration to work, include the following HTML in the form "
|
851 |
-
"you are trying to integrate with."
|
852 |
-
msgstr ""
|
853 |
-
|
854 |
-
#: integrations/woocommerce/class-woocommerce.php:102
|
855 |
-
msgid "Order #%d"
|
856 |
-
msgstr ""
|
857 |
-
|
858 |
-
#. Plugin Name of the plugin/theme
|
859 |
-
msgid "MailChimp for WordPress"
|
860 |
-
msgstr "MailChimp for WordPress"
|
861 |
-
|
862 |
-
#. Plugin URI of the plugin/theme
|
863 |
-
msgid ""
|
864 |
-
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
865 |
-
"wp&utm_campaign=plugins-page"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#. Description of the plugin/theme
|
869 |
-
msgid ""
|
870 |
-
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
871 |
-
"methods to your site."
|
872 |
-
msgstr "MailChimp for WordPress by ibericode. Adj számos hatékony feliratkozó módszert honlapodhoz!"
|
873 |
-
|
874 |
-
#. Author of the plugin/theme
|
875 |
-
msgid "ibericode"
|
876 |
-
msgstr "ibericode"
|
877 |
-
|
878 |
-
#. Author URI of the plugin/theme
|
879 |
-
msgid "https://ibericode.com/"
|
880 |
-
msgstr "https://ibericode.com/"
|
1 |
+
# Copyright (C) 2017 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
# Translators:
|
4 |
# Erik Wolf <increst@gmail.com>, 2015
|
5 |
+
# László Sallér <saller.laszlo@gmail.com>, 2017
|
6 |
# Németh Balázs <nb0000@gmail.com>, 2014-2015
|
7 |
# Reka Szendrei <szendreka@gmail.com>, 2017
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: MailChimp for WordPress\n"
|
11 |
+
"PO-Revision-Date: 2017-09-27 19:26+0000\n"
|
12 |
+
"Last-Translator: László Sallér <saller.laszlo@gmail.com>\n"
|
|
|
|
|
13 |
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/hu_HU/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"Language: hu_HU\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Poedit-Basepath: ..\n"
|
20 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
23 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
24 |
|
25 |
+
#: includes/admin/class-admin-texts.php62,
|
26 |
+
#: includes/forms/views/edit-form.php:6
|
27 |
+
msgid "Settings"
|
28 |
+
msgstr "Beállítások"
|
29 |
|
30 |
+
#: includes/admin/class-admin-texts.php:80
|
31 |
+
msgid "Documentation"
|
32 |
+
msgstr "Dokumentáció"
|
33 |
|
34 |
+
#: includes/admin/class-admin.php:204
|
35 |
+
msgid ""
|
36 |
+
"Success! The cached configuration for your MailChimp lists has been renewed."
|
37 |
+
msgstr "Sikerült! A MailChimp eltárolt beállítási listája frissítésre került."
|
38 |
|
39 |
+
#: includes/admin/class-admin.php:304
|
40 |
msgid ""
|
41 |
+
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
42 |
+
" to use it."
|
43 |
+
msgstr "Ez egy kizárólag-prémium lehetőség. Váltson prémium verzióra hogy használni tudja."
|
44 |
|
45 |
+
#: includes/admin/class-admin.php305,
|
46 |
+
#: includes/views/parts/lists-overview.php10,
|
47 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
48 |
+
msgid "Renew MailChimp lists"
|
49 |
+
msgstr "MailChimp listák frissítése"
|
50 |
|
51 |
+
#: includes/admin/class-admin.php:306
|
52 |
+
msgid "Fetching MailChimp lists"
|
53 |
+
msgstr "MailChimp listák feldolgozása"
|
54 |
|
55 |
+
#: includes/admin/class-admin.php:307
|
56 |
+
msgid "Done! MailChimp lists renewed."
|
57 |
+
msgstr "Kész! MailChimp listák frissítve."
|
58 |
|
59 |
+
#: includes/admin/class-admin.php:308
|
60 |
+
msgid "This can take a while if you have many MailChimp lists."
|
61 |
+
msgstr "Ez altarthat egy darabig, ha több Mailchimp listát használsz."
|
62 |
|
63 |
+
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
64 |
+
msgid "MailChimp API Settings"
|
65 |
+
msgstr "MailChimp API beállítások"
|
66 |
|
67 |
+
#: includes/admin/class-admin.php:337
|
68 |
+
msgid "MailChimp"
|
69 |
+
msgstr "MailChimp"
|
70 |
|
71 |
+
#: includes/admin/class-admin.php343, includes/views/other-settings.php60,
|
72 |
+
#: includes/views/other-settings.php:70
|
73 |
+
msgid "Other Settings"
|
74 |
+
msgstr "Egyéb beállítások"
|
75 |
|
76 |
+
#: includes/admin/class-admin.php:344
|
77 |
+
msgid "Other"
|
78 |
+
msgstr "Egyéb"
|
79 |
|
80 |
+
#: includes/admin/class-admin.php:458
|
81 |
+
msgid "Log successfully emptied."
|
82 |
+
msgstr "Napló sikeresen törölve."
|
|
|
83 |
|
84 |
+
#: includes/admin/class-admin.php:488
|
85 |
+
msgid ""
|
86 |
+
"To get started with MailChimp for WordPress, please <a href=\"%s\">enter "
|
87 |
+
"your MailChimp API key on the settings page of the plugin</a>."
|
88 |
+
msgstr "Hogy használni tudd a MailChimpet WordPressben <a href=\"%s\">írd be a MailChimpes API kulcsodat a beépülő modul beállítás oldalán</a>."
|
89 |
|
90 |
+
#: includes/admin/class-ads.php:39
|
91 |
msgid ""
|
92 |
+
"Want to customize the style of your form? <a href=\"%s\">Try our Styles "
|
93 |
+
"Builder</a> & edit the look of your forms with just a few clicks."
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/admin/class-ads.php:54
|
97 |
msgid ""
|
98 |
+
"Be notified whenever someone subscribes? <a href=\"%s\">MailChimp for "
|
99 |
+
"WordPress Premium</a> allows you to set up email notifications for your "
|
100 |
+
"forms."
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/admin/class-ads.php:56
|
104 |
+
msgid ""
|
105 |
+
"Increased conversions? <a href=\"%s\">MailChimp for WordPress Premium</a> "
|
106 |
+
"submits forms without reloading the entire page, resulting in a much better "
|
107 |
+
"experience for your visitors."
|
108 |
+
msgstr ""
|
109 |
|
110 |
+
#: includes/admin/class-ads.php:70
|
111 |
+
msgid "Upgrade to Premium"
|
112 |
+
msgstr "Frissíts Prémiumra"
|
|
|
113 |
|
114 |
+
#: includes/admin/class-ads.php:83
|
115 |
+
msgid ""
|
116 |
+
"Do you want translated forms for all of your languages? <a href=\"%s\">Try "
|
117 |
+
"MailChimp for WordPress Premium</a>, which does just that plus more."
|
118 |
+
msgstr ""
|
119 |
|
120 |
+
#: includes/admin/class-ads.php:88
|
121 |
msgid ""
|
122 |
+
"Do you want to create more than one form? Our Premium add-on does just that!"
|
123 |
+
" <a href=\"%s\">Have a look at all Premium benefits</a>."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/admin/class-ads.php:93
|
127 |
+
msgid ""
|
128 |
+
"Are you enjoying this plugin? The Premium add-on unlocks several powerful "
|
129 |
+
"features. <a href=\"%s\">Find out about all benefits now</a>."
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: includes/admin/class-ads.php:112
|
133 |
+
msgid "More subscribers, better newsletters."
|
134 |
+
msgstr "Több feliratkozó, jobb hírlevelek."
|
135 |
+
|
136 |
+
#: includes/admin/class-ads.php:113
|
137 |
msgid ""
|
138 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
139 |
"our monthly tips."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: includes/admin/class-ads.php:116
|
143 |
msgid "Email Address"
|
144 |
msgstr "Email cím"
|
145 |
|
146 |
+
#: includes/admin/class-ads.php:120
|
147 |
msgid "First Name"
|
148 |
msgstr "Keresztnév"
|
149 |
|
150 |
+
#: includes/admin/class-ads.php127, includes/forms/class-admin.php:94
|
151 |
msgid "Subscribe"
|
152 |
msgstr "Feliratkozás"
|
153 |
|
154 |
+
#: includes/admin/class-ads.php:150
|
155 |
+
msgid ""
|
156 |
+
"Do you want to track all WooCommerce orders in MailChimp so you can send "
|
157 |
+
"emails based on the purchase activity of your subscribers?"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/admin/class-ads.php:153
|
161 |
+
msgid ""
|
162 |
+
"<a href=\"%s\">Upgrade to MailChimp for WordPress Premium</a> or <a "
|
163 |
+
"href=\"%s\">read more about MailChimp's E-Commerce features</a>."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: includes/admin/class-review-notice.php:68
|
167 |
+
msgid ""
|
168 |
+
"You've been using MailChimp for WordPress for some time now; we hope you "
|
169 |
+
"love it!"
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: includes/admin/class-review-notice.php:69
|
173 |
+
msgid ""
|
174 |
+
"If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
|
175 |
+
"It would be of great help to us."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/admin/class-review-notice.php:71
|
179 |
+
msgid "Dismiss this notice."
|
180 |
+
msgstr "Figyelmeztetés figyelmen kívül hagyása."
|
181 |
+
|
182 |
+
#: includes/api/class-api.php:84
|
183 |
+
msgid "Read more about common connectivity issues."
|
184 |
+
msgstr "További információ az általános kapcsolódási problémákról."
|
185 |
+
|
186 |
+
#: includes/forms/class-admin.php:62
|
187 |
+
msgid "Add to form"
|
188 |
+
msgstr "Hozzáadás mintához."
|
189 |
+
|
190 |
+
#: includes/forms/class-admin.php:63
|
191 |
+
msgid "City"
|
192 |
+
msgstr "Város"
|
193 |
+
|
194 |
+
#: includes/forms/class-admin.php:64
|
195 |
+
msgid "Checkboxes"
|
196 |
+
msgstr "Jelölőnégyzetek"
|
197 |
+
|
198 |
+
#: includes/forms/class-admin.php:65
|
199 |
+
msgid "Choices"
|
200 |
+
msgstr "Választások"
|
201 |
+
|
202 |
+
#: includes/forms/class-admin.php:66
|
203 |
+
msgid "Choice type"
|
204 |
+
msgstr "Választás tipusa"
|
205 |
+
|
206 |
+
#: includes/forms/class-admin.php:67
|
207 |
+
msgid "Choose a field to add to the form"
|
208 |
+
msgstr "Válaszon egy mezőt amit űrlaphoz ad"
|
209 |
+
|
210 |
+
#: includes/forms/class-admin.php:68
|
211 |
+
msgid "Close"
|
212 |
+
msgstr "Bezár"
|
213 |
+
|
214 |
+
#: includes/forms/class-admin.php:69
|
215 |
+
msgid "Country"
|
216 |
+
msgstr "Ország"
|
217 |
+
|
218 |
+
#: includes/forms/class-admin.php:70
|
219 |
+
msgid "Dropdown"
|
220 |
+
msgstr "Legördülő"
|
221 |
+
|
222 |
+
#: includes/forms/class-admin.php:71
|
223 |
+
msgid "Field type"
|
224 |
+
msgstr "Mező típusa"
|
225 |
+
|
226 |
+
#: includes/forms/class-admin.php:72
|
227 |
+
msgid "Field label"
|
228 |
+
msgstr "Mező cimke"
|
229 |
+
|
230 |
+
#: includes/forms/class-admin.php:73
|
231 |
+
msgid "Form action"
|
232 |
+
msgstr "Űrlap művelet"
|
233 |
+
|
234 |
+
#: includes/forms/class-admin.php:74
|
235 |
+
msgid ""
|
236 |
+
"This field will allow your visitors to choose whether they would like to "
|
237 |
+
"subscribe or unsubscribe"
|
238 |
+
msgstr "Ez a mező lehetőséget ad arra a látogatóknak, hogy feliratkozzanak, vagy leiratkozzanak."
|
239 |
+
|
240 |
+
#: includes/forms/class-admin.php:75
|
241 |
+
msgid "Form fields"
|
242 |
+
msgstr "Űrlapmezők"
|
243 |
+
|
244 |
+
#: includes/forms/class-admin.php:76
|
245 |
+
msgid "This field is marked as required in MailChimp."
|
246 |
+
msgstr "Ez a mező kötelezőként van jelőlve a MailChimpben."
|
247 |
+
|
248 |
+
#: includes/forms/class-admin.php:77
|
249 |
+
msgid "Initial value"
|
250 |
+
msgstr "Kezdeti érték"
|
251 |
+
|
252 |
+
#: includes/forms/class-admin.php:78
|
253 |
+
msgid "Interest categories"
|
254 |
+
msgstr "Érdeklődési körök"
|
255 |
+
|
256 |
+
#: includes/forms/class-admin.php:79
|
257 |
+
msgid "Is this field required?"
|
258 |
+
msgstr "Szükséges ez a mező?"
|
259 |
+
|
260 |
+
#: includes/forms/class-admin.php:80
|
261 |
+
msgid "List choice"
|
262 |
+
msgstr "Listás kiválasztó elem"
|
263 |
+
|
264 |
+
#: includes/forms/class-admin.php:81
|
265 |
+
msgid "This field will allow your visitors to choose a list to subscribe to."
|
266 |
+
msgstr "Ez a mező lehetőséget biztosít a látogatóknak, hogy válassznak, hogy hova akarnak feliratkozni."
|
267 |
+
|
268 |
+
#: includes/forms/class-admin.php:82
|
269 |
+
msgid "List fields"
|
270 |
+
msgstr "Lista mezők"
|
271 |
+
|
272 |
+
#: includes/forms/class-admin.php:83
|
273 |
+
msgid "Min"
|
274 |
+
msgstr "Minimum"
|
275 |
+
|
276 |
+
#: includes/forms/class-admin.php:84
|
277 |
+
msgid "Max"
|
278 |
+
msgstr "Maximum"
|
279 |
+
|
280 |
+
#: includes/forms/class-admin.php:85
|
281 |
+
msgid ""
|
282 |
+
"No available fields. Did you select a MailChimp list in the form settings?"
|
283 |
+
msgstr "Nincs elérhető mező. MailChimpes listát választottál az űrlap beállításoknál?"
|
284 |
+
|
285 |
+
#: includes/forms/class-admin.php:86
|
286 |
+
msgid "Optional"
|
287 |
+
msgstr "Opcionális"
|
288 |
+
|
289 |
+
#: includes/forms/class-admin.php:87
|
290 |
+
msgid "Placeholder"
|
291 |
+
msgstr "Helyőrző"
|
292 |
+
|
293 |
+
#: includes/forms/class-admin.php:88
|
294 |
+
msgid "Text to show when field has no value."
|
295 |
+
msgstr "Megjelenítendő szöveg, amennyiben a mezőnek nincs értéke."
|
296 |
+
|
297 |
+
#: includes/forms/class-admin.php:89
|
298 |
+
msgid "Preselect"
|
299 |
+
msgstr "Előválasztás"
|
300 |
+
|
301 |
+
#: includes/forms/class-admin.php:90
|
302 |
+
msgid "Remove"
|
303 |
+
msgstr "Visszavonás"
|
304 |
+
|
305 |
+
#: includes/forms/class-admin.php:91
|
306 |
+
msgid "Radio buttons"
|
307 |
+
msgstr "Rádió gombok"
|
308 |
+
|
309 |
+
#: includes/forms/class-admin.php:92
|
310 |
+
msgid "Street Address"
|
311 |
+
msgstr "Utca cím"
|
312 |
+
|
313 |
+
#: includes/forms/class-admin.php:93
|
314 |
+
msgid "State"
|
315 |
+
msgstr "Állam"
|
316 |
+
|
317 |
+
#: includes/forms/class-admin.php:95
|
318 |
+
msgid "Submit button"
|
319 |
+
msgstr "Elküldés gomb"
|
320 |
+
|
321 |
+
#: includes/forms/class-admin.php:96
|
322 |
+
msgid "Wrap in paragraph tags?"
|
323 |
+
msgstr "Legyen bekezdés elembe foglalva?"
|
324 |
+
|
325 |
+
#: includes/forms/class-admin.php:97
|
326 |
+
msgid "Value"
|
327 |
+
msgstr "Érték"
|
328 |
+
|
329 |
+
#: includes/forms/class-admin.php:98
|
330 |
+
msgid "Text to prefill this field with."
|
331 |
+
msgstr "Előre beállított szöveg ehhez a mezőhöz."
|
332 |
+
|
333 |
+
#: includes/forms/class-admin.php:99
|
334 |
+
msgid "ZIP"
|
335 |
+
msgstr "Irányító szám"
|
336 |
+
|
337 |
+
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
338 |
+
#: includes/forms/views/edit-form.php:24
|
339 |
msgid "Forms"
|
340 |
msgstr "Űrlapok"
|
341 |
|
342 |
+
#: includes/forms/class-admin.php152, includes/forms/class-admin.php:276
|
343 |
msgid "<strong>Success!</strong> Form successfully saved."
|
344 |
+
msgstr "<strong>Sikerült!</strong> Űrlap sikeresen elmentve"
|
345 |
|
346 |
+
#: includes/forms/class-admin.php:276
|
347 |
msgid "Preview form"
|
348 |
+
msgstr "Űrlap előnézete"
|
349 |
|
350 |
+
#: includes/forms/class-admin.php449, includes/forms/class-widget.php:30
|
351 |
+
msgid "MailChimp Sign-Up Form"
|
352 |
+
msgstr "MailChimp feliratkozás űrlap"
|
353 |
|
354 |
+
#: includes/forms/class-admin.php:453
|
355 |
+
msgid "Select the form to show"
|
356 |
+
msgstr "Válassza ki a megjelenítendő űrlapot"
|
357 |
|
358 |
+
#: includes/forms/class-form-previewer.php:146
|
359 |
msgid "Form preview"
|
360 |
msgstr "Űrlap előnézet"
|
361 |
|
362 |
+
#: includes/forms/class-form-tags.php:60
|
363 |
msgid "Replaced with the form response (error or success messages)."
|
364 |
msgstr "Lecserélve az űrlap válasz üzenetére (hiba vagy siker üzenet)."
|
365 |
|
366 |
+
#: includes/forms/class-form-tags.php:65
|
367 |
msgid "Data from the URL or a submitted form."
|
368 |
+
msgstr "Adat az URL-ből, vagy beküldött űrlapból."
|
369 |
|
370 |
+
#: includes/forms/class-form-tags.php:71
|
371 |
+
msgid "Data from a cookie."
|
372 |
+
msgstr "Adat sütiből (cookie)."
|
373 |
+
|
374 |
+
#: includes/forms/class-form-tags.php77,
|
375 |
#: includes/integrations/class-integration-tags.php:45
|
376 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
377 |
msgstr "Lecserélve a feliratkozók számára a kijelölt listá(k)ban."
|
378 |
|
379 |
+
#: includes/forms/class-form-tags.php:82
|
380 |
msgid "The email address of the current visitor (if known)."
|
381 |
+
msgstr "Az aktuális látogató e-mail címe (ha ismert)."
|
382 |
|
383 |
+
#: includes/forms/class-form-tags.php:87
|
384 |
msgid "The URL of the page."
|
385 |
+
msgstr "Az oldal URL-je."
|
386 |
|
387 |
+
#: includes/forms/class-form-tags.php:92
|
388 |
msgid "The path of the page."
|
389 |
+
msgstr "Az oldal elérési útja."
|
390 |
|
391 |
+
#: includes/forms/class-form-tags.php:97
|
392 |
msgid "The current date. Example: %s."
|
393 |
+
msgstr "Aktuális dátum. Például: %s."
|
394 |
|
395 |
+
#: includes/forms/class-form-tags.php:102
|
396 |
msgid "The current time. Example: %s."
|
397 |
+
msgstr "Aktuális idő. Például: %s."
|
398 |
|
399 |
+
#: includes/forms/class-form-tags.php:107
|
400 |
msgid "The site's language. Example: %s."
|
401 |
+
msgstr "Az oldal nyelve. Például: %s."
|
402 |
|
403 |
+
#: includes/forms/class-form-tags.php:112
|
404 |
msgid "The visitor's IP address. Example: %s."
|
405 |
+
msgstr "A látogató IP címe. Például: %s."
|
406 |
|
407 |
+
#: includes/forms/class-form-tags.php:117
|
408 |
msgid "The property of the currently logged-in user."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: includes/forms/class-form-tags.php:123
|
412 |
+
msgid "Property of the current page or post."
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: includes/forms/class-form.php:133
|
416 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
417 |
msgstr ""
|
418 |
|
420 |
msgid "Newsletter"
|
421 |
msgstr "Hírlevél"
|
422 |
|
|
|
|
|
|
|
|
|
423 |
#: includes/forms/class-widget.php:32
|
424 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
425 |
msgstr "Megjeleníti a MailChimp for WordPress feliratkozás űrlapját"
|
434 |
" form settings</a>."
|
435 |
msgstr "A feliratkozás űrlapot a <a href=\"%s\">MailChimp for WordPress űrlap beállítások</a>nál lehet szerkeszteni."
|
436 |
|
437 |
+
#: includes/integrations/class-admin.php79,
|
438 |
+
#: includes/integrations/class-admin.php80,
|
439 |
+
#: includes/integrations/views/integration-settings.php10,
|
440 |
+
#: includes/integrations/views/integrations.php57,
|
441 |
+
#: includes/integrations/views/integrations.php:65
|
442 |
+
msgid "Integrations"
|
443 |
+
msgstr "Integrációk"
|
444 |
+
|
445 |
+
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
446 |
+
#: includes/forms/views/edit-form.php22,
|
447 |
+
#: includes/integrations/views/integration-settings.php8,
|
448 |
+
#: includes/integrations/views/integrations.php:55
|
449 |
+
msgid "You are here: "
|
450 |
+
msgstr "Itt vagy:"
|
451 |
+
|
452 |
+
#: includes/views/general-settings.php:18
|
453 |
+
msgid "General Settings"
|
454 |
+
msgstr "Általános beállítások"
|
455 |
+
|
456 |
+
#: includes/views/general-settings.php:38
|
457 |
+
msgid "Status"
|
458 |
+
msgstr "Állapot"
|
459 |
+
|
460 |
+
#: includes/views/general-settings.php:42
|
461 |
+
msgid "CONNECTED"
|
462 |
+
msgstr "ÖSSZEKÖTVE"
|
463 |
+
|
464 |
+
#: includes/views/general-settings.php:44
|
465 |
+
msgid "NOT CONNECTED"
|
466 |
+
msgstr "NINCS ÖSSZEKÖTVE"
|
467 |
+
|
468 |
+
#: includes/views/general-settings.php:51
|
469 |
+
msgid "API Key"
|
470 |
+
msgstr "API kulcs"
|
471 |
+
|
472 |
+
#: includes/views/general-settings.php:53
|
473 |
+
msgid "Your MailChimp API key"
|
474 |
+
msgstr "A MailChimp API kulcs"
|
475 |
+
|
476 |
+
#: includes/views/general-settings.php:55
|
477 |
+
msgid "The API key for connecting with your MailChimp account."
|
478 |
+
msgstr "API kulcs a MailChimp fiókoddal való összekapcsoláshoz."
|
479 |
+
|
480 |
+
#: includes/views/general-settings.php:56
|
481 |
+
msgid "Get your API key here."
|
482 |
+
msgstr "API kulcsot itt szerezhet."
|
483 |
+
|
484 |
+
#: includes/views/other-settings.php:14
|
485 |
+
msgid "Miscellaneous settings"
|
486 |
+
msgstr ""
|
487 |
+
|
488 |
+
#: includes/views/other-settings.php:17
|
489 |
+
msgid "Usage Tracking"
|
490 |
+
msgstr "Használat követése"
|
491 |
+
|
492 |
+
#: includes/views/other-settings.php:29
|
493 |
+
msgid ""
|
494 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
495 |
+
"better fit your needs."
|
496 |
+
msgstr "Engedélyezd számunkra, hogy anonim módon kövessük ennek a bővítménynek a működését, hogy jobbá tegyük, és még inkább az igényeidhez illeszkedjen."
|
497 |
+
|
498 |
+
#: includes/views/other-settings.php:31
|
499 |
+
msgid "This is what we track."
|
500 |
+
msgstr "Ez az, amit követünk."
|
501 |
+
|
502 |
+
#: includes/views/other-settings.php:37
|
503 |
+
msgid "Logging"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: includes/views/other-settings.php:44
|
507 |
+
msgid ""
|
508 |
+
"Determines what events should be written to <a href=\"%s\">the debug log</a>"
|
509 |
+
" (see below)."
|
510 |
+
msgstr ""
|
511 |
+
|
512 |
+
#: includes/views/other-settings.php:99
|
513 |
+
msgid "Debug Log"
|
514 |
+
msgstr ""
|
515 |
+
|
516 |
+
#: includes/views/other-settings.php:99
|
517 |
+
msgid "Filter.."
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: includes/views/other-settings.php:104
|
521 |
+
msgid "Log file is not writable."
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: includes/views/other-settings.php:105
|
525 |
+
msgid "Please ensure %s has the proper <a href=\"%s\">file permissions</a>."
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/views/other-settings.php:123
|
529 |
+
msgid "Nothing here. Which means there are no errors!"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: includes/views/other-settings.php:133
|
533 |
+
msgid "Empty Log"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: includes/views/other-settings.php:141
|
537 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
541 |
+
msgid "Default sign-up form"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/forms/views/add-form.php10, includes/forms/views/add-form.php:60
|
545 |
msgid "Add new form"
|
546 |
msgstr "Új űrlap hozzáadása"
|
547 |
|
573 |
msgid "Appearance"
|
574 |
msgstr "Megjelenés"
|
575 |
|
576 |
+
#: includes/forms/views/edit-form.php:25
|
577 |
+
msgid "Form"
|
578 |
+
msgstr ""
|
579 |
+
|
580 |
+
#: includes/forms/views/edit-form.php:34
|
581 |
+
msgid "Edit Form"
|
582 |
+
msgstr "Űrlap szerkesztése"
|
583 |
+
|
584 |
+
#: includes/forms/views/edit-form.php:58
|
585 |
+
msgid "Enter form title here"
|
586 |
+
msgstr "Írd ide az űrlap címét"
|
587 |
+
|
588 |
+
#: includes/forms/views/edit-form.php:59
|
589 |
+
msgid "Enter the title of your sign-up form"
|
590 |
+
msgstr "Saját feliratkozás űrlap címe"
|
591 |
+
|
592 |
+
#: includes/forms/views/edit-form.php:65
|
593 |
+
msgid "Shortcode"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: includes/forms/views/edit-form.php:67
|
597 |
+
msgid "Get shortcode"
|
598 |
+
msgstr "Gyorskód kérése"
|
599 |
+
|
600 |
+
#: includes/forms/views/edit-form.php:72
|
601 |
+
msgid "Preview this form"
|
602 |
+
msgstr "Űrlap előnézete"
|
603 |
+
|
604 |
+
#: includes/integrations/views/integration-settings.php:20
|
605 |
+
msgid "%s integration"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/integrations/views/integration-settings.php:27
|
609 |
+
msgid ""
|
610 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
611 |
+
"this integration from working."
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: includes/integrations/views/integration-settings.php:28
|
615 |
+
msgid ""
|
616 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
617 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
618 |
+
"sure only the email & name fields are marked as required fields for the "
|
619 |
+
"selected list(s)."
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: includes/integrations/views/integration-settings.php:62
|
623 |
+
msgid "Enabled?"
|
624 |
+
msgstr "Engedélyezett?"
|
625 |
+
|
626 |
+
#: includes/integrations/views/integration-settings.php:66
|
627 |
+
msgid ""
|
628 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: includes/integrations/views/integration-settings.php:76
|
632 |
+
msgid "Implicit?"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/integrations/views/integration-settings.php:80
|
636 |
+
msgid ""
|
637 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
638 |
+
"(recommended)."
|
639 |
+
msgstr ""
|
640 |
+
|
641 |
+
#: includes/integrations/views/integration-settings.php:90
|
642 |
+
msgid "MailChimp Lists"
|
643 |
+
msgstr "MailChimp listák"
|
644 |
+
|
645 |
+
#: includes/integrations/views/integration-settings.php:103
|
646 |
+
msgid ""
|
647 |
+
"Select the list(s) to which people who check the checkbox should be "
|
648 |
+
"subscribed."
|
649 |
+
msgstr "Válassza ki a listá(ka)t, amelyre az űrlapot kitöltők fel lesznek iratva."
|
650 |
+
|
651 |
+
#: includes/integrations/views/integration-settings.php107,
|
652 |
+
#: includes/forms/views/tabs/form-settings.php:18
|
653 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
654 |
+
msgstr "Nem találtam listákat, <a href=\"%s\">össze van kötve a MailChimppel</a>?"
|
655 |
+
|
656 |
+
#: includes/integrations/views/integration-settings.php:116
|
657 |
+
msgid "Checkbox label text"
|
658 |
+
msgstr "Jelölőnégyzethez tartozó felirat."
|
659 |
+
|
660 |
+
#: includes/integrations/views/integration-settings.php:119
|
661 |
+
msgid "HTML tags like %s are allowed in the label text."
|
662 |
+
msgstr "HTML elemek (például %s) lehetnek a címkék szövegeiben."
|
663 |
+
|
664 |
+
#: includes/integrations/views/integration-settings.php:129
|
665 |
+
msgid "Pre-check the checkbox?"
|
666 |
+
msgstr "Jelölőnégyzet bejelölése előre?"
|
667 |
+
|
668 |
+
#: includes/integrations/views/integration-settings.php:133
|
669 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
670 |
+
msgstr ""
|
671 |
+
|
672 |
+
#: includes/integrations/views/integration-settings.php:141
|
673 |
+
msgid "Load some default CSS?"
|
674 |
+
msgstr "Kell némi alap CSS?"
|
675 |
+
|
676 |
+
#: includes/integrations/views/integration-settings.php:145
|
677 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
678 |
+
msgstr "Válassza az „Igen”-t, ha a jelölő négyzet fura helyen jelenik meg."
|
679 |
+
|
680 |
+
#: includes/integrations/views/integration-settings.php:152
|
681 |
+
msgid "Double opt-in?"
|
682 |
+
msgstr "Dupla megerősítés?"
|
683 |
+
|
684 |
+
#: includes/integrations/views/integration-settings.php:163
|
685 |
+
msgid ""
|
686 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
687 |
+
"being subscribed (recommended)"
|
688 |
+
msgstr "Válassza az „Igen”-t, ha a feliratkozóknak meg kell erősíteniük az emailcímüket (ajánlott)"
|
689 |
+
|
690 |
+
#: includes/integrations/views/integration-settings.php171,
|
691 |
+
#: includes/forms/views/tabs/form-settings.php:52
|
692 |
+
msgid "Update existing subscribers?"
|
693 |
+
msgstr "Meglévő feliratkozók frissítése?"
|
694 |
+
|
695 |
+
#: includes/integrations/views/integration-settings.php181,
|
696 |
+
#: includes/forms/views/tabs/form-settings.php:62
|
697 |
+
msgid ""
|
698 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
699 |
+
" is sent."
|
700 |
+
msgstr "Válassza az „igen”-t, ha a meglévő feliratkozók adatait szeretné frissíteni a most küldött adatokkal."
|
701 |
+
|
702 |
+
#: includes/integrations/views/integration-settings.php190,
|
703 |
+
#: includes/forms/views/tabs/form-settings.php:68
|
704 |
+
msgid "Replace interest groups?"
|
705 |
+
msgstr "Érdeklődési körök cseréje?"
|
706 |
+
|
707 |
+
#: includes/integrations/views/integration-settings.php201,
|
708 |
+
#: includes/forms/views/tabs/form-settings.php:79
|
709 |
+
msgid ""
|
710 |
+
"Select \"no\" if you want to add the selected interests to any previously "
|
711 |
+
"selected interests when updating a subscriber."
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: includes/integrations/views/integration-settings.php202,
|
715 |
+
#: includes/forms/views/tabs/form-settings.php:80
|
716 |
+
msgid "What does this do?"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: includes/integrations/views/integrations.php:17
|
720 |
+
msgid "Name"
|
721 |
+
msgstr "Név"
|
722 |
+
|
723 |
+
#: includes/integrations/views/integrations.php:18
|
724 |
+
msgid "Description"
|
725 |
+
msgstr "Leírás"
|
726 |
+
|
727 |
+
#: includes/integrations/views/integrations.php:35
|
728 |
+
msgid "Configure this integration"
|
729 |
+
msgstr "Integráció konfigurálása"
|
730 |
+
|
731 |
+
#: includes/integrations/views/integrations.php:71
|
732 |
+
msgid "The table below shows all available integrations."
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: includes/integrations/views/integrations.php:72
|
736 |
+
msgid ""
|
737 |
+
"Click on the name of an integration to edit all settings specific to that "
|
738 |
+
"integration."
|
739 |
+
msgstr ""
|
740 |
+
|
741 |
+
#: includes/integrations/views/integrations.php:79
|
742 |
+
msgid "Enabled integrations"
|
743 |
+
msgstr ""
|
744 |
+
|
745 |
+
#: includes/integrations/views/integrations.php:84
|
746 |
+
msgid "Available integrations"
|
747 |
+
msgstr ""
|
748 |
+
|
749 |
+
#: includes/views/parts/admin-footer.php:15
|
750 |
+
msgid ""
|
751 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
752 |
+
"translated in your language or do you spot errors with the current "
|
753 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
754 |
+
"translation project and click \"help translate\"</a>."
|
755 |
+
msgstr "A MailChimp for WordPress fordításokra vár. Nincs lefordítva a bővítmény az Ön nyelvére, vagy hibákat talált az aktuális fordításban? Könnyen segíthet nekünk. Menjen át a <a href=\"%s\">fordításokhoz és kattintson „help translate” linkre</a>!"
|
756 |
+
|
757 |
+
#: includes/views/parts/admin-footer.php:35
|
758 |
+
msgid ""
|
759 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
760 |
+
msgstr "Ezt a bővítményt nem a MailChimp fejleszti, és nem áll vele közvetlen kapcsolatban."
|
761 |
+
|
762 |
+
#: includes/views/parts/admin-sidebar.php:11
|
763 |
+
msgid "Looking for help?"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: includes/views/parts/admin-sidebar.php:12
|
767 |
+
msgid "We have some resources available to help you in the right direction."
|
768 |
+
msgstr ""
|
769 |
+
|
770 |
+
#: includes/views/parts/admin-sidebar.php:14
|
771 |
+
msgid "Knowledge Base"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: includes/views/parts/admin-sidebar.php:15
|
775 |
+
msgid "Frequently Asked Questions"
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: includes/views/parts/admin-sidebar.php:16
|
779 |
+
msgid "Code reference for developers"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: includes/views/parts/admin-sidebar.php:36
|
783 |
+
msgid "Looking to improve your sign-up rates?"
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: includes/views/parts/admin-sidebar.php:37
|
787 |
+
msgid ""
|
788 |
+
"Our <a href=\"%s\">Boxzilla plugin</a> allows you to create pop-ups or "
|
789 |
+
"slide-ins with a subscribe form. A sure way to grow your lists faster."
|
790 |
+
msgstr ""
|
791 |
+
|
792 |
+
#: includes/views/parts/lists-overview.php:1
|
793 |
+
msgid "Your MailChimp Account"
|
794 |
+
msgstr "MailChimp fiókod"
|
795 |
+
|
796 |
+
#: includes/views/parts/lists-overview.php:2
|
797 |
+
msgid ""
|
798 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
799 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
800 |
+
"renew the cached lists configuration."
|
801 |
+
msgstr "A táblázat a MailChimp listáidat és azok részleteit mutatja. Amennyiben változtatsz a MailChimp listáidon, az alábbi gomb segítségével frissítsd a tárolt konfigurációkat."
|
802 |
+
|
803 |
+
#: includes/views/parts/lists-overview.php:17
|
804 |
+
msgid "No lists were found in your MailChimp account"
|
805 |
+
msgstr "Nem találhatók listák a MailChimp fiókjában."
|
806 |
+
|
807 |
+
#: includes/views/parts/lists-overview.php:19
|
808 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
809 |
+
msgstr "%d lista található a MailChimp fiókodban."
|
810 |
|
811 |
+
#: includes/views/parts/lists-overview.php:24
|
812 |
+
msgid "List Name"
|
813 |
+
msgstr "Lista neve"
|
814 |
|
815 |
+
#: includes/views/parts/lists-overview.php:25
|
816 |
+
msgid "ID"
|
817 |
+
msgstr "azonosító"
|
818 |
|
819 |
+
#: includes/views/parts/lists-overview.php:26
|
820 |
+
msgid "Subscribers"
|
821 |
+
msgstr "Feliratkozók"
|
822 |
|
823 |
+
#: includes/views/parts/lists-overview.php:48
|
824 |
+
msgid "Edit this list in MailChimp"
|
825 |
+
msgstr "Lista szerkesztése MailChimp-ben"
|
826 |
|
827 |
+
#: includes/views/parts/lists-overview.php:62
|
828 |
+
msgid "%s (%s) with field type %s."
|
829 |
+
msgstr ""
|
830 |
|
831 |
+
#: includes/forms/views/parts/add-fields-help.php4,
|
832 |
#: includes/forms/views/tabs/form-fields.php:10
|
833 |
msgid "Add more fields"
|
834 |
msgstr "Mezők hozzáadása"
|
865 |
"changes."
|
866 |
msgstr ""
|
867 |
|
|
|
|
|
|
|
|
|
|
|
868 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
869 |
msgid "Add dynamic form variable"
|
870 |
+
msgstr "Dinamikus űrlap változók hozzáadása"
|
871 |
|
872 |
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
873 |
msgid ""
|
881 |
|
882 |
#: includes/forms/views/tabs/form-appearance.php:5
|
883 |
msgid "Inherit from %s theme"
|
884 |
+
msgstr "Sablonból %s leszármaztatva"
|
885 |
|
886 |
#: includes/forms/views/tabs/form-appearance.php:6
|
887 |
msgid "Basic"
|
888 |
+
msgstr "Alap"
|
889 |
|
890 |
#: includes/forms/views/tabs/form-appearance.php:7
|
891 |
msgid "Form Themes"
|
892 |
+
msgstr "Űrlap sablonok"
|
893 |
|
894 |
#: includes/forms/views/tabs/form-appearance.php:8
|
895 |
msgid "Light Theme"
|
913 |
|
914 |
#: includes/forms/views/tabs/form-appearance.php:25
|
915 |
msgid "Form Appearance"
|
916 |
+
msgstr "Úrlap megjelenése"
|
917 |
|
918 |
#: includes/forms/views/tabs/form-appearance.php:29
|
919 |
msgid "Form Style"
|
920 |
+
msgstr "Űrlap stílus"
|
921 |
|
922 |
#: includes/forms/views/tabs/form-appearance.php:48
|
923 |
msgid ""
|
927 |
|
928 |
#: includes/forms/views/tabs/form-fields.php:6
|
929 |
msgid "Form variables"
|
930 |
+
msgstr "Űrlap változók"
|
931 |
|
932 |
#: includes/forms/views/tabs/form-fields.php:13
|
933 |
msgid "Form Fields"
|
934 |
+
msgstr "Űrlapmezők"
|
935 |
|
936 |
#: includes/forms/views/tabs/form-fields.php:19
|
937 |
msgid "Enter the HTML code for your form fields.."
|
938 |
+
msgstr "Írja be a HTML kódot az űrlap mezőinek létrehozásához."
|
|
|
|
|
|
|
|
|
939 |
|
940 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
941 |
msgid ""
|
942 |
"Use the shortcode %s to display this form inside a post, page or text "
|
943 |
"widget."
|
944 |
msgstr "Használja a %s gyorskódot az űrlap megjelenítéséhez bejegyzésben, oldalon vagy widgetben."
|
945 |
|
946 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
947 |
msgid "Form Messages"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
951 |
msgid "Successfully subscribed"
|
952 |
msgstr "Sikeresen feliratkoztatva."
|
953 |
|
954 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
955 |
msgid ""
|
956 |
"The text that shows when an email address is successfully subscribed to the "
|
957 |
"selected list(s)."
|
958 |
msgstr "A szöveg, ami megjelenik, ha egy emailcímet sikeresen feliratkoztattunk a kiválasztott listá(k)ra."
|
959 |
|
960 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
961 |
msgid "Invalid email address"
|
962 |
msgstr "Érvénytelen emailcím"
|
963 |
|
964 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
965 |
msgid "The text that shows when an invalid email address is given."
|
966 |
msgstr "A szöveg, ami megjelenik, ha egy érvénytelen emailcímet adnak meg."
|
967 |
|
968 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
969 |
msgid "Required field missing"
|
970 |
msgstr "Kötelező mező nincs kitöltve"
|
971 |
|
972 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
973 |
msgid ""
|
974 |
"The text that shows when a required field for the selected list(s) is "
|
975 |
"missing."
|
976 |
msgstr "A szöveg, ami megjelenik, ha egy, a listá(k)hoz szükséges mező nincs kitöltve."
|
977 |
|
978 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
979 |
msgid "Already subscribed"
|
980 |
msgstr "Már feliratkozott"
|
981 |
|
982 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
983 |
msgid ""
|
984 |
"The text that shows when the given email is already subscribed to the "
|
985 |
"selected list(s)."
|
986 |
msgstr "A szöveg, ami megjelenik, ha a megadott emailcím már fel van iratkozva a kiválasztott listá(k)ra."
|
987 |
|
988 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
989 |
msgid "General error"
|
990 |
msgstr "Általános hiba"
|
991 |
|
992 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
993 |
msgid "The text that shows when a general error occured."
|
994 |
msgstr "A szöveg, ami megjelenik, ha általános hiba történt."
|
995 |
|
996 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
997 |
msgid "Unsubscribed"
|
998 |
msgstr "Leiratkoztatva"
|
999 |
|
1000 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
1001 |
msgid ""
|
1002 |
"When using the unsubscribe method, this is the text that shows when the "
|
1003 |
"given email address is successfully unsubscribed from the selected list(s)."
|
1004 |
msgstr "A leiratkozás használatakor ez a szöveg jelenik meg egy adott emailcím sikeres leiratkoztatásakor a kijelölt listá(k)ról."
|
1005 |
|
1006 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1007 |
msgid "Not subscribed"
|
1008 |
msgstr "Nem feliratkoztatva"
|
1009 |
|
1010 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1011 |
msgid ""
|
1012 |
"When using the unsubscribe method, this is the text that shows when the "
|
1013 |
"given email address is not on the selected list(s)."
|
1014 |
msgstr "A leiratkozás használatakor ez a szöveg jelenik meg egy adott emailcím nincs a kijelölt listá(ko)n."
|
1015 |
|
1016 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1017 |
+
msgid "No list selected"
|
1018 |
+
msgstr "Nincs lista kiválasztva"
|
1019 |
+
|
1020 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1021 |
+
msgid ""
|
1022 |
+
"When offering a list choice, this is the text that shows when no lists were "
|
1023 |
+
"selected."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/forms/views/tabs/form-messages.php:74
|
1027 |
+
msgid "Updated"
|
1028 |
+
msgstr "Frissítve"
|
1029 |
+
|
1030 |
+
#: includes/forms/views/tabs/form-messages.php:77
|
1031 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/forms/views/tabs/form-messages.php:89
|
1035 |
msgid "HTML tags like %s are allowed in the message fields."
|
1036 |
msgstr "HTML elemek (például: %s) lehetnek az üzenet mezőkben."
|
1037 |
|
1043 |
msgid "MailChimp specific settings"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1047 |
msgid "Lists this form subscribes to"
|
1048 |
msgstr "Ez az űrlap ezekre a listákra iratkoztat fel"
|
1049 |
|
1050 |
+
#: includes/forms/views/tabs/form-settings.php:31
|
|
|
|
|
|
|
|
|
|
|
1051 |
msgid ""
|
1052 |
"Select the list(s) to which people who submit this form should be "
|
1053 |
"subscribed."
|
1054 |
msgstr "Adja meg a listá(ka)t, amire az űrlapot beküldők fel lesznek iratkozva."
|
1055 |
|
1056 |
+
#: includes/forms/views/tabs/form-settings.php:37
|
1057 |
msgid "Use double opt-in?"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/forms/views/tabs/form-settings.php:44
|
1061 |
+
msgid "Are you sure you want to disable double opt-in?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1065 |
msgid ""
|
1066 |
+
"We strongly suggest keeping double opt-in enabled. Disabling double opt-in "
|
1067 |
+
"may result in abuse."
|
|
|
|
|
|
|
|
|
|
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/forms/views/tabs/form-settings.php:94
|
1071 |
msgid "Form behaviour"
|
1072 |
+
msgstr "Úrlap viselkedése"
|
1073 |
|
1074 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
1075 |
msgid "Hide form after a successful sign-up?"
|
1076 |
msgstr "Űrlap elrejtése a sikeres feliratkozás után?"
|
1077 |
|
1078 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
1079 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1080 |
msgstr "Ha „Igen”, akkor sikeres feliratkozás után el lesznek rejtve az űrlap mezői."
|
1081 |
|
1082 |
+
#: includes/forms/views/tabs/form-settings.php:120
|
1083 |
msgid "Redirect to URL after successful sign-ups"
|
1084 |
msgstr "Átirányítás az URL-re sikeres feliratkozás után"
|
1085 |
|
1086 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
1087 |
msgid "Example: %s"
|
1088 |
msgstr "Példa: %s"
|
1089 |
|
1090 |
+
#: includes/forms/views/tabs/form-settings.php:123
|
1091 |
msgid ""
|
1092 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
1093 |
" (absolute) URLs, including <code>http://</code>."
|
1094 |
msgstr "Hagyja üresen, vagy írjon be <code>0</code>-t, hogy ne legyen átirányítás. Egyébként használjon teljes (abszolút) URLeket, amiben van <code>http://</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mailchimp-for-wp-it_IT.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-it_IT.po
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
msgid ""
|
15 |
msgstr ""
|
16 |
"Project-Id-Version: MailChimp for WordPress\n"
|
17 |
-
"PO-Revision-Date: 2017-
|
18 |
"Last-Translator: Cinzia Caleffi <cinzia.caleffi@gmail.com>\n"
|
19 |
"Language-Team: Italian (Italy) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/it_IT/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
14 |
msgid ""
|
15 |
msgstr ""
|
16 |
"Project-Id-Version: MailChimp for WordPress\n"
|
17 |
+
"PO-Revision-Date: 2017-09-20 15:53+0000\n"
|
18 |
"Last-Translator: Cinzia Caleffi <cinzia.caleffi@gmail.com>\n"
|
19 |
"Language-Team: Italian (Italy) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/it_IT/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-ja_JP.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-ja_JP.po
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
-
"PO-Revision-Date: 2017-
|
13 |
"Last-Translator: 亀山 翔大 <shotakame@gmail.com>\n"
|
14 |
"Language-Team: Japanese (Japan) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ja_JP/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
9 |
msgid ""
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: MailChimp for WordPress\n"
|
12 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
13 |
"Last-Translator: 亀山 翔大 <shotakame@gmail.com>\n"
|
14 |
"Language-Team: Japanese (Japan) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ja_JP/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-nl_NL.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-nl_NL.po
CHANGED
@@ -10,7 +10,7 @@
|
|
10 |
msgid ""
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: MailChimp for WordPress\n"
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: Maartje L <maartje2@hotmail.com>\n"
|
15 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/nl_NL/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
10 |
msgid ""
|
11 |
msgstr ""
|
12 |
"Project-Id-Version: MailChimp for WordPress\n"
|
13 |
+
"PO-Revision-Date: 2017-09-23 20:18+0000\n"
|
14 |
"Last-Translator: Maartje L <maartje2@hotmail.com>\n"
|
15 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/nl_NL/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-pl_PL.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-pl_PL.po
CHANGED
@@ -11,14 +11,14 @@
|
|
11 |
msgid ""
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: MailChimp for WordPress\n"
|
14 |
-
"PO-Revision-Date: 2017-
|
15 |
"Last-Translator: Albert Zasłonka <bercik156@gmail.com>\n"
|
16 |
"Language-Team: Polish (Poland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pl_PL/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Language: pl_PL\n"
|
21 |
-
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100
|
22 |
"X-Poedit-Basepath: ..\n"
|
23 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
11 |
msgid ""
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: MailChimp for WordPress\n"
|
14 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
15 |
"Last-Translator: Albert Zasłonka <bercik156@gmail.com>\n"
|
16 |
"Language-Team: Polish (Poland) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pl_PL/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Language: pl_PL\n"
|
21 |
+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
22 |
"X-Poedit-Basepath: ..\n"
|
23 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
24 |
"X-Poedit-SearchPath-0: .\n"
|
languages/mailchimp-for-wp-pt_BR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-pt_BR.po
CHANGED
@@ -18,7 +18,7 @@
|
|
18 |
msgid ""
|
19 |
msgstr ""
|
20 |
"Project-Id-Version: MailChimp for WordPress\n"
|
21 |
-
"PO-Revision-Date: 2017-
|
22 |
"Last-Translator: Jordache Burmeister\n"
|
23 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pt_BR/)\n"
|
24 |
"MIME-Version: 1.0\n"
|
18 |
msgid ""
|
19 |
msgstr ""
|
20 |
"Project-Id-Version: MailChimp for WordPress\n"
|
21 |
+
"PO-Revision-Date: 2017-09-20 15:47+0000\n"
|
22 |
"Last-Translator: Jordache Burmeister\n"
|
23 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/pt_BR/)\n"
|
24 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-ru_RU.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-ru_RU.po
CHANGED
@@ -16,7 +16,7 @@
|
|
16 |
msgid ""
|
17 |
msgstr ""
|
18 |
"Project-Id-Version: MailChimp for WordPress\n"
|
19 |
-
"PO-Revision-Date: 2017-
|
20 |
"Last-Translator: stinger <ssteves@rambler.ru>\n"
|
21 |
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
22 |
"MIME-Version: 1.0\n"
|
16 |
msgid ""
|
17 |
msgstr ""
|
18 |
"Project-Id-Version: MailChimp for WordPress\n"
|
19 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
20 |
"Last-Translator: stinger <ssteves@rambler.ru>\n"
|
21 |
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
22 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-sv_SE.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-sv_SE.po
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
msgid ""
|
13 |
msgstr ""
|
14 |
"Project-Id-Version: MailChimp for WordPress\n"
|
15 |
-
"PO-Revision-Date: 2017-
|
16 |
"Last-Translator: Mari Pantzar\n"
|
17 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/sv_SE/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
12 |
msgid ""
|
13 |
msgstr ""
|
14 |
"Project-Id-Version: MailChimp for WordPress\n"
|
15 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
16 |
"Last-Translator: Mari Pantzar\n"
|
17 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/sv_SE/)\n"
|
18 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-tr_TR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-tr_TR.po
CHANGED
@@ -14,7 +14,7 @@
|
|
14 |
msgid ""
|
15 |
msgstr ""
|
16 |
"Project-Id-Version: MailChimp for WordPress\n"
|
17 |
-
"PO-Revision-Date: 2017-
|
18 |
"Last-Translator: İlbey Furkan Özden <ilbeyfurkanozden@gmail.com>\n"
|
19 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/tr_TR/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
14 |
msgid ""
|
15 |
msgstr ""
|
16 |
"Project-Id-Version: MailChimp for WordPress\n"
|
17 |
+
"PO-Revision-Date: 2017-09-20 15:49+0000\n"
|
18 |
"Last-Translator: İlbey Furkan Özden <ilbeyfurkanozden@gmail.com>\n"
|
19 |
"Language-Team: Turkish (Turkey) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/tr_TR/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
languages/mailchimp-for-wp-vi_VN.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-vi_VN.po
CHANGED
@@ -1,73 +1,26 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the same license as the
|
3 |
# Translators:
|
4 |
# Henry Nguyen <hungtvg@gmail.com>, 2015
|
5 |
# Thanh Tran <trantienthanh255@gmail.com>, 2016
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: MailChimp for WordPress\n"
|
9 |
-
"
|
10 |
-
"
|
11 |
-
"PO-Revision-Date: 2016-04-26 16:47+0000\n"
|
12 |
-
"Last-Translator: Thanh Tran <trantienthanh255@gmail.com>\n"
|
13 |
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/vi_VN/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
15 |
"Content-Type: text/plain; charset=UTF-8\n"
|
16 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"Language: vi_VN\n"
|
18 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
#:
|
21 |
-
msgid "Email address"
|
22 |
-
msgstr "Địa chỉ email:"
|
23 |
-
|
24 |
-
#: config/default-form-content.php:4
|
25 |
-
msgid "Your email address"
|
26 |
-
msgstr "Địa chỉ email của bạn"
|
27 |
-
|
28 |
-
#: config/default-form-content.php:5
|
29 |
-
msgid "Sign up"
|
30 |
-
msgstr "Đăng ký"
|
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 "Cảm ơn, yêu cầu đăng ký đã thành công! Vui lòng kiểm tra hộp thư đến để xác nhận."
|
37 |
-
|
38 |
-
#: config/default-form-messages.php:9
|
39 |
-
msgid "Oops. Something went wrong. Please try again later."
|
40 |
-
msgstr "Ồ không. Có cái gì đó sai. Vui lòng thử lại sau."
|
41 |
-
|
42 |
-
#: config/default-form-messages.php:13
|
43 |
-
msgid "Please provide a valid email address."
|
44 |
-
msgstr "Vui lòng cung cấp địa chỉ email chính xác."
|
45 |
-
|
46 |
-
#: config/default-form-messages.php:17
|
47 |
-
msgid "Given email address is already subscribed, thank you!"
|
48 |
-
msgstr "Địa chỉ email được cung cấp đã được đăng ký, cảm ơn!"
|
49 |
-
|
50 |
-
#: config/default-form-messages.php:21
|
51 |
-
msgid "Please fill in the required fields."
|
52 |
-
msgstr "Vui lòng điền vào các mục được yêu cầu."
|
53 |
-
|
54 |
-
#: config/default-form-messages.php:25
|
55 |
-
msgid "You were successfully unsubscribed."
|
56 |
-
msgstr "Bạn đã hủy đăng ký thành công."
|
57 |
-
|
58 |
-
#: config/default-form-messages.php:29
|
59 |
-
msgid "Given email address is not subscribed."
|
60 |
-
msgstr "Địa chỉ email cung cấp chưa được đăng ký."
|
61 |
-
|
62 |
-
#: config/default-form-messages.php:33
|
63 |
-
msgid "Please select at least one list."
|
64 |
-
msgstr "Hãy chọn ít nhất một danh sách."
|
65 |
-
|
66 |
-
#: config/default-integration-options.php:5
|
67 |
-
msgid "Sign me up for the newsletter!"
|
68 |
-
msgstr "Cho tôi đăng ký vào newsletter!"
|
69 |
-
|
70 |
-
#: includes/admin/class-admin-texts.php:62
|
71 |
#: includes/forms/views/edit-form.php:6
|
72 |
msgid "Settings"
|
73 |
msgstr "Cài đặt"
|
@@ -76,141 +29,388 @@ msgstr "Cài đặt"
|
|
76 |
msgid "Documentation"
|
77 |
msgstr "Tài liệu"
|
78 |
|
79 |
-
#: includes/admin/class-admin.php:
|
80 |
msgid ""
|
81 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
82 |
msgstr "Thành công!"
|
83 |
|
84 |
-
#: includes/admin/class-admin.php:
|
85 |
msgid ""
|
86 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
87 |
" to use it."
|
88 |
msgstr "Chỉ dành cho phiên bản Pro."
|
89 |
|
90 |
-
#: includes/admin/class-admin.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
msgid "MailChimp API Settings"
|
92 |
msgstr "Cài đặt MailChimp API"
|
93 |
|
94 |
-
#: includes/admin/class-admin.php:
|
95 |
-
#: integrations/ninja-forms/class-ninja-forms.php:34
|
96 |
msgid "MailChimp"
|
97 |
msgstr "MailChimp"
|
98 |
|
99 |
-
#: includes/admin/class-
|
100 |
-
|
101 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
|
103 |
-
#: includes/admin/class-
|
104 |
msgid ""
|
105 |
-
"
|
106 |
-
"
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: includes/admin/class-ads.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
msgid "More subscribers, better newsletters."
|
111 |
msgstr "Càng nhiều người đăng ký, tin tức càng tốt hơn."
|
112 |
|
113 |
-
#: includes/admin/class-ads.php:
|
114 |
msgid ""
|
115 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
116 |
"our monthly tips."
|
117 |
msgstr "Học cách tăng lượng người trong danh sách và viết email tốt hơn bằng cách đăng ký gợi ý hàng tháng của chúng tôi."
|
118 |
|
119 |
-
#: includes/admin/class-ads.php:
|
120 |
msgid "Email Address"
|
121 |
msgstr "Địa chỉ email"
|
122 |
|
123 |
-
#: includes/admin/class-ads.php:
|
124 |
msgid "First Name"
|
125 |
msgstr "Tên"
|
126 |
|
127 |
-
#: includes/admin/class-ads.php:
|
128 |
msgid "Subscribe"
|
129 |
msgstr "Đăng ký"
|
130 |
|
131 |
-
#: includes/admin/class-
|
132 |
-
msgid "
|
133 |
-
|
|
|
|
|
134 |
|
135 |
-
#: includes/admin/
|
136 |
-
msgid "
|
137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
|
139 |
-
#: includes/class-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
msgid "Read more about common connectivity issues."
|
141 |
msgstr "Đọc thêm về các vấn đề kết nối thông thường."
|
142 |
|
143 |
-
#: includes/forms/class-admin.php:
|
144 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
msgid "Forms"
|
146 |
msgstr "Các mẫu đăng ký"
|
147 |
|
148 |
-
#: includes/forms/class-admin.
|
149 |
msgid "<strong>Success!</strong> Form successfully saved."
|
150 |
msgstr "<strong>Thành công!</strong> Biểu mẫu đã được lưu thành công."
|
151 |
|
152 |
-
#: includes/forms/class-admin.php:
|
153 |
msgid "Preview form"
|
154 |
msgstr "Xem trước biểu mẫu"
|
155 |
|
156 |
-
#: includes/forms/class-admin.php:
|
157 |
-
msgid "
|
158 |
-
msgstr "
|
159 |
|
160 |
-
#: includes/forms/class-admin.php:
|
161 |
-
msgid "
|
162 |
-
msgstr "
|
163 |
|
164 |
-
#: includes/forms/class-form-previewer.php:
|
165 |
msgid "Form preview"
|
166 |
msgstr "Xem trước biểu mẫu"
|
167 |
|
168 |
-
#: includes/forms/class-form-tags.php:
|
169 |
msgid "Replaced with the form response (error or success messages)."
|
170 |
msgstr "Thay thế với phản hồi của mẫu (lỗi hoặc tin nhắn thành công)."
|
171 |
|
172 |
-
#: includes/forms/class-form-tags.php:
|
173 |
msgid "Data from the URL or a submitted form."
|
174 |
msgstr "Dữ liệu từ URL hoặc một biểu mẫu đã đăng ký"
|
175 |
|
176 |
-
#: includes/forms/class-form-tags.php:
|
|
|
|
|
|
|
|
|
177 |
#: includes/integrations/class-integration-tags.php:45
|
178 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
179 |
msgstr "Thay thế với số hiệu của người đăng ký trong (các) danh sách được lựa chọn."
|
180 |
|
181 |
-
#: includes/forms/class-form-tags.php:
|
182 |
msgid "The email address of the current visitor (if known)."
|
183 |
msgstr "Địa chỉ email của khách hàng hiện tại (nếu biết)."
|
184 |
|
185 |
-
#: includes/forms/class-form-tags.php:
|
186 |
msgid "The URL of the page."
|
187 |
msgstr "URL của trang."
|
188 |
|
189 |
-
#: includes/forms/class-form-tags.php:
|
190 |
msgid "The path of the page."
|
191 |
msgstr "Đường dẫn trang."
|
192 |
|
193 |
-
#: includes/forms/class-form-tags.php:
|
194 |
msgid "The current date. Example: %s."
|
195 |
msgstr "Ngày hiện tại. Ví dụ: %s."
|
196 |
|
197 |
-
#: includes/forms/class-form-tags.php:
|
198 |
msgid "The current time. Example: %s."
|
199 |
msgstr "Thời gian hiện tại. Ví dụ: %s."
|
200 |
|
201 |
-
#: includes/forms/class-form-tags.php:
|
202 |
msgid "The site's language. Example: %s."
|
203 |
msgstr "Ngôn ngữ của trang. Ví dụ: %s."
|
204 |
|
205 |
-
#: includes/forms/class-form-tags.php:
|
206 |
msgid "The visitor's IP address. Example: %s."
|
207 |
msgstr "Địa chỉ IP của khách. Ví dụ: %s."
|
208 |
|
209 |
-
#: includes/forms/class-form-tags.php:
|
210 |
msgid "The property of the currently logged-in user."
|
211 |
msgstr "Giá trị của người dùng hiện đang đăng nhập."
|
212 |
|
213 |
-
#: includes/forms/class-form.php:
|
|
|
|
|
|
|
|
|
214 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
215 |
msgstr "Không có biểu mẫu với ID %d, có lẽ đã bị xóa?"
|
216 |
|
@@ -218,10 +418,6 @@ msgstr "Không có biểu mẫu với ID %d, có lẽ đã bị xóa?"
|
|
218 |
msgid "Newsletter"
|
219 |
msgstr "Newsletter"
|
220 |
|
221 |
-
#: includes/forms/class-widget.php:30
|
222 |
-
msgid "MailChimp Sign-Up Form"
|
223 |
-
msgstr "Mẫu đăng ký MailChimp"
|
224 |
-
|
225 |
#: includes/forms/class-widget.php:32
|
226 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
227 |
msgstr "Hiển thị mẫu đăng ký MailChimp for WordPress của bạn"
|
@@ -236,7 +432,114 @@ msgid ""
|
|
236 |
" form settings</a>."
|
237 |
msgstr "Bạn có thể chỉnh sửa đơn đăng ký trong <a href=\"%s\">Phần cài đặt MailChimp for WordPress</a>."
|
238 |
|
239 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgid "Add new form"
|
241 |
msgstr "Thêm biểu mẫu mới"
|
242 |
|
@@ -264,38 +567,266 @@ msgstr "Các trường"
|
|
264 |
msgid "Messages"
|
265 |
msgstr "Tin nhắn"
|
266 |
|
267 |
-
#: includes/forms/views/edit-form.php:7
|
268 |
-
msgid "Appearance"
|
269 |
-
msgstr "Sự xuất hiện"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
|
271 |
-
#: includes/
|
272 |
-
|
273 |
-
|
274 |
-
#: includes/views/general-settings.php:7
|
275 |
-
msgid "You are here: "
|
276 |
-
msgstr "Bạn đang ở đây:"
|
277 |
|
278 |
-
#: includes/
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: includes/
|
283 |
-
msgid "
|
284 |
-
msgstr "
|
285 |
|
286 |
-
#: includes/
|
287 |
-
msgid "
|
288 |
-
msgstr "
|
289 |
|
290 |
-
#: includes/
|
291 |
-
msgid "
|
292 |
-
msgstr "
|
293 |
|
294 |
-
#: includes/
|
295 |
-
msgid "
|
296 |
-
msgstr "
|
297 |
|
298 |
-
#: includes/forms/views/parts/add-fields-help.
|
299 |
#: includes/forms/views/tabs/form-fields.php:10
|
300 |
msgid "Add more fields"
|
301 |
msgstr "Thêm các trường khác"
|
@@ -332,11 +863,6 @@ msgid ""
|
|
332 |
"changes."
|
333 |
msgstr "Click vào nút dưới để Mailchimp for Wordpress nhận các thay đổi của bạn."
|
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 "Làm mới các danh sách MailChimp"
|
339 |
-
|
340 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
341 |
msgid "Add dynamic form variable"
|
342 |
msgstr "Thêm biến biểu mẫu động."
|
@@ -409,87 +935,101 @@ msgstr "Các trường của biểu mẫu"
|
|
409 |
msgid "Enter the HTML code for your form fields.."
|
410 |
msgstr "Điền mã HTML vào các trường của biểu mẫu của bạn.."
|
411 |
|
412 |
-
#: includes/forms/views/tabs/form-fields.php:
|
413 |
-
msgid "Your form is missing the following (required) form fields:"
|
414 |
-
msgstr "Mẫu của bạn đang thiếu các trường (bắt buộc) sau:"
|
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 "Dùng shortcode %s để hiển thị mẫu này trong post, page hoặc widget"
|
421 |
|
422 |
-
#: includes/forms/views/tabs/form-messages.php:
|
423 |
msgid "Form Messages"
|
424 |
msgstr "Nội dung biểu mẫu"
|
425 |
|
426 |
-
#: includes/forms/views/tabs/form-messages.php:
|
427 |
msgid "Successfully subscribed"
|
428 |
msgstr "Đăng ký thành công"
|
429 |
|
430 |
-
#: includes/forms/views/tabs/form-messages.php:
|
431 |
msgid ""
|
432 |
"The text that shows when an email address is successfully subscribed to the "
|
433 |
"selected list(s)."
|
434 |
msgstr "Dòng chữ hiển thị khi một địa chỉ email đăng ký thành công vào một danh sách đã chọn."
|
435 |
|
436 |
-
#: includes/forms/views/tabs/form-messages.php:
|
437 |
msgid "Invalid email address"
|
438 |
msgstr "Địa chỉ email sai"
|
439 |
|
440 |
-
#: includes/forms/views/tabs/form-messages.php:
|
441 |
msgid "The text that shows when an invalid email address is given."
|
442 |
msgstr "Dong chữ hiển thị khi một địa chỉ email không đúng được cung cấp."
|
443 |
|
444 |
-
#: includes/forms/views/tabs/form-messages.php:
|
445 |
msgid "Required field missing"
|
446 |
msgstr "Thiếu các trường yêu cầu"
|
447 |
|
448 |
-
#: includes/forms/views/tabs/form-messages.php:
|
449 |
msgid ""
|
450 |
"The text that shows when a required field for the selected list(s) is "
|
451 |
"missing."
|
452 |
msgstr "Dòng chữ hiển thị khi một trường được yêu cầu cho (các) danh sách được chọn bị thiếu."
|
453 |
|
454 |
-
#: includes/forms/views/tabs/form-messages.php:
|
455 |
msgid "Already subscribed"
|
456 |
msgstr "Đã đăng ký"
|
457 |
|
458 |
-
#: includes/forms/views/tabs/form-messages.php:
|
459 |
msgid ""
|
460 |
"The text that shows when the given email is already subscribed to the "
|
461 |
"selected list(s)."
|
462 |
msgstr "Dong chữ hiển thị khi email cung cấp đã được đăng ký vào (các) danh sách đã chọn."
|
463 |
|
464 |
-
#: includes/forms/views/tabs/form-messages.php:
|
465 |
msgid "General error"
|
466 |
msgstr "Lỗi cơ bản"
|
467 |
|
468 |
-
#: includes/forms/views/tabs/form-messages.php:
|
469 |
msgid "The text that shows when a general error occured."
|
470 |
msgstr "Dòng chữ hiển thị ki một lỗi cơ bản xuất hiện."
|
471 |
|
472 |
-
#: includes/forms/views/tabs/form-messages.php:
|
473 |
msgid "Unsubscribed"
|
474 |
msgstr "Hủy đăng ký"
|
475 |
|
476 |
-
#: includes/forms/views/tabs/form-messages.php:
|
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 "Khi sử dụng phương pháp hủy đăng ký, đây là dòng chữ hiển thị khi địa chỉ email cung cấp đã hủy đăng ký thành công từ (các) danh sách đã chọn."
|
481 |
|
482 |
-
#: includes/forms/views/tabs/form-messages.php:
|
483 |
msgid "Not subscribed"
|
484 |
msgstr "Chưa được đăng ký"
|
485 |
|
486 |
-
#: includes/forms/views/tabs/form-messages.php:
|
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 "Khi sử dụng phương pháp hủy đăng ký, dòng chữ này hiển thị khi địa chỉ email không nằm trong (các) danh sách đã chọn."
|
491 |
|
492 |
-
#: includes/forms/views/tabs/form-messages.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
493 |
msgid "HTML tags like %s are allowed in the message fields."
|
494 |
msgstr "Thẻ HTML như %s được cho phép trong trường tin nhắn."
|
495 |
|
@@ -501,379 +1041,52 @@ msgstr "Cài đặt mẫu đăng ký"
|
|
501 |
msgid "MailChimp specific settings"
|
502 |
msgstr "Những cài đặt cụ thể Mailchimp"
|
503 |
|
504 |
-
#: includes/forms/views/tabs/form-settings.php:
|
505 |
msgid "Lists this form subscribes to"
|
506 |
msgstr "Lists this form subscribes to"
|
507 |
|
508 |
-
#: includes/forms/views/tabs/form-settings.php:
|
509 |
-
#: includes/integrations/views/integration-settings.php:93
|
510 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
511 |
-
msgstr "Không tìm thấy danh sách, <a href=\"%s\">bạn đã kết nối đến 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 "Chọn (các) danh sách mà người dùng đăng ký vào mẫu này có thể đăng ký."
|
518 |
|
519 |
-
#: includes/forms/views/tabs/form-settings.php:
|
520 |
msgid "Use double opt-in?"
|
521 |
msgstr "Sử dụng opt-in?"
|
522 |
|
523 |
-
#: includes/forms/views/tabs/form-settings.php:
|
524 |
-
|
525 |
-
|
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 "Vâng"
|
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 "Không"
|
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 "Chọn \"có\" nếu bạn muốn người dùng xác nhận địa chỉ email của họ trước khi đăng ký (khuyến nghị)"
|
563 |
-
|
564 |
-
#: includes/forms/views/tabs/form-settings.php:50
|
565 |
-
msgid "Send final welcome email?"
|
566 |
-
msgstr "Gửi email chào mừng cuối cùng?"
|
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 "Chọn \"Có\" nếu bạn muốn gửi Email chào mừng tới những người đăng ký vào danh sách thành công (chỉ khi tắt double opt-in)"
|
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 "Cập nhật người đăng ký đã có sẵn?"
|
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 "Chọn \"có\" nếu bạn muốn cập nhật những người đăng ký có sẵn với dẽ liệu sẽ được gửi."
|
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 "Thay thế nhóm ưa thích?"
|
591 |
|
592 |
-
#: includes/forms/views/tabs/form-settings.php:
|
593 |
-
#: includes/integrations/views/integration-settings.php:206
|
594 |
msgid ""
|
595 |
-
"
|
596 |
-
"
|
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 "Cái này làm gì?"
|
603 |
|
604 |
-
#: includes/forms/views/tabs/form-settings.php:
|
605 |
msgid "Form behaviour"
|
606 |
msgstr "Hành vi biểu mẫu"
|
607 |
|
608 |
-
#: includes/forms/views/tabs/form-settings.php:
|
609 |
msgid "Hide form after a successful sign-up?"
|
610 |
msgstr "Dấu mẫu sau khi có một đăng ký thành công?"
|
611 |
|
612 |
-
#: includes/forms/views/tabs/form-settings.php:
|
613 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
614 |
msgstr "Chọn \"Có\" để dấu các trường trong mẫu đơn sau khi đăng ký thành công."
|
615 |
|
616 |
-
#: includes/forms/views/tabs/form-settings.php:
|
617 |
msgid "Redirect to URL after successful sign-ups"
|
618 |
msgstr "Chuyển hướng đến URL sau khi đăng ký thành công"
|
619 |
|
620 |
-
#: includes/forms/views/tabs/form-settings.php:
|
621 |
msgid "Example: %s"
|
622 |
msgstr "Ví dụ: %s"
|
623 |
|
624 |
-
#: includes/forms/views/tabs/form-settings.php:
|
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 "Để trống hoặc điền <code>0</code> cho không chuyển hướng, sử dụng toàn bộ (tuyệt đối) URLs, bao gồm <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 "Tích hợp"
|
637 |
-
|
638 |
-
#: includes/integrations/views/integration-settings.php:20
|
639 |
-
msgid "%s integration"
|
640 |
-
msgstr "%s tích hợp"
|
641 |
-
|
642 |
-
#: includes/integrations/views/integration-settings.php:51
|
643 |
-
msgid "Enabled?"
|
644 |
-
msgstr "Đã bật?"
|
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 "Bật tích hợp %s? Điều này sẽ thêm mục chọn đăng ký vào biểu mẫu."
|
650 |
-
|
651 |
-
#: includes/integrations/views/integration-settings.php:64
|
652 |
-
msgid "Implicit?"
|
653 |
-
msgstr "Ngầm?"
|
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 "Chọn \"không\" nếu bạn muốn hỏi các khách hàng trước khi họ đã đăng ký (khuyến nghị)."
|
660 |
-
|
661 |
-
#: includes/integrations/views/integration-settings.php:78
|
662 |
-
msgid "MailChimp Lists"
|
663 |
-
msgstr "Danh sách 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 "Chọn (một hoặc nhiều) danh sách mà để khi người dùng check vào checkbox có thể đăng ký."
|
670 |
-
|
671 |
-
#: includes/integrations/views/integration-settings.php:102
|
672 |
-
msgid "Checkbox label text"
|
673 |
-
msgstr "Chữ gắn nhãn Checkbox"
|
674 |
-
|
675 |
-
#: includes/integrations/views/integration-settings.php:105
|
676 |
-
msgid "HTML tags like %s are allowed in the label text."
|
677 |
-
msgstr "Thẻ HTML như %s được chấp nhận trong chữ gắn nhãn."
|
678 |
-
|
679 |
-
#: includes/integrations/views/integration-settings.php:115
|
680 |
-
msgid "Pre-check the checkbox?"
|
681 |
-
msgstr "Check sẵn vào checkbox?"
|
682 |
-
|
683 |
-
#: includes/integrations/views/integration-settings.php:119
|
684 |
-
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
685 |
-
msgstr "Chọn \"có\" nếu mục chọn nên được điền trước."
|
686 |
-
|
687 |
-
#: includes/integrations/views/integration-settings.php:127
|
688 |
-
msgid "Load some default CSS?"
|
689 |
-
msgstr "Tải sẵn vài CSS mặc định?"
|
690 |
-
|
691 |
-
#: includes/integrations/views/integration-settings.php:131
|
692 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
693 |
-
msgstr "Chọn \"yes\" nếu checkbox hiện thị ở một nơi không bình thường."
|
694 |
-
|
695 |
-
#: includes/integrations/views/integration-settings.php:138
|
696 |
-
msgid "Double opt-in?"
|
697 |
-
msgstr "Double opt-in?"
|
698 |
-
|
699 |
-
#: includes/integrations/views/integration-settings.php:159
|
700 |
-
msgid "Send Welcome Email?"
|
701 |
-
msgstr "Gửi Email chào mừng?"
|
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 "Những danh sách Mailchimp đã chọn yêu cầu những trường không mặc định, điều này có thể chặn sự đồng nhất trong hoạt động."
|
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 "Hãy đảm bảo bạn <a href=\"%s\"> cấu hình bộ mở rộng để gửi tất cả các trường yêu cầu</a> hoặc <a href=\"%s\">đăng nhập vào tài khoản Mailchimp của bạn</a> và đảm bảo chỉ có duy nhất trường email và tên được đánh dấu trường yêu cầu cho (các) danh sách đã chọn."
|
716 |
-
|
717 |
-
#: includes/integrations/views/integrations.php:30
|
718 |
-
msgid "Enabled"
|
719 |
-
msgstr "Đã bật"
|
720 |
-
|
721 |
-
#: includes/integrations/views/integrations.php:31
|
722 |
-
msgid "Name"
|
723 |
-
msgstr "Tên"
|
724 |
-
|
725 |
-
#: includes/integrations/views/integrations.php:32
|
726 |
-
msgid "Description"
|
727 |
-
msgstr "Mô tả"
|
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 "Tích hợp này đã được bật bởi mặc định như nó yêu cầu những hành động thủ công tới công việc."
|
734 |
-
|
735 |
-
#: includes/integrations/views/integrations.php:57
|
736 |
-
msgid "Configure this integration"
|
737 |
-
msgstr "Cấu hình tích hợp này"
|
738 |
-
|
739 |
-
#: includes/views/general-settings.php:18
|
740 |
-
msgid "General Settings"
|
741 |
-
msgstr "Những cài đặt chung"
|
742 |
-
|
743 |
-
#: includes/views/general-settings.php:35
|
744 |
-
msgid "Status"
|
745 |
-
msgstr "Trạng thái"
|
746 |
-
|
747 |
-
#: includes/views/general-settings.php:39
|
748 |
-
msgid "CONNECTED"
|
749 |
-
msgstr "Đã kết nối"
|
750 |
-
|
751 |
-
#: includes/views/general-settings.php:41
|
752 |
-
msgid "NOT CONNECTED"
|
753 |
-
msgstr "Chưa kết nối"
|
754 |
-
|
755 |
-
#: includes/views/general-settings.php:48
|
756 |
-
msgid "API Key"
|
757 |
-
msgstr "API Key"
|
758 |
-
|
759 |
-
#: includes/views/general-settings.php:50
|
760 |
-
msgid "Your MailChimp API key"
|
761 |
-
msgstr "MailChimp API key của bạn"
|
762 |
-
|
763 |
-
#: includes/views/general-settings.php:52
|
764 |
-
msgid "The API key for connecting with your MailChimp account."
|
765 |
-
msgstr "Mã API để kết nối với tài khoản Mailchimp của bạn."
|
766 |
-
|
767 |
-
#: includes/views/general-settings.php:53
|
768 |
-
msgid "Get your API key here."
|
769 |
-
msgstr "Lấy API key ở đây"
|
770 |
-
|
771 |
-
#: includes/views/general-settings.php:65
|
772 |
-
msgid "Usage Tracking"
|
773 |
-
msgstr "Sử dụng theo dõi"
|
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 "Cho phép chúng tôi theo dõi bộ mở rộng được sử dụng như thế nào để giúp chúng tôi đáp ứng được nhu cầu của bạn tốt hơn."
|
780 |
-
|
781 |
-
#: includes/views/general-settings.php:73
|
782 |
-
msgid "This is what we track."
|
783 |
-
msgstr "Đây là những gì chúng tôi theo dõi."
|
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 for WordPress cần được dịch tốt hơn. Bạn thấy rằng plugin này chưa được dịch hoặc được dịch chưa chuẩn trong ngôn ngữ của bạn? Xin hãy giúp đỡ, rất dễ! Truy cập vào <a href=\"%s\">dự án dịch và bấm \"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 "Plugin này không được phát triển hay liên kết với MailChimp dưới bất kỳ hình thức nào."
|
797 |
-
|
798 |
-
#: includes/views/parts/lists-overview.php:1
|
799 |
-
msgid "Your MailChimp Account"
|
800 |
-
msgstr "Tài khoản Mailchimp của bạn"
|
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 "Bảng dưới hiển thị những danh sách Mailchimp của bạn và chi tiết. Nếu bạn mới thay đổi danh sách Mailchimp của bạn, hãy sử dụng nút dưới để làm mới cấu hình danh sách đã lưu."
|
808 |
-
|
809 |
-
#: includes/views/parts/lists-overview.php:14
|
810 |
-
msgid "No lists were found in your MailChimp account"
|
811 |
-
msgstr "Không có danh sách nào được tìm thấy ở tài khoản MailChimp của bạn."
|
812 |
-
|
813 |
-
#: includes/views/parts/lists-overview.php:16
|
814 |
-
msgid "A total of %d lists were found in your MailChimp account."
|
815 |
-
msgstr "%d danh sách đã được tìm thấy trong tài khoản Mailchimp của bạn."
|
816 |
-
|
817 |
-
#: includes/views/parts/lists-overview.php:21
|
818 |
-
msgid "List Name"
|
819 |
-
msgstr "Tên danh sách"
|
820 |
-
|
821 |
-
#: includes/views/parts/lists-overview.php:22
|
822 |
-
msgid "ID"
|
823 |
-
msgstr "ID"
|
824 |
-
|
825 |
-
#: includes/views/parts/lists-overview.php:23
|
826 |
-
msgid "Subscribers"
|
827 |
-
msgstr "Những người đăng ký"
|
828 |
-
|
829 |
-
#: includes/views/parts/lists-overview.php:45
|
830 |
-
msgid "Edit this list in MailChimp"
|
831 |
-
msgstr "Sửa danh sách trong Mailchimp"
|
832 |
-
|
833 |
-
#: includes/views/parts/lists-overview.php:59
|
834 |
-
msgid "%s (%s) with field type %s."
|
835 |
-
msgstr "%s (%s) với loại trường %s"
|
836 |
-
|
837 |
-
#: includes/views/parts/lists-overview.php:83
|
838 |
-
msgid "%s (ID: %s) with type %s."
|
839 |
-
msgstr "%s (ID: %s) với loại %s."
|
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 "Để tích hợp Contact Form 7, cấu hình các cài đặt bên dưới và sau đó thêm %s tới biểu mẫu CF7 của bạn."
|
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 "Để tích hợp chỉnh sửa hoạt động, thêm dòng HTML sau vào biểu mẫu bạn đang muốn tích hợp vào."
|
852 |
-
|
853 |
-
#: integrations/woocommerce/class-woocommerce.php:102
|
854 |
-
msgid "Order #%d"
|
855 |
-
msgstr "Thứ tự #%d"
|
856 |
-
|
857 |
-
#. Plugin Name of the plugin/theme
|
858 |
-
msgid "MailChimp for WordPress"
|
859 |
-
msgstr "MailChimp for 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 "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
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 "Mailchimp for Wordpress bởi ibericode. Thêm các phương pháp đăng ký hiệu quả cao khác nhau vào trang của bạn."
|
872 |
-
|
873 |
-
#. Author of the plugin/theme
|
874 |
-
msgid "ibericode"
|
875 |
-
msgstr "ibericode"
|
876 |
-
|
877 |
-
#. Author URI of the plugin/theme
|
878 |
-
msgid "https://ibericode.com/"
|
879 |
-
msgstr "https://ibericode.com/"
|
1 |
+
# Copyright (C) 2017 mailchimp-for-wp
|
2 |
+
# This file is distributed under the same license as the mailchimp-for-wp package.
|
3 |
# Translators:
|
4 |
# Henry Nguyen <hungtvg@gmail.com>, 2015
|
5 |
# Thanh Tran <trantienthanh255@gmail.com>, 2016
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: MailChimp for WordPress\n"
|
9 |
+
"PO-Revision-Date: 2017-09-20 15:59+0000\n"
|
10 |
+
"Last-Translator: Danny van Kooten <dannyvankooten@gmail.com>\n"
|
|
|
|
|
11 |
"Language-Team: Vietnamese (Viet Nam) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/vi_VN/)\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Language: vi_VN\n"
|
16 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
17 |
+
"X-Poedit-Basepath: ..\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
|
23 |
+
#: includes/admin/class-admin-texts.php62,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
#: includes/forms/views/edit-form.php:6
|
25 |
msgid "Settings"
|
26 |
msgstr "Cài đặt"
|
29 |
msgid "Documentation"
|
30 |
msgstr "Tài liệu"
|
31 |
|
32 |
+
#: includes/admin/class-admin.php:204
|
33 |
msgid ""
|
34 |
"Success! The cached configuration for your MailChimp lists has been renewed."
|
35 |
msgstr "Thành công!"
|
36 |
|
37 |
+
#: includes/admin/class-admin.php:304
|
38 |
msgid ""
|
39 |
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
40 |
" to use it."
|
41 |
msgstr "Chỉ dành cho phiên bản Pro."
|
42 |
|
43 |
+
#: includes/admin/class-admin.php305,
|
44 |
+
#: includes/views/parts/lists-overview.php10,
|
45 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
46 |
+
msgid "Renew MailChimp lists"
|
47 |
+
msgstr "Làm mới các danh sách MailChimp"
|
48 |
+
|
49 |
+
#: includes/admin/class-admin.php:306
|
50 |
+
msgid "Fetching MailChimp lists"
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: includes/admin/class-admin.php:307
|
54 |
+
msgid "Done! MailChimp lists renewed."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: includes/admin/class-admin.php:308
|
58 |
+
msgid "This can take a while if you have many MailChimp lists."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: includes/admin/class-admin.php336, includes/views/general-settings.php:31
|
62 |
msgid "MailChimp API Settings"
|
63 |
msgstr "Cài đặt MailChimp API"
|
64 |
|
65 |
+
#: includes/admin/class-admin.php:337
|
|
|
66 |
msgid "MailChimp"
|
67 |
msgstr "MailChimp"
|
68 |
|
69 |
+
#: includes/admin/class-admin.php343, includes/views/other-settings.php60,
|
70 |
+
#: includes/views/other-settings.php:70
|
71 |
+
msgid "Other Settings"
|
72 |
+
msgstr ""
|
73 |
+
|
74 |
+
#: includes/admin/class-admin.php:344
|
75 |
+
msgid "Other"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/admin/class-admin.php:458
|
79 |
+
msgid "Log successfully emptied."
|
80 |
+
msgstr ""
|
81 |
|
82 |
+
#: includes/admin/class-admin.php:488
|
83 |
msgid ""
|
84 |
+
"To get started with MailChimp for WordPress, please <a href=\"%s\">enter "
|
85 |
+
"your MailChimp API key on the settings page of the plugin</a>."
|
86 |
+
msgstr ""
|
87 |
|
88 |
+
#: includes/admin/class-ads.php:39
|
89 |
+
msgid ""
|
90 |
+
"Want to customize the style of your form? <a href=\"%s\">Try our Styles "
|
91 |
+
"Builder</a> & edit the look of your forms with just a few clicks."
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/admin/class-ads.php:54
|
95 |
+
msgid ""
|
96 |
+
"Be notified whenever someone subscribes? <a href=\"%s\">MailChimp for "
|
97 |
+
"WordPress Premium</a> allows you to set up email notifications for your "
|
98 |
+
"forms."
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/admin/class-ads.php:56
|
102 |
+
msgid ""
|
103 |
+
"Increased conversions? <a href=\"%s\">MailChimp for WordPress Premium</a> "
|
104 |
+
"submits forms without reloading the entire page, resulting in a much better "
|
105 |
+
"experience for your visitors."
|
106 |
+
msgstr ""
|
107 |
+
|
108 |
+
#: includes/admin/class-ads.php:70
|
109 |
+
msgid "Upgrade to Premium"
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: includes/admin/class-ads.php:83
|
113 |
+
msgid ""
|
114 |
+
"Do you want translated forms for all of your languages? <a href=\"%s\">Try "
|
115 |
+
"MailChimp for WordPress Premium</a>, which does just that plus more."
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/admin/class-ads.php:88
|
119 |
+
msgid ""
|
120 |
+
"Do you want to create more than one form? Our Premium add-on does just that!"
|
121 |
+
" <a href=\"%s\">Have a look at all Premium benefits</a>."
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/admin/class-ads.php:93
|
125 |
+
msgid ""
|
126 |
+
"Are you enjoying this plugin? The Premium add-on unlocks several powerful "
|
127 |
+
"features. <a href=\"%s\">Find out about all benefits now</a>."
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/admin/class-ads.php:112
|
131 |
msgid "More subscribers, better newsletters."
|
132 |
msgstr "Càng nhiều người đăng ký, tin tức càng tốt hơn."
|
133 |
|
134 |
+
#: includes/admin/class-ads.php:113
|
135 |
msgid ""
|
136 |
"Learn how to best grow your lists & write better emails by subscribing to "
|
137 |
"our monthly tips."
|
138 |
msgstr "Học cách tăng lượng người trong danh sách và viết email tốt hơn bằng cách đăng ký gợi ý hàng tháng của chúng tôi."
|
139 |
|
140 |
+
#: includes/admin/class-ads.php:116
|
141 |
msgid "Email Address"
|
142 |
msgstr "Địa chỉ email"
|
143 |
|
144 |
+
#: includes/admin/class-ads.php:120
|
145 |
msgid "First Name"
|
146 |
msgstr "Tên"
|
147 |
|
148 |
+
#: includes/admin/class-ads.php127, includes/forms/class-admin.php:94
|
149 |
msgid "Subscribe"
|
150 |
msgstr "Đăng ký"
|
151 |
|
152 |
+
#: includes/admin/class-ads.php:150
|
153 |
+
msgid ""
|
154 |
+
"Do you want to track all WooCommerce orders in MailChimp so you can send "
|
155 |
+
"emails based on the purchase activity of your subscribers?"
|
156 |
+
msgstr ""
|
157 |
|
158 |
+
#: includes/admin/class-ads.php:153
|
159 |
+
msgid ""
|
160 |
+
"<a href=\"%s\">Upgrade to MailChimp for WordPress Premium</a> or <a "
|
161 |
+
"href=\"%s\">read more about MailChimp's E-Commerce features</a>."
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: includes/admin/class-review-notice.php:68
|
165 |
+
msgid ""
|
166 |
+
"You've been using MailChimp for WordPress for some time now; we hope you "
|
167 |
+
"love it!"
|
168 |
+
msgstr ""
|
169 |
|
170 |
+
#: includes/admin/class-review-notice.php:69
|
171 |
+
msgid ""
|
172 |
+
"If you do, please <a href=\"%s\">leave us a 5★ rating on WordPress.org</a>. "
|
173 |
+
"It would be of great help to us."
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: includes/admin/class-review-notice.php:71
|
177 |
+
msgid "Dismiss this notice."
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: includes/api/class-api.php:84
|
181 |
msgid "Read more about common connectivity issues."
|
182 |
msgstr "Đọc thêm về các vấn đề kết nối thông thường."
|
183 |
|
184 |
+
#: includes/forms/class-admin.php:62
|
185 |
+
msgid "Add to form"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/forms/class-admin.php:63
|
189 |
+
msgid "City"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: includes/forms/class-admin.php:64
|
193 |
+
msgid "Checkboxes"
|
194 |
+
msgstr ""
|
195 |
+
|
196 |
+
#: includes/forms/class-admin.php:65
|
197 |
+
msgid "Choices"
|
198 |
+
msgstr ""
|
199 |
+
|
200 |
+
#: includes/forms/class-admin.php:66
|
201 |
+
msgid "Choice type"
|
202 |
+
msgstr ""
|
203 |
+
|
204 |
+
#: includes/forms/class-admin.php:67
|
205 |
+
msgid "Choose a field to add to the form"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: includes/forms/class-admin.php:68
|
209 |
+
msgid "Close"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: includes/forms/class-admin.php:69
|
213 |
+
msgid "Country"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: includes/forms/class-admin.php:70
|
217 |
+
msgid "Dropdown"
|
218 |
+
msgstr ""
|
219 |
+
|
220 |
+
#: includes/forms/class-admin.php:71
|
221 |
+
msgid "Field type"
|
222 |
+
msgstr ""
|
223 |
+
|
224 |
+
#: includes/forms/class-admin.php:72
|
225 |
+
msgid "Field label"
|
226 |
+
msgstr ""
|
227 |
+
|
228 |
+
#: includes/forms/class-admin.php:73
|
229 |
+
msgid "Form action"
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: includes/forms/class-admin.php:74
|
233 |
+
msgid ""
|
234 |
+
"This field will allow your visitors to choose whether they would like to "
|
235 |
+
"subscribe or unsubscribe"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: includes/forms/class-admin.php:75
|
239 |
+
msgid "Form fields"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: includes/forms/class-admin.php:76
|
243 |
+
msgid "This field is marked as required in MailChimp."
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: includes/forms/class-admin.php:77
|
247 |
+
msgid "Initial value"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: includes/forms/class-admin.php:78
|
251 |
+
msgid "Interest categories"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: includes/forms/class-admin.php:79
|
255 |
+
msgid "Is this field required?"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: includes/forms/class-admin.php:80
|
259 |
+
msgid "List choice"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: includes/forms/class-admin.php:81
|
263 |
+
msgid "This field will allow your visitors to choose a list to subscribe to."
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: includes/forms/class-admin.php:82
|
267 |
+
msgid "List fields"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: includes/forms/class-admin.php:83
|
271 |
+
msgid "Min"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/forms/class-admin.php:84
|
275 |
+
msgid "Max"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: includes/forms/class-admin.php:85
|
279 |
+
msgid ""
|
280 |
+
"No available fields. Did you select a MailChimp list in the form settings?"
|
281 |
+
msgstr ""
|
282 |
+
|
283 |
+
#: includes/forms/class-admin.php:86
|
284 |
+
msgid "Optional"
|
285 |
+
msgstr ""
|
286 |
+
|
287 |
+
#: includes/forms/class-admin.php:87
|
288 |
+
msgid "Placeholder"
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: includes/forms/class-admin.php:88
|
292 |
+
msgid "Text to show when field has no value."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: includes/forms/class-admin.php:89
|
296 |
+
msgid "Preselect"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: includes/forms/class-admin.php:90
|
300 |
+
msgid "Remove"
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/forms/class-admin.php:91
|
304 |
+
msgid "Radio buttons"
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: includes/forms/class-admin.php:92
|
308 |
+
msgid "Street Address"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: includes/forms/class-admin.php:93
|
312 |
+
msgid "State"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: includes/forms/class-admin.php:95
|
316 |
+
msgid "Submit button"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: includes/forms/class-admin.php:96
|
320 |
+
msgid "Wrap in paragraph tags?"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: includes/forms/class-admin.php:97
|
324 |
+
msgid "Value"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: includes/forms/class-admin.php:98
|
328 |
+
msgid "Text to prefill this field with."
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: includes/forms/class-admin.php:99
|
332 |
+
msgid "ZIP"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: includes/forms/class-admin.php111, includes/forms/class-admin.php112,
|
336 |
+
#: includes/forms/views/edit-form.php:24
|
337 |
msgid "Forms"
|
338 |
msgstr "Các mẫu đăng ký"
|
339 |
|
340 |
+
#: includes/forms/class-admin.php152, includes/forms/class-admin.php:276
|
341 |
msgid "<strong>Success!</strong> Form successfully saved."
|
342 |
msgstr "<strong>Thành công!</strong> Biểu mẫu đã được lưu thành công."
|
343 |
|
344 |
+
#: includes/forms/class-admin.php:276
|
345 |
msgid "Preview form"
|
346 |
msgstr "Xem trước biểu mẫu"
|
347 |
|
348 |
+
#: includes/forms/class-admin.php449, includes/forms/class-widget.php:30
|
349 |
+
msgid "MailChimp Sign-Up Form"
|
350 |
+
msgstr "Mẫu đăng ký MailChimp"
|
351 |
|
352 |
+
#: includes/forms/class-admin.php:453
|
353 |
+
msgid "Select the form to show"
|
354 |
+
msgstr ""
|
355 |
|
356 |
+
#: includes/forms/class-form-previewer.php:146
|
357 |
msgid "Form preview"
|
358 |
msgstr "Xem trước biểu mẫu"
|
359 |
|
360 |
+
#: includes/forms/class-form-tags.php:60
|
361 |
msgid "Replaced with the form response (error or success messages)."
|
362 |
msgstr "Thay thế với phản hồi của mẫu (lỗi hoặc tin nhắn thành công)."
|
363 |
|
364 |
+
#: includes/forms/class-form-tags.php:65
|
365 |
msgid "Data from the URL or a submitted form."
|
366 |
msgstr "Dữ liệu từ URL hoặc một biểu mẫu đã đăng ký"
|
367 |
|
368 |
+
#: includes/forms/class-form-tags.php:71
|
369 |
+
msgid "Data from a cookie."
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: includes/forms/class-form-tags.php77,
|
373 |
#: includes/integrations/class-integration-tags.php:45
|
374 |
msgid "Replaced with the number of subscribers on the selected list(s)"
|
375 |
msgstr "Thay thế với số hiệu của người đăng ký trong (các) danh sách được lựa chọn."
|
376 |
|
377 |
+
#: includes/forms/class-form-tags.php:82
|
378 |
msgid "The email address of the current visitor (if known)."
|
379 |
msgstr "Địa chỉ email của khách hàng hiện tại (nếu biết)."
|
380 |
|
381 |
+
#: includes/forms/class-form-tags.php:87
|
382 |
msgid "The URL of the page."
|
383 |
msgstr "URL của trang."
|
384 |
|
385 |
+
#: includes/forms/class-form-tags.php:92
|
386 |
msgid "The path of the page."
|
387 |
msgstr "Đường dẫn trang."
|
388 |
|
389 |
+
#: includes/forms/class-form-tags.php:97
|
390 |
msgid "The current date. Example: %s."
|
391 |
msgstr "Ngày hiện tại. Ví dụ: %s."
|
392 |
|
393 |
+
#: includes/forms/class-form-tags.php:102
|
394 |
msgid "The current time. Example: %s."
|
395 |
msgstr "Thời gian hiện tại. Ví dụ: %s."
|
396 |
|
397 |
+
#: includes/forms/class-form-tags.php:107
|
398 |
msgid "The site's language. Example: %s."
|
399 |
msgstr "Ngôn ngữ của trang. Ví dụ: %s."
|
400 |
|
401 |
+
#: includes/forms/class-form-tags.php:112
|
402 |
msgid "The visitor's IP address. Example: %s."
|
403 |
msgstr "Địa chỉ IP của khách. Ví dụ: %s."
|
404 |
|
405 |
+
#: includes/forms/class-form-tags.php:117
|
406 |
msgid "The property of the currently logged-in user."
|
407 |
msgstr "Giá trị của người dùng hiện đang đăng nhập."
|
408 |
|
409 |
+
#: includes/forms/class-form-tags.php:123
|
410 |
+
msgid "Property of the current page or post."
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#: includes/forms/class-form.php:133
|
414 |
msgid "There is no form with ID %d, perhaps it was deleted?"
|
415 |
msgstr "Không có biểu mẫu với ID %d, có lẽ đã bị xóa?"
|
416 |
|
418 |
msgid "Newsletter"
|
419 |
msgstr "Newsletter"
|
420 |
|
|
|
|
|
|
|
|
|
421 |
#: includes/forms/class-widget.php:32
|
422 |
msgid "Displays your MailChimp for WordPress sign-up form"
|
423 |
msgstr "Hiển thị mẫu đăng ký MailChimp for WordPress của bạn"
|
432 |
" form settings</a>."
|
433 |
msgstr "Bạn có thể chỉnh sửa đơn đăng ký trong <a href=\"%s\">Phần cài đặt MailChimp for WordPress</a>."
|
434 |
|
435 |
+
#: includes/integrations/class-admin.php79,
|
436 |
+
#: includes/integrations/class-admin.php80,
|
437 |
+
#: includes/integrations/views/integration-settings.php10,
|
438 |
+
#: includes/integrations/views/integrations.php57,
|
439 |
+
#: includes/integrations/views/integrations.php:65
|
440 |
+
msgid "Integrations"
|
441 |
+
msgstr "Tích hợp"
|
442 |
+
|
443 |
+
#: includes/views/general-settings.php7, includes/views/other-settings.php58,
|
444 |
+
#: includes/forms/views/edit-form.php22,
|
445 |
+
#: includes/integrations/views/integration-settings.php8,
|
446 |
+
#: includes/integrations/views/integrations.php:55
|
447 |
+
msgid "You are here: "
|
448 |
+
msgstr "Bạn đang ở đây:"
|
449 |
+
|
450 |
+
#: includes/views/general-settings.php:18
|
451 |
+
msgid "General Settings"
|
452 |
+
msgstr "Những cài đặt chung"
|
453 |
+
|
454 |
+
#: includes/views/general-settings.php:38
|
455 |
+
msgid "Status"
|
456 |
+
msgstr "Trạng thái"
|
457 |
+
|
458 |
+
#: includes/views/general-settings.php:42
|
459 |
+
msgid "CONNECTED"
|
460 |
+
msgstr "Đã kết nối"
|
461 |
+
|
462 |
+
#: includes/views/general-settings.php:44
|
463 |
+
msgid "NOT CONNECTED"
|
464 |
+
msgstr "Chưa kết nối"
|
465 |
+
|
466 |
+
#: includes/views/general-settings.php:51
|
467 |
+
msgid "API Key"
|
468 |
+
msgstr "API Key"
|
469 |
+
|
470 |
+
#: includes/views/general-settings.php:53
|
471 |
+
msgid "Your MailChimp API key"
|
472 |
+
msgstr "MailChimp API key của bạn"
|
473 |
+
|
474 |
+
#: includes/views/general-settings.php:55
|
475 |
+
msgid "The API key for connecting with your MailChimp account."
|
476 |
+
msgstr "Mã API để kết nối với tài khoản Mailchimp của bạn."
|
477 |
+
|
478 |
+
#: includes/views/general-settings.php:56
|
479 |
+
msgid "Get your API key here."
|
480 |
+
msgstr "Lấy API key ở đây"
|
481 |
+
|
482 |
+
#: includes/views/other-settings.php:14
|
483 |
+
msgid "Miscellaneous settings"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: includes/views/other-settings.php:17
|
487 |
+
msgid "Usage Tracking"
|
488 |
+
msgstr "Sử dụng theo dõi"
|
489 |
+
|
490 |
+
#: includes/views/other-settings.php:29
|
491 |
+
msgid ""
|
492 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
493 |
+
"better fit your needs."
|
494 |
+
msgstr "Cho phép chúng tôi theo dõi bộ mở rộng được sử dụng như thế nào để giúp chúng tôi đáp ứng được nhu cầu của bạn tốt hơn."
|
495 |
+
|
496 |
+
#: includes/views/other-settings.php:31
|
497 |
+
msgid "This is what we track."
|
498 |
+
msgstr "Đây là những gì chúng tôi theo dõi."
|
499 |
+
|
500 |
+
#: includes/views/other-settings.php:37
|
501 |
+
msgid "Logging"
|
502 |
+
msgstr ""
|
503 |
+
|
504 |
+
#: includes/views/other-settings.php:44
|
505 |
+
msgid ""
|
506 |
+
"Determines what events should be written to <a href=\"%s\">the debug log</a>"
|
507 |
+
" (see below)."
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: includes/views/other-settings.php:99
|
511 |
+
msgid "Debug Log"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/views/other-settings.php:99
|
515 |
+
msgid "Filter.."
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: includes/views/other-settings.php:104
|
519 |
+
msgid "Log file is not writable."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: includes/views/other-settings.php:105
|
523 |
+
msgid "Please ensure %s has the proper <a href=\"%s\">file permissions</a>."
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: includes/views/other-settings.php:123
|
527 |
+
msgid "Nothing here. Which means there are no errors!"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: includes/views/other-settings.php:133
|
531 |
+
msgid "Empty Log"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: includes/views/other-settings.php:141
|
535 |
+
msgid "Right now, the plugin is configured to only log errors and warnings."
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/admin/migrations/3.0.0-form-1-post-type.php:35
|
539 |
+
msgid "Default sign-up form"
|
540 |
+
msgstr "Biểu mẫu đăng ký mặc định"
|
541 |
+
|
542 |
+
#: includes/forms/views/add-form.php10, includes/forms/views/add-form.php:60
|
543 |
msgid "Add new form"
|
544 |
msgstr "Thêm biểu mẫu mới"
|
545 |
|
567 |
msgid "Messages"
|
568 |
msgstr "Tin nhắn"
|
569 |
|
570 |
+
#: includes/forms/views/edit-form.php:7
|
571 |
+
msgid "Appearance"
|
572 |
+
msgstr "Sự xuất hiện"
|
573 |
+
|
574 |
+
#: includes/forms/views/edit-form.php:25
|
575 |
+
msgid "Form"
|
576 |
+
msgstr ""
|
577 |
+
|
578 |
+
#: includes/forms/views/edit-form.php:34
|
579 |
+
msgid "Edit Form"
|
580 |
+
msgstr "Sửa Mẫu"
|
581 |
+
|
582 |
+
#: includes/forms/views/edit-form.php:58
|
583 |
+
msgid "Enter form title here"
|
584 |
+
msgstr "Điền tiêu đề của biểu mẫu ở đây"
|
585 |
+
|
586 |
+
#: includes/forms/views/edit-form.php:59
|
587 |
+
msgid "Enter the title of your sign-up form"
|
588 |
+
msgstr "Điền tiêu đề của biểu mẫu đăng ký của bạn"
|
589 |
+
|
590 |
+
#: includes/forms/views/edit-form.php:65
|
591 |
+
msgid "Shortcode"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: includes/forms/views/edit-form.php:67
|
595 |
+
msgid "Get shortcode"
|
596 |
+
msgstr "Lấy mã ngắn"
|
597 |
+
|
598 |
+
#: includes/forms/views/edit-form.php:72
|
599 |
+
msgid "Preview this form"
|
600 |
+
msgstr "Xem trước biểu mẫu này"
|
601 |
+
|
602 |
+
#: includes/integrations/views/integration-settings.php:20
|
603 |
+
msgid "%s integration"
|
604 |
+
msgstr "%s tích hợp"
|
605 |
+
|
606 |
+
#: includes/integrations/views/integration-settings.php:27
|
607 |
+
msgid ""
|
608 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
609 |
+
"this integration from working."
|
610 |
+
msgstr "Những danh sách Mailchimp đã chọn yêu cầu những trường không mặc định, điều này có thể chặn sự đồng nhất trong hoạt động."
|
611 |
+
|
612 |
+
#: includes/integrations/views/integration-settings.php:28
|
613 |
+
msgid ""
|
614 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
615 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
616 |
+
"sure only the email & name fields are marked as required fields for the "
|
617 |
+
"selected list(s)."
|
618 |
+
msgstr "Hãy đảm bảo bạn <a href=\"%s\"> cấu hình bộ mở rộng để gửi tất cả các trường yêu cầu</a> hoặc <a href=\"%s\">đăng nhập vào tài khoản Mailchimp của bạn</a> và đảm bảo chỉ có duy nhất trường email và tên được đánh dấu trường yêu cầu cho (các) danh sách đã chọn."
|
619 |
+
|
620 |
+
#: includes/integrations/views/integration-settings.php:62
|
621 |
+
msgid "Enabled?"
|
622 |
+
msgstr "Đã bật?"
|
623 |
+
|
624 |
+
#: includes/integrations/views/integration-settings.php:66
|
625 |
+
msgid ""
|
626 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
627 |
+
msgstr "Bật tích hợp %s? Điều này sẽ thêm mục chọn đăng ký vào biểu mẫu."
|
628 |
+
|
629 |
+
#: includes/integrations/views/integration-settings.php:76
|
630 |
+
msgid "Implicit?"
|
631 |
+
msgstr "Ngầm?"
|
632 |
+
|
633 |
+
#: includes/integrations/views/integration-settings.php:80
|
634 |
+
msgid ""
|
635 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
636 |
+
"(recommended)."
|
637 |
+
msgstr "Chọn \"không\" nếu bạn muốn hỏi các khách hàng trước khi họ đã đăng ký (khuyến nghị)."
|
638 |
+
|
639 |
+
#: includes/integrations/views/integration-settings.php:90
|
640 |
+
msgid "MailChimp Lists"
|
641 |
+
msgstr "Danh sách MailChimp"
|
642 |
+
|
643 |
+
#: includes/integrations/views/integration-settings.php:103
|
644 |
+
msgid ""
|
645 |
+
"Select the list(s) to which people who check the checkbox should be "
|
646 |
+
"subscribed."
|
647 |
+
msgstr "Chọn (một hoặc nhiều) danh sách mà để khi người dùng check vào checkbox có thể đăng ký."
|
648 |
+
|
649 |
+
#: includes/integrations/views/integration-settings.php107,
|
650 |
+
#: includes/forms/views/tabs/form-settings.php:18
|
651 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
652 |
+
msgstr "Không tìm thấy danh sách, <a href=\"%s\">bạn đã kết nối đến MailChimp</a>?"
|
653 |
+
|
654 |
+
#: includes/integrations/views/integration-settings.php:116
|
655 |
+
msgid "Checkbox label text"
|
656 |
+
msgstr "Chữ gắn nhãn Checkbox"
|
657 |
+
|
658 |
+
#: includes/integrations/views/integration-settings.php:119
|
659 |
+
msgid "HTML tags like %s are allowed in the label text."
|
660 |
+
msgstr "Thẻ HTML như %s được chấp nhận trong chữ gắn nhãn."
|
661 |
+
|
662 |
+
#: includes/integrations/views/integration-settings.php:129
|
663 |
+
msgid "Pre-check the checkbox?"
|
664 |
+
msgstr "Check sẵn vào checkbox?"
|
665 |
+
|
666 |
+
#: includes/integrations/views/integration-settings.php:133
|
667 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
668 |
+
msgstr "Chọn \"có\" nếu mục chọn nên được điền trước."
|
669 |
+
|
670 |
+
#: includes/integrations/views/integration-settings.php:141
|
671 |
+
msgid "Load some default CSS?"
|
672 |
+
msgstr "Tải sẵn vài CSS mặc định?"
|
673 |
+
|
674 |
+
#: includes/integrations/views/integration-settings.php:145
|
675 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
676 |
+
msgstr "Chọn \"yes\" nếu checkbox hiện thị ở một nơi không bình thường."
|
677 |
+
|
678 |
+
#: includes/integrations/views/integration-settings.php:152
|
679 |
+
msgid "Double opt-in?"
|
680 |
+
msgstr "Double opt-in?"
|
681 |
+
|
682 |
+
#: includes/integrations/views/integration-settings.php:163
|
683 |
+
msgid ""
|
684 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
685 |
+
"being subscribed (recommended)"
|
686 |
+
msgstr "Chọn \"có\" nếu bạn muốn người dùng xác nhận địa chỉ email của họ trước khi đăng ký (khuyến nghị)"
|
687 |
+
|
688 |
+
#: includes/integrations/views/integration-settings.php171,
|
689 |
+
#: includes/forms/views/tabs/form-settings.php:52
|
690 |
+
msgid "Update existing subscribers?"
|
691 |
+
msgstr "Cập nhật người đăng ký đã có sẵn?"
|
692 |
+
|
693 |
+
#: includes/integrations/views/integration-settings.php181,
|
694 |
+
#: includes/forms/views/tabs/form-settings.php:62
|
695 |
+
msgid ""
|
696 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
697 |
+
" is sent."
|
698 |
+
msgstr "Chọn \"có\" nếu bạn muốn cập nhật những người đăng ký có sẵn với dẽ liệu sẽ được gửi."
|
699 |
+
|
700 |
+
#: includes/integrations/views/integration-settings.php190,
|
701 |
+
#: includes/forms/views/tabs/form-settings.php:68
|
702 |
+
msgid "Replace interest groups?"
|
703 |
+
msgstr "Thay thế nhóm ưa thích?"
|
704 |
+
|
705 |
+
#: includes/integrations/views/integration-settings.php201,
|
706 |
+
#: includes/forms/views/tabs/form-settings.php:79
|
707 |
+
msgid ""
|
708 |
+
"Select \"no\" if you want to add the selected interests to any previously "
|
709 |
+
"selected interests when updating a subscriber."
|
710 |
+
msgstr ""
|
711 |
+
|
712 |
+
#: includes/integrations/views/integration-settings.php202,
|
713 |
+
#: includes/forms/views/tabs/form-settings.php:80
|
714 |
+
msgid "What does this do?"
|
715 |
+
msgstr "Cái này làm gì?"
|
716 |
+
|
717 |
+
#: includes/integrations/views/integrations.php:17
|
718 |
+
msgid "Name"
|
719 |
+
msgstr "Tên"
|
720 |
+
|
721 |
+
#: includes/integrations/views/integrations.php:18
|
722 |
+
msgid "Description"
|
723 |
+
msgstr "Mô tả"
|
724 |
+
|
725 |
+
#: includes/integrations/views/integrations.php:35
|
726 |
+
msgid "Configure this integration"
|
727 |
+
msgstr "Cấu hình tích hợp này"
|
728 |
+
|
729 |
+
#: includes/integrations/views/integrations.php:71
|
730 |
+
msgid "The table below shows all available integrations."
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: includes/integrations/views/integrations.php:72
|
734 |
+
msgid ""
|
735 |
+
"Click on the name of an integration to edit all settings specific to that "
|
736 |
+
"integration."
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: includes/integrations/views/integrations.php:79
|
740 |
+
msgid "Enabled integrations"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: includes/integrations/views/integrations.php:84
|
744 |
+
msgid "Available integrations"
|
745 |
+
msgstr ""
|
746 |
+
|
747 |
+
#: includes/views/parts/admin-footer.php:15
|
748 |
+
msgid ""
|
749 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
750 |
+
"translated in your language or do you spot errors with the current "
|
751 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
752 |
+
"translation project and click \"help translate\"</a>."
|
753 |
+
msgstr "MailChimp for WordPress cần được dịch tốt hơn. Bạn thấy rằng plugin này chưa được dịch hoặc được dịch chưa chuẩn trong ngôn ngữ của bạn? Xin hãy giúp đỡ, rất dễ! Truy cập vào <a href=\"%s\">dự án dịch và bấm \"help translate\"</a>."
|
754 |
+
|
755 |
+
#: includes/views/parts/admin-footer.php:35
|
756 |
+
msgid ""
|
757 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
758 |
+
msgstr "Plugin này không được phát triển hay liên kết với MailChimp dưới bất kỳ hình thức nào."
|
759 |
+
|
760 |
+
#: includes/views/parts/admin-sidebar.php:11
|
761 |
+
msgid "Looking for help?"
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: includes/views/parts/admin-sidebar.php:12
|
765 |
+
msgid "We have some resources available to help you in the right direction."
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: includes/views/parts/admin-sidebar.php:14
|
769 |
+
msgid "Knowledge Base"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: includes/views/parts/admin-sidebar.php:15
|
773 |
+
msgid "Frequently Asked Questions"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: includes/views/parts/admin-sidebar.php:16
|
777 |
+
msgid "Code reference for developers"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: includes/views/parts/admin-sidebar.php:36
|
781 |
+
msgid "Looking to improve your sign-up rates?"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: includes/views/parts/admin-sidebar.php:37
|
785 |
+
msgid ""
|
786 |
+
"Our <a href=\"%s\">Boxzilla plugin</a> allows you to create pop-ups or "
|
787 |
+
"slide-ins with a subscribe form. A sure way to grow your lists faster."
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: includes/views/parts/lists-overview.php:1
|
791 |
+
msgid "Your MailChimp Account"
|
792 |
+
msgstr "Tài khoản Mailchimp của bạn"
|
793 |
+
|
794 |
+
#: includes/views/parts/lists-overview.php:2
|
795 |
+
msgid ""
|
796 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
797 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
798 |
+
"renew the cached lists configuration."
|
799 |
+
msgstr "Bảng dưới hiển thị những danh sách Mailchimp của bạn và chi tiết. Nếu bạn mới thay đổi danh sách Mailchimp của bạn, hãy sử dụng nút dưới để làm mới cấu hình danh sách đã lưu."
|
800 |
+
|
801 |
+
#: includes/views/parts/lists-overview.php:17
|
802 |
+
msgid "No lists were found in your MailChimp account"
|
803 |
+
msgstr "Không có danh sách nào được tìm thấy ở tài khoản MailChimp của bạn."
|
804 |
|
805 |
+
#: includes/views/parts/lists-overview.php:19
|
806 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
807 |
+
msgstr "%d danh sách đã được tìm thấy trong tài khoản Mailchimp của bạn."
|
|
|
|
|
|
|
808 |
|
809 |
+
#: includes/views/parts/lists-overview.php:24
|
810 |
+
msgid "List Name"
|
811 |
+
msgstr "Tên danh sách"
|
812 |
|
813 |
+
#: includes/views/parts/lists-overview.php:25
|
814 |
+
msgid "ID"
|
815 |
+
msgstr "ID"
|
816 |
|
817 |
+
#: includes/views/parts/lists-overview.php:26
|
818 |
+
msgid "Subscribers"
|
819 |
+
msgstr "Những người đăng ký"
|
820 |
|
821 |
+
#: includes/views/parts/lists-overview.php:48
|
822 |
+
msgid "Edit this list in MailChimp"
|
823 |
+
msgstr "Sửa danh sách trong Mailchimp"
|
824 |
|
825 |
+
#: includes/views/parts/lists-overview.php:62
|
826 |
+
msgid "%s (%s) with field type %s."
|
827 |
+
msgstr "%s (%s) với loại trường %s"
|
828 |
|
829 |
+
#: includes/forms/views/parts/add-fields-help.php4,
|
830 |
#: includes/forms/views/tabs/form-fields.php:10
|
831 |
msgid "Add more fields"
|
832 |
msgstr "Thêm các trường khác"
|
863 |
"changes."
|
864 |
msgstr "Click vào nút dưới để Mailchimp for Wordpress nhận các thay đổi của bạn."
|
865 |
|
|
|
|
|
|
|
|
|
|
|
866 |
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
867 |
msgid "Add dynamic form variable"
|
868 |
msgstr "Thêm biến biểu mẫu động."
|
935 |
msgid "Enter the HTML code for your form fields.."
|
936 |
msgstr "Điền mã HTML vào các trường của biểu mẫu của bạn.."
|
937 |
|
938 |
+
#: includes/forms/views/tabs/form-fields.php:26
|
|
|
|
|
|
|
|
|
939 |
msgid ""
|
940 |
"Use the shortcode %s to display this form inside a post, page or text "
|
941 |
"widget."
|
942 |
msgstr "Dùng shortcode %s để hiển thị mẫu này trong post, page hoặc widget"
|
943 |
|
944 |
+
#: includes/forms/views/tabs/form-messages.php:6
|
945 |
msgid "Form Messages"
|
946 |
msgstr "Nội dung biểu mẫu"
|
947 |
|
948 |
+
#: includes/forms/views/tabs/form-messages.php:16
|
949 |
msgid "Successfully subscribed"
|
950 |
msgstr "Đăng ký thành công"
|
951 |
|
952 |
+
#: includes/forms/views/tabs/form-messages.php:19
|
953 |
msgid ""
|
954 |
"The text that shows when an email address is successfully subscribed to the "
|
955 |
"selected list(s)."
|
956 |
msgstr "Dòng chữ hiển thị khi một địa chỉ email đăng ký thành công vào một danh sách đã chọn."
|
957 |
|
958 |
+
#: includes/forms/views/tabs/form-messages.php:23
|
959 |
msgid "Invalid email address"
|
960 |
msgstr "Địa chỉ email sai"
|
961 |
|
962 |
+
#: includes/forms/views/tabs/form-messages.php:26
|
963 |
msgid "The text that shows when an invalid email address is given."
|
964 |
msgstr "Dong chữ hiển thị khi một địa chỉ email không đúng được cung cấp."
|
965 |
|
966 |
+
#: includes/forms/views/tabs/form-messages.php:30
|
967 |
msgid "Required field missing"
|
968 |
msgstr "Thiếu các trường yêu cầu"
|
969 |
|
970 |
+
#: includes/forms/views/tabs/form-messages.php:33
|
971 |
msgid ""
|
972 |
"The text that shows when a required field for the selected list(s) is "
|
973 |
"missing."
|
974 |
msgstr "Dòng chữ hiển thị khi một trường được yêu cầu cho (các) danh sách được chọn bị thiếu."
|
975 |
|
976 |
+
#: includes/forms/views/tabs/form-messages.php:37
|
977 |
msgid "Already subscribed"
|
978 |
msgstr "Đã đăng ký"
|
979 |
|
980 |
+
#: includes/forms/views/tabs/form-messages.php:40
|
981 |
msgid ""
|
982 |
"The text that shows when the given email is already subscribed to the "
|
983 |
"selected list(s)."
|
984 |
msgstr "Dong chữ hiển thị khi email cung cấp đã được đăng ký vào (các) danh sách đã chọn."
|
985 |
|
986 |
+
#: includes/forms/views/tabs/form-messages.php:44
|
987 |
msgid "General error"
|
988 |
msgstr "Lỗi cơ bản"
|
989 |
|
990 |
+
#: includes/forms/views/tabs/form-messages.php:47
|
991 |
msgid "The text that shows when a general error occured."
|
992 |
msgstr "Dòng chữ hiển thị ki một lỗi cơ bản xuất hiện."
|
993 |
|
994 |
+
#: includes/forms/views/tabs/form-messages.php:51
|
995 |
msgid "Unsubscribed"
|
996 |
msgstr "Hủy đăng ký"
|
997 |
|
998 |
+
#: includes/forms/views/tabs/form-messages.php:54
|
999 |
msgid ""
|
1000 |
"When using the unsubscribe method, this is the text that shows when the "
|
1001 |
"given email address is successfully unsubscribed from the selected list(s)."
|
1002 |
msgstr "Khi sử dụng phương pháp hủy đăng ký, đây là dòng chữ hiển thị khi địa chỉ email cung cấp đã hủy đăng ký thành công từ (các) danh sách đã chọn."
|
1003 |
|
1004 |
+
#: includes/forms/views/tabs/form-messages.php:58
|
1005 |
msgid "Not subscribed"
|
1006 |
msgstr "Chưa được đăng ký"
|
1007 |
|
1008 |
+
#: includes/forms/views/tabs/form-messages.php:61
|
1009 |
msgid ""
|
1010 |
"When using the unsubscribe method, this is the text that shows when the "
|
1011 |
"given email address is not on the selected list(s)."
|
1012 |
msgstr "Khi sử dụng phương pháp hủy đăng ký, dòng chữ này hiển thị khi địa chỉ email không nằm trong (các) danh sách đã chọn."
|
1013 |
|
1014 |
+
#: includes/forms/views/tabs/form-messages.php:65
|
1015 |
+
msgid "No list selected"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/forms/views/tabs/form-messages.php:68
|
1019 |
+
msgid ""
|
1020 |
+
"When offering a list choice, this is the text that shows when no lists were "
|
1021 |
+
"selected."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/forms/views/tabs/form-messages.php:74
|
1025 |
+
msgid "Updated"
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: includes/forms/views/tabs/form-messages.php:77
|
1029 |
+
msgid "The text that shows when an existing subscriber is updated."
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/forms/views/tabs/form-messages.php:89
|
1033 |
msgid "HTML tags like %s are allowed in the message fields."
|
1034 |
msgstr "Thẻ HTML như %s được cho phép trong trường tin nhắn."
|
1035 |
|
1041 |
msgid "MailChimp specific settings"
|
1042 |
msgstr "Những cài đặt cụ thể Mailchimp"
|
1043 |
|
1044 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
1045 |
msgid "Lists this form subscribes to"
|
1046 |
msgstr "Lists this form subscribes to"
|
1047 |
|
1048 |
+
#: includes/forms/views/tabs/form-settings.php:31
|
|
|
|
|
|
|
|
|
|
|
1049 |
msgid ""
|
1050 |
"Select the list(s) to which people who submit this form should be "
|
1051 |
"subscribed."
|
1052 |
msgstr "Chọn (các) danh sách mà người dùng đăng ký vào mẫu này có thể đăng ký."
|
1053 |
|
1054 |
+
#: includes/forms/views/tabs/form-settings.php:37
|
1055 |
msgid "Use double opt-in?"
|
1056 |
msgstr "Sử dụng opt-in?"
|
1057 |
|
1058 |
+
#: includes/forms/views/tabs/form-settings.php:44
|
1059 |
+
msgid "Are you sure you want to disable double opt-in?"
|
1060 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1061 |
|
1062 |
+
#: includes/forms/views/tabs/form-settings.php:47
|
|
|
1063 |
msgid ""
|
1064 |
+
"We strongly suggest keeping double opt-in enabled. Disabling double opt-in "
|
1065 |
+
"may result in abuse."
|
1066 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1067 |
|
1068 |
+
#: includes/forms/views/tabs/form-settings.php:94
|
1069 |
msgid "Form behaviour"
|
1070 |
msgstr "Hành vi biểu mẫu"
|
1071 |
|
1072 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
1073 |
msgid "Hide form after a successful sign-up?"
|
1074 |
msgstr "Dấu mẫu sau khi có một đăng ký thành công?"
|
1075 |
|
1076 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
1077 |
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
1078 |
msgstr "Chọn \"Có\" để dấu các trường trong mẫu đơn sau khi đăng ký thành công."
|
1079 |
|
1080 |
+
#: includes/forms/views/tabs/form-settings.php:120
|
1081 |
msgid "Redirect to URL after successful sign-ups"
|
1082 |
msgstr "Chuyển hướng đến URL sau khi đăng ký thành công"
|
1083 |
|
1084 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
1085 |
msgid "Example: %s"
|
1086 |
msgstr "Ví dụ: %s"
|
1087 |
|
1088 |
+
#: includes/forms/views/tabs/form-settings.php:123
|
1089 |
msgid ""
|
1090 |
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
1091 |
" (absolute) URLs, including <code>http://</code>."
|
1092 |
msgstr "Để trống hoặc điền <code>0</code> cho không chuyển hướng, sử dụng toàn bộ (tuyệt đối) URLs, bao gồm <code>http://</code>."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
languages/mailchimp-for-wp.pot
CHANGED
@@ -117,7 +117,7 @@ msgstr ""
|
|
117 |
msgid "First Name"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/admin/class-ads.php:129, includes/forms/class-admin.php:
|
121 |
msgid "Subscribe"
|
122 |
msgstr ""
|
123 |
|
@@ -145,171 +145,175 @@ msgstr ""
|
|
145 |
msgid "Read more about common connectivity issues."
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/forms/class-admin.php:
|
149 |
msgid "Add to form"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/forms/class-admin.php:
|
153 |
msgid "City"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/forms/class-admin.php:
|
157 |
msgid "Checkboxes"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: includes/forms/class-admin.php:
|
161 |
msgid "Choices"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: includes/forms/class-admin.php:
|
165 |
msgid "Choice type"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: includes/forms/class-admin.php:
|
169 |
msgid "Choose a field to add to the form"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: includes/forms/class-admin.php:
|
173 |
msgid "Close"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/forms/class-admin.php:
|
177 |
msgid "Country"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: includes/forms/class-admin.php:
|
181 |
msgid "Dropdown"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: includes/forms/class-admin.php:
|
185 |
msgid "Field type"
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: includes/forms/class-admin.php:
|
189 |
msgid "Field label"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: includes/forms/class-admin.php:
|
193 |
msgid "Form action"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/forms/class-admin.php:
|
197 |
msgid "This field will allow your visitors to choose whether they would like to subscribe or unsubscribe"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/forms/class-admin.php:
|
201 |
msgid "Form fields"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/forms/class-admin.php:
|
205 |
msgid "This field is marked as required in MailChimp."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/forms/class-admin.php:
|
209 |
msgid "Initial value"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/forms/class-admin.php:
|
213 |
msgid "Interest categories"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/forms/class-admin.php:
|
217 |
msgid "Is this field required?"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/forms/class-admin.php:
|
221 |
msgid "List choice"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/forms/class-admin.php:
|
225 |
msgid "This field will allow your visitors to choose a list to subscribe to."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/forms/class-admin.php:
|
229 |
msgid "List fields"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/forms/class-admin.php:
|
233 |
msgid "Min"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/forms/class-admin.php:
|
237 |
msgid "Max"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/forms/class-admin.php:
|
241 |
msgid "No available fields. Did you select a MailChimp list in the form settings?"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: includes/forms/class-admin.php:
|
245 |
msgid "Optional"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/forms/class-admin.php:
|
249 |
msgid "Placeholder"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/forms/class-admin.php:
|
253 |
msgid "Text to show when field has no value."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/forms/class-admin.php:
|
257 |
msgid "Preselect"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/forms/class-admin.php:
|
261 |
msgid "Remove"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/forms/class-admin.php:
|
265 |
msgid "Radio buttons"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: includes/forms/class-admin.php:
|
269 |
msgid "Street Address"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: includes/forms/class-admin.php:
|
273 |
msgid "State"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/forms/class-admin.php:
|
277 |
msgid "Submit button"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/forms/class-admin.php:
|
281 |
msgid "Wrap in paragraph tags?"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: includes/forms/class-admin.php:
|
285 |
msgid "Value"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: includes/forms/class-admin.php:
|
289 |
msgid "Text to prefill this field with."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: includes/forms/class-admin.php:
|
293 |
msgid "ZIP"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/forms/class-admin.php:
|
297 |
msgid "Forms"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/forms/class-admin.php:
|
|
|
|
|
|
|
|
|
301 |
msgid "<strong>Success!</strong> Form successfully saved."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/forms/class-admin.php:
|
305 |
msgid "Preview form"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/forms/class-admin.php:
|
309 |
msgid "MailChimp Sign-Up Form"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/forms/class-admin.php:
|
313 |
msgid "Select the form to show"
|
314 |
msgstr ""
|
315 |
|
@@ -521,10 +525,6 @@ msgstr ""
|
|
521 |
msgid "Appearance"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: includes/forms/views/edit-form.php:26
|
525 |
-
msgid "Form"
|
526 |
-
msgstr ""
|
527 |
-
|
528 |
#: includes/forms/views/edit-form.php:36
|
529 |
msgid "Edit Form"
|
530 |
msgstr ""
|
117 |
msgid "First Name"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/admin/class-ads.php:129, includes/forms/class-admin.php:92
|
121 |
msgid "Subscribe"
|
122 |
msgstr ""
|
123 |
|
145 |
msgid "Read more about common connectivity issues."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/forms/class-admin.php:60
|
149 |
msgid "Add to form"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/forms/class-admin.php:61
|
153 |
msgid "City"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: includes/forms/class-admin.php:62
|
157 |
msgid "Checkboxes"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/forms/class-admin.php:63
|
161 |
msgid "Choices"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: includes/forms/class-admin.php:64
|
165 |
msgid "Choice type"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: includes/forms/class-admin.php:65
|
169 |
msgid "Choose a field to add to the form"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: includes/forms/class-admin.php:66
|
173 |
msgid "Close"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/forms/class-admin.php:67
|
177 |
msgid "Country"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: includes/forms/class-admin.php:68
|
181 |
msgid "Dropdown"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/forms/class-admin.php:69
|
185 |
msgid "Field type"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/forms/class-admin.php:70
|
189 |
msgid "Field label"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: includes/forms/class-admin.php:71
|
193 |
msgid "Form action"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/forms/class-admin.php:72
|
197 |
msgid "This field will allow your visitors to choose whether they would like to subscribe or unsubscribe"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: includes/forms/class-admin.php:73
|
201 |
msgid "Form fields"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: includes/forms/class-admin.php:74
|
205 |
msgid "This field is marked as required in MailChimp."
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: includes/forms/class-admin.php:75
|
209 |
msgid "Initial value"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/forms/class-admin.php:76
|
213 |
msgid "Interest categories"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/forms/class-admin.php:77
|
217 |
msgid "Is this field required?"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/forms/class-admin.php:78
|
221 |
msgid "List choice"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/forms/class-admin.php:79
|
225 |
msgid "This field will allow your visitors to choose a list to subscribe to."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/forms/class-admin.php:80
|
229 |
msgid "List fields"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/forms/class-admin.php:81
|
233 |
msgid "Min"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/forms/class-admin.php:82
|
237 |
msgid "Max"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/forms/class-admin.php:83
|
241 |
msgid "No available fields. Did you select a MailChimp list in the form settings?"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/forms/class-admin.php:84
|
245 |
msgid "Optional"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/forms/class-admin.php:85
|
249 |
msgid "Placeholder"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/forms/class-admin.php:86
|
253 |
msgid "Text to show when field has no value."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/forms/class-admin.php:87
|
257 |
msgid "Preselect"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/forms/class-admin.php:88
|
261 |
msgid "Remove"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/forms/class-admin.php:89
|
265 |
msgid "Radio buttons"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/forms/class-admin.php:90
|
269 |
msgid "Street Address"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/forms/class-admin.php:91
|
273 |
msgid "State"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/forms/class-admin.php:93
|
277 |
msgid "Submit button"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/forms/class-admin.php:94
|
281 |
msgid "Wrap in paragraph tags?"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: includes/forms/class-admin.php:95
|
285 |
msgid "Value"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/forms/class-admin.php:96
|
289 |
msgid "Text to prefill this field with."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: includes/forms/class-admin.php:97
|
293 |
msgid "ZIP"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/forms/class-admin.php:109, includes/forms/views/edit-form.php:24
|
297 |
msgid "Forms"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/forms/class-admin.php:110, includes/forms/views/edit-form.php:26
|
301 |
+
msgid "Form"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: includes/forms/class-admin.php:150, includes/forms/class-admin.php:274
|
305 |
msgid "<strong>Success!</strong> Form successfully saved."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/forms/class-admin.php:274
|
309 |
msgid "Preview form"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/forms/class-admin.php:447, includes/forms/class-widget.php:30
|
313 |
msgid "MailChimp Sign-Up Form"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/forms/class-admin.php:451
|
317 |
msgid "Select the form to show"
|
318 |
msgstr ""
|
319 |
|
525 |
msgid "Appearance"
|
526 |
msgstr ""
|
527 |
|
|
|
|
|
|
|
|
|
528 |
#: includes/forms/views/edit-form.php:36
|
529 |
msgid "Edit Form"
|
530 |
msgstr ""
|
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: 4.1.
|
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', '4.1.
|
51 |
define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
@@ -141,3 +141,4 @@ function _mc4wp_on_plugin_deactivation() {
|
|
141 |
|
142 |
register_activation_hook( __FILE__, '_mc4wp_on_plugin_activation' );
|
143 |
register_deactivation_hook( __FILE__, '_mc4wp_on_plugin_deactivation' );
|
|
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: 4.1.10
|
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', '4.1.10' );
|
51 |
define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
141 |
|
142 |
register_activation_hook( __FILE__, '_mc4wp_on_plugin_activation' );
|
143 |
register_deactivation_hook( __FILE__, '_mc4wp_on_plugin_deactivation' );
|
144 |
+
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: Ibericode, DvanKooten, hchouhan, lapzor
|
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
|
5 |
Requires at least: 4.1
|
6 |
-
Tested up to: 4.8.
|
7 |
-
Stable tag: 4.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Requires PHP: 5.2.4
|
@@ -32,13 +32,14 @@ MailChimp for WordPress helps you add more subscribers to your MailChimp lists u
|
|
32 |
- Default WordPress Registration Form
|
33 |
- Contact Form 7
|
34 |
- WooCommerce
|
|
|
35 |
- Ninja Forms 3
|
|
|
36 |
- BuddyPress
|
37 |
- MemberPress
|
38 |
- Events Manager
|
39 |
- Easy Digital Downloads
|
40 |
|
41 |
-
|
42 |
- A multitude of available add-on plugins:
|
43 |
- [MailChimp for WordPress Premium](https://mc4wp.com/)
|
44 |
- [MailChimp Top Bar](https://wordpress.org/plugins/mailchimp-top-bar/)
|
@@ -195,6 +196,18 @@ MailChimp for WordPress comes with many filter & action hooks which allow you to
|
|
195 |
== Changelog ==
|
196 |
|
197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
#### 4.1.9 - September 19, 2017
|
199 |
|
200 |
**Improvements**
|
3 |
Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-for-wp&utm_campaign=donate-link
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mailchimp forms, mailchimp integrations
|
5 |
Requires at least: 4.1
|
6 |
+
Tested up to: 4.8.2
|
7 |
+
Stable tag: 4.1.10
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Requires PHP: 5.2.4
|
32 |
- Default WordPress Registration Form
|
33 |
- Contact Form 7
|
34 |
- WooCommerce
|
35 |
+
- Gravity Forms
|
36 |
- Ninja Forms 3
|
37 |
+
- WPForms
|
38 |
- BuddyPress
|
39 |
- MemberPress
|
40 |
- Events Manager
|
41 |
- Easy Digital Downloads
|
42 |
|
|
|
43 |
- A multitude of available add-on plugins:
|
44 |
- [MailChimp for WordPress Premium](https://mc4wp.com/)
|
45 |
- [MailChimp Top Bar](https://wordpress.org/plugins/mailchimp-top-bar/)
|
196 |
== Changelog ==
|
197 |
|
198 |
|
199 |
+
#### 4.1.10 - October 19, 2017
|
200 |
+
|
201 |
+
**Improvements**
|
202 |
+
|
203 |
+
- Remove unused options from Ninja Forms integration.
|
204 |
+
- Now logging all sign-ups from Ninja Forms integrations when using [MailChimp for WordPress Premium](https://mc4wp.com/premium-features/).
|
205 |
+
|
206 |
+
**Additions**
|
207 |
+
|
208 |
+
- Added Gravity Forms integration. You can now integrate with Gravity Forms by adding the "MailChimp" field to your forms.
|
209 |
+
|
210 |
+
|
211 |
#### 4.1.9 - September 19, 2017
|
212 |
|
213 |
**Improvements**
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitd4fdbc02785bad31fc7938172a817a5e::getLoader();
|
vendor/composer/autoload_classmap.php
CHANGED
@@ -43,6 +43,8 @@ return array(
|
|
43 |
'MC4WP_Form_Tags' => $baseDir . '/includes/forms/class-form-tags.php',
|
44 |
'MC4WP_Form_Widget' => $baseDir . '/includes/forms/class-widget.php',
|
45 |
'MC4WP_Forms_Admin' => $baseDir . '/includes/forms/class-admin.php',
|
|
|
|
|
46 |
'MC4WP_Integration' => $baseDir . '/includes/integrations/class-integration.php',
|
47 |
'MC4WP_Integration_Admin' => $baseDir . '/includes/integrations/class-admin.php',
|
48 |
'MC4WP_Integration_Fixture' => $baseDir . '/includes/integrations/class-integration-fixture.php',
|
43 |
'MC4WP_Form_Tags' => $baseDir . '/includes/forms/class-form-tags.php',
|
44 |
'MC4WP_Form_Widget' => $baseDir . '/includes/forms/class-widget.php',
|
45 |
'MC4WP_Forms_Admin' => $baseDir . '/includes/forms/class-admin.php',
|
46 |
+
'MC4WP_Gravity_Forms_Field' => $baseDir . '/integrations/gravity-forms/class-field.php',
|
47 |
+
'MC4WP_Gravity_Forms_Integration' => $baseDir . '/integrations/gravity-forms/class-gravity-forms.php',
|
48 |
'MC4WP_Integration' => $baseDir . '/includes/integrations/class-integration.php',
|
49 |
'MC4WP_Integration_Admin' => $baseDir . '/includes/integrations/class-admin.php',
|
50 |
'MC4WP_Integration_Fixture' => $baseDir . '/includes/integrations/class-integration-fixture.php',
|
vendor/composer/autoload_psr4.php
CHANGED
@@ -6,5 +6,4 @@ $vendorDir = dirname(dirname(__FILE__));
|
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
-
'CodeClimate\\PhpTestReporter\\' => array($vendorDir . '/codeclimate/php-test-reporter/src'),
|
10 |
);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
|
|
9 |
);
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInitb3d6d299bc049986e115db59e48591a8 {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInitd4fdbc02785bad31fc7938172a817a5e {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitd4fdbc02785bad31fc7938172a817a5e', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitd4fdbc02785bad31fc7938172a817a5e', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
vendor/composer/autoload_static.php
CHANGED
@@ -15,20 +15,6 @@ class ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8
|
|
15 |
'cb296d991e3145f10320ab99c1b9ed05' => __DIR__ . '/../..' . '/includes/default-filters.php',
|
16 |
);
|
17 |
|
18 |
-
public static $prefixLengthsPsr4 = array (
|
19 |
-
'C' =>
|
20 |
-
array (
|
21 |
-
'CodeClimate\\PhpTestReporter\\' => 28,
|
22 |
-
),
|
23 |
-
);
|
24 |
-
|
25 |
-
public static $prefixDirsPsr4 = array (
|
26 |
-
'CodeClimate\\PhpTestReporter\\' =>
|
27 |
-
array (
|
28 |
-
0 => __DIR__ . '/..' . '/codeclimate/php-test-reporter/src',
|
29 |
-
),
|
30 |
-
);
|
31 |
-
|
32 |
public static $prefixesPsr0 = array (
|
33 |
'x' =>
|
34 |
array (
|
@@ -77,6 +63,8 @@ class ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8
|
|
77 |
'MC4WP_Form_Tags' => __DIR__ . '/../..' . '/includes/forms/class-form-tags.php',
|
78 |
'MC4WP_Form_Widget' => __DIR__ . '/../..' . '/includes/forms/class-widget.php',
|
79 |
'MC4WP_Forms_Admin' => __DIR__ . '/../..' . '/includes/forms/class-admin.php',
|
|
|
|
|
80 |
'MC4WP_Integration' => __DIR__ . '/../..' . '/includes/integrations/class-integration.php',
|
81 |
'MC4WP_Integration_Admin' => __DIR__ . '/../..' . '/includes/integrations/class-admin.php',
|
82 |
'MC4WP_Integration_Fixture' => __DIR__ . '/../..' . '/includes/integrations/class-integration-fixture.php',
|
@@ -114,8 +102,6 @@ class ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8
|
|
114 |
public static function getInitializer(ClassLoader $loader)
|
115 |
{
|
116 |
return \Closure::bind(function () use ($loader) {
|
117 |
-
$loader->prefixLengthsPsr4 = ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8::$prefixLengthsPsr4;
|
118 |
-
$loader->prefixDirsPsr4 = ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8::$prefixDirsPsr4;
|
119 |
$loader->prefixesPsr0 = ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8::$prefixesPsr0;
|
120 |
$loader->classMap = ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8::$classMap;
|
121 |
|
15 |
'cb296d991e3145f10320ab99c1b9ed05' => __DIR__ . '/../..' . '/includes/default-filters.php',
|
16 |
);
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
public static $prefixesPsr0 = array (
|
19 |
'x' =>
|
20 |
array (
|
63 |
'MC4WP_Form_Tags' => __DIR__ . '/../..' . '/includes/forms/class-form-tags.php',
|
64 |
'MC4WP_Form_Widget' => __DIR__ . '/../..' . '/includes/forms/class-widget.php',
|
65 |
'MC4WP_Forms_Admin' => __DIR__ . '/../..' . '/includes/forms/class-admin.php',
|
66 |
+
'MC4WP_Gravity_Forms_Field' => __DIR__ . '/../..' . '/integrations/gravity-forms/class-field.php',
|
67 |
+
'MC4WP_Gravity_Forms_Integration' => __DIR__ . '/../..' . '/integrations/gravity-forms/class-gravity-forms.php',
|
68 |
'MC4WP_Integration' => __DIR__ . '/../..' . '/includes/integrations/class-integration.php',
|
69 |
'MC4WP_Integration_Admin' => __DIR__ . '/../..' . '/includes/integrations/class-admin.php',
|
70 |
'MC4WP_Integration_Fixture' => __DIR__ . '/../..' . '/includes/integrations/class-integration-fixture.php',
|
102 |
public static function getInitializer(ClassLoader $loader)
|
103 |
{
|
104 |
return \Closure::bind(function () use ($loader) {
|
|
|
|
|
105 |
$loader->prefixesPsr0 = ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8::$prefixesPsr0;
|
106 |
$loader->classMap = ComposerStaticInit53de4def9f9611d4493d50d1c639cfa8::$classMap;
|
107 |
|